diff --git a/.github/labeler.yml b/.github/labeler.yml index e4f7b604184..356ec09747f 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -13,9 +13,13 @@ - changed-files: - any-glob-to-any-file: '**/*.xaml*' +"Changes: Shaders": +- changed-files: + - any-glob-to-any-file: '**/*.swsl' + "Changes: Localization": - changed-files: - - any-glob-to-any-file: 'Resources/Locale/**/*.ftl' + - any-glob-to-any-file: '**/*.ftl' "No C#": - changed-files: diff --git a/Content.Client/ADT/Language/LanguageMenuUIController.cs b/Content.Client/ADT/Language/LanguageMenuUIController.cs deleted file mode 100644 index 791b616bb3d..00000000000 --- a/Content.Client/ADT/Language/LanguageMenuUIController.cs +++ /dev/null @@ -1,51 +0,0 @@ -using Content.Client.ADT.Language; -using Content.Client.Gameplay; -using Content.Shared.Language; -using Robust.Client.UserInterface.Controllers; -using Robust.Client.UserInterface.Controls; -using static Content.Shared.Language.Systems.SharedLanguageSystem; - -namespace Content.Client.ADT.Language; - -public sealed class LanguageMenuUIController : UIController, IOnStateEntered<GameplayState>, IOnStateExited<GameplayState> -{ - public LanguageMenuWindow? _languageWindow; - - public override void Initialize() - { - EntityManager.EventBus.SubscribeLocalEvent<LanguageSpeakerComponent, LanguageMenuActionEvent>(OnActionMenu); - EntityManager.EventBus.SubscribeEvent<LanguageMenuStateMessage>(EventSource.Network, this, OnStateUpdate); - } - - private void OnStateUpdate(LanguageMenuStateMessage ev) - { - if (_languageWindow == null) - return; - - _languageWindow.UpdateState(ev); - } - - private void OnActionMenu(EntityUid uid, LanguageSpeakerComponent component, LanguageMenuActionEvent args) - { - if (_languageWindow == null) - return; - - if (!_languageWindow.IsOpen) - { - _languageWindow.Open(); - EntityManager.EntityNetManager?.SendSystemNetworkMessage(new RequestLanguageMenuStateMessage()); - } - } - - public void OnStateEntered(GameplayState state) - { - _languageWindow = UIManager.CreateWindow<LanguageMenuWindow>(); - LayoutContainer.SetAnchorPreset(_languageWindow, LayoutContainer.LayoutPreset.Center); - } - - public void OnStateExited(GameplayState state) - { - _languageWindow?.Dispose(); - _languageWindow = null; - } -} diff --git a/Content.Client/ADT/Language/LanguageMenuWindow.xaml.cs b/Content.Client/ADT/Language/LanguageMenuWindow.xaml.cs deleted file mode 100644 index 0a795aebbd1..00000000000 --- a/Content.Client/ADT/Language/LanguageMenuWindow.xaml.cs +++ /dev/null @@ -1,124 +0,0 @@ -using Content.Client.Language.Systems; -using Content.Shared.Language; -using Content.Shared.Language.Systems; -using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; -using Robust.Client.UserInterface.XAML; -using Robust.Shared.Console; -using Robust.Shared.Utility; -using static Content.Shared.Language.Systems.SharedLanguageSystem; - -namespace Content.Client.ADT.Language; // This EXACT class must have the _NF part because of xaml linking - -[GenerateTypedNameReferences] -public sealed partial class LanguageMenuWindow : DefaultWindow -{ - [Dependency] private readonly IConsoleHost _consoleHost = default!; - private readonly LanguageSystem _language; - - private readonly List<EntryState> _entries = new(); - - public LanguageMenuWindow() - { - RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - _language = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<LanguageSystem>(); - - Title = Loc.GetString("language-menu-window-title"); - } - - public void UpdateState(LanguageMenuStateMessage state) - { - var clanguage = _language.GetLanguage(state.CurrentLanguage); - CurrentLanguageLabel.Text = Loc.GetString("language-menu-current-language", ("language", clanguage?.LocalizedName ?? "<error>")); - - OptionsList.RemoveAllChildren(); - _entries.Clear(); - - foreach (var language in state.Options) - { - AddLanguageEntry(language); - } - - // Disable the button for the currently chosen language - foreach (var entry in _entries) - { - if (entry.button != null) - entry.button.Disabled = entry.language == state.CurrentLanguage; - } - } - - private void AddLanguageEntry(string language) - { - var proto = _language.GetLanguage(language); - var state = new EntryState { language = language }; - - var container = new BoxContainer(); - container.Orientation = BoxContainer.LayoutOrientation.Vertical; - - // Create and add a header with the name and the button to select the language - { - var header = new BoxContainer(); - header.Orientation = BoxContainer.LayoutOrientation.Horizontal; - - header.Orientation = BoxContainer.LayoutOrientation.Horizontal; - header.HorizontalExpand = true; - header.SeparationOverride = 2; - - var name = new Label(); - name.Text = proto?.LocalizedName ?? "<error>"; - name.MinWidth = 50; - name.HorizontalExpand = true; - - var button = new Button(); - button.Text = "Выбрать"; - button.OnPressed += _ => OnLanguageChosen(language); - state.button = button; - - header.AddChild(name); - header.AddChild(button); - - container.AddChild(header); - } - - // Create and add a collapsible description - { - var body = new CollapsibleBody(); - body.HorizontalExpand = true; - body.Margin = new Thickness(4f, 4f); - - var description = new RichTextLabel(); - description.SetMessage(proto?.LocalizedDescription ?? "<error>"); - description.HorizontalExpand = true; - - body.AddChild(description); - - var collapser = new Collapsible(Loc.GetString("language-menu-description-header"), body); - collapser.Orientation = BoxContainer.LayoutOrientation.Vertical; - collapser.HorizontalExpand = true; - - container.AddChild(collapser); - } - - // Before adding, wrap the new container in a PanelContainer to give it a distinct look - var wrapper = new PanelContainer(); - wrapper.StyleClasses.Add("PdaBorderRect"); - - wrapper.AddChild(container); - OptionsList.AddChild(wrapper); - - _entries.Add(state); - } - - private void OnLanguageChosen(string id) - { - _consoleHost.ExecuteCommand("lsselectlang " + id); - } - - private struct EntryState - { - public string language; - public Button? button; - } -} diff --git a/Content.Client/ADT/Language/LanguageSystem.cs b/Content.Client/ADT/Language/LanguageSystem.cs new file mode 100644 index 00000000000..a56216ecfbb --- /dev/null +++ b/Content.Client/ADT/Language/LanguageSystem.cs @@ -0,0 +1,7 @@ +using Content.Shared.ADT.Language; + +namespace Content.Client.ADT.Language; + +public sealed partial class LanguageSystem : SharedLanguageSystem +{ +} diff --git a/Content.Client/ADT/Language/Systems/LanguageSystem.cs b/Content.Client/ADT/Language/Systems/LanguageSystem.cs deleted file mode 100644 index 4d603a700a9..00000000000 --- a/Content.Client/ADT/Language/Systems/LanguageSystem.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Language.Systems; - -namespace Content.Client.Language.Systems; - -public sealed class LanguageSystem : SharedLanguageSystem -{ - -} diff --git a/Content.Client/ADT/Language/Systems/TranslatorImplanterSystem.cs b/Content.Client/ADT/Language/Systems/TranslatorImplanterSystem.cs deleted file mode 100644 index bbe28d24f5d..00000000000 --- a/Content.Client/ADT/Language/Systems/TranslatorImplanterSystem.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Shared.Language.Systems; - -namespace Content.Client.Language.Systems; - -public sealed class TranslatorImplanterSystem : SharedTranslatorImplanterSystem -{ - -} diff --git a/Content.Client/ADT/Language/TranslatorImplantSystem.cs b/Content.Client/ADT/Language/TranslatorImplantSystem.cs new file mode 100644 index 00000000000..83067d0669e --- /dev/null +++ b/Content.Client/ADT/Language/TranslatorImplantSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Implants; + +namespace Content.Client.ADT.Implants; + +public sealed class TranslatorImplantSystem : SharedTranslatorImplantSystem +{ + +} diff --git a/Content.Client/ADT/Language/LanguageMenuWindow.xaml b/Content.Client/ADT/Language/UI/LanguageMenuWindow.xaml similarity index 83% rename from Content.Client/ADT/Language/LanguageMenuWindow.xaml rename to Content.Client/ADT/Language/UI/LanguageMenuWindow.xaml index 188b3bc3b54..bb8ec706658 100644 --- a/Content.Client/ADT/Language/LanguageMenuWindow.xaml +++ b/Content.Client/ADT/Language/UI/LanguageMenuWindow.xaml @@ -1,7 +1,8 @@ -<DefaultWindow xmlns="https://spacestation14.io" +<!--Original window taken from https://github.com/new-frontiers-14/frontier-station-14/pull/671--> +<DefaultWindow xmlns="https://spacestation14.io" xmlns:ui="clr-namespace:Content.Client.UserInterface.Controls" Title="a" - SetSize="300 200"> + SetSize="400 450"> <BoxContainer Orientation="Vertical" SeparationOverride="4" MinWidth="150"> <PanelContainer Name="CurrentLanguageContainer" Access="Public" StyleClasses="PdaBorderRect"> <Label Name="CurrentLanguageLabel" Access="Public" Text="Current Language:" HorizontalExpand="True"></Label> diff --git a/Content.Client/ADT/Language/UI/LanguageMenuWindow.xaml.cs b/Content.Client/ADT/Language/UI/LanguageMenuWindow.xaml.cs new file mode 100644 index 00000000000..095e5148ff9 --- /dev/null +++ b/Content.Client/ADT/Language/UI/LanguageMenuWindow.xaml.cs @@ -0,0 +1,207 @@ +using Content.Shared.ADT.Language; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.CustomControls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Player; +using System.Linq; + +namespace Content.Client.ADT.Language.UI; + +[GenerateTypedNameReferences] +public sealed partial class LanguageMenuWindow : DefaultWindow +{ + [Dependency] private readonly EntityManager _entManager = default!; + + [Dependency] private readonly ISharedPlayerManager _playerManager = default!; + + private readonly SharedLanguageSystem _language; + + private readonly List<EntryState> _entries = new(); + private readonly List<Option> _optionLists = new(); + + public LanguageMenuWindow() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + _language = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<LanguageSystem>(); + + Title = Loc.GetString("language-menu-window-title"); + + var player = _playerManager.LocalSession?.AttachedEntity; + + if (_language.GetLanguages(player, out var understood, out _, out var translatorUnderstood, out _, out var current) && player.HasValue) + { + var ev = new LanguageMenuStateMessage(_entManager.GetNetEntity(player.Value), current, understood, translatorUnderstood); + UpdateState(ev); + } + } + + public void UpdateState(LanguageMenuStateMessage state) + { + CurrentLanguageLabel.Text = Loc.GetString("language-menu-current-language", ("language", _language.GetLanguage(state.CurrentLanguage).LocalizedName)); + + List<string> options = new(); + List<Option> optionList = _optionLists; + + options.AddRange(state.Options); + + List<string> translatorOptions = state.TranslatorOptions; + List<EntryState> entries = _entries.ToList(); + + foreach (var lng in state.Options) + { + translatorOptions.Remove(lng); + } + foreach (var entry in entries) + { + if (state.Options.Contains(entry.Language)) + { + options.Remove(entry.Language); + continue; + } + else if (state.TranslatorOptions.Contains(entry.Language)) + { + translatorOptions.Remove(entry.Language); + continue; + } + else + { + _entries.Remove(entry); + + foreach (var item in optionList.ToList()) + { + if (item.LanguageId == entry.Language) + { + _optionLists.Remove(item); + OptionsList.RemoveChild(item.PanelContainer); + } + } + } + } + + if (options.Count > 0) + { + foreach (var language in options) + { + AddLanguageEntry(language); + } + } + if (translatorOptions.Count > 0) + { + foreach (var language in translatorOptions) + { + AddLanguageEntry(language, true); + } + } + + // Disable the button for the currently chosen language + foreach (var entry in _entries) + { + if (entry.Button != null) + { + entry.Button.Disabled = entry.Language == state.CurrentLanguage || !_language.CanSpeak(_entManager.GetEntity(state.ComponentOwner), _language.GetLanguage(entry.Language)); + if (entry.Language == state.CurrentLanguage) + entry.Button.Text = Loc.GetString("language-choose-button-chosen"); + if (!_language.CanSpeak(_entManager.GetEntity(state.ComponentOwner), _language.GetLanguage(entry.Language))) + entry.Button.Text = Loc.GetString("language-choose-button-cannot"); + } + } + } + + private void AddLanguageEntry(string language, bool translator = false) + { + var state = new EntryState { Language = language }; + var prototype = _language.GetLanguage(language); + var container = new BoxContainer(); + container.Orientation = BoxContainer.LayoutOrientation.Vertical; + + // Create and add a header with the name and the button to select the language + { + var header = new BoxContainer(); + header.Orientation = BoxContainer.LayoutOrientation.Horizontal; + + header.Orientation = BoxContainer.LayoutOrientation.Horizontal; + header.HorizontalExpand = true; + header.SeparationOverride = 2; + + var name = new Label(); + name.Text = prototype.LocalizedName; + if (prototype.Color != null) + name.FontColorOverride = prototype.Color.Value; + name.MinWidth = 50; + name.HorizontalExpand = true; + + var button = new Button(); + button.Text = Loc.GetString("language-choose-button"); + button.OnPressed += _ => OnLanguageChosen(language); + button.ToolTip = + translator ? + Loc.GetString("language-choose-button-tooltip-translator") : + Loc.GetString("language-choose-button-tooltip-known"); + + state.Button = button; + + header.AddChild(name); + header.AddChild(button); + + container.AddChild(header); + } + + // Create and add a collapsible description + { + var body = new CollapsibleBody(); + body.HorizontalExpand = true; + body.Margin = new Thickness(4f, 4f); + + var description = new RichTextLabel(); + description.SetMessage(prototype.LocalizedDescription); + description.HorizontalExpand = true; + + body.AddChild(description); + + var collapser = new Collapsible(Loc.GetString("language-menu-description-header"), body); + collapser.Orientation = BoxContainer.LayoutOrientation.Vertical; + collapser.HorizontalExpand = true; + + container.AddChild(collapser); + } + + // Before adding, wrap the new container in a PanelContainer to give it a distinct look + var wrapper = new PanelContainer(); + wrapper.StyleClasses.Add("PdaBorderRect"); + + wrapper.AddChild(container); + OptionsList.AddChild(wrapper); + + _entries.Add(state); + + var option = new Option(); + option.LanguageId = state.Language; + option.PanelContainer = wrapper; + + _optionLists.Add(option); + } + + private void OnLanguageChosen(string id) + { + var player = _entManager.GetNetEntity(_playerManager.LocalSession?.AttachedEntity); + if (player == null) + return; + + _language.SelectLanguage(player.Value, id); + } + + private struct EntryState + { + public string Language; + public Button? Button; + } + + private struct Option + { + public string LanguageId; + public PanelContainer PanelContainer; + } + +} diff --git a/Content.Client/ADT/Novakid/NovakidSystem.cs b/Content.Client/ADT/Novakid/NovakidSystem.cs new file mode 100644 index 00000000000..ba14c05037e --- /dev/null +++ b/Content.Client/ADT/Novakid/NovakidSystem.cs @@ -0,0 +1,31 @@ +using Content.Shared.ADT.Novakid; +using Robust.Client.GameObjects; + +namespace Content.Client.ADT.Novakid; +public sealed partial class NovakidSystem : EntitySystem +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly PointLightSystem _lights = default!; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<NovakidGlowingComponent, ComponentInit>(OnEntityInit); + } + /// <summary> + /// Makes Novakid to glow with color of his skin — layer number 0 of SpriteComponent. + /// </summary> + /// <param name="uid">Novakid</param> + /// <param name="component">Компонент отвечающий за свечение новакида. Вообще-то говоря он нужен пока только для того, чтобы не пришлось перебирать сущности в поисках новакида.</param> + /// <param name="args"></param> + private void OnEntityInit(EntityUid uid, NovakidGlowingComponent component, ComponentInit args) + { + _entityManager.GetComponent<SpriteComponent>(uid).TryGetLayer(0, out var layer); + + component.GlowingColor = _entityManager.GetComponent<SpriteComponent>(uid).Color; + if (layer == null) return; + _lights.SetColor(uid, layer.Color); + //_lights.SetEnergy(uid, 0.6f); + DirtyEntity(uid); + } +} diff --git a/Content.Client/ADT/Overlays/Shaders/MonochromacyOverlay.cs b/Content.Client/ADT/Overlays/Shaders/MonochromacyOverlay.cs new file mode 100644 index 00000000000..d4cc8a443bd --- /dev/null +++ b/Content.Client/ADT/Overlays/Shaders/MonochromacyOverlay.cs @@ -0,0 +1,46 @@ +// Simple Station + +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Content.Shared.ADT.Traits; +using Matrix3x2 = System.Numerics.Matrix3x2; + +namespace Content.Client.ADT.Overlays +{ + public sealed partial class MonochromacyOverlay : Overlay + { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] IEntityManager _entityManager = default!; + + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _greyscaleShader; + + public MonochromacyOverlay() + { + IoCManager.InjectDependencies(this); + _greyscaleShader = _prototypeManager.Index<ShaderPrototype>("GreyscaleFullscreen").InstanceUnique(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) return; + if (_playerManager.LocalPlayer?.ControlledEntity is not { Valid: true } player) return; + if (!_entityManager.HasComponent<MonochromacyComponent>(player)) return; + + _greyscaleShader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.SetTransform(Matrix3x2.Identity); + worldHandle.UseShader(_greyscaleShader); + worldHandle.DrawRect(viewport, Color.White); + worldHandle.UseShader(null); + } + } +} diff --git a/Content.Client/ADT/Overlays/Shaders/StaticOverlay.cs b/Content.Client/ADT/Overlays/Shaders/StaticOverlay.cs new file mode 100644 index 00000000000..d95707e810b --- /dev/null +++ b/Content.Client/ADT/Overlays/Shaders/StaticOverlay.cs @@ -0,0 +1,93 @@ +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.ADT.Silicon.Systems; +using Content.Shared.StatusEffect; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; + + +namespace Content.Client.ADT.Overlays.Shaders; + +public sealed class StaticOverlay : Overlay +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + + public override OverlaySpace Space => OverlaySpace.WorldSpace; + public override bool RequestScreenTexture => true; + private readonly ShaderInstance _staticShader; + + private (TimeSpan, TimeSpan)? _time; + private float? _fullTimeLeft; + private float? _curTimeLeft; + + public float MixAmount = 0; + + public StaticOverlay() + { + IoCManager.InjectDependencies(this); + _staticShader = _prototypeManager.Index<ShaderPrototype>("SeeingStatic").InstanceUnique(); + } + + protected override void FrameUpdate(FrameEventArgs args) + { + var playerEntity = _playerManager.LocalPlayer?.ControlledEntity; + + if (playerEntity == null) + return; + + if (!_entityManager.TryGetComponent<SeeingStaticComponent>(playerEntity, out var staticComp) + || !_entityManager.TryGetComponent<StatusEffectsComponent>(playerEntity, out var statusComp)) + return; + + var status = _entityManager.EntitySysManager.GetEntitySystem<StatusEffectsSystem>(); + + if (playerEntity == null || statusComp == null) + return; + + if (!status.TryGetTime(playerEntity.Value, SharedSeeingStaticSystem.StaticKey, out var timeTemp, statusComp)) + return; + + if (_time != timeTemp) // Resets the shader if the times change. This should factor in wheather it's a reset, or a increase, but I have a lot of cough syrup in me, so TODO. + { + _time = timeTemp; + _fullTimeLeft = null; + _curTimeLeft = null; + } + + _fullTimeLeft ??= (float) (timeTemp.Value.Item2 - timeTemp.Value.Item1).TotalSeconds; + _curTimeLeft ??= _fullTimeLeft; + + _curTimeLeft -= args.DeltaSeconds; + + MixAmount = Math.Clamp(_curTimeLeft.Value / _fullTimeLeft.Value * staticComp.Multiplier, 0, 1); + } + + protected override bool BeforeDraw(in OverlayDrawArgs args) + { + if (!_entityManager.TryGetComponent(_playerManager.LocalPlayer?.ControlledEntity, out EyeComponent? eyeComp)) + return false; + + if (args.Viewport.Eye != eyeComp.Eye) + return false; + + return MixAmount > 0; + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) + return; + + var handle = args.WorldHandle; + _staticShader.SetParameter("SCREEN_TEXTURE", ScreenTexture); + _staticShader.SetParameter("mixAmount", MixAmount); + handle.UseShader(_staticShader); + handle.DrawRect(args.WorldBounds, Color.White); + handle.UseShader(null); + } +} diff --git a/Content.Client/ADT/Overlays/Systems/MonochromacySystem.cs b/Content.Client/ADT/Overlays/Systems/MonochromacySystem.cs new file mode 100644 index 00000000000..2b6a57389f9 --- /dev/null +++ b/Content.Client/ADT/Overlays/Systems/MonochromacySystem.cs @@ -0,0 +1,56 @@ +// Simple Station + +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Network; +using Content.Shared.ADT.Traits; +using Robust.Shared.Player; + +namespace Content.Client.ADT.Overlays; +public sealed class MonochromacySystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IOverlayManager _overlayMan = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + + private MonochromacyOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<MonochromacyComponent, ComponentStartup>(OnMonochromacyStartup); + SubscribeLocalEvent<MonochromacyComponent, ComponentShutdown>(OnMonochromacyShutdown); + + SubscribeLocalEvent<MonochromacyComponent, PlayerAttachedEvent>(OnPlayerAttached); + SubscribeLocalEvent<MonochromacyComponent, PlayerDetachedEvent>(OnPlayerDetached); + + _overlay = new(); + } + + private void OnMonochromacyStartup(EntityUid uid, MonochromacyComponent component, ComponentStartup args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + _overlayMan.AddOverlay(_overlay); + } + + private void OnMonochromacyShutdown(EntityUid uid, MonochromacyComponent component, ComponentShutdown args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + { + _overlayMan.RemoveOverlay(_overlay); + } + } + + private void OnPlayerAttached(EntityUid uid, MonochromacyComponent component, PlayerAttachedEvent args) + { + _overlayMan.AddOverlay(_overlay); + } + + private void OnPlayerDetached(EntityUid uid, MonochromacyComponent component, PlayerDetachedEvent args) + { + _overlayMan.RemoveOverlay(_overlay); + } +} diff --git a/Content.Client/ADT/Overlays/Systems/SeeingStaticSystem.cs b/Content.Client/ADT/Overlays/Systems/SeeingStaticSystem.cs new file mode 100644 index 00000000000..b6744f3dff1 --- /dev/null +++ b/Content.Client/ADT/Overlays/Systems/SeeingStaticSystem.cs @@ -0,0 +1,57 @@ +using Content.Client.ADT.Overlays.Shaders; +using Content.Shared.ADT.Silicon.Components; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Player; + +namespace Content.Client.ADT.Overlays; + +/// <summary> +/// System to handle the SeeingStatic overlay. +/// </summary> +public sealed class SeeingStaticSystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IOverlayManager _overlayMan = default!; + + private StaticOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<SeeingStaticComponent, ComponentInit>(OnInit); + SubscribeLocalEvent<SeeingStaticComponent, ComponentShutdown>(OnShutdown); + + SubscribeLocalEvent<SeeingStaticComponent, LocalPlayerAttachedEvent>(OnPlayerAttached); + SubscribeLocalEvent<SeeingStaticComponent, LocalPlayerDetachedEvent>(OnPlayerDetached); + + _overlay = new(); + } + + private void OnPlayerAttached(EntityUid uid, SeeingStaticComponent component, LocalPlayerAttachedEvent args) + { + _overlayMan.AddOverlay(_overlay); + } + + private void OnPlayerDetached(EntityUid uid, SeeingStaticComponent component, LocalPlayerDetachedEvent args) + { + _overlay.MixAmount = 0; + _overlayMan.RemoveOverlay(_overlay); + } + + private void OnInit(EntityUid uid, SeeingStaticComponent component, ComponentInit args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + _overlayMan.AddOverlay(_overlay); + } + + private void OnShutdown(EntityUid uid, SeeingStaticComponent component, ComponentShutdown args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + { + _overlay.MixAmount = 0; + _overlayMan.RemoveOverlay(_overlay); + } + } +} diff --git a/Content.Client/ADT/Shadekin/Systems/ShadekinSystem.Tint.cs b/Content.Client/ADT/Shadekin/Systems/ShadekinSystem.Tint.cs new file mode 100644 index 00000000000..ed4b6cb1a79 --- /dev/null +++ b/Content.Client/ADT/Shadekin/Systems/ShadekinSystem.Tint.cs @@ -0,0 +1,112 @@ +using Robust.Client.Graphics; +using Robust.Client.Player; +using Content.Client.ADT.Overlays; +using Content.Client.ADT.Overlays.Shaders; +using Content.Shared.ADT.Shadekin.Components; +using Robust.Client.GameObjects; +using Content.Shared.GameTicking; +using Content.Shared.Humanoid; +using Robust.Shared.Player; + +namespace Content.Client.ADT.Shadekin.Systems; + +public sealed class ShadekinTintSystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IOverlayManager _overlay = default!; + [Dependency] private readonly IEntityManager _entity = default!; + + private ColorTintOverlay _tintOverlay = default!; + + public override void Initialize() + { + base.Initialize(); + + _tintOverlay = new ColorTintOverlay + { + TintColor = new Vector3(0.5f, 0f, 0.5f), + TintAmount = 0.25f, + Comp = new ShadekinComponent() + }; + + SubscribeLocalEvent<ShadekinComponent, ComponentStartup>(OnStartup); + SubscribeLocalEvent<ShadekinComponent, ComponentShutdown>(OnShutdown); + SubscribeLocalEvent<ShadekinComponent, PlayerAttachedEvent>(OnPlayerAttached); + SubscribeLocalEvent<ShadekinComponent, PlayerDetachedEvent>(OnPlayerDetached); + SubscribeLocalEvent<RoundRestartCleanupEvent>(OnRoundRestart); + } + + private void OnStartup(EntityUid uid, ShadekinComponent component, ComponentStartup args) + { + if (_player.LocalPlayer?.ControlledEntity != uid) + return; + + _overlay.AddOverlay(_tintOverlay); + } + + private void OnShutdown(EntityUid uid, ShadekinComponent component, ComponentShutdown args) + { + if (_player.LocalPlayer?.ControlledEntity != uid) + return; + + _overlay.RemoveOverlay(_tintOverlay); + } + + private void OnPlayerAttached(EntityUid uid, ShadekinComponent component, PlayerAttachedEvent args) + { + _overlay.AddOverlay(_tintOverlay); + } + + private void OnPlayerDetached(EntityUid uid, ShadekinComponent component, PlayerDetachedEvent args) + { + _overlay.RemoveOverlay(_tintOverlay); + } + + private void OnRoundRestart(RoundRestartCleanupEvent args) + { + _overlay.RemoveOverlay(_tintOverlay); + } + + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var uid = _player.LocalPlayer?.ControlledEntity; + if (uid == null || + !_entity.TryGetComponent(uid, out ShadekinComponent? comp) || + !_entity.TryGetComponent(uid, out SpriteComponent? sprite) || + !sprite.LayerMapTryGet(HumanoidVisualLayers.Eyes, out var index) || + !sprite.TryGetLayer(index, out var layer)) + return; + + // Eye color + comp.TintColor = new Vector3(layer.Color.R, layer.Color.G, layer.Color.B); + + // 1/3 = 0.333... + // intensity = min + (power / max) + // intensity = intensity / 0.333 + // intensity = clamp intensity min, max + const float min = 0.45f; + const float max = 0.75f; + comp.TintIntensity = Math.Clamp(min + (comp.PowerLevel / comp.PowerLevelMax) * 0.333f, min, max); + + UpdateShader(comp.TintColor, comp.TintIntensity); + } + + + private void UpdateShader(Vector3? color, float? intensity) + { + while (_overlay.HasOverlay<ColorTintOverlay>()) + { + _overlay.RemoveOverlay(_tintOverlay); + } + + if (color != null) + _tintOverlay.TintColor = color; + if (intensity != null) + _tintOverlay.TintAmount = intensity; + + _overlay.AddOverlay(_tintOverlay); + } +} diff --git a/Content.Client/ADT/Shaders/ColorTintOverlay.cs b/Content.Client/ADT/Shaders/ColorTintOverlay.cs new file mode 100644 index 00000000000..9e08d0ee020 --- /dev/null +++ b/Content.Client/ADT/Shaders/ColorTintOverlay.cs @@ -0,0 +1,64 @@ +using System.Numerics; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Matrix3x2 = System.Numerics.Matrix3x2; +using Vector3 = Robust.Shared.Maths.Vector3; + +namespace Content.Client.ADT.Overlays.Shaders; + +/// <summary> +/// A simple overlay that applies a colored tint to the screen. +/// </summary> +public sealed class ColorTintOverlay : Overlay +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IEntityManager _entity = default!; + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _shader; + + /// <summary> + /// The color to tint the screen to as RGB on a scale of 0-1. + /// </summary> + public Vector3? TintColor = null; + /// <summary> + /// The percent to tint the screen by on a scale of 0-1. + /// </summary> + public float? TintAmount = null; + /// <summary> + /// Component required to be on the entity to tint the screen. + /// </summary> + public Component? Comp = null; + + public ColorTintOverlay() + { + IoCManager.InjectDependencies(this); + + _shader = _prototype.Index<ShaderPrototype>("ColorTint").InstanceUnique(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null || + _player.LocalPlayer?.ControlledEntity is not { Valid: true } player || + Comp != null && !_entity.HasComponent(player, Comp.GetType())) + return; + + _shader.SetParameter("SCREEN_TEXTURE", ScreenTexture); + if (TintColor != null) + _shader.SetParameter("tint_color", TintColor.Value); + if (TintAmount != null) + _shader.SetParameter("tint_amount", TintAmount.Value); + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.SetTransform(Matrix3x2.Identity); + worldHandle.UseShader(_shader); + worldHandle.DrawRect(viewport, Color.White); + worldHandle.UseShader(null); + } +} diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs index ddd66623bd4..18aa02e9d67 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs +++ b/Content.Client/Administration/UI/Bwoink/BwoinkControl.xaml.cs @@ -88,6 +88,10 @@ public BwoinkControl() var ach = AHelpHelper.EnsurePanel(a.SessionId); var bch = AHelpHelper.EnsurePanel(b.SessionId); + // Pinned players first + if (a.IsPinned != b.IsPinned) + return a.IsPinned ? -1 : 1; + // First, sort by unread. Any chat with unread messages appears first. We just sort based on unread // status, not number of unread messages, so that more recent unread messages take priority. var aUnread = ach.Unread > 0; @@ -99,15 +103,31 @@ public BwoinkControl() if (a.Connected != b.Connected) return a.Connected ? -1 : 1; - // Next, group by whether or not the players have participated in this round. - // The ahelp window shows all players that have connected since server restart, this groups them all towards the bottom. - if (a.ActiveThisRound != b.ActiveThisRound) - return a.ActiveThisRound ? -1 : 1; + // Sort connected players by New Player status, then by Antag status + if (a.Connected && b.Connected) + { + var aNewPlayer = a.OverallPlaytime <= TimeSpan.FromMinutes(_cfg.GetCVar(CCVars.NewPlayerThreshold)); + var bNewPlayer = b.OverallPlaytime <= TimeSpan.FromMinutes(_cfg.GetCVar(CCVars.NewPlayerThreshold)); + + if (aNewPlayer != bNewPlayer) + return aNewPlayer ? -1 : 1; + + if (a.Antag != b.Antag) + return a.Antag ? -1 : 1; + } + + // Sort disconnected players by participation in the round + if (!a.Connected && !b.Connected) + { + if (a.ActiveThisRound != b.ActiveThisRound) + return a.ActiveThisRound ? -1 : 1; + } // Finally, sort by the most recent message. return bch.LastMessage.CompareTo(ach.LastMessage); }; + Bans.OnPressed += _ => { if (_currentPlayer is not null) @@ -253,7 +273,20 @@ private void SwitchToChannel(NetUserId? ch) public void PopulateList() { + // Maintain existing pin statuses + var pinnedPlayers = ChannelSelector.PlayerInfo.Where(p => p.IsPinned).ToDictionary(p => p.SessionId); + ChannelSelector.PopulateList(); + + // Restore pin statuses + foreach (var player in ChannelSelector.PlayerInfo) + { + if (pinnedPlayers.TryGetValue(player.SessionId, out var pinnedPlayer)) + { + player.IsPinned = pinnedPlayer.IsPinned; + } + } + UpdateButtons(); } } diff --git a/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs b/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs index 30f9d24df1d..e8653843c74 100644 --- a/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs +++ b/Content.Client/Administration/UI/Bwoink/BwoinkWindow.xaml.cs @@ -30,7 +30,11 @@ public BwoinkWindow() } }; - OnOpen += () => Bwoink.PopulateList(); + OnOpen += () => + { + Bwoink.ChannelSelector.StopFiltering(); + Bwoink.PopulateList(); + }; } } } diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 12522d552d7..c7fbf6c2dc0 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -4,154 +4,166 @@ using Content.Client.Verbs.UI; using Content.Shared.Administration; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Input; +using Robust.Shared.Utility; -namespace Content.Client.Administration.UI.CustomControls +namespace Content.Client.Administration.UI.CustomControls; + +[GenerateTypedNameReferences] +public sealed partial class PlayerListControl : BoxContainer { - [GenerateTypedNameReferences] - public sealed partial class PlayerListControl : BoxContainer - { - private readonly AdminSystem _adminSystem; + private readonly AdminSystem _adminSystem; - private List<PlayerInfo> _playerList = new(); - private readonly List<PlayerInfo> _sortedPlayerList = new(); + private readonly IEntityManager _entManager; + private readonly IUserInterfaceManager _uiManager; - public event Action<PlayerInfo?>? OnSelectionChanged; - public IReadOnlyList<PlayerInfo> PlayerInfo => _playerList; + private PlayerInfo? _selectedPlayer; - public Func<PlayerInfo, string, string>? OverrideText; - public Comparison<PlayerInfo>? Comparison; + private List<PlayerInfo> _playerList = new(); + private List<PlayerInfo> _sortedPlayerList = new(); - private IEntityManager _entManager; - private IUserInterfaceManager _uiManager; + public Comparison<PlayerInfo>? Comparison; + public Func<PlayerInfo, string, string>? OverrideText; - private PlayerInfo? _selectedPlayer; + public PlayerListControl() + { + _entManager = IoCManager.Resolve<IEntityManager>(); + _uiManager = IoCManager.Resolve<IUserInterfaceManager>(); + _adminSystem = _entManager.System<AdminSystem>(); + RobustXamlLoader.Load(this); + // Fill the Option data + PlayerListContainer.ItemPressed += PlayerListItemPressed; + PlayerListContainer.ItemKeyBindDown += PlayerListItemKeyBindDown; + PlayerListContainer.GenerateItem += GenerateButton; + PlayerListContainer.NoItemSelected += PlayerListNoItemSelected; + PopulateList(_adminSystem.PlayerList); + FilterLineEdit.OnTextChanged += _ => FilterList(); + _adminSystem.PlayerListChanged += PopulateList; + BackgroundPanel.PanelOverride = new StyleBoxFlat { BackgroundColor = new Color(32, 32, 40) }; + } - public PlayerListControl() - { - _entManager = IoCManager.Resolve<IEntityManager>(); - _uiManager = IoCManager.Resolve<IUserInterfaceManager>(); - _adminSystem = _entManager.System<AdminSystem>(); - RobustXamlLoader.Load(this); - // Fill the Option data - PlayerListContainer.ItemPressed += PlayerListItemPressed; - PlayerListContainer.ItemKeyBindDown += PlayerListItemKeyBindDown; - PlayerListContainer.GenerateItem += GenerateButton; - PlayerListContainer.NoItemSelected += PlayerListNoItemSelected; - PopulateList(_adminSystem.PlayerList); - FilterLineEdit.OnTextChanged += _ => FilterList(); - _adminSystem.PlayerListChanged += PopulateList; - BackgroundPanel.PanelOverride = new StyleBoxFlat {BackgroundColor = new Color(32, 32, 40)}; - } + public IReadOnlyList<PlayerInfo> PlayerInfo => _playerList; - private void PlayerListNoItemSelected() - { - _selectedPlayer = null; - OnSelectionChanged?.Invoke(null); - } + public event Action<PlayerInfo?>? OnSelectionChanged; - private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? data) - { - if (args == null || data is not PlayerListData {Info: var selectedPlayer}) - return; + private void PlayerListNoItemSelected() + { + _selectedPlayer = null; + OnSelectionChanged?.Invoke(null); + } - if (selectedPlayer == _selectedPlayer) - return; + private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? data) + { + if (args == null || data is not PlayerListData { Info: var selectedPlayer }) + return; - if (args.Event.Function != EngineKeyFunctions.UIClick) - return; + if (selectedPlayer == _selectedPlayer) + return; - OnSelectionChanged?.Invoke(selectedPlayer); - _selectedPlayer = selectedPlayer; + if (args.Event.Function != EngineKeyFunctions.UIClick) + return; - // update label text. Only required if there is some override (e.g. unread bwoink count). - if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) - label.Text = GetText(selectedPlayer); - } + OnSelectionChanged?.Invoke(selectedPlayer); + _selectedPlayer = selectedPlayer; - private void PlayerListItemKeyBindDown(GUIBoundKeyEventArgs? args, ListData? data) - { - if (args == null || data is not PlayerListData { Info: var selectedPlayer }) - return; + // update label text. Only required if there is some override (e.g. unread bwoink count). + if (OverrideText != null && args.Button.Children.FirstOrDefault()?.Children?.FirstOrDefault() is Label label) + label.Text = GetText(selectedPlayer); + } - if (args.Function != EngineKeyFunctions.UIRightClick || selectedPlayer.NetEntity == null) - return; + private void PlayerListItemKeyBindDown(GUIBoundKeyEventArgs? args, ListData? data) + { + if (args == null || data is not PlayerListData { Info: var selectedPlayer }) + return; - _uiManager.GetUIController<VerbMenuUIController>().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); - args.Handle(); - } + if (args.Function != EngineKeyFunctions.UIRightClick || selectedPlayer.NetEntity == null) + return; + + _uiManager.GetUIController<VerbMenuUIController>().OpenVerbMenu(selectedPlayer.NetEntity.Value, true); + args.Handle(); + } + + public void StopFiltering() + { + FilterLineEdit.Text = string.Empty; + } - public void StopFiltering() + private void FilterList() + { + _sortedPlayerList.Clear(); + foreach (var info in _playerList) { - FilterLineEdit.Text = string.Empty; + var displayName = $"{info.CharacterName} ({info.Username})"; + if (info.IdentityName != info.CharacterName) + displayName += $" [{info.IdentityName}]"; + if (!string.IsNullOrEmpty(FilterLineEdit.Text) + && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) + continue; + _sortedPlayerList.Add(info); } - private void FilterList() - { - _sortedPlayerList.Clear(); - foreach (var info in _playerList) - { - var displayName = $"{info.CharacterName} ({info.Username})"; - if (info.IdentityName != info.CharacterName) - displayName += $" [{info.IdentityName}]"; - if (!string.IsNullOrEmpty(FilterLineEdit.Text) - && !displayName.ToLowerInvariant().Contains(FilterLineEdit.Text.Trim().ToLowerInvariant())) - continue; - _sortedPlayerList.Add(info); - } + if (Comparison != null) + _sortedPlayerList.Sort((a, b) => Comparison(a, b)); - if (Comparison != null) - _sortedPlayerList.Sort((a, b) => Comparison(a, b)); + PlayerListContainer.PopulateList(_sortedPlayerList.Select(info => new PlayerListData(info)).ToList()); + if (_selectedPlayer != null) + PlayerListContainer.Select(new PlayerListData(_selectedPlayer)); + } - PlayerListContainer.PopulateList(_sortedPlayerList.Select(info => new PlayerListData(info)).ToList()); - if (_selectedPlayer != null) - PlayerListContainer.Select(new PlayerListData(_selectedPlayer)); - } - public void PopulateList(IReadOnlyList<PlayerInfo>? players = null) - { - players ??= _adminSystem.PlayerList; + public void PopulateList(IReadOnlyList<PlayerInfo>? players = null) + { + // Maintain existing pin statuses + var pinnedPlayers = _playerList.Where(p => p.IsPinned).ToDictionary(p => p.SessionId); - _playerList = players.ToList(); - if (_selectedPlayer != null && !_playerList.Contains(_selectedPlayer)) - _selectedPlayer = null; + players ??= _adminSystem.PlayerList; - FilterList(); - } + _playerList = players.ToList(); - private string GetText(PlayerInfo info) + // Restore pin statuses + foreach (var player in _playerList) { - var text = $"{info.CharacterName} ({info.Username})"; - if (OverrideText != null) - text = OverrideText.Invoke(info, text); - return text; + if (pinnedPlayers.TryGetValue(player.SessionId, out var pinnedPlayer)) + { + player.IsPinned = pinnedPlayer.IsPinned; + } } - private void GenerateButton(ListData data, ListContainerButton button) - { - if (data is not PlayerListData { Info: var info }) - return; + if (_selectedPlayer != null && !_playerList.Contains(_selectedPlayer)) + _selectedPlayer = null; - button.AddChild(new BoxContainer - { - Orientation = LayoutOrientation.Vertical, - Children = - { - new Label - { - ClipText = true, - Text = GetText(info) - } - } - }); - - button.AddStyleClass(ListContainer.StyleClassListContainerButton); - } + FilterList(); + } + + + private string GetText(PlayerInfo info) + { + var text = $"{info.CharacterName} ({info.Username})"; + if (OverrideText != null) + text = OverrideText.Invoke(info, text); + return text; } - public record PlayerListData(PlayerInfo Info) : ListData; + private void GenerateButton(ListData data, ListContainerButton button) + { + if (data is not PlayerListData { Info: var info }) + return; + + var entry = new PlayerListEntry(); + entry.Setup(info, OverrideText); + entry.OnPinStatusChanged += _ => + { + FilterList(); + }; + + button.AddChild(entry); + button.AddStyleClass(ListContainer.StyleClassListContainerButton); + } } + +public record PlayerListData(PlayerInfo Info) : ListData; diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml new file mode 100644 index 00000000000..af13ccc0e09 --- /dev/null +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml @@ -0,0 +1,6 @@ +<BoxContainer xmlns="https://spacestation14.io" + Orientation="Horizontal" HorizontalExpand="true"> + <Label Name="PlayerEntryLabel" Text="" ClipText="True" HorizontalExpand="True" /> + <TextureButton Name="PlayerEntryPinButton" + HorizontalAlignment="Right" /> +</BoxContainer> diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs new file mode 100644 index 00000000000..cd6a56ea71e --- /dev/null +++ b/Content.Client/Administration/UI/CustomControls/PlayerListEntry.xaml.cs @@ -0,0 +1,58 @@ +using Content.Client.Stylesheets; +using Content.Shared.Administration; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Utility; + +namespace Content.Client.Administration.UI.CustomControls; + +[GenerateTypedNameReferences] +public sealed partial class PlayerListEntry : BoxContainer +{ + public PlayerListEntry() + { + RobustXamlLoader.Load(this); + } + + public event Action<PlayerInfo>? OnPinStatusChanged; + + public void Setup(PlayerInfo info, Func<PlayerInfo, string, string>? overrideText) + { + Update(info, overrideText); + PlayerEntryPinButton.OnPressed += HandlePinButtonPressed(info); + } + + private Action<BaseButton.ButtonEventArgs> HandlePinButtonPressed(PlayerInfo info) + { + return args => + { + info.IsPinned = !info.IsPinned; + UpdatePinButtonTexture(info.IsPinned); + OnPinStatusChanged?.Invoke(info); + }; + } + + private void Update(PlayerInfo info, Func<PlayerInfo, string, string>? overrideText) + { + PlayerEntryLabel.Text = overrideText?.Invoke(info, $"{info.CharacterName} ({info.Username})") ?? + $"{info.CharacterName} ({info.Username})"; + + UpdatePinButtonTexture(info.IsPinned); + } + + private void UpdatePinButtonTexture(bool isPinned) + { + if (isPinned) + { + PlayerEntryPinButton?.RemoveStyleClass(StyleNano.StyleClassPinButtonUnpinned); + PlayerEntryPinButton?.AddStyleClass(StyleNano.StyleClassPinButtonPinned); + } + else + { + PlayerEntryPinButton?.RemoveStyleClass(StyleNano.StyleClassPinButtonPinned); + PlayerEntryPinButton?.AddStyleClass(StyleNano.StyleClassPinButtonUnpinned); + } + } +} diff --git a/Content.Client/Arcade/BlockGameMenu.cs b/Content.Client/Arcade/BlockGameMenu.cs index 4a579fc4bf4..ad360c54394 100644 --- a/Content.Client/Arcade/BlockGameMenu.cs +++ b/Content.Client/Arcade/BlockGameMenu.cs @@ -380,7 +380,7 @@ private Control SetupGameGrid(Texture panelTex) { PanelOverride = back, HorizontalExpand = true, - SizeFlagsStretchRatio = 60 + SizeFlagsStretchRatio = 34.25f }; var backgroundPanel = new PanelContainer { diff --git a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs index 8fa8035afd6..4f08e6bd0ac 100644 --- a/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/BlockGameBoundUserInterface.cs @@ -17,6 +17,7 @@ protected override void Open() base.Open(); _menu = this.CreateWindow<BlockGameMenu>(); + _menu.OnAction += SendAction; } protected override void ReceiveMessage(BoundUserInterfaceMessage message) diff --git a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs index c0704530de2..8fff406e86c 100644 --- a/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs +++ b/Content.Client/Arcade/UI/SpaceVillainArcadeBoundUserInterface.cs @@ -25,6 +25,7 @@ protected override void Open() base.Open(); _menu = this.CreateWindow<SpaceVillainArcadeMenu>(); + _menu.OnPlayerAction += SendAction; } protected override void ReceiveMessage(BoundUserInterfaceMessage message) diff --git a/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs b/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs index f1cb27a62a4..1bc1c0dba9a 100644 --- a/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs +++ b/Content.Client/Chemistry/UI/TransferAmountBoundUserInterface.cs @@ -1,4 +1,5 @@ using Content.Shared.Chemistry; +using Content.Shared.Chemistry.Components; using Content.Shared.FixedPoint; using JetBrains.Annotations; using Robust.Client.GameObjects; @@ -9,11 +10,15 @@ namespace Content.Client.Chemistry.UI [UsedImplicitly] public sealed class TransferAmountBoundUserInterface : BoundUserInterface { + private IEntityManager _entManager; + private EntityUid _owner; [ViewVariables] private TransferAmountWindow? _window; public TransferAmountBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { + _owner = owner; + _entManager = IoCManager.Resolve<IEntityManager>(); } protected override void Open() @@ -21,6 +26,9 @@ protected override void Open() base.Open(); _window = this.CreateWindow<TransferAmountWindow>(); + if (_entManager.TryGetComponent<SolutionTransferComponent>(_owner, out var comp)) + _window.SetBounds(comp.MinimumTransferAmount.Int(), comp.MaximumTransferAmount.Int()); + _window.ApplyButton.OnPressed += _ => { if (int.TryParse(_window.AmountLineEdit.Text, out var i)) diff --git a/Content.Client/Chemistry/UI/TransferAmountWindow.xaml b/Content.Client/Chemistry/UI/TransferAmountWindow.xaml index 3d787c69c10..c73d86b10f1 100644 --- a/Content.Client/Chemistry/UI/TransferAmountWindow.xaml +++ b/Content.Client/Chemistry/UI/TransferAmountWindow.xaml @@ -6,6 +6,10 @@ <BoxContainer Orientation="Horizontal"> <LineEdit Name="AmountLineEdit" Access="Public" HorizontalExpand="True" PlaceHolder="{Loc 'ui-transfer-amount-line-edit-placeholder'}"/> </BoxContainer> + <BoxContainer Orientation="Horizontal"> + <Label Name="MinimumAmount" Access="Public" HorizontalExpand="True" /> + <Label Name="MaximumAmount" Access="Public" /> + </BoxContainer> <Button Name="ApplyButton" Access="Public" Text="{Loc 'ui-transfer-amount-apply'}"/> </BoxContainer> </DefaultWindow> diff --git a/Content.Client/Chemistry/UI/TransferAmountWindow.xaml.cs b/Content.Client/Chemistry/UI/TransferAmountWindow.xaml.cs index 767e5cc8230..6bae0444415 100644 --- a/Content.Client/Chemistry/UI/TransferAmountWindow.xaml.cs +++ b/Content.Client/Chemistry/UI/TransferAmountWindow.xaml.cs @@ -8,9 +8,29 @@ namespace Content.Client.Chemistry.UI [GenerateTypedNameReferences] public sealed partial class TransferAmountWindow : DefaultWindow { + private int _max = Int32.MaxValue; + private int _min = 1; + public TransferAmountWindow() { RobustXamlLoader.Load(this); + AmountLineEdit.OnTextChanged += OnValueChanged; + } + + public void SetBounds(int min, int max) + { + _min = min; + _max = max; + MinimumAmount.Text = Loc.GetString("comp-solution-transfer-set-amount-min", ("amount", _min)); + MaximumAmount.Text = Loc.GetString("comp-solution-transfer-set-amount-max", ("amount", _max)); + } + + private void OnValueChanged(LineEdit.LineEditEventArgs args) + { + if (!int.TryParse(AmountLineEdit.Text, out var amount) || amount > _max || amount < _min) + ApplyButton.Disabled = true; + else + ApplyButton.Disabled = false; } } } diff --git a/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsSystem.cs b/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsSystem.cs index 17b88fb5a8f..010bfb31845 100644 --- a/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsSystem.cs +++ b/Content.Client/Chemistry/Visualizers/SolutionContainerVisualsSystem.cs @@ -2,6 +2,8 @@ using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; +using Content.Shared.Clothing; +using Content.Shared.Clothing.Components; using Content.Shared.Hands; using Content.Shared.Item; using Content.Shared.Rounding; @@ -20,6 +22,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent<SolutionContainerVisualsComponent, MapInitEvent>(OnMapInit); SubscribeLocalEvent<SolutionContainerVisualsComponent, GetInhandVisualsEvent>(OnGetHeldVisuals); + SubscribeLocalEvent<SolutionContainerVisualsComponent, GetEquipmentVisualsEvent>(OnGetClothingVisuals); } private void OnMapInit(EntityUid uid, SolutionContainerVisualsComponent component, MapInitEvent args) @@ -174,4 +177,41 @@ private void OnGetHeldVisuals(EntityUid uid, SolutionContainerVisualsComponent c args.Layers.Add((key, layer)); } } + + private void OnGetClothingVisuals(Entity<SolutionContainerVisualsComponent> ent, ref GetEquipmentVisualsEvent args) + { + if (ent.Comp.EquippedFillBaseName == null) + return; + + if (!TryComp<AppearanceComponent>(ent, out var appearance)) + return; + + if (!TryComp<ClothingComponent>(ent, out var clothing)) + return; + + if (!AppearanceSystem.TryGetData<float>(ent, SolutionContainerVisuals.FillFraction, out var fraction, appearance)) + return; + + var closestFillSprite = ContentHelpers.RoundToLevels(fraction, 1, ent.Comp.EquippedMaxFillLevels + 1); + + if (closestFillSprite > 0) + { + var layer = new PrototypeLayerData(); + + var equippedPrefix = clothing.EquippedPrefix == null ? $"equipped-{args.Slot}" : $" {clothing.EquippedPrefix}-equipped-{args.Slot}"; + var key = equippedPrefix + ent.Comp.EquippedFillBaseName + closestFillSprite; + + // Make sure the sprite state is valid so we don't show a big red error message + // This saves us from having to make fill level sprites for every possible slot the item could be in (including pockets). + if (!TryComp<SpriteComponent>(ent, out var sprite) || sprite.BaseRSI == null || !sprite.BaseRSI.TryGetState(key, out _)) + return; + + layer.State = key; + + if (ent.Comp.ChangeColor && AppearanceSystem.TryGetData<Color>(ent, SolutionContainerVisuals.Color, out var color, appearance)) + layer.Color = color; + + args.Layers.Add((key, layer)); + } + } } diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 1c0d831226d..96bbcc54f2a 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -1,10 +1,12 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; +using Content.Client.DisplacementMap; using Content.Client.Inventory; using Content.Shared.Clothing; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; +using Content.Shared.DisplacementMap; using Content.Shared.Humanoid; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; @@ -50,6 +52,7 @@ public sealed class ClientClothingSystem : ClothingSystem [Dependency] private readonly IResourceCache _cache = default!; [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly DisplacementMapSystem _displacement = default!; public override void Initialize() { @@ -64,15 +67,14 @@ public override void Initialize() private void OnAppearanceUpdate(EntityUid uid, InventoryComponent component, ref AppearanceChangeEvent args) { - // May need to update jumpsuit stencils if the sex changed. Also required to properly set the stencil on init + // May need to update displacement maps if the sex changed. Also required to properly set the stencil on init if (args.Sprite == null) return; - if (_inventorySystem.TryGetSlotEntity(uid, Jumpsuit, out var suit, component) - && TryComp(suit, out ClothingComponent? clothing)) + var enumerator = _inventorySystem.GetSlotEnumerator((uid, component)); + while (enumerator.NextItem(out var item, out var slot)) { - SetGenderedMask(uid, args.Sprite, clothing); - return; + RenderEquipment(uid, item, slot.Name, component); } // No clothing equipped -> make sure the layer is hidden, though this should already be handled by on-unequip. @@ -179,14 +181,6 @@ private void OnVisualsChanged(EntityUid uid, InventoryComponent component, Visua private void OnDidUnequip(EntityUid uid, SpriteComponent component, DidUnequipEvent args) { - // Hide jumpsuit mask layer. - if (args.Slot == Jumpsuit - && TryComp(uid, out SpriteComponent? sprite) - && sprite.LayerMapTryGet(HumanoidVisualLayers.StencilMask, out var maskLayer)) - { - sprite.LayerSetVisible(maskLayer, false); - } - if (!TryComp(uid, out InventorySlotsComponent? inventorySlots)) return; @@ -231,9 +225,6 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot return; } - if (slot == Jumpsuit) - SetGenderedMask(equipee, sprite, clothingComponent); - if (!_inventorySystem.TryGetSlot(equipee, slot, out var slotDef, inventory)) return; @@ -265,7 +256,25 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot // temporary, until layer draw depths get added. Basically: a layer with the key "slot" is being used as a // bookmark to determine where in the list of layers we should insert the clothing layers. bool slotLayerExists = sprite.LayerMapTryGet(slot, out var index); - var displacementData = inventory.Displacements.GetValueOrDefault(slot); + + // Select displacement maps + var displacementData = inventory.Displacements.GetValueOrDefault(slot); //Default unsexed map + + var equipeeSex = CompOrNull<HumanoidAppearanceComponent>(equipee)?.Sex; + if (equipeeSex != null) + { + switch (equipeeSex) + { + case Sex.Male: + if (inventory.MaleDisplacements.Count > 0) + displacementData = inventory.MaleDisplacements.GetValueOrDefault(slot); + break; + case Sex.Female: + if (inventory.FemaleDisplacements.Count > 0) + displacementData = inventory.FemaleDisplacements.GetValueOrDefault(slot); + break; + } + } // add the new layers foreach (var (key, layerData) in ev.Layers) @@ -292,7 +301,7 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot index = sprite.LayerMapReserveBlank(key); if (sprite[index] is not Layer layer) - return; + continue; // In case no RSI is given, use the item's base RSI as a default. This cuts down on a lot of unnecessary yaml entries. if (layerData.RsiPath == null @@ -303,78 +312,19 @@ private void RenderEquipment(EntityUid equipee, EntityUid equipment, string slot layer.SetRsi(clothingSprite.BaseRSI); } - // Another "temporary" fix for clothing stencil masks. - // Sprite layer redactor when - // Sprite "redactor" just a week away. - if (slot == Jumpsuit) - layerData.Shader ??= "StencilDraw"; - sprite.LayerSetData(index, layerData); layer.Offset += slotDef.Offset; - if (displacementData != null) + if (displacementData is not null) { - if (displacementData.ShaderOverride != null) - sprite.LayerSetShader(index, displacementData.ShaderOverride); - - var displacementKey = $"{key}-displacement"; - if (!revealedLayers.Add(displacementKey)) - { - Log.Warning($"Duplicate key for clothing visuals DISPLACEMENT: {displacementKey}."); + //Checking that the state is not tied to the current race. In this case we don't need to use the displacement maps. + if (layerData.State is not null && inventory.SpeciesId is not null && layerData.State.EndsWith(inventory.SpeciesId)) continue; - } - - var displacementLayer = _serialization.CreateCopy(displacementData.Layer, notNullableOverride: true); - displacementLayer.CopyToShaderParameters!.LayerKey = key; - // Add before main layer for this item. - sprite.AddLayer(displacementLayer, index); - sprite.LayerMapSet(displacementKey, index); - - revealedLayers.Add(displacementKey); + _displacement.TryAddDisplacement(displacementData, sprite, index, key, revealedLayers); } } RaiseLocalEvent(equipment, new EquipmentVisualsUpdatedEvent(equipee, slot, revealedLayers), true); } - - - /// <summary> - /// Sets a sprite's gendered mask based on gender (obviously). - /// </summary> - /// <param name="sprite">Sprite to modify</param> - /// <param name="humanoid">Humanoid, to get gender from</param> - /// <param name="clothing">Clothing component, to get mask sprite type</param> - private void SetGenderedMask(EntityUid uid, SpriteComponent sprite, ClothingComponent clothing) - { - if (!sprite.LayerMapTryGet(HumanoidVisualLayers.StencilMask, out var layer)) - return; - - ClothingMask mask; - string prefix; - - switch (CompOrNull<HumanoidAppearanceComponent>(uid)?.Sex) - { - case Sex.Male: - mask = clothing.MaleMask; - prefix = "male_"; - break; - case Sex.Female: - mask = clothing.FemaleMask; - prefix = "female_"; - break; - default: - mask = clothing.UnisexMask; - prefix = "unisex_"; - break; - } - - sprite.LayerSetState(layer, mask switch - { - ClothingMask.NoMask => $"{prefix}none", - ClothingMask.UniformTop => $"{prefix}top", - _ => $"{prefix}full", - }); - sprite.LayerSetVisible(layer, true); - } } diff --git a/Content.Client/Corvax/TTS/TTSSystem.cs b/Content.Client/Corvax/TTS/TTSSystem.cs index b31ba16d621..fc843fc873a 100644 --- a/Content.Client/Corvax/TTS/TTSSystem.cs +++ b/Content.Client/Corvax/TTS/TTSSystem.cs @@ -1,4 +1,4 @@ -using Content.Shared.Chat; +using Content.Shared.Chat; using Content.Shared.Corvax.CCCVars; using Content.Shared.Corvax.TTS; using Robust.Client.Audio; @@ -8,6 +8,8 @@ using Robust.Shared.Configuration; using Robust.Shared.ContentPack; using Robust.Shared.Utility; +using Content.Shared.ADT.Language; // ADT Languages +using Robust.Shared.Player; namespace Content.Client.Corvax.TTS; @@ -20,6 +22,8 @@ public sealed class TTSSystem : EntitySystem [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IResourceManager _res = default!; [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly ISharedPlayerManager _playerManager = default!; + [Dependency] private readonly SharedLanguageSystem _language = default!; // ADT Languages private ISawmill _sawmill = default!; private readonly MemoryContentRoot _contentRoot = new(); @@ -68,7 +72,19 @@ private void OnPlayTTS(PlayTTSEvent ev) _sawmill.Verbose($"Play TTS audio {ev.Data.Length} bytes from {ev.SourceUid} entity"); var filePath = new ResPath($"{_fileIdx++}.ogg"); - _contentRoot.AddOrUpdateFile(filePath, ev.Data); + + // Languages TTS support start + var player = _playerManager.LocalSession?.AttachedEntity; + if (player != null) + { + if (_language.CanUnderstand(player.Value, ev.LanguageProtoId)) + _contentRoot.AddOrUpdateFile(filePath, ev.Data); + else + _contentRoot.AddOrUpdateFile(filePath, ev.LanguageData); + } + else + _contentRoot.AddOrUpdateFile(filePath, ev.Data); + // Languages TTS support end var audioResource = new AudioResource(); audioResource.Load(IoCManager.Instance!, Prefix / filePath); diff --git a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs index b97786cd41a..6ef282d219a 100644 --- a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs +++ b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs @@ -89,6 +89,7 @@ private void ButtonOnPressed(ButtonEventArgs obj) if (obj.Button.Name == null) return; _selected = obj.Button.Name; + OnSelected?.Invoke(_selected); RefreshList(); } diff --git a/Content.Client/DisplacementMap/DisplacementMapSystem.cs b/Content.Client/DisplacementMap/DisplacementMapSystem.cs new file mode 100644 index 00000000000..6db164a09f0 --- /dev/null +++ b/Content.Client/DisplacementMap/DisplacementMapSystem.cs @@ -0,0 +1,65 @@ +using Content.Shared.DisplacementMap; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Shared.Serialization.Manager; + +namespace Content.Client.DisplacementMap; + +public sealed class DisplacementMapSystem : EntitySystem +{ + [Dependency] private readonly ISerializationManager _serialization = default!; + + public bool TryAddDisplacement(DisplacementData data, SpriteComponent sprite, int index, string key, HashSet<string> revealedLayers) + { + if (data.ShaderOverride != null) + sprite.LayerSetShader(index, data.ShaderOverride); + + var displacementKey = $"{key}-displacement"; + if (!revealedLayers.Add(displacementKey)) + { + Log.Warning($"Duplicate key for DISPLACEMENT: {displacementKey}."); + return false; + } + + //allows you not to write it every time in the YML + foreach (var pair in data.SizeMaps) + { + pair.Value.CopyToShaderParameters??= new() + { + LayerKey = "dummy", + ParameterTexture = "displacementMap", + ParameterUV = "displacementUV", + }; + } + + if (!data.SizeMaps.ContainsKey(32)) + { + Log.Error($"DISPLACEMENT: {displacementKey} don't have 32x32 default displacement map"); + return false; + } + + // We choose a displacement map from the possible ones, matching the size with the original layer size. + // If there is no such a map, we use a standard 32 by 32 one + var displacementDataLayer = data.SizeMaps[EyeManager.PixelsPerMeter]; + var actualRSI = sprite.LayerGetActualRSI(index); + if (actualRSI is not null) + { + if (actualRSI.Size.X != actualRSI.Size.Y) + Log.Warning($"DISPLACEMENT: {displacementKey} has a resolution that is not 1:1, things can look crooked"); + + var layerSize = actualRSI.Size.X; + if (data.SizeMaps.ContainsKey(layerSize)) + displacementDataLayer = data.SizeMaps[layerSize]; + } + + var displacementLayer = _serialization.CreateCopy(displacementDataLayer, notNullableOverride: true); + displacementLayer.CopyToShaderParameters!.LayerKey = key; + + sprite.AddLayer(displacementLayer, index); + sprite.LayerMapSet(displacementKey, index); + + revealedLayers.Add(displacementKey); + + return true; + } +} diff --git a/Content.Client/Explosion/ExplosionOverlay.cs b/Content.Client/Explosion/ExplosionOverlay.cs index 8cf7447a5d8..653f63e0f90 100644 --- a/Content.Client/Explosion/ExplosionOverlay.cs +++ b/Content.Client/Explosion/ExplosionOverlay.cs @@ -16,15 +16,17 @@ public sealed class ExplosionOverlay : Overlay [Dependency] private readonly IRobustRandom _robustRandom = default!; [Dependency] private readonly IEntityManager _entMan = default!; [Dependency] private readonly IPrototypeManager _proto = default!; + private SharedAppearanceSystem _appearance; public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowFOV; private ShaderInstance _shader; - public ExplosionOverlay() + public ExplosionOverlay(SharedAppearanceSystem appearanceSystem) { IoCManager.InjectDependencies(this); _shader = _proto.Index<ShaderPrototype>("unshaded").Instance(); + _appearance = appearanceSystem; } protected override void Draw(in OverlayDrawArgs args) @@ -33,15 +35,14 @@ protected override void Draw(in OverlayDrawArgs args) drawHandle.UseShader(_shader); var xforms = _entMan.GetEntityQuery<TransformComponent>(); - var query = _entMan - .EntityQuery<ExplosionVisualsComponent, ExplosionVisualsTexturesComponent, AppearanceComponent>(true); + var query = _entMan.EntityQueryEnumerator<ExplosionVisualsComponent, ExplosionVisualsTexturesComponent>(); - foreach (var (visuals, textures, appearance) in query) + while (query.MoveNext(out var uid, out var visuals, out var textures)) { if (visuals.Epicenter.MapId != args.MapId) continue; - if (!appearance.TryGetData(ExplosionAppearanceData.Progress, out int index)) + if (!_appearance.TryGetData(uid, ExplosionAppearanceData.Progress, out int index)) continue; index = Math.Min(index, visuals.Intensity.Count - 1); diff --git a/Content.Client/Explosion/ExplosionOverlaySystem.cs b/Content.Client/Explosion/ExplosionOverlaySystem.cs index fe552af0e79..7e43bbdc38c 100644 --- a/Content.Client/Explosion/ExplosionOverlaySystem.cs +++ b/Content.Client/Explosion/ExplosionOverlaySystem.cs @@ -20,6 +20,7 @@ public sealed class ExplosionOverlaySystem : EntitySystem [Dependency] private readonly IOverlayManager _overlayMan = default!; [Dependency] private readonly SharedPointLightSystem _lights = default!; [Dependency] private readonly IMapManager _mapMan = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; public override void Initialize() { @@ -28,7 +29,7 @@ public override void Initialize() SubscribeLocalEvent<ExplosionVisualsComponent, ComponentInit>(OnExplosionInit); SubscribeLocalEvent<ExplosionVisualsComponent, ComponentRemove>(OnCompRemove); SubscribeLocalEvent<ExplosionVisualsComponent, ComponentHandleState>(OnExplosionHandleState); - _overlayMan.AddOverlay(new ExplosionOverlay()); + _overlayMan.AddOverlay(new ExplosionOverlay(_appearance)); } private void OnExplosionHandleState(EntityUid uid, ExplosionVisualsComponent component, ref ComponentHandleState args) diff --git a/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs b/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs new file mode 100644 index 00000000000..33944973b51 --- /dev/null +++ b/Content.Client/Ghost/GhostRoleRadioBoundUserInterface.cs @@ -0,0 +1,29 @@ +using Content.Shared.Ghost.Roles; +using Robust.Client.UserInterface; +using Robust.Shared.Prototypes; + +namespace Content.Client.Ghost; + +public sealed class GhostRoleRadioBoundUserInterface : BoundUserInterface +{ + private GhostRoleRadioMenu? _ghostRoleRadioMenu; + + public GhostRoleRadioBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _ghostRoleRadioMenu = this.CreateWindow<GhostRoleRadioMenu>(); + _ghostRoleRadioMenu.SetEntity(Owner); + _ghostRoleRadioMenu.SendGhostRoleRadioMessageAction += SendGhostRoleRadioMessage; + } + + public void SendGhostRoleRadioMessage(ProtoId<GhostRolePrototype> protoId) + { + SendMessage(new GhostRoleRadioMessage(protoId)); + } +} diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml b/Content.Client/Ghost/GhostRoleRadioMenu.xaml new file mode 100644 index 00000000000..c35ee128c52 --- /dev/null +++ b/Content.Client/Ghost/GhostRoleRadioMenu.xaml @@ -0,0 +1,8 @@ +<ui:RadialMenu + xmlns:ui="clr-namespace:Content.Client.UserInterface.Controls" + CloseButtonStyleClass="RadialMenuCloseButton" + VerticalExpand="True" + HorizontalExpand="True"> + <ui:RadialContainer Name="Main"> + </ui:RadialContainer> +</ui:RadialMenu> diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs new file mode 100644 index 00000000000..b05ac3fbddd --- /dev/null +++ b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs @@ -0,0 +1,107 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.Ghost.Roles; +using Content.Shared.Ghost.Roles.Components; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using System.Numerics; + +namespace Content.Client.Ghost; + +public sealed partial class GhostRoleRadioMenu : RadialMenu +{ + [Dependency] private readonly EntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + + public event Action<ProtoId<GhostRolePrototype>>? SendGhostRoleRadioMessageAction; + + public EntityUid Entity { get; set; } + + public GhostRoleRadioMenu() + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + } + + public void SetEntity(EntityUid uid) + { + Entity = uid; + RefreshUI(); + } + + private void RefreshUI() + { + // The main control that will contain all of the clickable options + var main = FindControl<RadialContainer>("Main"); + + // The purpose of this radial UI is for ghost role radios that allow you to select + // more than one potential option, such as with kobolds/lizards. + // This means that it won't show anything if SelectablePrototypes is empty. + if (!_entityManager.TryGetComponent<GhostRoleMobSpawnerComponent>(Entity, out var comp)) + return; + + foreach (var ghostRoleProtoString in comp.SelectablePrototypes) + { + // For each prototype we find we want to create a button that uses the name of the ghost role + // as the hover tooltip, and the icon is taken from either the ghost role entityprototype + // or the indicated icon entityprototype. + if (!_prototypeManager.TryIndex<GhostRolePrototype>(ghostRoleProtoString, out var ghostRoleProto)) + continue; + + var button = new GhostRoleRadioMenuButton() + { + StyleClasses = { "RadialMenuButton" }, + SetSize = new Vector2(64, 64), + ToolTip = Loc.GetString(ghostRoleProto.Name), + ProtoId = ghostRoleProto.ID, + }; + + var entProtoView = new EntityPrototypeView() + { + SetSize = new Vector2(48, 48), + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Stretch = SpriteView.StretchMode.Fill + }; + + // pick the icon if it exists, otherwise fallback to the ghost role's entity + if (_prototypeManager.TryIndex(ghostRoleProto.IconPrototype, out var iconProto)) + entProtoView.SetPrototype(iconProto); + else + entProtoView.SetPrototype(comp.Prototype); + + button.AddChild(entProtoView); + main.AddChild(button); + AddGhostRoleRadioMenuButtonOnClickActions(main); + } + } + + private void AddGhostRoleRadioMenuButtonOnClickActions(Control control) + { + var mainControl = control as RadialContainer; + + if (mainControl == null) + return; + + foreach (var child in mainControl.Children) + { + var castChild = child as GhostRoleRadioMenuButton; + + if (castChild == null) + continue; + + castChild.OnButtonUp += _ => + { + SendGhostRoleRadioMessageAction?.Invoke(castChild.ProtoId); + Close(); + }; + } + } +} + +public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButton +{ + public ProtoId<GhostRolePrototype> ProtoId { get; set; } +} diff --git a/Content.Client/Hands/Systems/HandsSystem.cs b/Content.Client/Hands/Systems/HandsSystem.cs index 7319b97b42b..ffa6dfd29d6 100644 --- a/Content.Client/Hands/Systems/HandsSystem.cs +++ b/Content.Client/Hands/Systems/HandsSystem.cs @@ -1,5 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using Content.Client.DisplacementMap; using Content.Client.Examine; using Content.Client.Strip; using Content.Client.Verbs.UI; @@ -28,6 +29,7 @@ public sealed class HandsSystem : SharedHandsSystem [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly StrippableSystem _stripSys = default!; [Dependency] private readonly ExamineSystem _examine = default!; + [Dependency] private readonly DisplacementMapSystem _displacement = default!; public event Action<string, HandLocation>? OnPlayerAddHand; public event Action<string>? OnPlayerRemoveHand; @@ -345,6 +347,10 @@ private void UpdateHandVisuals(EntityUid uid, EntityUid held, Hand hand, HandsCo } sprite.LayerSetData(index, layerData); + + //Add displacement maps + if (handComp.HandDisplacement is not null) + _displacement.TryAddDisplacement(handComp.HandDisplacement, sprite, index, key, revealedLayers); } RaiseLocalEvent(held, new HeldVisualsUpdatedEvent(uid, revealedLayers), true); diff --git a/Content.Client/Input/ContentContexts.cs b/Content.Client/Input/ContentContexts.cs index 7a8a9938545..191bf7a2541 100644 --- a/Content.Client/Input/ContentContexts.cs +++ b/Content.Client/Input/ContentContexts.cs @@ -61,6 +61,7 @@ public static void SetupContexts(IInputContextContainer contexts) human.AddFunction(ContentKeyFunctions.AltUseItemInHand); human.AddFunction(ContentKeyFunctions.OpenCharacterMenu); human.AddFunction(ContentKeyFunctions.OpenEmotesMenu); + human.AddFunction(ContentKeyFunctions.OpenLanguagesMenu); // ADT Languages human.AddFunction(ContentKeyFunctions.ActivateItemInWorld); human.AddFunction(ContentKeyFunctions.ThrowItemInHand); human.AddFunction(ContentKeyFunctions.AltActivateItemInWorld); diff --git a/Content.Client/Lathe/LatheSystem.cs b/Content.Client/Lathe/LatheSystem.cs index c72f01b39b1..386520c198f 100644 --- a/Content.Client/Lathe/LatheSystem.cs +++ b/Content.Client/Lathe/LatheSystem.cs @@ -22,21 +22,29 @@ private void OnAppearanceChange(EntityUid uid, LatheComponent component, ref App if (args.Sprite == null) return; + // Lathe specific stuff + if (_appearance.TryGetData<bool>(uid, LatheVisuals.IsRunning, out var isRunning, args.Component)) + { + if (args.Sprite.LayerMapTryGet(LatheVisualLayers.IsRunning, out var runningLayer) && + component.RunningState != null && + component.IdleState != null) + { + var state = isRunning ? component.RunningState : component.IdleState; + args.Sprite.LayerSetState(runningLayer, state); + } + } + if (_appearance.TryGetData<bool>(uid, PowerDeviceVisuals.Powered, out var powered, args.Component) && args.Sprite.LayerMapTryGet(PowerDeviceVisualLayers.Powered, out var powerLayer)) { args.Sprite.LayerSetVisible(powerLayer, powered); - } - // Lathe specific stuff - if (_appearance.TryGetData<bool>(uid, LatheVisuals.IsRunning, out var isRunning, args.Component) && - args.Sprite.LayerMapTryGet(LatheVisualLayers.IsRunning, out var runningLayer) && - component.RunningState != null && - component.IdleState != null) - { - var state = isRunning ? component.RunningState : component.IdleState; - args.Sprite.LayerSetAnimationTime(runningLayer, 0f); - args.Sprite.LayerSetState(runningLayer, state); + if (component.UnlitIdleState != null && + component.UnlitRunningState != null) + { + var state = isRunning ? component.UnlitRunningState : component.UnlitIdleState; + args.Sprite.LayerSetState(powerLayer, state); + } } } diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml b/Content.Client/Lathe/UI/LatheMenu.xaml index e3247fe7037..5b21f0bae66 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml +++ b/Content.Client/Lathe/UI/LatheMenu.xaml @@ -100,11 +100,9 @@ Margin="5 0 0 0" Text="{Loc 'lathe-menu-fabricating-message'}"> </Label> - <EntityPrototypeView - Name="FabricatingEntityProto" - HorizontalAlignment="Left" - Margin="100 0 0 0" - /> + <BoxContainer Name="FabricatingDisplayContainer" + HorizontalAlignment="Left" + Margin="100 0 0 0"/> <Label Name="NameLabel" RectClipContent="True" diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 6f530b76c75..630ef41e9fb 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -1,18 +1,15 @@ -using System.Buffers; using System.Linq; using System.Text; using Content.Client.Materials; using Content.Shared.Lathe; using Content.Shared.Lathe.Prototypes; -using Content.Shared.Materials; using Content.Shared.Research.Prototypes; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; -using Robust.Client.ResourceManagement; -using Robust.Client.Graphics; using Robust.Shared.Prototypes; namespace Content.Client.Lathe.UI; @@ -92,7 +89,7 @@ public void PopulateRecipes() if (SearchBar.Text.Trim().Length != 0) { - if (proto.Name.ToLowerInvariant().Contains(SearchBar.Text.Trim().ToLowerInvariant())) + if (_lathe.GetRecipeName(recipe).ToLowerInvariant().Contains(SearchBar.Text.Trim().ToLowerInvariant())) recipesToShow.Add(proto); } else @@ -104,19 +101,15 @@ public void PopulateRecipes() if (!int.TryParse(AmountLineEdit.Text, out var quantity) || quantity <= 0) quantity = 1; - var sortedRecipesToShow = recipesToShow.OrderBy(p => p.Name); + var sortedRecipesToShow = recipesToShow.OrderBy(_lathe.GetRecipeName); RecipeList.Children.Clear(); _entityManager.TryGetComponent(Entity, out LatheComponent? lathe); foreach (var prototype in sortedRecipesToShow) { - EntityPrototype? recipeProto = null; - if (_prototypeManager.TryIndex(prototype.Result, out EntityPrototype? entityProto)) - recipeProto = entityProto; - var canProduce = _lathe.CanProduce(Entity, prototype, quantity, component: lathe); - var control = new RecipeControl(prototype, () => GenerateTooltipText(prototype), canProduce, recipeProto); + var control = new RecipeControl(_lathe, prototype, () => GenerateTooltipText(prototype), canProduce, GetRecipeDisplayControl(prototype)); control.OnButtonPressed += s => { if (!int.TryParse(AmountLineEdit.Text, out var amount) || amount <= 0) @@ -132,9 +125,9 @@ private string GenerateTooltipText(LatheRecipePrototype prototype) StringBuilder sb = new(); var multiplier = _entityManager.GetComponent<LatheComponent>(Entity).MaterialUseMultiplier; - foreach (var (id, amount) in prototype.RequiredMaterials) + foreach (var (id, amount) in prototype.Materials) { - if (!_prototypeManager.TryIndex<MaterialPrototype>(id, out var proto)) + if (!_prototypeManager.TryIndex(id, out var proto)) continue; var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, multiplier); @@ -163,8 +156,9 @@ private string GenerateTooltipText(LatheRecipePrototype prototype) sb.AppendLine(tooltipText); } - if (!string.IsNullOrWhiteSpace(prototype.Description)) - sb.AppendLine(Loc.GetString("lathe-menu-description-display", ("description", prototype.Description))); + var desc = _lathe.GetRecipeDescription(prototype); + if (!string.IsNullOrWhiteSpace(desc)) + sb.AppendLine(Loc.GetString("lathe-menu-description-display", ("description", desc))); // Remove last newline if (sb.Length > 0) @@ -222,13 +216,10 @@ public void PopulateQueueList(List<LatheRecipePrototype> queue) var queuedRecipeBox = new BoxContainer(); queuedRecipeBox.Orientation = BoxContainer.LayoutOrientation.Horizontal; - var queuedRecipeProto = new EntityPrototypeView(); - queuedRecipeBox.AddChild(queuedRecipeProto); - if (_prototypeManager.TryIndex(recipe.Result, out EntityPrototype? entityProto) && entityProto != null) - queuedRecipeProto.SetPrototype(entityProto); + queuedRecipeBox.AddChild(GetRecipeDisplayControl(recipe)); var queuedRecipeLabel = new Label(); - queuedRecipeLabel.Text = $"{idx}. {recipe.Name}"; + queuedRecipeLabel.Text = $"{idx}. {_lathe.GetRecipeName(recipe)}"; queuedRecipeBox.AddChild(queuedRecipeLabel); QueueList.AddChild(queuedRecipeBox); idx++; @@ -241,10 +232,29 @@ public void SetQueueInfo(LatheRecipePrototype? recipe) if (recipe == null) return; - if (_prototypeManager.TryIndex(recipe.Result, out EntityPrototype? entityProto) && entityProto != null) - FabricatingEntityProto.SetPrototype(entityProto); + FabricatingDisplayContainer.Children.Clear(); + FabricatingDisplayContainer.AddChild(GetRecipeDisplayControl(recipe)); + + NameLabel.Text = _lathe.GetRecipeName(recipe); + } + + public Control GetRecipeDisplayControl(LatheRecipePrototype recipe) + { + if (recipe.Icon != null) + { + var textRect = new TextureRect(); + textRect.Texture = _spriteSystem.Frame0(recipe.Icon); + return textRect; + } + + if (recipe.Result is { } result) + { + var entProtoView = new EntityPrototypeView(); + entProtoView.SetPrototype(result); + return entProtoView; + } - NameLabel.Text = $"{recipe.Name}"; + return new Control(); } private void OnItemSelected(OptionButton.ItemSelectedEventArgs obj) diff --git a/Content.Client/Lathe/UI/RecipeControl.xaml b/Content.Client/Lathe/UI/RecipeControl.xaml index 19e20c7c06d..1105ab478ff 100644 --- a/Content.Client/Lathe/UI/RecipeControl.xaml +++ b/Content.Client/Lathe/UI/RecipeControl.xaml @@ -5,8 +5,8 @@ Margin="0" StyleClasses="ButtonSquare"> <BoxContainer Orientation="Horizontal"> - <EntityPrototypeView - Name="RecipePrototype" + <BoxContainer + Name="RecipeDisplayContainer" Margin="0 0 4 0" HorizontalAlignment="Center" VerticalAlignment="Center" diff --git a/Content.Client/Lathe/UI/RecipeControl.xaml.cs b/Content.Client/Lathe/UI/RecipeControl.xaml.cs index db428d3cf0e..4f438c8a8e5 100644 --- a/Content.Client/Lathe/UI/RecipeControl.xaml.cs +++ b/Content.Client/Lathe/UI/RecipeControl.xaml.cs @@ -1,10 +1,7 @@ using Content.Shared.Research.Prototypes; using Robust.Client.AutoGenerated; -using Robust.Client.Graphics; using Robust.Client.UserInterface; -using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; -using Robust.Shared.Prototypes; namespace Content.Client.Lathe.UI; @@ -14,13 +11,12 @@ public sealed partial class RecipeControl : Control public Action<string>? OnButtonPressed; public Func<string> TooltipTextSupplier; - public RecipeControl(LatheRecipePrototype recipe, Func<string> tooltipTextSupplier, bool canProduce, EntityPrototype? entityPrototype = null) + public RecipeControl(LatheSystem latheSystem, LatheRecipePrototype recipe, Func<string> tooltipTextSupplier, bool canProduce, Control displayControl) { RobustXamlLoader.Load(this); - RecipeName.Text = recipe.Name; - if (entityPrototype != null) - RecipePrototype.SetPrototype(entityPrototype); + RecipeName.Text = latheSystem.GetRecipeName(recipe); + RecipeDisplayContainer.AddChild(displayControl); Button.Disabled = !canProduce; TooltipTextSupplier = tooltipTextSupplier; Button.TooltipSupplier = SupplyTooltip; diff --git a/Content.Client/Lobby/LobbyUIController.cs b/Content.Client/Lobby/LobbyUIController.cs index fbd7ee8521e..976c820fec3 100644 --- a/Content.Client/Lobby/LobbyUIController.cs +++ b/Content.Client/Lobby/LobbyUIController.cs @@ -273,6 +273,7 @@ private void OpenSavePanel() _logManager, _playerManager, _prototypeManager, + _resourceCache, _requirements, _markings); diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml index 534f084ea58..7cafca751db 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml @@ -38,6 +38,8 @@ <Button Name="ResetButton" Disabled="True" Text="{Loc 'humanoid-profile-editor-reset-button'}"/> <Button Name="ImportButton" Text="{Loc 'humanoid-profile-editor-import-button'}"/> <Button Name="ExportButton" Text="{Loc 'humanoid-profile-editor-export-button'}"/> + <Button Name="ExportImageButton" Text="{Loc 'humanoid-profile-editor-export-image-button'}"/> + <Button Name="OpenImagesButton" Text="{Loc 'humanoid-profile-editor-open-image-button'}"/> </BoxContainer> </ui:HighlightedContainer> </BoxContainer> diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs index cca4c1d0667..00a3173e36e 100644 --- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs +++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs @@ -6,6 +6,7 @@ using Content.Client.Lobby.UI.Roles; using Content.Client.Message; using Content.Client.Players.PlayTimeTracking; +using Content.Client.Sprite; using Content.Client.Stylesheets; using Content.Client.UserInterface.Systems.Guidebook; using Content.Shared.CCVar; @@ -28,6 +29,7 @@ using Robust.Client.UserInterface.XAML; using Robust.Client.Utility; using Robust.Shared.Configuration; +using Robust.Shared.ContentPack; using Robust.Shared.Enums; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -44,6 +46,7 @@ public sealed partial class HumanoidProfileEditor : BoxContainer private readonly IFileDialogManager _dialogManager; private readonly IPlayerManager _playerManager; private readonly IPrototypeManager _prototypeManager; + private readonly IResourceManager _resManager; private readonly MarkingManager _markingManager; private readonly JobRequirementsManager _requirements; private readonly LobbyUIController _controller; @@ -55,6 +58,7 @@ public sealed partial class HumanoidProfileEditor : BoxContainer private LoadoutWindow? _loadoutWindow; private bool _exporting; + private bool _imaging; /// <summary> /// If we're attempting to save. @@ -108,6 +112,7 @@ public HumanoidProfileEditor( ILogManager logManager, IPlayerManager playerManager, IPrototypeManager prototypeManager, + IResourceManager resManager, JobRequirementsManager requirements, MarkingManager markings) { @@ -120,6 +125,7 @@ public HumanoidProfileEditor( _prototypeManager = prototypeManager; _markingManager = markings; _preferencesManager = preferencesManager; + _resManager = resManager; _requirements = requirements; _controller = UserInterfaceManager.GetUIController<LobbyUIController>(); @@ -133,6 +139,16 @@ public HumanoidProfileEditor( ExportProfile(); }; + ExportImageButton.OnPressed += args => + { + ExportImage(); + }; + + OpenImagesButton.OnPressed += args => + { + _resManager.UserData.OpenOsWindow(ContentSpriteSystem.Exports); + }; + ResetButton.OnPressed += args => { SetProfile((HumanoidCharacterProfile?) _preferencesManager.Preferences?.SelectedCharacter, _preferencesManager.Preferences?.SelectedCharacterIndex); @@ -437,7 +453,6 @@ public HumanoidProfileEditor( SpeciesInfoButton.OnPressed += OnSpeciesInfoButtonPressed; UpdateSpeciesGuidebookIcon(); - ReloadPreview(); IsDirty = false; } @@ -710,11 +725,12 @@ private void ReloadPreview() _entManager.DeleteEntity(PreviewDummy); PreviewDummy = EntityUid.Invalid; - if (Profile == null || !_prototypeManager.HasIndex<SpeciesPrototype>(Profile.Species)) + if (Profile == null || !_prototypeManager.HasIndex(Profile.Species)) return; PreviewDummy = _controller.LoadProfileEntity(Profile, JobOverride, ShowClothes.Pressed); SpriteView.SetEntity(PreviewDummy); + _entManager.System<MetaDataSystem>().SetEntityName(PreviewDummy, Profile.Name); } /// <summary> @@ -1136,6 +1152,17 @@ protected override void Dispose(bool disposing) _loadoutWindow?.Dispose(); _loadoutWindow = null; + } + + protected override void EnteredTree() + { + base.EnteredTree(); + ReloadPreview(); + } + + protected override void ExitedTree() + { + base.ExitedTree(); _entManager.DeleteEntity(PreviewDummy); PreviewDummy = EntityUid.Invalid; } @@ -1205,6 +1232,11 @@ private void SetName(string newName) { Profile = Profile?.WithName(newName); SetDirty(); + + if (!IsDirty) + return; + + _entManager.System<MetaDataSystem>().SetEntityName(PreviewDummy, newName); } private void SetSpawnPriority(SpawnPriorityPreference newSpawnPriority) @@ -1536,6 +1568,19 @@ private void RandomizeName() UpdateNameEdit(); } + private async void ExportImage() + { + if (_imaging) + return; + + var dir = SpriteView.OverrideDirection ?? Direction.South; + + // I tried disabling the button but it looks sorta goofy as it only takes a frame or two to save + _imaging = true; + await _entManager.System<ContentSpriteSystem>().Export(PreviewDummy, dir, includeId: false); + _imaging = false; + } + private async void ImportProfile() { if (_exporting || CharacterSlot == null || Profile == null) diff --git a/Content.Client/Mech/Ui/MechMenu.xaml.cs b/Content.Client/Mech/Ui/MechMenu.xaml.cs index 6f39bc386ee..7ce863b7cd7 100644 --- a/Content.Client/Mech/Ui/MechMenu.xaml.cs +++ b/Content.Client/Mech/Ui/MechMenu.xaml.cs @@ -12,7 +12,7 @@ public sealed partial class MechMenu : FancyWindow { [Dependency] private readonly IEntityManager _ent = default!; - private readonly EntityUid _mech; + private EntityUid _mech; public event Action<EntityUid>? OnRemoveButtonPressed; @@ -25,6 +25,7 @@ public MechMenu() public void SetEntity(EntityUid uid) { MechView.SetEntity(uid); + _mech = uid; } public void UpdateMechStats() diff --git a/Content.Client/Movement/Systems/SpriteMovementSystem.cs b/Content.Client/Movement/Systems/SpriteMovementSystem.cs index 313683855d0..b6203536896 100644 --- a/Content.Client/Movement/Systems/SpriteMovementSystem.cs +++ b/Content.Client/Movement/Systems/SpriteMovementSystem.cs @@ -28,7 +28,7 @@ private void OnSpriteMoveInput(EntityUid uid, SpriteMovementComponent component, return; var oldMoving = (SharedMoverController.GetNormalizedMovement(args.OldMovement) & MoveButtons.AnyDirection) != MoveButtons.None; - var moving = (SharedMoverController.GetNormalizedMovement(args.Component.HeldMoveButtons) & MoveButtons.AnyDirection) != MoveButtons.None; + var moving = (SharedMoverController.GetNormalizedMovement(args.Entity.Comp.HeldMoveButtons) & MoveButtons.AnyDirection) != MoveButtons.None; if (oldMoving == moving || !_spriteQuery.TryGetComponent(uid, out var sprite)) return; diff --git a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs index 6fa416ed59c..6f51b954917 100644 --- a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs @@ -216,6 +216,7 @@ void AddCheckBox(string checkBoxName, bool currentState, Action<BaseButton.Butto AddButton(ContentKeyFunctions.OpenAHelp); AddButton(ContentKeyFunctions.OpenActionsMenu); AddButton(ContentKeyFunctions.OpenEmotesMenu); + AddButton(ContentKeyFunctions.OpenLanguagesMenu); // ADT Languages AddButton(ContentKeyFunctions.ToggleRoundEndSummaryWindow); AddButton(ContentKeyFunctions.OpenEntitySpawnWindow); AddButton(ContentKeyFunctions.OpenSandboxWindow); diff --git a/Content.Client/Paper/EnvelopeSystem.cs b/Content.Client/Paper/EnvelopeSystem.cs new file mode 100644 index 00000000000..f405ed15188 --- /dev/null +++ b/Content.Client/Paper/EnvelopeSystem.cs @@ -0,0 +1,35 @@ +using Content.Shared.Paper; +using Robust.Client.GameObjects; + +namespace Content.Client.Paper; + +public sealed class EnvelopeSystem : VisualizerSystem<EnvelopeComponent> +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent<EnvelopeComponent, AfterAutoHandleStateEvent>(OnAfterAutoHandleState); + } + + private void OnAfterAutoHandleState(Entity<EnvelopeComponent> ent, ref AfterAutoHandleStateEvent args) + { + UpdateAppearance(ent); + } + + private void UpdateAppearance(Entity<EnvelopeComponent> ent, SpriteComponent? sprite = null) + { + if (!Resolve(ent.Owner, ref sprite)) + return; + + sprite.LayerSetVisible(EnvelopeVisualLayers.Open, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open); + sprite.LayerSetVisible(EnvelopeVisualLayers.Sealed, ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed); + sprite.LayerSetVisible(EnvelopeVisualLayers.Torn, ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn); + } + + public enum EnvelopeVisualLayers : byte + { + Open, + Sealed, + Torn + } +} diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs index 9c2b51dcaed..8b21e7d94bd 100644 --- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs +++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml.cs @@ -3,6 +3,7 @@ using Content.Client.Resources; using Content.Client.UserInterface.Controls; using Content.Shared.Singularity.Components; +using Content.Shared.Access.Systems; using Robust.Client.Animations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; @@ -13,6 +14,7 @@ using Robust.Shared.Noise; using Robust.Shared.Prototypes; using Robust.Shared.Timing; +using Robust.Client.Player; namespace Content.Client.ParticleAccelerator.UI; @@ -21,6 +23,11 @@ public sealed partial class ParticleAcceleratorControlMenu : FancyWindow { [Dependency] private readonly IResourceCache _cache = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + private readonly AccessReaderSystem _accessReader; + private readonly FastNoiseLite _drawNoiseGenerator; private readonly Animation _alarmControlAnimation; @@ -44,6 +51,7 @@ public ParticleAcceleratorControlMenu() RobustXamlLoader.Load(this); IoCManager.InjectDependencies(this); + _accessReader = _entityManager.System<AccessReaderSystem>(); _drawNoiseGenerator = new(); _drawNoiseGenerator.SetFractalType(FastNoiseLite.FractalType.FBm); _drawNoiseGenerator.SetFrequency(0.5f); @@ -150,7 +158,7 @@ private void PowerStateChanged(ValueChangedEventArgs e) private bool StrengthSpinBoxValid(int n) { - return n >= 0 && n <= _maxStrength ; + return n >= 0 && n <= _maxStrength; } protected override DragMode GetDragModeFor(Vector2 relativeMousePos) @@ -201,13 +209,16 @@ private void UpdatePowerState(ParticleAcceleratorPowerState state, bool enabled, private void UpdateUI(bool assembled, bool blocked, bool enabled, bool powerBlock) { + bool hasAccess = _player.LocalSession?.AttachedEntity is {} player + && _accessReader.IsAllowed(player, _entity); + OnButton.Pressed = enabled; OffButton.Pressed = !enabled; - var cantUse = !assembled || blocked || powerBlock; + var cantUse = !assembled || blocked || powerBlock || !hasAccess; OnButton.Disabled = cantUse; OffButton.Disabled = cantUse; - ScanButton.Disabled = blocked; + ScanButton.Disabled = blocked || !hasAccess; var cantChangeLevel = !assembled || blocked || !enabled || cantUse; StateSpinBox.SetButtonDisabled(cantChangeLevel); diff --git a/Content.Client/Physics/Controllers/MoverController.cs b/Content.Client/Physics/Controllers/MoverController.cs index 31042854d4a..74a5e7afdcd 100644 --- a/Content.Client/Physics/Controllers/MoverController.cs +++ b/Content.Client/Physics/Controllers/MoverController.cs @@ -28,57 +28,57 @@ public override void Initialize() SubscribeLocalEvent<PullableComponent, UpdateIsPredictedEvent>(OnUpdatePullablePredicted); } - private void OnUpdatePredicted(EntityUid uid, InputMoverComponent component, ref UpdateIsPredictedEvent args) + private void OnUpdatePredicted(Entity<InputMoverComponent> entity, ref UpdateIsPredictedEvent args) { // Enable prediction if an entity is controlled by the player - if (uid == _playerManager.LocalEntity) + if (entity.Owner == _playerManager.LocalEntity) args.IsPredicted = true; } - private void OnUpdateRelayTargetPredicted(EntityUid uid, MovementRelayTargetComponent component, ref UpdateIsPredictedEvent args) + private void OnUpdateRelayTargetPredicted(Entity<MovementRelayTargetComponent> entity, ref UpdateIsPredictedEvent args) { - if (component.Source == _playerManager.LocalEntity) + if (entity.Comp.Source == _playerManager.LocalEntity) args.IsPredicted = true; } - private void OnUpdatePullablePredicted(EntityUid uid, PullableComponent component, ref UpdateIsPredictedEvent args) + private void OnUpdatePullablePredicted(Entity<PullableComponent> entity, ref UpdateIsPredictedEvent args) { // Enable prediction if an entity is being pulled by the player. // Disable prediction if an entity is being pulled by some non-player entity. - if (component.Puller == _playerManager.LocalEntity) + if (entity.Comp.Puller == _playerManager.LocalEntity) args.IsPredicted = true; - else if (component.Puller != null) + else if (entity.Comp.Puller != null) args.BlockPrediction = true; // TODO recursive pulling checks? // What if the entity is being pulled by a vehicle controlled by the player? } - private void OnRelayPlayerAttached(EntityUid uid, RelayInputMoverComponent component, LocalPlayerAttachedEvent args) + private void OnRelayPlayerAttached(Entity<RelayInputMoverComponent> entity, ref LocalPlayerAttachedEvent args) { - Physics.UpdateIsPredicted(uid); - Physics.UpdateIsPredicted(component.RelayEntity); - if (MoverQuery.TryGetComponent(component.RelayEntity, out var inputMover)) - SetMoveInput(inputMover, MoveButtons.None); + Physics.UpdateIsPredicted(entity.Owner); + Physics.UpdateIsPredicted(entity.Comp.RelayEntity); + if (MoverQuery.TryGetComponent(entity.Comp.RelayEntity, out var inputMover)) + SetMoveInput((entity.Owner, inputMover), MoveButtons.None); } - private void OnRelayPlayerDetached(EntityUid uid, RelayInputMoverComponent component, LocalPlayerDetachedEvent args) + private void OnRelayPlayerDetached(Entity<RelayInputMoverComponent> entity, ref LocalPlayerDetachedEvent args) { - Physics.UpdateIsPredicted(uid); - Physics.UpdateIsPredicted(component.RelayEntity); - if (MoverQuery.TryGetComponent(component.RelayEntity, out var inputMover)) - SetMoveInput(inputMover, MoveButtons.None); + Physics.UpdateIsPredicted(entity.Owner); + Physics.UpdateIsPredicted(entity.Comp.RelayEntity); + if (MoverQuery.TryGetComponent(entity.Comp.RelayEntity, out var inputMover)) + SetMoveInput((entity.Owner, inputMover), MoveButtons.None); } - private void OnPlayerAttached(EntityUid uid, InputMoverComponent component, LocalPlayerAttachedEvent args) + private void OnPlayerAttached(Entity<InputMoverComponent> entity, ref LocalPlayerAttachedEvent args) { - SetMoveInput(component, MoveButtons.None); + SetMoveInput(entity, MoveButtons.None); } - private void OnPlayerDetached(EntityUid uid, InputMoverComponent component, LocalPlayerDetachedEvent args) + private void OnPlayerDetached(Entity<InputMoverComponent> entity, ref LocalPlayerDetachedEvent args) { - SetMoveInput(component, MoveButtons.None); + SetMoveInput(entity, MoveButtons.None); } public override void UpdateBeforeSolve(bool prediction, float frameTime) diff --git a/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs index 4d56592c232..61e20f751ca 100644 --- a/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Client/Power/EntitySystems/PowerReceiverSystem.cs @@ -1,6 +1,7 @@ -using Content.Client.Power.Components; +using Content.Client.Power.Components; using Content.Shared.Power.Components; using Content.Shared.Power.EntitySystems; +using Content.Shared.Examine; using Robust.Shared.GameStates; namespace Content.Client.Power.EntitySystems; @@ -10,9 +11,15 @@ public sealed class PowerReceiverSystem : SharedPowerReceiverSystem public override void Initialize() { base.Initialize(); + SubscribeLocalEvent<ApcPowerReceiverComponent, ExaminedEvent>(OnExamined); SubscribeLocalEvent<ApcPowerReceiverComponent, ComponentHandleState>(OnHandleState); } + private void OnExamined(Entity<ApcPowerReceiverComponent> ent, ref ExaminedEvent args) + { + args.PushMarkup(GetExamineText(ent.Comp.Powered)); + } + private void OnHandleState(EntityUid uid, ApcPowerReceiverComponent component, ref ComponentHandleState args) { if (args.Current is not ApcPowerReceiverComponentState state) diff --git a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs index d00e319eed9..71561703d64 100644 --- a/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs +++ b/Content.Client/Replay/Spectator/ReplaySpectatorSystem.Position.cs @@ -1,4 +1,5 @@ using Content.Shared.Movement.Components; +using Content.Shared.Station.Components; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -164,14 +165,25 @@ private bool TryFindFallbackSpawn(out EntityCoordinates coords) float? maxSize = null; var gridQuery = EntityQueryEnumerator<MapGridComponent>(); + var stationFound = false; while (gridQuery.MoveNext(out var uid, out var grid)) { var size = grid.LocalAABB.Size.LengthSquared(); - if (maxSize == null || size > maxSize) - { - maxUid = (uid, grid); - maxSize = size; - } + + var station = HasComp<StationMemberComponent>(uid); + + //We want the first station grid to overwrite any previous non-station grids no matter the size, in case the vgroid was found first + if (maxSize is not null && size < maxSize && !(!stationFound && station)) + continue; + + if (!station && stationFound) + continue; + + maxUid = (uid, grid); + maxSize = size; + + if (station) + stationFound = true; } coords = new EntityCoordinates(maxUid ?? default, default); diff --git a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs index 663bde15b0d..fe48b042f3e 100644 --- a/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs +++ b/Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs @@ -102,12 +102,21 @@ protected override void UpdateState(BoundUserInterfaceState state) offering.AddContent(new Label { - Text = faction, + Text = string.IsNullOrWhiteSpace(Loc.GetString(_protoManager.Index<SalvageFactionPrototype>(faction).Description)) + ? LogAndReturnDefaultFactionDescription(faction) + : Loc.GetString(_protoManager.Index<SalvageFactionPrototype>(faction).Description), FontColorOverride = StyleNano.NanoGold, HorizontalAlignment = Control.HAlignment.Left, Margin = new Thickness(0f, 0f, 0f, 5f), }); + string LogAndReturnDefaultFactionDescription(string faction) + { + Logger.Error($"Description is null or white space for SalvageFactionPrototype: {faction}"); + return Loc.GetString(_protoManager.Index<SalvageFactionPrototype>(faction).ID); + } + + // Duration offering.AddContent(new Label { @@ -132,12 +141,20 @@ protected override void UpdateState(BoundUserInterfaceState state) offering.AddContent(new Label { - Text = Loc.GetString(_protoManager.Index<SalvageBiomeModPrototype>(biome).ID), + Text = string.IsNullOrWhiteSpace(Loc.GetString(_protoManager.Index<SalvageBiomeModPrototype>(biome).Description)) + ? LogAndReturnDefaultBiomDescription(biome) + : Loc.GetString(_protoManager.Index<SalvageBiomeModPrototype>(biome).Description), FontColorOverride = StyleNano.NanoGold, HorizontalAlignment = Control.HAlignment.Left, Margin = new Thickness(0f, 0f, 0f, 5f), }); + string LogAndReturnDefaultBiomDescription(string biome) + { + Logger.Error($"Description is null or white space for SalvageBiomeModPrototype: {biome}"); + return Loc.GetString(_protoManager.Index<SalvageBiomeModPrototype>(biome).ID); + } + // Modifiers offering.AddContent(new Label { diff --git a/Content.Client/Singularity/SingularityOverlay.cs b/Content.Client/Singularity/SingularityOverlay.cs index c7c6aa2b5b4..e71b6e96b85 100644 --- a/Content.Client/Singularity/SingularityOverlay.cs +++ b/Content.Client/Singularity/SingularityOverlay.cs @@ -100,6 +100,8 @@ protected override void Draw(in OverlayDrawArgs args) /// </summary> private void OnProjectFromScreenToMap(ref PixelToMapEvent args) { // Mostly copypasta from the singularity shader. + if (args.Viewport.Eye == null) + return; var maxDistance = MaxDistance * EyeManager.PixelsPerMeter; var finalCoords = args.VisiblePosition; @@ -112,10 +114,11 @@ private void OnProjectFromScreenToMap(ref PixelToMapEvent args) // and in local space 'Y' is measured in pixels from the top of the viewport. // As a minor optimization the locations of the singularities are transformed into fragment space in BeforeDraw so the shader doesn't need to. // We need to undo that here or this will transform the cursor position as if the singularities were mirrored vertically relative to the center of the viewport. + var localPosition = _positions[i]; localPosition.Y = args.Viewport.Size.Y - localPosition.Y; var delta = args.VisiblePosition - localPosition; - var distance = (delta / args.Viewport.RenderScale).Length(); + var distance = (delta / (args.Viewport.RenderScale * args.Viewport.Eye.Scale)).Length(); var deformation = _intensities[i] / MathF.Pow(distance, _falloffPowers[i]); diff --git a/Content.Client/Sprite/ContentSpriteSystem.cs b/Content.Client/Sprite/ContentSpriteSystem.cs new file mode 100644 index 00000000000..da0547666b2 --- /dev/null +++ b/Content.Client/Sprite/ContentSpriteSystem.cs @@ -0,0 +1,218 @@ +using System.IO; +using System.Numerics; +using System.Threading; +using System.Threading.Tasks; +using Content.Client.Administration.Managers; +using Content.Shared.Database; +using Content.Shared.Verbs; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.UserInterface; +using Robust.Shared.ContentPack; +using Robust.Shared.Timing; +using Robust.Shared.Utility; +using SixLabors.ImageSharp; +using SixLabors.ImageSharp.PixelFormats; +using Color = Robust.Shared.Maths.Color; + +namespace Content.Client.Sprite; + +public sealed class ContentSpriteSystem : EntitySystem +{ + [Dependency] private readonly IClientAdminManager _adminManager = default!; + [Dependency] private readonly IClyde _clyde = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IResourceManager _resManager = default!; + [Dependency] private readonly IUserInterfaceManager _ui = default!; + + private ContentSpriteControl _control = new(); + + public static readonly ResPath Exports = new ResPath("/Exports"); + + public override void Initialize() + { + base.Initialize(); + + _resManager.UserData.CreateDir(Exports); + _ui.RootControl.AddChild(_control); + SubscribeLocalEvent<GetVerbsEvent<Verb>>(GetVerbs); + } + + public override void Shutdown() + { + base.Shutdown(); + + foreach (var queued in _control._queuedTextures) + { + queued.Tcs.SetCanceled(); + } + + _control._queuedTextures.Clear(); + + _ui.RootControl.RemoveChild(_control); + } + + /// <summary> + /// Exports sprites for all directions + /// </summary> + public async Task Export(EntityUid entity, bool includeId = true, CancellationToken cancelToken = default) + { + var tasks = new Task[4]; + var i = 0; + + foreach (var dir in new Direction[] + { + Direction.South, + Direction.East, + Direction.North, + Direction.West, + }) + { + tasks[i++] = Export(entity, dir, includeId: includeId, cancelToken); + } + + await Task.WhenAll(tasks); + } + + /// <summary> + /// Exports the sprite for a particular direction. + /// </summary> + public async Task Export(EntityUid entity, Direction direction, bool includeId = true, CancellationToken cancelToken = default) + { + if (!_timing.IsFirstTimePredicted) + return; + + if (!TryComp(entity, out SpriteComponent? spriteComp)) + return; + + // Don't want to wait for engine pr + var size = Vector2i.Zero; + + foreach (var layer in spriteComp.AllLayers) + { + if (!layer.Visible) + continue; + + size = Vector2i.ComponentMax(size, layer.PixelSize); + } + + // Stop asserts + if (size.Equals(Vector2i.Zero)) + return; + + var texture = _clyde.CreateRenderTarget(new Vector2i(size.X, size.Y), new RenderTargetFormatParameters(RenderTargetColorFormat.Rgba8Srgb), name: "export"); + var tcs = new TaskCompletionSource(cancelToken); + + _control._queuedTextures.Enqueue((texture, direction, entity, includeId, tcs)); + + await tcs.Task; + } + + private void GetVerbs(GetVerbsEvent<Verb> ev) + { + if (!_adminManager.IsAdmin()) + return; + + Verb verb = new() + { + Text = Loc.GetString("export-entity-verb-get-data-text"), + Category = VerbCategory.Debug, + Act = () => + { + Export(ev.Target); + }, + }; + + ev.Verbs.Add(verb); + } + + /// <summary> + /// This is horrible. I asked PJB if there's an easy way to render straight to a texture outside of the render loop + /// and she also mentioned this as a bad possibility. + /// </summary> + private sealed class ContentSpriteControl : Control + { + [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly ILogManager _logMan = default!; + [Dependency] private readonly IResourceManager _resManager = default!; + + internal Queue<( + IRenderTexture Texture, + Direction Direction, + EntityUid Entity, + bool IncludeId, + TaskCompletionSource Tcs)> _queuedTextures = new(); + + private ISawmill _sawmill; + + public ContentSpriteControl() + { + IoCManager.InjectDependencies(this); + _sawmill = _logMan.GetSawmill("sprite.export"); + } + + protected override void Draw(DrawingHandleScreen handle) + { + base.Draw(handle); + + while (_queuedTextures.TryDequeue(out var queued)) + { + if (queued.Tcs.Task.IsCanceled) + continue; + + try + { + if (!_entManager.TryGetComponent(queued.Entity, out MetaDataComponent? metadata)) + continue; + + var filename = metadata.EntityName; + var result = queued; + + handle.RenderInRenderTarget(queued.Texture, () => + { + handle.DrawEntity(result.Entity, result.Texture.Size / 2, Vector2.One, Angle.Zero, + overrideDirection: result.Direction); + }, Color.Transparent); + + ResPath fullFileName; + + if (queued.IncludeId) + { + fullFileName = Exports / $"{filename}-{queued.Direction}-{queued.Entity}.png"; + } + else + { + fullFileName = Exports / $"{filename}-{queued.Direction}.png"; + } + + queued.Texture.CopyPixelsToMemory<Rgba32>(image => + { + if (_resManager.UserData.Exists(fullFileName)) + { + _sawmill.Info($"Found existing file {fullFileName} to replace."); + _resManager.UserData.Delete(fullFileName); + } + + using var file = + _resManager.UserData.Open(fullFileName, FileMode.CreateNew, FileAccess.Write, + FileShare.None); + + image.SaveAsPng(file); + }); + + _sawmill.Info($"Saved screenshot to {fullFileName}"); + queued.Tcs.SetResult(); + } + catch (Exception exc) + { + queued.Texture.Dispose(); + + if (!string.IsNullOrEmpty(exc.StackTrace)) + _sawmill.Fatal(exc.StackTrace); + + queued.Tcs.SetException(exc); + } + } + } + } +} diff --git a/Content.Client/Stylesheets/StyleNano.cs b/Content.Client/Stylesheets/StyleNano.cs index dba48a119da..0c04a550597 100644 --- a/Content.Client/Stylesheets/StyleNano.cs +++ b/Content.Client/Stylesheets/StyleNano.cs @@ -151,6 +151,11 @@ public sealed class StyleNano : StyleBase public static readonly Color ChatBackgroundColor = Color.FromHex("#25252ADD"); + //Bwoink + public const string StyleClassPinButtonPinned = "pinButtonPinned"; + public const string StyleClassPinButtonUnpinned = "pinButtonUnpinned"; + + public override Stylesheet Stylesheet { get; } public StyleNano(IResourceCache resCache) : base(resCache) @@ -1608,6 +1613,21 @@ public StyleNano(IResourceCache resCache) : base(resCache) { BackgroundColor = FancyTreeSelectedRowColor, }), + // Pinned button style + new StyleRule( + new SelectorElement(typeof(TextureButton), new[] { StyleClassPinButtonPinned }, null, null), + new[] + { + new StyleProperty(TextureButton.StylePropertyTexture, resCache.GetTexture("/Textures/Interface/Bwoink/pinned.png")) + }), + + // Unpinned button style + new StyleRule( + new SelectorElement(typeof(TextureButton), new[] { StyleClassPinButtonUnpinned }, null, null), + new[] + { + new StyleProperty(TextureButton.StylePropertyTexture, resCache.GetTexture("/Textures/Interface/Bwoink/un_pinned.png")) + }) }).ToList()); } } diff --git a/Content.Client/UserInterface/Systems/Languages/LanguageMenuUIController.cs b/Content.Client/UserInterface/Systems/Languages/LanguageMenuUIController.cs new file mode 100644 index 00000000000..b50648d72a4 --- /dev/null +++ b/Content.Client/UserInterface/Systems/Languages/LanguageMenuUIController.cs @@ -0,0 +1,115 @@ +using Content.Client.Gameplay; +using Content.Shared.ADT.Language; +using Robust.Client.UserInterface.Controllers; +using Robust.Client.UserInterface.Controls; +using Content.Client.UserInterface.Controls; +using Content.Shared.Input; +using Content.Client.ADT.Language.UI; +using Robust.Shared.Input.Binding; + +namespace Content.Client.UserInterface.Systems.Language; // ADT Languages + +public sealed class LanguageMenuUIController : UIController, IOnStateEntered<GameplayState>, IOnStateExited<GameplayState> +{ + public LanguageMenuWindow? _menu; + private MenuButton? LanguagesButton => UIManager.GetActiveUIWidgetOrNull<MenuBar.Widgets.GameTopMenuBar>()?.LanguagesButton; + + public override void Initialize() + { + + EntityManager.EventBus.SubscribeEvent<LanguageMenuStateMessage>(EventSource.All, this, OnStateUpdate); + } + + private void OnStateUpdate(LanguageMenuStateMessage ev) + { + if (_menu == null) + return; + + _menu.UpdateState(ev); + } + + + public void OnStateEntered(GameplayState state) + { + CommandBinds.Builder + .Bind(ContentKeyFunctions.OpenLanguagesMenu, + InputCmdHandler.FromDelegate(_ => ToggleLanguagesMenu())) + .Register<LanguageMenuUIController>(); + } + + public void OnStateExited(GameplayState state) + { + CommandBinds.Unregister<LanguageMenuUIController>(); + } + + private void ToggleLanguagesMenu() + { + if (_menu == null) + { + // setup window + _menu = UIManager.CreateWindow<LanguageMenuWindow>(); + _menu.OnClose += OnWindowClosed; + _menu.OnOpen += OnWindowOpen; + + if (LanguagesButton != null) + LanguagesButton.SetClickPressed(true); + + _menu.OpenCentered(); + } + else + { + _menu.OnClose -= OnWindowClosed; + _menu.OnOpen -= OnWindowOpen; + //_menu.OnPlayEmote -= OnPlayEmote; + + if (LanguagesButton != null) + LanguagesButton.SetClickPressed(false); + + CloseMenu(); + } + } + + public void UnloadButton() + { + if (LanguagesButton == null) + return; + + LanguagesButton.OnPressed -= ActionButtonPressed; + } + + public void LoadButton() + { + if (LanguagesButton == null) + return; + + LanguagesButton.OnPressed += ActionButtonPressed; + } + + private void ActionButtonPressed(BaseButton.ButtonEventArgs args) + { + ToggleLanguagesMenu(); + } + + private void OnWindowClosed() + { + if (LanguagesButton != null) + LanguagesButton.Pressed = false; + + CloseMenu(); + } + + private void OnWindowOpen() + { + if (LanguagesButton != null) + LanguagesButton.Pressed = true; + } + + private void CloseMenu() + { + if (_menu == null) + return; + + _menu.Dispose(); + _menu = null; + } +} diff --git a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs index e314310bc0c..1c3b03483b9 100644 --- a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs +++ b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs @@ -9,6 +9,7 @@ using Content.Client.UserInterface.Systems.Guidebook; using Content.Client.UserInterface.Systems.MenuBar.Widgets; using Content.Client.UserInterface.Systems.Sandbox; +using Content.Client.UserInterface.Systems.Language; // ADT Languages using Robust.Client.UserInterface.Controllers; namespace Content.Client.UserInterface.Systems.MenuBar; @@ -24,6 +25,7 @@ public sealed class GameTopMenuBarUIController : UIController [Dependency] private readonly SandboxUIController _sandbox = default!; [Dependency] private readonly GuidebookUIController _guidebook = default!; [Dependency] private readonly EmotesUIController _emotes = default!; + [Dependency] private readonly LanguageMenuUIController _language = default!; // ADT Languages private GameTopMenuBar? GameTopMenuBar => UIManager.GetActiveUIWidgetOrNull<GameTopMenuBar>(); @@ -47,6 +49,7 @@ public void UnloadButtons() _action.UnloadButton(); _sandbox.UnloadButton(); _emotes.UnloadButton(); + _language.UnloadButton(); // ADT Languages } public void LoadButtons() @@ -60,5 +63,6 @@ public void LoadButtons() _action.LoadButton(); _sandbox.LoadButton(); _emotes.LoadButton(); + _language.LoadButton(); // ADT Languages } } diff --git a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml index dc8972970ac..59640586174 100644 --- a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml +++ b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml @@ -1,4 +1,4 @@ -<widgets:GameTopMenuBar xmlns="https://spacestation14.io" +<widgets:GameTopMenuBar xmlns="https://spacestation14.io" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:style="clr-namespace:Content.Client.Stylesheets" xmlns:ic="clr-namespace:Robust.Shared.Input;assembly=Robust.Shared" @@ -53,6 +53,18 @@ HorizontalExpand="True" AppendStyleClass="{x:Static style:StyleBase.ButtonSquare}" /> + <!--ADT Languages start--> + <ui:MenuButton + Name="LanguagesButton" + Access="Internal" + Icon="{xe:Tex '/Textures/Interface/languages-menu.svg.192dpi.png'}" + ToolTip="{Loc 'game-hud-open-languages-menu-button-tooltip'}" + BoundKey = "{x:Static is:ContentKeyFunctions.OpenLanguagesMenu}" + MinSize="42 64" + HorizontalExpand="True" + AppendStyleClass="{x:Static style:StyleBase.ButtonSquare}" + /> + <!--ADT Languages end--> <ui:MenuButton Name="CraftingButton" Access="Internal" diff --git a/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs b/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs index 518166ed864..3109df890a7 100644 --- a/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/FailAndStartPresetTest.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using Content.Server.GameTicking; using Content.Server.GameTicking.Presets; using Content.Shared.CCVar; @@ -36,7 +36,7 @@ public sealed class FailAndStartPresetTest - type: entity id: TestRule parent: BaseGameRule - noSpawn: true + categories: [ GameRules ] components: - type: GameRule minPlayers: 0 @@ -45,7 +45,7 @@ public sealed class FailAndStartPresetTest - type: entity id: TestRuleTenPlayers parent: BaseGameRule - noSpawn: true + categories: [ GameRules ] components: - type: GameRule minPlayers: 10 diff --git a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs index cc5d99e8b2f..0ccb5e314b9 100644 --- a/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs +++ b/Content.IntegrationTests/Tests/GameRules/NukeOpsTest.cs @@ -18,6 +18,7 @@ using Content.Shared.Inventory; using Content.Shared.NPC.Systems; using Content.Shared.NukeOps; +using Content.Shared.Station.Components; using Robust.Server.GameObjects; using Robust.Shared.GameObjects; using Robust.Shared.Map.Components; diff --git a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs index f64b7c79dfe..c48afd819be 100644 --- a/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs +++ b/Content.IntegrationTests/Tests/MaterialArbitrageTest.cs @@ -193,7 +193,7 @@ public async Task NoMaterialArbitrage() { foreach (var recipe in recipes) { - foreach (var (matId, amount) in recipe.RequiredMaterials) + foreach (var (matId, amount) in recipe.Materials) { var actualAmount = SharedLatheSystem.AdjustMaterial(amount, recipe.ApplyMaterialDiscount, multiplier); if (spawnedMats.TryGetValue(matId, out var numSpawned)) @@ -273,7 +273,7 @@ public async Task NoMaterialArbitrage() { foreach (var recipe in recipes) { - foreach (var (matId, amount) in recipe.RequiredMaterials) + foreach (var (matId, amount) in recipe.Materials) { var actualAmount = SharedLatheSystem.AdjustMaterial(amount, recipe.ApplyMaterialDiscount, multiplier); if (deconstructedMats.TryGetValue(matId, out var numSpawned)) @@ -328,7 +328,7 @@ public async Task NoMaterialArbitrage() { foreach (var recipe in recipes) { - foreach (var (matId, amount) in recipe.RequiredMaterials) + foreach (var (matId, amount) in recipe.Materials) { var actualAmount = SharedLatheSystem.AdjustMaterial(amount, recipe.ApplyMaterialDiscount, multiplier); if (compositionComponent.MaterialComposition.TryGetValue(matId, out var numSpawned)) diff --git a/Content.IntegrationTests/Tests/NPC/NPCTest.cs b/Content.IntegrationTests/Tests/NPC/NPCTest.cs index 83321fe6138..064fd6c5bf0 100644 --- a/Content.IntegrationTests/Tests/NPC/NPCTest.cs +++ b/Content.IntegrationTests/Tests/NPC/NPCTest.cs @@ -45,6 +45,10 @@ private static void Count(HTNCompoundPrototype compound, Dictionary<string, int> var count = counts.GetOrNew(compound.ID); count++; + // Compound tasks marked with AllowRecursion are only evaluated once + if (counts.ContainsKey(compound.ID) && compound.AllowRecursion) + continue; + Assert.That(count, Is.LessThan(50)); counts[compound.ID] = count; Count(protoManager.Index<HTNCompoundPrototype>(compoundTask.Task), counts, htnSystem, protoManager); diff --git a/Content.IntegrationTests/Tests/Physics/AnchorPrototypeTest.cs b/Content.IntegrationTests/Tests/Physics/AnchorPrototypeTest.cs new file mode 100644 index 00000000000..a65e7d1fd67 --- /dev/null +++ b/Content.IntegrationTests/Tests/Physics/AnchorPrototypeTest.cs @@ -0,0 +1,43 @@ +using Robust.Shared.GameObjects; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Prototypes; + +namespace Content.IntegrationTests.Tests.Physics; + +[TestFixture] +public sealed class AnchorPrototypeTest +{ + /// <summary> + /// Asserts that entityprototypes marked as anchored are also static physics bodies. + /// </summary> + [Test] + public async Task TestStaticAnchorPrototypes() + { + await using var pair = await PoolManager.GetServerClient(); + + var protoManager = pair.Server.ResolveDependency<IPrototypeManager>(); + + await pair.Server.WaitAssertion(() => + { + foreach (var ent in protoManager.EnumeratePrototypes<EntityPrototype>()) + { + if (!ent.Components.TryGetComponent("Transform", out var xformComp) || + !ent.Components.TryGetComponent("Physics", out var physicsComp)) + { + continue; + } + + var xform = (TransformComponent)xformComp; + var physics = (PhysicsComponent)physicsComp; + + if (!xform.Anchored) + continue; + + Assert.That(physics.BodyType, Is.EqualTo(BodyType.Static), $"Found entity prototype {ent} marked as anchored but not static for physics."); + } + }); + + await pair.CleanReturnAsync(); + } +} diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index ab0788e47fd..dce84846e97 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -16,6 +16,7 @@ using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Prototypes; +using Content.Shared.Station.Components; using Robust.Shared.Utility; using YamlDotNet.RepresentationModel; diff --git a/Content.Server/ADT/Damage/Components/DamageOnTriggerComponent.cs b/Content.Server/ADT/Damage/Components/DamageOnTriggerComponent.cs new file mode 100644 index 00000000000..f5cef74457e --- /dev/null +++ b/Content.Server/ADT/Damage/Components/DamageOnTriggerComponent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Damage; + +namespace Content.Server.Damage.Components; + +[RegisterComponent] +public sealed partial class DamageOnTriggerComponent : Component +{ + [DataField("ignoreResistances")] public bool IgnoreResistances; + + [DataField("damage", required: true)] + public DamageSpecifier Damage = default!; +} diff --git a/Content.Server/ADT/Damage/Systems/DamageOnTriggerSystem.cs b/Content.Server/ADT/Damage/Systems/DamageOnTriggerSystem.cs new file mode 100644 index 00000000000..5f2fd141926 --- /dev/null +++ b/Content.Server/ADT/Damage/Systems/DamageOnTriggerSystem.cs @@ -0,0 +1,26 @@ +// Simple Station + +using Content.Server.Damage.Components; +using Content.Server.Explosion.EntitySystems; +using Content.Shared.Damage; +using Content.Shared.StepTrigger.Systems; + +namespace Content.Server.Damage.Systems +{ + // System for damage that occurs on specific trigger, towards the entity.. + public sealed class DamageOnTriggerSystem : EntitySystem + { + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent<DamageOnTriggerComponent, TriggerEvent>(DamageOnTrigger); + } + + private void DamageOnTrigger(EntityUid uid, DamageOnTriggerComponent component, TriggerEvent args) + { + _damageableSystem.TryChangeDamage(uid, component.Damage, component.IgnoreResistances); + } + } +} diff --git a/Content.Server/ADT/Hemophilia/HemophiliaSystem.cs b/Content.Server/ADT/Hemophilia/HemophiliaSystem.cs new file mode 100644 index 00000000000..9092cc66a14 --- /dev/null +++ b/Content.Server/ADT/Hemophilia/HemophiliaSystem.cs @@ -0,0 +1,31 @@ +using Content.Server.Body.Components; +using Content.Shared.ADT.Traits; + +namespace Content.Server.ADT.Hemophilia; + +public sealed partial class HemophiliaSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<HemophiliaComponent, MapInitEvent>(OnInitHemophilia); + SubscribeLocalEvent<HemophiliaComponent, ComponentShutdown>(OnShutdown); + + } + + private void OnInitHemophilia(EntityUid uid, HemophiliaComponent component, MapInitEvent args) + { + if (TryComp<BloodstreamComponent>(uid, out var bldcomp)) + { + bldcomp.BleedReductionAmount *= component.Modifier; + } + } + private void OnShutdown(EntityUid uid, HemophiliaComponent component, ComponentShutdown args) + { + if (TryComp<BloodstreamComponent>(uid, out var bldcomp)) + { + bldcomp.BleedReductionAmount /= component.Modifier; + } + } +} diff --git a/Content.Server/ADT/Language/Commands/ListLanguagesCommand.cs b/Content.Server/ADT/Language/Commands/ListLanguagesCommand.cs deleted file mode 100644 index eda7030b9b7..00000000000 --- a/Content.Server/ADT/Language/Commands/ListLanguagesCommand.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System.Linq; -using Content.Shared.Administration; -using Robust.Shared.Console; -using Robust.Shared.Enums; - -namespace Content.Server.Language.Commands; - -[AnyCommand] -public sealed class ListLanguagesCommand : IConsoleCommand -{ - public string Command => "lslangs"; - public string Description => "List languages your current entity can speak at the current moment."; - public string Help => "lslangs"; - - public void Execute(IConsoleShell shell, string argStr, string[] args) - { - if (shell.Player is not { } player) - { - shell.WriteError("This command cannot be run from the server."); - return; - } - - if (player.Status != SessionStatus.InGame) - return; - - if (player.AttachedEntity is not { } playerEntity) - { - shell.WriteError("You don't have an entity!"); - return; - } - - var languages = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<LanguageSystem>(); - - var (spokenLangs, knownLangs) = languages.GetAllLanguages(playerEntity); - - shell.WriteLine("Spoken: " + string.Join(", ", spokenLangs)); - shell.WriteLine("Understood: " + string.Join(", ", knownLangs)); - } -} diff --git a/Content.Server/ADT/Language/Commands/SayLanguageCommand.cs b/Content.Server/ADT/Language/Commands/SayLanguageCommand.cs deleted file mode 100644 index 711c2c5fbfb..00000000000 --- a/Content.Server/ADT/Language/Commands/SayLanguageCommand.cs +++ /dev/null @@ -1,53 +0,0 @@ -using Content.Server.Chat.Systems; -using Content.Shared.Administration; -using Robust.Shared.Console; -using Robust.Shared.Enums; - -namespace Content.Server.Language.Commands; - -[AnyCommand] -public sealed class SayLanguageCommand : IConsoleCommand -{ - public string Command => "lsay"; - public string Description => "Send chat languages to the local channel or a specific chat channel, in a specific language."; - public string Help => "lsay <language id> <text>"; - - public void Execute(IConsoleShell shell, string argStr, string[] args) - { - if (shell.Player is not { } player) - { - shell.WriteError("This command cannot be run from the server."); - return; - } - - if (player.Status != SessionStatus.InGame) - return; - - if (player.AttachedEntity is not { } playerEntity) - { - shell.WriteError("You don't have an entity!"); - return; - } - - if (args.Length < 2) - return; - - var languageId = args[0]; - var message = string.Join(" ", args, startIndex: 1, count: args.Length - 1).Trim(); - - if (string.IsNullOrEmpty(message)) - return; - - var languages = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<LanguageSystem>(); - var chats = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<ChatSystem>(); - - var language = languages.GetLanguage(languageId); - if (language == null || !languages.CanSpeak(playerEntity, language.ID)) - { - shell.WriteError($"Language {languageId} is invalid or you cannot speak it!"); - return; - } - - chats.TrySendInGameICMessage(playerEntity, message, InGameICChatType.Speak, ChatTransmitRange.Normal, false, shell, player, languageOverride: language); - } -} diff --git a/Content.Server/ADT/Language/Commands/SelectLanguageCommand.cs b/Content.Server/ADT/Language/Commands/SelectLanguageCommand.cs deleted file mode 100644 index 72336747fab..00000000000 --- a/Content.Server/ADT/Language/Commands/SelectLanguageCommand.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System.Linq; -using Content.Shared.Administration; -using Robust.Shared.Console; -using Robust.Shared.Enums; - -namespace Content.Server.Language.Commands; - -[AnyCommand] -public sealed class SelectLanguageCommand : IConsoleCommand -{ - public string Command => "lsselectlang"; - public string Description => "Open a menu to select a langauge to speak."; - public string Help => "lsselectlang"; - - public void Execute(IConsoleShell shell, string argStr, string[] args) - { - if (shell.Player is not { } player) - { - shell.WriteError("This command cannot be run from the server."); - return; - } - - if (player.Status != SessionStatus.InGame) - return; - - if (player.AttachedEntity is not { } playerEntity) - { - shell.WriteError("You don't have an entity!"); - return; - } - - if (args.Length < 1) - return; - - var languageId = args[0]; - - var languages = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<LanguageSystem>(); - - var language = languages.GetLanguage(languageId); - if (language == null || !languages.CanSpeak(playerEntity, language.ID)) - { - shell.WriteError($"Language {languageId} is invalid or you cannot speak it!"); - return; - } - - languages.SetLanguage(playerEntity, language.ID); - } -} diff --git a/Content.Server/ADT/Language/LanguageSystem.Windows.cs b/Content.Server/ADT/Language/LanguageSystem.Windows.cs deleted file mode 100644 index 52b5e7cbf46..00000000000 --- a/Content.Server/ADT/Language/LanguageSystem.Windows.cs +++ /dev/null @@ -1,40 +0,0 @@ -using Content.Shared.Language; -using Robust.Server.GameObjects; -using Robust.Shared.Player; - -namespace Content.Server.Language; - -public sealed partial class LanguageSystem -{ - [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; - - public void InitializeWindows() - { - SubscribeNetworkEvent<RequestLanguageMenuStateMessage>(OnLanguagesRequest); - SubscribeLocalEvent<LanguageSpeakerComponent, LanguagesUpdateEvent>(OnLanguageSwitch); - } - - private void OnLanguagesRequest(RequestLanguageMenuStateMessage args, EntitySessionEventArgs session) - { - var uid = session.SenderSession.AttachedEntity; - if (uid == null) - return; - - var langs = GetLanguages(uid.Value); - if (langs == null) - return; - - var state = new LanguageMenuStateMessage(langs.CurrentLanguage, langs.SpokenLanguages); - RaiseNetworkEvent(state, uid.Value); - } - - private void OnLanguageSwitch(EntityUid uid, LanguageSpeakerComponent component, LanguagesUpdateEvent args) - { - var langs = GetLanguages(uid); - if (langs == null) - return; - - var state = new LanguageMenuStateMessage(langs.CurrentLanguage, langs.SpokenLanguages); - RaiseNetworkEvent(state, uid); - } -} diff --git a/Content.Server/ADT/Language/LanguageSystem.cs b/Content.Server/ADT/Language/LanguageSystem.cs index e76ce23cd36..89b375fc416 100644 --- a/Content.Server/ADT/Language/LanguageSystem.cs +++ b/Content.Server/ADT/Language/LanguageSystem.cs @@ -1,87 +1,82 @@ using System.Linq; using System.Text; -using Content.Shared.GameTicking; -using Content.Shared.Language; -using Content.Shared.Language.Systems; +using Content.Shared.ADT.Language; using Robust.Shared.Random; -using Robust.Shared.Player; -using Robust.Server.GameObjects; -using UniversalLanguageSpeakerComponent = Content.Shared.Language.Components.UniversalLanguageSpeakerComponent; +using Robust.Shared.Prototypes; +using Content.Server.GameTicking.Events; +using Content.Server.Chat.Systems; -namespace Content.Server.Language; +namespace Content.Server.ADT.Language; public sealed partial class LanguageSystem : SharedLanguageSystem { - /// <summary> - /// A random number added to each pseudo-random number's seed. Changes every round. - /// </summary> - public int RandomRoundSeed { get; private set; } + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly ChatSystem _chat = default!; + + public int Seed { get; private set; } public override void Initialize() { base.Initialize(); - SubscribeLocalEvent<LanguageSpeakerComponent, ComponentInit>(OnInitLanguageSpeaker); - SubscribeAllEvent<RoundStartedEvent>(it => RandomRoundSeed = _random.Next()); - SubscribeLocalEvent<UnknowLanguageComponent, MapInitEvent>(OnUnknow); + SubscribeLocalEvent<LanguageSpeakerComponent, MapInitEvent>(OnMapInit); + SubscribeLocalEvent<RoundStartingEvent>(OnRoundStart); - InitializeWindows(); + SubscribeNetworkEvent<LanguageChosenMessage>(OnLanguageSwitch); } - private void OnInitLanguageSpeaker(EntityUid uid, LanguageSpeakerComponent component, ComponentInit args) + private void OnMapInit(EntityUid uid, LanguageSpeakerComponent component, MapInitEvent args) { - if (string.IsNullOrEmpty(component.CurrentLanguage)) - { - component.CurrentLanguage = component.SpokenLanguages.FirstOrDefault(UniversalPrototype); - } + if (component.CurrentLanguage == null) + component.CurrentLanguage = component.SpokenLanguages.FirstOrDefault("Universal"); + Dirty(uid, component); } - private void OnUnknow(EntityUid uid, UnknowLanguageComponent unknow, MapInitEvent args) + private void OnRoundStart(RoundStartingEvent args) { - TryComp<LanguageSpeakerComponent>(uid, out var component); + Seed = _random.Next(); + } - if (component != null) - { - component.SpokenLanguages.Remove(unknow.LanguageToForgot); - component.UnderstoodLanguages.Remove(unknow.LanguageToForgot); - component.CurrentLanguage = component.SpokenLanguages.FirstOrDefault(UniversalPrototype); - } - else + private void OnLanguageSwitch(LanguageChosenMessage args) + { + var uid = GetEntity(args.Uid); + if (!TryComp<LanguageSpeakerComponent>(uid, out var component) || component.CurrentLanguage == null) + return; + + //if (langs == null || component.CurrentLanguage == null) + // return; + + component.CurrentLanguage = args.SelectedLanguage; + + Dirty(uid, component); + + if (!GetLanguages(uid, out var understood, out _, out var translatorUnderstood, out _, out var current)) return; + var state = new LanguageMenuStateMessage(args.Uid, current, understood, translatorUnderstood); + RaiseNetworkEvent(state, uid); } - /// <summary> - /// Obfuscate speech of the given entity, or using the given language. - /// </summary> - /// <param name="source">The speaker whose message needs to be obfuscated. Must not be null if "language" is not set.</param> - /// <param name="language">The language for obfuscation. Must not be null if "source" is null.</param> - public string ObfuscateSpeech(EntityUid? source, string message, LanguagePrototype? language = null) + public string ObfuscateMessage(EntityUid uid, string originalMessage, LanguagePrototype? proto = null) { - if (language == null) + if (proto == null) { - if (source is not { Valid: true }) - { - throw new NullReferenceException("Either source or language must be set."); - } - language = GetLanguage(source.Value); + proto = GetCurrentLanguage(uid); } var builder = new StringBuilder(); - if (language.ObfuscateSyllables) - { - ObfuscateSyllables(builder, message, language); - } + if (proto.ObfuscateSyllables) + ObfuscateSyllables(builder, originalMessage, proto); else - { - ObfuscatePhrases(builder, message, language); - } + ObfuscatePhrases(builder, originalMessage, proto); - //_sawmill.Info($"Got {message}, obfuscated to {builder}. Language: {language.ID}"); + var result = builder.ToString(); + result = _chat.SanitizeInGameICMessage(uid, result, out _); - return builder.ToString(); + return result; } + // Message obfuscation and seed system taken from https://github.com/new-frontiers-14/frontier-station-14/pull/671 private void ObfuscateSyllables(StringBuilder builder, string message, LanguagePrototype language) { // Go through each word. Calculate its hash sum and count the number of letters. @@ -93,9 +88,9 @@ private void ObfuscateSyllables(StringBuilder builder, string message, LanguageP { var ch = char.ToLower(message[i]); // A word ends when one of the following is found: a space, a sentence end, or EOM - if (char.IsWhiteSpace(ch) || IsSentenceEnd(ch) || i == message.Length - 1) + if (char.IsWhiteSpace(ch) || (ch is '.' or '!' or '?' or '~' or '-' or ',') || i == message.Length - 1) { - var wordLength = i - wordBeginIndex; + var wordLength = i + 1 - wordBeginIndex; if (wordLength > 0) { var newWordLength = PseudoRandomNumber(hashCode, 1, 4); @@ -126,9 +121,9 @@ private void ObfuscatePhrases(StringBuilder builder, string message, LanguagePro for (var i = 0; i < message.Length; i++) { var ch = char.ToLower(message[i]); - if (IsSentenceEnd(ch) || i == message.Length - 1) + if ((ch is '.' or '!' or '?' or '~' or '-' or ',') || i == message.Length - 1) { - var length = i - sentenceBeginIndex; + var length = i + 1 - sentenceBeginIndex; if (length > 0) { var newLength = (int) Math.Clamp(Math.Cbrt(length) - 1, 1, 4); // 27+ chars for 2 phrases, 64+ for 3, 125+ for 4. @@ -141,179 +136,18 @@ private void ObfuscatePhrases(StringBuilder builder, string message, LanguagePro } sentenceBeginIndex = i + 1; - if (IsSentenceEnd(ch)) + if ((ch is '.' or '!' or '?')) builder.Append(ch).Append(" "); } } } - public bool CanUnderstand(EntityUid listener, - LanguagePrototype language, - LanguageSpeakerComponent? listenerLanguageComp = null) - { - if (language.ID == UniversalPrototype || HasComp<UniversalLanguageSpeakerComponent>(listener)) - return true; - - var listenerLanguages = GetLanguages(listener, listenerLanguageComp)?.UnderstoodLanguages; - - return listenerLanguages?.Contains(language.ID, StringComparer.Ordinal) ?? false; - } - - public bool CanSpeak(EntityUid speaker, string language, LanguageSpeakerComponent? speakerComp = null) - { - if (HasComp<UniversalLanguageSpeakerComponent>(speaker)) - return true; - - var langs = GetLanguages(speaker, speakerComp)?.UnderstoodLanguages; - return langs?.Contains(language, StringComparer.Ordinal) ?? false; - } - - // <summary> - // Returns the current language of the given entity. Assumes Universal if not specified. - // </summary> - public LanguagePrototype GetLanguage(EntityUid speaker, LanguageSpeakerComponent? languageComp = null) - { - var id = GetLanguages(speaker, languageComp)?.CurrentLanguage; - if (id == null) - return Universal; // Fallback - - _prototype.TryIndex(id, out LanguagePrototype? proto); - - return proto ?? Universal; - } - - // <summary> - // Set the CurrentLanguage of the given entity. - // </summary> - public void SetLanguage(EntityUid speaker, string language, LanguageSpeakerComponent? languageComp = null) - { - if (!CanSpeak(speaker, language)) - return; - - if (languageComp == null && !TryComp(speaker, out languageComp)) - return; - - if (languageComp.CurrentLanguage == language) - return; - - languageComp.CurrentLanguage = language; - - RaiseLocalEvent(speaker, new LanguagesUpdateEvent(), true); - } - - /// <summary> - /// Adds a new language to the lists of understood and/or spoken languages of the given component. - /// </summary> - public void AddLanguage(LanguageSpeakerComponent comp, string language, bool addSpoken = true, bool addUnderstood = true) - { - if (addSpoken && !comp.SpokenLanguages.Contains(language, StringComparer.Ordinal)) - comp.SpokenLanguages.Add(language); - - if (addUnderstood && !comp.UnderstoodLanguages.Contains(language, StringComparer.Ordinal)) - comp.UnderstoodLanguages.Add(language); - - RaiseLocalEvent(comp.Owner, new LanguagesUpdateEvent(), true); - } - - private static bool IsSentenceEnd(char ch) - { - return ch is '.' or '!' or '?'; - } - - // This event is reused because re-allocating it each time is way too costly. - private readonly DetermineEntityLanguagesEvent _determineLanguagesEvent = new(string.Empty, new(), new()); - - /// <summary> - /// Returns a pair of (spoken, understood) languages of the given entity. - /// </summary> - public (List<string>, List<string>) GetAllLanguages(EntityUid speaker) - { - var languages = GetLanguages(speaker); - if (languages == null) - return (new(), new()); - - // The lists need to be copied because the internal ones are re-used for performance reasons. - return (new List<string>(languages.SpokenLanguages), new List<string>(languages.UnderstoodLanguages)); - } - - /// <summary> - /// Dynamically resolves the current language of the entity and the list of all languages it speaks. - /// The returned event is reused and thus must not be held as a reference anywhere but inside the caller function. - /// </summary> - private DetermineEntityLanguagesEvent? GetLanguages(EntityUid speaker, LanguageSpeakerComponent? comp = null) - { - if (comp == null && !TryComp(speaker, out comp)) - return null; - - var ev = _determineLanguagesEvent; - ev.SpokenLanguages.Clear(); - ev.UnderstoodLanguages.Clear(); - - ev.CurrentLanguage = comp.CurrentLanguage; - ev.SpokenLanguages.AddRange(comp.SpokenLanguages); - ev.UnderstoodLanguages.AddRange(comp.UnderstoodLanguages); - - RaiseLocalEvent(speaker, ev, true); - - if (ev.CurrentLanguage.Length == 0) - ev.CurrentLanguage = !string.IsNullOrEmpty(comp.CurrentLanguage) ? comp.CurrentLanguage : UniversalPrototype; // Fall back to account for admemes like admins possessing a bread - return ev; - } - - /// <summary> - /// Generates a stable pseudo-random number in the range [min, max) for the given seed. Each input seed corresponds to exactly one random number. - /// </summary> private int PseudoRandomNumber(int seed, int min, int max) { // This is not a uniform distribution, but it shouldn't matter: given there's 2^31 possible random numbers, // The bias of this function should be so tiny it will never be noticed. - seed += RandomRoundSeed; + seed += Seed; var random = ((seed * 1103515245) + 12345) & 0x7fffffff; // Source: http://cs.uccs.edu/~cs591/bufferOverflow/glibc-2.2.4/stdlib/random_r.c return random % (max - min) + min; } - - /// <summary> - /// Ensures the given entity has a valid language as its current language. - /// If not, sets it to the first entry of its SpokenLanguages list, or universal if it's empty. - /// </summary> - public void EnsureValidLanguage(EntityUid entity, LanguageSpeakerComponent? comp = null) - { - if (comp == null && !TryComp(entity, out comp)) - return; - - var langs = GetLanguages(entity, comp); - - if (langs != null && !langs.SpokenLanguages.Contains(comp!.CurrentLanguage, StringComparer.Ordinal)) - { - comp.CurrentLanguage = langs.SpokenLanguages.FirstOrDefault(UniversalPrototype); - } - } - - /// <summary> - /// Raised in order to determine the language an entity speaks at the current moment, - /// as well as the list of all languages the entity may speak and understand. - /// </summary> - public sealed class DetermineEntityLanguagesEvent : EntityEventArgs - { - /// <summary> - /// The default language of this entity. If empty, remain unchanged. - /// This field has no effect if the entity decides to speak in a concrete language. - /// </summary> - public string CurrentLanguage; - /// <summary> - /// The list of all languages the entity may speak. Must NOT be held as a reference! - /// </summary> - public List<string> SpokenLanguages; - /// <summary> - /// The list of all languages the entity may understand. Must NOT be held as a reference! - /// </summary> - public List<string> UnderstoodLanguages; - - public DetermineEntityLanguagesEvent(string currentLanguage, List<string> spokenLanguages, List<string> understoodLanguages) - { - CurrentLanguage = currentLanguage; - SpokenLanguages = spokenLanguages; - UnderstoodLanguages = understoodLanguages; - } - } } diff --git a/Content.Server/ADT/Language/TranslatorImplantSystem.cs b/Content.Server/ADT/Language/TranslatorImplantSystem.cs new file mode 100644 index 00000000000..2c4b97672ed --- /dev/null +++ b/Content.Server/ADT/Language/TranslatorImplantSystem.cs @@ -0,0 +1,8 @@ +using Content.Shared.Implants; + +namespace Content.Server.Implants; + +public sealed class TranslatorImplantSystem : SharedTranslatorImplantSystem +{ + +} diff --git a/Content.Server/ADT/Language/TranslatorImplanterSystem.cs b/Content.Server/ADT/Language/TranslatorImplanterSystem.cs deleted file mode 100644 index f24a013cc26..00000000000 --- a/Content.Server/ADT/Language/TranslatorImplanterSystem.cs +++ /dev/null @@ -1,79 +0,0 @@ -using System.Linq; -using Content.Server.Administration.Logs; -using Content.Server.Popups; -using Content.Shared.Database; -using Content.Shared.Interaction; -using Content.Shared.Language; -using Content.Shared.Language.Components; -using Content.Shared.Language.Systems; -using Content.Shared.Mobs.Components; - -namespace Content.Server.Language; - -public sealed class TranslatorImplanterSystem : SharedTranslatorImplanterSystem -{ - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly LanguageSystem _language = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent<TranslatorImplanterComponent, AfterInteractEvent>(OnImplant); - } - - private void OnImplant(EntityUid implanter, TranslatorImplanterComponent component, AfterInteractEvent args) - { - if (component.Used || !args.CanReach || args.Target is not { Valid: true } target) - return; - - if (!TryComp<LanguageSpeakerComponent>(target, out var speaker)) - return; - - if (component.MobsOnly && !HasComp<MobStateComponent>(target)) - { - _popup.PopupEntity("translator-implanter-refuse", component.Owner); - return; - } - - var (_, understood) = _language.GetAllLanguages(target); - if (component.RequiredLanguages.Count > 0 && !component.RequiredLanguages.Any(lang => understood.Contains(lang))) - { - RefusesPopup(implanter, target); - return; - } - - var intrinsic = EnsureComp<ImplantedTranslatorComponent>(target); - intrinsic.Enabled = true; - - foreach (var lang in component.SpokenLanguages.Where(lang => !intrinsic.SpokenLanguages.Contains(lang))) - intrinsic.SpokenLanguages.Add(lang); - - foreach (var lang in component.UnderstoodLanguages.Where(lang => !intrinsic.UnderstoodLanguages.Contains(lang))) - intrinsic.UnderstoodLanguages.Add(lang); - - component.Used = true; - SuccessPopup(implanter, target); - - _adminLogger.Add(LogType.Action, LogImpact.Medium, - $"{ToPrettyString(args.User):player} used {ToPrettyString(implanter):implanter} to give {ToPrettyString(target):target} the following languages:" - + $"\nSpoken: {string.Join(", ", component.SpokenLanguages)}; Understood: {string.Join(", ", component.UnderstoodLanguages)}"); - - OnAppearanceChange(implanter, component); - RaiseLocalEvent(target, new SharedLanguageSystem.LanguagesUpdateEvent(), true); - } - - private void RefusesPopup(EntityUid implanter, EntityUid target) - { - _popup.PopupEntity( - Loc.GetString("translator-implanter-refuse", ("implanter", implanter), ("target", target)), - implanter); - } - - private void SuccessPopup(EntityUid implanter, EntityUid target) - { - _popup.PopupEntity( - Loc.GetString("translator-implanter-success", ("implanter", implanter), ("target", target)), - implanter); - } -} diff --git a/Content.Server/ADT/Language/TranslatorSystem.cs b/Content.Server/ADT/Language/TranslatorSystem.cs index 7e3b8cfd0a7..4eb8708b1d3 100644 --- a/Content.Server/ADT/Language/TranslatorSystem.cs +++ b/Content.Server/ADT/Language/TranslatorSystem.cs @@ -1,243 +1,118 @@ -using System.Linq; using Content.Server.Popups; using Content.Server.PowerCell; -using Content.Shared.Hands; using Content.Shared.Interaction; -using Content.Shared.Interaction.Events; -using Content.Shared.Inventory; -using Content.Shared.Inventory.Events; -using Content.Shared.Language; -using Content.Shared.Language.Components; -using Content.Shared.Language.Systems; +using Content.Shared.ADT.Language; using Content.Shared.PowerCell; -using static Content.Server.Language.LanguageSystem; -using HandheldTranslatorComponent = Content.Shared.Language.Components.HandheldTranslatorComponent; -using HoldsTranslatorComponent = Content.Shared.Language.Components.HoldsTranslatorComponent; -using IntrinsicTranslatorComponent = Content.Shared.Language.Components.IntrinsicTranslatorComponent; +using Content.Shared.Interaction.Events; +using Content.Shared.Item; +using Content.Shared.Hands; -namespace Content.Server.Language; +namespace Content.Server.ADT.Language; -// this does not support holding multiple translators at once yet. -// that should not be an issue for now, but it better get fixed later. public sealed class TranslatorSystem : SharedTranslatorSystem { [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly LanguageSystem _language = default!; [Dependency] private readonly PowerCellSystem _powerCell = default!; - - private ISawmill _sawmill = default!; + [Dependency] private readonly LanguageSystem _language = default!; public override void Initialize() { base.Initialize(); - _sawmill = Logger.GetSawmill("translator"); - // I wanna die. But my death won't help us discover polymorphism. - SubscribeLocalEvent<IntrinsicTranslatorComponent, DetermineEntityLanguagesEvent>(ApplyTranslation); - SubscribeLocalEvent<HoldsTranslatorComponent, DetermineEntityLanguagesEvent>(ApplyTranslation); - SubscribeLocalEvent<ImplantedTranslatorComponent, DetermineEntityLanguagesEvent>(ApplyTranslation); - // TODO: make this thing draw power - // SubscribeLocalEvent<HoldsTranslatorComponent, ListenEvent>(...); + SubscribeLocalEvent<HandheldTranslatorComponent, ActivateInWorldEvent>(OnTranslatorActivateInWorld); + SubscribeLocalEvent<HandheldTranslatorComponent, UseInHandEvent>(OnTranslatorUseInHand); - SubscribeLocalEvent<HandheldTranslatorComponent, ActivateInWorldEvent>(OnTranslatorToggle); - SubscribeLocalEvent<HandheldTranslatorComponent, PowerCellSlotEmptyEvent>(OnPowerCellSlotEmpty); + SubscribeLocalEvent<HandheldTranslatorComponent, GotEquippedHandEvent>(OnPickUp); + SubscribeLocalEvent<HandheldTranslatorComponent, GotUnequippedHandEvent>(OnDrop); - SubscribeLocalEvent<HandheldTranslatorComponent, InteractHandEvent>( - (uid, component, args) => TranslatorEquipped(args.User, uid, component)); - SubscribeLocalEvent<HandheldTranslatorComponent, DroppedEvent>( - (uid, component, args) => TranslatorUnequipped(args.User, uid, component)); + SubscribeLocalEvent<HandheldTranslatorComponent, PowerCellSlotEmptyEvent>(OnPowerCellSlotEmpty); } - private void ApplyTranslation(EntityUid uid, IntrinsicTranslatorComponent component, - DetermineEntityLanguagesEvent ev) + private void OnTranslatorActivateInWorld(EntityUid translator, HandheldTranslatorComponent component, ActivateInWorldEvent args) { - if (!component.Enabled) - return; - - if (!_powerCell.HasActivatableCharge(uid)) + if (!component.ToggleOnInteract) return; + Dirty(translator, component); - var addUnderstood = true; - var addSpoken = true; - if (component.RequiredLanguages.Count > 0) - { - if (component.RequiresAllLanguages) - { - // Add langs when the wielder has all of the required languages - foreach (var language in component.RequiredLanguages) - { - if (!ev.SpokenLanguages.Contains(language, StringComparer.Ordinal)) - addSpoken = false; - - if (!ev.UnderstoodLanguages.Contains(language, StringComparer.Ordinal)) - addUnderstood = false; - } - } - else - { - // Add langs when the wielder has at least one of the required languages - addUnderstood = false; - addSpoken = false; - foreach (var language in component.RequiredLanguages) - { - if (ev.SpokenLanguages.Contains(language, StringComparer.Ordinal)) - addSpoken = true; - - if (ev.UnderstoodLanguages.Contains(language, StringComparer.Ordinal)) - addUnderstood = true; - } - } - } - - if (addSpoken) - { - foreach (var language in component.SpokenLanguages) - { - AddIfNotExists(ev.SpokenLanguages, language); - } - - if (component.CurrentSpeechLanguage != null && ev.CurrentLanguage.Length == 0) - { - ev.CurrentLanguage = component.CurrentSpeechLanguage; - } - } - - if (addUnderstood) + ToggleTranslator(translator); + if (_language.GetLanguages(args.User, out var understood, out _, out var translatorUnderstood, out _, out var current)) { - foreach (var language in component.UnderstoodLanguages) - { - AddIfNotExists(ev.UnderstoodLanguages, language); - } + var ev = new LanguageMenuStateMessage(GetNetEntity(args.User), current, understood, translatorUnderstood); + RaiseNetworkEvent(ev, args.User); } } - private void TranslatorEquipped(EntityUid holder, EntityUid translator, HandheldTranslatorComponent component) + private void OnTranslatorUseInHand(EntityUid translator, HandheldTranslatorComponent component, UseInHandEvent args) { - if (!EntityManager.HasComponent<LanguageSpeakerComponent>(holder)) + if (!component.ToggleOnInteract) return; + Dirty(translator, component); - var intrinsic = EntityManager.EnsureComponent<HoldsTranslatorComponent>(holder); - UpdateBoundIntrinsicComp(component, intrinsic, component.Enabled); - - UpdatedLanguages(holder); - } - - private void TranslatorUnequipped(EntityUid holder, EntityUid translator, HandheldTranslatorComponent component) - { - if (!EntityManager.TryGetComponent<HoldsTranslatorComponent>(holder, out var intrinsic)) - return; + ToggleTranslator(translator); + component.User = component.Enabled ? args.User : null; - if (intrinsic.Issuer == component) + if (_language.GetLanguages(args.User, out var understood, out _, out var translatorUnderstood, out _, out var current)) { - - intrinsic.Enabled = false; - EntityManager.RemoveComponent(holder, intrinsic); + var ev = new LanguageMenuStateMessage(GetNetEntity(args.User), current, understood, translatorUnderstood); + RaiseNetworkEvent(ev, args.User); } - - _language.EnsureValidLanguage(holder); - - UpdatedLanguages(holder); } - private void OnTranslatorToggle(EntityUid translator, HandheldTranslatorComponent component, ActivateInWorldEvent args) + private void OnPickUp(EntityUid translator, HandheldTranslatorComponent component, GotEquippedHandEvent args) { - if (!component.ToggleOnInteract) - return; - - var hasPower = _powerCell.HasDrawCharge(translator); - - if (Transform(args.Target).ParentUid is { Valid: true } holder && EntityManager.HasComponent<LanguageSpeakerComponent>(holder)) - { - // This translator is held by a language speaker and thus has an intrinsic counterpart bound to it. Make sure it's up-to-date. - var intrinsic = EntityManager.EnsureComponent<HoldsTranslatorComponent>(holder); - var isEnabled = !component.Enabled; - if (intrinsic.Issuer != component) - { - // The intrinsic comp wasn't owned by this handheld component, so this comp wasn't the active translator. - // Thus it needs to be turned on regardless of its previous state. - intrinsic.Issuer = component; - isEnabled = true; - } - - isEnabled &= hasPower; - UpdateBoundIntrinsicComp(component, intrinsic, isEnabled); - component.Enabled = isEnabled; - _powerCell.SetDrawEnabled(translator, isEnabled); - - _language.EnsureValidLanguage(holder); - UpdatedLanguages(holder); - } - else - { - // This is a standalone translator (e.g. lying on the ground). Simply toggle its state. - component.Enabled = !component.Enabled && hasPower; - _powerCell.SetDrawEnabled(translator, !component.Enabled && hasPower); - } + Dirty(translator, component); - OnAppearanceChange(translator, component); + component.User = args.User; - // HasPower shows a popup when there's no power, so we do not proceed in that case - if (hasPower) + if (_language.GetLanguages(args.User, out var understood, out _, out var translatorUnderstood, out _, out var current)) { - var message = - Loc.GetString(component.Enabled ? "translator-component-turnon" : "translator-component-shutoff", ("translator", component.Owner)); - _popup.PopupEntity(message, component.Owner, args.User); + var ev = new LanguageMenuStateMessage(GetNetEntity(args.User), current, understood, translatorUnderstood); + RaiseNetworkEvent(ev, args.User); } } - private void OnPowerCellSlotEmpty(EntityUid translator, HandheldTranslatorComponent component, PowerCellSlotEmptyEvent args) + private void OnDrop(EntityUid translator, HandheldTranslatorComponent component, GotUnequippedHandEvent args) { - component.Enabled = false; - _powerCell.SetDrawEnabled(translator, false); - OnAppearanceChange(translator, component); + Dirty(translator, component); - if (Transform(translator).ParentUid is { Valid: true } holder && EntityManager.HasComponent<LanguageSpeakerComponent>(holder)) - { - if (!EntityManager.TryGetComponent<HoldsTranslatorComponent>(holder, out var intrinsic)) - return; + if (component.User.HasValue) + _language.SelectDefaultLanguage(component.User.Value); - if (intrinsic.Issuer == component) - { - intrinsic.Enabled = false; - EntityManager.RemoveComponent(holder, intrinsic); - } + component.User = null; - _language.EnsureValidLanguage(holder); - UpdatedLanguages(holder); + if (_language.GetLanguages(args.User, out var understood, out _, out var translatorUnderstood, out _, out var current)) + { + var ev = new LanguageMenuStateMessage(GetNetEntity(args.User), current, understood, translatorUnderstood); + RaiseNetworkEvent(ev, args.User); } } - /// <summary> - /// Copies the state from the handheld [comp] to the [intrinsic] comp, using [isEnabled] as the enabled state. - /// </summary> - private void UpdateBoundIntrinsicComp(HandheldTranslatorComponent comp, HoldsTranslatorComponent intrinsic, bool isEnabled) + private void ToggleTranslator(EntityUid uid, HandheldTranslatorComponent? component = null) { - if (isEnabled) - { - intrinsic.SpokenLanguages = new List<string>(comp.SpokenLanguages); - intrinsic.UnderstoodLanguages = new List<string>(comp.UnderstoodLanguages); - intrinsic.CurrentSpeechLanguage = comp.CurrentSpeechLanguage; - } - else + if (!Resolve(uid, ref component)) + return; + + var hasPower = _powerCell.HasDrawCharge(uid); + + if (hasPower) { - intrinsic.SpokenLanguages.Clear(); - intrinsic.UnderstoodLanguages.Clear(); - intrinsic.CurrentSpeechLanguage = null; + component.Enabled = !component.Enabled; + var popupMessage = Loc.GetString(component.Enabled ? "translator-component-turnon" : "translator-component-shutoff", ("translator", component.Owner)); + _popup.PopupEntity(popupMessage, component.Owner); + if (!component.Enabled && component.User.HasValue) + _language.SelectDefaultLanguage(component.User.Value); } - intrinsic.Enabled = isEnabled; - intrinsic.Issuer = comp; + Dirty(uid, component); + OnAppearanceChange(uid, component); } - - private static void AddIfNotExists(List<string> list, string item) + private void OnPowerCellSlotEmpty(EntityUid translator, HandheldTranslatorComponent component, PowerCellSlotEmptyEvent args) { - if (list.Contains(item)) - return; - list.Add(item); - } + component.Enabled = false; - private void UpdatedLanguages(EntityUid uid) - { - RaiseLocalEvent(uid, new SharedLanguageSystem.LanguagesUpdateEvent(), true); + component.User = null; + + Dirty(translator, component); + OnAppearanceChange(translator, component); } } diff --git a/Content.Server/ADT/Power/Components/BatteryDrinkerComponent.cs b/Content.Server/ADT/Power/Components/BatteryDrinkerComponent.cs new file mode 100644 index 00000000000..3d8e5c0eec7 --- /dev/null +++ b/Content.Server/ADT/Power/Components/BatteryDrinkerComponent.cs @@ -0,0 +1,33 @@ +// Simple Station + +namespace Content.Server.ADT.Power; + +[RegisterComponent] +public sealed partial class BatteryDrinkerComponent : Component +{ + /// <summary> + /// Is this drinker allowed to drink batteries not tagged as <see cref="BatteryDrinkSource"/>? + /// </summary> + [DataField("drinkAll"), ViewVariables(VVAccess.ReadWrite)] + public bool DrinkAll = false; + + /// <summary> + /// How long it takes to drink from a battery, in seconds. + /// Is multiplied by the source. + /// </summary> + [DataField("drinkSpeed"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkSpeed = 1.5f; + + /// <summary> + /// The multiplier for the amount of power to attempt to drink. + /// Default amount is 1000 + /// </summary> + [DataField("drinkMultiplier"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkMultiplier = 5f; + + /// <summary> + /// The multiplier for how long it takes to drink a non-source battery, if <see cref="DrinkAll"/> is true. + /// </summary> + [DataField("drinkAllMultiplier"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkAllMultiplier = 2.5f; +} diff --git a/Content.Server/ADT/Power/Components/SiliconEmitSoundOnDrainedComponent.cs b/Content.Server/ADT/Power/Components/SiliconEmitSoundOnDrainedComponent.cs new file mode 100644 index 00000000000..326d9ff29a2 --- /dev/null +++ b/Content.Server/ADT/Power/Components/SiliconEmitSoundOnDrainedComponent.cs @@ -0,0 +1,26 @@ +// Simple Station + +using System.ComponentModel.DataAnnotations; +using Robust.Shared.Audio; +using Content.Server.Sound.Components; + +namespace Content.Server.ADT.Silicon; + +/// <summary> +/// Applies a <see cref="SpamEmitSoundComponent"/> to a Silicon when its battery is drained, and removes it when it's not. +/// </summary> +[RegisterComponent] +public sealed partial class SiliconEmitSoundOnDrainedComponent : Component +{ + [DataField("sound"), Required] + public SoundSpecifier Sound = default!; + + [DataField("interval")] + public float Interval = 8f; + + [DataField("playChance")] + public float PlayChance = 1f; + + [DataField("popUp")] + public string? PopUp; +} diff --git a/Content.Server/ADT/Power/Systems/BatteryDrinkerSystem.cs b/Content.Server/ADT/Power/Systems/BatteryDrinkerSystem.cs new file mode 100644 index 00000000000..d00cad93cf3 --- /dev/null +++ b/Content.Server/ADT/Power/Systems/BatteryDrinkerSystem.cs @@ -0,0 +1,149 @@ +// Simple Station + +using System.Diagnostics.CodeAnalysis; +using Content.Server.Power.Components; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.DoAfter; +using Content.Shared.PowerCell.Components; +using Content.Shared.ADT.Silicon; +using Content.Shared.Verbs; +using Robust.Shared.Utility; +using Content.Server.ADT.Silicon.Charge; +using Content.Server.Power.EntitySystems; +using Content.Server.Popups; + +namespace Content.Server.ADT.Power; + +public sealed class BatteryDrinkerSystem : EntitySystem +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly ItemSlotsSystem _slots = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + //[Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly SiliconChargeSystem _silicon = default!; + [Dependency] private readonly PopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<BatteryComponent, GetVerbsEvent<AlternativeVerb>>(AddAltVerb); + + SubscribeLocalEvent<BatteryDrinkerComponent, BatteryDrinkerDoAfterEvent>(OnDoAfter); + } + + private void AddAltVerb(EntityUid uid, BatteryComponent batteryComponent, GetVerbsEvent<AlternativeVerb> args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + if (!TryComp<BatteryDrinkerComponent>(args.User, out var drinkerComp) || + !TestDrinkableBattery(uid, drinkerComp) || + !TryGetFillableBattery(args.User, out var drinkerBattery, out _)) + return; + + AlternativeVerb verb = new() + { + Act = () => DrinkBattery(uid, args.User, drinkerComp), + Text = Loc.GetString("battery-drinker-verb-drink"), + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/smite.svg.192dpi.png")), + }; + + args.Verbs.Add(verb); + } + + private bool TestDrinkableBattery(EntityUid target, BatteryDrinkerComponent drinkerComp) + { + if (!drinkerComp.DrinkAll && !HasComp<BatteryDrinkerSourceComponent>(target)) + return false; + + return true; + } + + private bool TryGetFillableBattery(EntityUid uid, [NotNullWhen(true)] out BatteryComponent? battery, [NotNullWhen(true)] out EntityUid batteryUid) + { + if (_silicon.TryGetSiliconBattery(uid, out battery, out batteryUid)) + return true; + + if (TryComp(uid, out battery)) + return true; + + if (TryComp<PowerCellSlotComponent>(uid, out var powerCellSlot) && + _slots.TryGetSlot(uid, powerCellSlot.CellSlotId, out var slot) && + slot.Item != null && + TryComp(slot.Item.Value, out battery)) + { + batteryUid = slot.Item.Value; + return true; + } + + return false; + } + + private void DrinkBattery(EntityUid target, EntityUid user, BatteryDrinkerComponent drinkerComp) + { + var doAfterTime = drinkerComp.DrinkSpeed; + + if (TryComp<BatteryDrinkerSourceComponent>(target, out var sourceComp)) + doAfterTime *= sourceComp.DrinkSpeedMulti; + else + doAfterTime *= drinkerComp.DrinkAllMultiplier; + var args = new DoAfterArgs(_entityManager, user, doAfterTime, new BatteryDrinkerDoAfterEvent(), user, target) //modern.df + //var args = new DoAfterArgs(user, doAfterTime, new BatteryDrinkerDoAfterEvent(), user, target) // TODO: Make this doafter loop, once we merge Upstream. + { + BreakOnDamage = true, + BreakOnMove = true, + Broadcast = false, + DistanceThreshold = 1.35f, + RequireCanInteract = true, + CancelDuplicate = false + }; + + _doAfter.TryStartDoAfter(args); + } + + private void OnDoAfter(EntityUid uid, BatteryDrinkerComponent drinkerComp, DoAfterEvent args) + { + if (args.Cancelled || args.Target == null) + return; + + var source = args.Target.Value; + var drinker = uid; + var sourceBattery = Comp<BatteryComponent>(source); + + TryGetFillableBattery(drinker, out var drinkerBattery, out var drinkerBatteryUid); + + TryComp<BatteryDrinkerSourceComponent>(source, out var sourceComp); + + DebugTools.AssertNotNull(drinkerBattery); + + if (drinkerBattery == null) + return; + + var amountToDrink = drinkerComp.DrinkMultiplier * 1000; + + amountToDrink = MathF.Min(amountToDrink, sourceBattery.CurrentCharge); + amountToDrink = MathF.Min(amountToDrink, drinkerBattery.MaxCharge - drinkerBattery.CurrentCharge); + + if (sourceComp != null && sourceComp.MaxAmount > 0) + amountToDrink = MathF.Min(amountToDrink, (float) sourceComp.MaxAmount); + + if (amountToDrink <= 0) + { + _popup.PopupEntity(Loc.GetString("battery-drinker-empty", ("target", source)), drinker, drinker); + return; + } + + if (_battery.TryUseCharge(source, amountToDrink, sourceBattery)) + _battery.SetCharge(drinkerBatteryUid, drinkerBattery.CurrentCharge + amountToDrink, drinkerBattery); + else + { + _battery.SetCharge(drinker, sourceBattery.CurrentCharge + drinkerBattery.CurrentCharge, drinkerBattery); + _battery.SetCharge(source, 0, sourceBattery); + } + + //if (sourceComp != null && sourceComp.DrinkSound != null) + // _audio.PlayPvs(sourceComp.DrinkSound, source); + } +} diff --git a/Content.Server/ADT/Power/Systems/BatteryElectrocuteChargeSystem.cs b/Content.Server/ADT/Power/Systems/BatteryElectrocuteChargeSystem.cs new file mode 100644 index 00000000000..57b285d8478 --- /dev/null +++ b/Content.Server/ADT/Power/Systems/BatteryElectrocuteChargeSystem.cs @@ -0,0 +1,40 @@ +// Simple Station + +using Content.Server.Electrocution; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Electrocution; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Server.ADT.Power.Systems; + +public sealed class BatteryElectrocuteChargeSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly BatterySystem _battery = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<BatteryComponent, ElectrocutedEvent>(OnElectrocuted); + } + + private void OnElectrocuted(EntityUid uid, BatteryComponent battery, ElectrocutedEvent args) + { + if (args.ShockDamage == null || args.ShockDamage <= 0) + return; + + var damagePerWatt = ElectrocutionSystem.ElectrifiedDamagePerWatt * 2; + + var damage = args.ShockDamage.Value * args.SiemensCoefficient; + var charge = Math.Min(damage / damagePerWatt, battery.MaxCharge * 0.25f) * _random.NextFloat(0.75f, 1.25f); + + _battery.SetCharge(uid, battery.CurrentCharge + charge); + + _popup.PopupEntity(Loc.GetString("battery-electrocute-charge"), uid, uid); + } +} diff --git a/Content.Server/ADT/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs b/Content.Server/ADT/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs new file mode 100644 index 00000000000..6be0a089cff --- /dev/null +++ b/Content.Server/ADT/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs @@ -0,0 +1,44 @@ +// Simple Station + +using Content.Server.ADT.Silicon.Death; +using Content.Shared.Sound.Components; +using Content.Shared.Mobs; +using Robust.Shared.Timing; +//using Content.Shared.SimpleStation14.Silicon.Systems; + +namespace Content.Server.ADT.Silicon; + +public sealed class EmitSoundOnCritSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + public override void Initialize() + { + SubscribeLocalEvent<SiliconEmitSoundOnDrainedComponent, SiliconChargeDeathEvent>(OnDeath); + SubscribeLocalEvent<SiliconEmitSoundOnDrainedComponent, SiliconChargeAliveEvent>(OnAlive); + SubscribeLocalEvent<SiliconEmitSoundOnDrainedComponent, MobStateChangedEvent>(OnStateChange); + } + + private void OnDeath(EntityUid uid, SiliconEmitSoundOnDrainedComponent component, SiliconChargeDeathEvent args) + { + var spamComp = EnsureComp<SpamEmitSoundComponent>(uid); + + // spamComp.Accumulator = 0f; + spamComp.MinInterval = TimeSpan.FromSeconds(component.Interval); + spamComp.MaxInterval = TimeSpan.FromSeconds(component.Interval); + spamComp.PopUp = component.PopUp; + spamComp.Enabled = true; + spamComp.Sound = component.Sound; + } + + private void OnAlive(EntityUid uid, SiliconEmitSoundOnDrainedComponent component, SiliconChargeAliveEvent args) + { + RemComp<SpamEmitSoundComponent>(uid); // This component is bad and I don't feel like making a janky work around because of it. + // If you give something the SiliconEmitSoundOnDrainedComponent, know that it can't have the SpamEmitSoundComponent, and any other systems that play with it will just be broken. + } + + public void OnStateChange(EntityUid uid, SiliconEmitSoundOnDrainedComponent component, MobStateChangedEvent args) + { + if (args.NewMobState == MobState.Dead) + RemComp<SpamEmitSoundComponent>(uid); + } +} diff --git a/Content.Server/ADT/Radio/IntrinsicRadioKeySystem.cs b/Content.Server/ADT/Radio/IntrinsicRadioKeySystem.cs new file mode 100644 index 00000000000..eaaa3610237 --- /dev/null +++ b/Content.Server/ADT/Radio/IntrinsicRadioKeySystem.cs @@ -0,0 +1,34 @@ +// Simple Station + +using Content.Server.Radio.Components; +using Content.Shared.Radio; +using Content.Shared.Radio.Components; + +namespace Content.Server.ADT.Radio; + +public sealed class IntrinsicRadioKeySystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<IntrinsicRadioTransmitterComponent, EncryptionChannelsChangedEvent>(OnTransmitterChannelsChanged); + SubscribeLocalEvent<ActiveRadioComponent, EncryptionChannelsChangedEvent>(OnReceiverChannelsChanged); + } + + private void OnTransmitterChannelsChanged(EntityUid uid, IntrinsicRadioTransmitterComponent component, EncryptionChannelsChangedEvent args) + { + UpdateChannels(uid, args.Component, ref component.Channels); + } + + private void OnReceiverChannelsChanged(EntityUid uid, ActiveRadioComponent component, EncryptionChannelsChangedEvent args) + { + UpdateChannels(uid, args.Component, ref component.Channels); + } + + private void UpdateChannels(EntityUid _, EncryptionKeyHolderComponent keyHolderComp, ref HashSet<string> channels) + { + channels.Clear(); + channels.UnionWith(keyHolderComp.Channels); + } +} diff --git a/Content.Server/ADT/Silicon/Charge/Components/BatteryDrinkerSourceComponent.cs b/Content.Server/ADT/Silicon/Charge/Components/BatteryDrinkerSourceComponent.cs new file mode 100644 index 00000000000..9b9234d4913 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Components/BatteryDrinkerSourceComponent.cs @@ -0,0 +1,29 @@ +// Simple Station + +using Robust.Shared.Audio; + +namespace Content.Server.ADT.Silicon.Charge; + +[RegisterComponent] +public sealed partial class BatteryDrinkerSourceComponent : Component +{ + /// <summary> + /// The max amount of power this source can provide in one sip. + /// No limit if null. + /// </summary> + [DataField("maxAmount"), ViewVariables(VVAccess.ReadWrite)] + public int? MaxAmount = null; + + /// <summary> + /// The multiplier for the drink speed. + /// </summary> + [DataField("drinkSpeedMulti"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkSpeedMulti = 1f; + + /// <summary> + /// The sound to play when the battery gets drunk from. + /// Can be null. + /// </summary> + [DataField("drinkSound")] + public SoundSpecifier? DrinkSound = null; +} diff --git a/Content.Server/ADT/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs b/Content.Server/ADT/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs new file mode 100644 index 00000000000..352cbb36ce9 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs @@ -0,0 +1,36 @@ +// Simple Station + +using System.Threading; + +namespace Content.Server.ADT.Silicon.Death; + +/// <summary> +/// Marks a Silicon as becoming incapacitated when they run out of battery charge. +/// </summary> +/// <remarks> +/// Uses the Silicon System's charge states to do so, so make sure they're a battery powered Silicon. +/// </remarks> +[RegisterComponent] +public sealed partial class SiliconDownOnDeadComponent : Component +{ + /// <summary> + /// Cancellation token for the silicon's wake timer. + /// </summary> + public CancellationTokenSource? WakeToken { get; set; } + + /// <summary> + /// The time it will take for a Silicon to "wake up" after leaving the Dead state, in seconds. + /// </summary> + /// <remarks> + /// If not zero, the Silicon will not actually come back to life until after this much time has passed. + /// This can prevent 'flickering' between the two states. + /// </remarks> + [ViewVariables(VVAccess.ReadWrite)] + [DataField("deadBuffer")] + public float DeadBuffer { get; set; } = 2.5f; + + /// <summary> + /// Is this Silicon currently dead? + /// </summary> + public bool Dead { get; set; } = false; +} diff --git a/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs new file mode 100644 index 00000000000..119ff3e96d9 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs @@ -0,0 +1,140 @@ +// Simple Station + +using Content.Server.Power.Components; +using Content.Shared.ADT.Silicon.Systems; +// using Content.Server.Bed.Sleep; - nixsilvam: ну предположим это не нужно вообще теперь +using Content.Shared.Bed.Sleep; +// using Content.Server.Sound.Components; - nixsilvam: это в целом не используется тут, хз зачем оно было +using Content.Server.ADT.Silicon.Charge; +using System.Threading; +using Timer = Robust.Shared.Timing.Timer; + +namespace Content.Server.ADT.Silicon.Death; + +public sealed class SiliconDeathSystem : EntitySystem +{ + [Dependency] private readonly SleepingSystem _sleep = default!; + [Dependency] private readonly SiliconChargeSystem _silicon = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<SiliconDownOnDeadComponent, SiliconChargeStateUpdateEvent>(OnSiliconChargeStateUpdate); + } + + private void OnSiliconChargeStateUpdate(EntityUid uid, SiliconDownOnDeadComponent siliconDeadComp, SiliconChargeStateUpdateEvent args) + { + _silicon.TryGetSiliconBattery(uid, out var batteryComp, out var batteryUid); + + if (args.ChargeState == ChargeState.Dead && siliconDeadComp.Dead) + { + siliconDeadComp.WakeToken?.Cancel(); + return; + } + + if (args.ChargeState == ChargeState.Dead && !siliconDeadComp.Dead) + SiliconDead(uid, siliconDeadComp, batteryComp, batteryUid); + else if (args.ChargeState != ChargeState.Dead && siliconDeadComp.Dead) + { + if (siliconDeadComp.DeadBuffer > 0) + { + siliconDeadComp.WakeToken?.Cancel(); // This should never matter, but better safe than loose timers. + + var wakeToken = new CancellationTokenSource(); + siliconDeadComp.WakeToken = wakeToken; + + // If battery is dead, wait the dead buffer time and then wake it up. + Timer.Spawn(TimeSpan.FromSeconds(siliconDeadComp.DeadBuffer), () => + { + if (wakeToken.IsCancellationRequested) + return; + + SiliconUnDead(uid, siliconDeadComp, batteryComp, batteryUid); + }, wakeToken.Token); + } + else + SiliconUnDead(uid, siliconDeadComp, batteryComp, batteryUid); + } + } + + private void SiliconDead(EntityUid uid, SiliconDownOnDeadComponent siliconDeadComp, BatteryComponent? batteryComp, EntityUid batteryUid) + { + var deadEvent = new SiliconChargeDyingEvent(uid, batteryComp, batteryUid); + RaiseLocalEvent(uid, deadEvent); + + if (deadEvent.Cancelled) + return; + + EntityManager.EnsureComponent<SleepingComponent>(uid); + EntityManager.EnsureComponent<ForcedSleepingComponent>(uid); + + siliconDeadComp.Dead = true; + + RaiseLocalEvent(uid, new SiliconChargeDeathEvent(uid, batteryComp, batteryUid)); + } + + private void SiliconUnDead(EntityUid uid, SiliconDownOnDeadComponent siliconDeadComp, BatteryComponent? batteryComp, EntityUid batteryUid) + { + _sleep.TryWaking(uid, true, null); + + siliconDeadComp.Dead = false; + + RaiseLocalEvent(uid, new SiliconChargeAliveEvent(uid, batteryComp, batteryUid)); + } +} + +/// <summary> +/// A cancellable event raised when a Silicon is about to go down due to charge. +/// </summary> +/// <remarks> +/// This probably shouldn't be modified unless you intend to fill the Silicon's battery, +/// as otherwise it'll just be triggered again next frame. +/// </remarks> +public sealed class SiliconChargeDyingEvent : CancellableEntityEventArgs +{ + public EntityUid SiliconUid { get; } + public BatteryComponent? BatteryComp { get; } + public EntityUid BatteryUid { get; } + + public SiliconChargeDyingEvent(EntityUid siliconUid, BatteryComponent? batteryComp, EntityUid batteryUid) + { + SiliconUid = siliconUid; + BatteryComp = batteryComp; + BatteryUid = batteryUid; + } +} + +/// <summary> +/// An event raised after a Silicon has gone down due to charge. +/// </summary> +public sealed class SiliconChargeDeathEvent : EntityEventArgs +{ + public EntityUid SiliconUid { get; } + public BatteryComponent? BatteryComp { get; } + public EntityUid BatteryUid { get; } + + public SiliconChargeDeathEvent(EntityUid siliconUid, BatteryComponent? batteryComp, EntityUid batteryUid) + { + SiliconUid = siliconUid; + BatteryComp = batteryComp; + BatteryUid = batteryUid; + } +} + +/// <summary> +/// An event raised after a Silicon has reawoken due to an increase in charge. +/// </summary> +public sealed class SiliconChargeAliveEvent : EntityEventArgs +{ + public EntityUid SiliconUid { get; } + public BatteryComponent? BatteryComp { get; } + public EntityUid BatteryUid { get; } + + public SiliconChargeAliveEvent(EntityUid siliconUid, BatteryComponent? batteryComp, EntityUid batteryUid) + { + SiliconUid = siliconUid; + BatteryComp = batteryComp; + BatteryUid = batteryUid; + } +} diff --git a/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeSystem.cs b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeSystem.cs new file mode 100644 index 00000000000..e607618e0ea --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeSystem.cs @@ -0,0 +1,215 @@ +// Simple Station + +using Robust.Shared.Random; +using Content.Shared.ADT.Silicon.Components; +using Content.Server.Power.Components; +using Content.Shared.Mobs.Systems; +using Content.Server.Temperature.Components; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; +using Content.Server.Popups; +using Content.Shared.Popups; +using Content.Shared.ADT.Silicon.Systems; +using Content.Shared.Movement.Systems; +using Content.Server.Body.Components; +using Content.Server.Power.EntitySystems; +using Robust.Shared.Containers; +using System.Diagnostics.CodeAnalysis; +using Robust.Shared.Timing; +using Content.Shared.ADT.CCVar; +using Robust.Shared.Configuration; +using Robust.Shared.Utility; + +namespace Content.Server.ADT.Silicon.Charge; + +public sealed class SiliconChargeSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly FlammableSystem _flammable = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly MovementSpeedModifierSystem _moveMod = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IConfigurationManager _config = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<SiliconComponent, ComponentStartup>(OnSiliconStartup); + } + + public bool TryGetSiliconBattery(EntityUid silicon, [NotNullWhen(true)] out BatteryComponent? batteryComp, out EntityUid batteryUid) + { + batteryComp = null; + batteryUid = silicon; + + if (!EntityManager.TryGetComponent(silicon, out SiliconComponent? siliconComp)) + return false; + + /// этот блок по идее можно пропустить ибо у нас визардовские борги + // if (siliconComp.BatteryContainer != null && + // siliconComp.BatteryContainer.ContainedEntities.Count > 0 && + // TryComp(siliconComp.BatteryContainer.ContainedEntities[0], out batteryComp)) + // { + // batteryUid = siliconComp.BatteryContainer.ContainedEntities[0]; + // return true; + // } + + if (TryComp(silicon, out batteryComp)) + return true; + + return false; + } + + private void OnSiliconStartup(EntityUid uid, SiliconComponent component, ComponentStartup args) + { + if (component.BatterySlot == null) + return; + /// этот блок по идее можно пропустить ибо у нас визардовские борги + // var container = _container.GetContainer(uid, component.BatterySlot); + // component.BatteryContainer = container; + + if (component.EntityType.GetType() != typeof(SiliconType)) + DebugTools.Assert("SiliconComponent.EntityType is not a SiliconType enum."); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + // For each siliconComp entity with a battery component, drain their charge. + var query = EntityQueryEnumerator<SiliconComponent>(); + while (query.MoveNext(out var silicon, out var siliconComp)) + { + if (!siliconComp.BatteryPowered) + continue; + + // Check if the Silicon is an NPC, and if so, follow the delay as specified in the CVAR. + if (siliconComp.EntityType.Equals(SiliconType.Npc)) + { + var updateTime = _config.GetCVar(SimpleStationCCVars.SiliconNpcUpdateTime); + if (_timing.CurTime - siliconComp.LastDrainTime < TimeSpan.FromSeconds(updateTime)) + continue; + + siliconComp.LastDrainTime = _timing.CurTime; + } + + // If you can't find a battery, set the indicator and skip it. + if (!TryGetSiliconBattery(silicon, out var batteryComp, out var battery)) + { + UpdateChargeState(battery, ChargeState.Invalid, siliconComp); + continue; + } + + // If the silicon is dead, skip it. + if (_mobState.IsDead(silicon)) + continue; + + var drainRate = siliconComp.DrainPerSecond; + + // All multipliers will be subtracted by 1, and then added together, and then multiplied by the drain rate. This is then added to the base drain rate. + // This is to stop exponential increases, while still allowing for less-than-one multipliers. + var drainRateFinalAddi = 0f; + + // TODO: Devise a method of adding multis where other systems can alter the drain rate. + // Maybe use something similar to refreshmovespeedmodifiers, where it's stored in the component. + // Maybe it doesn't matter, and stuff should just use static drain? + if (!siliconComp.EntityType.Equals(SiliconType.Npc)) // Don't bother checking heat if it's an NPC. It's a waste of time, and it'd be delayed due to the update time. + drainRateFinalAddi += SiliconHeatEffects(silicon, frameTime) - 1; // This will need to be changed at some point if we allow external batteries, since the heat of the Silicon might not be applicable. + + // Ensures that the drain rate is at least 10% of normal, + // and would allow at least 4 minutes of life with a max charge, to prevent cheese. + drainRate += Math.Clamp(drainRateFinalAddi, drainRate * -0.9f, batteryComp.MaxCharge / 240); + + // Drain the battery. + _battery.UseCharge(battery, frameTime * drainRate, batteryComp); + + // Figure out the current state of the Silicon. + var chargePercent = batteryComp.CurrentCharge / batteryComp.MaxCharge; + + var currentState = chargePercent switch + { + var x when x > siliconComp.ChargeThresholdMid => ChargeState.Full, + var x when x > siliconComp.ChargeThresholdLow => ChargeState.Mid, + var x when x > siliconComp.ChargeThresholdCritical => ChargeState.Low, + var x when x > 0 || siliconComp.ChargeThresholdCritical == 0 => ChargeState.Critical, + _ => ChargeState.Dead, + }; + + UpdateChargeState(silicon, currentState, siliconComp); + } + } + + /// <summary> + /// Checks if anything needs to be updated, and updates it. + /// </summary> + public void UpdateChargeState(EntityUid uid, ChargeState state, SiliconComponent component) + { + if (component.ChargeState == state) + return; + + component.ChargeState = state; + + RaiseLocalEvent(uid, new SiliconChargeStateUpdateEvent(state)); + + _moveMod.RefreshMovementSpeedModifiers(uid); + } + + private float SiliconHeatEffects(EntityUid silicon, float frameTime) + { + if (!EntityManager.TryGetComponent<TemperatureComponent>(silicon, out var temperComp) || + !EntityManager.TryGetComponent<ThermalRegulatorComponent>(silicon, out var thermalComp)) + { + return 0; + } + + var siliconComp = EntityManager.GetComponent<SiliconComponent>(silicon); + + // If the Silicon is hot, drain the battery faster, if it's cold, drain it slower, capped. + var upperThresh = thermalComp.NormalBodyTemperature + thermalComp.ThermalRegulationTemperatureThreshold; + var upperThreshHalf = thermalComp.NormalBodyTemperature + thermalComp.ThermalRegulationTemperatureThreshold * 0.5f; + + // Check if the silicon is in a hot environment. + if (temperComp.CurrentTemperature > upperThreshHalf) + { + // Divide the current temp by the max comfortable temp capped to 4, then add that to the multiplier. + var hotTempMulti = Math.Min(temperComp.CurrentTemperature / upperThreshHalf, 4); + + // If the silicon is hot enough, it has a chance to catch fire. + + siliconComp.OverheatAccumulator += frameTime; + if (siliconComp.OverheatAccumulator >= 5) + { + siliconComp.OverheatAccumulator -= 5; + + if (EntityManager.TryGetComponent<FlammableComponent>(silicon, out var flamComp) && + temperComp.CurrentTemperature > temperComp.HeatDamageThreshold && + !flamComp.OnFire && + _random.Prob(Math.Clamp(temperComp.CurrentTemperature / (upperThresh * 5), 0.001f, 0.9f))) + { + //_flammable.Ignite(silicon, flamComp); // починить Ignite + } + else if ((flamComp == null || !flamComp.OnFire) && + _random.Prob(Math.Clamp(temperComp.CurrentTemperature / upperThresh, 0.001f, 0.75f))) + { + _popup.PopupEntity(Loc.GetString("silicon-overheating"), silicon, silicon, PopupType.SmallCaution); + } + } + + return hotTempMulti; + } + + // Check if the silicon is in a cold environment. + if (temperComp.CurrentTemperature < thermalComp.NormalBodyTemperature) + { + var coldTempMulti = 0.5f + temperComp.CurrentTemperature / thermalComp.NormalBodyTemperature * 0.5f; + + return coldTempMulti; + } + + return 0; + } +} diff --git a/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargerSystem.cs b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargerSystem.cs new file mode 100644 index 00000000000..c15efebabc5 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargerSystem.cs @@ -0,0 +1,386 @@ +// Simple Station + +using System.Linq; +using Content.Server.Construction; +using Content.Server.Explosion.Components; +using Content.Server.Explosion.EntitySystems; +using Content.Server.Hands.Systems; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Server.Storage.Components; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.Hands.Components; +using Content.Shared.Interaction.Components; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.Power; +using Content.Shared.PowerCell.Components; +using Content.Shared.ADT.Silicon; +using Content.Shared.StepTrigger.Components; +using Content.Shared.Storage.Components; +using Robust.Shared.Physics.Events; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Server.ADT.Silicon.Charge; + +public sealed class SiliconChargerSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly IPrototypeManager _prototypes = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly HandsSystem _hands = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly ExplosionSystem _explosion = default!; + //[Dependency] private readonly SharedSiliconChargerSystem _sharedCharger = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SiliconChargeSystem _silicon = default!; + + public override void Initialize() + { + base.Initialize(); + + // SubscribeLocalEvent<SiliconChargerComponent, RefreshPartsEvent>(OnRefreshParts); + // SubscribeLocalEvent<SiliconChargerComponent, UpgradeExamineEvent>(OnExamineParts); + + SubscribeLocalEvent<SiliconChargerComponent, StartCollideEvent>(OnStartCollide); + SubscribeLocalEvent<SiliconChargerComponent, EndCollideEvent>(OnEndCollide); + + SubscribeLocalEvent<SiliconChargerComponent, ComponentShutdown>(OnChargerShutdown); + + SubscribeLocalEvent<SiliconChargerComponent, StorageAfterOpenEvent>(HandleStateOpen); + SubscribeLocalEvent<SiliconChargerComponent, StorageAfterCloseEvent>(HandleStateClose); + } + + // TODO: Potentially refactor this so it chaches all found entities upon the storage being closed, or stepped on, etc. + // Perhaps a variable for it? Open chargers like the pad wouldn't update to things picked up, but it seems silly to redo it each frame for closed ones. + private void HandleStateOpen(EntityUid uid, SiliconChargerComponent component, ref StorageAfterOpenEvent _) + { + UpdateState(uid, component); + } + + /// <inheritdoc cref="HandleStateOpen"/> + private void HandleStateClose(EntityUid uid, SiliconChargerComponent component, ref StorageAfterCloseEvent _) + { + UpdateState(uid, component); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + #region Entity Storage Chargers + // Check for any chargers with the EntityStorageComponent. + var entityStorageQuery = EntityQueryEnumerator<SiliconChargerComponent, EntityStorageComponent>(); + while (entityStorageQuery.MoveNext(out var uid, out var chargerComp, out var entStorage)) + { + var wasActive = chargerComp.Active; + chargerComp.Active = false; + + if (TryComp<ApcPowerReceiverComponent>(uid, out var powerComp) && !powerComp.Powered) + { + if (chargerComp.Active != wasActive) + UpdateState(uid, chargerComp); + + continue; + } + + foreach (var entity in entStorage.Contents.ContainedEntities) + { + chargerComp.Active = true; + + var chargeRate = chargerComp.ChargeMulti * frameTime * 10; + + HandleChargingEntity(entity, chargeRate, chargerComp, uid, frameTime); + + // Heat up the air in the charger. + if (entStorage.Airtight) + { + var curTemp = entStorage.Air.Temperature; + + entStorage.Air.Temperature += curTemp < chargerComp.TargetTemp ? frameTime * chargerComp.ChargeMulti / 100 : 0; + } + } + + if (chargerComp.Active != wasActive) + UpdateState(uid, chargerComp); + } + #endregion Entity Storage Chargers + + #region Step Trigger Chargers + // Check for any chargers with the StepTriggerComponent. + var stepQuery = EntityQueryEnumerator<SiliconChargerComponent, StepTriggerComponent>(); + while (stepQuery.MoveNext(out var uid, out var chargerComp, out _)) + { + if (chargerComp.PresentEntities.Count == 0 || + TryComp<ApcPowerReceiverComponent>(uid, out var powerComp) && !powerComp.Powered) + { + if (chargerComp.Active) + { + chargerComp.Active = false; + UpdateState(uid, chargerComp); + } + continue; + } + + if (!chargerComp.Active) + { + chargerComp.Active = true; + UpdateState(uid, chargerComp); + } + + var chargeRate = frameTime * chargerComp.ChargeMulti / chargerComp.PresentEntities.Count; + + foreach (var entity in chargerComp.PresentEntities.ToList()) + { + HandleChargingEntity(entity, chargeRate, chargerComp, uid, frameTime); + } + } + #endregion Step Trigger Chargers + } + + // Cleanup the sound stream when the charger is destroyed. + private void OnChargerShutdown(EntityUid uid, SiliconChargerComponent component, ComponentShutdown args) + { + //component.SoundStream?.Stop(); /// modern.df ipc-locale + } + + /// <summary> + /// Handles working out what entities need to have their batteries charged, or be burnt. + /// </summary> + private void HandleChargingEntity(EntityUid entity, float chargeRate, SiliconChargerComponent chargerComp, EntityUid chargerUid, float frameTime, bool burn = true) + { + var entitiesToCharge = SearchThroughEntities(entity, burn); + + if (entitiesToCharge.Count == 0) + return; + + chargeRate *= chargerComp.PartsChargeMulti; + + var entitiesToChargeCount = entitiesToCharge.Count; + + foreach (var (entityToCharge, batteryComp) in entitiesToCharge.ToList()) + { + if (batteryComp != null && batteryComp.CurrentCharge >= batteryComp.MaxCharge) + entitiesToChargeCount--; // Remove any full batteries from the count, so they don't impact charge rate. + } + + // Now we charge the entities we found. + chargeRate /= entitiesToChargeCount; + + foreach (var (entityToCharge, batteryComp) in entitiesToCharge.ToList()) + { + if (batteryComp != null) + ChargeBattery(entityToCharge, batteryComp, chargeRate, chargerComp, chargerUid); + else if (TryComp<DamageableComponent>(entityToCharge, out var damageComp)) + BurnEntity(entityToCharge, damageComp, frameTime, chargerComp, chargerUid); + } + } + + private List<(EntityUid, BatteryComponent?)> SearchThroughEntities(EntityUid entity, bool burn = true) + { + var entitiesToCharge = new List<(EntityUid, BatteryComponent?)>(); + + // If the given entity is a silicon, charge their respective battery. + if (_silicon.TryGetSiliconBattery(entity, out var siliconBatteryComp, out var siliconBatteryUid)) + { + entitiesToCharge.Add((siliconBatteryUid, siliconBatteryComp)); + } + + // Or if the given entity has a battery, charge it. + else if (!HasComp<UnremoveableComponent>(entity) && // Should probably be charged by the entity holding it. Might be too small to be safe. + TryComp<BatteryComponent>(entity, out var batteryComp)) + { + entitiesToCharge.Add((entity, batteryComp)); + } + + // Or if the given entity contains a battery, charge it. + else if (!HasComp<UnremoveableComponent>(entity) && // Should probably be charged by the entity holding it. Might be too small to be safe. + TryComp<PowerCellSlotComponent>(entity, out var cellSlotComp) && + _itemSlots.TryGetSlot(entity, cellSlotComp.CellSlotId, out var slot) && + TryComp<BatteryComponent>(slot.Item, out var cellBattComp)) + { + entitiesToCharge.Add((slot.Item.Value, cellBattComp)); + } + + // Or if the given entity is fleshy, burn the fucker. + else if (burn && + TryComp<DamageableComponent>(entity, out var damageComp) && + damageComp.DamageContainerID == "Biological") + { + entitiesToCharge.Add((entity, null)); + } + + // Now the weird part, we check for any inventories the entities contained may have, and run this function on any entities contained, for a recursive charging effect. + if (TryComp<HandsComponent>(entity, out var handsComp)) + { + foreach (var heldEntity in _hands.EnumerateHeld(entity, handsComp)) + { + entitiesToCharge.AddRange(SearchThroughEntities(heldEntity)); + } + } + if (TryComp<InventoryComponent>(entity, out var inventoryComp)) + { + if (_inventory.TryGetSlots(entity, out var slots)) + { + foreach (var slot in slots) + { + if (_inventory.TryGetSlotEntity(entity, slot.Name, out var slotItem)) + entitiesToCharge.AddRange(SearchThroughEntities(slotItem.Value)); + } + } + } + /// modern.df ipc-locale + /* + if (TryComp<ServerStorageComponent>(entity, out var storageComp)) + { + foreach (var containedEntity in storageComp.StoredEntities!) + { + entitiesToCharge.AddRange(SearchThroughEntities(containedEntity)); + } + } + */ + if (TryComp<EntityStorageComponent>(entity, out var entStorage)) + { + foreach (var containedEntity in entStorage.Contents.ContainedEntities) + { + entitiesToCharge.AddRange(SearchThroughEntities(containedEntity)); + } + } + + return entitiesToCharge; + } + + private void ChargeBattery(EntityUid entity, BatteryComponent batteryComp, float chargeRate, SiliconChargerComponent chargerComp, EntityUid chargerUid) + { + // Do some math so a charger never charges a battery from zero to full in less than the minimum time, just for the effect of it. + if (chargerComp.ChargeMulti * 10 > batteryComp.MaxCharge / chargerComp.MinChargeTime) + chargeRate /= chargerComp.ChargeMulti * 10 / (batteryComp.MaxCharge / chargerComp.MinChargeTime); + + if (batteryComp.CurrentCharge + chargeRate < batteryComp.MaxCharge) + _battery.SetCharge(entity, batteryComp.CurrentCharge + chargeRate, batteryComp); + else + _battery.SetCharge(entity, batteryComp.MaxCharge, batteryComp); + + // If the battery is too small, explode it. + if ((batteryComp.MaxCharge - batteryComp.CurrentCharge) * 1.2 + batteryComp.MaxCharge < chargerComp.MinChargeSize) + { + if (TryComp<ExplosiveComponent>(entity, out var explosiveComp)) + _explosion.TriggerExplosive(entity, explosiveComp); + else + _explosion.QueueExplosion(entity, "Default", batteryComp.MaxCharge / 50, 1.5f, 200, user: chargerUid); + } + } + + private void BurnEntity(EntityUid entity, DamageableComponent damageComp, float frameTime, SiliconChargerComponent chargerComp, EntityUid chargerUid) + { + var damage = new DamageSpecifier(_prototypes.Index<DamageTypePrototype>(chargerComp.DamageType), frameTime * chargerComp.ChargeMulti / 100); + var damageDealt = _damageable.TryChangeDamage(entity, damage, false, true, damageComp, chargerUid); + + if (damageDealt != null && chargerComp.WarningTime < _timing.CurTime) + { + var popupBurn = Loc.GetString(chargerComp.OverheatString); + _popup.PopupEntity(popupBurn, entity, entity, PopupType.MediumCaution); + + chargerComp.WarningTime = TimeSpan.FromSeconds(_random.Next(3, 7)) + _timing.CurTime; + } + } + + // private void OnRefreshParts(EntityUid uid, SiliconChargerComponent component, RefreshPartsEvent args) + // { + // var chargeMod = args.PartRatings[component.ChargeSpeedPart]; + // var efficiencyMod = args.PartRatings[component.ChargeEfficiencyPart]; + + // component.PartsChargeMulti = chargeMod * component.UpgradePartsMulti; + // // TODO: Variable power draw, with efficiency. + // } + + // private void OnExamineParts(EntityUid uid, SiliconChargerComponent component, UpgradeExamineEvent args) + // { + // args.AddPercentageUpgrade("silicon-charger-chargerate-string", component.PartsChargeMulti); + // // TODO: Variable power draw, with efficiency. + // } + + #region Charger specific + #region Step Trigger Chargers + // When an entity starts colliding with the charger, add it to the list of entities present on the charger if it has the StepTriggerComponent. + private void OnStartCollide(EntityUid uid, SiliconChargerComponent component, ref StartCollideEvent args) + { + if (!HasComp<StepTriggerComponent>(uid)) + return; + + var target = args.OtherEntity; + + if (component.PresentEntities.Contains(target)) + return; + + if (component.PresentEntities.Count >= component.MaxEntities) + { + _popup.PopupEntity(Loc.GetString("silicon-charger-list-full", ("charger", args.OurEntity)), target, target); + return; + } + + component.PresentEntities.Add(target); + } + + // When an entity stops colliding with the charger, remove it from the list of entities present on the charger. + private void OnEndCollide(EntityUid uid, SiliconChargerComponent component, ref EndCollideEvent args) + { + if (!HasComp<StepTriggerComponent>(uid)) + return; + + var target = args.OtherEntity; + + if (component.PresentEntities.Contains(target)) + { + component.PresentEntities.Remove(target); + } + } + #endregion Step Trigger Chargers + #endregion Charger specific + + public void UpdateState(EntityUid uid, SiliconChargerComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.Active) + { + _appearance.SetData(uid, PowerDeviceVisuals.VisualState, SiliconChargerVisualState.Charging); + + // If we're in prediction, return since Client doesn't have the information needed to handle this. + // Didn't seem to matter in practice, but probably for the best. + if (_timing.InPrediction) + return; + + //if (component.SoundLoop != null && component.SoundStream == null) + // component.SoundStream = + // _audio.PlayPvs(component.SoundLoop, uid, AudioParams.Default.WithLoop(true).WithMaxDistance(5)); + } + else + { + var state = SiliconChargerVisualState.Normal; + + if (EntityManager.TryGetComponent<EntityStorageComponent>(uid, out var storageComp) && storageComp.Open) + state = SiliconChargerVisualState.NormalOpen; + + _appearance.SetData(uid, PowerDeviceVisuals.VisualState, state); + + // If we're in prediction, return since Client doesn't have the information needed to handle this. + // Didn't seem to matter in practice, but probably for the best. + if (_timing.InPrediction) + return; + + //component.SoundStream?.Stop(); + //component.SoundStream = null; + } + } +} diff --git a/Content.Server/ADT/Silicon/Systems/SiliconEmpSystem.cs b/Content.Server/ADT/Silicon/Systems/SiliconEmpSystem.cs new file mode 100644 index 00000000000..9c76895e91b --- /dev/null +++ b/Content.Server/ADT/Silicon/Systems/SiliconEmpSystem.cs @@ -0,0 +1,71 @@ +// Simple Station + +using Content.Server.Emp; +using Content.Server.Speech.Muting; +using Content.Server.Stunnable; +using Content.Shared.CombatMode.Pacification; +using Content.Shared.Eye.Blinding.Components; +using Content.Shared.Eye.Blinding.Systems; +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.ADT.Silicon.Systems; +using Content.Shared.Speech.EntitySystems; +using Content.Shared.Speech.Muting; +using Content.Shared.StatusEffect; +using Robust.Shared.Random; + +namespace Content.Server.ADT.Silicon.Systems; + +public sealed class SiliconEmpSystem : EntitySystem +{ + [Dependency] private readonly StatusEffectsSystem _status = default!; + [Dependency] private readonly StunSystem _stun = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedStutteringSystem _stuttering = default!; + [Dependency] private readonly SharedSlurredSystem _slurredSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<SiliconComponent, EmpPulseEvent>(OnEmpPulse); + } + + private void OnEmpPulse(EntityUid uid, SiliconComponent component, ref EmpPulseEvent args) + { + args.EnergyConsumption *= 0.25f; // EMPs drain a lot of freakin power. + + if (!TryComp<StatusEffectsComponent>(uid, out var statusComp)) + return; + + args.Affected = true; + args.Disabled = true; + + var duration = args.Duration / 1.5; // We divide the duration since EMPs are balanced for structures, not people. + + if (duration.TotalSeconds * 0.25 >= 3) // If the EMP blast is strong enough, we stun them. + // This is mostly to prevent flickering in/out of being stunned. We also cap how long they can be stunned for. + { + _stun.TryParalyze(uid, TimeSpan.FromSeconds(Math.Min(duration.TotalSeconds * 0.25f, 15f)), true, statusComp); + } + + _stun.TrySlowdown(uid, duration, true, _random.NextFloat(0.50f, 0.70f), _random.NextFloat(0.35f, 0.70f), statusComp); + + _status.TryAddStatusEffect<SeeingStaticComponent>(uid, SharedSeeingStaticSystem.StaticKey, duration, true, statusComp); + + if (_random.Prob(0.60f)) + _stuttering.DoStutter(uid, duration * 2, false, statusComp); + else if (_random.Prob(0.80f)) + _slurredSystem.DoSlur(uid, duration * 2, statusComp); + + if (_random.Prob(0.02f)) + _status.TryAddStatusEffect<MutedComponent>(uid, "Muted", duration * 0.5, true, statusComp); + + if (_random.Prob(0.02f)) + _status.TryAddStatusEffect<TemporaryBlindnessComponent>(uid, TemporaryBlindnessSystem.BlindingStatusEffect, duration * 0.5, true, statusComp); + + if (_random.Prob(0.08f)) + _status.TryAddStatusEffect<PacifiedComponent>(uid, "Pacified", duration * 0.5, true, statusComp); + + args.EnergyConsumption = 0; + } +} diff --git a/Content.Server/ADT/Silicon/Systems/SiliconMiscSystem.cs b/Content.Server/ADT/Silicon/Systems/SiliconMiscSystem.cs new file mode 100644 index 00000000000..f4b37888149 --- /dev/null +++ b/Content.Server/ADT/Silicon/Systems/SiliconMiscSystem.cs @@ -0,0 +1,43 @@ +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.Bed.Sleep; +using static Content.Shared.Repairable.SharedRepairableSystem; +using Content.Server.Body.Components; +using Content.Server.Body.Systems; + +namespace Content.Server.ADT.Silicon.Sytstems; + +public sealed class SiliconMiscSystem : EntitySystem +{ + [Dependency] private readonly BloodstreamSystem _blood = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<SiliconComponent, TryingToSleepEvent>(OnTryingToSleep); + //SubscribeLocalEvent<SiliconComponent, RepairFinishedEvent>(OnRepairFinished); + } + + /// <summary> + /// Stops Silicons from being capable of sleeping. + /// </summary> + /// <remarks> + /// This is stupid. + /// </remarks> + private void OnTryingToSleep(EntityUid uid, SiliconComponent component, ref TryingToSleepEvent args) + { + args.Cancelled = true; + } + + /// <summary> + /// Ensure Silicons stop bleeding when repaired, if they can bleed. + /// </summary> + //private void OnRepairFinished(EntityUid uid, SiliconComponent component, RepairFinishedEvent args) + //{ + // if (TryComp<BloodstreamComponent>(uid, out var bloodComp)) + // { + // _blood.TryModifyBleedAmount(uid, -bloodComp.BleedAmount, bloodComp); + // } + //} + +} diff --git a/Content.Server/Access/LogWireAction.cs b/Content.Server/Access/LogWireAction.cs index 1e97d5c9d67..837cf420d5e 100644 --- a/Content.Server/Access/LogWireAction.cs +++ b/Content.Server/Access/LogWireAction.cs @@ -25,7 +25,7 @@ public sealed partial class LogWireAction : ComponentWireAction<AccessReaderComp return comp.LoggingDisabled ? StatusLightState.Off : StatusLightState.On; } - public override object StatusKey => AccessWireActionKey.Status; + public override object StatusKey => LogWireActionKey.Status; public override void Initialize() { diff --git a/Content.Server/Administration/Commands/JobWhitelistCommands.cs b/Content.Server/Administration/Commands/JobWhitelistCommands.cs index a84a11ef848..e604417f920 100644 --- a/Content.Server/Administration/Commands/JobWhitelistCommands.cs +++ b/Content.Server/Administration/Commands/JobWhitelistCommands.cs @@ -47,7 +47,7 @@ public override async void Execute(IConsoleShell shell, string argStr, string[] var isWhitelisted = await _db.IsJobWhitelisted(guid, job); if (isWhitelisted) { - shell.WriteLine(Loc.GetString("cmd-jobwhitelist-already-whitelisted", + shell.WriteLine(Loc.GetString("cmd-jobwhitelistadd-already-whitelisted", ("player", player), ("jobId", job.Id), ("jobName", jobPrototype.LocalizedName))); diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index 15d8d4afb7b..bf3cc79c4ad 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -12,6 +12,9 @@ using Robust.Shared.Console; using Robust.Shared.Player; using Robust.Shared.Prototypes; +using Content.Shared.Radio.Components; // Parkstation-IPC +using Content.Shared.Containers; // Parkstation-IPC +using Robust.Shared.Containers; // Parkstation-IPC namespace Content.Server.Administration.Commands { @@ -127,6 +130,36 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit } } + // Parkstation-Ipc-Start + // Pretty much copied from StationSpawningSystem.SpawnStartingGear + if (entityManager.TryGetComponent<EncryptionKeyHolderComponent>(target, out var keyHolderComp)) + { + var earEquipString = startingGear.GetGear("ears"); + var containerMan = entityManager.System<SharedContainerSystem>(); + + if (!string.IsNullOrEmpty(earEquipString)) + { + var earEntity = entityManager.SpawnEntity(earEquipString, entityManager.GetComponent<TransformComponent>(target).Coordinates); + + if (entityManager.TryGetComponent<EncryptionKeyHolderComponent>(earEntity, out _) && // I had initially wanted this to spawn the headset, and simply move all the keys over, but the headset didn't seem to have any keys in it when spawned... + entityManager.TryGetComponent<ContainerFillComponent>(earEntity, out var fillComp) && + fillComp.Containers.TryGetValue(EncryptionKeyHolderComponent.KeyContainerName, out var defaultKeys)) + { + containerMan.CleanContainer(keyHolderComp.KeyContainer); + + foreach (var key in defaultKeys) + { + var keyEntity = entityManager.SpawnEntity(key, entityManager.GetComponent<TransformComponent>(target).Coordinates); + containerMan.Insert(keyEntity, keyHolderComp.KeyContainer); + //keyHolderComp.KeyContainer.Insert(keyEntity, force: true); + } + } + + entityManager.QueueDeleteEntity(earEntity); + } + } + // Parkstation-Ipc-End + return true; } } diff --git a/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs b/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs index 0384e069561..3de5d98a81a 100644 --- a/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs +++ b/Content.Server/Administration/Logs/Converters/EntityCoordinatesConverter.cs @@ -1,5 +1,5 @@ using System.Text.Json; -using Content.Server.Station.Components; +using Content.Shared.Station.Components; using Robust.Shared.Map; using Robust.Shared.Map.Components; diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index eb21662719e..1f5abf6726b 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs @@ -285,18 +285,18 @@ private void AddSmiteVerbs(GetVerbsEvent<Verb> args) { Text = "admin-smite-remove-hands-name", Category = VerbCategory.Smite, - Icon = new SpriteSpecifier.Rsi(new ("/Textures/Fluids/vomit_toxin.rsi"), "vomit_toxin-1"), + Icon = new SpriteSpecifier.Rsi(new("/Textures/Fluids/vomit_toxin.rsi"), "vomit_toxin-1"), Act = () => { _vomitSystem.Vomit(args.Target, -1000, -1000); // You feel hollow! - var organs = _bodySystem.GetBodyOrganComponents<TransformComponent>(args.Target, body); + var organs = _bodySystem.GetBodyOrganEntityComps<TransformComponent>((args.Target, body)); var baseXform = Transform(args.Target); - foreach (var (xform, organ) in organs) + foreach (var organ in organs) { - if (HasComp<BrainComponent>(xform.Owner) || HasComp<EyeComponent>(xform.Owner)) + if (HasComp<BrainComponent>(organ.Owner) || HasComp<EyeComponent>(organ.Owner)) continue; - _transformSystem.AttachToGridOrMap(organ.Owner); + _transformSystem.PlaceNextTo((organ.Owner, organ.Comp1), (args.Target, baseXform)); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-vomit-organs-self"), args.Target, @@ -361,9 +361,9 @@ private void AddSmiteVerbs(GetVerbsEvent<Verb> args) Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "stomach"), Act = () => { - foreach (var (component, _) in _bodySystem.GetBodyOrganComponents<StomachComponent>(args.Target, body)) + foreach (var entity in _bodySystem.GetBodyOrganEntityComps<StomachComponent>((args.Target, body))) { - QueueDel(component.Owner); + QueueDel(entity.Owner); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-stomach-removal-self"), args.Target, @@ -381,9 +381,9 @@ private void AddSmiteVerbs(GetVerbsEvent<Verb> args) Icon = new SpriteSpecifier.Rsi(new ("/Textures/Mobs/Species/Human/organs.rsi"), "lung-r"), Act = () => { - foreach (var (component, _) in _bodySystem.GetBodyOrganComponents<LungComponent>(args.Target, body)) + foreach (var entity in _bodySystem.GetBodyOrganEntityComps<LungComponent>((args.Target, body))) { - QueueDel(component.Owner); + QueueDel(entity.Owner); } _popupSystem.PopupEntity(Loc.GetString("admin-smite-lung-removal-self"), args.Target, diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index d7888b491c3..3c8f7cd553c 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -180,7 +180,7 @@ private void AddAdminVerbs(GetVerbsEvent<Verb> args) if (targetMind != null) { - _mindSystem.TransferTo(targetMind.Value, mobUid); + _mindSystem.TransferTo(targetMind.Value, mobUid, true); } }, ConfirmationPopup = true, diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 827a9944752..a9a994d716f 100644 --- a/Content.Server/Administration/Systems/BwoinkSystem.cs +++ b/Content.Server/Administration/Systems/BwoinkSystem.cs @@ -7,11 +7,13 @@ using System.Threading.Tasks; using Content.Server.Administration.Managers; using Content.Server.Afk; +using Content.Server.Database; using Content.Server.Discord; using Content.Server.GameTicking; using Content.Server.Players.RateLimiting; using Content.Shared.Administration; using Content.Shared.CCVar; +using Content.Shared.GameTicking; using Content.Shared.Mind; using JetBrains.Annotations; using Robust.Server.Player; @@ -38,6 +40,7 @@ public sealed partial class BwoinkSystem : SharedBwoinkSystem [Dependency] private readonly GameTicker _gameTicker = default!; [Dependency] private readonly SharedMindSystem _minds = default!; [Dependency] private readonly IAfkManager _afkManager = default!; + [Dependency] private readonly IServerDbManager _dbManager = default!; [Dependency] private readonly PlayerRateLimitManager _rateLimit = default!; [GeneratedRegex(@"^https://discord\.com/api/webhooks/(\d+)/((?!.*/).*)$")] @@ -50,7 +53,11 @@ public sealed partial class BwoinkSystem : SharedBwoinkSystem private string _footerIconUrl = string.Empty; private string _avatarUrl = string.Empty; private string _serverName = string.Empty; - private readonly Dictionary<NetUserId, (string? id, string username, string description, string? characterName, GameRunLevel lastRunLevel)> _relayMessages = new(); + + private readonly + Dictionary<NetUserId, (string? id, string username, string description, string? characterName, GameRunLevel + lastRunLevel)> _relayMessages = new(); + private Dictionary<NetUserId, string> _oldMessageIds = new(); private readonly Dictionary<NetUserId, Queue<string>> _messageQueues = new(); private readonly HashSet<NetUserId> _processingChannels = new(); @@ -69,6 +76,7 @@ public sealed partial class BwoinkSystem : SharedBwoinkSystem private const string TooLongText = "... **(too long)**"; private int _maxAdditionalChars; + private readonly Dictionary<NetUserId, DateTime> _activeConversations = new(); public override void Initialize() { @@ -79,13 +87,22 @@ public override void Initialize() Subs.CVar(_config, CVars.GameHostName, OnServerNameChanged, true); Subs.CVar(_config, CCVars.AdminAhelpOverrideClientName, OnOverrideChanged, true); _sawmill = IoCManager.Resolve<ILogManager>().GetSawmill("AHELP"); - _maxAdditionalChars = GenerateAHelpMessage("", "", true, _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), _gameTicker.RunLevel, playedSound: false).Length; + var defaultParams = new AHelpMessageParams( + string.Empty, + string.Empty, + true, + _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), + _gameTicker.RunLevel, + playedSound: false + ); + _maxAdditionalChars = GenerateAHelpMessage(defaultParams).Length; _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; SubscribeLocalEvent<GameRunLevelChangedEvent>(OnGameRunLevelChanged); SubscribeNetworkEvent<BwoinkClientTypingUpdated>(OnClientTypingUpdated); + SubscribeLocalEvent<RoundRestartCleanupEvent>(_ => _activeConversations.Clear()); - _rateLimit.Register( + _rateLimit.Register( RateLimitKey, new RateLimitRegistration { @@ -107,14 +124,129 @@ private void OnOverrideChanged(string obj) _overrideClientName = obj; } - private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) + private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) { + if (e.NewStatus == SessionStatus.Disconnected) + { + if (_activeConversations.TryGetValue(e.Session.UserId, out var lastMessageTime)) + { + var timeSinceLastMessage = DateTime.Now - lastMessageTime; + if (timeSinceLastMessage > TimeSpan.FromMinutes(5)) + { + _activeConversations.Remove(e.Session.UserId); + return; // Do not send disconnect message if timeout exceeded + } + } + + // Check if the user has been banned + var ban = await _dbManager.GetServerBanAsync(null, e.Session.UserId, null); + if (ban != null) + { + var banMessage = Loc.GetString("bwoink-system-player-banned", ("banReason", ban.Reason)); + NotifyAdmins(e.Session, banMessage, PlayerStatusType.Banned); + _activeConversations.Remove(e.Session.UserId); + return; + } + } + + // Notify all admins if a player disconnects or reconnects + var message = e.NewStatus switch + { + SessionStatus.Connected => Loc.GetString("bwoink-system-player-reconnecting"), + SessionStatus.Disconnected => Loc.GetString("bwoink-system-player-disconnecting"), + _ => null + }; + + if (message != null) + { + var statusType = e.NewStatus == SessionStatus.Connected + ? PlayerStatusType.Connected + : PlayerStatusType.Disconnected; + NotifyAdmins(e.Session, message, statusType); + } + if (e.NewStatus != SessionStatus.InGame) return; RaiseNetworkEvent(new BwoinkDiscordRelayUpdated(!string.IsNullOrWhiteSpace(_webhookUrl)), e.Session); } + private void NotifyAdmins(ICommonSession session, string message, PlayerStatusType statusType) + { + if (!_activeConversations.ContainsKey(session.UserId)) + { + // If the user is not part of an active conversation, do not notify admins. + return; + } + + // Get the current timestamp + var timestamp = DateTime.Now.ToString("HH:mm:ss"); + var roundTime = _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"); + + // Determine the icon based on the status type + string icon = statusType switch + { + PlayerStatusType.Connected => ":green_circle:", + PlayerStatusType.Disconnected => ":red_circle:", + PlayerStatusType.Banned => ":no_entry:", + _ => ":question:" + }; + + // Create the message parameters for Discord + var messageParams = new AHelpMessageParams( + session.Name, + message, + true, + roundTime, + _gameTicker.RunLevel, + playedSound: true, + icon: icon + ); + + // Create the message for in-game with username + var color = statusType switch + { + PlayerStatusType.Connected => Color.Green.ToHex(), + PlayerStatusType.Disconnected => Color.Yellow.ToHex(), + PlayerStatusType.Banned => Color.Orange.ToHex(), + _ => Color.Gray.ToHex(), + }; + var inGameMessage = $"[color={color}]{session.Name} {message}[/color]"; + + var bwoinkMessage = new BwoinkTextMessage( + userId: session.UserId, + trueSender: SystemUserId, + text: inGameMessage, + sentAt: DateTime.Now, + playSound: false + ); + + var admins = GetTargetAdmins(); + foreach (var admin in admins) + { + RaiseNetworkEvent(bwoinkMessage, admin); + } + + // Enqueue the message for Discord relay + if (_webhookUrl != string.Empty) + { + // if (!_messageQueues.ContainsKey(session.UserId)) + // _messageQueues[session.UserId] = new Queue<string>(); + // + // var escapedText = FormattedMessage.EscapeText(message); + // messageParams.Message = escapedText; + // + // var discordMessage = GenerateAHelpMessage(messageParams); + // _messageQueues[session.UserId].Enqueue(discordMessage); + + var queue = _messageQueues.GetOrNew(session.UserId); + var escapedText = FormattedMessage.EscapeText(message); + messageParams.Message = escapedText; + var discordMessage = GenerateAHelpMessage(messageParams); + queue.Enqueue(discordMessage); + } + } + private void OnGameRunLevelChanged(GameRunLevelChangedEvent args) { // Don't make a new embed if we @@ -209,7 +341,8 @@ private async Task SetWebhookData(string id, string token) var content = await response.Content.ReadAsStringAsync(); if (!response.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when trying to get webhook data (perhaps the webhook URL is invalid?): {response.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when trying to get webhook data (perhaps the webhook URL is invalid?): {response.StatusCode}\nResponse: {content}"); return; } @@ -233,7 +366,7 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) // Whether the message will become too long after adding these new messages var tooLong = exists && messages.Sum(msg => Math.Min(msg.Length, MessageLengthCap) + "\n".Length) - + existingEmbed.description.Length > DescriptionMax; + + existingEmbed.description.Length > DescriptionMax; // If there is no existing embed, or it is getting too long, we create a new embed if (!exists || tooLong) @@ -242,7 +375,8 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) if (lookup == null) { - _sawmill.Log(LogLevel.Error, $"Unable to find player for NetUserId {userId} when sending discord webhook."); + _sawmill.Log(LogLevel.Error, + $"Unable to find player for NetUserId {userId} when sending discord webhook."); _relayMessages.Remove(userId); return; } @@ -254,11 +388,13 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) { if (tooLong && existingEmbed.id != null) { - linkToPrevious = $"**[Go to previous embed of this round](https://discord.com/channels/{guildId}/{channelId}/{existingEmbed.id})**\n"; + linkToPrevious = + $"**[Go to previous embed of this round](https://discord.com/channels/{guildId}/{channelId}/{existingEmbed.id})**\n"; } else if (_oldMessageIds.TryGetValue(userId, out var id) && !string.IsNullOrEmpty(id)) { - linkToPrevious = $"**[Go to last round's conversation with this player](https://discord.com/channels/{guildId}/{channelId}/{id})**\n"; + linkToPrevious = + $"**[Go to last round's conversation with this player](https://discord.com/channels/{guildId}/{channelId}/{id})**\n"; } } @@ -274,7 +410,8 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) GameRunLevel.PreRoundLobby => "\n\n:arrow_forward: _**Pre-round lobby started**_\n", GameRunLevel.InRound => "\n\n:arrow_forward: _**Round started**_\n", GameRunLevel.PostRound => "\n\n:stop_button: _**Post-round started**_\n", - _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), $"{_gameTicker.RunLevel} was not matched."), + _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), + $"{_gameTicker.RunLevel} was not matched."), }; existingEmbed.lastRunLevel = _gameTicker.RunLevel; @@ -290,7 +427,9 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) existingEmbed.description += $"\n{message}"; } - var payload = GeneratePayload(existingEmbed.description, existingEmbed.username, existingEmbed.characterName); + var payload = GeneratePayload(existingEmbed.description, + existingEmbed.username, + existingEmbed.characterName); // If there is no existing embed, create a new one // Otherwise patch (edit) it @@ -302,7 +441,8 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) var content = await request.Content.ReadAsStringAsync(); if (!request.IsSuccessStatusCode) { - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when posting message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when posting message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); _relayMessages.Remove(userId); return; } @@ -310,7 +450,8 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) var id = JsonNode.Parse(content)?["id"]; if (id == null) { - _sawmill.Log(LogLevel.Error, $"Could not find id in json-content returned from discord webhook: {content}"); + _sawmill.Log(LogLevel.Error, + $"Could not find id in json-content returned from discord webhook: {content}"); _relayMessages.Remove(userId); return; } @@ -325,7 +466,8 @@ private async void ProcessQueue(NetUserId userId, Queue<string> messages) if (!request.IsSuccessStatusCode) { var content = await request.Content.ReadAsStringAsync(); - _sawmill.Log(LogLevel.Error, $"Discord returned bad status code when patching message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); + _sawmill.Log(LogLevel.Error, + $"Discord returned bad status code when patching message (perhaps the message is too long?): {request.StatusCode}\nResponse: {content}"); _relayMessages.Remove(userId); return; } @@ -355,7 +497,8 @@ private WebhookPayload GeneratePayload(string messages, string username, string? : $"pre-round lobby for round {_gameTicker.RoundId + 1}", GameRunLevel.InRound => $"round {_gameTicker.RoundId}", GameRunLevel.PostRound => $"post-round {_gameTicker.RoundId}", - _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), $"{_gameTicker.RunLevel} was not matched."), + _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel), + $"{_gameTicker.RunLevel} was not matched."), }; return new WebhookPayload @@ -401,6 +544,7 @@ public override void Update(float frameTime) protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySessionEventArgs eventArgs) { base.OnBwoinkTextMessage(message, eventArgs); + _activeConversations[message.UserId] = DateTime.Now; var senderSession = eventArgs.SenderSession; // TODO: Sanitize text? @@ -422,7 +566,9 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes string bwoinkText; - if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. + if (senderAdmin is not null && + senderAdmin.Flags == + AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. { bwoinkText = $"[color=purple]{senderSession.Name}[/color]"; } @@ -461,7 +607,9 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes { string overrideMsgText; // Doing the same thing as above, but with the override name. Theres probably a better way to do this. - if (senderAdmin is not null && senderAdmin.Flags == AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. + if (senderAdmin is not null && + senderAdmin.Flags == + AdminFlags.Adminhelp) // Mentor. Not full admin. That's why it's colored differently. { overrideMsgText = $"[color=purple]{_overrideClientName}[/color]"; } @@ -476,7 +624,11 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes overrideMsgText = $"{(message.PlaySound ? "" : "(S) ")}{overrideMsgText}: {escapedText}"; - RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, senderSession.UserId, overrideMsgText, playSound: playSound), session.Channel); + RaiseNetworkEvent(new BwoinkTextMessage(message.UserId, + senderSession.UserId, + overrideMsgText, + playSound: playSound), + session.Channel); } else RaiseNetworkEvent(msg, session.Channel); @@ -496,8 +648,18 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes { str = str[..(DescriptionMax - _maxAdditionalChars - unameLength)]; } + var nonAfkAdmins = GetNonAfkAdmins(); - _messageQueues[msg.UserId].Enqueue(GenerateAHelpMessage(senderSession.Name, str, !personalChannel, _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), _gameTicker.RunLevel, playedSound: playSound, noReceivers: nonAfkAdmins.Count == 0)); + var messageParams = new AHelpMessageParams( + senderSession.Name, + str, + !personalChannel, + _gameTicker.RoundDuration().ToString("hh\\:mm\\:ss"), + _gameTicker.RunLevel, + playedSound: playSound, + noReceivers: nonAfkAdmins.Count == 0 + ); + _messageQueues[msg.UserId].Enqueue(GenerateAHelpMessage(messageParams)); } if (admins.Count != 0 || sendsWebhook) @@ -512,7 +674,8 @@ protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySes private IList<INetChannel> GetNonAfkAdmins() { return _adminManager.ActiveAdmins - .Where(p => (_adminManager.GetAdminData(p)?.HasFlag(AdminFlags.Adminhelp) ?? false) && !_afkManager.IsAfk(p)) + .Where(p => (_adminManager.GetAdminData(p)?.HasFlag(AdminFlags.Adminhelp) ?? false) && + !_afkManager.IsAfk(p)) .Select(p => p.Channel) .ToList(); } @@ -525,25 +688,69 @@ private IList<INetChannel> GetTargetAdmins() .ToList(); } - private static string GenerateAHelpMessage(string username, string message, bool admin, string roundTime, GameRunLevel roundState, bool playedSound, bool noReceivers = false) + private static string GenerateAHelpMessage(AHelpMessageParams parameters) { var stringbuilder = new StringBuilder(); - if (admin) + if (parameters.Icon != null) + stringbuilder.Append(parameters.Icon); + else if (parameters.IsAdmin) stringbuilder.Append(":outbox_tray:"); - else if (noReceivers) + else if (parameters.NoReceivers) stringbuilder.Append(":sos:"); else stringbuilder.Append(":inbox_tray:"); - if(roundTime != string.Empty && roundState == GameRunLevel.InRound) - stringbuilder.Append($" **{roundTime}**"); - if (!playedSound) + if (parameters.RoundTime != string.Empty && parameters.RoundState == GameRunLevel.InRound) + stringbuilder.Append($" **{parameters.RoundTime}**"); + if (!parameters.PlayedSound) stringbuilder.Append(" **(S)**"); - stringbuilder.Append($" **{username}:** "); - stringbuilder.Append(message); + + if (parameters.Icon == null) + stringbuilder.Append($" **{parameters.Username}:** "); + else + stringbuilder.Append($" **{parameters.Username}** "); + stringbuilder.Append(parameters.Message); return stringbuilder.ToString(); } } -} + public sealed class AHelpMessageParams + { + public string Username { get; set; } + public string Message { get; set; } + public bool IsAdmin { get; set; } + public string RoundTime { get; set; } + public GameRunLevel RoundState { get; set; } + public bool PlayedSound { get; set; } + public bool NoReceivers { get; set; } + public string? Icon { get; set; } + + public AHelpMessageParams( + string username, + string message, + bool isAdmin, + string roundTime, + GameRunLevel roundState, + bool playedSound, + bool noReceivers = false, + string? icon = null) + { + Username = username; + Message = message; + IsAdmin = isAdmin; + RoundTime = roundTime; + RoundState = roundState; + PlayedSound = playedSound; + NoReceivers = noReceivers; + Icon = icon; + } + } + + public enum PlayerStatusType + { + Connected, + Disconnected, + Banned, + } +} diff --git a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs index 434a3fef66b..9f18a412925 100644 --- a/Content.Server/Anomaly/AnomalySynchronizerSystem.cs +++ b/Content.Server/Anomaly/AnomalySynchronizerSystem.cs @@ -122,7 +122,7 @@ private void ConnectToAnomaly(Entity<AnomalySynchronizerComponent> ent, Entity<A _audio.PlayPvs(ent.Comp.ConnectedSound, ent); } - //TO DO: disconnection from the anomaly should also be triggered if the anomaly is far away from the synchronizer. + //TODO: disconnection from the anomaly should also be triggered if the anomaly is far away from the synchronizer. //Currently only bluespace anomaly can do this, but for some reason it is the only one that cannot be connected to the synchronizer. private void DisconneсtFromAnomaly(Entity<AnomalySynchronizerComponent> ent, AnomalyComponent anomaly) { diff --git a/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs index 0e49c5ee56b..d289fdabff8 100644 --- a/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/ReagentProducerAnomalySystem.cs @@ -76,7 +76,7 @@ public override void Update(float frameTime) if (anomaly.Severity >= 0.97) reagentProducingAmount *= component.SupercriticalReagentProducingModifier; newSol.AddReagent(component.ProducingReagent, reagentProducingAmount); - _solutionContainer.TryAddSolution(component.Solution.Value, newSol); //TO DO - the container is not fully filled. + _solutionContainer.TryAddSolution(component.Solution.Value, newSol); // TODO - the container is not fully filled. component.AccumulatedFrametime = 0; diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index d2bc26f20d3..c9ef2374740 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -336,7 +336,7 @@ public void MakeAntag(Entity<AntagSelectionComponent> ent, ICommonSession? sessi } _mind.TransferTo(curMind.Value, antagEnt, ghostCheckOverride: true); - _role.MindAddRoles(curMind.Value, def.MindComponents); + _role.MindAddRoles(curMind.Value, def.MindComponents, null, true); ent.Comp.SelectedMinds.Add((curMind.Value, Name(player))); SendBriefing(session, def.Briefing); } diff --git a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs index cd22f1f6d31..943fb75525c 100644 --- a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs +++ b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs @@ -157,7 +157,7 @@ private void InputTick(float frameTime) /// <param name="message">The message to broadcase to all players/spectators.</param> private void SendMessage(BoundUserInterfaceMessage message) { - _uiSystem.ServerSendUiMessage(_entityManager.GetEntity(message.Entity), BlockGameUiKey.Key, message); + _uiSystem.ServerSendUiMessage(_owner, BlockGameUiKey.Key, message); } /// <summary> @@ -167,7 +167,7 @@ private void SendMessage(BoundUserInterfaceMessage message) /// <param name="actor">The target recipient.</param> private void SendMessage(BoundUserInterfaceMessage message, EntityUid actor) { - _uiSystem.ServerSendUiMessage(_entityManager.GetEntity(message.Entity), BlockGameUiKey.Key, message, actor); + _uiSystem.ServerSendUiMessage(_owner, BlockGameUiKey.Key, message, actor); } /// <summary> diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs index a6b61da591f..710b0678a59 100644 --- a/Content.Server/Bed/BedSystem.cs +++ b/Content.Server/Bed/BedSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Mobs.Systems; using Robust.Shared.Timing; using Robust.Shared.Utility; +using Content.Shared.ADT.Silicon.Components; // Parkstation-IPCs // I shouldn't have to modify this. namespace Content.Server.Bed { @@ -69,7 +70,7 @@ public override void Update(float frameTime) foreach (var healedEntity in strapComponent.BuckledEntities) { - if (_mobStateSystem.IsDead(healedEntity)) + if (_mobStateSystem.IsDead(healedEntity) || HasComp<SiliconComponent>(healedEntity)) // Parkstation-IPCs // I shouldn't have to modify this. continue; var damage = bedComponent.Damage; diff --git a/Content.Server/Bible/BibleSystem.cs b/Content.Server/Bible/BibleSystem.cs index 2cb0ac1dd76..76efe3290bf 100644 --- a/Content.Server/Bible/BibleSystem.cs +++ b/Content.Server/Bible/BibleSystem.cs @@ -1,11 +1,11 @@ using Content.Server.Bible.Components; -using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; using Content.Server.Popups; using Content.Shared.ActionBlocker; using Content.Shared.Actions; using Content.Shared.Bible; using Content.Shared.Damage; +using Content.Shared.Ghost.Roles.Components; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Inventory; diff --git a/Content.Server/Body/Components/BloodstreamComponent.cs b/Content.Server/Body/Components/BloodstreamComponent.cs index a6d2afab219..2eb356dc0e9 100644 --- a/Content.Server/Body/Components/BloodstreamComponent.cs +++ b/Content.Server/Body/Components/BloodstreamComponent.cs @@ -9,10 +9,11 @@ using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; +using Content.Server.ADT.Hemophilia; namespace Content.Server.Body.Components { - [RegisterComponent, Access(typeof(BloodstreamSystem), typeof(ReactionMixerSystem))] + [RegisterComponent, Access(typeof(BloodstreamSystem), typeof(ReactionMixerSystem), (typeof(HemophiliaSystem)))] // ADT Hemophilia public sealed partial class BloodstreamComponent : Component { public static string DefaultChemicalsSolutionName = "chemicals"; diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index e10158cf357..bd5edb0ea50 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -34,7 +34,7 @@ public override void Initialize() private void OnRelayMoveInput(Entity<BodyComponent> ent, ref MoveInputEvent args) { // If they haven't actually moved then ignore it. - if ((args.Component.HeldMoveButtons & + if ((args.Entity.Comp.HeldMoveButtons & (MoveButtons.Down | MoveButtons.Left | MoveButtons.Up | MoveButtons.Right)) == 0x0) { return; diff --git a/Content.Server/Body/Systems/RespiratorSystem.cs b/Content.Server/Body/Systems/RespiratorSystem.cs index 5fbd0c48147..45074dc8260 100644 --- a/Content.Server/Body/Systems/RespiratorSystem.cs +++ b/Content.Server/Body/Systems/RespiratorSystem.cs @@ -114,7 +114,7 @@ public void Inhale(EntityUid uid, BodyComponent? body = null) if (!Resolve(uid, ref body, logMissing: false)) return; - var organs = _bodySystem.GetBodyOrganComponents<LungComponent>(uid, body); + var organs = _bodySystem.GetBodyOrganEntityComps<LungComponent>((uid, body)); // Inhale gas var ev = new InhaleLocationEvent(); @@ -131,11 +131,11 @@ public void Inhale(EntityUid uid, BodyComponent? body = null) var lungRatio = 1.0f / organs.Count; var gas = organs.Count == 1 ? actualGas : actualGas.RemoveRatio(lungRatio); - foreach (var (lung, _) in organs) + foreach (var (organUid, lung, _) in organs) { // Merge doesn't remove gas from the giver. _atmosSys.Merge(lung.Air, gas); - _lungSystem.GasToReagent(lung.Owner, lung); + _lungSystem.GasToReagent(organUid, lung); } } @@ -144,7 +144,7 @@ public void Exhale(EntityUid uid, BodyComponent? body = null) if (!Resolve(uid, ref body, logMissing: false)) return; - var organs = _bodySystem.GetBodyOrganComponents<LungComponent>(uid, body); + var organs = _bodySystem.GetBodyOrganEntityComps<LungComponent>((uid, body)); // exhale gas @@ -161,12 +161,12 @@ public void Exhale(EntityUid uid, BodyComponent? body = null) } var outGas = new GasMixture(ev.Gas.Volume); - foreach (var (lung, _) in organs) + foreach (var (organUid, lung, _) in organs) { _atmosSys.Merge(outGas, lung.Air); lung.Air.Clear(); - if (_solutionContainerSystem.ResolveSolution(lung.Owner, lung.SolutionName, ref lung.Solution)) + if (_solutionContainerSystem.ResolveSolution(organUid, lung.SolutionName, ref lung.Solution)) _solutionContainerSystem.RemoveAllSolution(lung.Solution.Value); } @@ -201,7 +201,7 @@ public bool CanMetabolizeGas(Entity<RespiratorComponent?> ent, GasMixture gas) if (!Resolve(ent, ref ent.Comp)) return false; - var organs = _bodySystem.GetBodyOrganComponents<LungComponent>(ent); + var organs = _bodySystem.GetBodyOrganEntityComps<LungComponent>((ent, null)); if (organs.Count == 0) return false; @@ -213,7 +213,7 @@ public bool CanMetabolizeGas(Entity<RespiratorComponent?> ent, GasMixture gas) float saturation = 0; foreach (var organ in organs) { - saturation += GetSaturation(solution, organ.Comp.Owner, out var toxic); + saturation += GetSaturation(solution, organ.Owner, out var toxic); if (toxic) return false; } @@ -287,10 +287,10 @@ private void TakeSuffocationDamage(Entity<RespiratorComponent> ent) if (ent.Comp.SuffocationCycles >= ent.Comp.SuffocationCycleThreshold) { // TODO: This is not going work with multiple different lungs, if that ever becomes a possibility - var organs = _bodySystem.GetBodyOrganComponents<LungComponent>(ent); - foreach (var (comp, _) in organs) + var organs = _bodySystem.GetBodyOrganEntityComps<LungComponent>((ent, null)); + foreach (var entity in organs) { - _alertsSystem.ShowAlert(ent, comp.Alert); + _alertsSystem.ShowAlert(entity.Owner, entity.Comp1.Alert); } } @@ -303,10 +303,10 @@ private void StopSuffocation(Entity<RespiratorComponent> ent) _adminLogger.Add(LogType.Asphyxiation, $"{ToPrettyString(ent):entity} stopped suffocating"); // TODO: This is not going work with multiple different lungs, if that ever becomes a possibility - var organs = _bodySystem.GetBodyOrganComponents<LungComponent>(ent); - foreach (var (comp, _) in organs) + var organs = _bodySystem.GetBodyOrganEntityComps<LungComponent>((ent, null)); + foreach (var entity in organs) { - _alertsSystem.ClearAlert(ent, comp.Alert); + _alertsSystem.ClearAlert(entity.Owner, entity.Comp1.Alert); } _damageableSys.TryChangeDamage(ent, ent.Comp.DamageRecovery); diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index dd408755e67..7a2a3d474aa 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -177,6 +177,10 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com RaiseLocalEvent(ref ev); ev.FulfillmentEntity ??= station.Value; + _idCardSystem.TryFindIdCard(player, out var idCard); + // ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract + order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); + if (!ev.Handled) { ev.FulfillmentEntity = TryFulfillOrder((station.Value, stationData), order, orderDatabase); @@ -189,18 +193,13 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com } } - _idCardSystem.TryFindIdCard(player, out var idCard); - // ReSharper disable once ConditionalAccessQualifierIsNonNullableAccordingToAPIContract - order.SetApproverData(idCard.Comp?.FullName, idCard.Comp?.JobTitle); + order.Approved = true; _audio.PlayPvs(component.ConfirmSound, uid); - var approverName = idCard.Comp?.FullName ?? Loc.GetString("access-reader-unknown-id"); - var approverJob = idCard.Comp?.JobTitle ?? Loc.GetString("access-reader-unknown-id"); var message = Loc.GetString("cargo-console-unlock-approved-order-broadcast", ("productName", Loc.GetString(order.ProductName)), ("orderAmount", order.OrderQuantity), - ("approverName", approverName), - ("approverJob", approverJob), + ("approver", order.Approver ?? string.Empty), ("cost", cost)); _radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false); ConsolePopup(args.Actor, Loc.GetString("cargo-console-trade-station", ("destination", MetaData(ev.FulfillmentEntity.Value).EntityName))); @@ -421,6 +420,7 @@ Entity<StationDataComponent> stationData // Approve it now order.SetApproverData(dest, sender); + order.Approved = true; // Log order addition _adminLogger.Add(LogType.Action, LogImpact.Low, diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index f878eeee75c..d936451d524 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -16,6 +16,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Utility; using System.Linq; +using Content.Shared.Research.Prototypes; namespace Content.Server.Cargo.Systems; @@ -158,6 +159,26 @@ private double GetMaterialPrice(PhysicalCompositionComponent component) return price; } + public double GetLatheRecipePrice(LatheRecipePrototype recipe) + { + var price = 0.0; + + if (recipe.Result is { } result) + { + price += GetEstimatedPrice(_prototypeManager.Index(result)); + } + + if (recipe.ResultReagents is { } resultReagents) + { + foreach (var (reagent, amount) in resultReagents) + { + price += (_prototypeManager.Index(reagent).PricePerUnit * amount).Double(); + } + } + + return price; + } + /// <summary> /// Get a rough price for an entityprototype. Does not consider contained entities. /// </summary> diff --git a/Content.Server/CharacterInfo/CharacterInfoSystem.cs b/Content.Server/CharacterInfo/CharacterInfoSystem.cs index 3099b2f90fc..3d83a667057 100644 --- a/Content.Server/CharacterInfo/CharacterInfoSystem.cs +++ b/Content.Server/CharacterInfo/CharacterInfoSystem.cs @@ -31,7 +31,7 @@ private void OnRequestCharacterInfoEvent(RequestCharacterInfoEvent msg, EntitySe var entity = args.SenderSession.AttachedEntity.Value; var objectives = new Dictionary<string, List<ObjectiveInfo>>(); - var jobTitle = "No Profession"; + var jobTitle = Loc.GetString("character-info-no-profession"); string? briefing = null; if (_minds.TryGetMind(entity, out var mindId, out var mind)) { diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 45706a6d754..fec3abe4287 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -11,7 +11,6 @@ using Content.Server.Speech.EntitySystems; using Content.Server.Station.Components; using Content.Server.Station.Systems; -using Content.Server.Language; using Content.Shared.ActionBlocker; using Content.Shared.Administration; using Content.Shared.CCVar; @@ -27,7 +26,6 @@ using Content.Shared.Radio; using Content.Shared.Speech; using Content.Shared.Whitelist; -using Content.Shared.Language; using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; @@ -39,6 +37,8 @@ using Robust.Shared.Random; using Robust.Shared.Replays; using Robust.Shared.Utility; +using Content.Shared.ADT.Language; // ADT Languages +using Content.Server.ADT.Language; // ADT Languages namespace Content.Server.Chat.Systems; @@ -62,18 +62,17 @@ public sealed partial class ChatSystem : SharedChatSystem [Dependency] private readonly StationSystem _stationSystem = default!; [Dependency] private readonly MobStateSystem _mobStateSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; [Dependency] private readonly ReplacementAccentSystem _wordreplacement = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; [Dependency] private readonly ExamineSystemShared _examineSystem = default!; - [Dependency] private readonly LanguageSystem _language = default!; + [Dependency] private readonly LanguageSystem _language = default!; // ADT Languages - // Corvax-TTS-Start: Moved from Server to Shared - // public const int VoiceRange = 10; // how far voice goes in world units - // public const int WhisperClearRange = 2; // how far whisper goes while still being understandable, in world units - // public const int WhisperMuffledRange = 5; // how far whisper goes at all, in world units - // Corvax-TTS-End - public const string DefaultAnnouncementSound = "/Audio/Corvax/Announcements/announce.ogg"; // Corvax-Announcements - public const string CentComAnnouncementSound = "/Audio/Corvax/Announcements/centcomm.ogg"; // Corvax-Announcements + + public const int VoiceRange = 10; // how far voice goes in world units + public const int WhisperClearRange = 2; // how far whisper goes while still being understandable, in world units + public const int WhisperMuffledRange = 5; // how far whisper goes at all, in world units + public const string DefaultAnnouncementSound = "/Audio/Announcements/announce.ogg"; private bool _loocEnabled = true; private bool _deadLoocEnabled; @@ -153,9 +152,10 @@ public void TrySendInGameICMessage( IConsoleShell? shell = null, ICommonSession? player = null, string? nameOverride = null, bool checkRadioPrefix = true, - bool ignoreActionBlocker = false) + bool ignoreActionBlocker = false, + LanguagePrototype? language = null) // ADT Languages { - TrySendInGameICMessage(source, message, desiredType, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, hideLog, shell, player, nameOverride, checkRadioPrefix, ignoreActionBlocker); + TrySendInGameICMessage(source, message, desiredType, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, hideLog, shell, player, nameOverride, checkRadioPrefix, ignoreActionBlocker, language); // ADT Languages } /// <summary> @@ -180,7 +180,8 @@ public void TrySendInGameICMessage( string? nameOverride = null, bool checkRadioPrefix = true, bool ignoreActionBlocker = false, - LanguagePrototype? languageOverride = null) // Frontier - languages mechanic + LanguagePrototype? language = null // ADT Languages + ) { if (HasComp<GhostComponent>(source)) { @@ -223,13 +224,17 @@ public void TrySendInGameICMessage( message = message[1..]; } + // ADT Languages start + bool shouldCapitalize = (desiredType != InGameICChatType.Emote); bool shouldPunctuate = _configurationManager.GetCVar(CCVars.ChatPunctuation); // Capitalizing the word I only happens in English, so we check language here bool shouldCapitalizeTheWordI = (!CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Parent.Name == "en") || (CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Name == "en"); - message = SanitizeInGameICMessage(source, message, out var emoteStr, shouldCapitalize, shouldPunctuate, shouldCapitalizeTheWordI); + string sanitizedMessage = SanitizeInGameICMessage(source, message, out var emoteStr, shouldCapitalize, shouldPunctuate, shouldCapitalizeTheWordI); + + // ADT Languages end // Was there an emote in the message? If so, send it. if (player != null && emoteStr != message && emoteStr != null) @@ -244,7 +249,7 @@ public void TrySendInGameICMessage( // This message may have a radio prefix, and should then be whispered to the resolved radio channel if (checkRadioPrefix) { - if (TryProccessRadioMessage(source, message, out var modMessage, out var channel)) + if (TryProccessRadioMessage(source, sanitizedMessage, out var modMessage, out var channel)) // Accent fix { SendEntityWhisper(source, modMessage, range, channel, nameOverride, hideLog, ignoreActionBlocker); return; @@ -255,13 +260,13 @@ public void TrySendInGameICMessage( switch (desiredType) { case InGameICChatType.Speak: - SendEntitySpeak(source, message, range, nameOverride, hideLog, ignoreActionBlocker, languageOverride: languageOverride); + SendEntitySpeak(source, message, range, nameOverride, hideLog, ignoreActionBlocker, language); // ADT Languages break; case InGameICChatType.Whisper: - SendEntityWhisper(source, message, range, null, nameOverride, hideLog, ignoreActionBlocker, languageOverride: languageOverride); + SendEntityWhisper(source, message, range, null, nameOverride, hideLog, ignoreActionBlocker, language); // ADT Languages break; case InGameICChatType.Emote: - SendEntityEmote(source, message, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker); + SendEntityEmote(source, sanitizedMessage, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker); // ADT Languages break; } } @@ -324,20 +329,17 @@ public void TrySendInGameOOCMessage( /// <param name="colorOverride">Optional color for the announcement message</param> public void DispatchGlobalAnnouncement( string message, - string? sender = null, + string sender = "Central Command", bool playSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null ) { - sender ??= Loc.GetString("chat-manager-sender-announcement"); - var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); _chatManager.ChatMessageToAll(ChatChannel.Radio, message, wrappedMessage, default, false, true, colorOverride); if (playSound) { - if (sender == Loc.GetString("admin-announce-announcer-default")) announcementSound = new SoundPathSpecifier(CentComAnnouncementSound); // Corvax-Announcements: Support custom alert sound from admin panel - _audio.PlayGlobal(announcementSound?.GetSound() ?? DefaultAnnouncementSound, Filter.Broadcast(), true, announcementSound?.Params ?? AudioParams.Default.WithVolume(-2f)); + _audio.PlayGlobal(announcementSound?.GetSound() ?? DefaultAnnouncementSound, Filter.Broadcast(), true, AudioParams.Default.WithVolume(-2f)); } _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Global station announcement from {sender}: {message}"); } @@ -353,13 +355,11 @@ public void DispatchGlobalAnnouncement( public void DispatchStationAnnouncement( EntityUid source, string message, - string? sender = null, + string sender = "Central Command", bool playDefaultSound = true, SoundSpecifier? announcementSound = null, Color? colorOverride = null) { - sender ??= Loc.GetString("chat-manager-sender-announcement"); - var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); var station = _stationSystem.GetOwningStation(source); @@ -386,7 +386,7 @@ public void DispatchStationAnnouncement( #endregion #region Private API - + private void SendEntitySpeak( EntityUid source, string originalMessage, @@ -394,7 +394,7 @@ private void SendEntitySpeak( string? nameOverride, bool hideLog = false, bool ignoreActionBlocker = false, - LanguagePrototype? languageOverride = null // Frontier: languages mechanic + LanguagePrototype? language = null // ADT Languages ) { if (!_actionBlocker.CanSpeak(source) && !ignoreActionBlocker) @@ -405,6 +405,11 @@ private void SendEntitySpeak( if (message.Length == 0) return; + // ADT Languages start + if (language == null) + language = _language.GetCurrentLanguage(source); + // ADT Languages end + var speech = GetSpeechVerb(source, message); // get the entity's apparent name (if no override provided). @@ -423,30 +428,46 @@ private void SendEntitySpeak( speech = proto; } - // Frontier - languages mechanic - var language = languageOverride ?? _language.GetLanguage(source); + // ADT Languages start + bool shouldPunctuate = _configurationManager.GetCVar(CCVars.ChatPunctuation); + // Capitalizing the word I only happens in English, so we check language here + bool shouldCapitalizeTheWordI = (!CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Parent.Name == "en") + || (CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Name == "en"); + + string coloredMessage = SanitizeInGameICMessage(source, FormattedMessage.EscapeText(message), out _, true, shouldPunctuate, shouldCapitalizeTheWordI); - name = FormattedMessage.EscapeText(name); + string coloredLanguageMessage = SanitizeInGameICMessage(source, _language.ObfuscateMessage(source, FormattedMessage.EscapeText(message), language), out _); - // Frontier: languages mechanic ADT Upd start - if (TryComp<LanguageSpeakerComponent>(source, out var lang) && lang.CurrentLanguage != "GalacticCommon" && lang.CurrentLanguage != "Universal") - name = $"{lang.LocalizedID}|{name}"; - // Frontier: languages mechanic ADT Upd end + coloredMessage = FormattedMessage.EscapeText(coloredMessage); + coloredLanguageMessage = FormattedMessage.EscapeText(coloredLanguageMessage); + if (language.Color != null) + { + coloredMessage = "[color=" + language.Color.Value.ToHex().ToString() + "]" + coloredMessage + "[/color]"; + coloredLanguageMessage = "[color=" + language.Color.Value.ToHex().ToString() + "]" + coloredLanguageMessage + "[/color]"; + } + // ADT Languages end + + name = FormattedMessage.EscapeText(name); var wrappedMessage = Loc.GetString(speech.Bold ? "chat-manager-entity-say-bold-wrap-message" : "chat-manager-entity-say-wrap-message", ("entityName", name), ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))), ("fontType", speech.FontId), ("fontSize", speech.FontSize), - ("message", FormattedMessage.EscapeText(message))); - - var encodedMessage = _language.ObfuscateSpeech(source, message, language); - var wrappedEncodedMessage = WrapPublicMessage(source, name, encodedMessage); + ("message", coloredMessage)); // ADT Language colored msg - // Frontier: languages mechanic - SendInVoiceRange(ChatChannel.Local, message, wrappedMessage, encodedMessage, wrappedEncodedMessage, source, range, languageOverride: language); + // ADT Languages start + var wrappedLanguageMessage = Loc.GetString(speech.Bold ? "chat-manager-entity-say-bold-wrap-message" : "chat-manager-entity-say-wrap-message", + ("entityName", name), + ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))), + ("fontType", speech.FontId), + ("fontSize", speech.FontSize), + ("message", coloredLanguageMessage)); + // ADT Languages end + + SendInVoiceRange(ChatChannel.Local, message, wrappedMessage, wrappedLanguageMessage, source, range, language: language); // ADT Languages - var ev = new EntitySpokeEvent(source, message, originalMessage, encodedMessage, null, language, null); + var ev = new EntitySpokeEvent(source, message, language, null, null); RaiseLocalEvent(source, ev, true); // To avoid logging any messages sent by entities that are not players, like vendors, cloning, etc. @@ -480,7 +501,7 @@ private void SendEntityWhisper( string? nameOverride, bool hideLog = false, bool ignoreActionBlocker = false, - LanguagePrototype? languageOverride = null // Frontier: languages mechanic + LanguagePrototype? language = null // ADT Languages ) { if (!_actionBlocker.CanSpeak(source) && !ignoreActionBlocker) @@ -492,6 +513,14 @@ private void SendEntityWhisper( var obfuscatedMessage = ObfuscateMessageReadability(message, 0.2f); + // ADT Languages start + if (language == null) + language = _language.GetCurrentLanguage(source); + + var languageMessage = SanitizeInGameICMessage(source, _language.ObfuscateMessage(source, message, language), out _); + var obfuscatedLanguageMessage = ObfuscateMessageReadability(SanitizeInGameICMessage(source, _language.ObfuscateMessage(source, message, language), out _), 0.2f); + // ADT Languages end + // get the entity's name by visual identity (if no override provided). string nameIdentity = FormattedMessage.EscapeText(nameOverride ?? Identity.Name(source, EntityManager)); // get the entity's name by voice (if no override provided). @@ -506,16 +535,55 @@ private void SendEntityWhisper( RaiseLocalEvent(source, nameEv); name = nameEv.Name; } + // ADT Languages start + + bool shouldPunctuate = _configurationManager.GetCVar(CCVars.ChatPunctuation); + // Capitalizing the word I only happens in English, so we check language here + bool shouldCapitalizeTheWordI = (!CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Parent.Name == "en") + || (CultureInfo.CurrentCulture.IsNeutralCulture && CultureInfo.CurrentCulture.Name == "en"); + + string coloredMessage = SanitizeInGameICMessage(source, FormattedMessage.EscapeText(message), out _, true, shouldPunctuate, shouldCapitalizeTheWordI); + string coloredObfuscatedMessage = SanitizeInGameICMessage(source, FormattedMessage.EscapeText(obfuscatedMessage), out _, true, shouldPunctuate, shouldCapitalizeTheWordI); + + string coloredObfuscatedLanguageMessage = FormattedMessage.EscapeText(obfuscatedLanguageMessage); + string coloredLanguageMessage = FormattedMessage.EscapeText(languageMessage); + + coloredMessage = FormattedMessage.EscapeText(coloredMessage); + coloredObfuscatedMessage = FormattedMessage.EscapeText(coloredObfuscatedMessage); + coloredObfuscatedLanguageMessage = FormattedMessage.EscapeText(coloredObfuscatedLanguageMessage); + coloredLanguageMessage = FormattedMessage.EscapeText(coloredLanguageMessage); + + if (language.WhisperColor != null) + { + coloredMessage = "[color=" + language.WhisperColor.Value.ToHex().ToString() + "]" + coloredMessage + "[/color]"; + coloredObfuscatedMessage = "[color=" + language.WhisperColor.Value.ToHex().ToString() + "]" + coloredObfuscatedMessage + "[/color]"; + coloredObfuscatedLanguageMessage = "[color=" + language.WhisperColor.Value.ToHex().ToString() + "]" + coloredObfuscatedLanguageMessage + "[/color]"; + coloredLanguageMessage = "[color=" + language.WhisperColor.Value.ToHex().ToString() + "]" + coloredLanguageMessage + "[/color]"; + } + name = FormattedMessage.EscapeText(name); - - // Frontier: languages mechanic ADT Upd start - if (TryComp<LanguageSpeakerComponent>(source, out var lang) && lang.CurrentLanguage != "GalacticCommon" && lang.CurrentLanguage != "Universal") - name = $"{lang.LocalizedID}|{name}"; - // Frontier: languages mechanic ADT Upd end - // Frontier - languages mechanic (+ everything in the foreach loop) - var language = languageOverride ?? _language.GetLanguage(source); - var languageEncodedMessage = _language.ObfuscateSpeech(source, message, language); + var wrappedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message", + ("entityName", name), ("message", coloredMessage)); + + var wrappedobfuscatedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message", + ("entityName", nameIdentity), ("message", coloredObfuscatedMessage)); + + var wrappedUnknownMessage = Loc.GetString("chat-manager-entity-whisper-unknown-wrap-message", + ("message", coloredObfuscatedMessage)); + + var wrappedLanguageMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message", + ("entityName", name), ("message", coloredLanguageMessage)); + + var wrappedobfuscatedLanguageMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message", + ("entityName", nameIdentity), ("message", coloredObfuscatedLanguageMessage)); + + var wrappedUnknownLanguageMessage = Loc.GetString("chat-manager-entity-whisper-unknown-wrap-message", + ("message", coloredObfuscatedLanguageMessage)); + + if (language == null) + language = _language.GetCurrentLanguage(source); + // ADT Languages end foreach (var (session, data) in GetRecipients(source, WhisperMuffledRange)) { @@ -528,42 +596,35 @@ private void SendEntityWhisper( if (MessageRangeCheck(session, data, range) != MessageRangeCheckResult.Full) continue; // Won't get logged to chat, and ghosts are too far away to see the pop-up, so we just won't send it to them. - var canUnderstand = _language.CanUnderstand(listener, language); - var _message = canUnderstand ? message : languageEncodedMessage; - - if (data.Range <= WhisperClearRange) + // ADT Languages start + if (!_language.CanUnderstand(listener, language)) { - var wrappedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message", - ("entityName", name), ("message", FormattedMessage.EscapeText(_message))); - - _chatManager.ChatMessageToOne(ChatChannel.Whisper, _message, wrappedMessage, source, false, session.Channel); - } - //If listener is too far, they only hear fragments of the message - else if (_examineSystem.InRangeUnOccluded(source, listener, WhisperMuffledRange)) - { - var _obfuscatedMessage = ObfuscateMessageReadability(_message, 0.2f); - - var wrappedobfuscatedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message", - ("entityName", nameIdentity), ("message", FormattedMessage.EscapeText(_obfuscatedMessage))); - _chatManager.ChatMessageToOne(ChatChannel.Whisper, _obfuscatedMessage, wrappedobfuscatedMessage, source, false, session.Channel); + if (data.Range <= WhisperClearRange) + _chatManager.ChatMessageToOne(ChatChannel.Whisper, message, wrappedLanguageMessage, source, false, session.Channel); + //If listener is too far, they only hear fragments of the message + else if (_examineSystem.InRangeUnOccluded(source, listener, WhisperMuffledRange)) + _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedobfuscatedLanguageMessage, source, false, session.Channel); + //If listener is too far and has no line of sight, they can't identify the whisperer's identity + else + _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedUnknownLanguageMessage, source, false, session.Channel); } - //If listener is too far and has no line of sight, they can't identify the whisperer's identity else { - var _obfuscatedMessage = ObfuscateMessageReadability(_message, 0.2f); - - var wrappedUnknownMessage = Loc.GetString("chat-manager-entity-whisper-unknown-wrap-message", - ("message", FormattedMessage.EscapeText(_obfuscatedMessage))); - _chatManager.ChatMessageToOne(ChatChannel.Whisper, _obfuscatedMessage, wrappedUnknownMessage, source, false, session.Channel); + if (data.Range <= WhisperClearRange) + _chatManager.ChatMessageToOne(ChatChannel.Whisper, message, wrappedMessage, source, false, session.Channel); + //If listener is too far, they only hear fragments of the message + else if (_examineSystem.InRangeUnOccluded(source, listener, WhisperMuffledRange)) + _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedobfuscatedMessage, source, false, session.Channel); + //If listener is too far and has no line of sight, they can't identify the whisperer's identity + else + _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedUnknownMessage, source, false, session.Channel); } + // ADT Languages end } - var replayWrap = Loc.GetString("chat-manager-entity-whisper-wrap-message", - ("entityName", name), - ("message", FormattedMessage.EscapeText(message))); - _replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, replayWrap, GetNetEntity(source), null, MessageRangeHideChatForReplay(range))); + _replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, wrappedMessage, GetNetEntity(source), null, MessageRangeHideChatForReplay(range))); - var ev = new EntitySpokeEvent(source, message, originalMessage, languageEncodedMessage, channel, language, obfuscatedMessage); + var ev = new EntitySpokeEvent(source, message, language, channel, obfuscatedMessage); RaiseLocalEvent(source, ev, true); if (!hideLog) if (originalMessage == message) @@ -610,7 +671,7 @@ private void SendEntityEmote( if (checkEmote) TryEmoteChatInput(source, action); - SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage,encodedMessage: string.Empty, wrappedEncodedMessage: string.Empty, source, range, author); + SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, wrappedMessage, source, range, author, ignoreLanguage: true); // ADT Languages if (!hideLog) if (name != Name(source)) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Emote from {ToPrettyString(source):user} as {name}: {action}"); @@ -637,12 +698,7 @@ private void SendLOOC(EntityUid source, ICommonSession player, string message, b ("entityName", name), ("message", FormattedMessage.EscapeText(message))); - SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, - encodedMessage: string.Empty, - wrappedEncodedMessage: string.Empty, - source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, - player.UserId, - languageOverride: LanguageSystem.Universal); + SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, player.UserId, ignoreLanguage: true); // ADT Languages _adminLogger.Add(LogType.Chat, LogImpact.Low, $"LOOC from {player:Player}: {message}"); } @@ -723,32 +779,36 @@ private MessageRangeCheckResult MessageRangeCheck(ICommonSession session, ICChat /// <summary> /// Sends a chat message to the given players in range of the source entity. /// </summary> - private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, string encodedMessage, string wrappedEncodedMessage, EntityUid source, ChatTransmitRange range, NetUserId? author = null, LanguagePrototype? languageOverride = null) + private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, string wrappedLanguageMessage, EntityUid source, ChatTransmitRange range, NetUserId? author = null, LanguagePrototype? language = null, bool ignoreLanguage = false) // ADT Languages { - - var language = languageOverride ?? _language.GetLanguage(source); // frontier + // ADT Languages start + if (language == null) + language = _language.GetCurrentLanguage(source); foreach (var (session, data) in GetRecipients(source, VoiceRange)) { + EntityUid listener; + + if (session.AttachedEntity is not { Valid: true } playerEntity) + continue; + listener = session.AttachedEntity.Value; + var entRange = MessageRangeCheck(session, data, range); if (entRange == MessageRangeCheckResult.Disallowed) continue; var entHideChat = entRange == MessageRangeCheckResult.HideChat; - - // Frontier - languages mechanic - if (session.AttachedEntity is not { Valid: true } playerEntity) + if (ignoreLanguage) + { + _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.Channel, author: author); continue; - EntityUid listener = session.AttachedEntity.Value; + } - if (channel == ChatChannel.LOOC || channel == ChatChannel.Emotes || _language.CanUnderstand(listener, language)) - { - _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.ConnectedClient, author: author); - } + if (!_language.CanUnderstand(listener, language)) + _chatManager.ChatMessageToOne(channel, message, wrappedLanguageMessage, source, entHideChat, session.Channel, author: author); else - { - _chatManager.ChatMessageToOne(channel, encodedMessage, wrappedEncodedMessage, source, entHideChat, session.ConnectedClient, author: author); - } + _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.Channel, author: author); } + // ADT Languages end _replay.RecordServerMessage(new ChatMessage(channel, message, wrappedMessage, GetNetEntity(source), null, MessageRangeHideChatForReplay(range))); } @@ -780,7 +840,7 @@ private bool CanSendInGame(string message, IConsoleShell? shell = null, ICommonS } // ReSharper disable once InconsistentNaming - private string SanitizeInGameICMessage(EntityUid source, string message, out string? emoteStr, bool capitalize = true, bool punctuate = false, bool capitalizeTheWordI = true) + public string SanitizeInGameICMessage(EntityUid source, string message, out string? emoteStr, bool capitalize = true, bool punctuate = false, bool capitalizeTheWordI = true) { var newMessage = message.Trim(); newMessage = SanitizeMessageReplaceWords(newMessage); @@ -857,19 +917,6 @@ public string SanitizeMessageReplaceWords(string message) return msg; } - // Frontier - languages mechanic - public string WrapPublicMessage(EntityUid source, string name, string message) - { - var speech = GetSpeechVerb(source, message); - var verbName = Loc.GetString(_random.Pick(speech.SpeechVerbStrings)); - return Loc.GetString(speech.Bold ? "chat-manager-entity-say-bold-wrap-message" : "chat-manager-entity-say-wrap-message", - ("entityName", name), - ("verb", verbName), - ("fontType", speech.FontId), - ("fontSize", speech.FontSize), - ("message", FormattedMessage.EscapeText(message))); - } - /// <summary> /// Returns list of players and ranges for all players withing some range. Also returns observers with a range of -1. /// </summary> @@ -1005,23 +1052,18 @@ public sealed class EntitySpokeEvent : EntityEventArgs { public readonly EntityUid Source; public readonly string Message; - public readonly string OriginalMessage; - public readonly string LanguageEncodedMessage; - public readonly string? ObfuscatedMessage; // not null if this was a - public readonly LanguagePrototype Language; - + public readonly string? ObfuscatedMessage; // not null if this was a whisper /// <summary> /// If the entity was trying to speak into a radio, this was the channel they were trying to access. If a radio /// message gets sent on this channel, this should be set to null to prevent duplicate messages. /// </summary> public RadioChannelPrototype? Channel; + public readonly LanguagePrototype Language; - public EntitySpokeEvent(EntityUid source, string message, string originalMessage, string languageEncodedMessage, RadioChannelPrototype? channel, LanguagePrototype language, string? obfuscatedMessage) + public EntitySpokeEvent(EntityUid source, string message, LanguagePrototype language, RadioChannelPrototype? channel, string? obfuscatedMessage) { Source = source; Message = message; - OriginalMessage = originalMessage; // Corvax-TTS: Spec symbol sanitize - LanguageEncodedMessage = languageEncodedMessage; Channel = channel; ObfuscatedMessage = obfuscatedMessage; Language = language; diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index aac171371fb..d94faa81232 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -118,21 +118,25 @@ private void InjectDoAfter(Entity<InjectorComponent> injector, EntityUid target, if (!SolutionContainers.TryGetSolution(injector.Owner, injector.Comp.SolutionName, out _, out var solution)) return; - var actualDelay = MathHelper.Max(injector.Comp.Delay, TimeSpan.FromSeconds(1)); - float amountToInject; + var actualDelay = injector.Comp.Delay; + FixedPoint2 amountToInject; if (injector.Comp.ToggleState == InjectorToggleMode.Draw) { // additional delay is based on actual volume left to draw in syringe when smaller than transfer amount - amountToInject = Math.Min(injector.Comp.TransferAmount.Float(), (solution.MaxVolume - solution.Volume).Float()); + amountToInject = FixedPoint2.Min(injector.Comp.TransferAmount, (solution.MaxVolume - solution.Volume)); } else { // additional delay is based on actual volume left to inject in syringe when smaller than transfer amount - amountToInject = Math.Min(injector.Comp.TransferAmount.Float(), solution.Volume.Float()); + amountToInject = FixedPoint2.Min(injector.Comp.TransferAmount, solution.Volume); } // Injections take 0.5 seconds longer per 5u of possible space/content - actualDelay += TimeSpan.FromSeconds(amountToInject / 10); + // First 5u(MinimumTransferAmount) doesn't incur delay + actualDelay += injector.Comp.DelayPerVolume * FixedPoint2.Max(0, amountToInject - injector.Comp.MinimumTransferAmount).Double(); + + // Ensure that minimum delay before incapacitation checks is 1 seconds + actualDelay = MathHelper.Max(actualDelay, TimeSpan.FromSeconds(1)); var isTarget = user != target; @@ -199,9 +203,9 @@ private void InjectDoAfter(Entity<InjectorComponent> injector, EntityUid target, BreakOnMove = true, BreakOnWeightlessMove = false, BreakOnDamage = true, - NeedHand = true, - BreakOnHandChange = true, - MovementThreshold = 0.1f, + NeedHand = injector.Comp.NeedHand, + BreakOnHandChange = injector.Comp.BreakOnHandChange, + MovementThreshold = injector.Comp.MovementThreshold, }); } diff --git a/Content.Server/Corvax/TTS/TTSSystem.cs b/Content.Server/Corvax/TTS/TTSSystem.cs index 81caf95b099..c8046212577 100644 --- a/Content.Server/Corvax/TTS/TTSSystem.cs +++ b/Content.Server/Corvax/TTS/TTSSystem.cs @@ -1,4 +1,4 @@ -using System.Threading.Tasks; +using System.Threading.Tasks; using Content.Server.Chat.Systems; using Content.Shared.Corvax.CCCVars; using Content.Shared.Corvax.TTS; @@ -7,6 +7,8 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; +using Content.Server.ADT.Language; // ADT Languages +using Content.Shared.ADT.Language; // ADT Languages namespace Content.Server.Corvax.TTS; @@ -18,6 +20,7 @@ public sealed partial class TTSSystem : EntitySystem [Dependency] private readonly TTSManager _ttsManager = default!; [Dependency] private readonly SharedTransformSystem _xforms = default!; [Dependency] private readonly IRobustRandom _rng = default!; + [Dependency] private readonly LanguageSystem _language = default!; // ADT Languages private readonly List<string> _sampleText = new() @@ -33,7 +36,8 @@ public sealed partial class TTSSystem : EntitySystem "Здесь есть доктор? Человек умирает от отравленного пончика! Нужна помощь!", "Вам нужно согласие и печать квартирмейстера, если вы хотите сделать заказ на партию дробовиков.", "Возле эвакуационного шаттла разгерметизация! Инженеры, нам срочно нужна ваша помощь!", - "Бармен, налей мне самого крепкого вина, которое есть в твоих запасах!" + "Бармен, налей мне самого крепкого вина, которое есть в твоих запасах!", + "Здесь был котя." }; private const int MaxMessageChars = 100 * 2; // same as SingleBubbleCharLimit * 2 @@ -66,7 +70,7 @@ private async void OnRequestPreviewTTS(RequestPreviewTTSEvent ev, EntitySessionE if (soundData is null) return; - RaiseNetworkEvent(new PlayTTSEvent(soundData), Filter.SinglePlayer(args.SenderSession)); + RaiseNetworkEvent(new PlayTTSEvent(soundData, soundData, _prototypeManager.Index<LanguagePrototype>("Universal")), Filter.SinglePlayer(args.SenderSession)); } private async void OnEntitySpoke(EntityUid uid, TTSComponent component, EntitySpokeEvent args) @@ -86,21 +90,27 @@ private async void OnEntitySpoke(EntityUid uid, TTSComponent component, EntitySp if (args.ObfuscatedMessage != null) { - HandleWhisper(uid, args.Message, args.ObfuscatedMessage, protoVoice.Speaker); + HandleWhisper(uid, args.Message, args.ObfuscatedMessage, protoVoice.Speaker, args.Language); // ADT Languages return; } - HandleSay(uid, args.Message, protoVoice.Speaker); + HandleSay(uid, args.Message, protoVoice.Speaker, args.Language); // ADT Languages } - private async void HandleSay(EntityUid uid, string message, string speaker) + private async void HandleSay(EntityUid uid, string message, string speaker, LanguagePrototype language) { var soundData = await GenerateTTS(message, speaker); if (soundData is null) return; - RaiseNetworkEvent(new PlayTTSEvent(soundData, GetNetEntity(uid)), Filter.Pvs(uid)); + + // ADT Languages start + var languageSoundData = await GenerateTTS(_language.ObfuscateMessage(uid, message, language), speaker); + if (languageSoundData is null) return; + // ADT Languages end + + RaiseNetworkEvent(new PlayTTSEvent(soundData, languageSoundData, language, GetNetEntity(uid)), Filter.Pvs(uid)); } - private async void HandleWhisper(EntityUid uid, string message, string obfMessage, string speaker) + private async void HandleWhisper(EntityUid uid, string message, string obfMessage, string speaker, LanguagePrototype language) { var fullSoundData = await GenerateTTS(message, speaker, true); if (fullSoundData is null) return; @@ -108,8 +118,16 @@ private async void HandleWhisper(EntityUid uid, string message, string obfMessag var obfSoundData = await GenerateTTS(obfMessage, speaker, true); if (obfSoundData is null) return; - var fullTtsEvent = new PlayTTSEvent(fullSoundData, GetNetEntity(uid), true); - var obfTtsEvent = new PlayTTSEvent(obfSoundData, GetNetEntity(uid), true); + // ADT Languages start + var fullLangSoundData = await GenerateTTS(_language.ObfuscateMessage(uid, message, language), speaker, true); + if (fullLangSoundData is null) return; + + var obfLangSoundData = await GenerateTTS(_language.ObfuscateMessage(uid, obfMessage, language), speaker, true); + if (obfLangSoundData is null) return; + // ADT Languages end + + var fullTtsEvent = new PlayTTSEvent(fullSoundData, fullLangSoundData, language, GetNetEntity(uid), true); // ADT Languages + var obfTtsEvent = new PlayTTSEvent(obfSoundData, obfLangSoundData, language, GetNetEntity(uid), true); // ADT Languages // TODO: Check obstacles var xformQuery = GetEntityQuery<TransformComponent>(); diff --git a/Content.Server/Destructible/Thresholds/Behaviors/WeightedSpawnEntityBehavior.cs b/Content.Server/Destructible/Thresholds/Behaviors/WeightedSpawnEntityBehavior.cs new file mode 100644 index 00000000000..e02ed873223 --- /dev/null +++ b/Content.Server/Destructible/Thresholds/Behaviors/WeightedSpawnEntityBehavior.cs @@ -0,0 +1,89 @@ +using System.Numerics; +using Content.Server.Spawners.Components; +using Content.Server.Spawners.EntitySystems; +using Content.Shared.Random; +using Content.Shared.Random.Helpers; +using Robust.Server.GameObjects; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; +using Robust.Shared.Spawners; + +namespace Content.Server.Destructible.Thresholds.Behaviors; + +/// <summary> +/// Behavior that can be assigned to a trigger that that takes a <see cref="WeightedRandomEntityPrototype"/> +/// and spawns a number of the same entity between a given min and max +/// at a random offset from the final position of the entity. +/// </summary> +[Serializable] +[DataDefinition] +public sealed partial class WeightedSpawnEntityBehavior : IThresholdBehavior +{ + /// <summary> + /// A table of entities with assigned weights to randomly pick from + /// </summary> + [DataField(required: true)] + public ProtoId<WeightedRandomEntityPrototype> WeightedEntityTable; + + /// <summary> + /// How far away to spawn the entity from the parent position + /// </summary> + [DataField] + public float SpawnOffset = 1; + + /// <summary> + /// The mininum number of entities to spawn randomly + /// </summary> + [DataField] + public int MinSpawn = 1; + + /// <summary> + /// The max number of entities to spawn randomly + /// </summary> + [DataField] + public int MaxSpawn = 1; + + /// <summary> + /// Time in seconds to wait before spawning entities + /// </summary> + [DataField] + public float SpawnAfter; + + public void Execute(EntityUid uid, DestructibleSystem system, EntityUid? cause = null) + { + // Get the position at which to start initially spawning entities + var transform = system.EntityManager.System<TransformSystem>(); + var position = transform.GetMapCoordinates(uid); + // Helper function used to randomly get an offset to apply to the original position + Vector2 GetRandomVector() => new (system.Random.NextFloat(-SpawnOffset, SpawnOffset), system.Random.NextFloat(-SpawnOffset, SpawnOffset)); + // Randomly pick the entity to spawn and randomly pick how many to spawn + var entity = system.PrototypeManager.Index(WeightedEntityTable).Pick(system.Random); + var amountToSpawn = system.Random.NextFloat(MinSpawn, MaxSpawn); + + // Different behaviors for delayed spawning and immediate spawning + if (SpawnAfter != 0) + { + // if it fails to get the spawner, this won't ever work so just return + if (!system.PrototypeManager.TryIndex("TemporaryEntityForTimedDespawnSpawners", out var tempSpawnerProto)) + return; + + // spawn the spawner, assign it a lifetime, and assign the entity that it will spawn when despawned + for (var i = 0; i < amountToSpawn; i++) + { + var spawner = system.EntityManager.SpawnEntity(tempSpawnerProto.ID, position.Offset(GetRandomVector())); + system.EntityManager.EnsureComponent<TimedDespawnComponent>(spawner, out var timedDespawnComponent); + timedDespawnComponent.Lifetime = SpawnAfter; + system.EntityManager.EnsureComponent<SpawnOnDespawnComponent>(spawner, out var spawnOnDespawnComponent); + system.EntityManager.System<SpawnOnDespawnSystem>().SetPrototype((spawner, spawnOnDespawnComponent), entity); + } + } + else + { + // directly spawn the desired entities + for (var i = 0; i < amountToSpawn; i++) + { + system.EntityManager.SpawnEntity(entity, position.Offset(GetRandomVector())); + } + } + } +} diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index aa1ab3daccd..37a5ba2ef8e 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -25,7 +25,6 @@ using Content.Shared.Item; using Content.Shared.Movement.Events; using Content.Shared.Popups; -using Content.Shared.Throwing; using Content.Shared.Verbs; using Robust.Server.Audio; using Robust.Server.GameObjects; @@ -35,7 +34,6 @@ using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Player; -using Robust.Shared.Random; using Robust.Shared.Utility; namespace Content.Server.Disposal.Unit.EntitySystems; @@ -331,12 +329,13 @@ private void OnMovement(EntityUid uid, SharedDisposalUnitComponent component, re { var currentTime = GameTiming.CurTime; + if (!_actionBlockerSystem.CanMove(args.Entity)) + return; + if (!TryComp(args.Entity, out HandsComponent? hands) || hands.Count == 0 || currentTime < component.LastExitAttempt + ExitAttemptDelay) - { return; - } component.LastExitAttempt = currentTime; Remove(uid, component, args.Entity); diff --git a/Content.Server/Dragon/DragonSystem.cs b/Content.Server/Dragon/DragonSystem.cs index 1f15def5ce5..29875c60ca7 100644 --- a/Content.Server/Dragon/DragonSystem.cs +++ b/Content.Server/Dragon/DragonSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Mobs; +using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Systems; using Content.Shared.NPC.Systems; using Content.Shared.Zombies; @@ -27,6 +28,7 @@ public sealed partial class DragonSystem : EntitySystem [Dependency] private readonly SharedActionsSystem _actions = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; private EntityQuery<CarpRiftsConditionComponent> _objQuery; @@ -91,7 +93,8 @@ public override void Update(float frameTime) } } - comp.RiftAccumulator += frameTime; + if (!_mobState.IsDead(uid)) + comp.RiftAccumulator += frameTime; // Delete it, naughty dragon! if (comp.RiftAccumulator >= comp.RiftMaxAccumulator) diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 67e60c9de46..921166f826e 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -62,6 +62,10 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem [ValidatePrototypeId<DamageTypePrototype>] private const string DamageType = "Shock"; + // Yes, this is absurdly small for a reason. + public const float ElectrifiedDamagePerWatt = 0.0015f; // Parkstation-IPC // This information is allowed to be public, and was needed in BatteryElectrocuteChargeSystem.cs + private const float ElectrifiedScalePerWatt = 1E-6f; + // Multiply and shift the log scale for shock damage. private const float RecursiveDamageMultiplier = 0.75f; private const float RecursiveTimeMultiplier = 0.8f; diff --git a/Content.Server/Emp/EmpSystem.cs b/Content.Server/Emp/EmpSystem.cs index d2ac2caaa96..fa510d6f972 100644 --- a/Content.Server/Emp/EmpSystem.cs +++ b/Content.Server/Emp/EmpSystem.cs @@ -40,11 +40,31 @@ public override void Initialize() /// <param name="duration">The duration of the EMP effects.</param> public void EmpPulse(MapCoordinates coordinates, float range, float energyConsumption, float duration) { + /* foreach (var uid in _lookup.GetEntitiesInRange(coordinates, range)) { TryEmpEffects(uid, energyConsumption, duration); } Spawn(EmpPulseEffectPrototype, coordinates); + */ + + ///ADT-Tweak IPC start + foreach (var uid in _lookup.GetEntitiesInRange(coordinates, range)) + { + var ev = new EmpPulseEvent(energyConsumption, false, false, TimeSpan.FromSeconds(duration)); // Parkstation-IPCs + RaiseLocalEvent(uid, ref ev); + if (ev.Affected) + { + Spawn(EmpDisabledEffectPrototype, Transform(uid).Coordinates); + } + if (ev.Disabled) + { + var disabled = EnsureComp<EmpDisabledComponent>(uid); + disabled.DisabledUntil = Timing.CurTime + TimeSpan.FromSeconds(duration); + } + } + Spawn(EmpPulseEffectPrototype, coordinates); + ///ADT-Tweak IPC end } /// <summary> @@ -131,13 +151,12 @@ private void OnCameraSetActive(EntityUid uid, EmpDisabledComponent component, re args.Cancelled = true; } - -///ADT ion start + ///ADT ion start private void OnProjectileHit(EntityUid uid, EmpOnCollideComponent component, ref ProjectileHitEvent args) { TryEmpEffects(args.Target, component.EnergyConsumption, component.DisableDuration); } -///ADT ion end + ///ADT ion end } /// <summary> @@ -148,7 +167,7 @@ public sealed partial class EmpAttemptEvent : CancellableEntityEventArgs } [ByRefEvent] -public record struct EmpPulseEvent(float EnergyConsumption, bool Affected, bool Disabled, TimeSpan Duration); +public record struct EmpPulseEvent(float EnergyConsumption, bool Affected, bool Disabled, TimeSpan Duration); // Parkstation-IPCs [ByRefEvent] public record struct EmpDisabledRemoved(); diff --git a/Content.Server/EntityEffects/Effects/MakeSentient.cs b/Content.Server/EntityEffects/Effects/MakeSentient.cs index c4870438486..72ef30578d9 100644 --- a/Content.Server/EntityEffects/Effects/MakeSentient.cs +++ b/Content.Server/EntityEffects/Effects/MakeSentient.cs @@ -3,6 +3,7 @@ using Content.Shared.EntityEffects; using Content.Shared.Mind.Components; using Robust.Shared.Prototypes; +using Content.Shared.ADT.Language; namespace Content.Server.EntityEffects.Effects; @@ -22,6 +23,18 @@ public override void Effect(EntityEffectBaseArgs args) entityManager.RemoveComponent<ReplacementAccentComponent>(uid); entityManager.RemoveComponent<MonkeyAccentComponent>(uid); + // Lang start + var lang = entityManager.EnsureComponent<LanguageSpeakerComponent>(uid); + if (!lang.SpokenLanguages.Contains("GalacticCommon")) + { + lang.SpokenLanguages.Add("GalacticCommon"); + } + if (!lang.UnderstoodLanguages.Contains("GalacticCommon")) + { + lang.UnderstoodLanguages.Add("GalacticCommon"); + } + // Lang end + // Stops from adding a ghost role to things like people who already have a mind if (entityManager.TryGetComponent<MindContainerComponent>(uid, out var mindContainer) && mindContainer.HasMind) { @@ -34,6 +47,7 @@ public override void Effect(EntityEffectBaseArgs args) return; } + ghostRole = entityManager.AddComponent<GhostRoleComponent>(uid); entityManager.EnsureComponent<GhostTakeoverAvailableComponent>(uid); diff --git a/Content.Server/Flash/DamagedByFlashingSystem.cs b/Content.Server/Flash/DamagedByFlashingSystem.cs index cf0368ca42a..5b4c19b8e54 100644 --- a/Content.Server/Flash/DamagedByFlashingSystem.cs +++ b/Content.Server/Flash/DamagedByFlashingSystem.cs @@ -16,7 +16,7 @@ private void OnFlashAttempt(Entity<DamagedByFlashingComponent> ent, ref FlashAtt { _damageable.TryChangeDamage(ent, ent.Comp.FlashDamage); - //To Do: It would be more logical if different flashes had different power, + //TODO: It would be more logical if different flashes had different power, //and the damage would be inflicted depending on the strength of the flash. } } diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index dce80a450fd..b68c279b3e5 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -128,7 +128,7 @@ private void OnActionPerform(EntityUid uid, GhostComponent component, BooActionE private void OnRelayMoveInput(EntityUid uid, GhostOnMoveComponent component, ref MoveInputEvent args) { // If they haven't actually moved then ignore it. - if ((args.Component.HeldMoveButtons & + if ((args.Entity.Comp.HeldMoveButtons & (MoveButtons.Down | MoveButtons.Left | MoveButtons.Up | MoveButtons.Right)) == 0x0) { return; diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index b6627f11540..8b8aa7b8c8f 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -3,7 +3,6 @@ using Content.Server.EUI; using Content.Server.Ghost.Roles.Components; using Content.Server.Ghost.Roles.Events; -using Content.Server.Ghost.Roles.Raffles; using Content.Shared.Ghost.Roles.Raffles; using Content.Server.Ghost.Roles.UI; using Content.Server.Mind.Commands; @@ -31,6 +30,7 @@ using Content.Server.Popups; using Content.Shared.Verbs; using Robust.Shared.Collections; +using Content.Shared.Ghost.Roles.Components; namespace Content.Server.Ghost.Roles { @@ -80,6 +80,7 @@ public override void Initialize() SubscribeLocalEvent<GhostRoleMobSpawnerComponent, TakeGhostRoleEvent>(OnSpawnerTakeRole); SubscribeLocalEvent<GhostTakeoverAvailableComponent, TakeGhostRoleEvent>(OnTakeoverTakeRole); SubscribeLocalEvent<GhostRoleMobSpawnerComponent, GetVerbsEvent<Verb>>(OnVerb); + SubscribeLocalEvent<GhostRoleMobSpawnerComponent, GhostRoleRadioMessage>(OnGhostRoleRadioMessage); _playerManager.PlayerStatusChanged += PlayerStatusChanged; } @@ -786,6 +787,21 @@ public void SetMode(EntityUid uid, GhostRolePrototype prototype, string verbText _popupSystem.PopupEntity(msg, uid, userUid.Value); } } + + public void OnGhostRoleRadioMessage(Entity<GhostRoleMobSpawnerComponent> entity, ref GhostRoleRadioMessage args) + { + if (!_prototype.TryIndex(args.ProtoId, out var ghostRoleProto)) + return; + + // if the prototype chosen isn't actually part of the selectable options, ignore it + foreach (var selectableProto in entity.Comp.SelectablePrototypes) + { + if (selectableProto == ghostRoleProto.EntityPrototype.Id) + return; + } + + SetMode(entity.Owner, ghostRoleProto, ghostRoleProto.Name, entity.Comp); + } } [AnyCommand] diff --git a/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs b/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs index 8354a24f90d..64e46bb608a 100644 --- a/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/ToggleableGhostRoleSystem.cs @@ -96,7 +96,7 @@ private void UpdateAppearance(EntityUid uid, ToggleableGhostRoleStatus status) private void AddWipeVerb(EntityUid uid, ToggleableGhostRoleComponent component, GetVerbsEvent<ActivationVerb> args) { - if (!args.CanAccess || !args.CanInteract) + if (args.Hands == null || !args.CanAccess || !args.CanInteract) return; if (TryComp<MindContainerComponent>(uid, out var mind) && mind.HasMind) diff --git a/Content.Server/Kitchen/Components/MicrowaveComponent.cs b/Content.Server/Kitchen/Components/MicrowaveComponent.cs index 1d26f68cae8..5337d80fd17 100644 --- a/Content.Server/Kitchen/Components/MicrowaveComponent.cs +++ b/Content.Server/Kitchen/Components/MicrowaveComponent.cs @@ -79,6 +79,9 @@ public sealed partial class MicrowaveComponent : Component public Container Storage = default!; + [DataField] + public string ContainerId = "microwave_entity_container"; + [DataField, ViewVariables(VVAccess.ReadWrite)] public int Capacity = 10; diff --git a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs index 71986ae859e..98c875e7735 100644 --- a/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/MicrowaveSystem.cs @@ -252,7 +252,7 @@ private void SubtractContents(MicrowaveComponent component, FoodRecipePrototype private void OnInit(Entity<MicrowaveComponent> ent, ref ComponentInit args) { // this really does have to be in ComponentInit - ent.Comp.Storage = _container.EnsureContainer<Container>(ent, "microwave_entity_container"); + ent.Comp.Storage = _container.EnsureContainer<Container>(ent, ent.Comp.ContainerId); } private void OnMapInit(Entity<MicrowaveComponent> ent, ref MapInitEvent args) @@ -312,6 +312,9 @@ private void OnContentUpdate(EntityUid uid, MicrowaveComponent component, Contai private void OnInsertAttempt(Entity<MicrowaveComponent> ent, ref ContainerIsInsertingAttemptEvent args) { + if (args.Container.ID != ent.Comp.ContainerId) + return; + if (ent.Comp.Broken) { args.Cancel(); diff --git a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs index 81001f0932e..b4023bbdb9f 100644 --- a/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs +++ b/Content.Server/Kitchen/EntitySystems/ReagentGrinderSystem.cs @@ -157,7 +157,7 @@ private void OnContainerModified(EntityUid uid, ReagentGrinderComponent reagentG var outputContainer = _itemSlotsSystem.GetItemOrNull(uid, SharedReagentGrinder.BeakerSlotId); _appearanceSystem.SetData(uid, ReagentGrinderVisualState.BeakerAttached, outputContainer.HasValue); - if (reagentGrinder.AutoMode != GrinderAutoMode.Off && !HasComp<ActiveReagentGrinderComponent>(uid)) + if (reagentGrinder.AutoMode != GrinderAutoMode.Off && !HasComp<ActiveReagentGrinderComponent>(uid) && this.IsPowered(uid, EntityManager)) { var program = reagentGrinder.AutoMode == GrinderAutoMode.Grind ? GrinderProgram.Grind : GrinderProgram.Juice; DoWork(uid, reagentGrinder, program); diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index 7448a9b84dd..f6e5903bbe2 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -1,23 +1,29 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using Content.Server.Administration.Logs; -using Content.Server.Atmos; using Content.Server.Atmos.EntitySystems; +using Content.Server.Fluids.EntitySystems; using Content.Server.Lathe.Components; using Content.Server.Materials; +using Content.Server.Popups; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; using Content.Server.Stack; using Content.Shared.Atmos; +using Content.Shared.Chemistry.Components; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Reagent; using Content.Shared.UserInterface; using Content.Shared.Database; using Content.Shared.Emag.Components; +using Content.Shared.Examine; using Content.Shared.Lathe; using Content.Shared.Materials; using Content.Shared.ReagentSpeed; using Content.Shared.Research.Components; using Content.Shared.Research.Prototypes; using JetBrains.Annotations; +using Robust.Server.Containers; using Robust.Server.GameObjects; using Robust.Shared.Audio.Systems; using Robust.Shared.Prototypes; @@ -34,9 +40,13 @@ public sealed class LatheSystem : SharedLatheSystem [Dependency] private readonly AtmosphereSystem _atmosphere = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly ContainerSystem _container = default!; [Dependency] private readonly UserInterfaceSystem _uiSys = default!; [Dependency] private readonly MaterialStorageSystem _materialStorage = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly PuddleSystem _puddle = default!; [Dependency] private readonly ReagentSpeedSystem _reagentSpeed = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solution = default!; [Dependency] private readonly StackSystem _stack = default!; [Dependency] private readonly TransformSystem _transform = default!; @@ -63,7 +73,6 @@ public override void Initialize() SubscribeLocalEvent<EmagLatheRecipesComponent, LatheGetRecipesEvent>(GetEmagLatheRecipes); SubscribeLocalEvent<LatheHeatProducingComponent, LatheStartPrintingEvent>(OnHeatStartPrinting); } - public override void Update(float frameTime) { var query = EntityQueryEnumerator<LatheProducingComponent, LatheComponent>(); @@ -119,7 +128,7 @@ private void OnGetWhitelist(EntityUid uid, LatheComponent component, ref GetMate { if (!_proto.TryIndex(id, out var proto)) continue; - foreach (var (mat, _) in proto.RequiredMaterials) + foreach (var (mat, _) in proto.Materials) { if (!materialWhitelist.Contains(mat)) { @@ -165,7 +174,7 @@ public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, LatheCompo if (!CanProduce(uid, recipe, 1, component)) return false; - foreach (var (mat, amount) in recipe.RequiredMaterials) + foreach (var (mat, amount) in recipe.Materials) { var adjustedAmount = recipe.ApplyMaterialDiscount ? (int) (-amount * component.MaterialUseMultiplier) @@ -211,8 +220,31 @@ public void FinishProducing(EntityUid uid, LatheComponent? comp = null, LathePro if (comp.CurrentRecipe != null) { - var result = Spawn(comp.CurrentRecipe.Result, Transform(uid).Coordinates); - _stack.TryMergeToContacts(result); + if (comp.CurrentRecipe.Result is { } resultProto) + { + var result = Spawn(resultProto, Transform(uid).Coordinates); + _stack.TryMergeToContacts(result); + } + + if (comp.CurrentRecipe.ResultReagents is { } resultReagents && + comp.ReagentOutputSlotId is { } slotId) + { + var toAdd = new Solution( + resultReagents.Select(p => new ReagentQuantity(p.Key.Id, p.Value, null))); + + // dispense it in the container if we have it and dump it if we don't + if (_container.TryGetContainer(uid, slotId, out var container) && + container.ContainedEntities.Count == 1 && + _solution.TryGetFitsInDispenser(container.ContainedEntities.First(), out var solution, out _)) + { + _solution.AddSolution(solution.Value, toAdd); + } + else + { + _popup.PopupEntity(Loc.GetString("lathe-reagent-dispense-no-container", ("name", uid)), uid); + _puddle.TrySpillAt(uid, toAdd, out _); + } + } } comp.CurrentRecipe = null; @@ -327,6 +359,7 @@ protected override bool HasRecipe(EntityUid uid, LatheRecipePrototype recipe, La { return GetAvailableRecipes(uid, component).Contains(recipe.ID); } + #region UI Messages private void OnLatheQueueRecipeMessage(EntityUid uid, LatheComponent component, LatheQueueRecipeMessage args) @@ -343,8 +376,9 @@ private void OnLatheQueueRecipeMessage(EntityUid uid, LatheComponent component, } if (count > 0) { - _adminLogger.Add(LogType.Action, LogImpact.Low, - $"{ToPrettyString(args.Actor):player} queued {count} {recipe.Name} at {ToPrettyString(uid):lathe}"); + _adminLogger.Add(LogType.Action, + LogImpact.Low, + $"{ToPrettyString(args.Actor):player} queued {count} {GetRecipeName(recipe)} at {ToPrettyString(uid):lathe}"); } } TryStartProducing(uid, component); diff --git a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs index 156088ea072..b6810aa33be 100644 --- a/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs +++ b/Content.Server/Light/EntitySystems/EmergencyLightSystem.cs @@ -3,11 +3,11 @@ using Content.Server.Light.Components; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; -using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Shared.Examine; using Content.Shared.Light; using Content.Shared.Light.Components; +using Content.Shared.Station.Components; using Robust.Server.GameObjects; using Color = Robust.Shared.Maths.Color; diff --git a/Content.Server/Lightning/LightningSystem.cs b/Content.Server/Lightning/LightningSystem.cs index 2147ac80f2e..8b0a18afb35 100644 --- a/Content.Server/Lightning/LightningSystem.cs +++ b/Content.Server/Lightning/LightningSystem.cs @@ -71,14 +71,14 @@ public void ShootLightning(EntityUid user, EntityUid target, string lightningPro /// <param name="triggerLightningEvents">if the lightnings being fired should trigger lightning events.</param> public void ShootRandomLightnings(EntityUid user, float range, int boltCount, string lightningPrototype = "Lightning", int arcDepth = 0, bool triggerLightningEvents = true) { - //To Do: add support to different priority target tablem for different lightning types - //To Do: Remove Hardcode LightningTargetComponent (this should be a parameter of the SharedLightningComponent) - //To Do: This is still pretty bad for perf but better than before and at least it doesn't re-allocate + //TODO: add support to different priority target tablem for different lightning types + //TODO: Remove Hardcode LightningTargetComponent (this should be a parameter of the SharedLightningComponent) + //TODO: This is still pretty bad for perf but better than before and at least it doesn't re-allocate // several hashsets every time - var targets = _lookup.GetComponentsInRange<LightningTargetComponent>(_transform.GetMapCoordinates(user), range).ToList(); + var targets = _lookup.GetEntitiesInRange<LightningTargetComponent>(_transform.GetMapCoordinates(user), range).ToList(); _random.Shuffle(targets); - targets.Sort((x, y) => y.Priority.CompareTo(x.Priority)); + targets.Sort((x, y) => y.Comp.Priority.CompareTo(x.Comp.Priority)); int shootedCount = 0; int count = -1; @@ -89,13 +89,13 @@ public void ShootRandomLightnings(EntityUid user, float range, int boltCount, st if (count >= targets.Count) { break; } var curTarget = targets[count]; - if (!_random.Prob(curTarget.HitProbability)) //Chance to ignore target + if (!_random.Prob(curTarget.Comp.HitProbability)) //Chance to ignore target continue; ShootLightning(user, targets[count].Owner, lightningPrototype, triggerLightningEvents); - if (arcDepth - targets[count].LightningResistance > 0) + if (arcDepth - targets[count].Comp.LightningResistance > 0) { - ShootRandomLightnings(targets[count].Owner, range, 1, lightningPrototype, arcDepth - targets[count].LightningResistance, triggerLightningEvents); + ShootRandomLightnings(targets[count].Owner, range, 1, lightningPrototype, arcDepth - targets[count].Comp.LightningResistance, triggerLightningEvents); } shootedCount++; } diff --git a/Content.Server/MagicMirror/MagicMirrorSystem.cs b/Content.Server/MagicMirror/MagicMirrorSystem.cs index 8d8a6bfa3b4..f4f889e5497 100644 --- a/Content.Server/MagicMirror/MagicMirrorSystem.cs +++ b/Content.Server/MagicMirror/MagicMirrorSystem.cs @@ -4,8 +4,12 @@ using Content.Shared.DoAfter; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; +using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Shared.Inventory; using Content.Shared.MagicMirror; +using Content.Shared.Popups; +using Content.Shared.Tag; using Robust.Shared.Audio.Systems; namespace Content.Server.MagicMirror; @@ -19,6 +23,9 @@ public sealed class MagicMirrorSystem : SharedMagicMirrorSystem [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; [Dependency] private readonly MarkingManager _markings = default!; [Dependency] private readonly HumanoidAppearanceSystem _humanoid = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; public override void Initialize() { @@ -46,9 +53,26 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.SelectSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorSelectDoAfterEvent() { Category = message.Category, @@ -56,7 +80,7 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, Marking = message.Marking, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.SelectSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnDamage = true, @@ -66,6 +90,15 @@ private void OnMagicMirrorSelect(EntityUid uid, MagicMirrorComponent component, }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -102,9 +135,26 @@ private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent com if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.ChangeSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorChangeColorDoAfterEvent() { Category = message.Category, @@ -112,7 +162,7 @@ private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent com Colors = message.Colors, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.ChangeSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -121,6 +171,15 @@ private void OnTryMagicMirrorChangeColor(EntityUid uid, MagicMirrorComponent com }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-color-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-change-color-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; } private void OnChangeColorDoAfter(EntityUid uid, MagicMirrorComponent component, MagicMirrorChangeColorDoAfterEvent args) @@ -156,16 +215,33 @@ private void OnTryMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent comp if (component.Target is not { } target) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.RemoveSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorRemoveSlotDoAfterEvent() { Category = message.Category, Slot = message.Slot, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.RemoveSlotTime, doAfter, uid, target: target, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: target, used: uid) { DistanceThreshold = SharedInteractionSystem.InteractionRange, BreakOnDamage = true, @@ -174,6 +250,15 @@ private void OnTryMagicMirrorRemoveSlot(EntityUid uid, MagicMirrorComponent comp }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-remove-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-remove-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -210,15 +295,32 @@ private void OnTryMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent compone if (component.Target == null) return; + // Check if the target getting their hair altered has any clothes that hides their hair + if (CheckHeadSlotOrClothes(message.Actor, component.Target.Value)) + { + _popup.PopupEntity( + component.Target == message.Actor + ? Loc.GetString("magic-mirror-blocked-by-hat-self") + : Loc.GetString("magic-mirror-blocked-by-hat-self-target"), + message.Actor, + message.Actor, + PopupType.Medium); + return; + } + _doAfterSystem.Cancel(component.DoAfter); component.DoAfter = null; + var doafterTime = component.AddSlotTime; + if (component.Target == message.Actor) + doafterTime /= 3; + var doAfter = new MagicMirrorAddSlotDoAfterEvent() { Category = message.Category, }; - _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, component.AddSlotTime, doAfter, uid, target: component.Target.Value, used: uid) + _doAfterSystem.TryStartDoAfter(new DoAfterArgs(EntityManager, message.Actor, doafterTime, doAfter, uid, target: component.Target.Value, used: uid) { BreakOnDamage = true, BreakOnMove = true, @@ -227,6 +329,15 @@ private void OnTryMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent compone }, out var doAfterId); + if (component.Target == message.Actor) + { + _popup.PopupEntity(Loc.GetString("magic-mirror-add-slot-self"), component.Target.Value, component.Target.Value, PopupType.Medium); + } + else + { + _popup.PopupEntity(Loc.GetString("magic-mirror-add-slot-target", ("user", Identity.Name(message.Actor, EntityManager))), component.Target.Value, component.Target.Value, PopupType.Medium); + } + component.DoAfter = doAfterId; _audio.PlayPvs(component.ChangeHairSound, uid); } @@ -265,4 +376,32 @@ private void OnUiClosed(Entity<MagicMirrorComponent> ent, ref BoundUIClosedEvent ent.Comp.Target = null; Dirty(ent); } + + /// <summary> + /// Helper function that checks if the wearer has anything on their head + /// Or if they have any clothes that hides their hair + /// </summary> + private bool CheckHeadSlotOrClothes(EntityUid user, EntityUid target) + { + if (TryComp<InventoryComponent>(target, out var inventoryComp)) + { + // any hat whatsoever will block haircutting + if (_inventory.TryGetSlotEntity(target, "head", out var hat, inventoryComp)) + { + return true; + } + + // maybe there's some kind of armor that has the HidesHair tag as well, so check every slot for it + var slots = _inventory.GetSlotEnumerator((target, inventoryComp), SlotFlags.WITHOUT_POCKET); + while (slots.MoveNext(out var slot)) + { + if (slot.ContainedEntity != null && _tagSystem.HasTag(slot.ContainedEntity.Value, "HidesHair")) + { + return true; + } + } + } + + return false; + } } diff --git a/Content.Server/Medical/VomitSystem.cs b/Content.Server/Medical/VomitSystem.cs index 8c3b15aed33..ec04a27db63 100644 --- a/Content.Server/Medical/VomitSystem.cs +++ b/Content.Server/Medical/VomitSystem.cs @@ -1,6 +1,6 @@ using Content.Server.Body.Components; using Content.Server.Body.Systems; -using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Shared.Chemistry.EntitySystems; using Content.Server.Fluids.EntitySystems; using Content.Server.Forensics; using Content.Server.Popups; @@ -24,7 +24,7 @@ public sealed class VomitSystem : EntitySystem [Dependency] private readonly HungerSystem _hunger = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly PuddleSystem _puddle = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly StunSystem _stun = default!; [Dependency] private readonly ThirstSystem _thirst = default!; [Dependency] private readonly ForensicsSystem _forensics = default!; @@ -35,7 +35,7 @@ public sealed class VomitSystem : EntitySystem public void Vomit(EntityUid uid, float thirstAdded = -40f, float hungerAdded = -40f) { // Main requirement: You have a stomach - var stomachList = _body.GetBodyOrganComponents<StomachComponent>(uid); + var stomachList = _body.GetBodyOrganEntityComps<StomachComponent>(uid); if (stomachList.Count == 0) return; @@ -58,11 +58,11 @@ public void Vomit(EntityUid uid, float thirstAdded = -40f, float hungerAdded = - // Empty the stomach out into it foreach (var stomach in stomachList) { - if (_solutionContainer.ResolveSolution(stomach.Comp.Owner, StomachSystem.DefaultSolutionName, ref stomach.Comp.Solution, out var sol)) + if (_solutionContainer.ResolveSolution(stomach.Owner, StomachSystem.DefaultSolutionName, ref stomach.Comp1.Solution, out var sol)) { solution.AddSolution(sol, _proto); sol.RemoveAllSolution(); - _solutionContainer.UpdateChemicals(stomach.Comp.Solution.Value); + _solutionContainer.UpdateChemicals(stomach.Comp1.Solution.Value); } } // Adds a tiny amount of the chem stream from earlier along with vomit @@ -79,7 +79,7 @@ public void Vomit(EntityUid uid, float thirstAdded = -40f, float hungerAdded = - vomitChemstreamAmount.ScaleSolution(chemMultiplier); solution.AddSolution(vomitChemstreamAmount, _proto); - vomitAmount -= (float) vomitChemstreamAmount.Volume; + vomitAmount -= (float)vomitChemstreamAmount.Volume; } // Makes a vomit solution the size of 90% of the chemicals removed from the chemstream diff --git a/Content.Server/Mind/Commands/MakeSentientCommand.cs b/Content.Server/Mind/Commands/MakeSentientCommand.cs index 5e19d135b6f..35244850406 100644 --- a/Content.Server/Mind/Commands/MakeSentientCommand.cs +++ b/Content.Server/Mind/Commands/MakeSentientCommand.cs @@ -6,6 +6,7 @@ using Content.Shared.Movement.Components; using Content.Shared.Speech; using Robust.Shared.Console; +using Content.Shared.ADT.Language; namespace Content.Server.Mind.Commands { @@ -55,6 +56,18 @@ public static void MakeSentient(EntityUid uid, IEntityManager entityManager, boo { entityManager.EnsureComponent<SpeechComponent>(uid); entityManager.EnsureComponent<EmotingComponent>(uid); + + // Lang start + var lang = entityManager.EnsureComponent<LanguageSpeakerComponent>(uid); + if (!lang.SpokenLanguages.Contains("GalacticCommon")) + { + lang.SpokenLanguages.Add("GalacticCommon"); + } + if (!lang.UnderstoodLanguages.Contains("GalacticCommon")) + { + lang.UnderstoodLanguages.Add("GalacticCommon"); + } + // Lang end } entityManager.EnsureComponent<ExaminerComponent>(uid); diff --git a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs index 29cfb96f977..69f84419736 100644 --- a/Content.Server/NPC/HTN/HTNCompoundPrototype.cs +++ b/Content.Server/NPC/HTN/HTNCompoundPrototype.cs @@ -12,4 +12,10 @@ public sealed partial class HTNCompoundPrototype : IPrototype [DataField("branches", required: true)] public List<HTNBranch> Branches = new(); + + /// <summary> + /// Exclude this compound task from the CompoundRecursion integration test. + /// </summary> + [DataField] + public bool AllowRecursion = false; } diff --git a/Content.Server/NPC/HTN/HTNPlanJob.cs b/Content.Server/NPC/HTN/HTNPlanJob.cs index 8158303524a..9c62f5840a7 100644 --- a/Content.Server/NPC/HTN/HTNPlanJob.cs +++ b/Content.Server/NPC/HTN/HTNPlanJob.cs @@ -63,8 +63,13 @@ public HTNPlanJob( // How many primitive tasks we've added since last record. var primitiveCount = 0; + int tasksProcessed = 0; + while (tasksToProcess.TryDequeue(out var currentTask)) { + if (tasksProcessed++ > _rootTask.MaximumTasks) + throw new Exception("HTN Planner exceeded maximum tasks"); + switch (currentTask) { case HTNCompoundTask compound: diff --git a/Content.Server/NPC/HTN/HTNTask.cs b/Content.Server/NPC/HTN/HTNTask.cs index 0f7c0a377ea..c09849d079f 100644 --- a/Content.Server/NPC/HTN/HTNTask.cs +++ b/Content.Server/NPC/HTN/HTNTask.cs @@ -3,4 +3,10 @@ namespace Content.Server.NPC.HTN; [ImplicitDataDefinitionForInheritors] public abstract partial class HTNTask { + /// <summary> + /// Limit the amount of tasks the planner considers. Exceeding this value sleeps the NPC and throws an exception. + /// The expected way to hit this limit is with badly written recursive tasks. + /// </summary> + [DataField] + public int MaximumTasks = 1000; } diff --git a/Content.Server/NPC/HTN/Preconditions/HandcuffedPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/HandcuffedPrecondition.cs new file mode 100644 index 00000000000..4a56eeb9539 --- /dev/null +++ b/Content.Server/NPC/HTN/Preconditions/HandcuffedPrecondition.cs @@ -0,0 +1,26 @@ +using Content.Server.Cuffs; +using Content.Shared.Cuffs.Components; + +namespace Content.Server.NPC.HTN.Preconditions; + +public sealed partial class HandcuffedPrecondition : HTNPrecondition +{ + [Dependency] private readonly IEntityManager _entManager = default!; + + [DataField] + public bool ReactOnlyWhenFullyCuffed = true; + + public override bool IsMet(NPCBlackboard blackboard) + { + var cuffable = _entManager.System<CuffableSystem>(); + var owner = blackboard.GetValue<EntityUid>(NPCBlackboard.Owner); + + if (!_entManager.TryGetComponent<CuffableComponent>(owner, out var cuffComp)) + return false; + + var target = (owner, cuffComp); + + return cuffable.IsCuffed(target, ReactOnlyWhenFullyCuffed); + } + +} diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs index 8e3ab5238a3..7d6f0005730 100644 --- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs +++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Interactions/InteractWithOperator.cs @@ -1,5 +1,6 @@ using Content.Server.Interaction; using Content.Shared.CombatMode; +using Content.Shared.DoAfter; using Content.Shared.Timing; namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Interactions; @@ -7,6 +8,13 @@ namespace Content.Server.NPC.HTN.PrimitiveTasks.Operators.Interactions; public sealed partial class InteractWithOperator : HTNOperator { [Dependency] private readonly IEntityManager _entManager = default!; + private SharedDoAfterSystem _doAfterSystem = default!; + + public override void Initialize(IEntitySystemManager sysManager) + { + base.Initialize(sysManager); + _doAfterSystem = sysManager.GetEntitySystem<SharedDoAfterSystem>(); + } /// <summary> /// Key that contains the target entity. @@ -14,10 +22,53 @@ public sealed partial class InteractWithOperator : HTNOperator [DataField(required: true)] public string TargetKey = default!; + /// <summary> + /// Exit with failure if doafter wasn't raised + /// </summary> + [DataField] + public bool ExpectDoAfter = false; + + public string CurrentDoAfter = "CurrentInteractWithDoAfter"; + + + // Ensure that CurrentDoAfter doesn't exist as we enter this operator, + // the code currently relies on the result of a TryGetValue + public override void Startup(NPCBlackboard blackboard) + { + blackboard.Remove<ushort>(CurrentDoAfter); + + } + + // Not really sure if we should clean it up, I guess some operator could use it + public override void TaskShutdown(NPCBlackboard blackboard, HTNOperatorStatus status) + { + blackboard.Remove<ushort>(CurrentDoAfter); + } + public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTime) { var owner = blackboard.GetValue<EntityUid>(NPCBlackboard.Owner); + // Handle ongoing doAfter, and store the doAfter.nextId so we can detect if we started one + ushort nextId = 0; + if (_entManager.TryGetComponent<DoAfterComponent>(owner, out var doAfter)) + { + // if CurrentDoAfter contains something, we have an active doAfter + if (blackboard.TryGetValue<ushort>(CurrentDoAfter, out var doAfterId, _entManager)) + { + var status = _doAfterSystem.GetStatus(owner, doAfterId, null); + return status switch + { + DoAfterStatus.Running => HTNOperatorStatus.Continuing, + DoAfterStatus.Finished => HTNOperatorStatus.Finished, + _ => HTNOperatorStatus.Failed + }; + } + + nextId = doAfter.NextId; + } + + if (_entManager.TryGetComponent<UseDelayComponent>(owner, out var useDelay) && _entManager.System<UseDelaySystem>().IsDelayed((owner, useDelay)) || !blackboard.TryGetValue<EntityUid>(TargetKey, out var moveTarget, _entManager) || !_entManager.TryGetComponent<TransformComponent>(moveTarget, out var targetXform)) @@ -31,6 +82,18 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi } _entManager.System<InteractionSystem>().UserInteraction(owner, targetXform.Coordinates, moveTarget); + + // Detect doAfter, save it, and don't exit from this operator + if (doAfter != null && nextId != doAfter.NextId) + { + blackboard.SetValue(CurrentDoAfter, nextId); + return HTNOperatorStatus.Continuing; + } + + // We shouldn't arrive here if we start a doafter, so fail if we expected a doafter + if(ExpectDoAfter) + return HTNOperatorStatus.Failed; + return HTNOperatorStatus.Finished; } } diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index d9122ff278c..ab4ce450d88 100644 --- a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs @@ -211,6 +211,7 @@ private bool TryDrink(EntityUid user, EntityUid target, DrinkComponent drink, En target: target, used: item) { + BreakOnHandChange = false, BreakOnMove = forceDrink, BreakOnDamage = true, MovementThreshold = 0.01f, @@ -257,7 +258,7 @@ private void OnDoAfter(Entity<DrinkComponent> entity, ref ConsumeDoAfterEvent ar if (transferAmount <= 0) return; - if (!_body.TryGetBodyOrganComponents<StomachComponent>(args.Target.Value, out var stomachs, body)) + if (!_body.TryGetBodyOrganEntityComps<StomachComponent>((args.Target.Value, body), out var stomachs)) { _popup.PopupEntity(Loc.GetString(forceDrink ? "drink-component-try-use-drink-cannot-drink-other" : "drink-component-try-use-drink-had-enough"), args.Target.Value, args.User); @@ -271,7 +272,7 @@ private void OnDoAfter(Entity<DrinkComponent> entity, ref ConsumeDoAfterEvent ar return; } - var firstStomach = stomachs.FirstOrNull(stomach => _stomach.CanTransferSolution(stomach.Comp.Owner, drained, stomach.Comp)); + var firstStomach = stomachs.FirstOrNull(stomach => _stomach.CanTransferSolution(stomach.Owner, drained, stomach.Comp1)); //All stomachs are full or can't handle whatever solution we have. if (firstStomach == null) @@ -320,8 +321,7 @@ private void OnDoAfter(Entity<DrinkComponent> entity, ref ConsumeDoAfterEvent ar _audio.PlayPvs(entity.Comp.UseSound, args.Target.Value, AudioParams.Default.WithVolume(-2f)); _reaction.DoEntityReaction(args.Target.Value, solution, ReactionMethod.Ingestion); - //TODO: Grab the stomach UIDs somehow without using Owner - _stomach.TryTransferSolution(firstStomach.Value.Comp.Owner, drained, firstStomach.Value.Comp); + _stomach.TryTransferSolution(firstStomach.Value.Owner, drained, firstStomach.Value.Comp1); _forensics.TransferDna(entity, args.Target.Value); @@ -335,7 +335,7 @@ private void AddDrinkVerb(Entity<DrinkComponent> entity, ref GetVerbsEvent<Alter !ev.CanInteract || !ev.CanAccess || !TryComp<BodyComponent>(ev.User, out var body) || - !_body.TryGetBodyOrganComponents<StomachComponent>(ev.User, out var stomachs, body)) + !_body.TryGetBodyOrganEntityComps<StomachComponent>((ev.User, body), out var stomachs)) return; // Make sure the solution exists diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index d609f737e72..53c1b399821 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -1,6 +1,6 @@ using Content.Server.Body.Components; using Content.Server.Body.Systems; -using Content.Server.Chemistry.Containers.EntitySystems; +using Content.Shared.Chemistry.EntitySystems; using Content.Server.Inventory; using Content.Server.Nutrition.Components; using Content.Shared.Nutrition.Components; @@ -53,7 +53,7 @@ public sealed class FoodSystem : EntitySystem [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedHandsSystem _hands = default!; [Dependency] private readonly SharedInteractionSystem _interaction = default!; - [Dependency] private readonly SolutionContainerSystem _solutionContainer = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; [Dependency] private readonly TransformSystem _transform = default!; [Dependency] private readonly StackSystem _stack = default!; [Dependency] private readonly StomachSystem _stomach = default!; @@ -121,7 +121,7 @@ private void OnFeedFood(Entity<FoodComponent> entity, ref AfterInteractEvent arg if (!_solutionContainer.TryGetSolution(food, foodComp.Solution, out _, out var foodSolution)) return (false, false); - if (!_body.TryGetBodyOrganComponents<StomachComponent>(target, out var stomachs, body)) + if (!_body.TryGetBodyOrganEntityComps<StomachComponent>((target, body), out var stomachs)) return (false, false); // Check for special digestibles @@ -182,12 +182,12 @@ private void OnFeedFood(Entity<FoodComponent> entity, ref AfterInteractEvent arg user, target); // logging - _adminLogger.Add(LogType.ForceFeed, LogImpact.Medium, $"{ToPrettyString(user):user} is forcing {ToPrettyString(target):target} to eat {ToPrettyString(food):food} {SolutionContainerSystem.ToPrettyString(foodSolution)}"); + _adminLogger.Add(LogType.ForceFeed, LogImpact.Medium, $"{ToPrettyString(user):user} is forcing {ToPrettyString(target):target} to eat {ToPrettyString(food):food} {SharedSolutionContainerSystem.ToPrettyString(foodSolution)}"); } else { // log voluntary eating - _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(target):target} is eating {ToPrettyString(food):food} {SolutionContainerSystem.ToPrettyString(foodSolution)}"); + _adminLogger.Add(LogType.Ingestion, LogImpact.Low, $"{ToPrettyString(target):target} is eating {ToPrettyString(food):food} {SharedSolutionContainerSystem.ToPrettyString(foodSolution)}"); } var doAfterArgs = new DoAfterArgs(EntityManager, @@ -198,6 +198,7 @@ private void OnFeedFood(Entity<FoodComponent> entity, ref AfterInteractEvent arg target: target, used: food) { + BreakOnHandChange = false, BreakOnMove = forceFeed, BreakOnDamage = true, MovementThreshold = 0.01f, @@ -219,7 +220,7 @@ private void OnDoAfter(Entity<FoodComponent> entity, ref ConsumeDoAfterEvent arg if (!TryComp<BodyComponent>(args.Target.Value, out var body)) return; - if (!_body.TryGetBodyOrganComponents<StomachComponent>(args.Target.Value, out var stomachs, body)) + if (!_body.TryGetBodyOrganEntityComps<StomachComponent>((args.Target.Value, body), out var stomachs)) return; if (args.Used is null || !_solutionContainer.TryGetSolution(args.Used.Value, args.Solution, out var soln, out var solution)) @@ -243,23 +244,22 @@ private void OnDoAfter(Entity<FoodComponent> entity, ref ConsumeDoAfterEvent arg var split = _solutionContainer.SplitSolution(soln.Value, transferAmount); - //TODO: Get the stomach UID somehow without nabbing owner // Get the stomach with the highest available solution volume var highestAvailable = FixedPoint2.Zero; - StomachComponent? stomachToUse = null; - foreach (var (stomach, _) in stomachs) + Entity<StomachComponent>? stomachToUse = null; + foreach (var ent in stomachs) { - var owner = stomach.Owner; - if (!_stomach.CanTransferSolution(owner, split, stomach)) + var owner = ent.Owner; + if (!_stomach.CanTransferSolution(owner, split, ent.Comp1)) continue; - if (!_solutionContainer.ResolveSolution(owner, StomachSystem.DefaultSolutionName, ref stomach.Solution, out var stomachSol)) + if (!_solutionContainer.ResolveSolution(owner, StomachSystem.DefaultSolutionName, ref ent.Comp1.Solution, out var stomachSol)) continue; if (stomachSol.AvailableVolume <= highestAvailable) continue; - stomachToUse = stomach; + stomachToUse = ent; highestAvailable = stomachSol.AvailableVolume; } @@ -272,7 +272,7 @@ private void OnDoAfter(Entity<FoodComponent> entity, ref ConsumeDoAfterEvent arg } _reaction.DoEntityReaction(args.Target.Value, solution, ReactionMethod.Ingestion); - _stomach.TryTransferSolution(stomachToUse.Owner, split, stomachToUse); + _stomach.TryTransferSolution(stomachToUse!.Value.Owner, split, stomachToUse); var flavors = args.FlavorMessage; @@ -364,7 +364,7 @@ private void AddEatVerb(Entity<FoodComponent> entity, ref GetVerbsEvent<Alternat !ev.CanInteract || !ev.CanAccess || !TryComp<BodyComponent>(ev.User, out var body) || - !_body.TryGetBodyOrganComponents<StomachComponent>(ev.User, out var stomachs, body)) + !_body.TryGetBodyOrganEntityComps<StomachComponent>((ev.User, body), out var stomachs)) return; // have to kill mouse before eating it @@ -398,7 +398,7 @@ public bool IsDigestibleBy(EntityUid uid, EntityUid food, FoodComponent? foodCom if (!Resolve(food, ref foodComp, false)) return false; - if (!_body.TryGetBodyOrganComponents<StomachComponent>(uid, out var stomachs)) + if (!_body.TryGetBodyOrganEntityComps<StomachComponent>(uid, out var stomachs)) return false; return IsDigestibleBy(food, foodComp, stomachs); @@ -408,7 +408,7 @@ public bool IsDigestibleBy(EntityUid uid, EntityUid food, FoodComponent? foodCom /// Returns true if <paramref name="stomachs"/> has a <see cref="StomachComponent.SpecialDigestible"/> that whitelists /// this <paramref name="food"/> (or if they even have enough stomachs in the first place). /// </summary> - private bool IsDigestibleBy(EntityUid food, FoodComponent component, List<(StomachComponent, OrganComponent)> stomachs) + private bool IsDigestibleBy(EntityUid food, FoodComponent component, List<Entity<StomachComponent, OrganComponent>> stomachs) { var digestible = true; @@ -417,13 +417,13 @@ private bool IsDigestibleBy(EntityUid food, FoodComponent component, List<(Stoma return false; // Run through the mobs' stomachs - foreach (var (comp, _) in stomachs) + foreach (var ent in stomachs) { // Find a stomach with a SpecialDigestible - if (comp.SpecialDigestible == null) + if (ent.Comp1.SpecialDigestible == null) continue; // Check if the food is in the whitelist - if (_whitelistSystem.IsWhitelistPass(comp.SpecialDigestible, food)) + if (_whitelistSystem.IsWhitelistPass(ent.Comp1.SpecialDigestible, food)) return true; // They can only eat whitelist food and the food isn't in the whitelist. It's not edible. return false; diff --git a/Content.Server/Physics/Components/ChasingWalkComponent.cs b/Content.Server/Physics/Components/ChasingWalkComponent.cs index 222c9d64db8..819fd809399 100644 --- a/Content.Server/Physics/Components/ChasingWalkComponent.cs +++ b/Content.Server/Physics/Components/ChasingWalkComponent.cs @@ -65,7 +65,7 @@ public sealed partial class ChasingWalkComponent : Component /// The component that the entity is chasing /// </summary> [DataField(required: true)] - public ComponentRegistry ChasingComponent = default!; + public ComponentRegistry ChasingComponent = []; /// <summary> /// The maximum radius in which the entity chooses the target component to follow diff --git a/Content.Server/Physics/Controllers/ChasingWalkSystem.cs b/Content.Server/Physics/Controllers/ChasingWalkSystem.cs index 618dd4156fc..fa55ce024e4 100644 --- a/Content.Server/Physics/Controllers/ChasingWalkSystem.cs +++ b/Content.Server/Physics/Controllers/ChasingWalkSystem.cs @@ -61,6 +61,9 @@ public override void UpdateBeforeSolve(bool prediction, float frameTime) private void ChangeTarget(EntityUid uid, ChasingWalkComponent component) { + if (component.ChasingComponent.Count <= 0) + return; + //We find our coordinates and calculate the radius of the target search. var xform = Transform(uid); var range = component.MaxChaseRadius; diff --git a/Content.Server/Physics/Controllers/MoverController.cs b/Content.Server/Physics/Controllers/MoverController.cs index 6edc202d153..8b6839ddd0e 100644 --- a/Content.Server/Physics/Controllers/MoverController.cs +++ b/Content.Server/Physics/Controllers/MoverController.cs @@ -30,26 +30,26 @@ public override void Initialize() SubscribeLocalEvent<InputMoverComponent, PlayerDetachedEvent>(OnPlayerDetached); } - private void OnRelayPlayerAttached(EntityUid uid, RelayInputMoverComponent component, PlayerAttachedEvent args) + private void OnRelayPlayerAttached(Entity<RelayInputMoverComponent> entity, ref PlayerAttachedEvent args) { - if (MoverQuery.TryGetComponent(component.RelayEntity, out var inputMover)) - SetMoveInput(inputMover, MoveButtons.None); + if (MoverQuery.TryGetComponent(entity.Comp.RelayEntity, out var inputMover)) + SetMoveInput((entity.Owner, inputMover), MoveButtons.None); } - private void OnRelayPlayerDetached(EntityUid uid, RelayInputMoverComponent component, PlayerDetachedEvent args) + private void OnRelayPlayerDetached(Entity<RelayInputMoverComponent> entity, ref PlayerDetachedEvent args) { - if (MoverQuery.TryGetComponent(component.RelayEntity, out var inputMover)) - SetMoveInput(inputMover, MoveButtons.None); + if (MoverQuery.TryGetComponent(entity.Comp.RelayEntity, out var inputMover)) + SetMoveInput((entity.Owner, inputMover), MoveButtons.None); } - private void OnPlayerAttached(EntityUid uid, InputMoverComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(Entity<InputMoverComponent> entity, ref PlayerAttachedEvent args) { - SetMoveInput(component, MoveButtons.None); + SetMoveInput(entity, MoveButtons.None); } - private void OnPlayerDetached(EntityUid uid, InputMoverComponent component, PlayerDetachedEvent args) + private void OnPlayerDetached(Entity<InputMoverComponent> entity, ref PlayerDetachedEvent args) { - SetMoveInput(component, MoveButtons.None); + SetMoveInput(entity, MoveButtons.None); } protected override bool CanSound() diff --git a/Content.Server/Power/EntitySystems/ChargerSystem.cs b/Content.Server/Power/EntitySystems/ChargerSystem.cs index 038295eac11..d4997f62a28 100644 --- a/Content.Server/Power/EntitySystems/ChargerSystem.cs +++ b/Content.Server/Power/EntitySystems/ChargerSystem.cs @@ -43,7 +43,34 @@ private void OnStartup(EntityUid uid, ChargerComponent component, ComponentStart private void OnChargerExamine(EntityUid uid, ChargerComponent component, ExaminedEvent args) { - args.PushMarkup(Loc.GetString("charger-examine", ("color", "yellow"), ("chargeRate", (int) component.ChargeRate))); + using (args.PushGroup(nameof(ChargerComponent))) + { + // rate at which the charger charges + args.PushMarkup(Loc.GetString("charger-examine", ("color", "yellow"), ("chargeRate", (int) component.ChargeRate))); + + // try to get contents of the charger + if (!_container.TryGetContainer(uid, component.SlotId, out var container)) + return; + + // if charger is empty and not a power cell type charger, add empty message + // power cells have their own empty message by default, for things like flash lights + if (container.ContainedEntities.Count == 0 && !HasComp<PowerCellSlotComponent>(uid)) + { + args.PushMarkup(Loc.GetString("charger-empty")); + } + else + { + // add how much each item is charged it + foreach (var contained in container.ContainedEntities) + { + if (!TryComp<BatteryComponent>(contained, out var battery)) + continue; + + var chargePercentage = (battery.CurrentCharge / battery.MaxCharge) * 100; + args.PushMarkup(Loc.GetString("charger-content", ("chargePercentage", (int) chargePercentage))); + } + } + } } public override void Update(float frameTime) diff --git a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs index 35b17dc9584..a07d590461e 100644 --- a/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerMonitoringConsoleSystem.cs @@ -4,10 +4,10 @@ using Content.Server.Power.Components; using Content.Server.Power.Nodes; using Content.Server.Power.NodeGroups; -using Content.Server.Station.Components; using Content.Server.StationEvents.Components; using Content.Shared.GameTicking.Components; using Content.Shared.Pinpointer; +using Content.Shared.Station.Components; using Content.Shared.Power; using JetBrains.Annotations; using Robust.Server.GameObjects; diff --git a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs index 191d3fc4bdb..9b15bdfd287 100644 --- a/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs +++ b/Content.Server/Power/EntitySystems/PowerReceiverSystem.cs @@ -46,6 +46,11 @@ public override void Initialize() _provQuery = GetEntityQuery<ApcPowerProviderComponent>(); } + private void OnExamined(Entity<ApcPowerReceiverComponent> ent, ref ExaminedEvent args) + { + args.PushMarkup(GetExamineText(ent.Comp.Powered)); + } + private void OnGetVerbs(EntityUid uid, ApcPowerReceiverComponent component, GetVerbsEvent<Verb> args) { if (!_adminManager.HasAdminFlag(args.User, AdminFlags.Admin)) @@ -61,17 +66,6 @@ private void OnGetVerbs(EntityUid uid, ApcPowerReceiverComponent component, GetV }); } - ///<summary> - ///Adds some markup to the examine text of whatever object is using this component to tell you if it's powered or not, even if it doesn't have an icon state to do this for you. - ///</summary> - private void OnExamined(EntityUid uid, ApcPowerReceiverComponent component, ExaminedEvent args) - { - args.PushMarkup(Loc.GetString("power-receiver-component-on-examine-main", - ("stateText", Loc.GetString( component.Powered - ? "power-receiver-component-on-examine-powered" - : "power-receiver-component-on-examine-unpowered")))); - } - private void OnProviderShutdown(EntityUid uid, ApcPowerProviderComponent component, ComponentShutdown args) { foreach (var receiver in component.LinkedReceivers) diff --git a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs index 88e0a48f4aa..db6b1e3d13d 100644 --- a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs @@ -276,7 +276,6 @@ public bool TryGetCachedPreferences(NetUserId userId, /// <summary> /// Retrieves preferences for the given username from storage. - /// Creates and saves default preferences if they are not found, then returns them. /// </summary> public PlayerPreferences GetPreferences(NetUserId userId) { @@ -291,7 +290,6 @@ public PlayerPreferences GetPreferences(NetUserId userId) /// <summary> /// Retrieves preferences for the given username from storage or returns null. - /// Creates and saves default preferences if they are not found, then returns them. /// </summary> public PlayerPreferences? GetPreferencesOrNull(NetUserId? userId) { diff --git a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs index d18b044205c..f62ae1f5b3d 100644 --- a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs +++ b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Radio.EntitySystems; using Robust.Shared.Network; using Robust.Shared.Player; +using Content.Server.ADT.Language; // ADT Languages namespace Content.Server.Radio.EntitySystems; @@ -14,6 +15,7 @@ public sealed class HeadsetSystem : SharedHeadsetSystem { [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly RadioSystem _radio = default!; + [Dependency] private readonly LanguageSystem _language = default!; // ADT Languages public override void Initialize() { @@ -100,7 +102,14 @@ public void SetEnabled(EntityUid uid, bool value, HeadsetComponent? component = private void OnHeadsetReceive(EntityUid uid, HeadsetComponent component, ref RadioReceiveEvent args) { if (TryComp(Transform(uid).ParentUid, out ActorComponent? actor)) - _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.Channel); + { + // ADT Languages start + if (_language.CanUnderstand(Transform(uid).ParentUid, args.Language)) + _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.Channel); + else + _netMan.ServerSendMessage(args.UnknownLanguageChatMsg, actor.PlayerSession.Channel); + // ADT Languages end + } } private void OnEmpPulse(EntityUid uid, HeadsetComponent component, ref EmpPulseEvent args) diff --git a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs index 1258e0b8c7e..05db1e21e36 100644 --- a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using Content.Server.Chat.Systems; using Content.Server.Interaction; +using Content.Server.ADT.Language; // ADT Languages using Content.Server.Popups; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; @@ -26,6 +27,7 @@ public sealed class RadioDeviceSystem : EntitySystem [Dependency] private readonly RadioSystem _radio = default!; [Dependency] private readonly InteractionSystem _interaction = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly LanguageSystem _language = default!; // ADT Languages // Used to prevent a shitter from using a bunch of radios to spam chat. private HashSet<(string, EntityUid)> _recentlySent = new(); @@ -215,7 +217,7 @@ private void OnReceiveRadio(EntityUid uid, RadioSpeakerComponent component, ref ("originalName", nameEv.Name)); // log to chat so people can identity the speaker/source, but avoid clogging ghost chat if there are many radios - _chat.TrySendInGameICMessage(uid, args.Message, InGameICChatType.Whisper, ChatTransmitRange.GhostRangeLimit, nameOverride: name, checkRadioPrefix: false); + _chat.TrySendInGameICMessage(uid, args.Message, InGameICChatType.Whisper, ChatTransmitRange.GhostRangeLimit, nameOverride: name, checkRadioPrefix: false, language: args.Language); // ADT Languages } private void OnIntercomEncryptionChannelsChanged(Entity<IntercomComponent> ent, ref EncryptionChannelsChangedEvent args) diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index 3ad101e62db..68bcc859489 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -15,6 +15,8 @@ using Robust.Shared.Random; using Robust.Shared.Replays; using Robust.Shared.Utility; +using Content.Server.ADT.Language; // ADT Languages +using Content.Shared.ADT.Language; // ADT Languages namespace Content.Server.Radio.EntitySystems; @@ -29,6 +31,7 @@ public sealed class RadioSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototype = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly LanguageSystem _language = default!; // ADT Languages // set used to prevent radio feedback loops. private readonly HashSet<string> _messages = new(); @@ -56,7 +59,14 @@ private void OnIntrinsicSpeak(EntityUid uid, IntrinsicRadioTransmitterComponent private void OnIntrinsicReceive(EntityUid uid, IntrinsicRadioReceiverComponent component, ref RadioReceiveEvent args) { if (TryComp(uid, out ActorComponent? actor)) - _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.Channel); + { + // ADT Languages start + if (_language.CanUnderstand(uid, args.Language)) + _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.Channel); + else + _netMan.ServerSendMessage(args.UnknownLanguageChatMsg, actor.PlayerSession.Channel); + // ADT Languages end + } } /// <summary> @@ -72,12 +82,14 @@ public void SendRadioMessage(EntityUid messageSource, string message, ProtoId<Ra /// </summary> /// <param name="messageSource">Entity that spoke the message</param> /// <param name="radioSource">Entity that picked up the message and will send it, e.g. headset</param> - public void SendRadioMessage(EntityUid messageSource, string message, RadioChannelPrototype channel, EntityUid radioSource, bool escapeMarkup = true) + public void SendRadioMessage(EntityUid messageSource, string message, RadioChannelPrototype channel, EntityUid radioSource, bool escapeMarkup = true, LanguagePrototype? languageOverride = null) { // TODO if radios ever garble / modify messages, feedback-prevention needs to be handled better than this. if (!_messages.Add(message)) return; + var language = languageOverride ?? _language.GetCurrentLanguage(messageSource); + var name = TryComp(messageSource, out VoiceMaskComponent? mask) && mask.Enabled ? mask.VoiceName : MetaData(messageSource).EntityName; @@ -99,6 +111,16 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann ? FormattedMessage.EscapeText(message) : message; + // ADT Languages start + var languageEncodedContent = _language.ObfuscateMessage(messageSource, content, language); + + if (language.Color != null) + { + content = "[color=" + language.Color.Value.ToHex().ToString() + "]" + FormattedMessage.EscapeText(content) + "[/color]"; + languageEncodedContent = "[color=" + language.Color.Value.ToHex().ToString() + "]" + FormattedMessage.EscapeText(languageEncodedContent) + "[/color]"; + } + // ADT Languages end + var wrappedMessage = Loc.GetString(speech.Bold ? "chat-radio-message-wrap-bold" : "chat-radio-message-wrap", ("color", channel.Color), ("fontType", speech.FontId), @@ -108,6 +130,17 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann ("name", name), ("message", content)); + // ADT Languages start + var wrappedEncodedMessage = Loc.GetString(speech.Bold ? "chat-radio-message-wrap-bold" : "chat-radio-message-wrap", + ("color", channel.Color), + ("fontType", speech.FontId), + ("fontSize", speech.FontSize), + ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))), + ("channel", $"\\[{channel.LocalizedName}\\]"), + ("name", name), + ("message", languageEncodedContent)); + // ADT Languages end + // most radios are relayed to chat, so lets parse the chat message beforehand var chat = new ChatMessage( ChatChannel.Radio, @@ -115,8 +148,20 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann wrappedMessage, NetEntity.Invalid, null); + + // ADT Languages start + var encodedChat = new ChatMessage( + ChatChannel.Radio, + message, + wrappedEncodedMessage, + NetEntity.Invalid, + null); + // ADT Languages end + var chatMsg = new MsgChatMessage { Message = chat }; - var ev = new RadioReceiveEvent(message, messageSource, channel, radioSource, chatMsg); + var encodedChatMsg = new MsgChatMessage { Message = encodedChat }; // ADT Languages + + var ev = new RadioReceiveEvent(message, messageSource, channel, radioSource, chatMsg, encodedChatMsg, language); // ADT Languages var sendAttemptEv = new RadioSendAttemptEvent(channel, radioSource); RaiseLocalEvent(ref sendAttemptEv); diff --git a/Content.Server/Radio/RadioEvent.cs b/Content.Server/Radio/RadioEvent.cs index fafa66674e3..4cdc4213e2f 100644 --- a/Content.Server/Radio/RadioEvent.cs +++ b/Content.Server/Radio/RadioEvent.cs @@ -1,10 +1,11 @@ using Content.Shared.Chat; using Content.Shared.Radio; +using Content.Shared.ADT.Language; // ADT Languages namespace Content.Server.Radio; [ByRefEvent] -public readonly record struct RadioReceiveEvent(string Message, EntityUid MessageSource, RadioChannelPrototype Channel, EntityUid RadioSource, MsgChatMessage ChatMsg); +public readonly record struct RadioReceiveEvent(string Message, EntityUid MessageSource, RadioChannelPrototype Channel, EntityUid RadioSource, MsgChatMessage ChatMsg, MsgChatMessage UnknownLanguageChatMsg, LanguagePrototype Language); // ADT Languages /// <summary> /// Use this event to cancel sending message per receiver diff --git a/Content.Server/Resist/ResistLockerSystem.cs b/Content.Server/Resist/ResistLockerSystem.cs index 2ab277d0f1a..8294ecc5f9d 100644 --- a/Content.Server/Resist/ResistLockerSystem.cs +++ b/Content.Server/Resist/ResistLockerSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Resist; using Content.Shared.Tools.Components; using Content.Shared.Tools.Systems; +using Content.Shared.ActionBlocker; namespace Content.Server.Resist; @@ -18,6 +19,7 @@ public sealed class ResistLockerSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly WeldableSystem _weldable = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public override void Initialize() { @@ -34,6 +36,9 @@ private void OnRelayMovement(EntityUid uid, ResistLockerComponent component, ref if (!TryComp(uid, out EntityStorageComponent? storageComponent)) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + if (TryComp<LockComponent>(uid, out var lockComponent) && lockComponent.Locked || _weldable.IsWelded(uid)) { AttemptResist(args.Entity, uid, storageComponent, component); diff --git a/Content.Server/Respawn/SpecialRespawnSystem.cs b/Content.Server/Respawn/SpecialRespawnSystem.cs index 6c7bb5c9234..bdaa4a40bc1 100644 --- a/Content.Server/Respawn/SpecialRespawnSystem.cs +++ b/Content.Server/Respawn/SpecialRespawnSystem.cs @@ -2,7 +2,7 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Chat.Managers; using Content.Server.GameTicking; -using Content.Server.Station.Components; +using Content.Shared.Station.Components; using Content.Server.Station.Systems; using Content.Shared.Database; using Content.Shared.Maps; diff --git a/Content.Server/Shuttles/Components/GridSpawnComponent.cs b/Content.Server/Shuttles/Components/GridSpawnComponent.cs index d8144354b8e..430c9c8df28 100644 --- a/Content.Server/Shuttles/Components/GridSpawnComponent.cs +++ b/Content.Server/Shuttles/Components/GridSpawnComponent.cs @@ -26,6 +26,11 @@ public interface IGridSpawnGroup /// </summary> public float MinimumDistance { get; } + /// <summary> + /// Maximum distance to spawn away from the station. + /// </summary> + public float MaximumDistance { get; } + /// <inheritdoc /> public ProtoId<DatasetPrototype>? NameDataset { get; } @@ -67,6 +72,8 @@ public sealed class DungeonSpawnGroup : IGridSpawnGroup /// <inheritdoc /> public float MinimumDistance { get; } + public float MaximumDistance { get; } + /// <inheritdoc /> public ProtoId<DatasetPrototype>? NameDataset { get; } @@ -94,7 +101,11 @@ public sealed class GridSpawnGroup : IGridSpawnGroup { public List<ResPath> Paths = new(); + /// <inheritdoc /> public float MinimumDistance { get; } + + /// <inheritdoc /> + public float MaximumDistance { get; } public ProtoId<DatasetPrototype>? NameDataset { get; } public int MinCount { get; set; } = 1; public int MaxCount { get; set; } = 1; diff --git a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs index 47ccc3c3c41..0cbbc46a4fd 100644 --- a/Content.Server/Shuttles/Systems/ArrivalsSystem.cs +++ b/Content.Server/Shuttles/Systems/ArrivalsSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using System.Numerics; using Content.Server.Administration; +using Content.Server.Chat.Managers; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; using Content.Server.GameTicking; @@ -28,6 +29,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -46,6 +48,7 @@ public sealed class ArrivalsSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly BiomeSystem _biomes = default!; [Dependency] private readonly GameTicker _ticker = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; @@ -54,6 +57,7 @@ public sealed class ArrivalsSystem : EntitySystem [Dependency] private readonly ShuttleSystem _shuttles = default!; [Dependency] private readonly StationSpawningSystem _stationSpawning = default!; [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly ActorSystem _actor = default!; private EntityQuery<PendingClockInComponent> _pendingQuery; private EntityQuery<ArrivalsBlacklistComponent> _blacklistQuery; @@ -293,16 +297,20 @@ private void OnArrivalsDocked(EntityUid uid, ArrivalsShuttleComponent component, private void DumpChildren(EntityUid uid, ref FTLStartedEvent args) { var toDump = new List<Entity<TransformComponent>>(); - DumpChildren(uid, ref args, toDump); + FindDumpChildren(uid, toDump); foreach (var (ent, xform) in toDump) { var rotation = xform.LocalRotation; _transform.SetCoordinates(ent, new EntityCoordinates(args.FromMapUid!.Value, Vector2.Transform(xform.LocalPosition, args.FTLFrom))); _transform.SetWorldRotation(ent, args.FromRotation + rotation); + if (_actor.TryGetSession(ent, out var session)) + { + _chat.DispatchServerMessage(session!, Loc.GetString("latejoin-arrivals-dumped-from-shuttle")); + } } } - private void DumpChildren(EntityUid uid, ref FTLStartedEvent args, List<Entity<TransformComponent>> toDump) + private void FindDumpChildren(EntityUid uid, List<Entity<TransformComponent>> toDump) { if (_pendingQuery.HasComponent(uid)) return; @@ -318,7 +326,7 @@ private void DumpChildren(EntityUid uid, ref FTLStartedEvent args, List<Entity<T var children = xform.ChildEnumerator; while (children.MoveNext(out var child)) { - DumpChildren(child, ref args, toDump); + FindDumpChildren(child, toDump); } } @@ -392,6 +400,10 @@ private bool TryTeleportToMapSpawn(EntityUid player, EntityUid stationId, Transf { // Move the player to a random late-join spawnpoint. _transform.SetCoordinates(player, transform, _random.Pick(possiblePositions)); + if (_actor.TryGetSession(player, out var session)) + { + _chat.DispatchServerMessage(session!, Loc.GetString("latejoin-arrivals-teleport-to-spawn")); + } return true; } diff --git a/Content.Server/Shuttles/Systems/DockingSystem.cs b/Content.Server/Shuttles/Systems/DockingSystem.cs index 59a030e83c9..f46c3980e58 100644 --- a/Content.Server/Shuttles/Systems/DockingSystem.cs +++ b/Content.Server/Shuttles/Systems/DockingSystem.cs @@ -281,24 +281,24 @@ public void Dock(Entity<DockingComponent> dockA, Entity<DockingComponent> dockB) { if (_doorSystem.TryOpen(dockAUid, doorA)) { - doorA.ChangeAirtight = false; if (TryComp<DoorBoltComponent>(dockAUid, out var airlockA)) { _doorSystem.SetBoltsDown((dockAUid, airlockA), true); } } + doorA.ChangeAirtight = false; } if (TryComp(dockBUid, out DoorComponent? doorB)) { if (_doorSystem.TryOpen(dockBUid, doorB)) { - doorB.ChangeAirtight = false; if (TryComp<DoorBoltComponent>(dockBUid, out var airlockB)) { _doorSystem.SetBoltsDown((dockBUid, airlockB), true); } } + doorB.ChangeAirtight = false; } if (_pathfinding.TryCreatePortal(dockAXform.Coordinates, dockBXform.Coordinates, out var handle)) diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.Drone.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.Drone.cs index 3af461bedac..eb5e11b8ebe 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.Drone.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.Drone.cs @@ -1,6 +1,6 @@ using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; -using Content.Server.Station.Components; +using Content.Shared.Station.Components; using Content.Shared.UserInterface; namespace Content.Server.Shuttles.Systems; diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs index b4fcccd8055..a31fda074f3 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.GridFill.cs @@ -7,8 +7,10 @@ using Content.Shared.Procedural; using Content.Shared.Salvage; using Content.Shared.Shuttles.Components; +using Content.Shared.Station.Components; using Robust.Shared.Collections; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -85,9 +87,15 @@ private void CargoSpawn(EntityUid uid, StationCargoShuttleComponent component) _mapManager.DeleteMap(mapId); } - private bool TryDungeonSpawn(EntityUid targetGrid, EntityUid stationUid, MapId mapId, DungeonSpawnGroup group, out EntityUid spawned) + private bool TryDungeonSpawn(Entity<MapGridComponent?> targetGrid, EntityUid stationUid, MapId mapId, DungeonSpawnGroup group, out EntityUid spawned) { spawned = EntityUid.Invalid; + + if (!_gridQuery.Resolve(targetGrid.Owner, ref targetGrid.Comp)) + { + return false; + } + var dungeonProtoId = _random.Pick(group.Protos); if (!_protoManager.TryIndex(dungeonProtoId, out var dungeonProto)) @@ -95,11 +103,13 @@ private bool TryDungeonSpawn(EntityUid targetGrid, EntityUid stationUid, MapId m return false; } - var spawnCoords = new EntityCoordinates(targetGrid, Vector2.Zero); + var targetPhysics = _physicsQuery.Comp(targetGrid); + var spawnCoords = new EntityCoordinates(targetGrid, targetPhysics.LocalCenter); if (group.MinimumDistance > 0f) { - spawnCoords = spawnCoords.Offset(_random.NextVector2(group.MinimumDistance, group.MinimumDistance * 1.5f)); + var distancePadding = MathF.Max(targetGrid.Comp.LocalAABB.Width, targetGrid.Comp.LocalAABB.Height); + spawnCoords = spawnCoords.Offset(_random.NextVector2(distancePadding + group.MinimumDistance, distancePadding + group.MaximumDistance)); } var spawnMapCoords = _transform.ToMapCoordinates(spawnCoords); diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs index ed5d109e852..5e746fd4953 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.IFF.cs @@ -1,4 +1,5 @@ using Content.Server.Shuttles.Components; +using Content.Shared.CCVar; using Content.Shared.Shuttles.BUIStates; using Content.Shared.Shuttles.Components; using Content.Shared.Shuttles.Events; @@ -12,6 +13,26 @@ private void InitializeIFF() SubscribeLocalEvent<IFFConsoleComponent, AnchorStateChangedEvent>(OnIFFConsoleAnchor); SubscribeLocalEvent<IFFConsoleComponent, IFFShowIFFMessage>(OnIFFShow); SubscribeLocalEvent<IFFConsoleComponent, IFFShowVesselMessage>(OnIFFShowVessel); + SubscribeLocalEvent<GridSplitEvent>(OnGridSplit); + } + + private void OnGridSplit(ref GridSplitEvent ev) + { + var splitMass = _cfg.GetCVar(CCVars.HideSplitGridsUnder); + + if (splitMass < 0) + return; + + foreach (var grid in ev.NewGrids) + { + if (!_physicsQuery.TryGetComponent(grid, out var physics) || + physics.Mass > splitMass) + { + continue; + } + + AddIFFFlag(grid, IFFFlags.HideLabel); + } } private void OnIFFShow(EntityUid uid, IFFConsoleComponent component, IFFShowIFFMessage args) diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.cs index 85703389e9d..aae466ba0dc 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.cs @@ -58,12 +58,16 @@ public sealed partial class ShuttleSystem : SharedShuttleSystem [Dependency] private readonly ThrusterSystem _thruster = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + private EntityQuery<MapGridComponent> _gridQuery; + public const float TileMassMultiplier = 0.5f; public override void Initialize() { base.Initialize(); + _gridQuery = GetEntityQuery<MapGridComponent>(); + InitializeFTL(); InitializeGridFills(); InitializeIFF(); diff --git a/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs b/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs index 1b06367b0d8..c6f4871b7e6 100644 --- a/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs +++ b/Content.Server/Spawners/Components/ConditionalSpawnerComponent.cs @@ -6,14 +6,25 @@ namespace Content.Server.Spawners.Components [Virtual] public partial class ConditionalSpawnerComponent : Component { + /// <summary> + /// A list of entities, one of which can spawn in after calling Spawn() + /// </summary> [ViewVariables(VVAccess.ReadWrite)] [DataField] public List<EntProtoId> Prototypes { get; set; } = new(); + /// <summary> + /// A list of game rules. + /// If at least one of them was launched in the game, + /// an attempt will occur to spawn one of the objects in the Prototypes list + /// </summary> [ViewVariables(VVAccess.ReadWrite)] [DataField] public List<EntProtoId> GameRules = new(); + /// <summary> + /// Chance of spawning an entity + /// </summary> [ViewVariables(VVAccess.ReadWrite)] [DataField] public float Chance { get; set; } = 1.0f; diff --git a/Content.Server/Spawners/Components/RandomSpawnerComponent.cs b/Content.Server/Spawners/Components/RandomSpawnerComponent.cs index e6a597f3658..ec1b3249a90 100644 --- a/Content.Server/Spawners/Components/RandomSpawnerComponent.cs +++ b/Content.Server/Spawners/Components/RandomSpawnerComponent.cs @@ -5,18 +5,33 @@ namespace Content.Server.Spawners.Components [RegisterComponent, EntityCategory("Spawner")] public sealed partial class RandomSpawnerComponent : ConditionalSpawnerComponent { + /// <summary> + /// A list of rarer entities that can spawn with the RareChance + /// instead of one of the entities in the Prototypes list. + /// </summary> [ViewVariables(VVAccess.ReadWrite)] [DataField] public List<EntProtoId> RarePrototypes { get; set; } = new(); + /// <summary> + /// The chance that a rare prototype may spawn instead of a common prototype + /// </summary> [ViewVariables(VVAccess.ReadWrite)] [DataField] public float RareChance { get; set; } = 0.05f; + /// <summary> + /// Scatter of entity spawn coordinates + /// </summary> [ViewVariables(VVAccess.ReadWrite)] [DataField] public float Offset { get; set; } = 0.2f; + /// <summary> + /// A variable meaning whether the spawn will + /// be able to be used again or whether + /// it will be destroyed after the first use + /// </summary> [DataField] public bool DeleteSpawnerAfterSpawn = true; } diff --git a/Content.Server/Spawners/EntitySystems/SpawnOnDespawnSystem.cs b/Content.Server/Spawners/EntitySystems/SpawnOnDespawnSystem.cs index f5a34728dc8..2f850faab13 100644 --- a/Content.Server/Spawners/EntitySystems/SpawnOnDespawnSystem.cs +++ b/Content.Server/Spawners/EntitySystems/SpawnOnDespawnSystem.cs @@ -1,4 +1,5 @@ using Content.Server.Spawners.Components; +using Robust.Shared.Prototypes; using Robust.Shared.Spawners; namespace Content.Server.Spawners.EntitySystems; @@ -19,4 +20,9 @@ private void OnDespawn(EntityUid uid, SpawnOnDespawnComponent comp, ref TimedDes Spawn(comp.Prototype, xform.Coordinates); } + + public void SetPrototype(Entity<SpawnOnDespawnComponent> entity, EntProtoId prototype) + { + entity.Comp.Prototype = prototype; + } } diff --git a/Content.Server/Station/Systems/StationSystem.cs b/Content.Server/Station/Systems/StationSystem.cs index 5930eef39bd..5ddb0e7746b 100644 --- a/Content.Server/Station/Systems/StationSystem.cs +++ b/Content.Server/Station/Systems/StationSystem.cs @@ -5,6 +5,7 @@ using Content.Server.Station.Events; using Content.Shared.CCVar; using Content.Shared.Station; +using Content.Shared.Station.Components; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Server.Player; diff --git a/Content.Server/StationEvents/Events/BluespaceLockerRule.cs b/Content.Server/StationEvents/Events/BluespaceLockerRule.cs index b19485bc31e..0dd4e924770 100644 --- a/Content.Server/StationEvents/Events/BluespaceLockerRule.cs +++ b/Content.Server/StationEvents/Events/BluespaceLockerRule.cs @@ -1,10 +1,9 @@ -using Content.Server.GameTicking.Rules.Components; using Content.Server.Resist; -using Content.Server.Station.Components; using Content.Server.StationEvents.Components; using Content.Server.Storage.Components; using Content.Server.Storage.EntitySystems; using Content.Shared.Access.Components; +using Content.Shared.Station.Components; using Content.Shared.GameTicking.Components; using Content.Shared.Coordinates; diff --git a/Content.Server/StationEvents/Events/BreakerFlipRule.cs b/Content.Server/StationEvents/Events/BreakerFlipRule.cs index 0cfe87051d5..8a25d40abbc 100644 --- a/Content.Server/StationEvents/Events/BreakerFlipRule.cs +++ b/Content.Server/StationEvents/Events/BreakerFlipRule.cs @@ -1,8 +1,8 @@ using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; -using Content.Server.Station.Components; using Content.Server.StationEvents.Components; -using Content.Shared.GameTicking.Components; +using Content.Shared.GameTicking.Components; +using Content.Shared.Station.Components; using JetBrains.Annotations; namespace Content.Server.StationEvents.Events; diff --git a/Content.Server/StationEvents/Events/IonStormRule.cs b/Content.Server/StationEvents/Events/IonStormRule.cs index 926ecc2db92..b20b81822f3 100644 --- a/Content.Server/StationEvents/Events/IonStormRule.cs +++ b/Content.Server/StationEvents/Events/IonStormRule.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Server.Silicons.Laws; -using Content.Server.Station.Components; using Content.Server.StationEvents.Components; using Content.Shared.Administration.Logs; using Content.Shared.Database; @@ -11,6 +10,7 @@ using Content.Shared.Random.Helpers; using Content.Shared.Silicons.Laws; using Content.Shared.Silicons.Laws.Components; +using Content.Shared.Station.Components; using Robust.Shared.Prototypes; using Robust.Shared.Random; diff --git a/Content.Server/StationEvents/Events/PowerGridCheckRule.cs b/Content.Server/StationEvents/Events/PowerGridCheckRule.cs index e00369a321c..a4594e13879 100644 --- a/Content.Server/StationEvents/Events/PowerGridCheckRule.cs +++ b/Content.Server/StationEvents/Events/PowerGridCheckRule.cs @@ -1,10 +1,9 @@ using System.Threading; -using Content.Server.GameTicking.Rules.Components; using Content.Server.Power.Components; using Content.Server.Power.EntitySystems; -using Content.Server.Station.Components; using Content.Server.StationEvents.Components; using Content.Shared.GameTicking.Components; +using Content.Shared.Station.Components; using JetBrains.Annotations; using Robust.Shared.Audio; using Robust.Shared.Player; diff --git a/Content.Server/StationEvents/Events/VentClogRule.cs b/Content.Server/StationEvents/Events/VentClogRule.cs index 043ea0375aa..f14958631d1 100644 --- a/Content.Server/StationEvents/Events/VentClogRule.cs +++ b/Content.Server/StationEvents/Events/VentClogRule.cs @@ -1,14 +1,13 @@ using Content.Server.Atmos.Piping.Unary.Components; -using Content.Server.Station.Components; +using Content.Server.Fluids.EntitySystems; +using Content.Server.StationEvents.Components; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; +using Content.Shared.GameTicking.Components; +using Content.Shared.Station.Components; using JetBrains.Annotations; using Robust.Shared.Random; using System.Linq; -using Content.Server.Fluids.EntitySystems; -using Content.Server.GameTicking.Rules.Components; -using Content.Server.StationEvents.Components; -using Content.Shared.GameTicking.Components; namespace Content.Server.StationEvents.Events; diff --git a/Content.Server/StationEvents/Events/VentCrittersRule.cs b/Content.Server/StationEvents/Events/VentCrittersRule.cs index fba9cfa6a60..5ca5a9d215c 100644 --- a/Content.Server/StationEvents/Events/VentCrittersRule.cs +++ b/Content.Server/StationEvents/Events/VentCrittersRule.cs @@ -1,7 +1,6 @@ using Content.Server.StationEvents.Components; -using Content.Server.GameTicking.Rules.Components; -using Content.Server.Station.Components; using Content.Shared.GameTicking.Components; +using Content.Shared.Station.Components; using Content.Shared.Storage; using Robust.Shared.Map; using Robust.Shared.Random; diff --git a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs index 9da7606bcc5..3754919c689 100644 --- a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs +++ b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs @@ -1,7 +1,6 @@ using System.Linq; using Content.Server.Explosion.EntitySystems; using Content.Server.Resist; -using Content.Server.Station.Components; using Content.Server.Storage.Components; using Content.Shared.Access; using Content.Shared.Access.Components; @@ -9,6 +8,7 @@ using Content.Shared.DoAfter; using Content.Shared.Lock; using Content.Shared.Mind.Components; +using Content.Shared.Station.Components; using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; using Content.Shared.Tools.Systems; diff --git a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs similarity index 92% rename from Content.Server/Atmos/Components/TemperatureProtectionComponent.cs rename to Content.Server/Temperature/Components/TemperatureProtectionComponent.cs index bdee5ff5140..437f0f89405 100644 --- a/Content.Server/Atmos/Components/TemperatureProtectionComponent.cs +++ b/Content.Server/Temperature/Components/TemperatureProtectionComponent.cs @@ -1,6 +1,6 @@ using Content.Server.Temperature.Systems; -namespace Content.Server.Atmos.Components; +namespace Content.Server.Temperature.Components; [RegisterComponent] [Access(typeof(TemperatureSystem))] diff --git a/Content.Server/Temperature/Systems/TemperatureSystem.cs b/Content.Server/Temperature/Systems/TemperatureSystem.cs index 23c8cb6783f..d33bf6e0256 100644 --- a/Content.Server/Temperature/Systems/TemperatureSystem.cs +++ b/Content.Server/Temperature/Systems/TemperatureSystem.cs @@ -1,6 +1,5 @@ using System.Linq; using Content.Server.Administration.Logs; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; using Content.Server.Temperature.Components; diff --git a/Content.Server/UserInterface/StatValuesCommand.cs b/Content.Server/UserInterface/StatValuesCommand.cs index cb599f7b09f..85b979f83a7 100644 --- a/Content.Server/UserInterface/StatValuesCommand.cs +++ b/Content.Server/UserInterface/StatValuesCommand.cs @@ -7,7 +7,6 @@ using Content.Server.Power.Components; using Content.Shared.Administration; using Content.Shared.Item; -using Content.Shared.Materials; using Content.Shared.Research.Prototypes; using Content.Shared.UserInterface; using Content.Shared.Weapons.Melee; @@ -224,13 +223,13 @@ private StatValuesEuiMessage GetLatheMessage() { var cost = 0.0; - foreach (var (material, count) in proto.RequiredMaterials) + foreach (var (material, count) in proto.Materials) { - var materialPrice = _proto.Index<MaterialPrototype>(material).Price; + var materialPrice = _proto.Index(material).Price; cost += materialPrice * count; } - var sell = priceSystem.GetEstimatedPrice(_proto.Index<EntityPrototype>(proto.Result)); + var sell = priceSystem.GetLatheRecipePrice(proto); values.Add(new[] { diff --git a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs index 45c6a3d9d55..a8460a8c660 100644 --- a/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs +++ b/Content.Server/Weapons/Melee/Balloon/BalloonPopperSystem.cs @@ -4,7 +4,7 @@ using Content.Shared.Popups; using Content.Shared.Tag; using Content.Shared.Weapons.Melee.Events; -using Robust.Shared.Audio; +using Content.Shared.Throwing; using Robust.Shared.Audio.Systems; namespace Content.Server.Weapons.Melee.Balloon; @@ -23,6 +23,7 @@ public sealed class BalloonPopperSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent<BalloonPopperComponent, MeleeHitEvent>(OnMeleeHit); + SubscribeLocalEvent<BalloonPopperComponent, ThrowDoHitEvent>(OnThrowHit); } private void OnMeleeHit(EntityUid uid, BalloonPopperComponent component, MeleeHitEvent args) @@ -40,6 +41,15 @@ private void OnMeleeHit(EntityUid uid, BalloonPopperComponent component, MeleeHi } } + private void OnThrowHit(EntityUid uid, BalloonPopperComponent component, ThrowDoHitEvent args) + { + foreach (var held in _hands.EnumerateHeld(args.Target)) + { + if (_tag.HasTag(held, component.BalloonTag)) + PopBallooon(uid, held, component); + } + } + /// <summary> /// Pops a target balloon, making a popup and playing a sound. /// </summary> diff --git a/Content.Server/Zombies/ZombieSystem.Transform.cs b/Content.Server/Zombies/ZombieSystem.Transform.cs index 14a8123beb3..d45110b8287 100644 --- a/Content.Server/Zombies/ZombieSystem.Transform.cs +++ b/Content.Server/Zombies/ZombieSystem.Transform.cs @@ -9,7 +9,6 @@ using Content.Server.Mind; using Content.Server.Mind.Commands; using Content.Server.NPC; -using Content.Server.NPC.Components; using Content.Server.NPC.HTN; using Content.Server.NPC.Systems; using Content.Server.Roles; @@ -25,10 +24,8 @@ using Content.Shared.Interaction.Components; using Content.Shared.Mobs; using Content.Shared.Mobs.Components; -using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Systems; -using Content.Shared.NPC.Components; using Content.Shared.NPC.Systems; using Content.Shared.Nutrition.AnimalHusbandry; using Content.Shared.Nutrition.Components; @@ -39,6 +36,7 @@ using Content.Shared.Prying.Components; using Content.Shared.Traits.Assorted; using Robust.Shared.Audio.Systems; +using Content.Shared.Ghost.Roles.Components; namespace Content.Server.Zombies { diff --git a/Content.Shared/ADT/CCVar/CCVars.cs b/Content.Shared/ADT/CCVar/CCVars.cs new file mode 100644 index 00000000000..02879447e7a --- /dev/null +++ b/Content.Shared/ADT/CCVar/CCVars.cs @@ -0,0 +1,20 @@ +// Simple Station + +using Robust.Shared.Configuration; + +namespace Content.Shared.ADT.CCVar; + +[CVarDefs] +public sealed class SimpleStationCCVars +{ + /* + * Silicons + */ + #region Silicons + /// <summary> + /// The amount of time between NPC Silicons draining their battery in seconds. + /// </summary> + public static readonly CVarDef<float> SiliconNpcUpdateTime = + CVarDef.Create("silicon.npcupdatetime", 1.5f, CVar.SERVERONLY); + #endregion Silicons +} diff --git a/Content.Shared/ADT/Language/Components/CommonLangUnknown.cs b/Content.Shared/ADT/Language/Components/CommonLangUnknown.cs deleted file mode 100644 index bac1230704f..00000000000 --- a/Content.Shared/ADT/Language/Components/CommonLangUnknown.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Content.Shared.Actions; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Shared.Language; - -[RegisterComponent] -public sealed partial class UnknowLanguageComponent : Component -{ - [DataField("language")] - public string LanguageToForgot = "GalacticCommon"; -} diff --git a/Content.Shared/ADT/Language/Components/HandheldTranslatorComponent.cs b/Content.Shared/ADT/Language/Components/HandheldTranslatorComponent.cs new file mode 100644 index 00000000000..354f924692a --- /dev/null +++ b/Content.Shared/ADT/Language/Components/HandheldTranslatorComponent.cs @@ -0,0 +1,36 @@ +using Content.Shared.Actions; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.ADT.Language; + +/// <summary> +/// This component allows holding entity to understand given languages if it can understand any of "toSpeak" languages +/// </summary> +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState] +public sealed partial class HandheldTranslatorComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + [DataField("toUnderstand", required: true), AutoNetworkedField] + public List<string> ToUnderstand; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("toSpeak", required: true), AutoNetworkedField] + public List<string> ToSpeak; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("required", required: true), AutoNetworkedField] + public List<string> Required; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("toggle")] + public bool ToggleOnInteract = true; + + [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + [DataField] + public bool Enabled = false; + + public EntityUid? User; +} diff --git a/Content.Shared/ADT/Language/Components/LanguageSpeakerComponent.cs b/Content.Shared/ADT/Language/Components/LanguageSpeakerComponent.cs index 2d3953f78ca..80559fb4c6f 100644 --- a/Content.Shared/ADT/Language/Components/LanguageSpeakerComponent.cs +++ b/Content.Shared/ADT/Language/Components/LanguageSpeakerComponent.cs @@ -1,53 +1,23 @@ -using Content.Shared.Actions; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; +using Robust.Shared.GameStates; -namespace Content.Shared.Language; +namespace Content.Shared.ADT.Language; -[RegisterComponent, AutoGenerateComponentState] +/// <summary> +/// This component allows entity to speak and understand languages. +/// </summary> +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class LanguageSpeakerComponent : Component { - /// <summary> - /// The current language the entity may use to speak. - /// Other listeners will hear the entity speak in this language. - /// </summary> - [ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] [AutoNetworkedField] - public string CurrentLanguage = default!; + public string? CurrentLanguage = default!; - /// <summary> - /// чтоб в чате видно было не айди, а название. - /// </summary> - public string LocalizedID => Loc.GetString("language-" + CurrentLanguage); - - - /// <summary> - /// List of languages this entity can speak. - /// </summary> - [ViewVariables] - [DataField("speaks", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>), required: true)] + [DataField("speaks"), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] public List<string> SpokenLanguages = new(); - /// <summary> - /// List of languages this entity can understand. - /// </summary> - [ViewVariables] - [DataField("understands", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>), required: true)] + [DataField("understands"), ViewVariables(VVAccess.ReadWrite)] + [AutoNetworkedField] public List<string> UnderstoodLanguages = new(); - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("languageMenuAction", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))] - public string LanguageMenuAction = "ActionLanguageMenu"; - - [DataField] public EntityUid? Action; } - -[Serializable, NetSerializable] -public enum LanguageMenuUiKey : byte -{ - Key -} - -public sealed partial class LanguageMenuActionEvent : InstantActionEvent { } diff --git a/Content.Shared/ADT/Language/Components/TranslatorComponent.cs b/Content.Shared/ADT/Language/Components/TranslatorComponent.cs deleted file mode 100644 index a5fac7d2ff5..00000000000 --- a/Content.Shared/ADT/Language/Components/TranslatorComponent.cs +++ /dev/null @@ -1,93 +0,0 @@ -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Shared.Language.Components; - -public abstract partial class BaseTranslatorComponent : Component -{ - /// <summary> - /// The language this translator changes the speaker's language to when they don't specify one. - /// If null, does not modify the default language. - /// </summary> - [DataField("default-language")] - [ViewVariables(VVAccess.ReadWrite)] - public string? CurrentSpeechLanguage = null; - - /// <summary> - /// The list of additional languages this translator allows the wielder to speak. - /// </summary> - [DataField("spoken", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>))] - [ViewVariables(VVAccess.ReadWrite)] - public List<string> SpokenLanguages = new(); - - /// <summary> - /// The list of additional languages this translator allows the wielder to understand. - /// </summary> - [DataField("understood", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>))] - [ViewVariables(VVAccess.ReadWrite)] - public List<string> UnderstoodLanguages = new(); - - /// <summary> - /// The languages the wielding MUST know in order for this translator to have effect. - /// The field [RequiresAllLanguages] indicates whether all of them are required, or just one. - /// </summary> - [DataField("requires", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>))] - [ViewVariables(VVAccess.ReadWrite)] - public List<string> RequiredLanguages = new(); - - /// <summary> - /// If true, the wielder must understand all languages in [RequiredLanguages] to speak [SpokenLanguages], - /// and understand all languages in [RequiredLanguages] to understand [UnderstoodLanguages]. - /// - /// Otherwise, at least one language must be known (or the list must be empty). - /// </summary> - [DataField("requires-all")] - [ViewVariables(VVAccess.ReadWrite)] - public bool RequiresAllLanguages = false; - - [DataField("enabled")] - public bool Enabled = true; -} - -/// <summary> -/// A translator that must be held in a hand or a pocket of an entity in order ot have effect. -/// </summary> -[RegisterComponent] -public sealed partial class HandheldTranslatorComponent : BaseTranslatorComponent -{ - /// <summary> - /// Whether or not interacting with this translator - /// toggles it on or off. - /// </summary> - [DataField("toggleOnInteract")] - public bool ToggleOnInteract = true; -} - -/// <summary> -/// A translator attached to an entity that translates its speech. -/// An example is a translator implant that allows the speaker to speak another language. -/// </summary> -[RegisterComponent, Virtual] -public partial class IntrinsicTranslatorComponent : BaseTranslatorComponent -{ -} - -/// <summary> -/// Applied internally to the holder of [HandheldTranslatorComponent]. -/// Do not use directly. Use [HandheldTranslatorComponent] instead. -/// </summary> -[RegisterComponent] -public sealed partial class HoldsTranslatorComponent : IntrinsicTranslatorComponent -{ - public Component? Issuer = null; -} - -/// <summary> -/// Applied to entities who were injected with a translator implant. -/// </summary> -[RegisterComponent] -public sealed partial class ImplantedTranslatorComponent : IntrinsicTranslatorComponent -{ -} diff --git a/Content.Shared/ADT/Language/Components/TranslatorImplantComponent.cs b/Content.Shared/ADT/Language/Components/TranslatorImplantComponent.cs new file mode 100644 index 00000000000..057e05ec40f --- /dev/null +++ b/Content.Shared/ADT/Language/Components/TranslatorImplantComponent.cs @@ -0,0 +1,40 @@ +using Content.Shared.Actions; +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Implants.Components; + +/// <summary> +/// This component grants language knowledge when implanted. +/// </summary> +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class TranslatorImplantComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + [DataField("toUnderstand")] + public List<string> ToUnderstand = new(); + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("toSpeak")] + public List<string> ToSpeak = new(); + + /// <summary> + /// The entity this implant is inside + /// </summary> + [ViewVariables, AutoNetworkedField] + public EntityUid? ImplantedEntity; + + [ViewVariables(VVAccess.ReadWrite)] + public List<string> ImplantedToUnderstand = new(); + + [ViewVariables(VVAccess.ReadWrite)] + public List<string> ImplantedToSpeak = new(); + + /// <summary> + /// Should this implant be removeable? + /// </summary> + [ViewVariables(VVAccess.ReadWrite)] + [DataField("permanent"), AutoNetworkedField] + public bool Permanent = false; +} diff --git a/Content.Shared/ADT/Language/Components/TranslatorImplanterComponent.cs b/Content.Shared/ADT/Language/Components/TranslatorImplanterComponent.cs deleted file mode 100644 index 28ed4cce185..00000000000 --- a/Content.Shared/ADT/Language/Components/TranslatorImplanterComponent.cs +++ /dev/null @@ -1,34 +0,0 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; - -namespace Content.Shared.Language.Components; - -/// <summary> -/// An item that, when used on a mob, adds an intrinsic translator to it. -/// </summary> -[RegisterComponent] -public sealed partial class TranslatorImplanterComponent : Component -{ - [DataField("spoken", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>)), ViewVariables] - public List<string> SpokenLanguages = new(); - - [DataField("understood", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>)), ViewVariables] - public List<string> UnderstoodLanguages = new(); - - /// <summary> - /// The list of languages the mob must understand in order for this translator to have effect. - /// Knowing one language is enough. - /// </summary> - [DataField("requires", customTypeSerializer: typeof(PrototypeIdListSerializer<LanguagePrototype>)), ViewVariables] - public List<string> RequiredLanguages = new(); - - /// <summary> - /// If true, only allows to use this implanter on mobs. - /// </summary> - [DataField("mobs-only")] - public bool MobsOnly = true; - - /// <summary> - /// Whether this implant has been used already. - /// </summary> - public bool Used = false; -} diff --git a/Content.Shared/ADT/Language/Components/UniversalLanguageSpeacerComponent.cs b/Content.Shared/ADT/Language/Components/UniversalLanguageSpeacerComponent.cs deleted file mode 100644 index 7ef609e6ba0..00000000000 --- a/Content.Shared/ADT/Language/Components/UniversalLanguageSpeacerComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Shared.Language.Components; - -// <summary> -// Signifies that this entity can speak and understand any language. -// Applies to such entities as ghosts. -// </summary> -[RegisterComponent] -public sealed partial class UniversalLanguageSpeakerComponent : Component -{ - -} diff --git a/Content.Shared/ADT/Language/LanguagePrototype.cs b/Content.Shared/ADT/Language/LanguagePrototype.cs index c160187bf62..f84da2e8adf 100644 --- a/Content.Shared/ADT/Language/LanguagePrototype.cs +++ b/Content.Shared/ADT/Language/LanguagePrototype.cs @@ -1,6 +1,6 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; -namespace Content.Shared.Language; +namespace Content.Shared.ADT.Language; [Prototype("language")] public sealed class LanguagePrototype : IPrototype @@ -8,17 +8,15 @@ public sealed class LanguagePrototype : IPrototype [IdDataField] public string ID { get; private set; } = default!; - // <summary> - // If true, obfuscated phrases of creatures speaking this language will have their syllables replaced with "replacement" syllables. - // Otherwise entire sentences will be replaced. - // </summary> - [DataField("obfuscateSyllables", required: true)] + [DataField("obfuscateSyllables")] public bool ObfuscateSyllables { get; private set; } = false; - // <summary> - // Lists all syllables that are used to obfuscate a message a listener cannot understand if obfuscateSyllables is true, - // Otherwise uses all possible phrases the creature can make when trying to say anything. - // </summary> + [DataField] + public Color? Color; + + [DataField] + public Color? WhisperColor; + [DataField("replacement", required: true)] public List<string> Replacement = new(); diff --git a/Content.Shared/ADT/Language/Systems/SharedLanguageSystem.cs b/Content.Shared/ADT/Language/Systems/SharedLanguageSystem.cs index 54c33fc1859..7e5748008d2 100644 --- a/Content.Shared/ADT/Language/Systems/SharedLanguageSystem.cs +++ b/Content.Shared/ADT/Language/Systems/SharedLanguageSystem.cs @@ -1,73 +1,262 @@ -using Content.Shared.Actions; +using Content.Shared.Actions; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Serialization; +using Robust.Shared.Containers; +using Content.Shared.Ghost; +using Robust.Shared.Network; +using Content.Shared.Hands.EntitySystems; +using System.Linq; -namespace Content.Shared.Language.Systems; +namespace Content.Shared.ADT.Language; public abstract class SharedLanguageSystem : EntitySystem { - [ValidatePrototypeId<LanguagePrototype>] - public static readonly string GalacticCommonPrototype = "GalacticCommon"; - [ValidatePrototypeId<LanguagePrototype>] - public static readonly string UniversalPrototype = "Universal"; - public static LanguagePrototype GalacticCommon { get; private set; } = default!; - public static LanguagePrototype Universal { get; private set; } = default!; [Dependency] private readonly SharedActionsSystem _action = default!; - [Dependency] protected readonly IPrototypeManager _prototype = default!; [Dependency] protected readonly IRobustRandom _random = default!; - protected ISawmill _sawmill = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly INetManager _netMan = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; public override void Initialize() { - GalacticCommon = _prototype.Index<LanguagePrototype>("GalacticCommon"); - Universal = _prototype.Index<LanguagePrototype>("Universal"); - _sawmill = Logger.GetSawmill("language"); + + } + + public bool CanSpeak(EntityUid uid, LanguagePrototype proto, LanguageSpeakerComponent? component = null) + { + if (HasComp<GhostComponent>(uid)) + return false; + + if (!Resolve(uid, ref component)) + return false; + + if (proto.ID == "Universal") + return true; - SubscribeLocalEvent<LanguageSpeakerComponent, MapInitEvent>(OnInit); + if (GetLanguages(uid, out _, out _, out _, out var translator, out _) && translator.Contains(proto.ID)) + return true; + + foreach (var lang in component.SpokenLanguages) + if (lang == proto.ID) + return true; + + return false; } - public LanguagePrototype? GetLanguage(string id) + public bool CanUnderstand(EntityUid uid, LanguagePrototype proto, LanguageSpeakerComponent? component = null) { - _prototype.TryIndex<LanguagePrototype>(id, out var proto); - return proto; + if (HasComp<GhostComponent>(uid)) + return true; + + if (!Resolve(uid, ref component)) + return false; + + if (proto.ID == "Universal") + return true; + + if (GetLanguages(uid, out _, out _, out var translator, out _, out _) && translator.Contains(proto.ID)) + return true; + + foreach (var lang in component.UnderstoodLanguages) + if (lang == proto.ID) + return true; + + return false; } - private void OnInit(EntityUid uid, LanguageSpeakerComponent component, MapInitEvent args) + public bool CanSpeak(EntityUid uid, string protoId, LanguageSpeakerComponent? component = null) { - _action.AddAction(uid, ref component.Action, component.LanguageMenuAction, uid); + if (!_proto.TryIndex<LanguagePrototype>(protoId, out var proto)) + return false; + + if (HasComp<GhostComponent>(uid)) + return false; + + if (!Resolve(uid, ref component)) + return false; + + if (proto.ID == "Universal") + return true; + + if (GetLanguages(uid, out _, out _, out _, out var translator, out _) && translator.Contains(protoId)) + return true; + + foreach (var lang in component.SpokenLanguages) + if (lang == proto.ID) + return true; + + return false; + } + + public bool CanUnderstand(EntityUid uid, string protoId, LanguageSpeakerComponent? component = null) + { + if (!_proto.TryIndex<LanguagePrototype>(protoId, out var proto)) + return false; + + if (HasComp<GhostComponent>(uid)) + return true; + + if (!Resolve(uid, ref component)) + return false; + + if (proto.ID == "Universal") + return true; + + if (GetLanguages(uid, out _, out _, out var translator, out _, out _) && translator.Contains(protoId)) + return true; + + foreach (var lang in component.UnderstoodLanguages) + if (lang == proto.ID) + return true; + + return false; + } + + public LanguagePrototype GetCurrentLanguage(EntityUid uid) + { + var universalProto = _proto.Index<LanguagePrototype>("Universal"); + + if (!TryComp<LanguageSpeakerComponent>(uid, out var comp) || comp.CurrentLanguage == null) + return universalProto; + + if (_proto.TryIndex<LanguagePrototype>(comp.CurrentLanguage, out var proto)) + return proto; + + return universalProto; } - /// <summary> - /// Raised on an entity when its list of languages changes. - /// </summary> - public sealed class LanguagesUpdateEvent : EntityEventArgs + public void SelectLanguage(NetEntity ent, string language, LanguageSpeakerComponent? component = null) { + var speaker = GetEntity(ent); + + if (!CanSpeak(speaker, GetLanguage(language))) + return; + + if (component == null && !TryComp(speaker, out component)) + return; + + if (component.CurrentLanguage == language) + return; + + if (_netMan.IsClient) + { + GetLanguages(speaker, out _, out _, out var translator, out _, out _); + component.CurrentLanguage = language; + RaiseLocalEvent(new LanguageMenuStateMessage(ent, language, component.UnderstoodLanguages, translator)); + } + + RaiseNetworkEvent(new LanguageChosenMessage(ent, language)); } - /// <summary> - /// Sent when a client wants to update its language menu. - /// </summary> - [Serializable, NetSerializable] - public sealed class RequestLanguageMenuStateMessage : EntityEventArgs + public void SelectDefaultLanguage(EntityUid uid, LanguageSpeakerComponent? component = null) { + if (!Resolve(uid, ref component)) + return; + + var language = component.SpokenLanguages.FirstOrDefault("Universal"); + + GetLanguages(uid, out _, out _, out var translator, out _, out _); + component.CurrentLanguage = language; + + Dirty(uid, component); + + RaiseNetworkEvent(new LanguageMenuStateMessage(GetNetEntity(uid), language, component.UnderstoodLanguages, translator)); + RaiseNetworkEvent(new LanguageChosenMessage(GetNetEntity(uid), language)); } - /// <summary> - /// Sent by the server when the client needs to update its language menu, - /// or directly after [RequestLanguageMenuStateMessage]. - /// </summary> - [Serializable, NetSerializable] - public sealed class LanguageMenuStateMessage : EntityEventArgs + public bool GetLanguages( + EntityUid? player, + out List<string> understood, + out List<string> spoken, + out List<string> translatorUnderstood, + out List<string> translatorSpoken, + out string current, + LanguageSpeakerComponent? comp = null) { - public string CurrentLanguage; - public List<string> Options; + understood = new(); + spoken = new(); + translatorUnderstood = new(); + translatorSpoken = new(); + current = String.Empty; + + if (player == null) + return false; + var uid = player.Value; + + if (!Resolve(uid, ref comp)) + return false; - public LanguageMenuStateMessage(string currentLanguage, List<string> options) + understood.AddRange(comp.UnderstoodLanguages); + spoken.AddRange(comp.SpokenLanguages); + current = GetCurrentLanguage(uid).ID; + + foreach (var item in _hands.EnumerateHeld(uid)) { - CurrentLanguage = currentLanguage; - Options = options; + if (TryComp<HandheldTranslatorComponent>(item, out var translator) && translator.Enabled) + { + foreach (var lang in translator.Required) + { + if (understood.Contains(lang)) + { + translatorUnderstood.AddRange(translator.ToUnderstand); + translatorSpoken.AddRange(translator.ToSpeak); + break; + } + } + } } + + if (understood.Count <= 0 || spoken.Count <= 0 || current == String.Empty) + return false; + + return true; + } + public LanguagePrototype GetLanguage(string id) + { + if (!_proto.TryIndex<LanguagePrototype>(id, out var result)) + return _proto.Index<LanguagePrototype>("Universal"); + + return result; + } +} + + +/// <summary> +/// Sent when a client wants to change its selected language. +/// </summary> +[Serializable, NetSerializable] +public sealed class LanguageChosenMessage : EntityEventArgs +{ + public NetEntity Uid; + public string SelectedLanguage; + + public LanguageChosenMessage(NetEntity uid, string selectedLanguage) + { + Uid = uid; + SelectedLanguage = selectedLanguage; + } +} + + +/// <summary> +/// Sent by the server when the client needs to update its language menu, +/// or directly after [RequestLanguageMenuStateMessage]. +/// </summary> +[Serializable, NetSerializable] +public sealed class LanguageMenuStateMessage : EntityEventArgs +{ + public NetEntity ComponentOwner; + public string CurrentLanguage; + public List<string> Options; + public List<string> TranslatorOptions; + + public LanguageMenuStateMessage(NetEntity componentOwner, string currentLanguage, List<string> options, List<string> translatorOptions) + { + ComponentOwner = componentOwner; + CurrentLanguage = currentLanguage; + Options = options; + TranslatorOptions = translatorOptions; } } diff --git a/Content.Shared/ADT/Language/Systems/SharedTranslatorImplantSystem.cs b/Content.Shared/ADT/Language/Systems/SharedTranslatorImplantSystem.cs new file mode 100644 index 00000000000..7f31a8e5dfa --- /dev/null +++ b/Content.Shared/ADT/Language/Systems/SharedTranslatorImplantSystem.cs @@ -0,0 +1,112 @@ +using System.Linq; +using Content.Shared.Actions; +using Content.Shared.Implants.Components; +using Robust.Shared.Containers; +using Robust.Shared.Network; +using Content.Shared.ADT.Language; + +namespace Content.Shared.Implants; + +public abstract class SharedTranslatorImplantSystem : EntitySystem +{ + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly SharedLanguageSystem _language = default!; + + public override void Initialize() + { + SubscribeLocalEvent<TranslatorImplantComponent, EntGotInsertedIntoContainerMessage>(OnInsert); + SubscribeLocalEvent<TranslatorImplantComponent, ContainerGettingRemovedAttemptEvent>(OnRemoveAttempt); + SubscribeLocalEvent<TranslatorImplantComponent, EntGotRemovedFromContainerMessage>(OnRemove); + } + + private void OnInsert(EntityUid uid, TranslatorImplantComponent component, EntGotInsertedIntoContainerMessage args) + { + if (_net.IsClient) + return; + + if (!TryComp<LanguageSpeakerComponent>(args.Container.Owner, out var languageSpeaker)) + return; + + if (component.ToUnderstand.Count > 0) + { + foreach (var item in component.ToUnderstand) + { + if (_language.CanUnderstand(args.Container.Owner, _language.GetLanguage(item))) + continue; + languageSpeaker.UnderstoodLanguages.Add(item); + component.ImplantedToUnderstand.Add(item); + } + } + + if (component.ToSpeak.Count > 0) + { + foreach (var item in component.ToSpeak) + { + if (_language.CanSpeak(args.Container.Owner, _language.GetLanguage(item))) + continue; + languageSpeaker.SpokenLanguages.Add(item); + component.ImplantedToSpeak.Add(item); + } + } + + component.ImplantedEntity = args.Container.Owner; + + Dirty(component.ImplantedEntity.Value, languageSpeaker); + + if (!_language.GetLanguages(component.ImplantedEntity.Value, out var understood, out _, out var translatorUnderstood, out _, out var current)) + return; + + var menuEv = new LanguageMenuStateMessage(GetNetEntity(component.ImplantedEntity.Value), current, understood, translatorUnderstood); + RaiseNetworkEvent(menuEv); + + var ev = new ImplantImplantedEvent(uid, component.ImplantedEntity.Value); + RaiseLocalEvent(uid, ref ev); + } + private void OnRemoveAttempt(EntityUid uid, TranslatorImplantComponent component, ContainerGettingRemovedAttemptEvent args) + { + if (component.Permanent && component.ImplantedEntity != null) + args.Cancel(); + } + + private void OnRemove(EntityUid uid, TranslatorImplantComponent component, EntGotRemovedFromContainerMessage args) + { + if (component.ImplantedEntity == null || Terminating(component.ImplantedEntity.Value)) + return; + + if (!TryComp<LanguageSpeakerComponent>(component.ImplantedEntity.Value, out var languageSpeaker)) + return; + + if (component.ImplantedToUnderstand.Count > 0) + { + foreach (var item in component.ImplantedToUnderstand) + { + languageSpeaker.UnderstoodLanguages.Remove(item); + } + } + + if (component.ImplantedToSpeak.Count > 0) + { + foreach (var item in component.ImplantedToSpeak) + { + languageSpeaker.SpokenLanguages.Remove(item); + if (languageSpeaker.CurrentLanguage == item) + languageSpeaker.CurrentLanguage = languageSpeaker.SpokenLanguages.FirstOrDefault("Universal"); + } + } + + + component.ImplantedToUnderstand.Clear(); + component.ImplantedToSpeak.Clear(); + + Dirty(component.ImplantedEntity.Value, languageSpeaker); + + if (!_language.GetLanguages(component.ImplantedEntity.Value, out var understood, out _, out var translatorUnderstood, out _, out var current)) + return; + + var menuEv = new LanguageMenuStateMessage(GetNetEntity(component.ImplantedEntity.Value), current, understood, translatorUnderstood); + RaiseNetworkEvent(menuEv); + + component.ImplantedEntity = null; + } + +} diff --git a/Content.Shared/ADT/Language/Systems/SharedTranslatorImplanterSystem.cs b/Content.Shared/ADT/Language/Systems/SharedTranslatorImplanterSystem.cs deleted file mode 100644 index 5a602d03c54..00000000000 --- a/Content.Shared/ADT/Language/Systems/SharedTranslatorImplanterSystem.cs +++ /dev/null @@ -1,36 +0,0 @@ -using Content.Shared.Examine; -using Content.Shared.Implants.Components; -using Content.Shared.Language.Components; -using Robust.Shared.Serialization; - -namespace Content.Shared.Language.Systems; - -public abstract class SharedTranslatorImplanterSystem : EntitySystem -{ - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent<TranslatorImplanterComponent, ExaminedEvent>(OnExamined); - } - - private void OnExamined(EntityUid uid, TranslatorImplanterComponent component, ExaminedEvent args) - { - if (!args.IsInDetailsRange) - return; - - var text = !component.Used - ? Loc.GetString("translator-implanter-ready") - : Loc.GetString("translator-implanter-used"); - - args.PushText(text); - } - - protected void OnAppearanceChange(EntityUid implanter, TranslatorImplanterComponent component) - { - var used = component.Used; - _appearance.SetData(implanter, ImplanterVisuals.Full, !used); - } -} diff --git a/Content.Shared/ADT/Language/Systems/SharedTranslatorSystem.cs b/Content.Shared/ADT/Language/Systems/SharedTranslatorSystem.cs index 540744139da..8e5353d3b4c 100644 --- a/Content.Shared/ADT/Language/Systems/SharedTranslatorSystem.cs +++ b/Content.Shared/ADT/Language/Systems/SharedTranslatorSystem.cs @@ -1,8 +1,7 @@ -using Content.Shared.Examine; -using Content.Shared.Language.Components; +using Content.Shared.Examine; using Content.Shared.Toggleable; -namespace Content.Shared.Language.Systems; +namespace Content.Shared.ADT.Language; public abstract class SharedTranslatorSystem : EntitySystem { diff --git a/Content.Shared/ADT/Novakid/NovakidGlowingComponent.cs b/Content.Shared/ADT/Novakid/NovakidGlowingComponent.cs new file mode 100644 index 00000000000..37fff23f6f1 --- /dev/null +++ b/Content.Shared/ADT/Novakid/NovakidGlowingComponent.cs @@ -0,0 +1,13 @@ +namespace Content.Shared.ADT.Novakid; + +[RegisterComponent] +public sealed partial class NovakidGlowingComponent : Component +{ + [DataField] + public Color GlowingColor; + + NovakidGlowingComponent(Color color) + { + GlowingColor = color; + } +} diff --git a/Content.Shared/ADT/Shadekin/Components/ShadekinComponent.cs b/Content.Shared/ADT/Shadekin/Components/ShadekinComponent.cs new file mode 100644 index 00000000000..b6476353f95 --- /dev/null +++ b/Content.Shared/ADT/Shadekin/Components/ShadekinComponent.cs @@ -0,0 +1,121 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.ADT.Shadekin.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ShadekinComponent : Component +{ + #region Random occurrences + [ViewVariables(VVAccess.ReadWrite)] + public float MaxedPowerAccumulator = 0f; + + [ViewVariables(VVAccess.ReadWrite)] + public float MaxedPowerRoof = 0f; + + [ViewVariables(VVAccess.ReadWrite)] + public float MaxedPowerRateMin = 45f; + + [ViewVariables(VVAccess.ReadWrite)] + public float MaxedPowerRateMax = 150f; + + + [ViewVariables(VVAccess.ReadWrite)] + public float MinPowerAccumulator = 0f; + + [ViewVariables(VVAccess.ReadWrite)] + public float MinPowerRoof = 0f; + + [ViewVariables(VVAccess.ReadWrite)] + public float MinPowerMin = 15f; + + [ViewVariables(VVAccess.ReadWrite)] + public float MinPowerMax = 60f; + #endregion + + + #region Shader + /// <summary> + /// Automatically set to eye color. + /// </summary> + [ViewVariables(VVAccess.ReadOnly)] + public Vector3 TintColor = new(0.5f, 0f, 0.5f); + + /// <summary> + /// Based on PowerLevel. + /// </summary> + [ViewVariables(VVAccess.ReadWrite)] + public float TintIntensity = 0.65f; + #endregion + + + #region Power level + /// <summary> + /// Current amount of energy. + /// </summary> + [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public float PowerLevel + { + get => _powerLevel; + set => _powerLevel = Math.Clamp(value, PowerLevelMin, PowerLevelMax); + } + public float _powerLevel = 150f; + + /// <summary> + /// Don't let PowerLevel go above this value. + /// </summary> + [ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] + public float PowerLevelMax = PowerThresholds[ShadekinPowerThreshold.Max]; + + /// <summary> + /// Blackeyes if PowerLevel is this value. + /// </summary> + [ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] + public float PowerLevelMin = PowerThresholds[ShadekinPowerThreshold.Min]; + + /// <summary> + /// How much energy is gained per second. + /// </summary> + [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public float PowerLevelGain = 0.75f; + + /// <summary> + /// Power gain multiplier + /// </summary> + [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public float PowerLevelGainMultiplier = 1f; + + /// <summary> + /// Whether to gain power or not. + /// </summary> + [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool PowerLevelGainEnabled = true; + + /// <summary> + /// Whether they are a blackeye. + /// </summary> + [ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public bool Blackeye = false; + + + public static readonly Dictionary<ShadekinPowerThreshold, float> PowerThresholds = new() + { + { ShadekinPowerThreshold.Max, 250.0f }, + { ShadekinPowerThreshold.Great, 200.0f }, + { ShadekinPowerThreshold.Good, 150.0f }, + { ShadekinPowerThreshold.Okay, 100.0f }, + { ShadekinPowerThreshold.Tired, 50.0f }, + { ShadekinPowerThreshold.Min, 0.0f }, + }; + #endregion +} + +public enum ShadekinPowerThreshold : byte +{ + Max = 1 << 4, + Great = 1 << 3, + Good = 1 << 2, + Okay = 1 << 1, + Tired = 1 << 0, + Min = 0, +} diff --git a/Content.Shared/ADT/Silicon/BatteryDrinkerEvent.cs b/Content.Shared/ADT/Silicon/BatteryDrinkerEvent.cs new file mode 100644 index 00000000000..8007a8ca60d --- /dev/null +++ b/Content.Shared/ADT/Silicon/BatteryDrinkerEvent.cs @@ -0,0 +1,14 @@ +// Simple station + +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.ADT.Silicon; + +[Serializable, NetSerializable] +public sealed partial class BatteryDrinkerDoAfterEvent : SimpleDoAfterEvent +{ + public BatteryDrinkerDoAfterEvent() + { + } +} diff --git a/Content.Shared/ADT/Silicon/Components/SeeingStaticComponent.cs b/Content.Shared/ADT/Silicon/Components/SeeingStaticComponent.cs new file mode 100644 index 00000000000..ac581ab437b --- /dev/null +++ b/Content.Shared/ADT/Silicon/Components/SeeingStaticComponent.cs @@ -0,0 +1,20 @@ +// Simple station + +using Robust.Shared.GameStates; + +namespace Content.Shared.ADT.Silicon.Components; + +/// <summary> +/// Exists for use as a status effect. Adds a tv static shader to the client. +/// </summary> +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SeeingStaticComponent : Component +{ + /// <summary> + /// The multiplier applied to the effect. + /// Setting this to 0.5 will halve the effect throughout its entire duration, meaning it will never be fully opaque. + /// Setting this to 2 will double the effect throughout its entire duration, meaning it will be fully opaque for twice as long. + /// </summary> + [AutoNetworkedField] + public float Multiplier = 1f; +} diff --git a/Content.Shared/ADT/Silicon/Components/SiliconChargerComponent.cs b/Content.Shared/ADT/Silicon/Components/SiliconChargerComponent.cs new file mode 100644 index 00000000000..90a238c4f26 --- /dev/null +++ b/Content.Shared/ADT/Silicon/Components/SiliconChargerComponent.cs @@ -0,0 +1,125 @@ +// Simple station + +using Content.Shared.Storage.Components; +using Content.Shared.StepTrigger.Components; +using Robust.Shared.Audio; + +namespace Content.Shared.ADT.Silicon; + +[RegisterComponent] +public sealed partial class SiliconChargerComponent : Component +{ + /// <summary> + /// Is the charger currently active? + /// </summary> + public bool Active = false; + + /// <summary> + /// The currently playing audio stream. + /// </summary> + //public IPlayingAudioStream? SoundStream { get; set; } modern.df ipc. * Moved IPlayingAudioStream onto AudioComponent and entities instead of an abstract stream. + + /// <summary> + /// Counter for handing out warnings to burning entities. + /// </summary> + public TimeSpan WarningTime = TimeSpan.Zero; + + /// <summary> + /// The current parts multiplier. + /// </summary> + public float PartsChargeMulti = 1.2f; + + /// <summary> + /// The sound to play when the charger is active. + /// </summary> + [DataField("soundLoop")] + public SoundSpecifier SoundLoop = new SoundPathSpecifier("/Audio/Machines/microwave_loop.ogg"); + + /// <summary> + /// The multiplier for the charge rate. + /// For reference, an IPC drains at 50. + /// </summary> + [DataField("chargeMulti"), ViewVariables(VVAccess.ReadWrite)] + public float ChargeMulti = 50f; + + /// <summary> + /// The minimum size of a battery to be charged. + /// </summary> + /// <remarks> + /// Charging a battery too small will detonate it, becoming more likely as it fills. + /// </remarks> + [DataField("minChargeSize"), ViewVariables(VVAccess.ReadWrite)] + public int MinChargeSize = 1000; + + /// <summary> + /// The minimum amount of time it will take to charge a battery, in seconds. + /// </summary> + /// <remarks> + /// Note that this is from empty. A battery that is already half full will take half as long as this value to reach full, if it would've been faster from empty. + /// This is for the sake of feeling cooler- It's lame to just charge instantly. + /// </remarks> + [DataField("minChargeTime"), ViewVariables(VVAccess.ReadWrite)] + public float MinChargeTime = 10f; + + /// <summary> + /// The temperature the charger will stop heating up at. + /// </summary> + /// <remarks> + /// Used specifically for chargers with the <see cref="SharedEntityStorageComponent"/>. + /// </remarks> + [DataField("targetTemp"), ViewVariables(VVAccess.ReadWrite)] + public float TargetTemp = 373.15f; + + /// <summary> + /// The damage type to deal when a Biological entity is burned. + /// </summary> + [DataField("damageType")] + public string DamageType = "Shock"; + + /// <summary> + /// The modifier to apply to a used parts rating. + /// </summary> + /// <remarks> + /// 0.6 is the default as it provides a nice range where 2 is about normal, and 4 is about two and a half. + /// </remarks> + [DataField("upgradePartsMulti"), ViewVariables(VVAccess.ReadWrite)] + public float UpgradePartsMulti = 0.6f; + + /// <summary> + /// The part to be used for the charge speed. + /// </summary> + [DataField("chargeSpeedPart")] + public string ChargeSpeedPart = "Capacitor"; + + /// <summary> + /// The part to be used for the charge efficiency. + /// </summary> + [DataField("chargeEfficiencyPart")] + public string ChargeEfficiencyPart = "Manipulator"; + + + /// <summary> + /// Charger overheat string + /// </summary> + [DataField("overheatString")] + public string OverheatString = "silicon-charger-overheatwarning"; + + + /// <summary> + /// The list of entities currently stood on a charger. + /// </summary> + /// <remarks> + /// Used specifically for chargers with the <see cref="StepTriggerComponent"/>. + /// </remarks> + [ViewVariables(VVAccess.ReadOnly)] + public List<EntityUid> PresentEntities = new List<EntityUid>(); + + /// <summary> + /// The number of entities that can be stood on a charger at once. + /// <summary> + /// <remarks> + /// Used specifically for chargers with the <see cref="StepTriggerComponent"/>. + /// </remarks> + [DataField("maxEntities"), ViewVariables(VVAccess.ReadWrite)] + public int MaxEntities = 1; +} diff --git a/Content.Shared/ADT/Silicon/Components/SiliconComponent.cs b/Content.Shared/ADT/Silicon/Components/SiliconComponent.cs new file mode 100644 index 00000000000..4598086c37f --- /dev/null +++ b/Content.Shared/ADT/Silicon/Components/SiliconComponent.cs @@ -0,0 +1,108 @@ +using Robust.Shared.GameStates; +using Content.Shared.ADT.Silicon.Systems; +using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Prototypes; +using Content.Shared.Alert; + +namespace Content.Shared.ADT.Silicon.Components; + +/// <summary> +/// Component for defining a mob as a robot. +/// </summary> +[RegisterComponent, NetworkedComponent] +public sealed partial class SiliconComponent : Component +{ + [ViewVariables(VVAccess.ReadOnly)] + public ChargeState ChargeState = ChargeState.Full; + + [ViewVariables(VVAccess.ReadOnly)] + public float OverheatAccumulator = 0.0f; + + /// <summary> + /// The last time the Silicon was drained. + /// Used for NPC Silicons to avoid over updating. + /// </summary> + /// <remarks> + /// Time between drains can be specified in + /// <see cref="SimpleStationCcvars.SiliconNpc"/> + /// </remarks> + public TimeSpan LastDrainTime = TimeSpan.Zero; + + /// <summary> + /// The Silicon's battery slot, if it has one. + /// </summary> + /// modern.df а нету его больше + //public IContainer? BatteryContainer = null; + + /// <summary> + /// Is the Silicon currently dead? + /// </summary> + public bool Dead = false; + + // BatterySystem took issue with how this was used, so I'm coming back to it at a later date, when more foundational Silicon stuff is implemented. + // /// <summary> + // /// The entity to get the battery from. + // /// </summary> + // public EntityUid BatteryOverride? = EntityUid.Invalid; + + + /// <summary> + /// The type of silicon this is. + /// </summary> + /// <remarks> + /// Any new types of Silicons should be added to the enum. + /// </remarks> + [DataField("entityType", customTypeSerializer: typeof(EnumSerializer))] + public Enum EntityType = SiliconType.Npc; + + /// <summary> + /// Is this silicon battery powered? + /// </summary> + /// <remarks> + /// If true, should go along with a battery component. One will not be added automatically. + /// </remarks> + [DataField("batteryPowered"), ViewVariables(VVAccess.ReadWrite)] + public bool BatteryPowered = false; + + /// <summary> + /// Slot this entity's battery is contained in. + /// Leave null if using a battery component. + /// </summary> + [DataField("batterySlot")] + public string? BatterySlot = null; + + /// <summary> + /// How much power is drained by this Silicon every second by default. + /// </summary> + [DataField("drainPerSecond"), ViewVariables(VVAccess.ReadWrite)] + public float DrainPerSecond = 50f; + + + /// <summary> + /// The percentages at which the silicon will enter each state. + /// </summary> + /// <remarks> + /// The Silicon will always be Full at 100%. + /// Setting a value to null will disable that state. + /// Setting Critical to 0 will cause the Silicon to never enter the dead state. + /// </remarks> + [DataField("chargeThresholdMid"), ViewVariables(VVAccess.ReadWrite)] + public float? ChargeThresholdMid = 0.5f; + + /// <inheritdoc cref="ChargeThresholdMid"/> + [DataField("chargeThresholdLow"), ViewVariables(VVAccess.ReadWrite)] + public float? ChargeThresholdLow = 0.25f; + + /// <inheritdoc cref="ChargeThresholdMid"/> + [DataField("chargeThresholdCritical"), ViewVariables(VVAccess.ReadWrite)] + public float? ChargeThresholdCritical = 0.0f; + + + /// <summary> + /// The amount the Silicon will be slowed at each charge state. + /// </summary> + [DataField("speedModifierThresholds", required: true)] + public Dictionary<ChargeState, float> SpeedModifierThresholds = default!; // было readonly + + public ProtoId<AlertPrototype> Alert = "Charge"; +} diff --git a/Content.Shared/ADT/Silicon/SiliconChargerVisuals.cs b/Content.Shared/ADT/Silicon/SiliconChargerVisuals.cs new file mode 100644 index 00000000000..1d968db60f3 --- /dev/null +++ b/Content.Shared/ADT/Silicon/SiliconChargerVisuals.cs @@ -0,0 +1,19 @@ +// Simple station + +using Robust.Shared.Serialization; + +namespace Content.Shared.ADT.Silicon; + +[Serializable, NetSerializable] +public enum SiliconChargerVisuals +{ + Lights, +} + +[Serializable, NetSerializable] +public enum SiliconChargerVisualState +{ + Normal, + NormalOpen, + Charging +} diff --git a/Content.Shared/ADT/Silicon/Systems/SeeingStaticSystem.cs b/Content.Shared/ADT/Silicon/Systems/SeeingStaticSystem.cs new file mode 100644 index 00000000000..4852fb38986 --- /dev/null +++ b/Content.Shared/ADT/Silicon/Systems/SeeingStaticSystem.cs @@ -0,0 +1,8 @@ +// Simple station + +namespace Content.Shared.ADT.Silicon.Systems; + +public sealed class SharedSeeingStaticSystem : EntitySystem +{ + public const string StaticKey = "SeeingStatic"; +} diff --git a/Content.Shared/ADT/Silicon/Systems/SharedSiliconSystem.cs b/Content.Shared/ADT/Silicon/Systems/SharedSiliconSystem.cs new file mode 100644 index 00000000000..26c384228fc --- /dev/null +++ b/Content.Shared/ADT/Silicon/Systems/SharedSiliconSystem.cs @@ -0,0 +1,98 @@ +// Simple station + +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.Alert; +using Robust.Shared.Serialization; +using Content.Shared.Movement.Systems; + +namespace Content.Shared.ADT.Silicon.Systems; + + +public sealed class SharedSiliconChargeSystem : EntitySystem +{ + [Dependency] private readonly AlertsSystem _alertsSystem = default!; + + // Dictionary of ChargeState to Alert severity. + private static readonly Dictionary<ChargeState, short> ChargeStateAlert = new() + { + {ChargeState.Full, 4}, + {ChargeState.Mid, 3}, + {ChargeState.Low, 2}, + {ChargeState.Critical, 1}, + {ChargeState.Dead, 0}, + {ChargeState.Invalid, -1}, + }; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<SiliconComponent, ComponentInit>(OnSiliconInit); + SubscribeLocalEvent<SiliconComponent, SiliconChargeStateUpdateEvent>(OnSiliconChargeStateUpdate); + SubscribeLocalEvent<SiliconComponent, RefreshMovementSpeedModifiersEvent>(OnRefreshMovespeed); + } + + private void OnSiliconInit(EntityUid uid, SiliconComponent component, ComponentInit args) + { + if (component.BatteryPowered) + _alertsSystem.ShowAlert(uid, component.Alert, (short) component.ChargeState); + } + + private void OnSiliconChargeStateUpdate(EntityUid uid, SiliconComponent component, SiliconChargeStateUpdateEvent ev) + { + _alertsSystem.ShowAlert(uid, component.Alert, (short) ev.ChargeState); + } + + private void OnRefreshMovespeed(EntityUid uid, SiliconComponent component, RefreshMovementSpeedModifiersEvent args) + { + if (!component.BatteryPowered) + return; + + var speedModThresholds = component.SpeedModifierThresholds; + + var closest = 0f; + + foreach (var state in speedModThresholds) + { + if (component.ChargeState >= state.Key && (float) state.Key > closest) + closest = (float) state.Key; + } + + var speedMod = speedModThresholds[(ChargeState) closest]; + + args.ModifySpeed(speedMod, speedMod); + } +} + + +public enum SiliconType +{ + Player, + GhostRole, + Npc, +} + +public enum ChargeState +{ + Invalid = -1, + Dead, + Critical, + Low, + Mid, + Full, +} + + +/// <summary> +/// Event raised when a Silicon's charge state needs to be updated. +/// </summary> +[Serializable, NetSerializable] +public sealed class SiliconChargeStateUpdateEvent : EntityEventArgs +{ + public ChargeState ChargeState { get; } + + public SiliconChargeStateUpdateEvent(ChargeState chargeState) + { + ChargeState = chargeState; + } +} diff --git a/Content.Shared/ADT/Traits/Components/MonochromacyComponent.cs b/Content.Shared/ADT/Traits/Components/MonochromacyComponent.cs new file mode 100644 index 00000000000..3d3f71edfd9 --- /dev/null +++ b/Content.Shared/ADT/Traits/Components/MonochromacyComponent.cs @@ -0,0 +1,15 @@ +// Simple Station + +using Robust.Shared.GameStates; + +namespace Content.Shared.ADT.Traits +{ + /// <summary> + /// Entity cannot see color. + /// </summary> + [RegisterComponent, NetworkedComponent] + public sealed partial class MonochromacyComponent : Component + { + + } +} diff --git a/Content.Shared/ADT/hemophilia/HemophiliaComponent.cs b/Content.Shared/ADT/hemophilia/HemophiliaComponent.cs new file mode 100644 index 00000000000..30ed792e1b1 --- /dev/null +++ b/Content.Shared/ADT/hemophilia/HemophiliaComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.ADT.Traits; + +[RegisterComponent] +public sealed partial class HemophiliaComponent : Component +{ + [DataField] + public float Modifier = 0.3f; + + +} diff --git a/Content.Shared/Access/SharedAccessWire.cs b/Content.Shared/Access/SharedAccessWire.cs index d5d1b48c708..a0bb316028f 100644 --- a/Content.Shared/Access/SharedAccessWire.cs +++ b/Content.Shared/Access/SharedAccessWire.cs @@ -10,3 +10,12 @@ public enum AccessWireActionKey : byte Pulsed, PulseCancel } + +[Serializable, NetSerializable] +public enum LogWireActionKey : byte +{ + Key, + Status, + Pulsed, + PulseCancel +} diff --git a/Content.Shared/Administration/PlayerInfo.cs b/Content.Shared/Administration/PlayerInfo.cs index 93f1aa0b393..ed54d57bbef 100644 --- a/Content.Shared/Administration/PlayerInfo.cs +++ b/Content.Shared/Administration/PlayerInfo.cs @@ -18,6 +18,8 @@ public sealed record PlayerInfo( { private string? _playtimeString; + public bool IsPinned { get; set; } + public string PlaytimeString => _playtimeString ??= OverallPlaytime?.ToString("%d':'hh':'mm") ?? Loc.GetString("generic-unknown-title"); diff --git a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs index efabebfc858..1c315869c85 100644 --- a/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs +++ b/Content.Shared/Body/Systems/SharedBodySystem.Organs.cs @@ -158,26 +158,24 @@ public bool AddOrganToFirstValidSlot( } /// <summary> - /// Returns a list of ValueTuples of <see cref="T"/> and OrganComponent on each organ - /// in the given body. + /// Returns a list of Entity<<see cref="T"/>, <see cref="OrganComponent"/>> + /// for each organ of the body /// </summary> - /// <param name="uid">The body entity id to check on.</param> - /// <param name="body">The body to check for organs on.</param> - /// <typeparam name="T">The component to check for.</typeparam> - public List<(T Comp, OrganComponent Organ)> GetBodyOrganComponents<T>( - EntityUid uid, - BodyComponent? body = null) + /// <typeparam name="T">The component that we want to return</typeparam> + /// <param name="entity">The body to check the organs of</param> + public List<Entity<T, OrganComponent>> GetBodyOrganEntityComps<T>( + Entity<BodyComponent?> entity) where T : IComponent { - if (!Resolve(uid, ref body)) - return new List<(T Comp, OrganComponent Organ)>(); + if (!Resolve(entity, ref entity.Comp)) + return new List<Entity<T, OrganComponent>>(); var query = GetEntityQuery<T>(); - var list = new List<(T Comp, OrganComponent Organ)>(3); - foreach (var organ in GetBodyOrgans(uid, body)) + var list = new List<Entity<T, OrganComponent>>(3); + foreach (var organ in GetBodyOrgans(entity.Owner, entity.Comp)) { if (query.TryGetComponent(organ.Id, out var comp)) - list.Add((comp, organ.Component)); + list.Add((organ.Id, comp, organ.Component)); } return list; @@ -192,19 +190,18 @@ public bool AddOrganToFirstValidSlot( /// <param name="body">The body to check for organs on.</param> /// <typeparam name="T">The component to check for.</typeparam> /// <returns>Whether any were found.</returns> - public bool TryGetBodyOrganComponents<T>( - EntityUid uid, - [NotNullWhen(true)] out List<(T Comp, OrganComponent Organ)>? comps, - BodyComponent? body = null) + public bool TryGetBodyOrganEntityComps<T>( + Entity<BodyComponent?> entity, + [NotNullWhen(true)] out List<Entity<T, OrganComponent>>? comps) where T : IComponent { - if (!Resolve(uid, ref body)) + if (!Resolve(entity.Owner, ref entity.Comp)) { comps = null; return false; } - comps = GetBodyOrganComponents<T>(uid, body); + comps = GetBodyOrganEntityComps<T>(entity); if (comps.Count != 0) return true; diff --git a/Content.Shared/Burial/BurialSystem.cs b/Content.Shared/Burial/BurialSystem.cs index 45a89f3be97..c86b2ec0248 100644 --- a/Content.Shared/Burial/BurialSystem.cs +++ b/Content.Shared/Burial/BurialSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.ActionBlocker; using Content.Shared.Burial; using Content.Shared.Burial.Components; using Content.Shared.DoAfter; @@ -8,7 +9,6 @@ using Content.Shared.Storage.Components; using Content.Shared.Storage.EntitySystems; using Robust.Shared.Audio.Systems; -using Robust.Shared.Player; namespace Content.Server.Burial.Systems; @@ -18,6 +18,7 @@ public sealed class BurialSystem : EntitySystem [Dependency] private readonly SharedEntityStorageSystem _storageSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public override void Initialize() { @@ -159,7 +160,10 @@ private void OnRelayMovement(EntityUid uid, GraveComponent component, ref Contai { // We track a separate doAfter here, as we want someone with a shovel to // be able to come along and help someone trying to claw their way out - if (component.HandDiggingDoAfter != null) + if (_doAfterSystem.IsRunning(component.HandDiggingDoAfter)) + return; + + if (!_actionBlocker.CanMove(args.Entity)) return; var doAfterEventArgs = new DoAfterArgs(EntityManager, args.Entity, component.DigDelay / component.DigOutByHandModifier, new GraveDiggingDoAfterEvent(), uid, target: uid) @@ -174,7 +178,7 @@ private void OnRelayMovement(EntityUid uid, GraveComponent component, ref Contai if (component.Stream == null) component.Stream = _audioSystem.PlayPredicted(component.DigSound, uid, args.Entity)?.Entity; - if (!_doAfterSystem.TryStartDoAfter(doAfterEventArgs)) + if (!_doAfterSystem.TryStartDoAfter(doAfterEventArgs, out component.HandDiggingDoAfter)) { _audioSystem.Stop(component.Stream); return; diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index df276a3e504..f5a72597dc0 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1495,6 +1495,13 @@ public static readonly CVarDef<int> public static readonly CVarDef<bool> GodmodeArrivals = CVarDef.Create("shuttle.godmode_arrivals", false, CVar.SERVERONLY); + /// <summary> + /// If a grid is split then hide any smaller ones under this mass (kg) from the map. + /// This is useful to avoid split grids spamming out labels. + /// </summary> + public static readonly CVarDef<int> HideSplitGridsUnder = + CVarDef.Create("shuttle.hide_split_grids_under", 30, CVar.SERVERONLY); + /// <summary> /// Whether to automatically spawn escape shuttles. /// </summary> diff --git a/Content.Shared/Cargo/CargoOrderData.cs b/Content.Shared/Cargo/CargoOrderData.cs index ce05d922362..5645cc454dd 100644 --- a/Content.Shared/Cargo/CargoOrderData.cs +++ b/Content.Shared/Cargo/CargoOrderData.cs @@ -48,7 +48,7 @@ public sealed partial class CargoOrderData // public int RequesterId; [DataField] public string Reason { get; private set; } - public bool Approved => Approver is not null; + public bool Approved; [DataField] public string? Approver; diff --git a/Content.Shared/Chemistry/Components/InjectorComponent.cs b/Content.Shared/Chemistry/Components/InjectorComponent.cs index ee7f9bd5798..1f2716356c5 100644 --- a/Content.Shared/Chemistry/Components/InjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/InjectorComponent.cs @@ -73,6 +73,12 @@ public sealed partial class InjectorComponent : Component [DataField] public TimeSpan Delay = TimeSpan.FromSeconds(5); + /// <summary> + /// Each additional 1u after first 5u increases the delay by X seconds. + /// </summary> + [DataField] + public TimeSpan DelayPerVolume = TimeSpan.FromSeconds(0.1); + /// <summary> /// The state of the injector. Determines it's attack behavior. Containers must have the /// right SolutionCaps to support injection/drawing. For InjectOnly injectors this should @@ -81,6 +87,22 @@ public sealed partial class InjectorComponent : Component [AutoNetworkedField] [DataField] public InjectorToggleMode ToggleState = InjectorToggleMode.Draw; + + #region Arguments for injection doafter + + /// <inheritdoc cref=DoAfterArgs.NeedHand> + [DataField] + public bool NeedHand = true; + + /// <inheritdoc cref=DoAfterArgs.BreakOnHandChange> + [DataField] + public bool BreakOnHandChange = true; + + /// <inheritdoc cref=DoAfterArgs.MovementThreshold> + [DataField] + public float MovementThreshold = 0.1f; + + #endregion } /// <summary> diff --git a/Content.Shared/Chemistry/Components/SolutionContainerVisualsComponent.cs b/Content.Shared/Chemistry/Components/SolutionContainerVisualsComponent.cs index 100ee3975f9..1e3c14bfd49 100644 --- a/Content.Shared/Chemistry/Components/SolutionContainerVisualsComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionContainerVisualsComponent.cs @@ -53,5 +53,17 @@ public sealed partial class SolutionContainerVisualsComponent : Component /// </summary> [DataField] public int InHandsMaxFillLevels = 0; + + /// <summary> + /// Optional equipped visuals to show someone is wearing a something with a filled container. + /// </summary> + [DataField] + public string? EquippedFillBaseName = null; + + /// <summary> + /// A separate max fill levels for equipped items (to reduce number of sprites needed) + /// </summary> + [DataField] + public int EquippedMaxFillLevels = 0; } } diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index 726cdc24687..635bf36049b 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.ActionBlocker; -using Content.Shared.Body.Systems; using Content.Shared.Buckle.Components; using Content.Shared.Climbing.Components; using Content.Shared.Climbing.Events; @@ -44,6 +43,7 @@ public sealed partial class ClimbSystem : VirtualController private const string ClimbingFixtureName = "climb"; private const int ClimbingCollisionGroup = (int) (CollisionGroup.TableLayer | CollisionGroup.LowImpassable); + private EntityQuery<ClimbableComponent> _climbableQuery; private EntityQuery<FixturesComponent> _fixturesQuery; private EntityQuery<TransformComponent> _xformQuery; @@ -51,6 +51,7 @@ public override void Initialize() { base.Initialize(); + _climbableQuery = GetEntityQuery<ClimbableComponent>(); _fixturesQuery = GetEntityQuery<FixturesComponent>(); _xformQuery = GetEntityQuery<TransformComponent>(); @@ -350,12 +351,39 @@ private void OnClimbEndCollide(EntityUid uid, ClimbingComponent component, ref E { if (args.OurFixtureId != ClimbingFixtureName || !component.IsClimbing - || component.NextTransition != null - || args.OurFixture.Contacts.Count > 1) + || component.NextTransition != null) { return; } + if (args.OurFixture.Contacts.Count > 1) + { + foreach (var contact in args.OurFixture.Contacts.Values) + { + if (!contact.IsTouching) + continue; + + var otherEnt = contact.EntityA; + var otherFixture = contact.FixtureA; + var otherFixtureId = contact.FixtureAId; + if (uid == contact.EntityA) + { + otherEnt = contact.EntityB; + otherFixture = contact.FixtureB; + otherFixtureId = contact.FixtureBId; + } + + if (args.OtherEntity == otherEnt && args.OtherFixtureId == otherFixtureId) + continue; + + if (otherFixture is { Hard: true } && + _climbableQuery.HasComp(otherEnt)) + { + return; + } + } + } + foreach (var otherFixture in args.OurFixture.Contacts.Keys) { // If it's the other fixture then ignore em diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index 846a78b8680..581125d4fe3 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -59,18 +59,6 @@ public sealed partial class ClothingComponent : Component [DataField("sprite")] public string? RsiPath; - [ViewVariables(VVAccess.ReadWrite)] - [DataField("maleMask")] - public ClothingMask MaleMask = ClothingMask.UniformFull; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("femaleMask")] - public ClothingMask FemaleMask = ClothingMask.UniformFull; - - [ViewVariables(VVAccess.ReadWrite)] - [DataField("unisexMask")] - public ClothingMask UnisexMask = ClothingMask.UniformFull; - /// <summary> /// Name of the inventory slot the clothing is in. /// </summary> diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index 381edc68baa..14137b38365 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -233,7 +233,6 @@ public void CopyVisuals(EntityUid uid, ClothingComponent otherClothing, Clothing clothing.ClothingVisuals = otherClothing.ClothingVisuals; clothing.EquippedPrefix = otherClothing.EquippedPrefix; clothing.RsiPath = otherClothing.RsiPath; - clothing.FemaleMask = otherClothing.FemaleMask; _itemSys.VisualsChanged(uid); Dirty(uid, clothing); diff --git a/Content.Shared/CombatMode/SharedCombatModeSystem.cs b/Content.Shared/CombatMode/SharedCombatModeSystem.cs index 60d1362bb0b..5eed8ee2423 100644 --- a/Content.Shared/CombatMode/SharedCombatModeSystem.cs +++ b/Content.Shared/CombatMode/SharedCombatModeSystem.cs @@ -1,4 +1,5 @@ using Content.Shared.Actions; +using Content.Shared.Mind; using Content.Shared.MouseRotator; using Content.Shared.Movement.Components; using Content.Shared.Popups; @@ -13,6 +14,7 @@ public abstract class SharedCombatModeSystem : EntitySystem [Dependency] private readonly INetManager _netMan = default!; [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; public override void Initialize() { @@ -82,7 +84,7 @@ public virtual void SetInCombatMode(EntityUid entity, bool value, CombatModeComp _actionsSystem.SetToggled(component.CombatToggleActionEntity, component.IsInCombatMode); // Change mouse rotator comps if flag is set - if (!component.ToggleMouseRotator || IsNpc(entity)) + if (!component.ToggleMouseRotator || IsNpc(entity) && !_mind.TryGetMind(entity, out _, out _)) return; SetMouseRotatorComponents(entity, value); diff --git a/Content.Shared/Construction/MachinePartSystem.cs b/Content.Shared/Construction/MachinePartSystem.cs index f357a395e64..f3314dfc11b 100644 --- a/Content.Shared/Construction/MachinePartSystem.cs +++ b/Content.Shared/Construction/MachinePartSystem.cs @@ -81,9 +81,9 @@ public Dictionary<string, int> GetMachineBoardMaterialCost(Entity<MachineBoardCo { var partRecipe = recipes[0]; if (recipes.Count > 1) - partRecipe = recipes.MinBy(p => p.RequiredMaterials.Values.Sum()); + partRecipe = recipes.MinBy(p => p.Materials.Values.Sum()); - foreach (var (mat, matAmount) in partRecipe!.RequiredMaterials) + foreach (var (mat, matAmount) in partRecipe!.Materials) { materials.TryAdd(mat, 0); materials[mat] += matAmount * amount * coefficient; @@ -101,9 +101,9 @@ public Dictionary<string, int> GetMachineBoardMaterialCost(Entity<MachineBoardCo { var partRecipe = recipes[0]; if (recipes.Count > 1) - partRecipe = recipes.MinBy(p => p.RequiredMaterials.Values.Sum()); + partRecipe = recipes.MinBy(p => p.Materials.Values.Sum()); - foreach (var (mat, matAmount) in partRecipe!.RequiredMaterials) + foreach (var (mat, matAmount) in partRecipe!.Materials) { materials.TryAdd(mat, 0); materials[mat] += matAmount * amount * coefficient; diff --git a/Content.Shared/Corvax/TTS/PlayTTSEvent.cs b/Content.Shared/Corvax/TTS/PlayTTSEvent.cs index 5b4db477c56..144f32b71a4 100644 --- a/Content.Shared/Corvax/TTS/PlayTTSEvent.cs +++ b/Content.Shared/Corvax/TTS/PlayTTSEvent.cs @@ -1,4 +1,5 @@ -using Robust.Shared.Serialization; +using Content.Shared.ADT.Language; // ADT Languages +using Robust.Shared.Serialization; namespace Content.Shared.Corvax.TTS; @@ -7,13 +8,16 @@ namespace Content.Shared.Corvax.TTS; public sealed class PlayTTSEvent : EntityEventArgs { public byte[] Data { get; } + public byte[] LanguageData { get; } public NetEntity? SourceUid { get; } public bool IsWhisper { get; } - - public PlayTTSEvent(byte[] data, NetEntity? sourceUid = null, bool isWhisper = false) + public string LanguageProtoId { get; } // ADT Languages + public PlayTTSEvent(byte[] data, byte[] languageData, LanguagePrototype language, NetEntity? sourceUid = null, bool isWhisper = false) // ADT Languages { Data = data; SourceUid = sourceUid; IsWhisper = isWhisper; + LanguageProtoId = language.ID; // ADT Languages + LanguageData = languageData; // ADT Languages } } diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index b9f287f1ce4..8889e0c9710 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -58,7 +58,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent<HandCountChangedEvent>(OnHandCountChanged); + SubscribeLocalEvent<CuffableComponent, HandCountChangedEvent>(OnHandCountChanged); SubscribeLocalEvent<UncuffAttemptEvent>(OnUncuffAttempt); SubscribeLocalEvent<CuffableComponent, EntRemovedFromContainerMessage>(OnCuffsRemovedFromContainer); @@ -380,33 +380,24 @@ private void OnCuffVirtualItemDeleted(EntityUid uid, HandcuffComponent component /// <summary> /// Check the current amount of hands the owner has, and if there's less hands than active cuffs we remove some cuffs. /// </summary> - private void OnHandCountChanged(HandCountChangedEvent message) + private void OnHandCountChanged(Entity<CuffableComponent> ent, ref HandCountChangedEvent message) { - var owner = message.Sender; - - if (!TryComp(owner, out CuffableComponent? cuffable) || - !cuffable.Initialized) - { - return; - } - var dirty = false; - var handCount = CompOrNull<HandsComponent>(owner)?.Count ?? 0; + var handCount = CompOrNull<HandsComponent>(ent.Owner)?.Count ?? 0; - while (cuffable.CuffedHandCount > handCount && cuffable.CuffedHandCount > 0) + while (ent.Comp.CuffedHandCount > handCount && ent.Comp.CuffedHandCount > 0) { dirty = true; - var container = cuffable.Container; - var entity = container.ContainedEntities[^1]; + var handcuffContainer = ent.Comp.Container; + var handcuffEntity = handcuffContainer.ContainedEntities[^1]; - _container.Remove(entity, container); - _transform.SetWorldPosition(entity, _transform.GetWorldPosition(owner)); + _transform.PlaceNextTo(handcuffEntity, ent.Owner); } if (dirty) { - UpdateCuffState(owner, cuffable); + UpdateCuffState(ent.Owner, ent.Comp); } } @@ -530,6 +521,25 @@ public bool TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han return true; } + /// <summary> + /// Checks if the target is handcuffed. + /// </summary> + /// <param name="requireFullyCuffed">when true, return false if the target is only partially cuffed (for things with more than 2 hands)</param> + /// <returns></returns> + public bool IsCuffed(Entity<CuffableComponent> target, bool requireFullyCuffed = true) + { + if (!TryComp<HandsComponent>(target, out var hands)) + return false; + + if (target.Comp.CuffedHandCount <= 0) + return false; + + if (requireFullyCuffed && hands.Count > target.Comp.CuffedHandCount) + return false; + + return true; + } + /// <summary> /// Attempt to uncuff a cuffed entity. Can be called by the cuffed entity, or another entity trying to help uncuff them. /// If the uncuffing succeeds, the cuffs will drop on the floor. diff --git a/Content.Shared/DisplacementMap/DisplacementData.cs b/Content.Shared/DisplacementMap/DisplacementData.cs new file mode 100644 index 00000000000..7bd5b580e14 --- /dev/null +++ b/Content.Shared/DisplacementMap/DisplacementData.cs @@ -0,0 +1,14 @@ +namespace Content.Shared.DisplacementMap; + +[DataDefinition] +public sealed partial class DisplacementData +{ + /// <summary> + /// allows you to attach different maps for layers of different sizes. + /// </summary> + [DataField(required: true)] + public Dictionary<int, PrototypeLayerData> SizeMaps = new(); + + [DataField] + public string? ShaderOverride = "DisplacedStencilDraw"; +} diff --git a/Content.Shared/DoAfter/SharedDoAfterSystem.cs b/Content.Shared/DoAfter/SharedDoAfterSystem.cs index 77b47415333..feda662a7a8 100644 --- a/Content.Shared/DoAfter/SharedDoAfterSystem.cs +++ b/Content.Shared/DoAfter/SharedDoAfterSystem.cs @@ -393,5 +393,18 @@ public DoAfterStatus GetStatus(EntityUid entity, ushort id, DoAfterComponent? co // networking whether a do-after has raised its events or not. return DoAfterStatus.Finished; } + + public bool IsRunning(DoAfterId? id, DoAfterComponent? comp = null) + { + if (id == null) + return false; + + return GetStatus(id.Value.Uid, id.Value.Index, comp) == DoAfterStatus.Running; + } + + public bool IsRunning(EntityUid entity, ushort id, DoAfterComponent? comp = null) + { + return GetStatus(entity, id, comp) == DoAfterStatus.Running; + } #endregion } diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index ab2df72568e..2319d5e916b 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -21,6 +21,7 @@ using Robust.Shared.Timing; using Robust.Shared.Audio.Systems; using Robust.Shared.Network; +using Robust.Shared.Map.Components; namespace Content.Shared.Doors.Systems; @@ -40,6 +41,8 @@ public abstract partial class SharedDoorSystem : EntitySystem [Dependency] private readonly AccessReaderSystem _accessReaderSystem = default!; [Dependency] private readonly PryingSystem _pryingSystem = default!; [Dependency] protected readonly SharedPopupSystem Popup = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [ValidatePrototypeId<TagPrototype>] public const string DoorBumpTag = "DoorBumpOpener"; @@ -546,29 +549,37 @@ public IEnumerable<EntityUid> GetColliding(EntityUid uid, PhysicsComponent? phys if (!Resolve(uid, ref physics)) yield break; + var xform = Transform(uid); + // Getting the world bounds from the gridUid allows us to use the version of + // GetCollidingEntities that returns Entity<PhysicsComponent> + if (!TryComp<MapGridComponent>(xform.GridUid, out var mapGridComp)) + yield break; + var tileRef = _mapSystem.GetTileRef(xform.GridUid.Value, mapGridComp, xform.Coordinates); + var doorWorldBounds = _entityLookup.GetWorldBounds(tileRef); + // TODO SLOTH fix electro's code. // ReSharper disable once InconsistentNaming var doorAABB = _entityLookup.GetWorldAABB(uid); - foreach (var otherPhysics in PhysicsSystem.GetCollidingEntities(Transform(uid).MapID, doorAABB)) + foreach (var otherPhysics in PhysicsSystem.GetCollidingEntities(Transform(uid).MapID, doorWorldBounds)) { - if (otherPhysics == physics) + if (otherPhysics.Comp == physics) continue; //TODO: Make only shutters ignore these objects upon colliding instead of all airlocks // Excludes Glasslayer for windows, GlassAirlockLayer for windoors, TableLayer for tables - if (!otherPhysics.CanCollide || otherPhysics.CollisionLayer == (int)CollisionGroup.GlassLayer || otherPhysics.CollisionLayer == (int)CollisionGroup.GlassAirlockLayer || otherPhysics.CollisionLayer == (int)CollisionGroup.TableLayer) + if (!otherPhysics.Comp.CanCollide || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.GlassLayer || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.GlassAirlockLayer || otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.TableLayer) continue; //If the colliding entity is a slippable item ignore it by the airlock - if (otherPhysics.CollisionLayer == (int)CollisionGroup.SlipLayer && otherPhysics.CollisionMask == (int)CollisionGroup.ItemMask) + if (otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.SlipLayer && otherPhysics.Comp.CollisionMask == (int) CollisionGroup.ItemMask) continue; //For when doors need to close over conveyor belts - if (otherPhysics.CollisionLayer == (int) CollisionGroup.ConveyorMask) + if (otherPhysics.Comp.CollisionLayer == (int) CollisionGroup.ConveyorMask) continue; - if ((physics.CollisionMask & otherPhysics.CollisionLayer) == 0 && (otherPhysics.CollisionMask & physics.CollisionLayer) == 0) + if ((physics.CollisionMask & otherPhysics.Comp.CollisionLayer) == 0 && (otherPhysics.Comp.CollisionMask & physics.CollisionLayer) == 0) continue; if (_entityLookup.GetWorldAABB(otherPhysics.Owner).IntersectPercentage(doorAABB) < IntersectPercentage) diff --git a/Content.Shared/Electrocution/ElectrocutionEvents.cs b/Content.Shared/Electrocution/ElectrocutionEvents.cs index fe5753c7fb3..403bea6ce1a 100644 --- a/Content.Shared/Electrocution/ElectrocutionEvents.cs +++ b/Content.Shared/Electrocution/ElectrocutionEvents.cs @@ -24,12 +24,14 @@ public sealed class ElectrocutedEvent : EntityEventArgs public readonly EntityUid TargetUid; public readonly EntityUid? SourceUid; public readonly float SiemensCoefficient; + public readonly float? ShockDamage; // Parkstation-IPC - public ElectrocutedEvent(EntityUid targetUid, EntityUid? sourceUid, float siemensCoefficient) + public ElectrocutedEvent(EntityUid targetUid, EntityUid? sourceUid, float siemensCoefficient, float? shockDamage = null) // Parkstation-IPC { TargetUid = targetUid; SourceUid = sourceUid; SiemensCoefficient = siemensCoefficient; + ShockDamage = shockDamage; // Parkstation-IPC } } } diff --git a/Content.Shared/Examine/ExamineSystemShared.cs b/Content.Shared/Examine/ExamineSystemShared.cs index 4100b07483f..f0406c53989 100644 --- a/Content.Shared/Examine/ExamineSystemShared.cs +++ b/Content.Shared/Examine/ExamineSystemShared.cs @@ -18,6 +18,7 @@ namespace Content.Shared.Examine { public abstract partial class ExamineSystemShared : EntitySystem { + [Dependency] private readonly OccluderSystem _occluder = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SharedContainerSystem _containerSystem = default!; [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; @@ -182,12 +183,9 @@ public bool InRangeUnOccluded<TState>(MapCoordinates origin, MapCoordinates othe length = MaxRaycastRange; } - var occluderSystem = Get<OccluderSystem>(); - IoCManager.Resolve(ref entMan); - var ray = new Ray(origin.Position, dir.Normalized()); - var rayResults = occluderSystem - .IntersectRayWithPredicate(origin.MapId, ray, length, state, predicate, false).ToList(); + var rayResults = _occluder + .IntersectRayWithPredicate(origin.MapId, ray, length, state, predicate, false); if (rayResults.Count == 0) return true; @@ -195,13 +193,13 @@ public bool InRangeUnOccluded<TState>(MapCoordinates origin, MapCoordinates othe foreach (var result in rayResults) { - if (!entMan.TryGetComponent(result.HitEntity, out OccluderComponent? o)) + if (!TryComp(result.HitEntity, out OccluderComponent? o)) { continue; } var bBox = o.BoundingBox; - bBox = bBox.Translated(entMan.GetComponent<TransformComponent>(result.HitEntity).WorldPosition); + bBox = bBox.Translated(_transform.GetWorldPosition(result.HitEntity)); if (bBox.Contains(origin.Position) || bBox.Contains(other.Position)) { @@ -216,7 +214,6 @@ public bool InRangeUnOccluded<TState>(MapCoordinates origin, MapCoordinates othe public bool InRangeUnOccluded(EntityUid origin, EntityUid other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve<IEntityManager>(); var originPos = _transform.GetMapCoordinates(origin); var otherPos = _transform.GetMapCoordinates(other); @@ -225,16 +222,14 @@ public bool InRangeUnOccluded(EntityUid origin, EntityUid other, float range = E public bool InRangeUnOccluded(EntityUid origin, EntityCoordinates other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve<IEntityManager>(); var originPos = _transform.GetMapCoordinates(origin); - var otherPos = other.ToMap(entMan, _transform); + var otherPos = _transform.ToMapCoordinates(other); return InRangeUnOccluded(originPos, otherPos, range, predicate, ignoreInsideBlocker); } public bool InRangeUnOccluded(EntityUid origin, MapCoordinates other, float range = ExamineRange, Ignored? predicate = null, bool ignoreInsideBlocker = true) { - var entMan = IoCManager.Resolve<IEntityManager>(); var originPos = _transform.GetMapCoordinates(origin); return InRangeUnOccluded(originPos, other, range, predicate, ignoreInsideBlocker); @@ -250,11 +245,12 @@ public FormattedMessage GetExamineText(EntityUid entity, EntityUid? examiner) } var hasDescription = false; + var metadata = MetaData(entity); //Add an entity description if one is declared - if (!string.IsNullOrEmpty(EntityManager.GetComponent<MetaDataComponent>(entity).EntityDescription)) + if (!string.IsNullOrEmpty(metadata.EntityDescription)) { - message.AddText(EntityManager.GetComponent<MetaDataComponent>(entity).EntityDescription); + message.AddText(metadata.EntityDescription); hasDescription = true; } @@ -356,7 +352,7 @@ int Comparison(ExamineMessagePart a, ExamineMessagePart b) var totalMessage = new FormattedMessage(Message); parts.Sort(Comparison); - if (_hasDescription) + if (_hasDescription && parts.Count > 0) { totalMessage.PushNewline(); } diff --git a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionComponent.cs b/Content.Shared/Eye/Blinding/Components/ActivatableUIRequiresVisionComponent.cs similarity index 58% rename from Content.Server/Eye/Blinding/ActivatableUIRequiresVisionComponent.cs rename to Content.Shared/Eye/Blinding/Components/ActivatableUIRequiresVisionComponent.cs index 725b871b16d..afb270414f3 100644 --- a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionComponent.cs +++ b/Content.Shared/Eye/Blinding/Components/ActivatableUIRequiresVisionComponent.cs @@ -1,8 +1,6 @@ -namespace Content.Server.Eye.Blinding +namespace Content.Shared.Eye.Blinding.Components { [RegisterComponent] - public sealed partial class ActivatableUIRequiresVisionComponent : Component - { - } + public sealed partial class ActivatableUIRequiresVisionComponent : Component; } diff --git a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs b/Content.Shared/Eye/Blinding/Systems/ActivatableUIRequiresVisionSystem.cs similarity index 77% rename from Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs rename to Content.Shared/Eye/Blinding/Systems/ActivatableUIRequiresVisionSystem.cs index 7b937cf0d81..6ed0c4cd6db 100644 --- a/Content.Server/Eye/Blinding/ActivatableUIRequiresVisionSystem.cs +++ b/Content.Shared/Eye/Blinding/Systems/ActivatableUIRequiresVisionSystem.cs @@ -1,18 +1,14 @@ -using Content.Shared.Eye.Blinding; using Content.Shared.UserInterface; -using Content.Server.Popups; using Content.Shared.Eye.Blinding.Components; -using Content.Shared.Eye.Blinding.Systems; -using Robust.Shared.Player; -using Robust.Server.GameObjects; +using Content.Shared.Popups; using Robust.Shared.Collections; -namespace Content.Server.Eye.Blinding; +namespace Content.Shared.Eye.Blinding.Systems; public sealed class ActivatableUIRequiresVisionSystem : EntitySystem { - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly UserInterfaceSystem _userInterfaceSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly SharedUserInterfaceSystem _userInterfaceSystem = default!; public override void Initialize() { @@ -28,7 +24,7 @@ private void OnOpenAttempt(EntityUid uid, ActivatableUIRequiresVisionComponent c if (TryComp<BlindableComponent>(args.User, out var blindable) && blindable.IsBlind) { - _popupSystem.PopupCursor(Loc.GetString("blindness-fail-attempt"), args.User, Shared.Popups.PopupType.MediumCaution); + _popupSystem.PopupClient(Loc.GetString("blindness-fail-attempt"), args.User, Shared.Popups.PopupType.MediumCaution); args.Cancel(); } } diff --git a/Content.Server/Eye/Blinding/EyeProtection/EyeProtectionSystem.cs b/Content.Shared/Eye/Blinding/Systems/EyeProtectionSystem.cs similarity index 96% rename from Content.Server/Eye/Blinding/EyeProtection/EyeProtectionSystem.cs rename to Content.Shared/Eye/Blinding/Systems/EyeProtectionSystem.cs index 2d54c03b51b..0fc01f1b4e5 100644 --- a/Content.Server/Eye/Blinding/EyeProtection/EyeProtectionSystem.cs +++ b/Content.Shared/Eye/Blinding/Systems/EyeProtectionSystem.cs @@ -1,17 +1,16 @@ using Content.Shared.StatusEffect; using Content.Shared.Inventory; using Content.Shared.Eye.Blinding.Components; -using Content.Shared.Eye.Blinding.Systems; using Content.Shared.Tools.Components; using Content.Shared.Item.ItemToggle.Components; -namespace Content.Server.Eye.Blinding.EyeProtection +namespace Content.Shared.Eye.Blinding.Systems { public sealed class EyeProtectionSystem : EntitySystem { [Dependency] private readonly StatusEffectsSystem _statusEffectsSystem = default!; [Dependency] private readonly BlindableSystem _blindingSystem = default!; - + public override void Initialize() { base.Initialize(); @@ -58,6 +57,7 @@ private void OnUseAttempt(EntityUid uid, RequiresEyeProtectionComponent componen private void OnWelderToggled(EntityUid uid, RequiresEyeProtectionComponent component, ItemToggledEvent args) { component.Toggled = args.Activated; + Dirty(uid, component); } } } diff --git a/Content.Shared/FixedPoint/FixedPoint2.cs b/Content.Shared/FixedPoint/FixedPoint2.cs index 6439ee6c5e2..7316d22f113 100644 --- a/Content.Shared/FixedPoint/FixedPoint2.cs +++ b/Content.Shared/FixedPoint/FixedPoint2.cs @@ -48,6 +48,8 @@ public static FixedPoint2 New(int value) public static FixedPoint2 FromCents(int value) => new(value); + public static FixedPoint2 FromHundredths(int value) => new(value); + public static FixedPoint2 New(float value) { return new((int) ApplyFloatEpsilon(value * ShiftConstant)); @@ -245,14 +247,14 @@ public static FixedPoint2 Dist(FixedPoint2 a, FixedPoint2 b) return FixedPoint2.Abs(a - b); } - public static FixedPoint2 Clamp(FixedPoint2 reagent, FixedPoint2 min, FixedPoint2 max) + public static FixedPoint2 Clamp(FixedPoint2 number, FixedPoint2 min, FixedPoint2 max) { if (min > max) { throw new ArgumentException($"{nameof(min)} {min} cannot be larger than {nameof(max)} {max}"); } - return reagent < min ? min : reagent > max ? max : reagent; + return number < min ? min : number > max ? max : number; } public override readonly bool Equals(object? obj) @@ -274,7 +276,7 @@ public void Deserialize(string value) if (value == "MaxValue") Value = int.MaxValue; else - this = New(Parse.Float(value)); + this = New(Parse.Double(value)); } public override readonly string ToString() => $"{ShiftDown().ToString(CultureInfo.InvariantCulture)}"; @@ -314,7 +316,7 @@ public readonly int CompareTo(FixedPoint2 other) } - public static class FixedPointEnumerableExt + public static class FixedPoint2EnumerableExt { public static FixedPoint2 Sum(this IEnumerable<FixedPoint2> source) { diff --git a/Content.Shared/FixedPoint/FixedPoint4.cs b/Content.Shared/FixedPoint/FixedPoint4.cs new file mode 100644 index 00000000000..b17587f684b --- /dev/null +++ b/Content.Shared/FixedPoint/FixedPoint4.cs @@ -0,0 +1,339 @@ +using System.Globalization; +using System.Linq; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.FixedPoint +{ + /// <summary> + /// Represents a quantity of something, to a precision of 0.01. + /// To enforce this level of precision, floats are shifted by 2 decimal points, rounded, and converted to an int. + /// </summary> + [Serializable, CopyByRef] + public struct FixedPoint4 : ISelfSerialize, IComparable<FixedPoint4>, IEquatable<FixedPoint4>, IFormattable + { + public long Value { get; private set; } + private const long Shift = 4; + private const long ShiftConstant = 10000; // Must be equal to pow(10, Shift) + + public static FixedPoint4 MaxValue { get; } = new(long.MaxValue); + public static FixedPoint4 Epsilon { get; } = new(1); + public static FixedPoint4 Zero { get; } = new(0); + + // This value isn't picked by any proper testing, don't @ me. + private const float FloatEpsilon = 0.00001f; + +#if DEBUG + static FixedPoint4() + { + // ReSharper disable once CompareOfFloatsByEqualityOperator + DebugTools.Assert(Math.Pow(10, Shift) == ShiftConstant, "ShiftConstant must be equal to pow(10, Shift)"); + } +#endif + + private readonly double ShiftDown() + { + return Value / (double) ShiftConstant; + } + + private FixedPoint4(long value) + { + Value = value; + } + + public static FixedPoint4 New(long value) + { + return new(value * ShiftConstant); + } + public static FixedPoint4 FromTenThousandths(long value) => new(value); + + public static FixedPoint4 New(float value) + { + return new((long) ApplyFloatEpsilon(value * ShiftConstant)); + } + + private static float ApplyFloatEpsilon(float value) + { + return value + FloatEpsilon * Math.Sign(value); + } + + private static double ApplyFloatEpsilon(double value) + { + return value + FloatEpsilon * Math.Sign(value); + } + + /// <summary> + /// Create the closest <see cref="FixedPoint4"/> for a float value, always rounding up. + /// </summary> + public static FixedPoint4 NewCeiling(float value) + { + return new((long) MathF.Ceiling(value * ShiftConstant)); + } + + public static FixedPoint4 New(double value) + { + return new((long) ApplyFloatEpsilon(value * ShiftConstant)); + } + + public static FixedPoint4 New(string value) + { + return New(Parse.Float(value)); + } + + public static FixedPoint4 operator +(FixedPoint4 a) => a; + + public static FixedPoint4 operator -(FixedPoint4 a) => new(-a.Value); + + public static FixedPoint4 operator +(FixedPoint4 a, FixedPoint4 b) + => new(a.Value + b.Value); + + public static FixedPoint4 operator -(FixedPoint4 a, FixedPoint4 b) + => new(a.Value - b.Value); + + public static FixedPoint4 operator *(FixedPoint4 a, FixedPoint4 b) + { + return new(b.Value * a.Value / ShiftConstant); + } + + public static FixedPoint4 operator *(FixedPoint4 a, float b) + { + return new((long) ApplyFloatEpsilon(a.Value * b)); + } + + public static FixedPoint4 operator *(FixedPoint4 a, double b) + { + return new((long) ApplyFloatEpsilon(a.Value * b)); + } + + public static FixedPoint4 operator *(FixedPoint4 a, long b) + { + return new(a.Value * b); + } + + public static FixedPoint4 operator /(FixedPoint4 a, FixedPoint4 b) + { + return new((long) (ShiftConstant * (long) a.Value / b.Value)); + } + + public static FixedPoint4 operator /(FixedPoint4 a, float b) + { + return new((long) ApplyFloatEpsilon(a.Value / b)); + } + + public static bool operator <=(FixedPoint4 a, long b) + { + return a <= New(b); + } + + public static bool operator >=(FixedPoint4 a, long b) + { + return a >= New(b); + } + + public static bool operator <(FixedPoint4 a, long b) + { + return a < New(b); + } + + public static bool operator >(FixedPoint4 a, long b) + { + return a > New(b); + } + + public static bool operator ==(FixedPoint4 a, long b) + { + return a == New(b); + } + + public static bool operator !=(FixedPoint4 a, long b) + { + return a != New(b); + } + + public static bool operator ==(FixedPoint4 a, FixedPoint4 b) + { + return a.Equals(b); + } + + public static bool operator !=(FixedPoint4 a, FixedPoint4 b) + { + return !a.Equals(b); + } + + public static bool operator <=(FixedPoint4 a, FixedPoint4 b) + { + return a.Value <= b.Value; + } + + public static bool operator >=(FixedPoint4 a, FixedPoint4 b) + { + return a.Value >= b.Value; + } + + public static bool operator <(FixedPoint4 a, FixedPoint4 b) + { + return a.Value < b.Value; + } + + public static bool operator >(FixedPoint4 a, FixedPoint4 b) + { + return a.Value > b.Value; + } + + public readonly float Float() + { + return (float) ShiftDown(); + } + + public readonly double Double() + { + return ShiftDown(); + } + + public readonly long Long() + { + return Value / ShiftConstant; + } + + public readonly int Int() + { + return (int)Long(); + } + + // Implicit operators ftw + public static implicit operator FixedPoint4(FixedPoint2 n) => New(n.Int()); + public static implicit operator FixedPoint4(float n) => New(n); + public static implicit operator FixedPoint4(double n) => New(n); + public static implicit operator FixedPoint4(int n) => New(n); + public static implicit operator FixedPoint4(long n) => New(n); + + public static explicit operator FixedPoint2(FixedPoint4 n) => n.Int(); + public static explicit operator float(FixedPoint4 n) => n.Float(); + public static explicit operator double(FixedPoint4 n) => n.Double(); + public static explicit operator int(FixedPoint4 n) => n.Int(); + public static explicit operator long(FixedPoint4 n) => n.Long(); + + public static FixedPoint4 Min(params FixedPoint4[] fixedPoints) + { + return fixedPoints.Min(); + } + + public static FixedPoint4 Min(FixedPoint4 a, FixedPoint4 b) + { + return a < b ? a : b; + } + + public static FixedPoint4 Max(FixedPoint4 a, FixedPoint4 b) + { + return a > b ? a : b; + } + + public static long Sign(FixedPoint4 value) + { + if (value < Zero) + { + return -1; + } + + if (value > Zero) + { + return 1; + } + + return 0; + } + + public static FixedPoint4 Abs(FixedPoint4 a) + { + return FromTenThousandths(Math.Abs(a.Value)); + } + + public static FixedPoint4 Dist(FixedPoint4 a, FixedPoint4 b) + { + return FixedPoint4.Abs(a - b); + } + + public static FixedPoint4 Clamp(FixedPoint4 number, FixedPoint4 min, FixedPoint4 max) + { + if (min > max) + { + throw new ArgumentException($"{nameof(min)} {min} cannot be larger than {nameof(max)} {max}"); + } + + return number < min ? min : number > max ? max : number; + } + + public override readonly bool Equals(object? obj) + { + return obj is FixedPoint4 unit && + Value == unit.Value; + } + + public override readonly int GetHashCode() + { + // ReSharper disable once NonReadonlyMemberInGetHashCode + return HashCode.Combine(Value); + } + + public void Deserialize(string value) + { + // TODO implement "lossless" serializer. + // I.e., dont use floats. + if (value == "MaxValue") + Value = int.MaxValue; + else + this = New(Parse.Double(value)); + } + + public override readonly string ToString() => $"{ShiftDown().ToString(CultureInfo.InvariantCulture)}"; + + public string ToString(string? format, IFormatProvider? formatProvider) + { + return ToString(); + } + + public readonly string Serialize() + { + // TODO implement "lossless" serializer. + // I.e., dont use floats. + if (Value == int.MaxValue) + return "MaxValue"; + + return ToString(); + } + + public readonly bool Equals(FixedPoint4 other) + { + return Value == other.Value; + } + + public readonly int CompareTo(FixedPoint4 other) + { + if (other.Value > Value) + { + return -1; + } + if (other.Value < Value) + { + return 1; + } + return 0; + } + + } + + public static class FixedPoint4EnumerableExt + { + public static FixedPoint4 Sum(this IEnumerable<FixedPoint4> source) + { + var acc = FixedPoint4.Zero; + + foreach (var n in source) + { + acc += n; + } + + return acc; + } + } +} diff --git a/Content.Shared/Foldable/DeployFoldableComponent.cs b/Content.Shared/Foldable/DeployFoldableComponent.cs new file mode 100644 index 00000000000..4ccca6b7427 --- /dev/null +++ b/Content.Shared/Foldable/DeployFoldableComponent.cs @@ -0,0 +1,7 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Foldable; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(DeployFoldableSystem))] +public sealed partial class DeployFoldableComponent : Component; diff --git a/Content.Shared/Foldable/DeployFoldableSystem.cs b/Content.Shared/Foldable/DeployFoldableSystem.cs new file mode 100644 index 00000000000..fa2e3f87892 --- /dev/null +++ b/Content.Shared/Foldable/DeployFoldableSystem.cs @@ -0,0 +1,39 @@ +using Content.Shared.Hands.Components; +using Content.Shared.Hands.EntitySystems; +using Content.Shared.Interaction; + +namespace Content.Shared.Foldable; + +public sealed class DeployFoldableSystem : EntitySystem +{ + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly FoldableSystem _foldable = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<DeployFoldableComponent, AfterInteractEvent>(OnAfterInteract); + } + + private void OnAfterInteract(Entity<DeployFoldableComponent> ent, ref AfterInteractEvent args) + { + if (args.Handled || !args.CanReach) + return; + + if (!TryComp<FoldableComponent>(ent, out var foldable)) + return; + + if (!TryComp(args.User, out HandsComponent? hands) + || !_hands.TryDrop(args.User, args.Used, targetDropLocation: args.ClickLocation, handsComp: hands)) + return; + + if (!_foldable.TrySetFolded(ent, foldable, false)) + { + _hands.TryPickup(args.User, args.Used, handsComp: hands); + return; + } + + args.Handled = true; + } +} diff --git a/Content.Shared/Ghost/GhostRoleRadioEvents.cs b/Content.Shared/Ghost/GhostRoleRadioEvents.cs new file mode 100644 index 00000000000..8bdd6e58375 --- /dev/null +++ b/Content.Shared/Ghost/GhostRoleRadioEvents.cs @@ -0,0 +1,21 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Ghost.Roles; + +[Serializable, NetSerializable] +public sealed class GhostRoleRadioMessage : BoundUserInterfaceMessage +{ + public ProtoId<GhostRolePrototype> ProtoId; + + public GhostRoleRadioMessage(ProtoId<GhostRolePrototype> protoId) + { + ProtoId = protoId; + } +} + +[Serializable, NetSerializable] +public enum GhostRoleRadioUiKey : byte +{ + Key +} diff --git a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs similarity index 85% rename from Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs rename to Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs index 6116173f904..2e44effad96 100644 --- a/Content.Server/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs +++ b/Content.Shared/Ghost/Roles/Components/GhostRoleMobSpawnerComponent.cs @@ -1,12 +1,11 @@ -using Robust.Shared.Prototypes; +using Robust.Shared.Prototypes; -namespace Content.Server.Ghost.Roles.Components +namespace Content.Shared.Ghost.Roles.Components { /// <summary> /// Allows a ghost to take this role, spawning a new entity. /// </summary> [RegisterComponent, EntityCategory("Spawner")] - [Access(typeof(GhostRoleSystem))] public sealed partial class GhostRoleMobSpawnerComponent : Component { [DataField] diff --git a/Content.Shared/Ghost/Roles/GhostRolePrototype.cs b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs index bc36774ea8b..3e81b5e46e8 100644 --- a/Content.Shared/Ghost/Roles/GhostRolePrototype.cs +++ b/Content.Shared/Ghost/Roles/GhostRolePrototype.cs @@ -30,6 +30,13 @@ public sealed partial class GhostRolePrototype : IPrototype [DataField(required: true)] public EntProtoId EntityPrototype; + /// <summary> + /// The entity prototype's sprite to use to represent the ghost role + /// Use this if you don't want to use the entity itself + /// </summary> + [DataField] + public EntProtoId? IconPrototype = null; + /// <summary> /// Rules of the ghostrole /// </summary> diff --git a/Content.Shared/Hands/Components/HandsComponent.cs b/Content.Shared/Hands/Components/HandsComponent.cs index 01579cccdb7..f218455c0bb 100644 --- a/Content.Shared/Hands/Components/HandsComponent.cs +++ b/Content.Shared/Hands/Components/HandsComponent.cs @@ -1,3 +1,4 @@ +using Content.Shared.DisplacementMap; using Content.Shared.Hands.EntitySystems; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -76,6 +77,9 @@ public sealed partial class HandsComponent : Component /// </summary> [DataField, ViewVariables(VVAccess.ReadWrite)] public TimeSpan ThrowCooldown = TimeSpan.FromSeconds(0.5f); + + [DataField] + public DisplacementData? HandDisplacement; } [Serializable, NetSerializable] diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs index 2e3c6f62034..0579e997253 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Drop.cs @@ -3,6 +3,7 @@ using Content.Shared.Interaction; using Content.Shared.Inventory.VirtualItem; using Content.Shared.Tag; +using Content.Shared.Interaction.Events; using Robust.Shared.Containers; using Robust.Shared.Map; @@ -125,15 +126,13 @@ public bool TryDrop(EntityUid uid, Hand hand, EntityCoordinates? targetDropLocat var userXform = Transform(uid); var isInContainer = ContainerSystem.IsEntityOrParentInContainer(uid, xform: userXform); + DoDrop(uid, hand, doDropInteraction: doDropInteraction, handsComp); + // drop the item inside the container if the user is in a container if (targetDropLocation == null || isInContainer) - { - TransformSystem.DropNextTo((entity, itemXform), (uid, userXform)); return true; - } // otherwise, remove the item from their hands and place it at the calculated interaction range position - DoDrop(uid, hand, doDropInteraction: doDropInteraction, handsComp); var (itemPos, itemRot) = TransformSystem.GetWorldPositionRotation(entity); var origin = new MapCoordinates(itemPos, itemXform.MapID); var target = TransformSystem.ToMapCoordinates(targetDropLocation.Value); diff --git a/Content.Shared/Humanoid/NamingSystem.cs b/Content.Shared/Humanoid/NamingSystem.cs index a563d396398..1cf9487d087 100644 --- a/Content.Shared/Humanoid/NamingSystem.cs +++ b/Content.Shared/Humanoid/NamingSystem.cs @@ -35,11 +35,16 @@ public string GetName(string species, Gender? gender = null) case SpeciesNaming.FirstDashFirst: return Loc.GetString("namepreset-firstdashfirst", ("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender))); - // Start ADT Tweak: Drask naming + // Start ADT Tweak: Drask naming case SpeciesNaming.FirstDashFirstDashFirst: return Loc.GetString("namepreset-firstdashfirstdashfirst", ("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender)), ("first3", GetFirstName(speciesProto, gender))); - // End ADT Tweak + // End ADT Tweak + // Parkstation-Ipc-Start + case SpeciesNaming.FirstDashLast: + return Loc.GetString("namepreset-firstdashlast", + ("first", GetFirstName(speciesProto, gender)), ("last", GetLastName(speciesProto))); + // Parkstation-Ipc-End case SpeciesNaming.FirstLast: default: return Loc.GetString("namepreset-firstlast", diff --git a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs index 1405c4b5a94..c1c9e21015d 100644 --- a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs @@ -144,4 +144,5 @@ public enum SpeciesNaming : byte FirstDashFirstDashFirst, // ADT End tweak TheFirstofLast, + FirstDashLast, // Parkstation-IPC } diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs index 2dd671816fd..a9fa40de97f 100644 --- a/Content.Shared/Input/ContentKeyFunctions.cs +++ b/Content.Shared/Input/ContentKeyFunctions.cs @@ -26,6 +26,7 @@ public static class ContentKeyFunctions public static readonly BoundKeyFunction EscapeContext = "EscapeContext"; public static readonly BoundKeyFunction OpenCharacterMenu = "OpenCharacterMenu"; public static readonly BoundKeyFunction OpenEmotesMenu = "OpenEmotesMenu"; + public static readonly BoundKeyFunction OpenLanguagesMenu = "OpenLanguagesMenu"; // Languaжes public static readonly BoundKeyFunction OpenCraftingMenu = "OpenCraftingMenu"; public static readonly BoundKeyFunction OpenGuidebook = "OpenGuidebook"; public static readonly BoundKeyFunction OpenInventoryMenu = "OpenInventoryMenu"; diff --git a/Content.Shared/Interaction/InteractionPopupSystem.cs b/Content.Shared/Interaction/InteractionPopupSystem.cs index d956ff3d953..2a742d4211b 100644 --- a/Content.Shared/Interaction/InteractionPopupSystem.cs +++ b/Content.Shared/Interaction/InteractionPopupSystem.cs @@ -113,7 +113,7 @@ private void SharedInteract( Spawn(component.InteractFailureSpawn, _transform.GetMapCoordinates(uid)); } - if (component.MessagePerceivedByOthers != null) + if (!string.IsNullOrEmpty(component.MessagePerceivedByOthers)) { var msgOthers = Loc.GetString(component.MessagePerceivedByOthers, ("user", Identity.Entity(user, EntityManager)), ("target", Identity.Entity(uid, EntityManager))); @@ -131,7 +131,7 @@ private void SharedInteract( return; } - _popupSystem.PopupPredicted(msg, uid, user); + _popupSystem.PopupClient(msg, uid, user); if (sfx == null) return; diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index c32b4bcf780..a57796d87c4 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -165,10 +165,7 @@ private void OnBoundInterfaceInteractAttempt(BoundUserInterfaceMessageAttempt ev return; } - if (!uiComp.RequireHands) - return; - - if (!_handsQuery.TryComp(ev.Actor, out var hands) || hands.Hands.Count == 0) + if (uiComp.RequireHands && !_handsQuery.HasComp(ev.Actor)) ev.Cancel(); } @@ -952,7 +949,7 @@ public void InteractUsing( RaiseLocalEvent(target, interactUsingEvent, true); DoContactInteraction(user, used, interactUsingEvent); DoContactInteraction(user, target, interactUsingEvent); - DoContactInteraction(used, target, interactUsingEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target if (interactUsingEvent.Handled) return; @@ -973,7 +970,7 @@ public void InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, E if (canReach) { DoContactInteraction(user, target, afterInteractEvent); - DoContactInteraction(used, target, afterInteractEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target } if (afterInteractEvent.Handled) @@ -989,7 +986,7 @@ public void InteractDoAfter(EntityUid user, EntityUid used, EntityUid? target, E if (canReach) { DoContactInteraction(user, target, afterInteractUsingEvent); - DoContactInteraction(used, target, afterInteractUsingEvent); + // Contact interactions are currently only used for forensics, so we don't raise used -> target } } diff --git a/Content.Shared/Inventory/InventoryComponent.cs b/Content.Shared/Inventory/InventoryComponent.cs index 02b3a5b2583..629cf1169c4 100644 --- a/Content.Shared/Inventory/InventoryComponent.cs +++ b/Content.Shared/Inventory/InventoryComponent.cs @@ -1,4 +1,5 @@ -using Robust.Shared.Containers; +using Content.Shared.DisplacementMap; +using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -13,18 +14,21 @@ public sealed partial class InventoryComponent : Component [DataField("speciesId")] public string? SpeciesId { get; set; } - [DataField] public Dictionary<string, SlotDisplacementData> Displacements = []; - public SlotDefinition[] Slots = Array.Empty<SlotDefinition>(); public ContainerSlot[] Containers = Array.Empty<ContainerSlot>(); - [DataDefinition] - public sealed partial class SlotDisplacementData - { - [DataField(required: true)] - public PrototypeLayerData Layer = default!; + [DataField] + public Dictionary<string, DisplacementData> Displacements = new(); + + /// <summary> + /// Alternate displacement maps, which if available, will be selected for the player of the appropriate gender. + /// </summary> + [DataField] + public Dictionary<string, DisplacementData> FemaleDisplacements = new(); - [DataField] - public string? ShaderOverride = "DisplacedStencilDraw"; - } + /// <summary> + /// Alternate displacement maps, which if available, will be selected for the player of the appropriate gender. + /// </summary> + [DataField] + public Dictionary<string, DisplacementData> MaleDisplacements = new(); } diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 88ac8c05bfb..d776a65e233 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -33,12 +33,21 @@ public sealed partial class LatheComponent : Component [DataField] public SoundSpecifier? ProducingSound; + [DataField] + public string? ReagentOutputSlotId; + #region Visualizer info [DataField] public string? IdleState; [DataField] public string? RunningState; + + [DataField] + public string? UnlitIdleState; + + [DataField] + public string? UnlitRunningState; #endregion /// <summary> diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs index b41a91f9c34..e240571f315 100644 --- a/Content.Shared/Lathe/SharedLatheSystem.cs +++ b/Content.Shared/Lathe/SharedLatheSystem.cs @@ -1,5 +1,8 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Shared.Emag.Systems; +using Content.Shared.Examine; +using Content.Shared.Localizations; using Content.Shared.Materials; using Content.Shared.Research.Prototypes; using JetBrains.Annotations; @@ -23,10 +26,21 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent<EmagLatheRecipesComponent, GotEmaggedEvent>(OnEmagged); + SubscribeLocalEvent<LatheComponent, ExaminedEvent>(OnExamined); SubscribeLocalEvent<PrototypesReloadedEventArgs>(OnPrototypesReloaded); + BuildInverseRecipeDictionary(); } + private void OnExamined(Entity<LatheComponent> ent, ref ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + if (ent.Comp.ReagentOutputSlotId != null) + args.PushMarkup(Loc.GetString("lathe-menu-reagent-slot-examine")); + } + [PublicAPI] public bool CanProduce(EntityUid uid, string recipe, int amount = 1, LatheComponent? component = null) { @@ -40,7 +54,7 @@ public bool CanProduce(EntityUid uid, LatheRecipePrototype recipe, int amount = if (!HasRecipe(uid, recipe, component)) return false; - foreach (var (material, needed) in recipe.RequiredMaterials) + foreach (var (material, needed) in recipe.Materials) { var adjustedAmount = AdjustMaterial(needed, recipe.ApplyMaterialDiscount, component.MaterialUseMultiplier); @@ -72,6 +86,9 @@ private void BuildInverseRecipeDictionary() _inverseRecipeDictionary.Clear(); foreach (var latheRecipe in _proto.EnumeratePrototypes<LatheRecipePrototype>()) { + if (latheRecipe.Result == null) + continue; + _inverseRecipeDictionary.GetOrNew(latheRecipe.Result).Add(latheRecipe); } } @@ -83,4 +100,55 @@ public bool TryGetRecipesFromEntity(string prototype, [NotNullWhen(true)] out Li recipes.AddRange(r); return recipes.Count != 0; } + + public string GetRecipeName(ProtoId<LatheRecipePrototype> proto) + { + return GetRecipeName(_proto.Index(proto)); + } + + public string GetRecipeName(LatheRecipePrototype proto) + { + if (!string.IsNullOrWhiteSpace(proto.Name)) + return Loc.GetString(proto.Name); + + if (proto.Result is { } result) + { + return _proto.Index(result).Name; + } + + if (proto.ResultReagents is { } resultReagents) + { + return ContentLocalizationManager.FormatList(resultReagents + .Select(p => Loc.GetString("lathe-menu-result-reagent-display", ("reagent", _proto.Index(p.Key).LocalizedName), ("amount", p.Value))) + .ToList()); + } + + return string.Empty; + } + + [PublicAPI] + public string GetRecipeDescription(ProtoId<LatheRecipePrototype> proto) + { + return GetRecipeDescription(_proto.Index(proto)); + } + + public string GetRecipeDescription(LatheRecipePrototype proto) + { + if (!string.IsNullOrWhiteSpace(proto.Description)) + return Loc.GetString(proto.Description); + + if (proto.Result is { } result) + { + return _proto.Index(result).Description; + } + + if (proto.ResultReagents is { } resultReagents) + { + // We only use the first one for the description since these descriptions don't combine very well. + var reagent = resultReagents.First().Key; + return _proto.Index(reagent).LocalizedDescription; + } + + return string.Empty; + } } diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs index e3e2bc6df13..070d5801c1c 100644 --- a/Content.Shared/Lock/LockComponent.cs +++ b/Content.Shared/Lock/LockComponent.cs @@ -86,6 +86,13 @@ public sealed partial class LockComponent : Component [ByRefEvent] public record struct LockToggleAttemptEvent(EntityUid User, bool Silent = false, bool Cancelled = false); +/// <summary> +/// Event raised on the user when a toggle is attempted. +/// Can be cancelled to prevent it. +/// </summary> +[ByRefEvent] +public record struct UserLockToggleAttemptEvent(EntityUid Target, bool Silent = false, bool Cancelled = false); + /// <summary> /// Event raised on a lock after it has been toggled. /// </summary> diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs index 22a90aa0a62..8dde7672243 100644 --- a/Content.Shared/Lock/LockSystem.cs +++ b/Content.Shared/Lock/LockSystem.cs @@ -232,7 +232,12 @@ public bool CanToggleLock(EntityUid uid, EntityUid user, bool quiet = true) var ev = new LockToggleAttemptEvent(user, quiet); RaiseLocalEvent(uid, ref ev, true); - return !ev.Cancelled; + if (ev.Cancelled) + return false; + + var userEv = new UserLockToggleAttemptEvent(uid, quiet); + RaiseLocalEvent(user, ref userEv, true); + return !userEv.Cancelled; } // TODO: this should be a helper on AccessReaderSystem since so many systems copy paste it @@ -377,4 +382,3 @@ private void LockToggled(EntityUid uid, ActivatableUIRequiresLockComponent compo _activatableUI.CloseAll(uid); } } - diff --git a/Content.Shared/Lock/LockingWhitelistComponent.cs b/Content.Shared/Lock/LockingWhitelistComponent.cs new file mode 100644 index 00000000000..4ac832e4384 --- /dev/null +++ b/Content.Shared/Lock/LockingWhitelistComponent.cs @@ -0,0 +1,18 @@ +using Content.Shared.Whitelist; +using Robust.Shared.GameStates; + +namespace Content.Shared.Lock; + +/// <summary> +/// Adds whitelist and blacklist for this mob to lock things. +/// The whitelist and blacklist are checked against the object being locked, not the mob. +/// </summary> +[RegisterComponent, NetworkedComponent, Access(typeof(LockingWhitelistSystem))] +public sealed partial class LockingWhitelistComponent : Component +{ + [DataField] + public EntityWhitelist? Whitelist; + + [DataField] + public EntityWhitelist? Blacklist; +} diff --git a/Content.Shared/Lock/LockingWhitelistSystem.cs b/Content.Shared/Lock/LockingWhitelistSystem.cs new file mode 100644 index 00000000000..ba495fba905 --- /dev/null +++ b/Content.Shared/Lock/LockingWhitelistSystem.cs @@ -0,0 +1,28 @@ +using Content.Shared.Popups; +using Content.Shared.Whitelist; + +namespace Content.Shared.Lock; + +public sealed class LockingWhitelistSystem : EntitySystem +{ + [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<LockingWhitelistComponent, UserLockToggleAttemptEvent>(OnUserLockToggleAttempt); + } + + private void OnUserLockToggleAttempt(Entity<LockingWhitelistComponent> ent, ref UserLockToggleAttemptEvent args) + { + if (_whitelistSystem.CheckBoth(args.Target, ent.Comp.Blacklist, ent.Comp.Whitelist)) + return; + + if (!args.Silent) + _popupSystem.PopupClient(Loc.GetString("locking-whitelist-component-lock-toggle-deny"), ent.Owner); + + args.Cancelled = true; + } +} diff --git a/Content.Shared/MagicMirror/MagicMirrorComponent.cs b/Content.Shared/MagicMirror/MagicMirrorComponent.cs index 95b17369795..97738be228a 100644 --- a/Content.Shared/MagicMirror/MagicMirrorComponent.cs +++ b/Content.Shared/MagicMirror/MagicMirrorComponent.cs @@ -20,28 +20,28 @@ public sealed partial class MagicMirrorComponent : Component public EntityUid? Target; /// <summary> - /// doafter time required to add a new slot + /// Do after time to add a new slot, adding hair to a person /// </summary> [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan AddSlotTime = TimeSpan.FromSeconds(5); + public TimeSpan AddSlotTime = TimeSpan.FromSeconds(7); /// <summary> - /// doafter time required to remove a existing slot + /// Do after time to remove a slot, removing hair from a person /// </summary> [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan RemoveSlotTime = TimeSpan.FromSeconds(2); + public TimeSpan RemoveSlotTime = TimeSpan.FromSeconds(7); /// <summary> - /// doafter time required to change slot + /// Do after time to change a person's hairstyle /// </summary> [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan SelectSlotTime = TimeSpan.FromSeconds(3); + public TimeSpan SelectSlotTime = TimeSpan.FromSeconds(7); /// <summary> - /// doafter time required to recolor slot + /// Do after time to change a person's hair color /// </summary> [DataField, ViewVariables(VVAccess.ReadWrite)] - public TimeSpan ChangeSlotTime = TimeSpan.FromSeconds(1); + public TimeSpan ChangeSlotTime = TimeSpan.FromSeconds(7); /// <summary> /// Sound emitted when slots are changed diff --git a/Content.Shared/Movement/Events/MoveInputEvent.cs b/Content.Shared/Movement/Events/MoveInputEvent.cs index 1c677a42e87..9c49da722cb 100644 --- a/Content.Shared/Movement/Events/MoveInputEvent.cs +++ b/Content.Shared/Movement/Events/MoveInputEvent.cs @@ -9,16 +9,14 @@ namespace Content.Shared.Movement.Events; [ByRefEvent] public readonly struct MoveInputEvent { - public readonly EntityUid Entity; - public readonly InputMoverComponent Component; + public readonly Entity<InputMoverComponent> Entity; public readonly MoveButtons OldMovement; - public bool HasDirectionalMovement => (Component.HeldMoveButtons & MoveButtons.AnyDirection) != MoveButtons.None; + public bool HasDirectionalMovement => (Entity.Comp.HeldMoveButtons & MoveButtons.AnyDirection) != MoveButtons.None; - public MoveInputEvent(EntityUid entity, InputMoverComponent component, MoveButtons oldMovement) + public MoveInputEvent(Entity<InputMoverComponent> entity, MoveButtons oldMovement) { Entity = entity; - Component = component; OldMovement = oldMovement; } } diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 1ccb7f0c3f1..9dda249423e 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -83,53 +83,53 @@ public static MoveButtons GetNormalizedMovement(MoveButtons buttons) return oldMovement; } - protected void SetMoveInput(InputMoverComponent component, MoveButtons buttons) + protected void SetMoveInput(Entity<InputMoverComponent> entity, MoveButtons buttons) { - if (component.HeldMoveButtons == buttons) + if (entity.Comp.HeldMoveButtons == buttons) return; // Relay the fact we had any movement event. // TODO: Ideally we'd do these in a tick instead of out of sim. - var moveEvent = new MoveInputEvent(component.Owner, component, component.HeldMoveButtons); - component.HeldMoveButtons = buttons; - RaiseLocalEvent(component.Owner, ref moveEvent); - Dirty(component.Owner, component); + var moveEvent = new MoveInputEvent(entity, entity.Comp.HeldMoveButtons); + entity.Comp.HeldMoveButtons = buttons; + RaiseLocalEvent(entity, ref moveEvent); + Dirty(entity, entity.Comp); } - private void OnMoverHandleState(EntityUid uid, InputMoverComponent component, ComponentHandleState args) + private void OnMoverHandleState(Entity<InputMoverComponent> entity, ref ComponentHandleState args) { if (args.Current is not InputMoverComponentState state) return; // Handle state - component.LerpTarget = state.LerpTarget; - component.RelativeRotation = state.RelativeRotation; - component.TargetRelativeRotation = state.TargetRelativeRotation; - component.CanMove = state.CanMove; - component.RelativeEntity = EnsureEntity<InputMoverComponent>(state.RelativeEntity, uid); + entity.Comp.LerpTarget = state.LerpTarget; + entity.Comp.RelativeRotation = state.RelativeRotation; + entity.Comp.TargetRelativeRotation = state.TargetRelativeRotation; + entity.Comp.CanMove = state.CanMove; + entity.Comp.RelativeEntity = EnsureEntity<InputMoverComponent>(state.RelativeEntity, entity.Owner); // Reset - component.LastInputTick = GameTick.Zero; - component.LastInputSubTick = 0; + entity.Comp.LastInputTick = GameTick.Zero; + entity.Comp.LastInputSubTick = 0; - if (component.HeldMoveButtons != state.HeldMoveButtons) + if (entity.Comp.HeldMoveButtons != state.HeldMoveButtons) { - var moveEvent = new MoveInputEvent(uid, component, component.HeldMoveButtons); - component.HeldMoveButtons = state.HeldMoveButtons; - RaiseLocalEvent(uid, ref moveEvent); + var moveEvent = new MoveInputEvent(entity, entity.Comp.HeldMoveButtons); + entity.Comp.HeldMoveButtons = state.HeldMoveButtons; + RaiseLocalEvent(entity.Owner, ref moveEvent); } } - private void OnMoverGetState(EntityUid uid, InputMoverComponent component, ref ComponentGetState args) + private void OnMoverGetState(Entity<InputMoverComponent> entity, ref ComponentGetState args) { args.State = new InputMoverComponentState() { - CanMove = component.CanMove, - RelativeEntity = GetNetEntity(component.RelativeEntity), - LerpTarget = component.LerpTarget, - HeldMoveButtons = component.HeldMoveButtons, - RelativeRotation = component.RelativeRotation, - TargetRelativeRotation = component.TargetRelativeRotation, + CanMove = entity.Comp.CanMove, + RelativeEntity = GetNetEntity(entity.Comp.RelativeEntity), + LerpTarget = entity.Comp.LerpTarget, + HeldMoveButtons = entity.Comp.HeldMoveButtons, + RelativeRotation = entity.Comp.RelativeRotation, + TargetRelativeRotation = entity.Comp.TargetRelativeRotation, }; } @@ -142,9 +142,9 @@ private void ShutdownInput() protected virtual void HandleShuttleInput(EntityUid uid, ShuttleButtons button, ushort subTick, bool state) {} - private void OnAutoParentChange(EntityUid uid, AutoOrientComponent component, ref EntParentChangedMessage args) + private void OnAutoParentChange(Entity<AutoOrientComponent> entity, ref EntParentChangedMessage args) { - ResetCamera(uid); + ResetCamera(entity.Owner); } public void RotateCamera(EntityUid uid, Angle angle) @@ -233,28 +233,28 @@ public Angle GetParentGridAngle(InputMoverComponent mover) return rotation; } - private void OnFollowedParentChange(EntityUid uid, FollowedComponent component, ref EntParentChangedMessage args) + private void OnFollowedParentChange(Entity<FollowedComponent> entity, ref EntParentChangedMessage args) { - foreach (var foll in component.Following) + foreach (var foll in entity.Comp.Following) { if (!MoverQuery.TryGetComponent(foll, out var mover)) continue; var ev = new EntParentChangedMessage(foll, null, args.OldMapId, XformQuery.GetComponent(foll)); - OnInputParentChange(foll, mover, ref ev); + OnInputParentChange((foll, mover), ref ev); } } - private void OnInputParentChange(EntityUid uid, InputMoverComponent component, ref EntParentChangedMessage args) + private void OnInputParentChange(Entity<InputMoverComponent> entity, ref EntParentChangedMessage args) { // If we change our grid / map then delay updating our LastGridAngle. var relative = args.Transform.GridUid; relative ??= args.Transform.MapUid; - if (component.LifeStage < ComponentLifeStage.Running) + if (entity.Comp.LifeStage < ComponentLifeStage.Running) { - component.RelativeEntity = relative; - Dirty(uid, component); + entity.Comp.RelativeEntity = relative; + Dirty(entity.Owner, entity.Comp); return; } @@ -264,28 +264,28 @@ private void OnInputParentChange(EntityUid uid, InputMoverComponent component, r // If we change maps then reset eye rotation entirely. if (oldMapId != mapId) { - component.RelativeEntity = relative; - component.TargetRelativeRotation = Angle.Zero; - component.RelativeRotation = Angle.Zero; - component.LerpTarget = TimeSpan.Zero; - Dirty(uid, component); + entity.Comp.RelativeEntity = relative; + entity.Comp.TargetRelativeRotation = Angle.Zero; + entity.Comp.RelativeRotation = Angle.Zero; + entity.Comp.LerpTarget = TimeSpan.Zero; + Dirty(entity.Owner, entity.Comp); return; } // If we go on a grid and back off then just reset the accumulator. - if (relative == component.RelativeEntity) + if (relative == entity.Comp.RelativeEntity) { - if (component.LerpTarget >= Timing.CurTime) + if (entity.Comp.LerpTarget >= Timing.CurTime) { - component.LerpTarget = TimeSpan.Zero; - Dirty(uid, component); + entity.Comp.LerpTarget = TimeSpan.Zero; + Dirty(entity.Owner, entity.Comp); } return; } - component.LerpTarget = TimeSpan.FromSeconds(InputMoverComponent.LerpTime) + Timing.CurTime; - Dirty(uid, component); + entity.Comp.LerpTarget = TimeSpan.FromSeconds(InputMoverComponent.LerpTime) + Timing.CurTime; + Dirty(entity.Owner, entity.Comp); } private void HandleDirChange(EntityUid entity, Direction dir, ushort subTick, bool state) @@ -299,7 +299,7 @@ private void HandleDirChange(EntityUid entity, Direction dir, ushort subTick, bo DebugTools.AssertNotNull(relayMover.RelayEntity); if (MoverQuery.TryGetComponent(entity, out var mover)) - SetMoveInput(mover, MoveButtons.None); + SetMoveInput((entity, mover), MoveButtons.None); if (!_mobState.IsIncapacitated(entity)) HandleDirChange(relayMover.RelayEntity, dir, subTick, state); @@ -321,18 +321,18 @@ private void HandleDirChange(EntityUid entity, Direction dir, ushort subTick, bo RaiseLocalEvent(xform.ParentUid, ref relayMoveEvent); } - SetVelocityDirection(entity, moverComp, dir, subTick, state); + SetVelocityDirection((entity, moverComp), dir, subTick, state); } - private void OnInputInit(EntityUid uid, InputMoverComponent component, ComponentInit args) + private void OnInputInit(Entity<InputMoverComponent> entity, ref ComponentInit args) { - var xform = Transform(uid); + var xform = Transform(entity.Owner); if (!xform.ParentUid.IsValid()) return; - component.RelativeEntity = xform.GridUid ?? xform.MapUid; - component.TargetRelativeRotation = Angle.Zero; + entity.Comp.RelativeEntity = xform.GridUid ?? xform.MapUid; + entity.Comp.TargetRelativeRotation = Angle.Zero; } private void HandleRunChange(EntityUid uid, ushort subTick, bool walking) @@ -344,7 +344,7 @@ private void HandleRunChange(EntityUid uid, ushort subTick, bool walking) // if we swap to relay then stop our existing input if we ever change back. if (moverComp != null) { - SetMoveInput(moverComp, MoveButtons.None); + SetMoveInput((uid, moverComp), MoveButtons.None); } HandleRunChange(relayMover.RelayEntity, subTick, walking); @@ -353,7 +353,7 @@ private void HandleRunChange(EntityUid uid, ushort subTick, bool walking) if (moverComp == null) return; - SetSprinting(uid, moverComp, subTick, walking); + SetSprinting((uid, moverComp), subTick, walking); } public (Vector2 Walking, Vector2 Sprinting) GetVelocityInput(InputMoverComponent mover) @@ -404,7 +404,7 @@ private void HandleRunChange(EntityUid uid, ushort subTick, bool walking) /// composed into a single direction vector, <see cref="VelocityDir"/>. Enabling /// opposite directions will cancel each other out, resulting in no direction. /// </summary> - public void SetVelocityDirection(EntityUid entity, InputMoverComponent component, Direction direction, ushort subTick, bool enabled) + public void SetVelocityDirection(Entity<InputMoverComponent> entity, Direction direction, ushort subTick, bool enabled) { // Logger.Info($"[{_gameTiming.CurTick}/{subTick}] {direction}: {enabled}"); @@ -417,26 +417,26 @@ public void SetVelocityDirection(EntityUid entity, InputMoverComponent component _ => throw new ArgumentException(nameof(direction)) }; - SetMoveInput(entity, component, subTick, enabled, bit); + SetMoveInput(entity, subTick, enabled, bit); } - private void SetMoveInput(EntityUid entity, InputMoverComponent component, ushort subTick, bool enabled, MoveButtons bit) + private void SetMoveInput(Entity<InputMoverComponent> entity, ushort subTick, bool enabled, MoveButtons bit) { // Modifies held state of a movement button at a certain sub tick and updates current tick movement vectors. - ResetSubtick(component); + ResetSubtick(entity.Comp); - if (subTick >= component.LastInputSubTick) + if (subTick >= entity.Comp.LastInputSubTick) { - var fraction = (subTick - component.LastInputSubTick) / (float) ushort.MaxValue; + var fraction = (subTick - entity.Comp.LastInputSubTick) / (float) ushort.MaxValue; - ref var lastMoveAmount = ref component.Sprinting ? ref component.CurTickSprintMovement : ref component.CurTickWalkMovement; + ref var lastMoveAmount = ref entity.Comp.Sprinting ? ref entity.Comp.CurTickSprintMovement : ref entity.Comp.CurTickWalkMovement; - lastMoveAmount += DirVecForButtons(component.HeldMoveButtons) * fraction; + lastMoveAmount += DirVecForButtons(entity.Comp.HeldMoveButtons) * fraction; - component.LastInputSubTick = subTick; + entity.Comp.LastInputSubTick = subTick; } - var buttons = component.HeldMoveButtons; + var buttons = entity.Comp.HeldMoveButtons; if (enabled) { @@ -447,7 +447,7 @@ private void SetMoveInput(EntityUid entity, InputMoverComponent component, ushor buttons &= ~bit; } - SetMoveInput(component, buttons); + SetMoveInput(entity, buttons); } private void ResetSubtick(InputMoverComponent component) @@ -460,11 +460,11 @@ private void ResetSubtick(InputMoverComponent component) component.LastInputSubTick = 0; } - public void SetSprinting(EntityUid entity, InputMoverComponent component, ushort subTick, bool walking) + public void SetSprinting(Entity<InputMoverComponent> entity, ushort subTick, bool walking) { // Logger.Info($"[{_gameTiming.CurTick}/{subTick}] Sprint: {enabled}"); - SetMoveInput(entity, component, subTick, walking, MoveButtons.Walk); + SetMoveInput(entity, subTick, walking, MoveButtons.Walk); } /// <summary> diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Relay.cs b/Content.Shared/Movement/Systems/SharedMoverController.Relay.cs index 8568290bffb..81569553772 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Relay.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Relay.cs @@ -12,14 +12,14 @@ private void InitializeRelay() SubscribeLocalEvent<RelayInputMoverComponent, AfterAutoHandleStateEvent>(OnAfterRelayState); } - private void OnAfterRelayTargetState(EntityUid uid, MovementRelayTargetComponent component, ref AfterAutoHandleStateEvent args) + private void OnAfterRelayTargetState(Entity<MovementRelayTargetComponent> entity, ref AfterAutoHandleStateEvent args) { - Physics.UpdateIsPredicted(uid); + Physics.UpdateIsPredicted(entity.Owner); } - private void OnAfterRelayState(EntityUid uid, RelayInputMoverComponent component, ref AfterAutoHandleStateEvent args) + private void OnAfterRelayState(Entity<RelayInputMoverComponent> entity, ref AfterAutoHandleStateEvent args) { - Physics.UpdateIsPredicted(uid); + Physics.UpdateIsPredicted(entity.Owner); } /// <summary> @@ -61,30 +61,30 @@ public void SetRelay(EntityUid uid, EntityUid relayEntity) Dirty(relayEntity, targetComp); } - private void OnRelayShutdown(EntityUid uid, RelayInputMoverComponent component, ComponentShutdown args) + private void OnRelayShutdown(Entity<RelayInputMoverComponent> entity, ref ComponentShutdown args) { - Physics.UpdateIsPredicted(uid); - Physics.UpdateIsPredicted(component.RelayEntity); + Physics.UpdateIsPredicted(entity.Owner); + Physics.UpdateIsPredicted(entity.Comp.RelayEntity); - if (TryComp<InputMoverComponent>(component.RelayEntity, out var inputMover)) - SetMoveInput(inputMover, MoveButtons.None); + if (TryComp<InputMoverComponent>(entity.Comp.RelayEntity, out var inputMover)) + SetMoveInput((entity.Comp.RelayEntity, inputMover), MoveButtons.None); if (Timing.ApplyingState) return; - if (TryComp(component.RelayEntity, out MovementRelayTargetComponent? target) && target.LifeStage <= ComponentLifeStage.Running) - RemComp(component.RelayEntity, target); + if (TryComp(entity.Comp.RelayEntity, out MovementRelayTargetComponent? target) && target.LifeStage <= ComponentLifeStage.Running) + RemComp(entity.Comp.RelayEntity, target); } - private void OnTargetRelayShutdown(EntityUid uid, MovementRelayTargetComponent component, ComponentShutdown args) + private void OnTargetRelayShutdown(Entity<MovementRelayTargetComponent> entity, ref ComponentShutdown args) { - Physics.UpdateIsPredicted(uid); - Physics.UpdateIsPredicted(component.Source); + Physics.UpdateIsPredicted(entity.Owner); + Physics.UpdateIsPredicted(entity.Comp.Source); if (Timing.ApplyingState) return; - if (TryComp(component.Source, out RelayInputMoverComponent? relay) && relay.LifeStage <= ComponentLifeStage.Running) - RemComp(component.Source, relay); + if (TryComp(entity.Comp.Source, out RelayInputMoverComponent? relay) && relay.LifeStage <= ComponentLifeStage.Running) + RemComp(entity.Comp.Source, relay); } } diff --git a/Content.Shared/Paper/EnvelopeComponent.cs b/Content.Shared/Paper/EnvelopeComponent.cs new file mode 100644 index 00000000000..e56fbd85af2 --- /dev/null +++ b/Content.Shared/Paper/EnvelopeComponent.cs @@ -0,0 +1,63 @@ +using Content.Shared.DoAfter; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Paper; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class EnvelopeComponent : Component +{ + /// <summary> + /// The current open/sealed/torn state of the envelope + /// </summary> + [ViewVariables, DataField, AutoNetworkedField] + public EnvelopeState State = EnvelopeState.Open; + + [DataField, ViewVariables] + public string SlotId = "letter_slot"; + + /// <summary> + /// Stores the current sealing/tearing doafter of the envelope + /// to prevent doafter spam/prediction issues + /// </summary> + [DataField, ViewVariables] + public DoAfterId? EnvelopeDoAfter; + + /// <summary> + /// How long it takes to seal the envelope closed + /// </summary> + [DataField, ViewVariables] + public TimeSpan SealDelay = TimeSpan.FromSeconds(1); + + /// <summary> + /// How long it takes to tear open the envelope + /// </summary> + [DataField, ViewVariables] + public TimeSpan TearDelay = TimeSpan.FromSeconds(1); + + /// <summary> + /// The sound to play when the envelope is sealed closed + /// </summary> + [DataField, ViewVariables] + public SoundPathSpecifier? SealSound = new SoundPathSpecifier("/Audio/Effects/packetrip.ogg"); + + /// <summary> + /// The sound to play when the envelope is torn open + /// </summary> + [DataField, ViewVariables] + public SoundPathSpecifier? TearSound = new SoundPathSpecifier("/Audio/Effects/poster_broken.ogg"); + + [Serializable, NetSerializable] + public enum EnvelopeState : byte + { + Open, + Sealed, + Torn + } +} + +[Serializable, NetSerializable] +public sealed partial class EnvelopeDoAfterEvent : SimpleDoAfterEvent +{ +} diff --git a/Content.Shared/Paper/EnvelopeSystem.cs b/Content.Shared/Paper/EnvelopeSystem.cs new file mode 100644 index 00000000000..560c2c82f97 --- /dev/null +++ b/Content.Shared/Paper/EnvelopeSystem.cs @@ -0,0 +1,108 @@ +using Content.Shared.DoAfter; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Verbs; +using Robust.Shared.Audio.Systems; +using Content.Shared.Examine; + +namespace Content.Shared.Paper; + +public sealed class EnvelopeSystem : EntitySystem +{ + [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent<EnvelopeComponent, ItemSlotInsertAttemptEvent>(OnInsertAttempt); + SubscribeLocalEvent<EnvelopeComponent, ItemSlotEjectAttemptEvent>(OnEjectAttempt); + SubscribeLocalEvent<EnvelopeComponent, GetVerbsEvent<AlternativeVerb>>(OnGetAltVerbs); + SubscribeLocalEvent<EnvelopeComponent, EnvelopeDoAfterEvent>(OnDoAfter); + SubscribeLocalEvent<EnvelopeComponent, ExaminedEvent>(OnExamine); + } + + private void OnExamine(Entity<EnvelopeComponent> ent, ref ExaminedEvent args) + { + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed) + { + args.PushMarkup(Loc.GetString("envelope-sealed-examine", ("envelope", ent.Owner))); + } + else if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn) + { + args.PushMarkup(Loc.GetString("envelope-torn-examine", ("envelope", ent.Owner))); + } + } + + private void OnGetAltVerbs(Entity<EnvelopeComponent> ent, ref GetVerbsEvent<AlternativeVerb> args) + { + if (!args.CanAccess || !args.CanInteract || args.Hands == null) + return; + + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Torn) + return; + + var user = args.User; + args.Verbs.Add(new AlternativeVerb() + { + Text = Loc.GetString(ent.Comp.State == EnvelopeComponent.EnvelopeState.Open ? "envelope-verb-seal" : "envelope-verb-tear"), + IconEntity = GetNetEntity(ent.Owner), + Act = () => + { + TryStartDoAfter(ent, user, ent.Comp.State == EnvelopeComponent.EnvelopeState.Open ? ent.Comp.SealDelay : ent.Comp.TearDelay); + }, + }); + } + + private void OnInsertAttempt(Entity<EnvelopeComponent> ent, ref ItemSlotInsertAttemptEvent args) + { + args.Cancelled |= ent.Comp.State != EnvelopeComponent.EnvelopeState.Open; + } + + private void OnEjectAttempt(Entity<EnvelopeComponent> ent, ref ItemSlotEjectAttemptEvent args) + { + args.Cancelled |= ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed; + } + + private void TryStartDoAfter(Entity<EnvelopeComponent> ent, EntityUid user, TimeSpan delay) + { + if (ent.Comp.EnvelopeDoAfter.HasValue) + return; + + var doAfterEventArgs = new DoAfterArgs(EntityManager, user, delay, new EnvelopeDoAfterEvent(), ent.Owner, ent.Owner) + { + BreakOnDamage = true, + NeedHand = true, + BreakOnHandChange = true, + MovementThreshold = 0.01f, + DistanceThreshold = 1.0f, + }; + + if (_doAfterSystem.TryStartDoAfter(doAfterEventArgs, out var doAfterId)) + ent.Comp.EnvelopeDoAfter = doAfterId; + } + private void OnDoAfter(Entity<EnvelopeComponent> ent, ref EnvelopeDoAfterEvent args) + { + ent.Comp.EnvelopeDoAfter = null; + + if (args.Cancelled) + return; + + if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Open) + { + _audioSystem.PlayPredicted(ent.Comp.SealSound, ent.Owner, args.User); + ent.Comp.State = EnvelopeComponent.EnvelopeState.Sealed; + Dirty(ent.Owner, ent.Comp); + } + else if (ent.Comp.State == EnvelopeComponent.EnvelopeState.Sealed) + { + _audioSystem.PlayPredicted(ent.Comp.TearSound, ent.Owner, args.User); + ent.Comp.State = EnvelopeComponent.EnvelopeState.Torn; + Dirty(ent.Owner, ent.Comp); + + if (_itemSlotsSystem.TryGetSlot(ent.Owner, ent.Comp.SlotId, out var slotComp)) + _itemSlotsSystem.TryEjectToHands(ent.Owner, slotComp, args.User); + } + } +} diff --git a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs index be2a9dc3abc..37ac7518896 100644 --- a/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs +++ b/Content.Shared/Power/EntitySystems/SharedPowerReceiverSystem.cs @@ -1,6 +1,15 @@ -namespace Content.Shared.Power.EntitySystems; +using Content.Shared.Examine; +using Content.Shared.Power.Components; + +namespace Content.Shared.Power.EntitySystems; public abstract class SharedPowerReceiverSystem : EntitySystem { - + protected string GetExamineText(bool powered) + { + return Loc.GetString("power-receiver-component-on-examine-main", + ("stateText", Loc.GetString(powered + ? "power-receiver-component-on-examine-powered" + : "power-receiver-component-on-examine-unpowered"))); + } } diff --git a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs index bd49acf9090..b3f5f16db73 100644 --- a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs +++ b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs @@ -53,4 +53,13 @@ public sealed partial class EncryptionKeyHolderComponent : Component /// </summary> [ViewVariables] public string? DefaultChannel; + + // Parkstation-Ipc-Start + /// <summary> + /// Whether or not the headset can be examined to see the encryption keys while the keys aren't accessible. + /// </summary> + [ViewVariables(VVAccess.ReadWrite)] + [DataField("examineWhileLocked")] + public bool ExamineWhileLocked = true; + // Parkstation-Ipc-End } diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index 7b050273db6..2fabe5948e2 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -177,12 +177,27 @@ private void OnHolderExamined(EntityUid uid, EncryptionKeyHolderComponent compon if (!args.IsInDetailsRange) return; + // Parkstation-Ipc-Start + if (!component.ExamineWhileLocked && !component.KeysUnlocked) + return; + + if (!component.ExamineWhileLocked && TryComp<WiresPanelComponent>(uid, out var panel) && !panel.Open) + return; + // Parkstation-Ipc-End + if (component.KeyContainer.ContainedEntities.Count == 0) { args.PushMarkup(Loc.GetString("encryption-keys-no-keys")); return; } + // хз чо эт, вроде не нужно + // if (component.Channels.Count > 0) + // { + // args.PushMarkup(Loc.GetString("examine-encryption-channels-prefix")); + // AddChannelsExamine(component.Channels, component.DefaultChannel, args, _protoManager, "examine-encryption-channel"); + // } + if (component.Channels.Count > 0) { using (args.PushGroup(nameof(EncryptionKeyComponent))) diff --git a/Content.Shared/Radio/RadioChannelPrototype.cs b/Content.Shared/Radio/RadioChannelPrototype.cs index 166db0577ea..254d706490f 100644 --- a/Content.Shared/Radio/RadioChannelPrototype.cs +++ b/Content.Shared/Radio/RadioChannelPrototype.cs @@ -9,7 +9,7 @@ public sealed partial class RadioChannelPrototype : IPrototype /// Human-readable name for the channel. /// </summary> [DataField("name")] - public LocId Name { get; private set; } = string.Empty; + public string Name { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadOnly)] public string LocalizedName => Loc.GetString(Name); @@ -35,4 +35,9 @@ public sealed partial class RadioChannelPrototype : IPrototype /// </summary> [DataField("longRange"), ViewVariables] public bool LongRange = false; + + // Lang start + [DataField("translate"), ViewVariables] + public bool TranslateSpeech = false; + // Lang end } diff --git a/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs b/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs index 8b0c866cbe3..40c20df3437 100644 --- a/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs +++ b/Content.Shared/Research/Prototypes/LatheRecipePrototype.cs @@ -1,101 +1,58 @@ +using Content.Shared.Chemistry.Reagent; +using Content.Shared.FixedPoint; using Content.Shared.Lathe.Prototypes; using Content.Shared.Materials; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; using Robust.Shared.Utility; namespace Content.Shared.Research.Prototypes { - [NetSerializable, Serializable, Prototype("latheRecipe")] + [NetSerializable, Serializable, Prototype] public sealed partial class LatheRecipePrototype : IPrototype { [ViewVariables] [IdDataField] public string ID { get; private set; } = default!; - [DataField("name")] - private string _name = string.Empty; + /// <summary> + /// Name displayed in the lathe GUI. + /// </summary> + [DataField] + public LocId? Name; - [DataField("description")] - private string _description = string.Empty; + /// <summary> + /// Short description displayed in the lathe GUI. + /// </summary> + [DataField] + public LocId? Description; /// <summary> /// The prototype name of the resulting entity when the recipe is printed. /// </summary> - [DataField("result", required: true, customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))] - public string Result = string.Empty; + [DataField] + public EntProtoId? Result; + + [DataField] + public Dictionary<ProtoId<ReagentPrototype>, FixedPoint2>? ResultReagents; /// <summary> /// An entity whose sprite is displayed in the ui in place of the actual recipe result. /// </summary> - [DataField("icon")] + [DataField] public SpriteSpecifier? Icon; [DataField("completetime")] - private TimeSpan _completeTime = TimeSpan.FromSeconds(5); - - [DataField("materials", customTypeSerializer: typeof(PrototypeIdDictionarySerializer<int, MaterialPrototype>))] - private Dictionary<string, int> _requiredMaterials = new(); - - //todo make these function calls because we're eating tons of resolves here. - /// <summary> - /// Name displayed in the lathe GUI. - /// </summary> - [ViewVariables] - public string Name - { - get - { - if (_name.Trim().Length != 0) - return _name; - var protoMan = IoCManager.Resolve<IPrototypeManager>(); - protoMan.TryIndex(Result, out EntityPrototype? prototype); - if (prototype?.Name != null) - _name = prototype.Name; - return _name; - } - } - - /// <summary> - /// Short description displayed in the lathe GUI. - /// </summary> - [ViewVariables] - public string Description - { - get - { - if (_description.Trim().Length != 0) - return _description; - var protoMan = IoCManager.Resolve<IPrototypeManager>(); - protoMan.TryIndex(Result, out EntityPrototype? prototype); - if (prototype?.Description != null) - _description = prototype.Description; - return _description; - } - } + public TimeSpan CompleteTime = TimeSpan.FromSeconds(5); /// <summary> /// The materials required to produce this recipe. /// Takes a material ID as string. /// </summary> - [ViewVariables] - public Dictionary<string, int> RequiredMaterials - { - get => _requiredMaterials; - private set => _requiredMaterials = value; - } - - - /// <summary> - /// How many milliseconds it'll take for the lathe to finish this recipe. - /// Might lower depending on the lathe's upgrade level. - /// </summary> - [ViewVariables] - public TimeSpan CompleteTime => _completeTime; + [DataField] + public Dictionary<ProtoId<MaterialPrototype>, int> Materials = new(); - [DataField("applyMaterialDiscount")] + [DataField] public bool ApplyMaterialDiscount = true; /// <summary> diff --git a/Content.Shared/Research/Systems/SharedResearchSystem.cs b/Content.Shared/Research/Systems/SharedResearchSystem.cs index 81c6950f283..d8ce0634d3e 100644 --- a/Content.Shared/Research/Systems/SharedResearchSystem.cs +++ b/Content.Shared/Research/Systems/SharedResearchSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Shared.Lathe; using Content.Shared.Research.Components; using Content.Shared.Research.Prototypes; using JetBrains.Annotations; @@ -12,6 +13,7 @@ public abstract class SharedResearchSystem : EntitySystem { [Dependency] protected readonly IPrototypeManager PrototypeManager = default!; [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedLatheSystem _lathe = default!; public override void Initialize() { @@ -185,7 +187,7 @@ public FormattedMessage GetTechnologyDescription( var recipeProto = PrototypeManager.Index(recipe); description.PushNewline(); description.AddMarkup(Loc.GetString("research-console-unlocks-list-entry", - ("name",recipeProto.Name))); + ("name", _lathe.GetRecipeName(recipeProto)))); } foreach (var generic in technology.GenericUnlocks) { diff --git a/Content.Shared/Research/TechnologyDisk/Systems/TechnologyDiskSystem.cs b/Content.Shared/Research/TechnologyDisk/Systems/TechnologyDiskSystem.cs index b0d615fcb3b..93c7c22471c 100644 --- a/Content.Shared/Research/TechnologyDisk/Systems/TechnologyDiskSystem.cs +++ b/Content.Shared/Research/TechnologyDisk/Systems/TechnologyDiskSystem.cs @@ -1,5 +1,6 @@ using Content.Shared.Examine; using Content.Shared.Interaction; +using Content.Shared.Lathe; using Content.Shared.Popups; using Content.Shared.Random.Helpers; using Content.Shared.Research.Components; @@ -19,6 +20,7 @@ public sealed class TechnologyDiskSystem : EntitySystem [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedResearchSystem _research = default!; + [Dependency] private readonly SharedLatheSystem _lathe = default!; public override void Initialize() { @@ -83,8 +85,7 @@ private void OnExamine(Entity<TechnologyDiskComponent> ent, ref ExaminedEvent ar if (ent.Comp.Recipes != null && ent.Comp.Recipes.Count > 0) { var prototype = _protoMan.Index(ent.Comp.Recipes[0]); - var resultPrototype = _protoMan.Index<EntityPrototype>(prototype.Result); - message = Loc.GetString("tech-disk-examine", ("result", resultPrototype.Name)); + message = Loc.GetString("tech-disk-examine", ("result", _lathe.GetRecipeName(prototype))); if (ent.Comp.Recipes.Count > 1) //idk how to do this well. sue me. message += " " + Loc.GetString("tech-disk-examine-more"); diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs index aa27f83f03f..6233b179b3d 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/ISalvageMod.cs @@ -5,7 +5,7 @@ public interface ISalvageMod /// <summary> /// Player-friendly version describing this modifier. /// </summary> - string Description { get; } + LocId Description { get; } /// <summary> /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs index c9f038e38f2..fda08281b06 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageAirMod.cs @@ -17,7 +17,7 @@ public sealed partial class SalvageAirMod : IPrototype, IBiomeSpecificMod /// <inheritdoc/> [DataField("desc")] - public string Description { get; private set; } = string.Empty; + public LocId Description { get; private set; } = string.Empty; /// <inheritdoc/> [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs index 1d4efbd18d3..3235741f117 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageBiomeModPrototype.cs @@ -12,7 +12,7 @@ public sealed partial class SalvageBiomeModPrototype : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// <summary> /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs index ee3233c5512..713bdf08b31 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageDungeonModPrototype.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageDungeonModPrototype : IPrototype, IBiomeSpeci { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// <inheridoc/> [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs index a7c38b258dd..d744d5c308c 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageLightMod.cs @@ -8,7 +8,7 @@ public sealed partial class SalvageLightMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// <inheritdoc/> [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs index 3cc4488684e..5226824ed52 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageMod.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageMod : IPrototype, ISalvageMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// <summary> /// Cost for difficulty modifiers. diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs index 17e9af038f3..e8b7235511d 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageTemperatureMod.cs @@ -8,7 +8,7 @@ public sealed partial class SalvageTemperatureMod : IPrototype, IBiomeSpecificMo { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// <inheritdoc/> [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs index 1629d02b088..fc704d49e4b 100644 --- a/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs +++ b/Content.Shared/Salvage/Expeditions/Modifiers/SalvageWeatherMod.cs @@ -10,7 +10,7 @@ public sealed partial class SalvageWeatherMod : IPrototype, IBiomeSpecificMod { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; /// <inheritdoc/> [DataField("cost")] diff --git a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs index 4c594945f0d..71be4f7bd08 100644 --- a/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs +++ b/Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs @@ -7,7 +7,7 @@ public sealed partial class SalvageFactionPrototype : IPrototype { [IdDataField] public string ID { get; } = default!; - [DataField("desc")] public string Description { get; private set; } = string.Empty; + [DataField("desc")] public LocId Description { get; private set; } = string.Empty; [ViewVariables(VVAccess.ReadWrite), DataField("entries", required: true)] public List<SalvageMobEntry> MobGroups = new(); diff --git a/Content.Shared/Salvage/SharedSalvageSystem.cs b/Content.Shared/Salvage/SharedSalvageSystem.cs index 5f5fc875d62..0c56f4f556e 100644 --- a/Content.Shared/Salvage/SharedSalvageSystem.cs +++ b/Content.Shared/Salvage/SharedSalvageSystem.cs @@ -55,18 +55,18 @@ public SalvageMission GetMission(SalvageDifficultyPrototype difficulty, int seed if (air.Description != string.Empty) { - mods.Add(air.Description); + mods.Add(Loc.GetString(air.Description)); } // only show the description if there is an atmosphere since wont matter otherwise if (temp.Description != string.Empty && !air.Space) { - mods.Add(temp.Description); + mods.Add(Loc.GetString(temp.Description)); } if (light.Description != string.Empty) { - mods.Add(light.Description); + mods.Add(Loc.GetString(light.Description)); } var duration = TimeSpan.FromSeconds(CfgManager.GetCVar(CCVars.SalvageExpeditionDuration)); diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs index d10b86c2417..5924c95cdc1 100644 --- a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -6,7 +6,7 @@ namespace Content.Shared.Silicons.Laws; [Virtual, DataDefinition] [Serializable, NetSerializable] -public partial class SiliconLaw : IComparable<SiliconLaw> +public partial class SiliconLaw : IComparable<SiliconLaw>, IEquatable<SiliconLaw> { /// <summary> /// A locale string which is the actual text of the law. @@ -39,13 +39,27 @@ public int CompareTo(SiliconLaw? other) return Order.CompareTo(other.Order); } - public bool Equals(SiliconLaw other) + public bool Equals(SiliconLaw? other) { + if (other == null) + return false; return LawString == other.LawString && Order == other.Order && LawIdentifierOverride == other.LawIdentifierOverride; } + public override bool Equals(object? obj) + { + if (obj == null) + return false; + return Equals(obj as SiliconLaw); + } + + public override int GetHashCode() + { + return HashCode.Combine(LawString, Order, LawIdentifierOverride); + } + /// <summary> /// Return a shallow clone of this law. /// </summary> diff --git a/Content.Shared/Slippery/NoSlipComponent.cs b/Content.Shared/Slippery/NoSlipComponent.cs index 186861a5a93..d9c3fe3f761 100644 --- a/Content.Shared/Slippery/NoSlipComponent.cs +++ b/Content.Shared/Slippery/NoSlipComponent.cs @@ -1,7 +1,9 @@ -namespace Content.Shared.Slippery +using Robust.Shared.GameStates; + +namespace Content.Shared.Slippery; + +[RegisterComponent, NetworkedComponent] +public sealed partial class NoSlipComponent : Component { - [RegisterComponent] - public sealed partial class NoSlipComponent : Component - { - } + } diff --git a/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs b/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs index 149728a5baa..861c5f95a23 100644 --- a/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs +++ b/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs @@ -39,6 +39,6 @@ public sealed partial class SpamEmitSoundComponent : BaseEmitSoundComponent /// Do not set this directly, use <see cref="EmitSoundSystem.SetEnabled"/> /// </summary> [DataField, AutoNetworkedField] - [Access(typeof(SharedEmitSoundSystem))] + // [Access(typeof(SharedEmitSoundSystem))] ADT: IPC (невозможно указать требуемый доступ) public bool Enabled = true; } diff --git a/Content.Server/Station/Components/StationMemberComponent.cs b/Content.Shared/Station/Components/StationMemberComponent.cs similarity index 69% rename from Content.Server/Station/Components/StationMemberComponent.cs rename to Content.Shared/Station/Components/StationMemberComponent.cs index 2100c20c55d..ce5d95ad0d2 100644 --- a/Content.Server/Station/Components/StationMemberComponent.cs +++ b/Content.Shared/Station/Components/StationMemberComponent.cs @@ -1,11 +1,11 @@ -using Content.Server.Station.Systems; +using Robust.Shared.GameStates; -namespace Content.Server.Station.Components; +namespace Content.Shared.Station.Components; /// <summary> /// Indicates that a grid is a member of the given station. /// </summary> -[RegisterComponent, Access(typeof(StationSystem))] +[RegisterComponent, NetworkedComponent] public sealed partial class StationMemberComponent : Component { /// <summary> diff --git a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs index bb49725e047..4932613d0e6 100644 --- a/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedEntityStorageSystem.cs @@ -16,16 +16,14 @@ using Content.Shared.Verbs; using Content.Shared.Wall; using Content.Shared.Whitelist; -using Robust.Shared.Audio; +using Content.Shared.ActionBlocker; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; -using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -47,6 +45,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; [Dependency] private readonly WeldableSystem _weldable = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; + [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; public const string ContainerName = "entity_storage"; @@ -132,6 +131,9 @@ protected void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent compo if (!HasComp<HandsComponent>(args.Entity)) return; + if (!_actionBlocker.CanMove(args.Entity)) + return; + if (_timing.CurTime < component.NextInternalOpenAttempt) return; @@ -139,9 +141,7 @@ protected void OnRelayMovement(EntityUid uid, SharedEntityStorageComponent compo Dirty(uid, component); if (component.OpenOnMove) - { TryOpenStorage(args.Entity, uid); - } } protected void OnFoldAttempt(EntityUid uid, SharedEntityStorageComponent component, ref FoldAttemptEvent args) diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 4bb4192fc45..7a207fb47cf 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -22,6 +22,7 @@ using Content.Shared.Timing; using Content.Shared.Verbs; using Content.Shared.Whitelist; +using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.GameStates; @@ -65,6 +66,9 @@ public abstract class SharedStorageSystem : EntitySystem public const string DefaultStorageMaxItemSize = "Normal"; public const float AreaInsertDelayPerItem = 0.075f; + private static AudioParams _audioParams = AudioParams.Default + .WithMaxDistance(7f) + .WithVolume(-2f); private ItemSizePrototype _defaultStorageMaxItemSize = default!; @@ -542,7 +546,7 @@ private void OnDoAfter(EntityUid uid, StorageComponent component, AreaPickupDoAf // If we picked up at least one thing, play a sound and do a cool animation! if (successfullyInserted.Count > 0) { - Audio.PlayPredicted(component.StorageInsertSound, uid, args.User); + Audio.PlayPredicted(component.StorageInsertSound, uid, args.User, _audioParams); EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent( GetNetEntity(uid), GetNetEntityList(successfullyInserted), @@ -603,7 +607,7 @@ private void OnInteractWithItem(StorageInteractWithItemEvent msg, EntitySessionE { if (_sharedHandsSystem.TryPickupAnyHand(player, entity, handsComp: hands) && storageComp.StorageRemoveSound != null) - Audio.PlayPredicted(storageComp.StorageRemoveSound, uid, player); + Audio.PlayPredicted(storageComp.StorageRemoveSound, uid, player, _audioParams); { return; } @@ -663,7 +667,7 @@ private void OnRemoveItem(StorageRemoveItemEvent msg, EntitySessionEventArgs arg return; TransformSystem.DropNextTo(itemEnt, player); - Audio.PlayPredicted(storageComp.StorageRemoveSound, storageEnt, player); + Audio.PlayPredicted(storageComp.StorageRemoveSound, storageEnt, player, _audioParams); } private void OnInsertItemIntoLocation(StorageInsertItemIntoLocationEvent msg, EntitySessionEventArgs args) @@ -836,7 +840,7 @@ public void TransferEntities(EntityUid source, EntityUid target, EntityUid? user Insert(target, entity, out _, user: user, targetComp, playSound: false); } - Audio.PlayPredicted(sourceComp.StorageInsertSound, target, user); + Audio.PlayPredicted(sourceComp.StorageInsertSound, target, user, _audioParams); } /// <summary> @@ -1015,7 +1019,7 @@ public bool Insert( return false; if (playSound) - Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user); + Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user, _audioParams); return true; } @@ -1045,7 +1049,7 @@ public bool Insert( } if (playSound) - Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user); + Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user, _audioParams); return true; } diff --git a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs index a5ad77d43bf..0fbaefc31bf 100644 --- a/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs +++ b/Content.Shared/Teleportation/Systems/SwapTeleporterSystem.cs @@ -45,7 +45,7 @@ public override void Initialize() private void OnInteract(Entity<SwapTeleporterComponent> ent, ref AfterInteractEvent args) { var (uid, comp) = ent; - if (args.Target == null) + if (args.Target == null || !args.CanReach) return; var target = args.Target.Value; @@ -150,8 +150,11 @@ public void DoTeleport(Entity<SwapTeleporterComponent, TransformComponent> ent) return; } - var (teleEnt, cont) = GetTeleportingEntity((uid, xform)); - var (otherTeleEnt, otherCont) = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + var teleEnt = GetTeleportingEntity((uid, xform)); + var otherTeleEnt = GetTeleportingEntity((linkedEnt, Transform(linkedEnt))); + + _container.TryGetOuterContainer(teleEnt, Transform(teleEnt), out var cont); + _container.TryGetOuterContainer(otherTeleEnt, Transform(otherTeleEnt), out var otherCont); if (otherCont != null && !_container.CanInsert(teleEnt, otherCont) || cont != null && !_container.CanInsert(otherTeleEnt, cont)) @@ -164,9 +167,9 @@ public void DoTeleport(Entity<SwapTeleporterComponent, TransformComponent> ent) return; } - _popup.PopupEntity(Loc.GetString("swap-teleporter-popup-teleport-other", + _popup.PopupClient(Loc.GetString("swap-teleporter-popup-teleport-other", ("entity", Identity.Entity(linkedEnt, EntityManager))), - otherTeleEnt, + teleEnt, otherTeleEnt, PopupType.MediumCaution); _transform.SwapPositions(teleEnt, otherTeleEnt); @@ -195,20 +198,18 @@ public void DestroyLink(Entity<SwapTeleporterComponent?> ent, EntityUid? user) DestroyLink(linked, user); // the linked one is shown globally } - private (EntityUid, BaseContainer?) GetTeleportingEntity(Entity<TransformComponent> ent) + private EntityUid GetTeleportingEntity(Entity<TransformComponent> ent) { var parent = ent.Comp.ParentUid; - if (_container.TryGetOuterContainer(ent, ent, out var container)) - parent = container.Owner; if (HasComp<MapGridComponent>(parent) || HasComp<MapComponent>(parent)) - return (ent, container); + return ent; if (!_xformQuery.TryGetComponent(parent, out var parentXform) || parentXform.Anchored) - return (ent, container); + return ent; if (!TryComp<PhysicsComponent>(parent, out var body) || body.BodyType == BodyType.Static) - return (ent, container); + return ent; return GetTeleportingEntity((parent, parentXform)); } diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 42b6a3c9c74..72cf4ec550a 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -485,7 +485,7 @@ protected virtual void DoLightAttack(EntityUid user, LightAttackEvent ev, Entity var weapon = GetEntity(ev.Weapon); - Interaction.DoContactInteraction(weapon, target); + // We skip weapon -> target interaction, as forensics system applies DNA on hit Interaction.DoContactInteraction(user, weapon); // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a @@ -616,7 +616,7 @@ private bool DoHeavyAttack(EntityUid user, HeavyAttackEvent ev, EntityUid meleeU // For stuff that cares about it being attacked. foreach (var target in targets) { - Interaction.DoContactInteraction(weapon, target); + // We skip weapon -> target interaction, as forensics system applies DNA on hit // If the user is using a long-range weapon, this probably shouldn't be happening? But I'll interpret melee as a // somewhat messy scuffle. See also, light attacks. diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index 6feffffbe31..75d5300fdb1 100644 --- a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs +++ b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs @@ -31,8 +31,6 @@ public abstract class SharedGrapplingGunSystem : EntitySystem public const string GrapplingJoint = "grappling"; - public const float ReelRate = 2.5f; - public override void Initialize() { base.Initialize(); @@ -187,7 +185,7 @@ public override void Update(float frameTime) } // TODO: This should be on engine. - distance.MaxLength = MathF.Max(distance.MinLength, distance.MaxLength - ReelRate * frameTime); + distance.MaxLength = MathF.Max(distance.MinLength, distance.MaxLength - grappling.ReelRate * frameTime); distance.Length = MathF.Min(distance.MaxLength, distance.Length); _physics.WakeBody(joint.BodyAUid); diff --git a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs index d0af3e8b36d..553f0c10f32 100644 --- a/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GrapplingGunComponent.cs @@ -8,6 +8,12 @@ namespace Content.Shared.Weapons.Ranged.Components; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class GrapplingGunComponent : Component { + /// <summary> + /// Hook's reeling force and speed - the higher the number, the faster the hook rewinds. + /// </summary> + [DataField, AutoNetworkedField] + public float ReelRate = 2.5f; + [DataField("jointId"), AutoNetworkedField] public string Joint = string.Empty; diff --git a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs index fa3732209f5..2016459b9d5 100644 --- a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs @@ -15,4 +15,7 @@ public sealed partial class GunRequiresWieldComponent : Component [DataField, AutoNetworkedField] public TimeSpan PopupCooldown = TimeSpan.FromSeconds(1); + + [DataField] + public LocId? WieldRequiresExamineMessage = "gunrequireswield-component-examine"; } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index 503459cefd9..20feb2c9522 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -76,6 +76,7 @@ private void OnBallisticAfterInteract(EntityUid uid, BallisticAmmoProviderCompon args.Handled = true; + // Continuous loading _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, component.FillDelay, new AmmoFillDoAfterEvent(), used: uid, target: args.Target, eventTarget: uid) { BreakOnMove = true, diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs index 14aaff5bf70..2c0204d9463 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Revolver.cs @@ -9,6 +9,8 @@ using System; using System.Linq; using Content.Shared.Interaction.Events; +using Content.Shared.Wieldable; +using Content.Shared.Wieldable.Components; using JetBrains.Annotations; namespace Content.Shared.Weapons.Ranged.Systems; @@ -31,9 +33,14 @@ protected virtual void InitializeRevolver() private void OnRevolverUse(EntityUid uid, RevolverAmmoProviderComponent component, UseInHandEvent args) { + if (args.Handled) + return; + if (!_useDelay.TryResetDelay(uid)) return; + args.Handled = true; + Cycle(component); UpdateAmmoCount(uid, prediction: false); Dirty(uid, component); @@ -393,10 +400,14 @@ private void OnRevolverTakeAmmo(EntityUid uid, RevolverAmmoProviderComponent com args.Ammo.Add((spawned, EnsureComp<AmmoComponent>(spawned))); if (cartridge.DeleteOnSpawn) + { + component.AmmoSlots[index] = null; component.Chambers[index] = null; + } } else { + component.AmmoSlots[index] = null; component.Chambers[index] = null; args.Ammo.Add((ent.Value, EnsureComp<AmmoComponent>(ent.Value))); } diff --git a/Content.Shared/Whitelist/EntityWhitelistSystem.cs b/Content.Shared/Whitelist/EntityWhitelistSystem.cs index f311946cf98..57fdb523dd4 100644 --- a/Content.Shared/Whitelist/EntityWhitelistSystem.cs +++ b/Content.Shared/Whitelist/EntityWhitelistSystem.cs @@ -23,6 +23,23 @@ public bool IsValid(EntityWhitelist list, [NotNullWhen(true)] EntityUid? uid) return uid != null && IsValid(list, uid.Value); } + /// <summary> + /// Checks whether a given entity is allowed by a whitelist and not blocked by a blacklist. + /// If a blacklist is provided and it matches then this returns false. + /// If a whitelist is provided and it does not match then this returns false. + /// If either list is null it does not get checked. + /// </summary> + public bool CheckBoth([NotNullWhen(true)] EntityUid? uid, EntityWhitelist? blacklist = null, EntityWhitelist? whitelist = null) + { + if (uid == null) + return false; + + if (blacklist != null && IsValid(blacklist, uid)) + return false; + + return whitelist == null || IsValid(whitelist, uid); + } + /// <summary> /// Checks whether a given entity satisfies a whitelist. /// </summary> diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index a0c9d04ff7b..d76876c0cff 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -47,6 +47,7 @@ public override void Initialize() SubscribeLocalEvent<WieldableComponent, HandDeselectedEvent>(OnDeselectWieldable); SubscribeLocalEvent<MeleeRequiresWieldComponent, AttemptMeleeEvent>(OnMeleeAttempt); + SubscribeLocalEvent<GunRequiresWieldComponent, ExaminedEvent>(OnExamineRequires); SubscribeLocalEvent<GunRequiresWieldComponent, ShotAttemptedEvent>(OnShootAttempt); SubscribeLocalEvent<GunWieldBonusComponent, ItemWieldedEvent>(OnGunWielded); SubscribeLocalEvent<GunWieldBonusComponent, ItemUnwieldedEvent>(OnGunUnwielded); @@ -116,8 +117,17 @@ private void OnGunRefreshModifiers(Entity<GunWieldBonusComponent> bonus, ref Gun } } + private void OnExamineRequires(Entity<GunRequiresWieldComponent> entity, ref ExaminedEvent args) + { + if(entity.Comp.WieldRequiresExamineMessage != null) + args.PushText(Loc.GetString(entity.Comp.WieldRequiresExamineMessage)); + } + private void OnExamine(EntityUid uid, GunWieldBonusComponent component, ref ExaminedEvent args) { + if (HasComp<GunRequiresWieldComponent>(uid)) + return; + if (component.WieldBonusExamineMessage != null) args.PushText(Loc.GetString(component.WieldBonusExamineMessage)); } diff --git a/Resources/Audio/ADT/IPC/attributions.yml b/Resources/Audio/ADT/IPC/attributions.yml new file mode 100644 index 00000000000..dffa3b941ac --- /dev/null +++ b/Resources/Audio/ADT/IPC/attributions.yml @@ -0,0 +1,4 @@ +- files: ["borg_deathsound.ogg", "buzz-sigh.ogg", "buzz-two.ogg", "ping.ogg", "signal.ogg", "synth_no.ogg", "synth_yes.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://github.com/ss220-space/Paradise" + source: "https://github.com/ss220-space/Paradise" diff --git a/Resources/Audio/ADT/IPC/borg_deathsound.ogg b/Resources/Audio/ADT/IPC/borg_deathsound.ogg new file mode 100644 index 00000000000..06e847165ff Binary files /dev/null and b/Resources/Audio/ADT/IPC/borg_deathsound.ogg differ diff --git a/Resources/Audio/ADT/IPC/buzz-sigh.ogg b/Resources/Audio/ADT/IPC/buzz-sigh.ogg new file mode 100644 index 00000000000..109c196e2c4 Binary files /dev/null and b/Resources/Audio/ADT/IPC/buzz-sigh.ogg differ diff --git a/Resources/Audio/ADT/IPC/buzz-two.ogg b/Resources/Audio/ADT/IPC/buzz-two.ogg new file mode 100644 index 00000000000..3f79e2a0e91 Binary files /dev/null and b/Resources/Audio/ADT/IPC/buzz-two.ogg differ diff --git a/Resources/Audio/ADT/IPC/hyperspace_begin_new.ogg b/Resources/Audio/ADT/IPC/hyperspace_begin_new.ogg new file mode 100644 index 00000000000..ee4e93846cf Binary files /dev/null and b/Resources/Audio/ADT/IPC/hyperspace_begin_new.ogg differ diff --git a/Resources/Audio/ADT/IPC/ping.ogg b/Resources/Audio/ADT/IPC/ping.ogg new file mode 100644 index 00000000000..3516d48d259 Binary files /dev/null and b/Resources/Audio/ADT/IPC/ping.ogg differ diff --git a/Resources/Audio/ADT/IPC/signal.ogg b/Resources/Audio/ADT/IPC/signal.ogg new file mode 100644 index 00000000000..824e1adb94c Binary files /dev/null and b/Resources/Audio/ADT/IPC/signal.ogg differ diff --git a/Resources/Audio/ADT/IPC/synth_no.ogg b/Resources/Audio/ADT/IPC/synth_no.ogg new file mode 100644 index 00000000000..f0d2c3bfb0c Binary files /dev/null and b/Resources/Audio/ADT/IPC/synth_no.ogg differ diff --git a/Resources/Audio/ADT/IPC/synth_scream.ogg b/Resources/Audio/ADT/IPC/synth_scream.ogg new file mode 100644 index 00000000000..78787d3db90 Binary files /dev/null and b/Resources/Audio/ADT/IPC/synth_scream.ogg differ diff --git a/Resources/Audio/ADT/IPC/synth_yes.ogg b/Resources/Audio/ADT/IPC/synth_yes.ogg new file mode 100644 index 00000000000..300cad132ed Binary files /dev/null and b/Resources/Audio/ADT/IPC/synth_yes.ogg differ diff --git a/Resources/Audio/ADT/Moth/attributions.yml b/Resources/Audio/ADT/Moth/attributions.yml new file mode 100644 index 00000000000..9c7727aa51c --- /dev/null +++ b/Resources/Audio/ADT/Moth/attributions.yml @@ -0,0 +1,9 @@ +- files: ["moth_scream.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/tgstation/tgstation/commit/31c19654e0f641166ecd80c672ea05362fd19488" + source: "https://github.com/tgstation/tgstation/commits/master/sound/voice/moth/scream_moth.ogg" + +- files: ["moth_laugh.ogg, moth_chitter.ogg, moth_squeak.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/BeeStation/BeeStation-Hornet/commit/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d" + source: "https://github.com/BeeStation/BeeStation-Hornet/blob/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d/sound/emotes/" \ No newline at end of file diff --git a/Resources/Audio/ADT/Moth/moth_buzz.ogg b/Resources/Audio/ADT/Moth/moth_buzz.ogg new file mode 100644 index 00000000000..5b77d98e565 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_buzz.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_chitter.ogg b/Resources/Audio/ADT/Moth/moth_chitter.ogg new file mode 100644 index 00000000000..b7240a56536 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_chitter.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_laugh.ogg b/Resources/Audio/ADT/Moth/moth_laugh.ogg new file mode 100644 index 00000000000..d3c2865ab64 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_laugh.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_screm.ogg b/Resources/Audio/ADT/Moth/moth_screm.ogg new file mode 100644 index 00000000000..482086fb630 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_screm.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_squeak.ogg b/Resources/Audio/ADT/Moth/moth_squeak.ogg new file mode 100644 index 00000000000..5b77d98e565 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_squeak.ogg differ diff --git a/Resources/Audio/ADT/Novakid/attributions.yml b/Resources/Audio/ADT/Novakid/attributions.yml new file mode 100644 index 00000000000..18f03bd2c13 --- /dev/null +++ b/Resources/Audio/ADT/Novakid/attributions.yml @@ -0,0 +1,4 @@ +- files: ["novakid_laugh01, novakid_laugh02, novakid_laugh03, novakid_laugh04, novakid_laugh05, novakid_scream01, novakid_scream02, novakid_scream03, novakid_scream04"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://zvukogram.com/category/zvuki-ognya/" + source: "https://zvukogram.com/category/zvuki-ognya/" diff --git a/Resources/Audio/ADT/Novakid/novakid_laugh01.ogg b/Resources/Audio/ADT/Novakid/novakid_laugh01.ogg new file mode 100644 index 00000000000..d22c7562403 Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_laugh01.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_laugh02.ogg b/Resources/Audio/ADT/Novakid/novakid_laugh02.ogg new file mode 100644 index 00000000000..a422a69dedf Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_laugh02.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_laugh03.ogg b/Resources/Audio/ADT/Novakid/novakid_laugh03.ogg new file mode 100644 index 00000000000..ac8bd9813f6 Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_laugh03.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_laugh04.ogg b/Resources/Audio/ADT/Novakid/novakid_laugh04.ogg new file mode 100644 index 00000000000..6ce602275c9 Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_laugh04.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_laugh05.ogg b/Resources/Audio/ADT/Novakid/novakid_laugh05.ogg new file mode 100644 index 00000000000..b2f158d03da Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_laugh05.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_scream01.ogg b/Resources/Audio/ADT/Novakid/novakid_scream01.ogg new file mode 100644 index 00000000000..5b981f83b6d Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_scream01.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_scream02.ogg b/Resources/Audio/ADT/Novakid/novakid_scream02.ogg new file mode 100644 index 00000000000..2b7a7152632 Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_scream02.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_scream03.ogg b/Resources/Audio/ADT/Novakid/novakid_scream03.ogg new file mode 100644 index 00000000000..756148cfbb9 Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_scream03.ogg differ diff --git a/Resources/Audio/ADT/Novakid/novakid_scream04.ogg b/Resources/Audio/ADT/Novakid/novakid_scream04.ogg new file mode 100644 index 00000000000..721eb09164c Binary files /dev/null and b/Resources/Audio/ADT/Novakid/novakid_scream04.ogg differ diff --git a/Resources/Audio/ADT/Ursus/attributions.yml b/Resources/Audio/ADT/Ursus/attributions.yml new file mode 100644 index 00000000000..3b182d59f6d --- /dev/null +++ b/Resources/Audio/ADT/Ursus/attributions.yml @@ -0,0 +1,4 @@ +- files: ["cry1, cry2, laugh1, laugh2, scream1, scream2, scream3"] + license: "CC-BY-SA-3.0" + copyright: "https://zvukogram.com/category/zvuki-izdavaemyie-medvedyami/" + source: "https://zvukogram.com/category/zvuki-izdavaemyie-medvedyami/" diff --git a/Resources/Audio/ADT/Ursus/cry1.ogg b/Resources/Audio/ADT/Ursus/cry1.ogg new file mode 100644 index 00000000000..7f9455f8acd Binary files /dev/null and b/Resources/Audio/ADT/Ursus/cry1.ogg differ diff --git a/Resources/Audio/ADT/Ursus/cry2.ogg b/Resources/Audio/ADT/Ursus/cry2.ogg new file mode 100644 index 00000000000..f0a36e52030 Binary files /dev/null and b/Resources/Audio/ADT/Ursus/cry2.ogg differ diff --git a/Resources/Audio/ADT/Ursus/laugh1.ogg b/Resources/Audio/ADT/Ursus/laugh1.ogg new file mode 100644 index 00000000000..6b7fe68d81c Binary files /dev/null and b/Resources/Audio/ADT/Ursus/laugh1.ogg differ diff --git a/Resources/Audio/ADT/Ursus/laugh2.ogg b/Resources/Audio/ADT/Ursus/laugh2.ogg new file mode 100644 index 00000000000..e6ced2ec537 Binary files /dev/null and b/Resources/Audio/ADT/Ursus/laugh2.ogg differ diff --git a/Resources/Audio/ADT/Ursus/scream1.ogg b/Resources/Audio/ADT/Ursus/scream1.ogg new file mode 100644 index 00000000000..586b8e2d65e Binary files /dev/null and b/Resources/Audio/ADT/Ursus/scream1.ogg differ diff --git a/Resources/Audio/ADT/Ursus/scream2.ogg b/Resources/Audio/ADT/Ursus/scream2.ogg new file mode 100644 index 00000000000..80a2892302d Binary files /dev/null and b/Resources/Audio/ADT/Ursus/scream2.ogg differ diff --git a/Resources/Audio/ADT/Ursus/scream3.ogg b/Resources/Audio/ADT/Ursus/scream3.ogg new file mode 100644 index 00000000000..c1ea0ff30f3 Binary files /dev/null and b/Resources/Audio/ADT/Ursus/scream3.ogg differ diff --git a/Resources/Audio/ADT/Ursus/scream4.ogg b/Resources/Audio/ADT/Ursus/scream4.ogg new file mode 100644 index 00000000000..0bf6d622990 Binary files /dev/null and b/Resources/Audio/ADT/Ursus/scream4.ogg differ diff --git a/Resources/Audio/Items/attributions.yml b/Resources/Audio/Items/attributions.yml index b3ae4f611f9..6a2d579b700 100644 --- a/Resources/Audio/Items/attributions.yml +++ b/Resources/Audio/Items/attributions.yml @@ -134,3 +134,8 @@ license: "CC-BY-SA-3.0" copyright: "Taken from tgstation." source: "https://github.com/tgstation/tgstation/blob/a7f525bce9a359ab5282fc754078cd4b5678a006/sound/items" + +- files: ["pen_click.ogg"] + license: "CC0-1.0" + copyright: "Created by dslrguide, converted to ogg and mono by Themias" + source: "https://freesound.org/people/dslrguide/sounds/321484" \ No newline at end of file diff --git a/Resources/Audio/Items/pen_click.ogg b/Resources/Audio/Items/pen_click.ogg new file mode 100644 index 00000000000..621b88c4f84 Binary files /dev/null and b/Resources/Audio/Items/pen_click.ogg differ diff --git a/Resources/Audio/Machines/attributions.yml b/Resources/Audio/Machines/attributions.yml index 79d8009608b..9096766978a 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -166,3 +166,8 @@ license: "CC-BY-SA-3.0" copyright: "Taken from TG station." source: "https://github.com/tgstation/tgstation/tree/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0" + +- files: ["cutter.ogg"] + license: "CC0-1.0" + copyright: "by Ko4erga" + source: "https://github.com/space-wizards/space-station-14/pull/30431" diff --git a/Resources/Audio/Machines/cutter.ogg b/Resources/Audio/Machines/cutter.ogg new file mode 100644 index 00000000000..60f6df04f32 Binary files /dev/null and b/Resources/Audio/Machines/cutter.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 56b708a79e3..6788f631b7a 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -367,5 +367,23 @@ Entries: id: 45 time: '2024-07-11T05:14:01.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/29896 +- author: Repo + changes: + - message: Added aHelp player pinning. + type: Add + - message: Added disconnection, reconnection, banning notice on relay and ahelp. + type: Add + - message: Fixed search clears on aHelp close. + type: Fix + id: 46 + time: '2024-07-30T08:28:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28639 +- author: Repo + changes: + - message: Fixed Ahelp Sorting + type: Fix + id: 47 + time: '2024-07-31T01:58:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30518 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 10e5e716559..eaf3ab61994 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,602 +1,4 @@ Entries: -- author: ps3moira - changes: - - message: Added Canes to the CuraDrobe and Cane Blades for Syndicate Librarians - type: Add - id: 6456 - time: '2024-04-27T10:22:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25873 -- author: Lukasz825700516 - changes: - - message: Fixed books containing localization keys. - type: Fix - id: 6457 - time: '2024-04-27T10:23:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27390 -- author: Errant - changes: - - message: Vox now take significant damage over time while inhaling oxygen. - type: Tweak - id: 6458 - time: '2024-04-27T10:33:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26705 -- author: TheShuEd - changes: - - message: Added tomato killers in floral anomaly berries - type: Add - - message: tweak size and damage of killer tomatoes - type: Tweak - id: 6459 - time: '2024-04-27T10:35:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27265 -- author: Plykiya - changes: - - message: You can no longer print singular bullets at the security techfab. - type: Remove - - message: The security techfab now has recipes for ammunition boxes and pre-filled - magazines of every type of ammo. - type: Add - - message: You can now print empty magazines at the security techfab. - type: Add - - message: Material costs for printing all ammo and mags were rebalanced. - type: Tweak - id: 6460 - time: '2024-04-27T10:38:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26178 -- author: Ramlik - changes: - - message: Added security walkie talkies to the vendor. - type: Add - id: 6461 - time: '2024-04-27T13:27:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25913 -- author: brainfood1183 - changes: - - message: Centcom advises all crewmembers to please stop putting rodents in the - fax machines (rodents can now be inserted into fax machine). - type: Add - id: 6462 - time: '2024-04-27T13:50:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/21461 -- author: MilenVolf - changes: - - message: Glass Box now can be constructed and deconstructed! - type: Add - - message: Glass Box now makes an alarm sound on destruction. - type: Tweak - - message: Now Antique Laser can be put back in the Glass Box. - type: Fix - id: 6463 - time: '2024-04-27T13:53:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25365 -- author: metalgearsloth - changes: - - message: Fix a lot of UI bugs. - type: Fix - id: 6464 - time: '2024-04-27T16:32:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27401 -- author: RiceMar1244 - changes: - - message: Resprited the captain's antique laser pistol. - type: Tweak - id: 6465 - time: '2024-04-27T19:08:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27037 -- author: SlamBamActionman - changes: - - message: Hardsuits and other helmets/hoods should no longer make you bald after - toggling. - type: Fix - id: 6466 - time: '2024-04-27T19:10:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27404 -- author: Plykiya - changes: - - message: Max amount of traitors dropped from 12 to 8. - type: Tweak - id: 6467 - time: '2024-04-28T02:25:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27415 -- author: Plykiya - changes: - - message: The emagged autolathe now has recipes for ammunition boxes and pre-filled - magazines of every type of ammo. - type: Add - - message: You can now print empty magazines at the emagged autolathe. - type: Add - id: 6468 - time: '2024-04-28T03:02:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27396 -- author: icekot8 - changes: - - message: T3 Portable Microfusion Weaponry research now have a portable charger - type: Add - id: 6469 - time: '2024-04-28T03:19:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26655 -- author: osjarw - changes: - - message: Putting a hand labeler in a belt is now predicted correctly. - type: Fix - id: 6470 - time: '2024-04-28T04:19:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26660 -- author: Dezzzix - changes: - - message: Added bar spoon, jigger and ice bucket - type: Add - - message: Bartender tools added in boozeomat - type: Add - - message: Jigger added in Bartender guidebook - type: Add - id: 6471 - time: '2024-04-28T04:40:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27406 -- author: KrasnoshchekovPavel - changes: - - message: Included damage type/group, metabolism type/group localization for weapon - damage examination and guidebook reagent effects - type: Fix - id: 6472 - time: '2024-04-28T04:48:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27368 -- author: Keer-Sar - changes: - - message: Medal Cases now only hold medals - type: Tweak - id: 6473 - time: '2024-04-28T05:04:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27428 -- author: EmoGarbage404 - changes: - - message: Lockers can now be deconstructed again. - type: Fix - id: 6474 - time: '2024-04-28T05:26:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27431 -- author: SlamBamActionman - changes: - - message: "Removed Exterminators pending redesign. \U0001F525\U0001F44D\U0001F525" - type: Remove - id: 6475 - time: '2024-04-28T05:45:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26978 -- author: Boaz1111 - changes: - - message: Circuit imprinter recipes now cost less glass - type: Tweak - id: 6476 - time: '2024-04-28T05:46:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27310 -- author: Piksqu & Boaz1111 - changes: - - message: Added the hyperconvection circuit imprinter - type: Add - id: 6477 - time: '2024-04-28T05:49:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27283 -- author: exincore - changes: - - message: Fax machines now copy the labels attached to papers. - type: Add - - message: Fax machine "Print File" functionality now applies the first line of - the file as a label when it begins with `#`. - type: Add - id: 6478 - time: '2024-04-28T06:12:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25979 -- author: Plykiya - changes: - - message: Hardsuits, EVA suits, firesuits and other things now protect your feet - from dangerous glass shards. - type: Tweak - id: 6479 - time: '2024-04-28T07:11:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26764 -- author: FungiFellow - changes: - - message: Bows now fit in Exosuit slot. - type: Tweak - id: 6480 - time: '2024-04-28T08:23:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27433 -- author: osjarw - changes: - - message: Fixed some anomaly behaviours pulsing at wrong rates. - type: Fix - id: 6481 - time: '2024-04-28T09:28:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27435 -- author: Ubaser - changes: - - message: Pyrotton can now be mutated from cotton. - type: Add - id: 6482 - time: '2024-04-28T11:07:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27200 -- author: Plykiya - changes: - - message: You can now pick up Smile and put them in your bag. - type: Add - id: 6483 - time: '2024-04-29T02:44:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27458 -- author: Beck Thompson, CoffeePoweredPHD - changes: - - message: Fixed infinite reagent duplication glitch with toilets and drains. - type: Fix - - message: Dirty water toilets now function correctly as toilets. - type: Fix - id: 6484 - time: '2024-04-29T03:08:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27446 -- author: Nopey - changes: - - message: Many more items can now be recycled, including mops, medkits, and stun - batons. - type: Tweak - id: 6485 - time: '2024-04-29T03:36:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24435 -- author: Hanzdegloker - changes: - - message: '"Denied" and "Approved" stamps are now guaranteed to appear in the lockers - of the HoP and QM.' - type: Tweak - id: 6486 - time: '2024-04-29T03:38:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25604 -- author: Potato1234_x - changes: - - message: Added rainbow weed. It is obtained by mutating regular weed. - type: Add - id: 6487 - time: '2024-04-29T04:06:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25759 -- author: Gotimanga - changes: - - message: Chemists can now create opporozidone, which reverses the effects of rotting - in deceased patients while in cryo. - type: Add - id: 6488 - time: '2024-04-29T04:13:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/24074 -- author: Mangohydra - changes: - - message: Added a new syndicate cyborg module that contains a very dangerous explosive - as a 4tc purchase. - type: Add - id: 6489 - time: '2024-04-29T04:16:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25815 -- author: Morb0 - changes: - - message: Added emote panel (by default Y) - type: Add - id: 6490 - time: '2024-04-29T04:38:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26702 -- author: MilenVolf - changes: - - message: Borgs now have brand new voice and walking sounds. - type: Add - - message: Syndicate assault borgs now have new feature to scare - manic laugher. - type: Add - id: 6491 - time: '2024-04-29T04:38:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27205 -- author: KrasnoshchekovPavel - changes: - - message: Fixed formatting of floating point numbers during localization - type: Fix - id: 6492 - time: '2024-04-29T04:52:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27441 -- author: mirrorcult - changes: - - message: Random events should now occur much more frequently - type: Tweak - id: 6493 - time: '2024-04-29T06:38:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27469 -- author: Plykiya - changes: - - message: Latejoin players now have a chance to roll thief. - type: Add - id: 6494 - time: '2024-04-29T06:38:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27466 -- author: ElectroJr - changes: - - message: Fixed actions sometimes disappearing from the hotbar when double clicking - type: Fix - id: 6495 - time: '2024-04-29T08:36:18.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27468 -- author: DrSmugleaf - changes: - - message: Fixed bullets not going exactly where you click when moving. - type: Fix - id: 6496 - time: '2024-04-29T13:12:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27484 -- author: FungiFellow - changes: - - message: Syndi-Cats now have a Wideswing, 80% Explosion Resist, 6/6/15 Pierce/Slash/Structural - and step over glass shards with trained feline agility. - type: Tweak - id: 6497 - time: '2024-04-29T17:09:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27408 -- author: ShadowCommander - changes: - - message: Fixed microwave construction not creating a microwave on completion. - type: Fix - id: 6498 - time: '2024-04-30T00:19:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27500 -- author: lzk228 - changes: - - message: Barozine is removed from hydroponics mutatuions. - type: Remove - id: 6499 - time: '2024-04-30T03:01:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27512 -- author: DogZeroX - changes: - - message: Changed the announcement of the immovable rod event. - type: Tweak - id: 6500 - time: '2024-04-30T04:05:14.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27515 -- author: DogZeroX - changes: - - message: Flares looped sound no longer have a massive range, and are much quieter. - type: Fix - id: 6501 - time: '2024-04-30T06:49:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27521 -- author: ERORR404V1 - changes: - - message: Added chameleon projector in thief toolbox! - type: Add - id: 6502 - time: '2024-04-30T12:14:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27491 -- author: DamnFeds - changes: - - message: honkbot now uses a happy honk meal instead of box of hugs and clown's - rubber stamp. Honk! - type: Tweak - id: 6503 - time: '2024-05-01T03:27:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27535 -- author: Plykiya - changes: - - message: Inserting telecrystals no longer announces to everyone around you that - you inserted it. - type: Tweak - id: 6504 - time: '2024-05-01T15:17:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27585 -- author: Dezzzix - changes: - - message: Goldschlager empty bottle renamed to Gildlager empty bottle - type: Tweak - id: 6505 - time: '2024-05-01T15:24:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27581 -- author: FungiFellow - changes: - - message: Grilles now take Structural Damage - type: Tweak - id: 6506 - time: '2024-05-01T22:23:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27596 -- author: lzk228 - changes: - - message: Immovable rod announce now happens at the end of event. - type: Tweak - id: 6507 - time: '2024-05-01T22:26:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27587 -- author: metalgearsloth - changes: - - message: Fix server performance dropping significantly. - type: Fix - id: 6508 - time: '2024-05-02T00:18:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27528 -- author: metalgearsloth - changes: - - message: Fix muzzle flash rotations. - type: Fix - - message: Fix large client performance drop. - type: Fix - id: 6509 - time: '2024-05-02T02:40:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27533 -- author: ElectroJr - changes: - - message: Fix gas analyzers not opening their UI when used in-hand. - type: Fix - id: 6510 - time: '2024-05-02T06:00:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27610 -- author: Plykiya - changes: - - message: Disarming a player now causes them to throw the disarmed item away from - them. - type: Tweak - id: 6511 - time: '2024-05-02T12:32:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27589 -- author: fujiwaranao - changes: - - message: Renault now has additional fox noises. - type: Add - id: 6512 - time: '2024-05-02T12:35:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27578 -- author: Doc-Michael - changes: - - message: CMO's Lab coat is now more resistant to chemical spills and minor cuts - type: Tweak - id: 6513 - time: '2024-05-02T12:37:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27551 -- author: Vasilis - changes: - - message: Removed airtight flaps from the construction menu. - type: Remove - id: 6514 - time: '2024-05-02T14:49:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27619 -- author: Lamrr - changes: - - message: Wine and beer bottles can now be inserted into the booze dispenser. - type: Fix - id: 6515 - time: '2024-05-02T16:17:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27626 -- author: deltanedas - changes: - - message: "Ducky slippers now make you waddle. \U0001F986\U0001F986" - type: Tweak - id: 6516 - time: '2024-05-02T17:09:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27628 -- author: ElectroJr - changes: - - message: Fixed various interactions not prioritizing opening a UI. No more trying - to eat mission critical faxes. - type: Fix - id: 6517 - time: '2024-05-02T23:37:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27631 -- author: Plykiya - changes: - - message: Blast grenades have had their manufacturing cost tripled. - type: Tweak - - message: Blast grenades are now part of the Basic Shuttle Armament research and - can be printed at the secfab. - type: Tweak - id: 6518 - time: '2024-05-03T00:03:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27580 -- author: Vasilis, Dutch-VanDerLinde - changes: - - message: A new event has been added, syndicate sleeper agents, which raises the - alert level and selects 1-2 players to be traitors rarely throughout the round. - type: Add - id: 6519 - time: '2024-05-03T00:13:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27501 -- author: Errant - changes: - - message: Space Ninjas now automatically turn their internals on when they spawn. - type: Tweak - id: 6520 - time: '2024-05-03T01:24:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25083 -- author: Hanzdegloker - changes: - - message: Added 6 new energy drink based mixed drinks. - type: Add - - message: Added Red Bool energy drink back to the soda dispenser and gave it a - new canned sprite. - type: Add - id: 6521 - time: '2024-05-03T06:57:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27597 -- author: DuskyJay - changes: - - message: Allowed EMP implants to be used while stunned or cuffed. - type: Tweak - id: 6522 - time: '2024-05-03T07:51:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27644 -- author: Just-a-Unity-Dev - changes: - - message: Fixed Geras not having their speed buff. - type: Fix - - message: Geras are no longer immune to other AI mobs. - type: Fix - - message: Slimes can no longer morph into a Geras when zombified. - type: Fix - - message: Lowered the Geras death threshold. - type: Tweak - id: 6523 - time: '2024-05-03T17:26:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27308 -- author: nikthechampiongr - changes: - - message: Ninjas will no longer be pointed to random wreckage in space. - type: Fix - id: 6524 - time: '2024-05-03T20:23:43.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27552 -- author: Dutch-VanDerLinde - changes: - - message: Fixed nuclear operatives, zombies, and head revolutionary round end summaries - not showing. - type: Fix - id: 6525 - time: '2024-05-04T00:03:52.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27654 -- author: TheShuEd - changes: - - message: Added Train station! - type: Add - id: 6526 - time: '2024-05-04T11:10:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27534 -- author: TheShuEd - changes: - - message: "Added Pathological Liar trait accent. The accent has a 15% chance of\ - \ inverting your message to the opposite. Replacing \u201CYes\u201D with \u201C\ - No\u201D, \u201CCan\u201D with \u201Ccan't\u201D and so on." - type: Add - id: 6527 - time: '2024-05-04T11:11:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27618 -- author: Tyzemol - changes: - - message: Fixed NPCs being able to see and attack you hiding in closed lockers - and crates - type: Fix - id: 6528 - time: '2024-05-04T19:57:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27677 -- author: Blackern5000 - changes: - - message: Security belts can now hold more items that security commonly uses. - type: Tweak - id: 6529 - time: '2024-05-04T20:00:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27674 -- author: Blackern5000 - changes: - - message: Floodlights now use medium power cells instead of small ones. - type: Tweak - id: 6530 - time: '2024-05-04T20:06:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27672 -- author: lzk228 - changes: - - message: Grey whistle added to arcade machine prizes. - type: Add - id: 6531 - time: '2024-05-05T14:42:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27676 -- author: Killerqu00 - changes: - - message: Welding masks can now be put on utility belts. - type: Tweak - id: 6532 - time: '2024-05-05T23:30:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/27694 - author: Dutch-VanDerLinde changes: - message: Chemical analysis goggles now show the scanned solution's temperature. @@ -3796,3 +3198,579 @@ id: 6955 time: '2024-07-21T07:44:18.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30145 +- author: Plykiya + changes: + - message: Syndicate traitor reinforcements are now specialized to be medics, spies, + or thieves. + type: Add + - message: Reinforcement radios with options now have a radial menu, similar to + RCDs. + type: Tweak + id: 6956 + time: '2024-07-21T10:32:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29853 +- author: Cojoke-dot + changes: + - message: Dead Space Dragons no long despawn + type: Fix + id: 6957 + time: '2024-07-21T10:46:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29842 +- author: slarticodefast + changes: + - message: Fixed microwave construction. + type: Fix + id: 6958 + time: '2024-07-21T16:20:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30232 +- author: Sphiral&Kezu + changes: + - message: 'Added a variety of new wall based storages: Shelfs! Build some today!' + type: Add + id: 6959 + time: '2024-07-21T17:16:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27858 +- author: valquaint, slarticodefast + changes: + - message: Fixed borgs being unable to state laws with an activated flashlight. + type: Fix + id: 6960 + time: '2024-07-22T03:55:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30183 +- author: Lank + changes: + - message: Darts can now pop balloons. Keep them away from any monkeys. + type: Add + id: 6961 + time: '2024-07-22T05:38:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30088 +- author: Plykiya + changes: + - message: You can now eat or drink and swap hands without it being interrupted. + type: Tweak + id: 6962 + time: '2024-07-22T09:17:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30060 +- author: IProduceWidgets + changes: + - message: Zookeepers can now possess Nonlethal shotguns according to spacelaw. + type: Tweak + id: 6963 + time: '2024-07-22T09:33:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30237 +- author: Plykiya + changes: + - message: Bag sounds can now only be heard from half the distance and is quieter + in general. + type: Tweak + id: 6964 + time: '2024-07-22T09:54:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30225 +- author: osjarw + changes: + - message: Syringes are now 0.5 seconds faster. + type: Tweak + id: 6965 + time: '2024-07-22T10:20:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29825 +- author: Errant + changes: + - message: Replay observers now always spawn on the station. + type: Fix + id: 6966 + time: '2024-07-22T19:32:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30252 +- author: Cojoke-dot + changes: + - message: You can now read the volume of a gas tank in its examine text + type: Tweak + id: 6967 + time: '2024-07-22T21:41:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29771 +- author: Cojoke-dot + changes: + - message: Throwing a jetpack mid-flight will no longer freeze your character + type: Fix + id: 6968 + time: '2024-07-22T22:24:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30223 +- author: Flareguy + changes: + - message: Added vox sprites for a few headwear items, including radiation suits + and the paramedic helmet. + type: Add + id: 6969 + time: '2024-07-23T02:18:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30150 +- author: Cojoke-dot + changes: + - message: You can no longer use telescreens and televisions while blind or asleep. + type: Fix + id: 6970 + time: '2024-07-23T02:33:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30260 +- author: Cojoke-dot + changes: + - message: Fix one of the QSI popups + type: Fix + id: 6971 + time: '2024-07-23T03:23:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30265 +- author: Errant + changes: + - message: Players are now notified when trying to insert an incompatible magazine + into a gun. + type: Add + id: 6972 + time: '2024-07-23T06:36:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29046 +- author: TheKittehJesus + changes: + - message: The Syndicate Assault Borg can now wield their double esword + type: Fix + id: 6973 + time: '2024-07-23T08:13:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30229 +- author: Scribbles0 + changes: + - message: Handless mobs can no longer wipe devices like positronic brains or pAIs. + type: Fix + id: 6974 + time: '2024-07-23T17:47:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30149 +- author: Quantus + changes: + - message: Reagent grinders can no longer auto-grind when unpowered. + type: Fix + id: 6975 + time: '2024-07-23T21:02:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30267 +- author: BombasterDS + changes: + - message: Fixed items disappearing after shelfs and mannequin disassembling + type: Fix + id: 6976 + time: '2024-07-24T08:57:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30313 +- author: Cojoke-dot + changes: + - message: Fix infinite QSI linking range + type: Fix + id: 6977 + time: '2024-07-24T20:57:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30332 +- author: deltanedas + changes: + - message: Borgs can no longer unlock the robotics console or other borgs. + type: Tweak + id: 6978 + time: '2024-07-25T03:54:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27888 +- author: themias + changes: + - message: Fixed the ripley control panel not loading + type: Fix + id: 6979 + time: '2024-07-25T05:23:53.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30325 +- author: Timur2011 + changes: + - message: Space adders are now butcherable. + type: Add + - message: Snakes now drop snake meat when butchered. + type: Fix + - message: Snakes now appear lying when in critical state. + type: Tweak + id: 6980 + time: '2024-07-25T10:52:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29629 +- author: Plykiya + changes: + - message: You can now build atmos gas pipes through things like walls. + type: Tweak + id: 6981 + time: '2024-07-25T23:26:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28707 +- author: Ilya246 + changes: + - message: Nuclear operative reinforcements now come with full nuclear operative + gear (and a toy carp) at no additional cost. + type: Tweak + - message: Nuclear operative reinforcements now get nuclear operative names. + type: Tweak + id: 6982 + time: '2024-07-25T23:37:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30173 +- author: Cojoke-dot + changes: + - message: Engineering goggles and other similar-looking eyewear now help block + identity. + type: Tweak + - message: Radiation suit's hood now blocks identity. + type: Fix + id: 6983 + time: '2024-07-26T05:26:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30305 +- author: Moomoobeef + changes: + - message: Some radio channel colors have been tweaked in order to be more easily + distinguishable. + type: Tweak + id: 6984 + time: '2024-07-26T06:47:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30133 +- author: Errant + changes: + - message: Replay ghosts now actually spawn on the proper station, take two. + type: Fix + id: 6985 + time: '2024-07-26T12:59:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30273 +- author: themias + changes: + - message: Arcade machines are functional again + type: Fix + id: 6986 + time: '2024-07-26T17:30:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30376 +- author: themias + changes: + - message: Zombies now get uncuffed upon transformation + type: Fix + id: 6987 + time: '2024-07-26T18:48:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30321 +- author: metalgearsloth + changes: + - message: Fix grid labels getting spammed from VGRoid. + type: Fix + id: 6988 + time: '2024-07-27T01:54:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29946 +- author: GoldenCan + changes: + - message: Added a Security Clown Mask which is obtainable by hacking a SecDrobe. + type: Add + id: 6989 + time: '2024-07-27T04:09:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30249 +- author: Plykiya + changes: + - message: Thief game rule now properly selects more than one thief. + type: Fix + id: 6990 + time: '2024-07-27T07:27:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30393 +- author: BombasterDS + changes: + - message: Added new plant mutations for apple, sugarcane and galaxythistle + type: Add + id: 6991 + time: '2024-07-27T15:08:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28993 +- author: Spessmann + changes: + - message: Thief objectives for figurines and stamps now require less items + type: Tweak + id: 6992 + time: '2024-07-27T23:11:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30390 +- author: metalgearsloth + changes: + - message: Moved VGRoid from 1,000m away to ~500m. + type: Tweak + id: 6993 + time: '2024-07-28T03:14:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29943 +- author: lzk228 + changes: + - message: Fixed pancakes stacks. Before it, splitting not default pancakes stacks + would give you default pancakes. + type: Fix + id: 6994 + time: '2024-07-28T03:49:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30270 +- author: Plykiya + changes: + - message: Fixed the client mispredicting people slipping with their magboots turned + on + type: Fix + id: 6995 + time: '2024-07-28T06:17:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30425 +- author: Katzenminer + changes: + - message: Pun and similar pets are no longer firemune + type: Fix + id: 6996 + time: '2024-07-28T08:32:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30424 +- author: lzk228 + changes: + - message: Fixed permanent absence of the approver string in cargo invoice. + type: Fix + id: 6997 + time: '2024-07-29T06:19:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29690 +- author: JIPDawg + changes: + - message: F9 is correctly bound to the Round End Summary window by default now. + type: Fix + id: 6998 + time: '2024-07-29T06:49:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30438 +- author: githubuser508 + changes: + - message: Candles crate and the ability for Cargo to order it. + type: Add + id: 6999 + time: '2024-07-29T08:29:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29736 +- author: Blackern5000 + changes: + - message: Emergency oxygen and fire lockers now generally contain more supplies + type: Tweak + id: 7000 + time: '2024-07-29T09:57:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29230 +- author: Moomoobeef + changes: + - message: Added the ability to wear lizard plushies on your head! + type: Add + id: 7001 + time: '2024-07-29T12:52:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30400 +- author: TurboTrackerss14 + changes: + - message: Reduced Kobold ghostrole chance to mirror Monkey + type: Tweak + id: 7002 + time: '2024-07-29T15:16:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30450 +- author: Ian321 + changes: + - message: The Courser now comes with a defibrillator. + type: Tweak + id: 7003 + time: '2024-07-30T01:05:27.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30471 +- author: slarticodefast + changes: + - message: Fixed puppy Ian not counting as a thief steal target. + type: Fix + id: 7004 + time: '2024-07-30T01:22:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30474 +- author: themias + changes: + - message: Added envelopes to the PTech and bureaucracy crate + type: Add + id: 7005 + time: '2024-07-30T01:49:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30298 +- author: TheKittehJesus + changes: + - message: The recipe for chow mein, egg-fried rice, and both brownies now use liquid + egg instead of a whole egg. + type: Tweak + - message: Cake batter now also requires 5u of milk + type: Tweak + id: 7006 + time: '2024-07-30T02:14:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30262 +- author: Plykiya + changes: + - message: Wearing something that covers your head will prevent your hair from being + cut. + type: Add + - message: You now see a popup when your hair is being altered. + type: Add + - message: The doafter for altering other people's hair now takes seven seconds. + type: Tweak + id: 7007 + time: '2024-07-30T02:17:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30366 +- author: Cojoke-dot + changes: + - message: Hamlet and other ghost rolls can now spin when they enter combat mode + type: Fix + id: 7008 + time: '2024-07-30T02:48:28.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30478 +- author: themias + changes: + - message: Fixed the ACC wire not appearing in vending machine wire layouts + type: Fix + id: 7009 + time: '2024-07-30T03:04:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30453 +- author: Blackern5000 + changes: + - message: The defibrillator has been recolored slightly + type: Tweak + id: 7010 + time: '2024-07-30T04:41:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29964 +- author: themias + changes: + - message: Fixed victim's fingerprints transferring onto an attacker's weapon + type: Fix + id: 7011 + time: '2024-07-30T08:35:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30257 +- author: to4no_fix + changes: + - message: Now engineering access is needed to interact with the particle accelerator + type: Tweak + id: 7012 + time: '2024-07-30T11:29:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30394 +- author: Cojoke-dot + changes: + - message: You can no longer get out of a disposal chute or container while knocked + over by trying to walk + type: Fix + id: 7013 + time: '2024-07-30T13:53:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30391 +- author: Cojoke-dot + changes: + - message: QSI now swaps the top most valid container instead of QSI when placed + in an anchored container + type: Fix + id: 7014 + time: '2024-07-30T14:07:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30241 +- author: TheShuEd + changes: + - message: industrial ore processor can now process diamonds + type: Fix + id: 7015 + time: '2024-07-30T14:41:15.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30499 +- author: PJB3005 + changes: + - message: CLF3 is now called "chlorine trifluoride" + type: Tweak + id: 7016 + time: '2024-07-31T00:14:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30510 +- author: slarticodefast + changes: + - message: Fixed the mouse position when it is over a singularity distortion effect + while zoomed in or out. + type: Fix + id: 7017 + time: '2024-07-31T00:14:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30509 +- author: metalgearsloth + changes: + - message: Add a button to the lobby so you can export a .png of your characters + type: Add + id: 7018 + time: '2024-07-31T15:14:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29874 +- author: slarticodefast + changes: + - message: Skeletons no longer have fingerprints. + type: Tweak + id: 7019 + time: '2024-07-31T16:08:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30530 +- author: themias + changes: + - message: Pens can be clicked cathartically + type: Tweak + id: 7020 + time: '2024-07-31T17:57:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30531 +- author: Plykiya + changes: + - message: Meteors now leave behind asteroid rocks on impact. + type: Add + id: 7021 + time: '2024-08-01T02:55:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30419 +- author: PixelTheAertist + changes: + - message: The Social Anxiety trait is now renamed to "Stutter" + type: Tweak + id: 7022 + time: '2024-08-01T02:58:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29898 +- author: Plykiya + changes: + - message: Adds hand labelers to the PTech, ChemDrobe, and LawDrobe. + type: Add + id: 7023 + time: '2024-08-01T02:59:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29958 +- author: Ko4erga + changes: + - message: Added a cutter machine for crafting patterned steel tiles, concrete and + wooden tiles. + type: Add + - message: After rip off patterned tiles you get current pattern, not just steel + tile. + type: Tweak + id: 7024 + time: '2024-08-01T10:26:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30431 +- author: NakataRin + changes: + - message: Added paramedic to the train station. + type: Add + id: 7025 + time: '2024-08-01T19:59:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30556 +- author: marbow + changes: + - message: Rejoice, detectives! Hand labeler has been added to your closet! + type: Add + id: 7026 + time: '2024-08-01T20:01:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30501 +- author: metalgearsloth + changes: + - message: Fix some popups playing twice. + type: Fix + id: 7027 + time: '2024-08-02T01:33:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30452 +- author: WarMechanic + changes: + - message: Adjusted meteors to have less lethal blast fragments. + type: Tweak + id: 7028 + time: '2024-08-02T05:43:41.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/29199 +- author: slarticodefast + changes: + - message: Fixed borgs not being able to state laws or open other UIs without an + active module. + type: Fix + id: 7029 + time: '2024-08-02T05:44:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30299 +- author: TropicalHibi + changes: + - message: Now fs (for sure) and wru (where are you) are changed to their full version + in text + type: Add + id: 7030 + time: '2024-08-02T05:57:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30508 +- author: Plykiya + changes: + - message: Rechargers now show the percent charged of the item it is charging. + type: Add + id: 7031 + time: '2024-08-02T06:05:38.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/28500 +- author: ShadowCommander + changes: + - message: Rollerbeds now deploy when holding them in hand and clicking on the ground. + type: Add + id: 7032 + time: '2024-08-02T07:05:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30000 diff --git a/Resources/Changelog/ChangelogADT.yml b/Resources/Changelog/ChangelogADT.yml index b33040568ce..9cdbb356b83 100644 --- a/Resources/Changelog/ChangelogADT.yml +++ b/Resources/Changelog/ChangelogADT.yml @@ -2085,3 +2085,49 @@ Entries: - {message: 'Подтянуты коммиты с корвакса, 27.07.24', type: Tweak} time: '2024-07-27T16:15:51Z' id: 220 + - author: Darki255 + changes: + - {message: Перенесён патологоанатом., type: Add} + time: '2024-08-01T17:02:59Z' + id: 221 + - author: KashRas2 + changes: + - {message: Добавлен РРТ. Теперь атмосы стали намного лучше., type: Add} + time: '2024-08-02T08:03:42Z' + id: 222 + - author: Schrodinger71 + changes: + - {message: 'Подтянул коммиты Корвухов, 02.08.24.', type: Tweak} + time: '2024-08-03T12:00:54Z' + id: 223 + - author: Darki255 + changes: + - {message: Добавлены нианы, type: Add} + time: '2024-08-04T21:44:57Z' + id: 224 + - author: FaDeOkno + changes: + - {message: Полный реворк системы языков., type: Tweak} + - {message: 'Языки теперь выделяются не названием, а цветом текста.', type: Tweak} + - {message: Упрощена система языков., type: Tweak} + - {message: Языковые импланты теперь можно извлечь., type: Tweak} + - {message: Меню языков теперь открывается при нажатии на кнопку L и имеет кнопку + в верхнем меню., type: Add} + time: '2024-08-06T17:55:45Z' + id: 225 + - author: FaDeOkno + changes: + - {message: Добавлено иное отображение одежды на сумеречниках, type: Add} + time: '2024-08-06T20:18:47Z' + id: 226 + - author: RipZoro1 + changes: + - {message: Добавлена бола в СБтех, type: Add} + - {message: Добавлена шинель кадета в СБшкаф, type: Add} + time: '2024-08-07T00:49:59Z' + id: 227 + - author: Шрёдька + changes: + - {message: 'Подтянуты коммиты с корвакса, 07.08.24', type: Tweak} + time: '2024-08-07T23:28:50Z' + id: 228 diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml index b0f955bddec..84288b8b85e 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml @@ -15,7 +15,7 @@ baby_jail.enabled = true baby_jail.show_reason = true baby_jail.max_account_age = 5256000 # 10 years. Disabling this check specifically isn't currently supported baby_jail.max_overall_minutes = 3000 # 50 hours -baby_jail.custom_reason = "Sorry! Only new players can join the servers, try joining another one instead!" +baby_jail.custom_reason = "Sorry! Only new and whitelisted players can join this server. Apply to be whitelisted in our Discord server (discord.ss14.io) or try joining another server instead!" baby_jail.whitelisted_can_bypass = true [hub] diff --git a/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcAntenna.ftl b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcAntenna.ftl new file mode 100644 index 00000000000..ec3efd9f553 --- /dev/null +++ b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcAntenna.ftl @@ -0,0 +1,10 @@ +marking-RobotAntennaTv = Tv +marking-RobotAntennaTesla = Tesla +marking-RobotAntennaLightb = Light (alt) +marking-RobotAntennaLight = Light +marking-RobotAntennaCyberhead = Cyberhead +marking-RobotAntennaSidelights = Sidelights +marking-RobotAntennaAntlers = Antlers +marking-RobotAntennaDroneeyes = Drone Eyes +marking-RobotAntennaCrowned = Crowned +marking-RobotAntennaTowers = Towers diff --git a/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcScreens.ftl b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcScreens.ftl new file mode 100644 index 00000000000..3f53f2d3f93 --- /dev/null +++ b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcScreens.ftl @@ -0,0 +1,39 @@ +marking-ScreenStatic = Static +marking-ScreenBlue = Blue +marking-ScreenBreakout = Breakout +marking-ScreenEight = Eight +marking-ScreenGoggles = Goggles +marking-ScreenExclaim = Exclaim +marking-ScreenHeart = Heart +marking-ScreenMonoeye = Cyclops +marking-ScreenNature = Naturalist +marking-ScreenOrange = Orange +marking-ScreenPink = Pink +marking-ScreenQuestion = Question +marking-ScreenShower = Shower +marking-ScreenYellow = Yellow +marking-ScreenScroll = Scroll +marking-ScreenConsole = Console +marking-ScreenRgb = RGB +marking-ScreenGlider = Glider +marking-ScreenRainbowhoriz = Horizontal Rainbow +marking-ScreenBsod = BSOD +marking-ScreenRedtext = Red Text +marking-ScreenSinewave = Sinewave +marking-ScreenSquarewave = Squarewave +marking-ScreenEcgwave = ECG wave +marking-ScreenEyes = Eyes +marking-ScreenEyestall = Tall Eyes +marking-ScreenEyesangry = Angry Eyes +marking-ScreenLoading = Loading... +marking-ScreenWindowsxp = Experience +marking-ScreenTetris = NT Block Game +marking-ScreenTv = Tv +marking-ScreenTextdrop = Textdrop +marking-ScreenStars = Stars +marking-ScreenRainbowdiag = Diagonal Rainbow +marking-ScreenBlank = Dead Pixel +marking-ScreenSmile = Smiley +marking-ScreenFrown = Frowny +marking-ScreenRing = Ring +marking-ScreenL = L diff --git a/Resources/Locale/en-US/ADT/traits/disabilities.ftl b/Resources/Locale/en-US/ADT/traits/disabilities.ftl new file mode 100644 index 00000000000..92289cb406e --- /dev/null +++ b/Resources/Locale/en-US/ADT/traits/disabilities.ftl @@ -0,0 +1,2 @@ +trait-hemophilia-name = Hemophilia +trait-hemophilia-desc = Your blood is clotting extremely badly. diff --git a/Resources/Locale/en-US/actions/actions/polymorph.ftl b/Resources/Locale/en-US/actions/actions/polymorph.ftl new file mode 100644 index 00000000000..4a65a60ecf0 --- /dev/null +++ b/Resources/Locale/en-US/actions/actions/polymorph.ftl @@ -0,0 +1 @@ +gera-transformation-popup = This action will transform you. Use it again to confirm. diff --git a/Resources/Locale/en-US/administration/admin-verbs.ftl b/Resources/Locale/en-US/administration/admin-verbs.ftl index 16715087ee4..24294f05298 100644 --- a/Resources/Locale/en-US/administration/admin-verbs.ftl +++ b/Resources/Locale/en-US/administration/admin-verbs.ftl @@ -14,3 +14,5 @@ admin-verbs-erase-description = Removes the player from the round and crew manif Players are shown a popup indicating them to play as if they never existed. toolshed-verb-mark = Mark toolshed-verb-mark-description = Places this entity into the $marked variable, a list of entities, replacing it's prior value. + +export-entity-verb-get-data-text = Export sprite diff --git a/Resources/Locale/en-US/administration/bwoink.ftl b/Resources/Locale/en-US/administration/bwoink.ftl index 3a92f58ad18..e43932dc1d3 100644 --- a/Resources/Locale/en-US/administration/bwoink.ftl +++ b/Resources/Locale/en-US/administration/bwoink.ftl @@ -16,3 +16,6 @@ admin-bwoink-play-sound = Bwoink? bwoink-title-none-selected = None selected bwoink-system-rate-limited = System: you are sending messages too quickly. +bwoink-system-player-disconnecting = has disconnected. +bwoink-system-player-reconnecting = has reconnected. +bwoink-system-player-banned = has been banned for: {$banReason} diff --git a/Resources/Locale/en-US/cargo/bounties.ftl b/Resources/Locale/en-US/cargo/bounties.ftl index 09424e49097..b5eeafb0b36 100644 --- a/Resources/Locale/en-US/cargo/bounties.ftl +++ b/Resources/Locale/en-US/cargo/bounties.ftl @@ -65,6 +65,7 @@ bounty-item-cardboard-box = Cardboard box bounty-item-wine = Wine bottle bounty-item-cotton-boll = Cotton boll bounty-item-microwave-machine-board = Microwave machine board +bounty-item-flash = Flash bounty-description-artifact = NanoTrasen is in some hot water for stealing artifacts from non-spacefaring planets. Return one and we'll compensate you for it. bounty-description-baseball-bat = Baseball fever is going on at CentCom! Be a dear and ship them some baseball bats, so that management can live out their childhood dream. @@ -132,3 +133,4 @@ bounty-description-cardobard-box = "The Cardborgs Cometh" is a new play premieri bounty-description-wine = The new librarian and the Quartermaster are falling head over heels for each other after she caught him disassembling the bookshelves for wood. Send a couple bottles of wine (Or cans, if you must) to help make the date go well. bounty-description-cotton-boll = A massive swarm of mothroaches ate all the paper and cloth on the station. Send us some cotton to help keep our winged crewmembers fed. bounty-description-microwave-machine-board = Mr. Giggles thought it'd be funny to stick forks in all the kitchen microwaves. Help us replace them before the chefs start making clown burgers. +bounty-description-flashes = GREETINGS \[Station] WE REQUIRE 6 FLASHES DUE TO A NORMAL \[TrainingExercise] WITH SECURITY. EVERYTHING IS \[Normal]. diff --git a/Resources/Locale/en-US/cargo/cargo-console-component.ftl b/Resources/Locale/en-US/cargo/cargo-console-component.ftl index 3c032488b52..7114924c026 100644 --- a/Resources/Locale/en-US/cargo/cargo-console-component.ftl +++ b/Resources/Locale/en-US/cargo/cargo-console-component.ftl @@ -30,7 +30,7 @@ cargo-console-snip-snip = Order trimmed to capacity cargo-console-insufficient-funds = Insufficient funds (require {$cost}) cargo-console-unfulfilled = No room to fulfill order cargo-console-trade-station = Sent to {$destination} -cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approverName}, {$approverJob}[/bold] +cargo-console-unlock-approved-order-broadcast = [bold]{$productName} x{$orderAmount}[/bold], which cost [bold]{$cost}[/bold], was approved by [bold]{$approver}[/bold] cargo-console-paper-print-name = Order #{$orderNumber} cargo-console-paper-print-text = diff --git a/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl b/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl index e9018171a40..0906cccee50 100644 --- a/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl +++ b/Resources/Locale/en-US/character-appearance/components/magic-mirror-component.ftl @@ -1,3 +1,15 @@ magic-mirror-component-activate-user-has-no-hair = You can't have any hair! -magic-mirror-window-title = Magic Mirror \ No newline at end of file +magic-mirror-window-title = Magic Mirror +magic-mirror-add-slot-self = You're giving yourself some hair. +magic-mirror-remove-slot-self = You're removing some of your hair. +magic-mirror-change-slot-self = You're changing your hairstyle. +magic-mirror-change-color-self = You're changing your hair color. + +magic-mirror-add-slot-target = Hair is being added to you by {$user}. +magic-mirror-remove-slot-target = Your hair is being cut off by {$user}. +magic-mirror-change-slot-target = Your hairstyle is being changed by {$user}. +magic-mirror-change-color-target = Your hair color is being changed by {$user}. + +magic-mirror-blocked-by-hat-self = You need to take off your hat before changing your hair. +magic-mirror-blocked-by-hat-self-target = You try to change their hair but their clothes gets in the way. diff --git a/Resources/Locale/en-US/character-info/components/character-info-component.ftl b/Resources/Locale/en-US/character-info/components/character-info-component.ftl index 07a0dd696a3..b515c36c5a5 100644 --- a/Resources/Locale/en-US/character-info/components/character-info-component.ftl +++ b/Resources/Locale/en-US/character-info/components/character-info-component.ftl @@ -1,3 +1,4 @@ character-info-title = Character character-info-roles-antagonist-text = Antagonist Roles character-info-objectives-label = Objectives +character-info-no-profession = No Profession diff --git a/Resources/Locale/en-US/chemistry/components/solution-transfer-component.ftl b/Resources/Locale/en-US/chemistry/components/solution-transfer-component.ftl index 601392069b0..b966a9cc61d 100644 --- a/Resources/Locale/en-US/chemistry/components/solution-transfer-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/solution-transfer-component.ftl @@ -15,3 +15,6 @@ comp-solution-transfer-verb-toggle = Toggle to {$amount}u ## Displayed after you successfully change a solution's amount using the BUI comp-solution-transfer-set-amount = Transfer amount set to {$amount}u. +comp-solution-transfer-set-amount-max = Max: {$amount}u +comp-solution-transfer-set-amount-min = Min: {$amount}u + diff --git a/Resources/Locale/en-US/examine/examine-system.ftl b/Resources/Locale/en-US/examine/examine-system.ftl index 243ba572576..fae6360e9b9 100644 --- a/Resources/Locale/en-US/examine/examine-system.ftl +++ b/Resources/Locale/en-US/examine/examine-system.ftl @@ -6,6 +6,6 @@ examine-system-cant-see-entity = You can't make out whatever that is. examine-verb-name = Basic -examinable-anchored = It is [color=darkgreen]anchored[/color] to the floor +examinable-anchored = It is [color=darkgreen]anchored[/color] to the floor. -examinable-unanchored = It is [color=darkred]unanchored[/color] from the floor +examinable-unanchored = It is [color=darkred]unanchored[/color] from the floor. diff --git a/Resources/Locale/en-US/game-ticking/game-ticker.ftl b/Resources/Locale/en-US/game-ticking/game-ticker.ftl index 9527ecb57d9..9c2d7bcf306 100644 --- a/Resources/Locale/en-US/game-ticking/game-ticker.ftl +++ b/Resources/Locale/en-US/game-ticking/game-ticker.ftl @@ -37,6 +37,8 @@ latejoin-arrival-announcement = {$character} ({$job}) has arrived at the station latejoin-arrival-sender = Station latejoin-arrivals-direction = A shuttle transferring you to your station will arrive shortly. latejoin-arrivals-direction-time = A shuttle transferring you to your station will arrive in {$time}. +latejoin-arrivals-dumped-from-shuttle = A mysterious force prevents you from leaving with the arrivals shuttle. +latejoin-arrivals-teleport-to-spawn = A mysterious force teleports you off the arrivals shuttle. Have a safe shift! preset-not-enough-ready-players = Can't start {$presetName}. Requires {$minimumPlayers} players but we have {$readyPlayersCount}. preset-no-one-ready = Can't start {$presetName}. No players are ready. \ No newline at end of file diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index 98f31e0ab07..6dc214fc108 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -197,6 +197,19 @@ ghost-role-information-syndicate-reinforcement-name = Syndicate Agent ghost-role-information-syndicate-reinforcement-description = Someone needs reinforcements. You, the first person the syndicate could find, will help them. ghost-role-information-syndicate-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the agent who summoned you. +ghost-role-information-syndicate-reinforcement-medic-name = Syndicate Medic +ghost-role-information-syndicate-reinforcement-medic-description = Someone needs reinforcements. Your task is to keep the agent who called you alive. + +ghost-role-information-syndicate-reinforcement-spy-name = Syndicate Spy +ghost-role-information-syndicate-reinforcement-spy-description = Someone needs reinforcements. Your speciality lies in espionage, do not be discovered. + +ghost-role-information-syndicate-reinforcement-thief-name = Syndicate Thief +ghost-role-information-syndicate-reinforcement-thief-description = Someone needs reinforcements. Your job is to break in and retrieve something valuable for your agent. + +ghost-role-information-nukeop-reinforcement-name = Nuclear Operative +ghost-role-information-nukeop-reinforcement-description = The nuclear operatives need reinforcements. You, a reserve agent, will help them. +ghost-role-information-nukeop-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the nuclear operatives who summoned you. + ghost-role-information-syndicate-monkey-reinforcement-name = Syndicate Monkey Agent ghost-role-information-syndicate-monkey-reinforcement-description = Someone needs reinforcements. You, a trained monkey, will help them. ghost-role-information-syndicate-monkey-reinforcement-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with the agent who summoned you. diff --git a/Resources/Locale/en-US/lathe/recipes.ftl b/Resources/Locale/en-US/lathe/recipes.ftl new file mode 100644 index 00000000000..99186c5b659 --- /dev/null +++ b/Resources/Locale/en-US/lathe/recipes.ftl @@ -0,0 +1,8 @@ +lathe-recipe-Medkit-name = first aid kit (empty) +lathe-recipe-MedkitBurn-name = burn treatment kit (empty) +lathe-recipe-MedkitToxin-name = toxin treatment kit (empty) +lathe-recipe-MedkitO2-name = oxygen deprivation treatment kit (empty) +lathe-recipe-MedkitBrute-name = brute trauma treatment kit (empty) +lathe-recipe-MedkitAdvanced-name = advanced first aid kit (empty) +lathe-recipe-MedkitRadiation-name = radiation treatment kit (empty) +lathe-recipe-MedkitCombat-name = combat medical kit (empty) diff --git a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl index 71dd50d4091..16b67022ad5 100644 --- a/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/en-US/lathe/ui/lathe-menu.ftl @@ -6,6 +6,9 @@ lathe-menu-search-designs = Search designs lathe-menu-category-all = All lathe-menu-search-filter = Filter: lathe-menu-amount = Amount: +lathe-menu-reagent-slot-examine = It has a slot for a beaker on the side. +lathe-reagent-dispense-no-container = Liquid pours out of {THE($name)} onto the floor! +lathe-menu-result-reagent-display = {$reagent} ({$amount}u) lathe-menu-material-display = {$material} ({$amount}) lathe-menu-tooltip-display = {$amount} of {$material} lathe-menu-description-display = [italic]{$description}[/italic] diff --git a/Resources/Locale/en-US/lock/locking-whitelist-component.ftl b/Resources/Locale/en-US/lock/locking-whitelist-component.ftl new file mode 100644 index 00000000000..182814c2c56 --- /dev/null +++ b/Resources/Locale/en-US/lock/locking-whitelist-component.ftl @@ -0,0 +1 @@ +locking-whitelist-component-lock-toggle-deny = You can't toggle the lock. diff --git a/Resources/Locale/en-US/mass-media/news-ui.ftl b/Resources/Locale/en-US/mass-media/news-ui.ftl index 1553a24b4af..678f20a81af 100644 --- a/Resources/Locale/en-US/mass-media/news-ui.ftl +++ b/Resources/Locale/en-US/mass-media/news-ui.ftl @@ -34,4 +34,4 @@ news-write-ui-richtext-tooltip = News articles support rich text {"[bullet/]bullet[/color]"} news-pda-notification-header = New news article -news-publish-admin-announcement = {$actor} published news article {$title} by {$author}" +news-publish-admin-announcement = {$actor} published news article {$title} by {$author} diff --git a/Resources/Locale/en-US/paper/envelope.ftl b/Resources/Locale/en-US/paper/envelope.ftl new file mode 100644 index 00000000000..bb7993d2840 --- /dev/null +++ b/Resources/Locale/en-US/paper/envelope.ftl @@ -0,0 +1,11 @@ +envelope-verb-seal = Seal +envelope-verb-tear = Tear + +envelope-letter-slot = Letter + +envelope-sealed-examine = [color=gray]{CAPITALIZE(THE($envelope))} is sealed.[/color] +envelope-torn-examine = [color=yellow]{CAPITALIZE(THE($envelope))} is torn and unusable![/color] + +envelope-default-message = TO: + + FROM: \ No newline at end of file diff --git a/Resources/Locale/en-US/power/components/charger.ftl b/Resources/Locale/en-US/power/components/charger.ftl index 1a6e72f43e9..9ac16a2d46e 100644 --- a/Resources/Locale/en-US/power/components/charger.ftl +++ b/Resources/Locale/en-US/power/components/charger.ftl @@ -1,2 +1,4 @@ charger-examine = Charges at [color={$color}]{$chargeRate}W[/color]. charger-component-charge-rate = Charge rate +charger-content = Current charge is at [color=#5E7C16]{$chargePercentage}[/color]%. +charger-empty = There is nothing in the charger. diff --git a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl index bfdbeb2f140..04ea0d9d51f 100644 --- a/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/en-US/preferences/ui/humanoid-profile-editor.ftl @@ -18,6 +18,8 @@ humanoid-profile-editor-pronouns-epicene-text = They / Them humanoid-profile-editor-pronouns-neuter-text = It / It humanoid-profile-editor-import-button = Import humanoid-profile-editor-export-button = Export +humanoid-profile-editor-export-image-button = Export image +humanoid-profile-editor-open-image-button = Open images humanoid-profile-editor-save-button = Save humanoid-profile-editor-reset-button = Reset humanoid-profile-editor-spawn-priority-label = Spawn priority: @@ -58,4 +60,5 @@ humanoid-profile-editor-no-traits = No traits available humanoid-profile-editor-trait-count-hint = Points available: [{$current}/{$max}] trait-category-disabilities = Disabilities -trait-category-speech = Speech traits \ No newline at end of file +trait-category-speech = Speech traits +trait-category-quirks = Quirks diff --git a/Resources/Locale/en-US/procedural/expeditions.ftl b/Resources/Locale/en-US/procedural/expeditions.ftl index b7bbdbce2f9..56776e351d2 100644 --- a/Resources/Locale/en-US/procedural/expeditions.ftl +++ b/Resources/Locale/en-US/procedural/expeditions.ftl @@ -32,3 +32,34 @@ salvage-expedition-announcement-countdown-seconds = {$duration} seconds remainin salvage-expedition-announcement-dungeon = Dungeon is located {$direction}. salvage-expedition-completed = Expedition is completed. salvage-expedition-reward-description = Mission completion reward + +# Salvage biome mod +salvage-biome-mod-caves = Caves +salvage-biome-mod-grasslands = Grasslands +salvage-biome-mod-snow = Snow +salvage-biome-mod-lava = Lava + +# Salvage mods +salvage-light-mod-daylight = Daylight +salvage-light-mod-evening = Evening +salvage-light-mod-night = Night time + +salvage-temperature-mod-room-temperature = Room temperature +salvage-temperature-mod-hot = Hot +salvage-temperature-mod-high-temperature = High temperature +salvage-temperature-mod-extreme-heat = Extreme heat +salvage-temperature-mod-cold = Cold +salvage-temperature-mod-low-temperature = Low temperature +salvage-temperature-mod-extreme-cold = Extreme cold + +salvage-air-mod-no-atmosphere = No atmosphere +salvage-air-mod-breathable-atmosphere = Breathable atmosphere +salvage-air-mod-dangerous-atmosphere = Dangerous atmosphere +salvage-air-mod-toxic-atmosphere = Toxic atmosphere +salvage-air-mod-volatile-atmosphere = Volatile atmosphere + +salvage-dungeon-mod-lava-brig = Lava Brig +salvage-dungeon-mod-snowy-labs = Snowy labs +salvage-dungeon-mod-experiment = Experiment +salvage-dungeon-mod-haunted = Haunted +salvage-dungeon-mod-mineshaft = Mineshaft diff --git a/Resources/Locale/en-US/procedural/salvage-faction.ftl b/Resources/Locale/en-US/procedural/salvage-faction.ftl new file mode 100644 index 00000000000..d3bed816f64 --- /dev/null +++ b/Resources/Locale/en-US/procedural/salvage-faction.ftl @@ -0,0 +1,2 @@ +salvage-faction-xenos = Xenos +salvage-faction-carps = Carps diff --git a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl index 87ebe38e216..07bb47678fa 100644 --- a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl +++ b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl @@ -7,7 +7,7 @@ reagent-desc-napalm = It's just a little flammable. reagent-name-phlogiston = phlogiston reagent-desc-phlogiston = Catches you on fire and makes you ignite. -reagent-name-chlorine-trifluoride = CLF3 +reagent-name-chlorine-trifluoride = chlorine trifluoride reagent-desc-chlorine-trifluoride = You really, REALLY don't want to get this shit anywhere near you. reagent-name-foaming-agent = foaming agent diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index 2dc0b88c747..f98118c23eb 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -32,6 +32,8 @@ seeds-potato-name = potato seeds-potato-display-name = potatoes seeds-sugarcane-name = sugarcane seeds-sugarcane-display-name = sugarcanes +seeds-papercane-name = papercane +seeds-papercane-display-name = papercanes seeds-towercap-name = tower cap seeds-towercap-display-name = tower caps seeds-steelcap-name = steel cap @@ -48,6 +50,8 @@ seeds-eggplant-name = eggplant seeds-eggplant-display-name = eggplants seeds-apple-name = apple seeds-apple-display-name = apple tree +seeds-goldenapple-name = golden apple +seeds-goldenapple-display-name = golden apple tree seeds-corn-name = corn seeds-corn-display-name = ears of corn seeds-onion-name = onion @@ -88,6 +92,8 @@ seeds-ambrosiadeus-name = ambrosia deus seeds-ambrosiadeus-display-name = ambrosia deus seeds-galaxythistle-name = galaxythistle seeds-galaxythistle-display-name = galaxythistle +seeds-glasstle-name = glasstle +seeds-glasstle-display-name = glasstle seeds-flyamanita-name = fly amanita seeds-flyamanita-display-name = fly amanita seeds-gatfruit-name = gatfruit diff --git a/Resources/Locale/en-US/speech/speech-chatsan.ftl b/Resources/Locale/en-US/speech/speech-chatsan.ftl index df6cde00a2c..3e1c3fedb68 100644 --- a/Resources/Locale/en-US/speech/speech-chatsan.ftl +++ b/Resources/Locale/en-US/speech/speech-chatsan.ftl @@ -135,3 +135,18 @@ chatsan-replacement-48 = right now chatsan-word-49 = atm chatsan-replacement-49 = at the moment + +chatsan-word-50 = istg +chatsan-replacement-50 = I swear to god + +chatsan-word-51 = rq +chatsan-replacement-51 = real quick + +chatsan-word-52 = dw +chatsan-replacement-52 = don't worry + +chatsan-word-53 = wru +chatsan-replacement-53 = where are you + +chatsan-word-54 = fs +chatsan-replacement-54 = for sure diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl index 1e4b064985e..26345596856 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl @@ -58,3 +58,5 @@ ent-BoxCandleSmall = small candle box .desc = { ent-BoxCandle.desc } ent-BoxDarts = darts box .desc = A box filled with colorful darts. +ent-BoxEnvelope = envelope box + .desc = A box filled with envelopes. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl new file mode 100644 index 00000000000..0d8a90d4c78 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl @@ -0,0 +1,32 @@ +ent-CratePermaEscapeSpawner = Perma Escape Crate Spawner + .desc = { ent-CrateEmptySpawner.desc } +ent-CratePermaEscapeDigging = { ent-CrateGenericSteel } + .suffix = Digging + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeEVA = { ent-CrateGenericSteel } + .suffix = EVAs + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeGun = { ent-CrateGenericSteel } + .suffix = Gun + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeBureaucracy = { ent-CrateGenericSteel } + .suffix = Writing + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeLights = { ent-CrateGenericSteel } + .suffix = Glowsticks + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeMats = { ent-CrateGenericSteel } + .suffix = Mats + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeGiftsFromSyndicate = { ent-CrateGenericSteel } + .suffix = Syndi Gifts + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeMerc = { ent-CrateGenericSteel } + .suffix = Merc + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeComs = { ent-CrateGenericSteel } + .suffix = Coms + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeTowercap = { ent-CrateGenericSteel } + .suffix = Towercap + .desc = { ent-CrateGenericSteel.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl index 7f8340df114..fd603593729 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/service.ftl @@ -31,3 +31,5 @@ ent-CrateJanitorBiosuit = janitor bio suit crate ent-CrateTrashCartFilled = { ent-CrateTrashCart } .suffix = Filled .desc = { ent-CrateTrashCart.desc } +ent-CrateCandles = candles crate + .desc = Contains 4 boxes of candles, 2 large and 2 small. For atmosphere or something. 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 500fda47a43..f75ab1d9c0b 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 @@ -11,3 +11,6 @@ ent-ClothingShoesHighheelBootsFilled = { ent-ClothingShoesHighheelBoots } ent-ClothingShoesBootsMercFilled = { ent-ClothingShoesBootsMerc } .suffix = Filled .desc = { ent-ClothingShoesBootsMerc.desc } +ent-ClothingShoesBootsSyndieFilled = { ent-ClothingShoesBootsCombat } + .suffix = Filled, Throwing Knife + .desc = { ent-ClothingShoesBootsCombat.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl index 5f3d535df0c..b2896f84915 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/head/hats.ftl @@ -2,7 +2,7 @@ ent-ClothingHeadHatBeaverHat = beaver hat .desc = Gentlemen? ent-ClothingHeadHatBeret = beret .desc = A beret, an artists favorite headwear. -ent-ClothingHeadHatBeretFrench = French beret +ent-ClothingHeadHatBeretFrench = french beret .desc = A French beret, "vive la France". ent-ClothingHeadHatBeretSecurity = security beret .desc = A stylish clothing option for security officers. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/masks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/masks.ftl index 441cc2fab4a..241114af781 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/masks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/masks/masks.ftl @@ -24,6 +24,8 @@ ent-ClothingMaskClown = { ent-ClothingMaskClownBase } .desc = { ent-ClothingMaskClownBase.desc } ent-ClothingMaskClownBanana = banana clown wig and mask .desc = { ent-ClothingMaskClown.desc } +ent-ClothingMaskClownSecurity = security clown wig and mask + .desc = A debatably oxymoronic but protective mask and wig. ent-ClothingMaskJoy = joy mask .desc = Express your happiness or hide your sorrows with this laughing face with crying tears of joy cutout. ent-ClothingMaskMime = mime mask diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl index 1602c9b85aa..3cd4b66f5b6 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl @@ -7,6 +7,6 @@ ent-ClothingShoesBootsMagSci = { ent-ClothingShoesBootsMag } ent-ClothingShoesBootsMagBlinding = magboots of blinding speed .desc = These would look fetching on a fetcher like you. ent-ClothingShoesBootsMagSyndie = blood-red magboots - .desc = Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. + .desc = Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. It can hold 0.75 L of gas. ent-ActionToggleMagboots = Toggle Magboots .desc = Toggles the magboots on and off. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/foldable.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/foldable.ftl index 5527068eeb7..a08a63b68e6 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/foldable.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/foldable.ftl @@ -1,2 +1,4 @@ ent-BaseFoldable = foldable .desc = { "" } +ent-BaseDeployFoldable = deploy foldable + .desc = { ent-BaseFoldable.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/temp.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/temp.ftl new file mode 100644 index 00000000000..0fddc4a73ca --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/temp.ftl @@ -0,0 +1,2 @@ +ent-TemporaryEntityForTimedDespawnSpawners = { "" } + .desc = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl index 9f848b2e731..52f9254698e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/elemental.ftl @@ -10,7 +10,7 @@ ent-MobUraniumCrab = { ent-MobOreCrab } .desc = An ore crab made from uranium. ent-MobSilverCrab = ore crab .desc = An ore crab made from silver. -ent-ReagentSlime = Reagent slime +ent-ReagentSlime = reagent slime .desc = It consists of a liquid, and it wants to dissolve you in itself. .suffix = Water ent-ReagentSlimeSpawner = Reagent Slime Spawner diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/mimic.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/mimic.ftl index 5d5dd3887f6..e53e6badbb7 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/mimic.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/mimic.ftl @@ -1,2 +1,2 @@ -ent-MobMimic = Mimic +ent-MobMimic = mimic .desc = Surprise. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl index e7de8e62c40..e5f34ba1311 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/regalrat.ftl @@ -1,9 +1,9 @@ -ent-MobRatKing = Rat King +ent-MobRatKing = rat king .desc = He's da rat. He make da roolz. ent-MobRatKingBuff = { ent-MobRatKing } .suffix = Buff .desc = { ent-MobRatKing.desc } -ent-MobRatServant = Rat Servant +ent-MobRatServant = rat servant .desc = He's da mini rat. He don't make da roolz. ent-ActionRatKingRaiseArmy = Raise Army .desc = Spend some hunger to summon an allied rat to help defend you. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/xeno.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/xeno.ftl index d54c283ada4..0c01e06a6dc 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/xeno.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/xeno.ftl @@ -1,18 +1,18 @@ -ent-MobXeno = Burrower +ent-MobXeno = burrower .desc = They mostly come at night. Mostly. -ent-MobXenoPraetorian = Praetorian +ent-MobXenoPraetorian = praetorian .desc = { ent-MobXeno.desc } -ent-MobXenoDrone = Drone +ent-MobXenoDrone = drone .desc = { ent-MobXeno.desc } -ent-MobXenoQueen = Queen +ent-MobXenoQueen = queen .desc = { ent-MobXeno.desc } -ent-MobXenoRavager = Ravager +ent-MobXenoRavager = ravager .desc = { ent-MobXeno.desc } -ent-MobXenoRunner = Runner +ent-MobXenoRunner = runner .desc = { ent-MobXeno.desc } -ent-MobXenoRouny = Rouny +ent-MobXenoRouny = rouny .desc = { ent-MobXenoRunner.desc } -ent-MobXenoSpitter = Spitter +ent-MobXenoSpitter = spitter .desc = { ent-MobXeno.desc } ent-MobPurpleSnake = space adder .desc = A menacing purple snake from Kepler-283c. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl index d3051c9ac44..e2f9129a769 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/human.ftl @@ -6,6 +6,12 @@ ent-MobHumanSyndicateAgentBase = syndicate agent ent-MobHumanSyndicateAgent = syndicate agent .suffix = Human, Traitor .desc = { ent-MobHumanSyndicateAgentBase.desc } +ent-MobHumanSyndicateAgentMedic = syndicate medic + .desc = { ent-MobHumanSyndicateAgent.desc } +ent-MobHumanSyndicateAgentSpy = syndicate spy + .desc = { ent-MobHumanSyndicateAgent.desc } +ent-MobHumanSyndicateAgentThief = syndicate thief + .desc = { ent-MobHumanSyndicateAgent.desc } ent-MobHumanSyndicateAgentNukeops = { ent-MobHumanSyndicateAgentBase } .suffix = Human, NukeOps .desc = { ent-MobHumanSyndicateAgentBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl index 21ab09dd517..ecff67f7422 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl @@ -1,2 +1,2 @@ -ent-MobMoth = Urist McFluff - .desc = { ent-BaseMobMoth.desc } +#ent-MobMoth = Urist McFluff +# .desc = { ent-BaseMobMoth.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl index 835d8a2aea3..174979f062f 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl @@ -1,4 +1,4 @@ -ent-BaseMobMoth = Urist McFluff - .desc = { ent-BaseMobSpeciesOrganic.desc } -ent-MobMothDummy = { ent-BaseSpeciesDummy } - .desc = { ent-BaseSpeciesDummy.desc } +#ent-BaseMobMoth = Urist McFluff +# .desc = { ent-BaseMobSpeciesOrganic.desc } +#ent-MobMothDummy = { ent-BaseSpeciesDummy } +# .desc = { ent-BaseSpeciesDummy.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl index f3fc14bce12..3c822e38f66 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl @@ -69,7 +69,7 @@ ent-DrinkJuiceLimeCartonXL = lime juice XL .desc = Sweet-sour goodness. ent-DrinkJuiceOrangeCartonXL = orange juice XL .desc = Full of vitamins and deliciousness! -ent-DrinkCreamCartonXL = Milk Cream XL +ent-DrinkCreamCartonXL = milk cream XL .desc = It's cream. Made from milk. What else did you think you'd find in there? ent-DrinkSugarJug = sugar jug .desc = some people put this in their coffee... diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cups.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cups.ftl index 8ec8b8eb74a..b581dab89bb 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cups.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cups.ftl @@ -36,7 +36,7 @@ ent-DrinkTeacup = teacup .desc = A plain white porcelain teacup. ent-DrinkGreenTea = green tea .desc = A plain white porcelain teacup. -ent-DrinkLean = grape Juice +ent-DrinkLean = grape juice .desc = Damn, no fun allowed. ent-DrinkWaterCup = water cup .desc = A paper water cup. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl index 87f0af7105d..7adda7453e2 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl @@ -40,3 +40,7 @@ ent-FoodPizzaArnoldSlice = slice of Arnold's pizza .desc = I come over, maybe I give you a pizza, maybe I break off your arm. ent-FoodPizzaMoldySlice = slice of moldy pizza .desc = Once a perfectly good slice of pizza pie, but now it lies here, rancid and bursting with spores. +ent-FoodPizzaUranium = spicy rock pizza + .desc = Spicy pizza covered in peppers and uranium. +ent-FoodPizzaUraniumSlice = slice of spicy rock pizza + .desc = A glowing slice of spicy rock pizza. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl index dcb46286634..b4e2e5f295c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl @@ -8,6 +8,8 @@ ent-OatBushel = oat bushel .desc = Eat oats, do squats. ent-Sugarcane = sugarcane .desc = Sickly sweet. +ent-Papercane = papercane roll + .desc = Why do we even need to grow paper? ent-FoodLaughinPeaPod = laughin' pea pod .desc = The clown's favorite plant. ent-Log = tower-cap log @@ -58,6 +60,8 @@ ent-FoodEggplant = eggplant .desc = Maybe there's a chicken inside? ent-FoodApple = apple .desc = It's a little piece of Eden. +ent-FoodGoldenApple = golden apple + .desc = It should be shaped like a cube, shouldn't it? ent-FoodCocoaPod = cocoa pod .desc = You can never have too much chocolate! ent-FoodCorn = ear of corn @@ -96,6 +100,8 @@ ent-FoodAmbrosiaDeus = ambrosia deus .desc = An extremely sought-after medicinal plant. May have some funky side effects. ent-FoodGalaxythistle = galaxythistle .desc = A medicinal plant used for its antitoxin. +ent-FoodGlasstle = glasstle + .desc = A fragile crystal plant with lot of spiky thorns. ent-FoodFlyAmanita = fly amanita .desc = A delicious-looking mushroom like you see in those cartoons. ent-FoodGatfruit = gatfruit diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl index 7048cfd0e23..c4e7432b640 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl @@ -154,3 +154,5 @@ ent-ReagentGrinderIndustrialMachineCircuitboard = industrial reagent grinder mac .desc = { ent-BaseMachineCircuitboard.desc } ent-JukeboxCircuitBoard = jukebox machine board .desc = A machine printed circuit board for a jukebox. +ent-CutterMachineCircuitboard = cutter machine board + .desc = { ent-BaseMachineCircuitboard.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl index 860a2206828..75e99c1406a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl @@ -1,8 +1,10 @@ -ent-ReinforcementRadioSyndicate = syndicate reinforcement radio +ent-ReinforcementRadio = syndicate reinforcement radio .desc = Call in a syndicate agent of questionable quality, instantly! Only basic equipment provided. -ent-ReinforcementRadioSyndicateNukeops = { ent-ReinforcementRadioSyndicate } +ent-ReinforcementRadioSyndicate = syndicate reinforcement radio + .desc = Call in a syndicate agent of questionable quality, instantly! +ent-ReinforcementRadioSyndicateNukeops = nuclear operative radio + .desc = Call in a nuclear operative of questionable quality, instantly! Basic nukeop equipment provided. .suffix = NukeOps - .desc = { ent-ReinforcementRadioSyndicate.desc } ent-ReinforcementRadioSyndicateAncestor = syndicate genetic ancestor reinforcement radio .desc = Calls in a specially trained ancestor of your choosing to assist you. ent-ReinforcementRadioSyndicateAncestorNukeops = { ent-ReinforcementRadioSyndicateAncestor } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books_author.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books_author.ftl index dbd557ac5be..83255d03cac 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books_author.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/books_author.ftl @@ -28,7 +28,7 @@ ent-BookIanRanch = the adventures of ian and renault - ranch expedition .desc = The book appears to be new, with crisp pages and an unblemished cover. The cover features a colorful illustration of Ian and Renault, surrounded by various animals they encountered on the ranch, including horses, cows, and chickens. The title, "The Adventures of Ian and Renault - Ranch Expedition," is written in bold letters above the image, with the subtitle, "Helping Animals in Need," written below. ent-BookIanOcean = the adventures of ian and renault - an ocean adventure .desc = The book is new and in excellent condition. The cover shows Ian and Renault running and playing on the beach, with the blue ocean and golden sand in the background. The title is written in bold, playful letters, and the subtitle reads "An Ocean Adventure." -ent-BookIanMountain = the adventures of ian and renault - A mountain expedition +ent-BookIanMountain = the adventures of ian and renault - a mountain expedition .desc = The book is in new condition. The cover is a stunning mountain landscape with Ian and Renault in the foreground, looking out over the vista of the surrounding peaks and valleys. The title is written in bold, block letters at the top, with the subtitle, "A Mountain Expedition," written underneath. ent-BookIanCity = the adventures of ian and renault - exploring the city .desc = The book is in new condition, with crisp pages and a glossy cover. The cover features a colorful illustration of Ian and Renault exploring the city, with tall buildings and bustling streets in the background. Ian is leading the way, with his tail wagging excitedly, while Renault follows close behind, her ears perked up and her eyes wide with wonder. The title, "The Adventures of Ian and Renault," is written in bold, playful letters, with the subtitle, "Exploring the City," written below in smaller font. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl index eee0e0bf5d9..16968f14313 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/paper.ftl @@ -53,3 +53,5 @@ ent-BoxFolderCentComClipboard = CentCom clipboard .desc = A luxurious clipboard upholstered with green velvet. Often seen carried by CentCom officials, seldom seen actually used. ent-BoxFolderQmClipboard = requisition digi-board .desc = A bulky electric clipboard, filled with shipping orders and financing details. With so many compromising documents, you ought to keep this safe. +ent-Envelope = envelope + .desc = A small envelope for keeping prying eyes off of your sensitive documents. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl index 1872afee3ae..fcad61524c0 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/misc/tiles.ftl @@ -1,18 +1,66 @@ ent-FloorTileItemBase = { ent-BaseItem } .desc = These could work as a pretty decent throwing weapon. -ent-FloorTileItemSteel = steel tile - .desc = { ent-FloorTileItemBase.desc } ent-FloorTileItemSteelCheckerDark = steel dark checker tile .desc = { ent-FloorTileItemSteel.desc } ent-FloorTileItemSteelCheckerLight = steel light checker tile .desc = { ent-FloorTileItemSteel.desc } -ent-FloorTileItemMetalDiamond = steel tile +ent-FloorTileItemDark = dark tile .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWood = wood floor +ent-FloorTileItemDarkDiagonalMini = dark steel diagonal mini tile + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkDiagonal = dark steel diagonal tile + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkHerringbone = dark steel herringbone + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkMini = dark steel mini tile + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkMono = dark steel mono tile + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkPavement = dark steel pavement + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkPavementVertical = dark steel vertical pavement + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkOffset = offset dark steel tile + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemSteel = steel tile .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemSteelOffset = offset steel tile + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelDiagonalMini = steel diagonal mini tile + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelDiagonal = steel diagonal tile + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelHerringbone = steel herringbone + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelMini = steel mini tile + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelMono = steel mono tile + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelPavement = steel pavement + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelPavementVertical = steel vertical pavement + .desc = { ent-FloorTileItemSteel.desc } ent-FloorTileItemWhite = white tile .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemDark = dark tile +ent-FloorTileItemWhiteOffset = offset white steel tile + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteDiagonalMini = white steel diagonal mini tile + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteDiagonal = white steel diagonal tile + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteHerringbone = white steel herringbone + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteMini = white steel mini tile + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteMono = white steel mono tile + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhitePavement = white steel pavement + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhitePavementVertical = white steel vertical pavement + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemMetalDiamond = steel tile + .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemWood = wood floor .desc = { ent-FloorTileItemBase.desc } ent-FloorTileItemTechmaint = techmaint floor .desc = { ent-FloorTileItemBase.desc } @@ -58,10 +106,22 @@ ent-FloorTileItemLaundry = laundry tile .desc = { ent-FloorTileItemBase.desc } ent-FloorTileItemConcrete = concrete tile .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemConcreteMono = concrete mono tile + .desc = { ent-FloorTileItemConcrete.desc } +ent-FloorTileItemConcreteSmooth = concrete smooth + .desc = { ent-FloorTileItemConcrete.desc } ent-FloorTileItemGrayConcrete = gray concrete tile .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemGrayConcreteMono = gray concrete mono tile + .desc = { ent-FloorTileItemGrayConcrete.desc } +ent-FloorTileItemGrayConcreteSmooth = gray concrete smooth + .desc = { ent-FloorTileItemGrayConcrete.desc } ent-FloorTileItemOldConcrete = old concrete tile .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemOldConcreteMono = old concrete mono tile + .desc = { ent-FloorTileItemOldConcrete.desc } +ent-FloorTileItemOldConcreteSmooth = old concrete smooth + .desc = { ent-FloorTileItemOldConcrete.desc } ent-FloorTileItemArcadeBlue = blue arcade floor .desc = { ent-FloorTileItemBase.desc } ent-FloorTileItemArcadeBlue2 = blue arcade floor diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl index 1cf9147ad36..f55d06c11f1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl @@ -30,6 +30,8 @@ ent-PotatoSeeds = packet of potato seeds .desc = { ent-SeedBase.desc } ent-SugarcaneSeeds = packet of sugarcane seeds .desc = { ent-SeedBase.desc } +ent-PapercaneSeeds = packet of papercane seeds + .desc = { ent-SeedBase.desc } ent-TowercapSeeds = packet of tower cap spores .desc = { ent-SeedBase.desc } ent-SteelcapSeeds = packet of steel cap spores @@ -46,6 +48,8 @@ ent-EggplantSeeds = packet of eggplant seeds .desc = { ent-SeedBase.desc } ent-AppleSeeds = packet of apple seeds .desc = { ent-SeedBase.desc } +ent-GoldenAppleSeeds = packet of golden apple seeds + .desc = { ent-SeedBase.desc } ent-CornSeeds = packet of corn seeds .desc = { ent-SeedBase.desc } ent-ChanterelleSeeds = packet of chanterelle spores @@ -80,6 +84,8 @@ ent-AmbrosiaDeusSeeds = packet of ambrosia deus seeds .desc = A medicinal plant for the gods themselves. ent-GalaxythistleSeeds = packet of galaxythistle seeds .desc = Brushes of starry nights. +ent-GlasstleSeeds = packet of glasstle seeds + .desc = Scars of gloomy nights. ent-FlyAmanitaSeeds = packet of fly amanita spores .desc = The iconic, extremely deadly mushroom to be used for purely ornamental purposes. ent-GatfruitSeeds = packet of gatfruit seeds diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/kitchen/foodcarts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/kitchen/foodcarts.ftl index 52a78d57613..17890cd9a83 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/kitchen/foodcarts.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/kitchen/foodcarts.ftl @@ -1,4 +1,4 @@ -ent-FoodCartBase = Food Cart +ent-FoodCartBase = food cart .desc = A cart for food. ent-FoodCartHot = hot food cart .desc = Get out there and slang some dogs. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl index eab846759ad..9fcd19d4792 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl @@ -3,26 +3,26 @@ ent-GasTankBase = { ent-BaseItem } ent-GasTankRoundBase = { ent-GasTankBase } .desc = { ent-GasTankBase.desc } ent-OxygenTank = oxygen tank - .desc = A standard cylindrical gas tank for oxygen. + .desc = A standard cylindrical gas tank for oxygen. It can hold 5 L of gas. ent-NitrogenTank = nitrogen tank - .desc = A standard cylindrical gas tank for nitrogen. + .desc = A standard cylindrical gas tank for nitrogen. It can hold 5 L of gas. ent-EmergencyOxygenTank = emergency oxygen tank - .desc = An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only. + .desc = An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only. It can hold 0.66 L of gas. ent-EmergencyNitrogenTank = emergency nitrogen tank - .desc = An easily portable tank for emergencies. Contains very little nitrogen, rated for survival use only. + .desc = An easily portable tank for emergencies. Contains very little nitrogen, rated for survival use only. It can hold 0.66 L of gas. ent-ExtendedEmergencyOxygenTank = extended-capacity emergency oxygen tank - .desc = An emergency tank with extended capacity. Technically rated for prolonged use. + .desc = An emergency tank with extended capacity. Technically rated for prolonged use. It can hold 1.5 L of gas. ent-ExtendedEmergencyNitrogenTank = extended-capacity emergency nitrogen tank - .desc = An emergency tank with extended capacity. Technically rated for prolonged use. + .desc = An emergency tank with extended capacity. Technically rated for prolonged use. It can hold 1.5 L of gas. ent-DoubleEmergencyOxygenTank = double emergency oxygen tank - .desc = A high-grade dual-tank emergency life support container. It holds a decent amount of oxygen for it's small size. + .desc = A high-grade dual-tank emergency life support container. It holds a decent amount of oxygen for it's small size. It can hold 2.5 L of gas. ent-DoubleEmergencyNitrogenTank = double emergency nitrogen tank - .desc = A high-grade dual-tank emergency life support container. It holds a decent amount of nitrogen for its small size. + .desc = A high-grade dual-tank emergency life support container. It holds a decent amount of nitrogen for its small size. It can hold 2.5 L of gas. ent-EmergencyFunnyOxygenTank = funny emergency oxygen tank - .desc = An easily portable tank for emergencies. Contains very little oxygen with an extra of funny gas, rated for survival use only. + .desc = An easily portable tank for emergencies. Contains very little oxygen with an extra of funny gas, rated for survival use only. It can hold 0.66 L of gas. ent-AirTank = air tank - .desc = Mixed anyone? + .desc = Mixed anyone? It can hold 5 L of gas. ent-NitrousOxideTank = nitrous oxide tank - .desc = Contains a mixture of air and nitrous oxide. Make sure you don't refill it with pure N2O. + .desc = Contains a mixture of air and nitrous oxide. Make sure you don't refill it with pure N2O. It can hold 5 L of gas. ent-PlasmaTank = plasma tank - .desc = Contains dangerous plasma. Do not inhale. Extremely flammable. + .desc = Contains dangerous plasma. Do not inhale. Extremely flammable. It can hold 5 L of gas. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl index 6aef938783e..08a15f721e6 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl @@ -1,7 +1,7 @@ ent-JetpackEffect = { "" } .desc = { "" } -ent-BaseJetpack = Jetpack - .desc = It's a jetpack. +ent-BaseJetpack = jetpack + .desc = It's a jetpack. It can hold 5 L of gas. ent-ActionToggleJetpack = Toggle jetpack .desc = Toggles the jetpack, giving you movement outside the station. ent-JetpackBlue = jetpack @@ -23,8 +23,8 @@ ent-JetpackCaptainFilled = captain's jetpack .suffix = Filled .desc = { ent-JetpackCaptain.desc } ent-JetpackMini = mini jetpack + .desc = It's a jetpack. It can hold 1.5 L of gas. .suffix = Empty - .desc = { ent-BaseJetpack.desc } ent-JetpackMiniFilled = mini jetpack .suffix = Filled .desc = { ent-JetpackMini.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/grenade.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/grenade.ftl index b8e0a127c16..b0d6fb42c69 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/grenade.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/ammunition/projectiles/grenade.ftl @@ -1,6 +1,6 @@ -ent-PelletClusterRubber = pellet (ball, Rubber) +ent-PelletClusterRubber = pellet (ball, rubber) .desc = { ent-BaseBullet.desc } -ent-PelletClusterLethal = pellet (ball, Lethal) +ent-PelletClusterLethal = pellet (ball, lethal) .desc = { ent-BaseBullet.desc } ent-PelletClusterIncendiary = pellet (ball, incendiary) .desc = { ent-BaseBulletIncendiary.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/magic.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/magic.ftl index 655b5662ab6..0d44bb604dd 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/magic.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/projectiles/magic.ftl @@ -18,7 +18,7 @@ ent-BulletInstakillMagic = magical lead cylinder .desc = This looks familiar. ent-ProjectilePolyboltCluwne = cluwne polybolt .desc = knoH KnoH! -ent-ProjectileIcicle = Icicle +ent-ProjectileIcicle = icicle .desc = Brrrrr. ent-ProjectilePolyboltBread = bread polybolt .desc = Nooo, I don't wanna be bread! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/revolvers/revolvers.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/revolvers/revolvers.ftl index 607cc1a518b..8927803c389 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/revolvers/revolvers.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/revolvers/revolvers.ftl @@ -8,8 +8,8 @@ ent-WeaponRevolverMateba = Mateba .desc = The iconic sidearm of the dreaded death squads. Uses .45 magnum ammo. ent-WeaponRevolverPython = Python .desc = A robust revolver favoured by Syndicate agents. Uses .45 magnum ammo. -ent-WeaponRevolverPythonAP = Python - .desc = A robust revolver favoured by Syndicate agents. Uses .45 magnum ammo. +ent-WeaponRevolverPythonAP = { ent-WeaponRevolverPython } .suffix = armor-piercing + .desc = { ent-WeaponRevolverPython.desc } ent-WeaponRevolverPirate = pirate revolver .desc = An odd, old-looking revolver, favoured by pirate crews. Uses .45 magnum ammo. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl index 7d258f4fd8e..c4dab3484cd 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl @@ -12,3 +12,6 @@ ent-EnergyCutlass = energy cutlass .desc = An exotic energy weapon. ent-EnergySwordDouble = double-bladed energy sword .desc = Syndicate Command Interns thought that having one blade on the energy sword was not enough. This can be stored in pockets. +ent-CyborgEnergySwordDouble = { ent-EnergySwordDouble } + .desc = Syndicate Command Interns thought that having one blade on the energy sword was not enough. Specially designed for syndicate cyborgs. + .suffix = One-Handed, For Borgs 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 f9960330e0f..ded186d52dd 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 @@ -1,6 +1,6 @@ ent-ClusterBang = clusterbang .desc = Can be used only with flashbangs. Explodes several times. -ent-ClusterBangFull = ClusterBang +ent-ClusterBangFull = clusterbang .desc = Launches three flashbangs after the timer runs out. .suffix = Full ent-ClusterGrenade = clustergrenade diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl index 1728d49c93b..2174175d21e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/throwable/grenades.ftl @@ -8,7 +8,7 @@ ent-GrenadeFlashEffect = { "" } .desc = { "" } ent-SyndieMiniBomb = syndicate minibomb .desc = A syndicate-manufactured explosive used to stow destruction and cause chaos. -ent-SelfDestructSeq = Self Destruct +ent-SelfDestructSeq = self destruct .desc = Go out on your own terms! ent-SupermatterGrenade = supermatter grenade .desc = Grenade that simulates delamination of the supermatter engine, pulling things in a heap and exploding after some time. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/assembly.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/assembly.ftl index 32688b7b8b0..f076dd0bae3 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/assembly.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/assembly.ftl @@ -4,11 +4,11 @@ ent-WindoorAssemblySecure = secure windoor assembly .desc = It opens, it closes, and you can see through it! This one looks tough. ent-WindoorAssemblyClockwork = clockwork windoor assembly .desc = It opens, it closes, and you can see through it! This one looks tough. -ent-WindoorAssemblyPlasma = Plasma windoor assembly +ent-WindoorAssemblyPlasma = plasma windoor assembly .desc = It opens, it closes, and you can see through it! This one looks purp-, no, pink. Wait... -ent-WindoorAssemblySecurePlasma = Secure Plasma windoor assembly +ent-WindoorAssemblySecurePlasma = secure plasma windoor assembly .desc = It opens, it closes, and you can see through it! This one looks strong and pin-, no, purple. Hold on... -ent-WindoorAssemblyUranium = Uranium windoor assembly +ent-WindoorAssemblyUranium = uranium windoor assembly .desc = It opens, it closes, and you can see through it! This one looks sickly green... -ent-WindoorAssemblySecureUranium = Secure Uranium windoor assembly +ent-WindoorAssemblySecureUranium = secure uranium windoor assembly .desc = It opens, it closes, and you can see through it! This one looks strong and radioactive-lime-green! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/windoor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/windoor.ftl index a16f26c8acb..0279e945710 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/windoor.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/windoors/windoor.ftl @@ -1,16 +1,16 @@ -ent-Windoor = Windoor +ent-Windoor = windoor .desc = It's a window and a sliding door. Wow! -ent-WindoorSecure = Secure Windoor +ent-WindoorSecure = secure windoor .desc = It's a sturdy window and a sliding door. Wow! ent-WindoorClockwork = clockwork windoor .desc = It's a sturdy window and a sliding door. Wow! -ent-WindoorPlasma = Plasma Windoor +ent-WindoorPlasma = plasma windoor .desc = It's a pink window *and* a sliding door. Amazing! -ent-WindoorSecurePlasma = Secure Plasma Windoor +ent-WindoorSecurePlasma = secure plasma windoor .desc = It's a sturdy purple window *and* a sliding door. Spectacular! -ent-WindoorUranium = Uranium Windoor +ent-WindoorUranium = uranium windoor .desc = It's a window and a sliding door. Huh? Oh, and it's green! -ent-WindoorSecureUranium = Secure Uranium Windoor +ent-WindoorSecureUranium = secure uranium windoor .desc = It's a sturdy window and a sliding door. It's so neon green, it might even taste like limes! ent-WindoorBarLocked = { ent-Windoor } .suffix = Bar, Locked diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/memorial.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/memorial.ftl index f477b6615b5..36a6f940d5c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/memorial.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/memorial.ftl @@ -1,6 +1,6 @@ ent-Memorial = memorial .desc = Commemorating something. -ent-SS13Memorial = Tomb of the Unknown Employee +ent-SS13Memorial = tomb of the unknown employee .desc = Here rests an unknown employee Unknown by name or rank diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/gates.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/gates.ftl index 9d6c35846ed..5c19a39caeb 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/gates.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/gates.ftl @@ -1,7 +1,23 @@ ent-BaseLogicItem = { ent-BaseItem } .desc = { ent-BaseItem.desc } -ent-LogicGate = logic gate +ent-LogicGateOr = logic gate .desc = A logic gate with two inputs and one output. Technicians can change its mode of operation using a screwdriver. + .suffix = Or +ent-LogicGateAnd = { ent-LogicGateOr } + .suffix = And + .desc = { ent-LogicGateOr.desc } +ent-LogicGateXor = { ent-LogicGateOr } + .suffix = Xor + .desc = { ent-LogicGateOr.desc } +ent-LogicGateNor = { ent-LogicGateOr } + .suffix = Nor + .desc = { ent-LogicGateOr.desc } +ent-LogicGateNand = { ent-LogicGateOr } + .suffix = Nand + .desc = { ent-LogicGateOr.desc } +ent-LogicGateXnor = { ent-LogicGateOr } + .suffix = Xnor + .desc = { ent-LogicGateOr.desc } ent-EdgeDetector = edge detector .desc = Splits rising and falling edges into unique pulses and detects how edgy you are. ent-PowerSensor = power sensor diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/xeno.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/xeno.ftl index 4fda86c7202..02df8743c89 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/xeno.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/specific/xeno.ftl @@ -1,4 +1,4 @@ -ent-XenoWardingTower = Xeno warding tower +ent-XenoWardingTower = xeno warding tower .desc = { "" } ent-CarpStatue = carp statue .desc = A statue of one of the brave carp that got us where we are today. Made with real teeth! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/shelfs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/shelfs.ftl new file mode 100644 index 00000000000..1d91d3b4474 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/shelfs.ftl @@ -0,0 +1,25 @@ +ent-ShelfBase = shelf + .desc = a strange place to place, well, anything really. You feel like you shouldn't be seeing this.' +ent-ShelfBaseReinforced = reinforced shelf + .desc = It looks as strong as reality itself. +ent-ShelfWood = wooden shelf + .desc = A convenient place to place, well, anything really. +ent-ShelfMetal = metal shelf + .desc = A sturdy place to place, well, anything really. +ent-ShelfGlass = glass shelf + .desc = A fragile place to place, well, anything really. +ent-ShelfRWood = sturdy wood shelf + .desc = A safe place to put your favorite bottle of whiskey +ent-ShelfRMetal = sturdy metal shelf + .desc = A strong & shiny place to keep all your vials safe +ent-ShelfRGlass = sturdy glass shelf + .desc = Crystal clear reinforced glass doors to show off all your fancy bottles you definitely didn't sell a co-worker's favorite mothroach for. +ent-ShelfBar = bar shelf + .desc = Made out of the finest synthetic wood for all alcohol holding needs. +ent-ShelfKitchen = cooking shelf + .desc = Holds knifes, spice, and everything nice! +ent-ShelfChemistry = chemical shelf + .desc = Keeps all your chemicals safe and out of the clow- er, public hands! +ent-ShelfChemistryChemistrySecure = { ent-ShelfChemistry } + .suffix = Chemistry, Secure + .desc = { ent-ShelfChemistry.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/metamap.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/metamap.ftl index 3908f2f1652..269eff7a62b 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/metamap.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/metamap.ftl @@ -1,2 +1,2 @@ -ent-PosterMapMetaRight = Meta Station Map +ent-PosterMapMetaRight = Meta Station map .desc = A map of Meta Station. This looks really old. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl index 35c14a88174..f118af446b2 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -142,7 +142,7 @@ ent-SignMorgue = morgue sign .desc = A sign indicating the morgue. ent-SignNews = news sign .desc = A sign indicating where the Reporter works. -ent-SignNosmoking = nosmoking sign +ent-SignNosmoking = no smoking sign .desc = A sign indicating that smoking is not allowed in the vicinity. ent-SignPrison = prison sign .desc = A sign indicating the prison. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl index 03f3313a783..415d025325c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -81,7 +81,7 @@ ent-WallVaultRock = rock vault wall .desc = { ent-WallVaultAlien.desc } ent-WallVaultSandstone = sandstone vault wall .desc = { ent-WallVaultAlien.desc } -ent-WallInvisible = Invisible Wall +ent-WallInvisible = invisible wall .desc = { "" } ent-WallForce = force wall .desc = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/stripping_hidden.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/stripping_hidden.ftl index d0fbad3be3f..aa9f99269c5 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/stripping_hidden.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/virtual/stripping_hidden.ftl @@ -1,2 +1,2 @@ -ent-StrippingHiddenEntity = Hidden Entity +ent-StrippingHiddenEntity = hidden entity .desc = There is something in this pocket. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/chunk.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/chunk.ftl index 0658ff7c8b4..04379c88a05 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/chunk.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/chunk.ftl @@ -1,4 +1,4 @@ -ent-WorldChunk = World Chunk +ent-WorldChunk = world chunk .desc = It's rude to stare. It's also a bit odd you're looking at the abstract representation of the grid of reality. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/asteroids.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/asteroids.ftl index 220c81bb004..0d4df4ba402 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/asteroids.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/asteroids.ftl @@ -1,18 +1,18 @@ -ent-BaseAsteroidDebris = Asteroid Debris +ent-BaseAsteroidDebris = asteroid debris .desc = { ent-BaseDebris.desc } -ent-AsteroidDebrisSmall = Asteroid Debris Small +ent-AsteroidDebrisSmall = asteroid debris small .desc = { ent-BaseAsteroidDebris.desc } -ent-AsteroidDebrisMedium = Asteroid Debris Medium +ent-AsteroidDebrisMedium = asteroid debris medium .desc = { ent-BaseAsteroidDebris.desc } -ent-AsteroidDebrisLarge = Asteroid Debris Large +ent-AsteroidDebrisLarge = asteroid debris large .desc = { ent-BaseAsteroidDebris.desc } -ent-AsteroidDebrisLarger = Asteroid Debris Larger +ent-AsteroidDebrisLarger = asteroid debris larger .desc = { ent-BaseAsteroidDebris.desc } -ent-AsteroidSalvageSmall = Salvage Asteroid Small +ent-AsteroidSalvageSmall = salvage asteroid small .desc = { ent-BaseAsteroidDebris.desc } -ent-AsteroidSalvageMedium = Salvage Asteroid Medium +ent-AsteroidSalvageMedium = salvage asteroid medium .desc = { ent-BaseAsteroidDebris.desc } -ent-AsteroidSalvageLarge = Salvage Asteroid Large +ent-AsteroidSalvageLarge = salvage asteroid large .desc = { ent-BaseAsteroidDebris.desc } -ent-AsteroidSalvageHuge = Salvage Asteroid Huge +ent-AsteroidSalvageHuge = salvage asteroid huge .desc = { ent-BaseAsteroidDebris.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/wrecks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/wrecks.ftl index 3350a6cf87b..3a03e73b5fa 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/wrecks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/world/debris/wrecks.ftl @@ -1,8 +1,8 @@ -ent-BaseScrapDebris = Scrap Debris +ent-BaseScrapDebris = scrap debris .desc = { ent-BaseDebris.desc } -ent-ScrapDebrisSmall = Scrap Debris Small +ent-ScrapDebrisSmall = scrap debris small .desc = { ent-BaseScrapDebris.desc } -ent-ScrapDebrisMedium = Scrap Debris Medium +ent-ScrapDebrisMedium = scrap debris medium .desc = { ent-BaseScrapDebris.desc } -ent-ScrapDebrisLarge = Scrap Debris Large +ent-ScrapDebrisLarge = scrap debris large .desc = { ent-BaseScrapDebris.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/magic/forcewall_spells.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/magic/forcewall_spells.ftl index 64e7a225011..c92d650f225 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/magic/forcewall_spells.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/magic/forcewall_spells.ftl @@ -1,2 +1,2 @@ -ent-ActionForceWall = Forcewall +ent-ActionForceWall = forcewall .desc = Creates a magical barrier. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/procedural/salvage_mods.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/procedural/salvage_mods.ftl index 676094d0e52..405db525133 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/procedural/salvage_mods.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/procedural/salvage_mods.ftl @@ -1,2 +1,2 @@ -ent-SalvageShuttleMarker = Salvage shuttle marker +ent-SalvageShuttleMarker = salvage shuttle marker .desc = { ent-FTLPoint.desc } diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 8edbde9bdc9..47eb6716193 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -125,7 +125,10 @@ uplink-reinforcement-radio-ancestor-name = Genetic Ancestor Reinforcement Telepo uplink-reinforcement-radio-ancestor-desc = Call in a trained ancestor of your choosing to assist you. Comes with a single syndicate cigarette. uplink-reinforcement-radio-name = Reinforcement Teleporter -uplink-reinforcement-radio-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. They have a pistol with no reserve ammo, and a knife. That's it. +uplink-reinforcement-radio-traitor-desc = Radio in a reinforcement agent of extremely questionable quality. No off button, buy this if you're ready to party. Call in a medic or spy or thief to help you out. Good luck. + +uplink-reinforcement-radio-nukeops-name = Nuclear Operative Teleporter +uplink-reinforcement-radio-nukeops-desc = Radio in a nuclear operative of extremely questionable quality. No off button, buy this if you're ready to party. They have basic nuclear operative gear. uplink-reinforcement-radio-cyborg-assault-name = Syndicate Assault Cyborg Teleporter uplink-reinforcement-radio-cyborg-assault-desc = A lean, mean killing machine with access to an Energy Sword, LMG, Cryptographic Sequencer, and a Pinpointer. @@ -242,7 +245,7 @@ uplink-super-surplus-bundle-desc = Contains 125 telecrystals worth of completely # Tools uplink-toolbox-name = Toolbox -uplink-toolbox-desc = A full compliment of tools for the mechanically inclined traitor. Includes a pair of insulated combat gloves, syndicate gas mask and a utility belt. +uplink-toolbox-desc = A full compliment of tools for the mechanically inclined traitor. Includes a pair of insulated combat gloves and a syndicate gas mask as well. uplink-syndicate-jaws-of-life-name = Jaws Of Life uplink-syndicate-jaws-of-life-desc = A combined prying and cutting tool. Useful for entering the station or its departments. diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index e3aed1c8b24..d9f09cc68aa 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -5,7 +5,7 @@ trait-poor-vision-name = Short-sighted trait-poor-vision-desc = Your eyes are not what they once were, you have difficulty seeing things far away without corrective glasses. trait-narcolepsy-name = Narcolepsy -trait-narcolepsy-desc = You fall asleep randomly +trait-narcolepsy-desc = You fall asleep randomly. trait-pacifist-name = Pacifist trait-pacifist-desc = You cannot attack or hurt any living beings. @@ -13,13 +13,13 @@ trait-pacifist-desc = You cannot attack or hurt any living beings. permanent-blindness-trait-examined = [color=lightblue]{CAPITALIZE(POSS-ADJ($target))} eyes are glassy and unfocused. It doesn't seem like {SUBJECT($target)} can see you well, if at all.[/color] trait-lightweight-name = Lightweight drunk -trait-lightweight-desc = Alcohol has a stronger effect on you +trait-lightweight-desc = Alcohol has a stronger effect on you. trait-muted-name = Muted -trait-muted-desc = You can't speak +trait-muted-desc = You can't speak. trait-paracusia-name = Paracusia -trait-paracusia-desc = You hear sounds that aren't really there +trait-paracusia-desc = You hear sounds that aren't really there. trait-unrevivable-name = Unrevivable trait-unrevivable-desc = You are unable to be revived by defibrillators. @@ -31,10 +31,10 @@ trait-accentless-name = Accentless trait-accentless-desc = You don't have the accent that your species would usually have trait-frontal-lisp-name = Frontal lisp -trait-frontal-lisp-desc = You thpeak with a lithp +trait-frontal-lisp-desc = You thpeak with a lithp. -trait-socialanxiety-name = Social anxiety -trait-socialanxiety-desc = You are anxious when you speak and stutter. +trait-socialanxiety-name = Stutter +trait-socialanxiety-desc = You speak with a stutter. trait-southern-name = Southern drawl trait-southern-desc = You have a different way of speakin'. @@ -49,4 +49,4 @@ trait-cowboy-name = Cowboy accent trait-cowboy-desc = You speak with a distinct cowboy accent! trait-italian-name = Italian accent -trait-italian-desc = Mamma mia! You seem to have lived in space italy! \ No newline at end of file +trait-italian-desc = Mamma mia! You seem to have lived in space italy! diff --git a/Resources/Locale/en-US/weapons/ranged/gun.ftl b/Resources/Locale/en-US/weapons/ranged/gun.ftl index fe60f3eed1d..31ac7d5bf23 100644 --- a/Resources/Locale/en-US/weapons/ranged/gun.ftl +++ b/Resources/Locale/en-US/weapons/ranged/gun.ftl @@ -6,6 +6,7 @@ gun-selected-mode = Selected {$mode} gun-disabled = You can't use guns! gun-clumsy = The gun blows up in your face! gun-set-fire-mode = Set to {$mode} +gun-magazine-whitelist-fail = That won't fit into the gun! # SelectiveFire gun-SemiAuto = semi-auto diff --git a/Resources/Locale/en-US/wieldable/wieldable-component.ftl b/Resources/Locale/en-US/wieldable/wieldable-component.ftl index 84b58224a77..585d6110164 100644 --- a/Resources/Locale/en-US/wieldable/wieldable-component.ftl +++ b/Resources/Locale/en-US/wieldable/wieldable-component.ftl @@ -18,3 +18,5 @@ wieldable-component-not-in-hands = { CAPITALIZE(THE($item)) } isn't in your hand wieldable-component-requires = { CAPITALIZE(THE($item))} must be wielded! gunwieldbonus-component-examine = This weapon has improved accuracy when wielded. + +gunrequireswield-component-examine = This weapon can only be fired when wielded. diff --git a/Resources/Locale/ru-RU/ADT/Chat/emotes.ftl b/Resources/Locale/ru-RU/ADT/Chat/emotes.ftl new file mode 100644 index 00000000000..be548184067 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Chat/emotes.ftl @@ -0,0 +1,4 @@ +# IPC +chat-emote-name-synth-yes = утвердительно пискнуть +chat-emote-name-synth-no = отрицательно пискнуть +chat-emote-name-sigh-buzz = раздражённо жужжать diff --git a/Resources/Locale/ru-RU/ADT/Clothing/OuterClothing/coats.ftl b/Resources/Locale/ru-RU/ADT/Clothing/OuterClothing/coats.ftl deleted file mode 100644 index 61e7c94938b..00000000000 --- a/Resources/Locale/ru-RU/ADT/Clothing/OuterClothing/coats.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-ADTClothingOuterCoatLabPathologist = халат патологоанатома - .desc = { ent-ClothingOuterCoatLab.desc } -ent-ADTClothingOuterApronPathologist = фартук патологоанатома - .desc = Фартук для работы с трупами. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Clothing/Uniform/jumpsuits.ftl b/Resources/Locale/ru-RU/ADT/Clothing/Uniform/jumpsuits.ftl deleted file mode 100644 index 973fee8314a..00000000000 --- a/Resources/Locale/ru-RU/ADT/Clothing/Uniform/jumpsuits.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-ADTClothingUniformPathologistSuit = костюм патологоанатома - .desc = Лёгкий комбинезон для работника морга. -ent-ADTClothingUniformPathologistSkirt = юбка-костюм патологоанатома - .desc = Лёгкая юбка-комбинезон для работницы морга. -ent-ADTClothingUniformPathologistSuitAlt = чёрный костюм патологоанатома - .desc = Лёгкий комбинезон для работника морга. Более угрюмая версия. -ent-ADTClothingUniformPathologistSkirtAlt = чёрная юбка-костюм патологоанатома - .desc = Лёгкая юбка-комбинезон для работницы морга. Более угрюмая версия. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Entities/Objects/Misc/identification_cards.ftl b/Resources/Locale/ru-RU/ADT/Entities/Objects/Misc/identification_cards.ftl deleted file mode 100644 index 9c149ba9471..00000000000 --- a/Resources/Locale/ru-RU/ADT/Entities/Objects/Misc/identification_cards.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ADTPathologistIDCard = ID карта патологоанатома - .desc = { ent-IDCardStandard.desc } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Interaction/interaction-popup-component-ipc.ftl b/Resources/Locale/ru-RU/ADT/Interaction/interaction-popup-component-ipc.ftl new file mode 100644 index 00000000000..48986fea2b8 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Interaction/interaction-popup-component-ipc.ftl @@ -0,0 +1 @@ +petting-success-ipc = Вы гладите { $target } по его металлической голове. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/departments.ftl b/Resources/Locale/ru-RU/ADT/Job/departments.ftl similarity index 100% rename from Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/departments.ftl rename to Resources/Locale/ru-RU/ADT/Job/departments.ftl diff --git a/Resources/Locale/ru-RU/ADT/Job/job-description.ftl b/Resources/Locale/ru-RU/ADT/Job/job-description.ftl index 7b705bba266..1d579e08d95 100644 --- a/Resources/Locale/ru-RU/ADT/Job/job-description.ftl +++ b/Resources/Locale/ru-RU/ADT/Job/job-description.ftl @@ -1 +1,5 @@ -job-description-ADTPathologist = Осматривайте тела мёртвого экипажа, выявляйте причины их смерти и не забывайте клонировать трупы. \ No newline at end of file +job-description-ADTPathologist = Осматривайте тела мёртвого экипажа, выявляйте причины их смерти и не забывайте клонировать трупы. + +job-description-roboticist = Собирайте боргов, мехов, обслуживайте синтетиков и поражайте (либо пугайте) экипаж своими новейшими разработками. + +job-description-magistrat = Самый грозный и богатый на станции. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Job/job-names.ftl b/Resources/Locale/ru-RU/ADT/Job/job-names.ftl index d829ac1f4cd..abc0bf87119 100644 --- a/Resources/Locale/ru-RU/ADT/Job/job-names.ftl +++ b/Resources/Locale/ru-RU/ADT/Job/job-names.ftl @@ -1,2 +1,8 @@ job-name-ADTPathologist = Патологоанатом -JobADTPathologist = Патологоанатом \ No newline at end of file +JobADTPathologist = Патологоанатом + +job-name-roboticist = робототехник +JobRoboticist = робототехник + +job-name-magistrat = Магистрат +JobMagistrat = Магистрат \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Languages/languages.ftl b/Resources/Locale/ru-RU/ADT/Languages/languages.ftl index f1cdbe6c926..2939f765e54 100644 --- a/Resources/Locale/ru-RU/ADT/Languages/languages.ftl +++ b/Resources/Locale/ru-RU/ADT/Languages/languages.ftl @@ -1,17 +1,24 @@ language-Universal-name = Универсальный -language-Universal-description = Что ты такое? +language-Universal-description = ЧТО ТЫ ТАКОЕ. + language-GalacticCommon-name = Общегалактический language-GalacticCommon-description = Обычно используется для межвидового общения и официальных целей. + language-Bubblish-name = Пузырчатый language-Bubblish-description = Язык слаймолюдов. Это смесь булькающих звуков и хлюпов. Человеку очень трудно говорить без механической помощи. + language-RootSpeak-name = Песнь корней language-RootSpeak-description = Странный шелестящий язык, на котором говорят дионы. + language-CodeSpeak-name = Кодовый язык language-CodeSpeak-description = Оперативники синдиката могут использовать серию кодовых слов для передачи сложной информации, в то время как для любого слушателя они звучат как случайные понятия и напитки. + language-Nekomimetic-name = Некоязык language-Nekomimetic-description = Для стороннего наблюдателя этот язык представляет собой непонятную смесь ломаного японского. Для фелинидов он каким-то образом понятен. + language-Draconic-name = Синта'унати language-Draconic-description = Общий язык унатхов с преобладающими шипящими звуками. + language-Canilunzt-name = Канилунц language-Canilunzt-description = Гортанный язык, на котором говорят и используют обитатели системы Ваззенда, состоящий из рычания, лая, тявканья и интенсивного использования движений ушей и хвоста, вулпканины говорят на этом языке с легкостью. @@ -26,6 +33,7 @@ language-Fire-description = Звуки огня, что каким-то обра language-SolCommon-name = Солнечный язык language-SolCommon-description = Общий язык, на котором говорят обитатели солнечной системы. + language-Cat-name = Кошачий language-Cat-description = Примитивные звуки, издаваемые кошками. Каким-то образом они передают смысл! @@ -84,10 +92,10 @@ language-Urs-description = Басистый и рычащий язык, на к language-Arkane-name = Каукиттен language-Arkane-description = Протяжный, чем-то напоминающий Солнечный язык, на котором говорят арканы. -language-Shadowkin-name = Миар -language-Shadowkin-description = Загадочный язык, на котором говорят сумеречники. +language-Shadekin-name = Миар +language-Shadekin-description = Загадочный язык, на котором говорят сумеречники. -language-Dwarf-name = Шахтёрский +language-Dwarf-name = Шахт language-Dwarf-description = Rock and stone! language-Dev-name = Разработческий @@ -127,7 +135,7 @@ language-Moffic = Паучий language-BorgTalk = Двоичный language-Urs = Рыкрур language-Arkane = Каукиттен -language-Shadowkin = Миар +language-Shadekin = Миар language-Dev = Разраб language-Dwarf = Шахт language-CintaTaj = Синта’тайр diff --git a/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl index 3829b95bf22..79214fbfd1b 100644 --- a/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl +++ b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl @@ -1,8 +1,26 @@ +# Errors + +# Miscellaneous + +# Command ent-MagistratNeck = Галстуки ent-MagistratJumpsuit = Костюмы +# Civilian + +# Cargo + +# Engineering + +# Science +loadout-group-roboticist-jumpsuit = Робототехник, комбинезон +loadout-group-roboticist-outerclothing = Робототехник, верхняя одежда +loadout-group-roboticist-gloves = Робототехник, перчатки +# Security + +# Medical loadout-group-patholog-head = Патологоанатом, голова loadout-group-patholog-jumpsuit = Патологоанатом, комбинезон loadout-group-patholog-outerclothing = Патологоанатом, верхняя одежда loadout-group-patholog-shoes = Патологоанатом, обувь loadout-group-patholog-backpack = Патологоанатом, рюкзак - +# Wildcards diff --git a/Resources/Locale/ru-RU/ADT/headset-component.ftl b/Resources/Locale/ru-RU/ADT/headset/headset-component.ftl similarity index 100% rename from Resources/Locale/ru-RU/ADT/headset-component.ftl rename to Resources/Locale/ru-RU/ADT/headset/headset-component.ftl diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Actions/language-menu.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Actions/language-menu.ftl index 56833276de6..f6dd08b8c28 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Actions/language-menu.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Actions/language-menu.ftl @@ -1,6 +1,10 @@ language-menu-window-title = Выбор языка language-menu-current-language = Выбранный язык: {$language} language-menu-description-header = Описание -choose-lang-button = Выбрать -language-menu-action = Меню языков -language-menu-action-desc = Открыть меню выбора языка. +language-choose-button = Выбрать +language-choose-button-chosen = Выбрано +language-choose-button-cannot = Только понимание +language-choose-button-tooltip-translator = Вы используете переводчик для пользования данным языком. +language-choose-button-tooltip-known = Вы полностью владеете данным языком. + +game-hud-open-languages-menu-button-tooltip = Открыть меню выбора языка diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/ipc.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/ipc.ftl new file mode 100644 index 00000000000..555bd803654 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/ipc.ftl @@ -0,0 +1,9 @@ +ent-OrganIPCBrain = позитронный мозг КПБ + .desc = Источник такого же количества противоречий и споров, как и существование души. +ent-OrganIPCEyes = модуль зрения КПБ + .desc = 11010000 10101111 100000 11010001 10000010 11010000 10110101 11010000 10110001 11010001 10001111 100000 11010000 10110010 11010000 10111000 11010000 10110110 11010001 10000011 100001 +ent-OrganIPCTongue = модуль речи КПБ + .desc = Модуль КПБ, используемый для их общения. +ent-OrganIPCPump = микронасос КПБ + .desc = Микронасос КПБ, используемый для циркуляции охлаждающей жидкости. +ent-OrganIPCEarts = звуковые рецепторы КПБ diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/ipc.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/ipc.ftl new file mode 100644 index 00000000000..a117a4f7697 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/ipc.ftl @@ -0,0 +1,10 @@ +ent-HeadIPC = голова КПБ +ent-TorsoIPC = тело КПБ +ent-LeftArmIPC = левая рука КПБ +ent-RightArmIPC = правая рука КПБ +ent-LeftHandIPC = левая кисть КПБ +ent-RightHandIPC = правая кисть КПБ +ent-LeftLegIPC = левая нога КПБ +ent-RightLegIPC = правая нога КПБ +ent-LeftFootIPC = левая ступня КПБ +ent-RightFootIPC = правая ступня КПБ diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/moth.ftl new file mode 100644 index 00000000000..a7c4b197eee --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/moth.ftl @@ -0,0 +1,22 @@ +ent-PartMoth = часть тела нианы + .desc = { ent-BasePart.desc } +ent-TorsoMoth = торс нианы + .desc = { ent-PartMoth.desc } +ent-HeadMoth = голова нианы + .desc = { ent-PartMoth.desc } +ent-LeftArmMoth = левая рука нианы + .desc = { ent-PartMoth.desc } +ent-RightArmMoth = правая рука нианы + .desc = { ent-PartMoth.desc } +ent-LeftHandMoth = левая кисть нианы + .desc = { ent-PartMoth.desc } +ent-RightHandMoth = правая кисть нианы + .desc = { ent-PartMoth.desc } +ent-LeftLegMoth = левая нога нианы + .desc = { ent-PartMoth.desc } +ent-RightLegMoth = правая нога нианы + .desc = { ent-PartMoth.desc } +ent-LeftFootMoth = левая стопа нианы + .desc = { ent-PartMoth.desc } +ent-RightFootMoth = правая стопа нианы + .desc = { ent-PartMoth.desc } diff --git a/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/backpack.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Catalog/Fills/Backpacks/backpack.ftl similarity index 100% rename from Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/backpack.ftl rename to Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Catalog/Fills/Backpacks/backpack.ftl diff --git a/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/duffelbag.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Catalog/Fills/Backpacks/duffelbag.ftl similarity index 100% rename from Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/duffelbag.ftl rename to Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Catalog/Fills/Backpacks/duffelbag.ftl diff --git a/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/satchel.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Catalog/Fills/Backpacks/satchel.ftl similarity index 100% rename from Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/satchel.ftl rename to Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Catalog/Fills/Backpacks/satchel.ftl diff --git a/Resources/Locale/ru-RU/ADT/Clothing/Back/backpack.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/backpack.ftl similarity index 100% rename from Resources/Locale/ru-RU/ADT/Clothing/Back/backpack.ftl rename to Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/backpack.ftl diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Mask/mask.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Mask/mask.ftl new file mode 100644 index 00000000000..8931f99ab5d --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Mask/mask.ftl @@ -0,0 +1,13 @@ +### TODO: Для переносимых масок оставил, нужно будет доделать при переносе +###ent-ADTClothingMaskGasLapkeeSet = белый противогаз СБ +### .desc = Не стандартный, но тем не менее одобренный ЦентКоммом очень плотно прилегающий к лицу противогаз с повышенной защитой от жары, взамен не защищающий от ударов тупыми предметами по лицу. +### .suffix = { "Именное, Lapkee" } +###ent-ADTClothingMaskBorodaDedMoroz = Борода и усы Дед Мороза +### .desc = Борода Деда Мороза с усами люкс качества, позволит создать вам полный образ Деда Мороза или Санта Клауса. Дети не узнают папу, соседа, или актера. +### .suffix = { "Новый Год" } +### +###ent-ADTChronosMask = визор "Жертва Хроноса" +### .desc = Продвинутый визор, сделанный на заказ неким учёным. На боковой стороне визора видна роспись: Х.К. +### +ent-ADTClothingMaskGasCE = противогаз старшего инженера + .desc = Это элитный противогаз Старшего Инженера, которому может позавидовать даже Центральное Командование. Защищает от сварки. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/coats.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/coats.ftl new file mode 100644 index 00000000000..2c0e44ef84f --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/coats.ftl @@ -0,0 +1,6 @@ +ent-ADTClothingOuterCoatLabPathologist = халат патологоанатома + .desc = { ent-ClothingOuterCoatLab.desc } +ent-ADTClothingOuterApronPathologist = фартук патологоанатома + .desc = Фартук для работы с трупами. +ent-ADTClothingKadet = шинель для Кадетов СБ + .desc = шинель, сшитая для новобранцев службы безопасности. Она очень похожа на шинели младших чинов РИА \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/furcoat.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/furcoat.ftl new file mode 100644 index 00000000000..c0421da3d87 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/furcoat.ftl @@ -0,0 +1,2 @@ +ent-ADTClothingOuterCoatUrs = костюм Урса + .desc = Очень тёплый пуховик, сделанный точно не из Урса.. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl index c17f23f08de..10e47136346 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl @@ -1,2 +1,10 @@ ent-ADTClothingUniformsJumpsuitWhiteDiplomatSuitL = Белый костюм дипломата .desc = Специально сделанный белый костюм дипломата NanoTrasen. +ent-ADTClothingUniformPathologistSuit = костюм патологоанатома + .desc = Лёгкий комбинезон для работника морга. +ent-ADTClothingUniformPathologistSkirt = юбка-костюм патологоанатома + .desc = Лёгкая юбка-комбинезон для работницы морга. +ent-ADTClothingUniformPathologistSuitAlt = чёрный костюм патологоанатома + .desc = Лёгкий комбинезон для работника морга. Более угрюмая версия. +ent-ADTClothingUniformPathologistSkirtAlt = чёрная юбка-костюм патологоанатома + .desc = Лёгкая юбка-комбинезон для работницы морга. Более угрюмая версия. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Markers/Spawners/jobs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Markers/Spawners/jobs.ftl index 69090db7208..331c8aebb87 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Markers/Spawners/jobs.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Markers/Spawners/jobs.ftl @@ -1 +1,5 @@ ent-SpawnPointMagistrat = Точка спавна магистрата + .desc = { ent-SpawnPointJobBase.desc } + +ent-ADTSpawnPointRoboticist = робототехник + .desc = { ent-SpawnPointJobBase.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/Ursus.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/Ursus.ftl new file mode 100644 index 00000000000..fe7533af34c --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/Ursus.ftl @@ -0,0 +1,69 @@ +marking-ADTUrsusNeat = Аккуратная +marking-ADTUrsusWarrior = Воин +marking-ADTUrsusWarrior2 = Воин 2 +marking-ADTUrsusSurfaceRiver = Гладь реки +marking-ADTUrsusGorgon = Горгона +marking-ADTUrsusBreadwinner = Добытчик +marking-ADTUrsusWhip = Кнут +marking-ADTUrsusWhip2 = Кнут 2 +marking-ADTUrsusShorthedgehog = Короткий ежик +marking-ADTUrsusShorthedgehog2 = Короткий ежик 2 +marking-ADTUrsusValkyriesscythe = Коса валькирии +marking-ADTUrsusValkyriesscythe2 = Коса валькирии 2 +marking-ADTUrsusWarriorsscythe = Коса воина +marking-ADTUrsusBraidsontheside = Косы на бок +marking-ADTUrsusBraidsontheside2 = Косы на бок 2 +marking-ADTUrsusForeststyle = Лесной стиль +marking-ADTUrsusForeststyle2 = Лесной стиль 2 +marking-ADTUrsusSoftwaves = Мягкие волны +marking-ADTUrsusSoftwaves2 = Мягкие волны 2 +marking-ADTUrsusBraidedcone = Плетёная шишка +marking-ADTUrsusBraidedside = Плетёный бок +marking-ADTUrsusBraidedside2 = Плетёный бок 2 +marking-ADTUrsusCollector = Собиратель +marking-ADTUrsusFallencone = Упавшая шишка +marking-ADTUrsusTailbigdipper = Хвост большой медведицы +marking-ADTUrsusCone = Шишка +marking-ADTUrsusYoungboy = Юный молодец +marking-ADTUrsusfluffiness = Покров 1 +marking-ADTUrsusfluffiness2 = Покров 2 +marking-ADTUrsusfluffiness3 = Покров 3 +marking-ADTUrsuspanda = Панда +marking-ADTUrsusspace_bear = Космический медведь +marking-ADTUrsustattoo_leader = Лидер +marking-ADTUrsusbig_heart = Большое сердце +marking-ADTUrsussoft_belly = Мягкое пузико 1 +marking-ADTUrsussoft_belly2 = Мягкое пузико 2 +marking-ADTUrsusgrizzly_necklace = Ожерелье гризли 1 +marking-ADTUrsusgrizzly_necklace2 = Ожерелье гризли 2 +marking-ADTUrsusgrizzly_necklace3 = Ожерелье гризли 3 +marking-ADTUrsusMuzzle = Морда 1 +marking-ADTUrsusMuzzle2 = Морда 2 +marking-ADTUrsusnose = Нос +marking-ADTUrsusears = Уши 1 +marking-ADTUrsusears2 = Уши 2 +marking-ADTUrsusthird_eye = Третий глаз +marking-ADTUrsusarrow = Стрела +marking-ADTUrsusembarrassment = Стестняшки +marking-ADTUrsusspots = Пятна +marking-ADTUrsusspots_left = Пятно слева +marking-ADTUrsusspots_right = Пятно справа +marking-ADTUrsusrigth_eye = Правый глаз +marking-ADTUrsusleft_eye = Левый глаз +marking-ADTUrsusstar = Звезда +marking-ADTUrsuskiss = Кисс +marking-ADTUrsuseyeliner = Подводка +marking-ADTUrsushand_left = Левая рука +marking-ADTUrsusgradienthand_left = Левая рука градиент 1 +marking-ADTUrsusgradienthand_left2 = Левая рука градиент 2 +marking-ADTUrsushand_right = Правая рука +marking-ADTUrsusgradienthand_right = Правая рука градиент 1 +marking-ADTUrsusgradienthand_right2 = Правая рука градиент 2 +marking-ADTUrsusfoot_left = Левая ступня +marking-ADTUrsusgradientfoot_left = Левая ступня градиент 1 +marking-ADTUrsusgradientfoot_left2 = Левая ступня градиент 2 +marking-ADTUrsusfoot_right = Правая ступня +marking-ADTUrsusgradientfoot_right = Правая ступня градиент 1 +marking-ADTUrsusgradientfoot_right2 = Правая ступня градиент 2 +marking-ADTUrsuscardigan = Кардиган1(Спина) +marking-ADTUrsuscardigan2 = Кардиган2(Спина) diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/ipc.yml b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/ipc.yml new file mode 100644 index 00000000000..02c29e712d4 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/ipc.yml @@ -0,0 +1,50 @@ +marking-ScreenStatic = Белый шум +marking-ScreenBlue = Синий +marking-ScreenBreakout = Понг +marking-ScreenEight = Восьмёрка +marking-ScreenGoggles = Защитные очки +marking-ScreenExclaim = Восклицательный знак +marking-ScreenHeart = Сердце +marking-ScreenMonoeye = Циклом +marking-ScreenNature = Натуралист +marking-ScreenOrange = Оранжевый +marking-ScreenPink = Розовый +marking-ScreenQuestion = Вопрос +marking-ScreenShower = Душ +marking-ScreenYellow = Жёлтый +marking-ScreenScroll = Прокрутка +marking-ScreenConsole = Консоль +marking-ScreenRgb = RGB +marking-ScreenGlider = Параплан +marking-ScreenRainbowhoriz = Горизонтальная радуга +marking-ScreenBsod = BSOD +marking-ScreenRedtext = Красный текст +marking-ScreenSinewave = Синусоида +marking-ScreenSquarewave = Квадратная волна +marking-ScreenEcgwave = Кардиограмма +marking-ScreenEyes = Глаза +marking-ScreenEyestall = Высокие глаза +marking-ScreenEyesangry = Злые глаза +marking-ScreenLoading = Загрузка... +marking-ScreenWindowsxp = Многолетний опыт +marking-ScreenTetris = Тетрис +marking-ScreenTv = ТВ +marking-ScreenTextdrop = Текст +marking-ScreenStars = Звёзды +marking-ScreenRainbowdiag = Диоганальная радуга +marking-ScreenBlank = Мёртвый пиксель +marking-ScreenSmile = Улыбка +marking-ScreenFrown = Грусть +marking-ScreenRing = Кольцо +marking-ScreenL = L + +marking-RobotAntennaTv = ТВ +marking-RobotAntennaTesla = Тесла +marking-RobotAntennaLightb = Мигалка (альт.) +marking-RobotAntennaLight = Мигалка +marking-RobotAntennaCyberhead = Кибер +marking-RobotAntennaSidelights = Боковые мигалки +marking-RobotAntennaAntlers = Рога +marking-RobotAntennaDroneeyes = Глаза дрона +marking-RobotAntennaCrowned = Корона +marking-RobotAntennaTowers = Башни diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Moth/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Moth/moth.ftl new file mode 100644 index 00000000000..c5812f4a955 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Moth/moth.ftl @@ -0,0 +1,118 @@ +marking-MothAntennasDefault = Антенны (Обычные) +marking-MothAntennasCharred = Антенны (Обугленные) +marking-MothAntennasDbushy = Антенны (Кустистые) +marking-MothAntennasDcurvy = Антенны (Закрученные) +marking-MothAntennasDfan = Антенны (Вентилятор) +marking-MothAntennasDpointy = Антенны (Заостренные) +marking-MothAntennasFeathery = Антенны (Перистые) +marking-MothAntennasFirewatch = Антенны (Файрвотч) +marking-MothAntennasGray = Антенны (Серые) +marking-MothAntennasJungle = Антенны (Джунгли) +marking-MothAntennasMaple = Антенны (Клён) +marking-MothAntennasMoffra = Антенны (Мотра) +marking-MothAntennasOakworm = Антенны (Дубовый червь) +marking-MothAntennasPlasmafire = Антенны (Пожар плазмы) +marking-MothAntennasRoyal = Антенны (Королевские) +marking-MothAntennasStriped = Антенны (Полосатые) +marking-MothAntennasWhitefly = Антенны (Белая муха) +marking-MothAntennasWitchwing = Антенны (Ведьмино крыло) +marking-MothWingsDefault = Крылья (Обычные) +marking-MothWingsCharred = Крылья (Обугленные) +marking-MothWingsDbushy = Крылья (Тёмные и Кустистые) +marking-MothWingsDeathhead = Крылья (Рука Смерти) +marking-MothWingsFan = Крылья (Вентилятор) +marking-MothWingsDfan = Крылья (Тёмные и Вентилятор) +marking-MothWingsFeathery = Крылья (Перистые) +marking-MothWingsFirewatch = Крылья (Файрвотч) +marking-MothWingsGothic = Крылья (Готика) +marking-MothWingsJungle = Крылья (Джунгли) +marking-MothWingsLadybug = Крылья (Божья коровка) +marking-MothWingsMaple = Крылья (Клён) +marking-MothWingsMoffra = Крылья (Мотра) +marking-MothWingsOakworm = Крылья (Дубовый червь) +marking-MothWingsPlasmafire = Крылья (Пожар плазмы) +marking-MothWingsPointy = Крылья (Заостренные) +marking-MothWingsRoyal = Крылья (Королевские) +marking-MothWingsStellar = Крылья (Звёздные) +marking-MothWingsStriped = Крылья (Полосатые) +marking-MothWingsSwirly = Крылья (Завихрение) +marking-MothWingsWhitefly = Крылья (Белая муха) +marking-MothWingsWitchwing = Крылья (Ведьмино крыло) +marking-MothChestCharred = Ниан, Грудь (Обугленные) +marking-MothHeadCharred = Ниан, Голова (Обугленные) +marking-MothLLegCharred = Ниан, Левая нога (Обугленные) +marking-MothRLegCharred = Ниан, Правая нога (Обугленные) +marking-MothLArmCharred = Ниан, Левая рука (Обугленные) +marking-MothRArmCharred = Ниан, Правая рука (Обугленные) +marking-MothChestDeathhead = Ниан, Грудь (Рука Смерти) +marking-MothHeadDeathhead = Ниан, Голова (Рука Смерти) +marking-MothLLegDeathhead = Ниан, Левая нога (Рука Смерти) +marking-MothRLegDeathhead = Ниан, Правая нога (Рука Смерти) +marking-MothLArmDeathhead = Ниан, Левая рука (Рука Смерти) +marking-MothRArmDeathhead = Ниан, Правая рука (Рука Смерти) +marking-MothChestFan = Ниан, Грудь (Вентилятор) +marking-MothHeadFan = Ниан, Голова (Вентилятор) +marking-MothLLegFan = Ниан, Левая нога (Вентилятор) +marking-MothRLegFan = Ниан, Правая нога (Вентилятор) +marking-MothLArmFan = Ниан, Левая рука (Вентилятор) +marking-MothRArmFan = Ниан, Правая рука (Вентилятор) +marking-MothChestFirewatch = Ниан, Грудь (Файрвотч) +marking-MothHeadFirewatch = Ниан, Голова (Файрвотч) +marking-MothLLegFirewatch = Ниан, Левая нога (Файрвотч) +marking-MothRLegFirewatch = Ниан, Правая нога (Файрвотч) +marking-MothLArmFirewatch = Ниан, Левая рука (Файрвотч) +marking-MothRArmFirewatch = Ниан, Правая рука (Файрвотч) +marking-MothChestGothic = Ниан, Грудь (Готика) +marking-MothHeadGothic = Ниан, Голова (Готика) +marking-MothLLegGothic = Ниан, Левая нога (Готика) +marking-MothRLegGothic = Ниан, Правая нога (Готика) +marking-MothLArmGothic = Ниан, Левая рука (Готика) +marking-MothRArmGothic = Ниан, Правая рука (Готика) +marking-MothChestJungle = Ниан, Грудь (Джунгли) +marking-MothHeadJungle = Ниан, Голова (Джунгли) +marking-MothLLegJungle = Ниан, Левая нога (Джунгли) +marking-MothRLegJungle = Ниан, Правая нога (Джунгли) +marking-MothLArmJungle = Ниан, Левая рука (Джунгли) +marking-MothRArmJungle = Ниан, Правая рука (Джунгли) +marking-MothChestMoonfly = Ниан, Грудь (Мунфлай) +marking-MothHeadMoonfly = Ниан, Голова (Мунфлай) +marking-MothLLegMoonfly = Ниан, Левая нога (Мунфлай) +marking-MothRLegMoonfly = Ниан, Правая нога (Мунфлай) +marking-MothLArmMoonfly = Ниан, Левая рука (Мунфлай) +marking-MothRArmMoonfly = Ниан, Правая рука (Мунфлай) +marking-MothChestOakworm = Ниан, Грудь (Дубовый червь) +marking-MothHeadOakworm = Ниан, Голова (Дубовый червь) +marking-MothLLegOakworm = Ниан, Левая нога (Дубовый червь) +marking-MothRLegOakworm = Ниан, Правая нога (Дубовый червь) +marking-MothLArmOakworm = Ниан, Левая рука (Дубовый червь) +marking-MothRArmOakworm = Ниан, Правая рука (Дубовый червь) +marking-MothChestPointy = Ниан, Грудь (Заостренные) +marking-MothHeadPointy = Ниан, Голова (Заостренные) +marking-MothLLegPointy = Ниан, Левая нога (Заостренные) +marking-MothRLegPointy = Ниан, Правая нога (Заостренные) +marking-MothLArmPointy = Ниан, Левая рука (Заостренные) +marking-MothRArmPointy = Ниан, Правая рука (Заостренные) +marking-MothChestRagged = Ниан, Грудь (Потрёпанные) +marking-MothHeadRagged = Ниан, Голова (Потрёпанные) +marking-MothLLegRagged = Ниан, Левая нога (Потрёпанные) +marking-MothRLegRagged = Ниан, Правая нога (Потрёпанные) +marking-MothLArmRagged = Ниан, Левая рука (Потрёпанные) +marking-MothRArmRagged = Ниан, Правая рука (Потрёпанные) +marking-MothChestRoyal = Ниан, Грудь (Королевские) +marking-MothHeadRoyal = Ниан, Голова (Королевские) +marking-MothLLegRoyal = Ниан, Левая нога (Королевские) +marking-MothRLegRoyal = Ниан, Правая нога (Королевские) +marking-MothLArmRoyal = Ниан, Левая рука (Королевские) +marking-MothRArmRoyal = Ниан, Правая рука (Королевские) +marking-MothChestWhitefly = Ниан, Грудь (Белая муха) +marking-MothHeadWhitefly = Ниан, Голова (Белая муха) +marking-MothLLegWhitefly = Ниан, Левая нога (Белая муха) +marking-MothRLegWhitefly = Ниан, Правая нога (Белая муха) +marking-MothLArmWhitefly = Ниан, Левая рука (Белая муха) +marking-MothRArmWhitefly = Ниан, Правая рука (Белая муха) +marking-MothChestWitchwing = Ниан, Грудь (Ведьмино крыло) +marking-MothHeadWitchwing = Ниан, Голова (Ведьмино крыло) +marking-MothLLegWitchwing = Ниан, Левая нога (Ведьмино крыло) +marking-MothRLegWitchwing = Ниан, Правая нога (Ведьмино крыло) +marking-MothLArmWitchwing = Ниан, Левая рука (Ведьмино крыло) +marking-MothRArmWitchwing = Ниан, Правая рука (Ведьмино крыло) diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Novakid/novakid_mark.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Novakid/novakid_mark.ftl new file mode 100644 index 00000000000..1bdf996f062 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Novakid/novakid_mark.ftl @@ -0,0 +1,58 @@ +marking-NovakidHair1 = сплетение +marking-NovakidHair2 = комета +marking-NovakidHair3 = дуализм +marking-NovakidHair4 = слава +marking-NovakidHair5 = газовое облако +marking-NovakidHair6 = газовая лавина +marking-NovakidHair7 = сияние света +marking-NovakidHair8 = огонек звездного блеска +marking-NovakidHair9 = звездочка +marking-NovakidHair10 = лунный день +marking-NovakidHair11 = метеоритный дождь +marking-NovakidHair12 = млечный путь +marking-NovakidHair13 = туманность +marking-NovakidHair14 = солнечная коронка +marking-NovakidHair15 = звездный дождь +marking-NovakidHair16 = звездопад +marking-NovakidHair17 = пламя звезды +marking-NovakidHair18 = солнечный свет +marking-NovakidHair19 = сверхновая +marking-NovakidHair20 = галактический стиль +marking-NovakidHair21 = дева +marking-NovakidHair22 = галактика +marking-NovakidFace1 = раскол +marking-NovakidFace2 = крест +marking-NovakidFace3 = распятие +marking-NovakidFace4 = двойственность +marking-NovakidFace5 = око +marking-NovakidFace6 = H +marking-NovakidFace7 = сердце +marking-NovakidFace8 = индикатор +marking-NovakidFace9 = нота +marking-NovakidFace10 = призма +marking-NovakidFace11 = руна +marking-NovakidFace12 = квадрат +marking-NovakidFace13 = напряжение +marking-NovakidFace14 = тройственность +marking-NovakidFace15 = перевёрнутое распятие +marking-NovakidFace16 = X +marking-NovakidFace17 = Y +marking-NovakidFace18 = зета +marking-NovakidFace19 = конус +marking-NovakidFace20 = cвязь +marking-NovakidFace21 = окружность +marking-NovakidFace22 = косательная +marking-NovakidFace23 = очи +marking-NovakidFace24 = G +marking-NovakidFace25 = домик +marking-NovakidFace26 = К +marking-NovakidFace27 = лима +marking-NovakidFace28 = обратная косательная +marking-NovakidFace29 = омега +marking-NovakidFace30 = плюс +marking-NovakidFace31 = роза +marking-NovakidFace32 = раскол +marking-NovakidFace33 = звезда +marking-NovakidFace34 = продовольные очки +marking-TorsoNovakidDefolt = белое ядро +marking-HeadNovakidDefolt = белое ядро diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin.ftl index aadd295a962..24d94c1612c 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin.ftl @@ -18,4 +18,4 @@ marking-ADTVulpkaninfoxbelly = Лисий живот marking-ADTVulpkaninfullbelly = Окрас живота marking-ADTVulpkaninpointsfade = Окрас лап marking-ADTVulpkaninpointsfadebelly = Пятнистый окрас лап, груди и живота -marking-ADTVulpkaninsharppoints = Резкие пятна \ No newline at end of file +marking-ADTVulpkaninsharppoints = Резкие пятна diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/ipc.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/ipc.ftl new file mode 100644 index 00000000000..1cd41f8aa3c --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/ipc.ftl @@ -0,0 +1,6 @@ +ent-MobIPC = Урист МакПозитроник + +ent-MobIPCDummy = Урист МакПозитроник + .desc = Манекен позитронного мозга в металлическом теле. + +ipc-board-name = системный блок КПБ diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/novakid.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/novakid.ftl new file mode 100644 index 00000000000..69b575ece4b --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/novakid.ftl @@ -0,0 +1,3 @@ +ent-BaseMobNovakid = Урист МакНовакид + .desc = { ent-BaseMobSpeciesOrganic.desc } + .suffix = Новакид diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/moth.ftl new file mode 100644 index 00000000000..8287a7c9fa3 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/moth.ftl @@ -0,0 +1,5 @@ +ent-BaseMobMoth = Урист МакНиан + .desc = { ent-BaseMobSpeciesOrganic.desc } + .suffix = Ниан +ent-MobMothDummy = { ent-BaseMobMoth } + .desc = { ent-BaseMobMoth.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/novakid.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/novakid.ftl new file mode 100644 index 00000000000..1347c23a2bd --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/novakid.ftl @@ -0,0 +1,3 @@ +novakid-hurt-by-water-popup = Вода заставляет ваше пламя угасать + +species-name-novakid = Новакид diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/pda.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/pda.ftl index 1167841880c..8e9a814064f 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/pda.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/pda.ftl @@ -1,5 +1,8 @@ ent-MagistratPDA = КПК Магистрата .desc = В заметках данного КПК можно найти компромат на каждого из глав. + ent-ADTPathologistPDA = КПК патологоанатома .desc = От него веет прохладой. +ent-ADTRoboticistPDA = КПК робототехника + .desc = Почему это всё ещё не робот?! diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/translators.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/translators.ftl index 5ae89edec38..933bc3d250c 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/translators.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/translators.ftl @@ -1,5 +1,5 @@ -translator-component-shutoff = {$translator} выключается. -translator-component-turnon = The {$translator} включается. +translator-component-shutoff = {CAPITALIZE($translator)} выключается. +translator-component-turnon = {CAPITALIZE($translator)} включается. translator-enabled = Оно включено. translator-disabled = Оно выключено. @@ -51,7 +51,7 @@ ent-CintaTajTranslator = переводчик Синта’Тайр ent-ArkaneTranslator = переводчик языка Каукиттен .desc = Используется для взаимного перевода Общегалактического языка и Каукиттен. -ent-ShadowkinTranslator = переводчик языка Миар +ent-ShadekinTranslator = переводчик языка Миар .desc = Используется для взаимного перевода Общегалактического языка и Миар. ent-NianTranslator = переводчик Ткачьего языка @@ -59,3 +59,13 @@ ent-NianTranslator = переводчик Ткачьего языка ent-FireTranslator = переводчик Огненного языка .desc = Используется для взаимного перевода Общегалактического и Огненного языков. + +ent-UrsTranslator = переводчик Рыкрур + .desc = Используется для взаимного перевода Общегалактического языка и Рыкрур. + +ent-IPCTranslator = переводчик троичного кода + .desc = Используется для взаимного перевода Общегалактического языка и троичного кода. + +ent-DwarfTranslator = переводчик языка Шахт + .desc = Используется для взаимного перевода Общегалактического языка и Шахт. + diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Fun/toys.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Fun/toys.ftl new file mode 100644 index 00000000000..7fb9f767719 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Fun/toys.ftl @@ -0,0 +1,2 @@ +ent-ADTPlushieUrs = плюшевый Урс + .desc = Милая плюшевая игрушка Урса. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/identification_cards.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/identification_cards.ftl index 08cf8797b42..a87586d412d 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/identification_cards.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/identification_cards.ftl @@ -1,2 +1,8 @@ ent-MagistratIDCard = ID Магистрата .desc = Серебрянная карта с значком Юриста. + +ent-ADTPathologistIDCard = ID карта патологоанатома + .desc = { ent-IDCardStandard.desc } + +ent-ADTRoboticistIDCard = ID карта робототехника + .desc = { ent-IDCardStandard.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/implanters.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/implanters.ftl index ae8e374fb57..8122fb5e0f8 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/implanters.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/implanters.ftl @@ -3,10 +3,7 @@ translator-implanter-success = {$implanter} успешно имплантиро translator-implanter-ready = Имплантер готов к использованию. translator-implanter-used = Имплантер пуст. -ent-BasicGalaticCommonTranslatorImplanter = базовый языковой имплант Общегалактического языка - .desc = Имплант, позволяющий понимать Общегалактический язык. - -ent-AdvancedGalaticCommonTranslatorImplanter = полноценный языковой имплант Общегалактического языка +ent-GalaticCommonTranslatorImplanter = полноценный языковой имплант Общегалактического языка .desc = Имплант, позволяющий понимать и общаться на Общегалактическом языке. ent-BubblishTranslatorImplanter = полноценный языковой имплант Пузырчатого языка @@ -54,12 +51,18 @@ ent-UrsTranslatorImplanter = полноценный языковой импла ent-ArkaneTranslatorImplanter = полноценный языковой имплант Каукиттен .desc = Имплант, позволяющий понимать и общаться на языке Каукиттен. -ent-ShadowkinTranslatorImplanter = полноценный языковой имплант Миар +ent-ShadekinTranslatorImplanter = полноценный языковой имплант Миар .desc = Имплант, позволяющий понимать и общаться на языке Миар. ent-BorgTranslatorImplanter = полноценный языковой имплант двоичного кода .desc = Имплант, позволяющий понимать и общаться на двоичном коде. +ent-DwarfTranslatorImplanter = полноценный языковой имплант Шахт + .desc = Имплант, позволяющий понимать и общаться на языке Шахт. + +ent-ArachnidTranslatorImplanter = полноценный языковой имплант Паучьего языка + .desc = Имплант, позволяющий понимать и общаться на языке арахнидов. + ent-SyndUniversalTranslatorImplanter = универсальный языковой имплант .desc = Имплант, позволяющий (только) понимать все расовые языки. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/jobs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/jobs.ftl deleted file mode 100644 index 4c5ca3d3ff0..00000000000 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/jobs.ftl +++ /dev/null @@ -1,2 +0,0 @@ -job-name-magistrat = Магистрат -job-description-magistrat = Самый грозный и богатый на станции. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/silicon_chargers.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/silicon_chargers.ftl new file mode 100644 index 00000000000..85b0bb7deb0 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/silicon_chargers.ftl @@ -0,0 +1,7 @@ +ent-SiliconChargerIndustrial = промышленное зарядное устройство + .desc = Мощная машина для зарядки синнтетиков. Подходит для зарядки КПБ и боргов. Она очень сильно нагревается! + +ent-IndustrialChargerCircuitboard = плата промышленного зарядного устройства + .desc = Машинная печатная плата для промышленного зарядного устройства + +research-technology-ind-charger = Технология зарядки продвинутых синтетиков. diff --git a/Resources/Locale/ru-RU/ADT/Entities/Structuries/Machines/vending_machines.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/vending_machines.ftl similarity index 100% rename from Resources/Locale/ru-RU/ADT/Entities/Structuries/Machines/vending_machines.ftl rename to Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/vending_machines.ftl diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Species/Ursus.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Species/Ursus.ftl new file mode 100644 index 00000000000..ce103bc3558 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Species/Ursus.ftl @@ -0,0 +1 @@ +species-name-Ursus = Урс diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Species/ipc.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Species/ipc.ftl new file mode 100644 index 00000000000..df5ed76b23c --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Species/ipc.ftl @@ -0,0 +1 @@ +species-name-ipc = КПБ diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Species/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Species/moth.ftl new file mode 100644 index 00000000000..bac5483c43e --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Species/moth.ftl @@ -0,0 +1 @@ +species-name-moth = Ниан diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Species/shadekin.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Species/shadekin.ftl new file mode 100644 index 00000000000..b2e4f123c6b --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Species/shadekin.ftl @@ -0,0 +1 @@ +species-name-shadekin = Сумеречник diff --git a/Resources/Locale/ru-RU/ADT/reagents/meta/biological.ftl b/Resources/Locale/ru-RU/ADT/reagents/meta/biological.ftl new file mode 100644 index 00000000000..289e4d89993 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/reagents/meta/biological.ftl @@ -0,0 +1,2 @@ +reagent-name-shadekin-blood = фиолетовая кровь +reagent-desc-shadekin-blood = Я надеюсь, что ботаники просто раздавили блюспейс помидор. diff --git a/Resources/Locale/ru-RU/ADT/traits/disabilities.ftl b/Resources/Locale/ru-RU/ADT/traits/disabilities.ftl new file mode 100644 index 00000000000..79eeed1909c --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/traits/disabilities.ftl @@ -0,0 +1,5 @@ +trait-hemophilia-name = Гемофилия +trait-hemophilia-desc = Ваша кровь сворачивается крайне плохо. + +trait-monochromacy-name = Цветовая слепота +trait-monochromacy-description = Ваши глаза получили необратимые повреждения, из-за чего вы видите только в оттенках серого. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/accessories/vox-hair.ftl b/Resources/Locale/ru-RU/accessories/vox-hair.ftl index bcc415b759c..042251e41ce 100644 --- a/Resources/Locale/ru-RU/accessories/vox-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/vox-hair.ftl @@ -20,3 +20,4 @@ marking-VoxHairTielQuills = Вокс, Тилские перья marking-VoxHairYasu = Вокс, Ясухиро marking-VoxHairMange = Вокс, Лишай marking-VoxHairPony = Вокс, Пони + diff --git a/Resources/Locale/ru-RU/actions/actions/polymorph.ftl b/Resources/Locale/ru-RU/actions/actions/polymorph.ftl new file mode 100644 index 00000000000..00ede96dcbb --- /dev/null +++ b/Resources/Locale/ru-RU/actions/actions/polymorph.ftl @@ -0,0 +1 @@ +gera-transformation-popup = Это действие трансформирует вас. Для подтверждения выполните его ещё раз. diff --git a/Resources/Locale/ru-RU/administration/admin-verbs.ftl b/Resources/Locale/ru-RU/administration/admin-verbs.ftl index 6ecbbb4cc57..86994815c69 100644 --- a/Resources/Locale/ru-RU/administration/admin-verbs.ftl +++ b/Resources/Locale/ru-RU/administration/admin-verbs.ftl @@ -15,3 +15,4 @@ admin-verbs-erase-description = Игроки увидят всплывающее окно, указывающее им играть как будто исчезнувшего никогда не существовало. toolshed-verb-mark = Отметить toolshed-verb-mark-description = Помещает данную сущность в переменную $marked, заменяя её предыдущее значение. +export-entity-verb-get-data-text = Экспорт спрайта diff --git a/Resources/Locale/ru-RU/administration/bwoink.ftl b/Resources/Locale/ru-RU/administration/bwoink.ftl index 81ce332ba9a..2dc06ddda0e 100644 --- a/Resources/Locale/ru-RU/administration/bwoink.ftl +++ b/Resources/Locale/ru-RU/administration/bwoink.ftl @@ -9,3 +9,6 @@ bwoink-system-typing-indicator = admin-bwoink-play-sound = Бвоинк? bwoink-title-none-selected = Ничего не выбрано bwoink-system-rate-limited = Система: вы отправляете сообщения слишком быстро. +bwoink-system-player-disconnecting = отключился. +bwoink-system-player-reconnecting = переподключился. +bwoink-system-player-banned = был забанен за: { $banReason } diff --git a/Resources/Locale/ru-RU/bloodstream/bloodstream.ftl b/Resources/Locale/ru-RU/bloodstream/bloodstream.ftl index cd8f442bde9..af184c63d46 100644 --- a/Resources/Locale/ru-RU/bloodstream/bloodstream.ftl +++ b/Resources/Locale/ru-RU/bloodstream/bloodstream.ftl @@ -1,5 +1,4 @@ -bloodstream-component-looks-pale = [color=bisque]{CAPITALIZE(SUBJECT($target))} {CONJUGATE-BASIC($target, "выглядят", "выглядит")} бледно.[/color] -bloodstream-component-bleeding = [color=red]{CAPITALIZE(SUBJECT($target))} {CONJUGATE-BASIC($target, "истекают", "истекает")} кровью.[/color] -bloodstream-component-profusely-bleeding = [color=crimson]{CAPITALIZE(SUBJECT($target))} обильно {CONJUGATE-BASIC($target, "истекают", "истекает")} кровью![/color] - +bloodstream-component-looks-pale = [color=bisque]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-BASIC($target, "выглядят", "выглядит") } бледно.[/color] +bloodstream-component-bleeding = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-BASIC($target, "истекают", "истекает") } кровью.[/color] +bloodstream-component-profusely-bleeding = [color=crimson]{ CAPITALIZE(SUBJECT($target)) } обильно { CONJUGATE-BASIC($target, "истекают", "истекает") } кровью![/color] bloodstream-component-wounds-cauterized = С болью вы ощущаете, как ваши раны прижигаются! diff --git a/Resources/Locale/ru-RU/cargo/bounties.ftl b/Resources/Locale/ru-RU/cargo/bounties.ftl index 0c9cba3eeaf..86c1c6ecfbf 100644 --- a/Resources/Locale/ru-RU/cargo/bounties.ftl +++ b/Resources/Locale/ru-RU/cargo/bounties.ftl @@ -65,6 +65,7 @@ bounty-item-cardboard-box = Картонная коробка bounty-item-wine = Бутылка вина bounty-item-cotton-boll = Хлопковый шарик bounty-item-microwave-machine-board = Машинная плата микроволновки +bounty-item-flash = Вспышка bounty-description-artifact = Nanotrasen находится в затруднительном положении из-за кражи артефактов с некосмических планет. Верните один, и мы выплатим за него компенсацию. bounty-description-baseball-bat = В Центкоме началась бейсбольная лихорадка! Будьте добры отправить им несколько бейсбольных бит, чтобы руководство могло исполнить свою детскую мечту. bounty-description-box-hugs = Несколько главных чиновников получили серьёзные ушибы. Для их выздоровления срочно требуется коробка обнимашек @@ -131,3 +132,4 @@ bounty-description-cotton-boll = Огромный рой таракамолей bounty-description-microwave-machine-board = Мистер Хихстер решил, что будет забавно позасовывать металлические вилки во все кухонные микроволновки. Помогите нам отремонтировать их, пока повара не принялись готовить клоунбургеры. bounty-description-lasergun = Караван утилизаторов запрашивает большую партию лазерного оружия для уничтожения улья ксеноморфов. bounty-description-food = После нашествия крысиного короля соседняя станция унатхов осталась без еды. Необходима большая партия мясных блюд. +bounty-description-flashes = ПРИВЕТСТВИЕ \[Станция] НАМ НЕОБХОДИМЫ 6 ВСПЫШЕК ДЛЯ ОБЫЧНЫХ \[ТренировкаУпражнение] С СОТРУДНИКАМИ СЛУЖБЫ БЕЗОПАСНОСТИ. ВСЁ \[Нормально]. diff --git a/Resources/Locale/ru-RU/cargo/cargo-console-component.ftl b/Resources/Locale/ru-RU/cargo/cargo-console-component.ftl index 6bbe207342e..1af2b655f86 100644 --- a/Resources/Locale/ru-RU/cargo/cargo-console-component.ftl +++ b/Resources/Locale/ru-RU/cargo/cargo-console-component.ftl @@ -30,7 +30,7 @@ cargo-console-snip-snip = Заказ урезан до вместимости cargo-console-insufficient-funds = Недостаточно средств (требуется { $cost }) cargo-console-unfulfilled = Нет места для выполнения заказа cargo-console-trade-station = Отправить на { $destination } -cargo-console-unlock-approved-order-broadcast = [bold]Заказ на { $productName } x{ $orderAmount }[/bold], стоимостью [bold]{ $cost }[/bold], был одобрен [bold]{ $approverName }, { $approverJob }[/bold] +cargo-console-unlock-approved-order-broadcast = [bold]Заказ на { $productName } x{ $orderAmount }[/bold], стоимостью [bold]{ $cost }[/bold], был одобрен [bold]{ $approver }[/bold] cargo-console-paper-print-name = Заказ #{ $orderNumber } cargo-console-paper-print-text = Заказ #{ $orderNumber } diff --git a/Resources/Locale/ru-RU/character-appearance/components/magic-mirror-component.ftl b/Resources/Locale/ru-RU/character-appearance/components/magic-mirror-component.ftl index 2d7f74afe7b..9b756c15576 100644 --- a/Resources/Locale/ru-RU/character-appearance/components/magic-mirror-component.ftl +++ b/Resources/Locale/ru-RU/character-appearance/components/magic-mirror-component.ftl @@ -1,2 +1,12 @@ magic-mirror-component-activate-user-has-no-hair = У вас не может быть волос! magic-mirror-window-title = Волшебное зеркало +magic-mirror-add-slot-self = Вы добавляете себе волосы. +magic-mirror-remove-slot-self = Вы удаляете часть волос. +magic-mirror-change-slot-self = Вы меняете свою причёску. +magic-mirror-change-color-self = Вы меняете свой цвет волос. +magic-mirror-add-slot-target = { $user } добавляет вам волос. +magic-mirror-remove-slot-target = { $user } удаляет часть ваших волос. +magic-mirror-change-slot-target = { $user } меняет вашу причёску. +magic-mirror-change-color-target = { $user } меняет цвет ваших волос. +magic-mirror-blocked-by-hat-self = Прежде чем менять причёску, вам необходимо снять шляпу. +magic-mirror-blocked-by-hat-self-target = Вы пытаетесь изменить причёску, но одежда цели вам мешает. diff --git a/Resources/Locale/ru-RU/character-info/components/character-info-component.ftl b/Resources/Locale/ru-RU/character-info/components/character-info-component.ftl index 5c1f8e3b802..2ce99632871 100644 --- a/Resources/Locale/ru-RU/character-info/components/character-info-component.ftl +++ b/Resources/Locale/ru-RU/character-info/components/character-info-component.ftl @@ -1,3 +1,4 @@ character-info-title = Персонаж character-info-roles-antagonist-text = Роли антагонистов character-info-objectives-label = Цели +character-info-no-profession = Нет должности diff --git a/Resources/Locale/ru-RU/chemistry/components/solution-transfer-component.ftl b/Resources/Locale/ru-RU/chemistry/components/solution-transfer-component.ftl index be4963963d4..0d08a54a9fe 100644 --- a/Resources/Locale/ru-RU/chemistry/components/solution-transfer-component.ftl +++ b/Resources/Locale/ru-RU/chemistry/components/solution-transfer-component.ftl @@ -18,3 +18,5 @@ comp-solution-transfer-verb-toggle = Переключить на { $amount } е ## Displayed after you successfully change a solution's amount using the BUI comp-solution-transfer-set-amount = Перемещаемое количество установлено на { $amount } ед. +comp-solution-transfer-set-amount-max = Макс.: { $amount } ед. +comp-solution-transfer-set-amount-min = Мин.: { $amount } ед. diff --git a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl index 48cd6b88953..d80168cb1f5 100644 --- a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl +++ b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl @@ -60,6 +60,6 @@ station-goal-frame-repair = Слава НТ! station-goal-delta-xeno-repair = Цель смены станции { $station } - восстановление заброшенного ксенобиологического сектора научного отдела. Вам необходимо полностью восстановить электропитание, атмос, привести внешний вид к изначальному состоянию, и поймать минимум трех слаймов любых форм в ксенобиологические клетки, для их изучения последующей сменой. station-goal-delta-ambusol = Цель смены станции { $station } - восстановление заброшенного вирусологического сектора медицинского отдела. Вам необходимо полностью восстановить электропитание, атмос, привести внешний вид к изначальному состоянию, и в стерильных условиях вирусологии провести синтезацию 500u Амбузола, из предоставленных трех пилюль Ромерола. -station-goal-split-secure = Цель смены станции { $station } - обеспечить безопасность в секторе Split. - Вам необходимо обеспечивать безопасность сектора Split на протяжении смены, чтобы станции Mayhen и Lumber могли успешно завершить свои задачи на смену. +station-goal-split-secure = Цель смены станции { $station } - обеспечить безопасность в секторе Split. + Вам необходимо обеспечивать безопасность сектора Split на протяжении смены, чтобы станции Mayhen и Lumber могли успешно завершить свои задачи на смену. По нашей информации в секторе находится база пиратов, охраняйте логистические маршруты в секторе и не допустите потерю имущества НТ в результате грабежей. diff --git a/Resources/Locale/ru-RU/examine/examine-system.ftl b/Resources/Locale/ru-RU/examine/examine-system.ftl index 40d5249272e..86e10ceadc8 100644 --- a/Resources/Locale/ru-RU/examine/examine-system.ftl +++ b/Resources/Locale/ru-RU/examine/examine-system.ftl @@ -3,5 +3,5 @@ examine-system-entity-does-not-exist = Этой сущности не существует examine-system-cant-see-entity = Вам не удаётся это рассмотреть. examine-verb-name = Осмотреть -examinable-anchored = Это [color=darkgreen]закреплено[/color] на полу -examinable-unanchored = Это [color=darkred]не закреплено[/color] на полу +examinable-anchored = Это [color=darkgreen]закреплено[/color] на полу. +examinable-unanchored = Это [color=darkred]не закреплено[/color] на полу. diff --git a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl index 216c9b0c376..14e00b4667d 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-revolutionary.ftl @@ -17,7 +17,7 @@ head-rev-break-mindshield = Щит разума был уничтожен! roles-antag-rev-name = Революционер roles-antag-rev-objective = Ваша задача - защищать и выполнять приказы глав революции, а также избавиться от всего командного состава станции. -rev-break-control = { $name } { $gender -> +rev-break-control = { $name } { GENDER($name) -> [male] вспомнил, кому он верен [female] вспомнила, кому она верна [epicene] вспомнили, кому они верни @@ -46,10 +46,12 @@ rev-lost = Члены командного состава станции выж rev-stalemate = Главы революции и командный состав станции погибли. Это ничья. rev-headrev-name-user = [color=#5e9cff]{ $name }[/color] ([color=gray]{ $username }[/color]) конвертировал { $count } { $count -> [one] члена + [few] члена *[other] членов } экипажа rev-headrev-name = [color=#5e9cff]{ $name }[/color] конвертировал { $count } { $count -> [one] члена + [few] члена *[other] членов } экипажа rev-reverse-stalemate = Главы революции и командный состав станции выжили. diff --git a/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl b/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl index f97e51e53cf..e7c6b78807a 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl @@ -42,5 +42,7 @@ latejoin-arrival-announcement = latejoin-arrival-sender = Станции latejoin-arrivals-direction = Вскоре прибудет шаттл, который доставит вас на станцию. latejoin-arrivals-direction-time = Шаттл, который доставит вас на станцию, прибудет через { $time }. +latejoin-arrivals-dumped-from-shuttle = Таинственная сила не позволяет вам улететь на шаттле прибытия. +latejoin-arrivals-teleport-to-spawn = Таинственная сила телепортирует вас с шаттла прибытия. Удачной смены! preset-not-enough-ready-players = Не удалось запустить пресет { $presetName }. Требуется { $minimumPlayers } игроков, но готовы только { $readyPlayersCount }. preset-no-one-ready = Не удалось запустить режим { $presetName }. Нет готовых игроков. diff --git a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl index a8e378ec308..62e585f5d4e 100644 --- a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl @@ -146,6 +146,15 @@ ghost-role-information-space-ninja-description = Используйте хитр ghost-role-information-syndicate-reinforcement-name = Агент Синдиката ghost-role-information-syndicate-reinforcement-description = Кому-то нужно подкрепление. Вы первый, кого Синдикат смог найти и послать на помощь. ghost-role-information-syndicate-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с агентом, который вас призвал. +ghost-role-information-syndicate-reinforcement-medic-name = Медик Синдиката +ghost-role-information-syndicate-reinforcement-medic-description = Кому-то нужно подкрепление. Ваша задача - сохранить жизнь вызвавшему вас агенту. +ghost-role-information-syndicate-reinforcement-spy-name = Шпион Синдиката +ghost-role-information-syndicate-reinforcement-spy-description = Кому-то нужно подкрепление. Ваша специализация - шпионаж, постарайтесь не быть обнаруженными. +ghost-role-information-syndicate-reinforcement-thief-name = Вор Синдиката +ghost-role-information-syndicate-reinforcement-thief-description = Кому-то нужно подкрепление. Ваша задача - проникнуть и забрать что-то ценное для своего агента. +ghost-role-information-nukeop-reinforcement-name = Ядерный оперативник +ghost-role-information-nukeop-reinforcement-description = Ядерному оперативнику нужно подкрепление. Вы, резервный агент, поможете им. +ghost-role-information-nukeop-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с ядерным оперативником, который вас призвал. ghost-role-information-syndicate-monkey-reinforcement-name = Агент Синдиката-обезьяна ghost-role-information-syndicate-monkey-reinforcement-description = Кому-то нужно подкрепление. Вы, специально обученная обезьяна, поможете им. ghost-role-information-syndicate-monkey-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с агентом, который вас призвал. diff --git a/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl b/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl index 527d6cb3ab2..581615693e8 100644 --- a/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl +++ b/Resources/Locale/ru-RU/health-examinable/health-examinable-carbon.ftl @@ -1,26 +1,19 @@ health-examinable-carbon-none = Видимые повреждения тела отсутствуют. - health-examinable-carbon-Blunt-25 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } небольшие ушибы на теле.[/color] health-examinable-carbon-Blunt-50 = [color=crimson]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } серьёзные ушибы на теле![/color] health-examinable-carbon-Blunt-75 = [color=crimson]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } сильные ушибы по всему телу![/color] - health-examinable-carbon-Slash-10 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } несколько лёгких порезов.[/color] health-examinable-carbon-Slash-25 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } серьёзные порезы на теле.[/color] health-examinable-carbon-Slash-50 = [color=crimson]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } множество сильных порезов![/color] health-examinable-carbon-Slash-75 = [color=crimson]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } множество глубоких порезов на теле![/color] - health-examinable-carbon-Piercing-50 = [color=crimson]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } проникающие ранения на теле![/color] - health-examinable-carbon-Heat-25 = [color=orange]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } лёгкие ожоги на теле.[/color] health-examinable-carbon-Heat-50 = [color=orange]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } сильные ожоги на теле.[/color] health-examinable-carbon-Heat-75 = [color=orange]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } ожоги третьей степени на теле![/color] - health-examinable-carbon-Shock-50 = [color=lightgoldenrodyellow]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } следы поражения током по всему телу![/color] - health-examinable-carbon-Cold-25 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } лёгкие обморожения на теле.[/color] health-examinable-carbon-Cold-50 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } сильные обморожения на теле.[/color] health-examinable-carbon-Cold-75 = [color=lightblue]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } обморожения третьей степени на теле![/color] - health-examinable-carbon-Caustic-25 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } лёгкие химические ожоги.[/color] health-examinable-carbon-Caustic-50 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } химические ожоги на теле.[/color] health-examinable-carbon-Caustic-75 = [color=yellowgreen]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } сильные химические ожоги по всей поверхности тела![/color] diff --git a/Resources/Locale/ru-RU/health-examinable/health-examinable-silicon.ftl b/Resources/Locale/ru-RU/health-examinable/health-examinable-silicon.ftl index f21b28f2005..4fb19eef3f2 100644 --- a/Resources/Locale/ru-RU/health-examinable/health-examinable-silicon.ftl +++ b/Resources/Locale/ru-RU/health-examinable/health-examinable-silicon.ftl @@ -1,18 +1,13 @@ health-examinable-silicon-none = Видимые повреждения корпуса отсутствуют. - health-examinable-silicon-Blunt-25 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } небольшие вмятины на шасси.[/color] health-examinable-silicon-Blunt-50 = [color=crimson]{ CAPITALIZE(POSS-ADJ($target)) } шасси имеет серьёзные вмятины![/color] health-examinable-silicon-Blunt-75 = [color=crimson]{ CAPITALIZE(POSS-ADJ($target)) } шасси почти разваливается![/color] - health-examinable-silicon-Slash-10 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } несколько царапин.[/color] health-examinable-silicon-Slash-25 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } серьёзные царапины![/color] health-examinable-silicon-Slash-50 = [color=crimson]{ CAPITALIZE(POSS-ADJ($target)) } покрытие шасси усыпано глубокими цапапинами![/color] health-examinable-silicon-Slash-75 = [color=crimson]{ CAPITALIZE(POSS-ADJ($target)) } шасси полностю разодрано![/color] - health-examinable-silicon-Piercing-50 = [color=crimson]{ CAPITALIZE(POSS-ADJ($target)) } шасси усеяно глубокими отверстиями![/color] - health-examinable-silicon-Heat-25 = [color=orange]{ CAPITALIZE(POSS-ADJ($target)) } шасси слегка закоптилось.[/color] health-examinable-silicon-Heat-50 = [color=orange]{ CAPITALIZE(POSS-ADJ($target)) } шасси немного оплавилось.[/color] health-examinable-silicon-Heat-75 = [color=orange]{ CAPITALIZE(POSS-ADJ($target)) } шасси частично расплавилось![/color] - health-examinable-silicon-Shock-50 = [color=lightgoldenrodyellow]{ CAPITALIZE(POSS-ADJ($target)) } микросхемы, похоже, неплохо поджарились![/color] diff --git a/Resources/Locale/ru-RU/lathe/recipes.ftl b/Resources/Locale/ru-RU/lathe/recipes.ftl new file mode 100644 index 00000000000..efd13329ed0 --- /dev/null +++ b/Resources/Locale/ru-RU/lathe/recipes.ftl @@ -0,0 +1,8 @@ +lathe-recipe-Medkit-name = аптечка первой помощи (пусто) +lathe-recipe-MedkitBurn-name = набор для лечения физических травм (пусто) +lathe-recipe-MedkitToxin-name = набор для лечения токсинов (пусто) +lathe-recipe-MedkitO2-name = набор для лечения кислородного голодания (пусто) +lathe-recipe-MedkitBrute-name = набор для лечения механических травм (пусто) +lathe-recipe-MedkitAdvanced-name = продвинутая аптечка первой помощи (пусто) +lathe-recipe-MedkitRadiation-name = набор для выведения радиации (пусто) +lathe-recipe-MedkitCombat-name = боевая аптечка (пусто) diff --git a/Resources/Locale/ru-RU/lathe/ui/lathe-menu.ftl b/Resources/Locale/ru-RU/lathe/ui/lathe-menu.ftl index e9547c0b047..cd9d3cc7b04 100644 --- a/Resources/Locale/ru-RU/lathe/ui/lathe-menu.ftl +++ b/Resources/Locale/ru-RU/lathe/ui/lathe-menu.ftl @@ -6,6 +6,9 @@ lathe-menu-search-designs = Поиск проектов lathe-menu-category-all = Всё lathe-menu-search-filter = Фильтр lathe-menu-amount = Кол-во: +lathe-menu-reagent-slot-examine = Сбоку имеется отверстие для мензурки. +lathe-reagent-dispense-no-container = Жидкость выливается из { $name } на пол! +lathe-menu-result-reagent-display = { $reagent } ({ $amount }ед.) lathe-menu-material-display = { $material } { $amount } lathe-menu-tooltip-display = { $amount } { $material } lathe-menu-description-display = [italic]{ $description }[/italic] diff --git a/Resources/Locale/ru-RU/lock/locking-whitelist-component.ftl b/Resources/Locale/ru-RU/lock/locking-whitelist-component.ftl new file mode 100644 index 00000000000..e02e1c16fb3 --- /dev/null +++ b/Resources/Locale/ru-RU/lock/locking-whitelist-component.ftl @@ -0,0 +1 @@ +locking-whitelist-component-lock-toggle-deny = Вы не можете переключить замок. diff --git a/Resources/Locale/ru-RU/markings/moth.ftl b/Resources/Locale/ru-RU/markings/moth.ftl index a2012d22a40..b146c8acf7d 100644 --- a/Resources/Locale/ru-RU/markings/moth.ftl +++ b/Resources/Locale/ru-RU/markings/moth.ftl @@ -1,248 +1,247 @@ -marking-MothAntennasDefault-default = Антенна -marking-MothAntennasDefault = Антенны (Обычные) -marking-MothAntennasCharred-charred = Антенна -marking-MothAntennasCharred = Антенны (Обугленные) -marking-MothAntennasDbushy-dbushy = Антенна -marking-MothAntennasDbushy = Антенны (Кустистые) -marking-MothAntennasDcurvy-dcurvy = Антенна -marking-MothAntennasDcurvy = Антенны (Закрученные) -marking-MothAntennasDfan-dfan = Антенна -marking-MothAntennasDfan = Антенны (Вентилятор) -marking-MothAntennasDpointy-dpointy = Антенна -marking-MothAntennasDpointy = Антенны (Заострённые) -marking-MothAntennasFeathery-feathery = Антенна -marking-MothAntennasFeathery = Антенны (Перистые) -marking-MothAntennasFirewatch-firewatch = Антенна -marking-MothAntennasFirewatch = Антенны (Файрвотч) -marking-MothAntennasGray-gray = Антенна -marking-MothAntennasGray = Антенны (Серые) -marking-MothAntennasJungle-jungle = Антенна -marking-MothAntennasJungle = Антенны (Джунгли) -marking-MothAntennasMaple-maple = Антенна -marking-MothAntennasMaple = Антенны (Клён) -marking-MothAntennasMoffra-moffra = Антенна -marking-MothAntennasMoffra = Антенны (Мотра) -marking-MothAntennasOakworm-oakworm = Антенна -marking-MothAntennasOakworm = Антенны (Дубовый червь) -marking-MothAntennasPlasmafire-plasmafire = Антенна -marking-MothAntennasPlasmafire = Антенны (Пожар плазмы) -marking-MothAntennasRoyal-royal = Антенна -marking-MothAntennasRoyal = Антенны (Королевские) -marking-MothAntennasStriped-striped = Антенна -marking-MothAntennasStriped = Антенны (Полосатые) -marking-MothAntennasWhitefly-whitefly = Антенна -marking-MothAntennasWhitefly = Антенны (Белая муха) -marking-MothAntennasWitchwing-witchwing = Антенна -marking-MothAntennasWitchwing = Антенны (Ведьмино крыло) -marking-MothAntennasUnderwing-underwing_primary = Основной -marking-MothAntennasUnderwing-underwing_secondary = Вторичный -marking-MothAntennasUnderwing = Антенны (Подкрылье) -marking-MothWingsDefault-default = Крыло -marking-MothWingsDefault = Крылья (Обычные) -marking-MothWingsCharred-charred = Крыло -marking-MothWingsCharred = Крылья (Обугленные) -marking-MothWingsDbushy-dbushy_primary = Основной -marking-MothWingsDbushy-dbushy_secondary = Вторичный -marking-MothWingsDbushy = Крылья (Тёмные и Кустистые) -marking-MothWingsDeathhead-deathhead_primary = Основной -marking-MothWingsDeathhead-deathhead_secondary = Вторичный -marking-MothWingsDeathhead = Крылья (Рука Смерти) -marking-MothWingsFan-fan = Крыло -marking-MothWingsFan = Крылья (Вентилятор) -marking-MothWingsDfan-dfan = Крыло -marking-MothWingsDfan = Крылья (Тёмные и Вентилятор) -marking-MothWingsFeathery-feathery = Крыло -marking-MothWingsFeathery = Крылья (Перистые) -marking-MothWingsFirewatch-firewatch_primary = Основной -marking-MothWingsFirewatch-firewatch_secondary = Вторичный -marking-MothWingsFirewatch = Крылья (Файрвотч) -marking-MothWingsGothic-gothic = Крыло -marking-MothWingsGothic = Крылья (Готика) -marking-MothWingsJungle-jungle = Крыло -marking-MothWingsJungle = Крылья (Джунгли) -marking-MothWingsLadybug-ladybug = Крыло -marking-MothWingsLadybug = Крылья (Божья коровка) -marking-MothWingsMaple-maple = Крыло -marking-MothWingsMaple = Крылья (Клён) -marking-MothWingsMoffra-moffra_primary = Основной -marking-MothWingsMoffra-moffra_secondary = Вторичный -marking-MothWingsMoffra = Крылья (Мотра) -marking-MothWingsOakworm-oakworm = Крыло -marking-MothWingsOakworm = Крылья (Дубовый червь) -marking-MothWingsPlasmafire-plasmafire_primary = Основной -marking-MothWingsPlasmafire-plasmafire_secondary = Вторичный -marking-MothWingsPlasmafire = Крылья (Пожар плазмы) -marking-MothWingsPointy-pointy = Крыло -marking-MothWingsPointy = Крылья (Заострённые) -marking-MothWingsRoyal-royal_primary = Основной -marking-MothWingsRoyal-royal_secondary = Вторичный -marking-MothWingsRoyal = Крылья (Королевские) -marking-MothWingsStellar-stellar = Крыло -marking-MothWingsStellar = Крылья (Звёздные) -marking-MothWingsStriped-striped = Крыло -marking-MothWingsStriped = Крылья (Полосатые) -marking-MothWingsSwirly-swirly = Крыло -marking-MothWingsSwirly = Крылья (Завихрение) -marking-MothWingsWhitefly-whitefly = Крыло -marking-MothWingsWhitefly = Крылья (Белая муха) -marking-MothWingsWitchwing-witchwing = Крыло -marking-MothWingsWitchwing = Крылья (Ведьмино крыло) -marking-MothWingsUnderwing-underwing_primary = Основной -marking-MothWingsUnderwing-underwing_secondary = Вторичный -marking-MothWingsUnderwing = Крылья (Подкрылье) -marking-MothChestCharred-charred_chest = Грудь -marking-MothChestCharred = Ниан, Грудь (Обугленные) -marking-MothHeadCharred-charred_head = Голова -marking-MothHeadCharred = Ниан, Голова (Обугленные) -marking-MothLLegCharred-charred_l_leg = Левая Нога -marking-MothLLegCharred = Ниан, Левая нога (Обугленные) -marking-MothRLegCharred-charred_r_leg = Правая Нога -marking-MothRLegCharred = Ниан, Правая нога (Обугленные) -marking-MothLArmCharred-charred_l_arm = Левая Рука -marking-MothLArmCharred = Ниан, Левая рука (Обугленные) -marking-MothRArmCharred-charred_r_arm = Правая Рука -marking-MothRArmCharred = Ниан, Правая рука (Обугленные) -marking-MothChestDeathhead-deathhead_chest = Грудь -marking-MothChestDeathhead = Ниан, Грудь (Рука Смерти) -marking-MothHeadDeathhead-deathhead_head = Голова -marking-MothHeadDeathhead = Ниан, Голова (Рука Смерти) -marking-MothLLegDeathhead-deathhead_l_leg = Левая Нога -marking-MothLLegDeathhead = Ниан, Левая нога (Рука Смерти) -marking-MothRLegDeathhead-deathhead_r_leg = Правая Нога -marking-MothRLegDeathhead = Ниан, Правая нога (Рука Смерти) -marking-MothLArmDeathhead-deathhead_l_arm = Левая Рука -marking-MothLArmDeathhead = Ниан, Левая рука (Рука Смерти) -marking-MothRArmDeathhead-deathhead_r_arm = Правая Рука -marking-MothRArmDeathhead = Ниан, Правая рука (Рука Смерти) -marking-MothChestFan-fan_chest = Грудь -marking-MothChestFan = Ниан, Грудь (Вентилятор) -marking-MothHeadFan-fan_head = Голова -marking-MothHeadFan = Ниан, Голова (Вентилятор) -marking-MothLLegFan-fan_l_leg = Левая Нога -marking-MothLLegFan = Ниан, Левая нога (Вентилятор) -marking-MothRLegFan-fan_r_leg = Правая Нога -marking-MothRLegFan = Ниан, Правая нога (Вентилятор) -marking-MothLArmFan-fan_l_arm = Левая Рука -marking-MothLArmFan = Ниан, Левая рука (Вентилятор) -marking-MothRArmFan-fan_r_arm = Правая Рука -marking-MothRArmFan = Ниан, Правая рука (Вентилятор) -marking-MothChestFirewatch-firewatch_chest = Грудь -marking-MothChestFirewatch = Ниан, Грудь (Файрвотч) -marking-MothHeadFirewatch-firewatch_head = Голова -marking-MothHeadFirewatch = Ниан, Голова (Файрвотч) -marking-MothLLegFirewatch-firewatch_l_leg = Левая Нога -marking-MothLLegFirewatch = Ниан, Левая нога (Файрвотч) -marking-MothRLegFirewatch-firewatch_r_leg = Правая Нога -marking-MothRLegFirewatch = Ниан, Правая нога (Файрвотч) -marking-MothLArmFirewatch-firewatch_l_arm = Левая Рука -marking-MothLArmFirewatch = Ниан, Левая рука (Файрвотч) -marking-MothRArmFirewatch-firewatch_r_arm = Правая Рука -marking-MothRArmFirewatch = Ниан, Правая рука (Файрвотч) -marking-MothChestGothic-gothic_chest = Грудь -marking-MothChestGothic = Ниан, Грудь (Готика) -marking-MothHeadGothic-gothic_head = Голова -marking-MothHeadGothic = Ниан, Голова (Готика) -marking-MothLLegGothic-gothic_l_leg = Левая Нога -marking-MothLLegGothic = Ниан, Левая нога (Готика) -marking-MothRLegGothic-gothic_r_leg = Правая Нога -marking-MothRLegGothic = Ниан, Правая нога (Готика) -marking-MothLArmGothic-gothic_l_arm = Левая Рука -marking-MothLArmGothic = Ниан, Левая рука (Готика) -marking-MothRArmGothic-gothic_r_arm = Правая Рука -marking-MothRArmGothic = Ниан, Правая рука (Готика) -marking-MothChestJungle-jungle_chest = Грудь -marking-MothChestJungle = Ниан, Грудь (Джунгли) -marking-MothHeadJungle-jungle_head = Голова -marking-MothHeadJungle = Ниан, Голова (Джунгли) -marking-MothLLegJungle-jungle_l_leg = Левая Нога -marking-MothLLegJungle = Ниан, Левая нога (Джунгли) -marking-MothRLegJungle-jungle_r_leg = Правая Нога -marking-MothRLegJungle = Ниан, Правая нога (Джунгли) -marking-MothLArmJungle-jungle_l_arm = Левая Рука -marking-MothLArmJungle = Ниан, Левая рука (Джунгли) -marking-MothRArmJungle-jungle_r_arm = Правая Рука -marking-MothRArmJungle = Ниан, Правая рука (Джунгли) -marking-MothChestMoonfly-moonfly_chest = Грудь -marking-MothChestMoonfly = Ниан, Грудь (Мунфлай) -marking-MothHeadMoonfly-moonfly_head = Голова -marking-MothHeadMoonfly = Ниан, Голова (Мунфлай) -marking-MothLLegMoonfly-moonfly_l_leg = Левая Нога -marking-MothLLegMoonfly = Ниан, Левая нога (Мунфлай) -marking-MothRLegMoonfly-moonfly_r_leg = Правая Нога -marking-MothRLegMoonfly = Ниан, Правая нога (Мунфлай) -marking-MothLArmMoonfly-moonfly_l_arm = Левая Рука -marking-MothLArmMoonfly = Ниан, Левая рука (Мунфлай) -marking-MothRArmMoonfly-moonfly_r_arm = Правая Рука -marking-MothRArmMoonfly = Ниан, Правая рука (Мунфлай) -marking-MothChestOakworm-oakworm_chest = Грудь -marking-MothChestOakworm = Ниан, Грудь (Дубовый червь) -marking-MothHeadOakworm-oakworm_head = Голова -marking-MothHeadOakworm = Ниан, Голова (Дубовый червь) -marking-MothLLegOakworm-oakworm_l_leg = Левая Нога -marking-MothLLegOakworm = Ниан, Левая нога (Дубовый червь) -marking-MothRLegOakworm-oakworm_r_leg = Правая Нога -marking-MothRLegOakworm = Ниан, Правая нога (Дубовый червь) -marking-MothLArmOakworm-oakworm_l_arm = Левая Рука -marking-MothLArmOakworm = Ниан, Левая рука (Дубовый червь) -marking-MothRArmOakworm-oakworm_r_arm = Правая Рука -marking-MothRArmOakworm = Ниан, Правая рука (Дубовый червь) -marking-MothChestPointy-pointy_chest = Грудь -marking-MothChestPointy = Ниан, Грудь (Заострённые) -marking-MothHeadPointy-pointy_head = Голова -marking-MothHeadPointy = Ниан, Голова (Заострённые) -marking-MothLLegPointy-pointy_l_leg = Левая Нога -marking-MothLLegPointy = Ниан, Левая нога (Заострённые) -marking-MothRLegPointy-pointy_r_leg = Правая Нога -marking-MothRLegPointy = Ниан, Правая нога (Заострённые) -marking-MothLArmPointy-pointy_l_arm = Левая Рука -marking-MothLArmPointy = Ниан, Левая рука (Заострённые) -marking-MothRArmPointy-pointy_r_arm = Правая Рука -marking-MothRArmPointy = Ниан, Правая рука (Заострённые) -marking-MothChestRagged-ragged_chest = Грудь -marking-MothChestRagged = Ниан, Грудь (Потрёпанные) -marking-MothHeadRagged-ragged_head = Голова -marking-MothHeadRagged = Ниан, Голова (Потрёпанные) -marking-MothLLegRagged-ragged_l_leg = Левая Нога -marking-MothLLegRagged = Ниан, Левая нога (Потрёпанные) -marking-MothRLegRagged-ragged_r_leg = Правая Нога -marking-MothRLegRagged = Ниан, Правая нога (Потрёпанные) -marking-MothLArmRagged-ragged_l_arm = Левая Рука -marking-MothLArmRagged = Ниан, Левая рука (Потрёпанные) -marking-MothRArmRagged-ragged_r_arm = Правая Рука -marking-MothRArmRagged = Ниан, Правая рука (Потрёпанные) -marking-MothChestRoyal-royal_chest = Грудь -marking-MothChestRoyal = Ниан, Грудь (Королевские) -marking-MothHeadRoyal-royal_head = Голова -marking-MothHeadRoyal = Ниан, Голова (Королевские) -marking-MothLLegRoyal-royal_l_leg = Левая Нога -marking-MothLLegRoyal = Ниан, Левая нога (Королевские) -marking-MothRLegRoyal-royal_r_leg = Правая Нога -marking-MothRLegRoyal = Ниан, Правая нога (Королевские) -marking-MothLArmRoyal-royal_l_arm = Левая Рука -marking-MothLArmRoyal = Ниан, Левая рука (Королевские) -marking-MothRArmRoyal-royal_r_arm = Правая Рука -marking-MothRArmRoyal = Ниан, Правая рука (Королевские) -marking-MothChestWhitefly-whitefly_chest = Грудь -marking-MothChestWhitefly = Ниан, Грудь (Белая муха) -marking-MothHeadWhitefly-whitefly_head = Голова -marking-MothHeadWhitefly = Ниан, Голова (Белая муха) -marking-MothLLegWhitefly-whitefly_l_leg = Левая Нога -marking-MothLLegWhitefly = Ниан, Левая нога (Белая муха) -marking-MothRLegWhitefly-whitefly_r_leg = Правая Нога -marking-MothRLegWhitefly = Ниан, Правая нога (Белая муха) -marking-MothLArmWhitefly-whitefly_l_arm = Левая Рука -marking-MothLArmWhitefly = Ниан, Левая рука (Белая муха) -marking-MothRArmWhitefly-whitefly_r_arm = Правая Рука -marking-MothRArmWhitefly = Ниан, Правая рука (Белая муха) -marking-MothChestWitchwing-witchwing_chest = Грудь -marking-MothChestWitchwing = Ниан, Грудь (Ведьмино крыло) -marking-MothHeadWitchwing-witchwing_head = Голова -marking-MothHeadWitchwing = Ниан, Голова (Ведьмино крыло) -marking-MothLLegWitchwing-witchwing_l_leg = Левая Нога -marking-MothLLegWitchwing = Ниан, Левая нога (Ведьмино крыло) -marking-MothRLegWitchwing-witchwing_r_leg = Правая Нога -marking-MothRLegWitchwing = Ниан, Правая нога (Ведьмино крыло) -marking-MothLArmWitchwing-witchwing_l_arm = Левая Рука -marking-MothLArmWitchwing = Ниан, Левая рука (Ведьмино крыло) -marking-MothRArmWitchwing-witchwing_r_arm = Правая Рука -marking-MothRArmWitchwing = Ниан, Правая рука (Ведьмино крыло) +#marking-MothAntennasDefault-default = Антенна +#marking-MothAntennasDefault = Антенны (Обычные) +#marking-MothAntennasCharred-charred = Антенна +#marking-MothAntennasCharred = Антенны (Обугленные) +#marking-MothAntennasDbushy-dbushy = Антенна +#marking-MothAntennasDbushy = Антенны (Кустистые) +#marking-MothAntennasDcurvy-dcurvy = Антенна +#marking-MothAntennasDcurvy = Антенны (Закрученные) +#marking-MothAntennasDfan-dfan = Антенна +#marking-MothAntennasDfan = Антенны (Вентилятор) +#marking-MothAntennasDpointy-dpointy = Антенна +#marking-MothAntennasDpointy = Антенны (Заострённые) +#marking-MothAntennasFeathery-feathery = Антенна +#marking-MothAntennasFeathery = Антенны (Перистые) +#marking-MothAntennasFirewatch-firewatch = Антенна +#marking-MothAntennasFirewatch = Антенны (Файрвотч) +#marking-MothAntennasGray-gray = Антенна +#marking-MothAntennasGray = Антенны (Серые) +#marking-MothAntennasJungle-jungle = Антенна +#marking-MothAntennasJungle = Антенны (Джунгли) +#marking-MothAntennasMaple-maple = Антенна +#marking-MothAntennasMaple = Антенны (Клён) +#marking-MothAntennasMoffra-moffra = Антенна +#marking-MothAntennasMoffra = Антенны (Мотра) +#marking-MothAntennasOakworm-oakworm = Антенна +#marking-MothAntennasOakworm = Антенны (Дубовый червь) +#marking-MothAntennasPlasmafire-plasmafire = Антенна +#marking-MothAntennasPlasmafire = Антенны (Пожар плазмы) +#marking-MothAntennasRoyal-royal = Антенна +#marking-MothAntennasRoyal = Антенны (Королевские) +#marking-MothAntennasStriped-striped = Антенна +#marking-MothAntennasStriped = Антенны (Полосатые) +#marking-MothAntennasWhitefly-whitefly = Антенна +#marking-MothAntennasWhitefly = Антенны (Белая муха) +#marking-MothAntennasWitchwing-witchwing = Антенна +#marking-MothAntennasWitchwing = Антенны (Ведьмино крыло) +#marking-MothAntennasUnderwing-underwing_primary = Основной +#marking-MothAntennasUnderwing-underwing_secondary = Вторичный +#marking-MothAntennasUnderwing = Антенны (Подкрылье) +#marking-MothWingsDefault-default = Крыло +#marking-MothWingsDefault = Крылья (Обычные) +#marking-MothWingsCharred-charred = Крыло +#marking-MothWingsCharred = Крылья (Обугленные) +#marking-MothWingsDbushy-dbushy_primary = Основной +#marking-MothWingsDbushy-dbushy_secondary = Вторичный +#marking-MothWingsDbushy = Крылья (Тёмные и Кустистые) +#marking-MothWingsDeathhead-deathhead_primary = Основной +#marking-MothWingsDeathhead-deathhead_secondary = Вторичный +#marking-MothWingsDeathhead = Крылья (Рука Смерти) +#marking-MothWingsFan-fan = Крыло +#marking-MothWingsFan = Крылья (Вентилятор) +#marking-MothWingsDfan-dfan = Крыло +#marking-MothWingsDfan = Крылья (Тёмные и Вентилятор) +#marking-MothWingsFeathery-feathery = Крыло +#marking-MothWingsFeathery = Крылья (Перистые) +#marking-MothWingsFirewatch-firewatch_primary = Основной +#marking-MothWingsFirewatch-firewatch_secondary = Вторичный +#marking-MothWingsFirewatch = Крылья (Файрвотч) +#marking-MothWingsGothic-gothic = Крыло +#marking-MothWingsGothic = Крылья (Готика) +#marking-MothWingsJungle-jungle = Крыло +#marking-MothWingsJungle = Крылья (Джунгли) +#marking-MothWingsLadybug-ladybug = Крыло +#marking-MothWingsLadybug = Крылья (Божья коровка) +#marking-MothWingsMaple-maple = Крыло +#marking-MothWingsMaple = Крылья (Клён) +#marking-MothWingsMoffra-moffra_primary = Основной +#marking-MothWingsMoffra-moffra_secondary = Вторичный +#marking-MothWingsMoffra = Крылья (Мотра) +#marking-MothWingsOakworm-oakworm = Крыло +#marking-MothWingsOakworm = Крылья (Дубовый червь) +#marking-MothWingsPlasmafire-plasmafire_primary = Основной +#marking-MothWingsPlasmafire-plasmafire_secondary = Вторичный +#marking-MothWingsPlasmafire = Крылья (Пожар плазмы) +#marking-MothWingsPointy-pointy = Крыло +#marking-MothWingsPointy = Крылья (Заострённые) +#marking-MothWingsRoyal-royal_primary = Основной +#marking-MothWingsRoyal-royal_secondary = Вторичный +#marking-MothWingsRoyal = Крылья (Королевские) +#marking-MothWingsStellar-stellar = Крыло +#marking-MothWingsStellar = Крылья (Звёздные) +#marking-MothWingsStriped-striped = Крыло +#marking-MothWingsStriped = Крылья (Полосатые) +#marking-MothWingsSwirly-swirly = Крыло +#marking-MothWingsSwirly = Крылья (Завихрение) +#marking-MothWingsWhitefly-whitefly = Крыло +#marking-MothWingsWhitefly = Крылья (Белая муха) +#marking-MothWingsWitchwing-witchwing = Крыло +#marking-MothWingsWitchwing = Крылья (Ведьмино крыло) +#marking-MothWingsUnderwing-underwing_primary = Основной +#marking-MothWingsUnderwing-underwing_secondary = Вторичный +#marking-MothWingsUnderwing = Крылья (Подкрылье) +#marking-MothChestCharred-charred_chest = Грудь +#marking-MothChestCharred = Ниан, Грудь (Обугленные) +#marking-MothHeadCharred-charred_head = Голова +#marking-MothHeadCharred = Ниан, Голова (Обугленные) +#marking-MothLLegCharred-charred_l_leg = Левая Нога +#marking-MothLLegCharred = Ниан, Левая нога (Обугленные) +#marking-MothRLegCharred-charred_r_leg = Правая Нога +#marking-MothRLegCharred = Ниан, Правая нога (Обугленные) +#marking-MothLArmCharred-charred_l_arm = Левая Рука +#marking-MothLArmCharred = Ниан, Левая рука (Обугленные) +#marking-MothRArmCharred-charred_r_arm = Правая Рука +#marking-MothRArmCharred = Ниан, Правая рука (Обугленные) +#marking-MothChestDeathhead-deathhead_chest = Грудь +#marking-MothChestDeathhead = Ниан, Грудь (Рука Смерти) +#marking-MothHeadDeathhead-deathhead_head = Голова +#marking-MothHeadDeathhead = Ниан, Голова (Рука Смерти) +#marking-MothLLegDeathhead-deathhead_l_leg = Левая Нога +#marking-MothLLegDeathhead = Ниан, Левая нога (Рука Смерти) +#marking-MothRLegDeathhead-deathhead_r_leg = Правая Нога +#marking-MothRLegDeathhead = Ниан, Правая нога (Рука Смерти) +#marking-MothLArmDeathhead-deathhead_l_arm = Левая Рука +#marking-MothLArmDeathhead = Ниан, Левая рука (Рука Смерти) +#marking-MothRArmDeathhead-deathhead_r_arm = Правая Рука +#marking-MothRArmDeathhead = Ниан, Правая рука (Рука Смерти) +#marking-MothChestFan-fan_chest = Грудь +#marking-MothChestFan = Ниан, Грудь (Вентилятор) +#marking-MothHeadFan-fan_head = Голова +#marking-MothHeadFan = Ниан, Голова (Вентилятор) +#marking-MothLLegFan-fan_l_leg = Левая Нога +#marking-MothLLegFan = Ниан, Левая нога (Вентилятор) +#marking-MothRLegFan-fan_r_leg = Правая Нога +#marking-MothRLegFan = Ниан, Правая нога (Вентилятор) +#marking-MothLArmFan-fan_l_arm = Левая Рука +#marking-MothLArmFan = Ниан, Левая рука (Вентилятор) +#marking-MothRArmFan-fan_r_arm = Правая Рука +#marking-MothRArmFan = Ниан, Правая рука (Вентилятор) +#marking-MothChestFirewatch-firewatch_chest = Грудь +#marking-MothChestFirewatch = Ниан, Грудь (Файрвотч) +#marking-MothHeadFirewatch-firewatch_head = Голова +#marking-MothHeadFirewatch = Ниан, Голова (Файрвотч) +#marking-MothLLegFirewatch-firewatch_l_leg = Левая Нога +#marking-MothLLegFirewatch = Ниан, Левая нога (Файрвотч) +#marking-MothRLegFirewatch-firewatch_r_leg = Правая Нога +#marking-MothRLegFirewatch = Ниан, Правая нога (Файрвотч) +#marking-MothLArmFirewatch-firewatch_l_arm = Левая Рука +#marking-MothLArmFirewatch = Ниан, Левая рука (Файрвотч) +#marking-MothRArmFirewatch-firewatch_r_arm = Правая Рука +#marking-MothRArmFirewatch = Ниан, Правая рука (Файрвотч) +#marking-MothChestGothic-gothic_chest = Грудь +#marking-MothChestGothic = Ниан, Грудь (Готика) +#marking-MothHeadGothic-gothic_head = Голова +#marking-MothHeadGothic = Ниан, Голова (Готика) +#marking-MothLLegGothic-gothic_l_leg = Левая Нога +#marking-MothLLegGothic = Ниан, Левая нога (Готика) +#marking-MothRLegGothic-gothic_r_leg = Правая Нога +#marking-MothRLegGothic = Ниан, Правая нога (Готика) +#marking-MothLArmGothic-gothic_l_arm = Левая Рука +#marking-MothLArmGothic = Ниан, Левая рука (Готика) +#marking-MothRArmGothic-gothic_r_arm = Правая Рука +#marking-MothRArmGothic = Ниан, Правая рука (Готика) +#marking-MothChestJungle-jungle_chest = Грудь +#marking-MothChestJungle = Ниан, Грудь (Джунгли) +#marking-MothHeadJungle-jungle_head = Голова +#marking-MothHeadJungle = Ниан, Голова (Джунгли) +#marking-MothLLegJungle-jungle_l_leg = Левая Нога +#marking-MothLLegJungle = Ниан, Левая нога (Джунгли) +#marking-MothRLegJungle-jungle_r_leg = Правая Нога +#marking-MothRLegJungle = Ниан, Правая нога (Джунгли) +#marking-MothLArmJungle-jungle_l_arm = Левая Рука +#marking-MothLArmJungle = Ниан, Левая рука (Джунгли) +#marking-MothRArmJungle-jungle_r_arm = Правая Рука +#marking-MothRArmJungle = Ниан, Правая рука (Джунгли) +#marking-MothChestMoonfly-moonfly_chest = Грудь +#marking-MothChestMoonfly = Ниан, Грудь (Мунфлай) +#marking-MothHeadMoonfly-moonfly_head = Голова +#marking-MothHeadMoonfly = Ниан, Голова (Мунфлай) +#marking-MothLLegMoonfly-moonfly_l_leg = Левая Нога +#marking-MothLLegMoonfly = Ниан, Левая нога (Мунфлай) +#marking-MothRLegMoonfly-moonfly_r_leg = Правая Нога +#marking-MothRLegMoonfly = Ниан, Правая нога (Мунфлай) +#marking-MothLArmMoonfly-moonfly_l_arm = Левая Рука +#marking-MothLArmMoonfly = Ниан, Левая рука (Мунфлай) +#marking-MothRArmMoonfly-moonfly_r_arm = Правая Рука +#marking-MothRArmMoonfly = Ниан, Правая рука (Мунфлай) +#marking-MothChestOakworm-oakworm_chest = Грудь +#marking-MothChestOakworm = Ниан, Грудь (Дубовый червь) +#marking-MothHeadOakworm-oakworm_head = Голова +#marking-MothHeadOakworm = Ниан, Голова (Дубовый червь) +#marking-MothLLegOakworm-oakworm_l_leg = Левая Нога +#marking-MothLLegOakworm = Ниан, Левая нога (Дубовый червь) +#marking-MothRLegOakworm-oakworm_r_leg = Правая Нога +#marking-MothRLegOakworm = Ниан, Правая нога (Дубовый червь) +#marking-MothLArmOakworm-oakworm_l_arm = Левая Рука +#marking-MothLArmOakworm = Ниан, Левая рука (Дубовый червь) +#marking-MothRArmOakworm-oakworm_r_arm = Правая Рука +#marking-MothRArmOakworm = Ниан, Правая рука (Дубовый червь) +#marking-MothChestPointy-pointy_chest = Грудь +#marking-MothChestPointy = Ниан, Грудь (Заострённые) +#marking-MothHeadPointy = Ниан, Голова (Заострённые) +#marking-MothLLegPointy-pointy_l_leg = Левая Нога +#marking-MothLLegPointy = Ниан, Левая нога (Заострённые) +#marking-MothRLegPointy-pointy_r_leg = Правая Нога +#marking-MothRLegPointy = Ниан, Правая нога (Заострённые) +#marking-MothLArmPointy-pointy_l_arm = Левая Рука +#marking-MothLArmPointy = Ниан, Левая рука (Заострённые) +#marking-MothRArmPointy-pointy_r_arm = Правая Рука +#marking-MothRArmPointy = Ниан, Правая рука (Заострённые) +#marking-MothChestRagged-ragged_chest = Грудь +#marking-MothChestRagged = Ниан, Грудь (Потрёпанные) +#marking-MothHeadRagged-ragged_head = Голова +#marking-MothHeadRagged = Ниан, Голова (Потрёпанные) +#marking-MothLLegRagged-ragged_l_leg = Левая Нога +#marking-MothLLegRagged = Ниан, Левая нога (Потрёпанные) +#marking-MothRLegRagged-ragged_r_leg = Правая Нога +#marking-MothRLegRagged = Ниан, Правая нога (Потрёпанные) +#marking-MothLArmRagged-ragged_l_arm = Левая Рука +#marking-MothLArmRagged = Ниан, Левая рука (Потрёпанные) +#marking-MothRArmRagged-ragged_r_arm = Правая Рука +#marking-MothRArmRagged = Ниан, Правая рука (Потрёпанные) +#marking-MothChestRoyal-royal_chest = Грудь +#marking-MothChestRoyal = Ниан, Грудь (Королевские) +#marking-MothHeadRoyal-royal_head = Голова +#marking-MothHeadRoyal = Ниан, Голова (Королевские) +#marking-MothLLegRoyal-royal_l_leg = Левая Нога +#marking-MothLLegRoyal = Ниан, Левая нога (Королевские) +#marking-MothRLegRoyal-royal_r_leg = Правая Нога +#marking-MothRLegRoyal = Ниан, Правая нога (Королевские) +#marking-MothLArmRoyal-royal_l_arm = Левая Рука +#marking-MothLArmRoyal = Ниан, Левая рука (Королевские) +#marking-MothRArmRoyal-royal_r_arm = Правая Рука +#marking-MothRArmRoyal = Ниан, Правая рука (Королевские) +#marking-MothChestWhitefly-whitefly_chest = Грудь +#marking-MothChestWhitefly = Ниан, Грудь (Белая муха) +#marking-MothHeadWhitefly-whitefly_head = Голова +#marking-MothHeadWhitefly = Ниан, Голова (Белая муха) +#marking-MothLLegWhitefly-whitefly_l_leg = Левая Нога +#marking-MothLLegWhitefly = Ниан, Левая нога (Белая муха) +#marking-MothRLegWhitefly-whitefly_r_leg = Правая Нога +#marking-MothRLegWhitefly = Ниан, Правая нога (Белая муха) +#marking-MothLArmWhitefly-whitefly_l_arm = Левая Рука +#marking-MothLArmWhitefly = Ниан, Левая рука (Белая муха) +#marking-MothRArmWhitefly-whitefly_r_arm = Правая Рука +#marking-MothRArmWhitefly = Ниан, Правая рука (Белая муха) +#marking-MothChestWitchwing-witchwing_chest = Грудь +#marking-MothChestWitchwing = Ниан, Грудь (Ведьмино крыло) +#marking-MothHeadWitchwing-witchwing_head = Голова +#marking-MothHeadWitchwing = Ниан, Голова (Ведьмино крыло) +#marking-MothLLegWitchwing-witchwing_l_leg = Левая Нога +#marking-MothLLegWitchwing = Ниан, Левая нога (Ведьмино крыло) +#marking-MothRLegWitchwing-witchwing_r_leg = Правая Нога +#marking-MothRLegWitchwing = Ниан, Правая нога (Ведьмино крыло) +#marking-MothLArmWitchwing-witchwing_l_arm = Левая Рука +#marking-MothLArmWitchwing = Ниан, Левая рука (Ведьмино крыло) +#marking-MothRArmWitchwing-witchwing_r_arm = Правая Рука +#marking-MothRArmWitchwing = Ниан, Правая рука (Ведьмино крыло) \ No newline at end of file diff --git a/Resources/Locale/ru-RU/mass-media/news-ui.ftl b/Resources/Locale/ru-RU/mass-media/news-ui.ftl index 3e86a3f4f42..b94b4540527 100644 --- a/Resources/Locale/ru-RU/mass-media/news-ui.ftl +++ b/Resources/Locale/ru-RU/mass-media/news-ui.ftl @@ -39,4 +39,4 @@ news-write-ui-richtext-tooltip = { "[bullet/]color" } { "[bullet/]bullet[/color]" } news-pda-notification-header = Новая новостная статья -news-publish-admin-announcement = { $actor } опубликовал(а) новостную статью { $title } за авторством { $author }" +news-publish-admin-announcement = { $actor } опубликовал(а) новостную статью { $title } за авторством { $author } diff --git a/Resources/Locale/ru-RU/paper/envelope.ftl b/Resources/Locale/ru-RU/paper/envelope.ftl new file mode 100644 index 00000000000..f5f9f266e25 --- /dev/null +++ b/Resources/Locale/ru-RU/paper/envelope.ftl @@ -0,0 +1,9 @@ +envelope-verb-seal = Запечатать +envelope-verb-tear = Вскрыть +envelope-letter-slot = Письмо +envelope-sealed-examine = [color=gray]{ CAPITALIZE($envelope) } запечатан[/color] +envelope-torn-examine = [color=yellow]{ CAPITALIZE($envelope) } порван и непригоден для использования![/color] +envelope-default-message = + ОТ: + + КОМУ: diff --git a/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl b/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl index df5b925e496..750eb91749e 100644 --- a/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl +++ b/Resources/Locale/ru-RU/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl @@ -9,13 +9,13 @@ particle-accelerator-control-menu-alarm-control-2 = [bold][color=red]СБОЙ О particle-accelerator-control-menu-scan-parts-button = Сканировать части particle-accelerator-control-menu-check-containment-field-warning = Убедитесь, что сдерживающее поле активно! particle-accelerator-control-menu-foo-bar-baz = FOO-BAR-BAZ +particle-accelerator-control-menu-status-label = [bold]Статус:[/bold] particle-accelerator-control-menu-status-unknown = [font="Monospace"][color=red]Нет данных[/color][/bold] -particle-accelerator-control-menu-status-label = Статус: { $status } -particle-accelerator-control-menu-status-operational = Работает -particle-accelerator-control-menu-status-incomplete = Не завершено +particle-accelerator-control-menu-status-operational = [font="Monospace"][color=green]Работоспособно[/color][/bold] +particle-accelerator-control-menu-status-incomplete = [font="Monospace"][color=red]Не завершено[/color][/bold] +particle-accelerator-control-menu-draw = [bold]Мощность:[/bold] particle-accelerator-control-menu-draw-value = [font="Monospace"]{ $watts }/{ $lastReceive }[/font] -particle-accelerator-control-menu-draw-not-available = Мощность: Н/Д +particle-accelerator-control-menu-draw-not-available = [font="Monospace"][color=gray]Н/Д[/color][/font] particle-accelerator-radio-message-on = Питание УЧ было включено. particle-accelerator-radio-message-off = Питание УЧ было выключено. particle-accelerator-radio-message-num = Мощность УЧ установлена на уровень { $level }. -particle-accelerator-control-menu-draw = Мощность: { $watts }/{ $lastReceive } diff --git a/Resources/Locale/ru-RU/power/components/charger.ftl b/Resources/Locale/ru-RU/power/components/charger.ftl index eaff900edbc..182607356e1 100644 --- a/Resources/Locale/ru-RU/power/components/charger.ftl +++ b/Resources/Locale/ru-RU/power/components/charger.ftl @@ -1,2 +1,4 @@ charger-examine = Заряжает [color={ $color }]{ $chargeRate }Вт[/color] в секунду. charger-component-charge-rate = скорость зарядки +charger-content = Текущий заряд: [color=#5E7C16]{ $chargePercentage }[/color]%. +charger-empty = В зарядном устройстве ничего нет. diff --git a/Resources/Locale/ru-RU/preferences/ui/humanoid-profile-editor.ftl b/Resources/Locale/ru-RU/preferences/ui/humanoid-profile-editor.ftl index 89c2f0373c6..77f2f665a1e 100644 --- a/Resources/Locale/ru-RU/preferences/ui/humanoid-profile-editor.ftl +++ b/Resources/Locale/ru-RU/preferences/ui/humanoid-profile-editor.ftl @@ -18,6 +18,8 @@ humanoid-profile-editor-pronouns-epicene-text = Они / Их humanoid-profile-editor-pronouns-neuter-text = Оно / Его humanoid-profile-editor-import-button = Импорт humanoid-profile-editor-export-button = Экспорт +humanoid-profile-editor-export-image-button = Экспорт изображения +humanoid-profile-editor-open-image-button = Открыть изображения humanoid-profile-editor-save-button = Сохранить humanoid-profile-editor-reset-button = Сбросить humanoid-profile-editor-spawn-priority-label = Приоритет спавна: @@ -52,3 +54,4 @@ humanoid-profile-editor-no-traits = Нет доступных черт humanoid-profile-editor-trait-count-hint = Доступно очков: [{ $current }/{ $max }] trait-category-disabilities = Ограничения trait-category-speech = Черты речи +trait-category-quirks = Причуды diff --git a/Resources/Locale/ru-RU/procedural/expeditions.ftl b/Resources/Locale/ru-RU/procedural/expeditions.ftl index 4205731365c..2506ec2cde7 100644 --- a/Resources/Locale/ru-RU/procedural/expeditions.ftl +++ b/Resources/Locale/ru-RU/procedural/expeditions.ftl @@ -40,3 +40,29 @@ salvage-expedition-announcement-countdown-seconds = salvage-expedition-reward-description = Награда за завершение миссии salvage-expedition-announcement-dungeon = Подземелье расположено от вас на { $direction }. salvage-expedition-completed = Экспедиция окончена. +# Salvage biome mod +salvage-biome-mod-caves = Пещеры +salvage-biome-mod-grasslands = Луга +salvage-biome-mod-snow = Снега +salvage-biome-mod-lava = Лава +# Salvage mods +salvage-light-mod-daylight = День +salvage-light-mod-evening = Вечер +salvage-light-mod-night = Ночь +salvage-temperature-mod-room-temperature = Комнатная температура +salvage-temperature-mod-hot = Жара +salvage-temperature-mod-high-temperature = Высокая температура +salvage-temperature-mod-extreme-heat = Экстремальная жара +salvage-temperature-mod-cold = Холод +salvage-temperature-mod-low-temperature = Низкая температура +salvage-temperature-mod-extreme-cold = Экстремальный холод +salvage-air-mod-no-atmosphere = Отсутствие атмосферы +salvage-air-mod-breathable-atmosphere = Пригодная атмосфера +salvage-air-mod-dangerous-atmosphere = Опасная атмосфера +salvage-air-mod-toxic-atmosphere = Токсичная атмосфера +salvage-air-mod-volatile-atmosphere = Изменчивая атмосфера +salvage-dungeon-mod-lava-brig = Лавовый бриг +salvage-dungeon-mod-snowy-labs = Снежная лаборатория +salvage-dungeon-mod-experiment = Эксперимент +salvage-dungeon-mod-haunted = Призраки +salvage-dungeon-mod-mineshaft = Шахта diff --git a/Resources/Locale/ru-RU/procedural/salvage-faction.ftl b/Resources/Locale/ru-RU/procedural/salvage-faction.ftl new file mode 100644 index 00000000000..550e99a9729 --- /dev/null +++ b/Resources/Locale/ru-RU/procedural/salvage-faction.ftl @@ -0,0 +1,2 @@ +salvage-faction-xenos = Ксено +salvage-faction-carps = Карпы diff --git a/Resources/Locale/ru-RU/reagents/meta/pyrotechnic.ftl b/Resources/Locale/ru-RU/reagents/meta/pyrotechnic.ftl index 5a4aa1a5985..2106f0ab833 100644 --- a/Resources/Locale/ru-RU/reagents/meta/pyrotechnic.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/pyrotechnic.ftl @@ -4,8 +4,8 @@ reagent-name-napalm = напалм reagent-desc-napalm = Немножко огнеопасен. reagent-name-phlogiston = флогистон reagent-desc-phlogiston = Подожжёт и заставит вас гореть. -reagent-name-chlorine-trifluoride = CLF3 -reagent-desc-chlorine-trifluoride = Он же трифторид хлора. Вы очень, ОЧЕНЬ не хотите, чтобы эта дрянь оказалась рядом с вами. +reagent-name-chlorine-trifluoride = трифторид хлора +reagent-desc-chlorine-trifluoride = Вы очень, ОЧЕНЬ не хотите, чтобы эта дрянь оказалась рядом с вами. reagent-name-foaming-agent = пенообразующий агент reagent-desc-foaming-agent = Делает пену, подобную той, что требуется для гранат с металлической пеной. reagent-name-welding-fuel = сварочное топливо diff --git a/Resources/Locale/ru-RU/seeds/seeds.ftl b/Resources/Locale/ru-RU/seeds/seeds.ftl index d18d9fa1a78..c363fe194c1 100644 --- a/Resources/Locale/ru-RU/seeds/seeds.ftl +++ b/Resources/Locale/ru-RU/seeds/seeds.ftl @@ -30,6 +30,8 @@ seeds-potato-name = картофель seeds-potato-display-name = картофель seeds-sugarcane-name = сахарный тростник seeds-sugarcane-display-name = сахарный тростник +seeds-papercane-name = бумажный тростник +seeds-papercane-display-name = бумажный тростник seeds-towercap-name = грибошляпник seeds-towercap-display-name = грибошляпник seeds-steelcap-name = сталешляпник @@ -46,6 +48,8 @@ seeds-eggplant-name = баклажан seeds-eggplant-display-name = баклажан seeds-apple-name = яблоко seeds-apple-display-name = яблоня +seeds-goldenapple-name = золотое яблоко +seeds-goldenapple-display-name = золотая яблоня seeds-corn-name = кукуруза seeds-corn-display-name = початок кукурузы seeds-onion-name = лук @@ -86,6 +90,8 @@ seeds-ambrosiadeus-name = амброзия деус seeds-ambrosiadeus-display-name = амброзия деус seeds-galaxythistle-name = галакточертополох seeds-galaxythistle-display-name = галакточертополох +seeds-glasstle-name = стеклополох +seeds-glasstle-display-name = стеклополох seeds-flyamanita-name = мухоморы seeds-flyamanita-display-name = мухоморы seeds-gatfruit-name = гатфрукт diff --git a/Resources/Locale/ru-RU/species/species.ftl b/Resources/Locale/ru-RU/species/species.ftl index 0f2b10ddf26..7a96db115b8 100644 --- a/Resources/Locale/ru-RU/species/species.ftl +++ b/Resources/Locale/ru-RU/species/species.ftl @@ -6,6 +6,6 @@ species-name-reptilian = Унатх species-name-slime = Слаймолюд species-name-diona = Диона species-name-arachnid = Арахнид -species-name-moth = Ниан +#species-name-moth = Ниан species-name-skeleton = Скелет species-name-vox = Вокс diff --git a/Resources/Locale/ru-RU/speech/speech-chatsan.ftl b/Resources/Locale/ru-RU/speech/speech-chatsan.ftl index 3e043346ebb..2cbe7cfbfbd 100644 --- a/Resources/Locale/ru-RU/speech/speech-chatsan.ftl +++ b/Resources/Locale/ru-RU/speech/speech-chatsan.ftl @@ -91,3 +91,13 @@ chatsan-word-48 = rn chatsan-replacement-48 = right now chatsan-word-49 = atm chatsan-replacement-49 = at the moment +chatsan-word-50 = istg +chatsan-replacement-50 = I swear to god +chatsan-word-51 = rq +chatsan-replacement-51 = real quick +chatsan-word-52 = dw +chatsan-replacement-52 = don't worry +chatsan-word-53 = wru +chatsan-replacement-53 = where are you +chatsan-word-54 = fs +chatsan-replacement-54 = for sure diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl index a7c4b197eee..a9b55a2b1bc 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl @@ -1,22 +1,22 @@ -ent-PartMoth = часть тела нианы - .desc = { ent-BasePart.desc } -ent-TorsoMoth = торс нианы - .desc = { ent-PartMoth.desc } -ent-HeadMoth = голова нианы - .desc = { ent-PartMoth.desc } -ent-LeftArmMoth = левая рука нианы - .desc = { ent-PartMoth.desc } -ent-RightArmMoth = правая рука нианы - .desc = { ent-PartMoth.desc } -ent-LeftHandMoth = левая кисть нианы - .desc = { ent-PartMoth.desc } -ent-RightHandMoth = правая кисть нианы - .desc = { ent-PartMoth.desc } -ent-LeftLegMoth = левая нога нианы - .desc = { ent-PartMoth.desc } -ent-RightLegMoth = правая нога нианы - .desc = { ent-PartMoth.desc } -ent-LeftFootMoth = левая стопа нианы - .desc = { ent-PartMoth.desc } -ent-RightFootMoth = правая стопа нианы - .desc = { ent-PartMoth.desc } +#ent-PartMoth = часть тела нианы +# .desc = { ent-BasePart.desc } +#ent-TorsoMoth = торс нианы +# .desc = { ent-PartMoth.desc } +#ent-HeadMoth = голова нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftArmMoth = левая рука нианы +# .desc = { ent-PartMoth.desc } +#ent-RightArmMoth = правая рука нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftHandMoth = левая кисть нианы +# .desc = { ent-PartMoth.desc } +#ent-RightHandMoth = правая кисть нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftLegMoth = левая нога нианы +# .desc = { ent-PartMoth.desc } +#ent-RightLegMoth = правая нога нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftFootMoth = левая стопа нианы +# .desc = { ent-PartMoth.desc } +#ent-RightFootMoth = правая стопа нианы +# .desc = { ent-PartMoth.desc } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl index d26d795b5ef..0f8422f445b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl @@ -61,3 +61,5 @@ ent-BoxCandleSmall = коробка маленьких свечей .desc = { ent-BoxCandle.desc } ent-BoxDarts = коробка дротиков .desc = Коробка, наполненная разноцветными дротиками. +ent-BoxEnvelope = коробка конвертов + .desc = Коробка, наполненная конвертами. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl new file mode 100644 index 00000000000..faf48d38e66 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/permaescape.ftl @@ -0,0 +1,32 @@ +ent-CratePermaEscapeSpawner = Perma Escape Crate Spawner + .desc = { ent-CrateEmptySpawner.desc } +ent-CratePermaEscapeDigging = { ent-CrateGenericSteel } + .suffix = Копание + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeEVA = { ent-CrateGenericSteel } + .suffix = EVA + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeGun = { ent-CrateGenericSteel } + .suffix = Огнестрел + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeBureaucracy = { ent-CrateGenericSteel } + .suffix = Написание + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeLights = { ent-CrateGenericSteel } + .suffix = Химсвет + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeMats = { ent-CrateGenericSteel } + .suffix = Материалы + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeGiftsFromSyndicate = { ent-CrateGenericSteel } + .suffix = Подарки Синдиката + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeMerc = { ent-CrateGenericSteel } + .suffix = Наёмническое + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeComs = { ent-CrateGenericSteel } + .suffix = Коммуникация + .desc = { ent-CrateGenericSteel.desc } +ent-CratePermaEscapeTowercap = { ent-CrateGenericSteel } + .suffix = Грибошляпник + .desc = { ent-CrateGenericSteel.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl index fa619988bbc..653011aa32c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/service.ftl @@ -31,3 +31,5 @@ ent-CrateJanitorBiosuit = ящик биозащитных костюмов уб ent-CrateTrashCartFilled = { ent-CrateTrashCart } .suffix = Заполнен .desc = { ent-CrateTrashCart.desc } +ent-CrateCandles = ящик свечей + .desc = Содержит 4 коробки свечей, 2 больших и 2 маленьких. Для создания атмосферы или ещё чего-нибудь. 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 0623c216eec..e929a455ca9 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 @@ -12,3 +12,6 @@ ent-ClothingShoesHighheelBootsFilled = { ent-ClothingShoesHighheelBoots } ent-ClothingShoesBootsMercFilled = { ent-ClothingShoesBootsMerc } .suffix = Заполненный .desc = { ent-ClothingShoesBootsMerc.desc } +ent-ClothingShoesBootsSyndieFilled = { ent-ClothingShoesBootsCombat } + .suffix = Заполненный, Метательный нож + .desc = { ent-ClothingShoesBootsCombat.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl index 293cf825e97..42987ea0c13 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl @@ -26,8 +26,8 @@ ent-ClothingHeadHatCatEars = кошачьи ушки .desc = НЯ! .suffix = НЕ МАППИТЬ! ent-ClothingHeadHatCatEarsValid = { ent-ClothingHeadHatCatEars } - .suffix = Valid, НЕ МАППИТЬ! - .desc = { ent-ClothingHeadHatCatEars.desc } + .suffix = Valid, НЕ МАППИТЬ! + .desc = { ent-ClothingHeadHatCatEars.desc } ent-ActionBecomeValid = Become Valid .desc = *замечает ваш знак смерти* owo whats this ent-ClothingHeadHatDogEars = собачьи ушки diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/masks/masks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/masks/masks.ftl index 30bac64d4f6..17a57d5b39a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/masks/masks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/masks/masks.ftl @@ -27,6 +27,8 @@ ent-ClothingMaskClown = { ent-ClothingMaskClownBase } .desc = { ent-ClothingMaskClownBase.desc } ent-ClothingMaskClownBanana = банановые маска и парик клоуна .desc = { ent-ClothingMaskClown.desc } +ent-ClothingMaskClownSecurity = маска и парик клоуна безопасности + .desc = Спорно оксюморонные защитная маска и парик. ent-ClothingMaskJoy = маска радости .desc = Выразите свою радость или спрячьте свою печаль с помощью этой хохочущей до слёз маски. ent-ClothingMaskMime = маска мима diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl index 1cba1671bff..bf7c19dc710 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/shoes/magboots.ftl @@ -7,6 +7,6 @@ ent-ClothingShoesBootsMagSci = { ent-ClothingShoesBootsMag } ent-ClothingShoesBootsMagBlinding = магнитные сапоги ослепляющей скорости .desc = Они будут отлично смотреться на ловкаче вроде вас. ent-ClothingShoesBootsMagSyndie = кроваво-красные магнитные сапоги - .desc = Созданные по технологии реверс-инжиниринга магнитные ботинки с встроенными ускорителями. + .desc = Созданные по технологии реверс-инжиниринга магнитные ботинки с встроенными ускорителями. Вмещает 0,75 Л газа. ent-ActionToggleMagboots = Переключить магнитные ботинки .desc = Включает или выключает магнитные ботинки. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/foldable.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/foldable.ftl index 01143b541c2..468f6b1ef36 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/foldable.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/foldable.ftl @@ -1,2 +1,4 @@ ent-BaseFoldable = складной .desc = { "" } +ent-BaseDeployFoldable = deploy foldable + .desc = { ent-BaseFoldable.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/temp.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/temp.ftl new file mode 100644 index 00000000000..0fddc4a73ca --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/temp.ftl @@ -0,0 +1,2 @@ +ent-TemporaryEntityForTimedDespawnSpawners = { "" } + .desc = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl index 15dc5928ff9..2c752342b63 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/human.ftl @@ -1,11 +1,17 @@ ent-MobHuman = Урист МакЧеловек .desc = { ent-BaseMobHuman.desc } -ent-MobHumanSyndicateAgentBase = Агент Синдиката +ent-MobHumanSyndicateAgentBase = агент Синдиката .suffix = Человек, Базовый .desc = { ent-MobHuman.desc } -ent-MobHumanSyndicateAgent = Агент Синдиката +ent-MobHumanSyndicateAgent = агент Синдиката .suffix = Человек, Предатель .desc = { ent-MobHumanSyndicateAgentBase.desc } +ent-MobHumanSyndicateAgentMedic = медик Синдиката + .desc = { ent-MobHumanSyndicateAgent.desc } +ent-MobHumanSyndicateAgentSpy = шпион Синдиката + .desc = { ent-MobHumanSyndicateAgent.desc } +ent-MobHumanSyndicateAgentThief = вор Синдиката + .desc = { ent-MobHumanSyndicateAgent.desc } ent-MobHumanSyndicateAgentNukeops = { ent-MobHumanSyndicateAgentBase } .suffix = Человек, Ядерный оперативник .desc = { ent-MobHumanSyndicateAgentBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl index c01dd8a1de0..1d03f099943 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl @@ -1,2 +1,2 @@ -ent-MobMoth = Урист МакФлафф - .desc = { ent-BaseMobMoth.desc } +#ent-MobMoth = Урист МакФлафф +# .desc = { ent-BaseMobMoth.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/novakid.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/novakid.ftl new file mode 100644 index 00000000000..f794a3be716 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/novakid.ftl @@ -0,0 +1,2 @@ +ent-MobNovakid = { ent-BaseMobNovakid } + .desc = { ent-BaseMobNovakid.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl index 91487be12e1..6835b62338b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl @@ -1,5 +1,5 @@ -ent-BaseMobMoth = Урист МакФлафф - .desc = { ent-BaseMobSpeciesOrganic.desc } - .suffix = Ниан -ent-MobMothDummy = { ent-BaseSpeciesDummy } - .desc = { ent-BaseSpeciesDummy.desc } +# ent-BaseMobMoth = Урист МакФлафф +# .desc = { ent-BaseMobSpeciesOrganic.desc } +# .suffix = Ниан +# ent-MobMothDummy = { ent-BaseSpeciesDummy } +# .desc = { ent-BaseSpeciesDummy.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl index 1bc3a90a389..c1c5730ce45 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pizza.ftl @@ -40,3 +40,7 @@ ent-FoodPizzaArnoldSlice = кусок пиццы Арнольда .desc = Я приду и, может быть, угощу тебя пиццей, а может быть, отломаю тебе руку. ent-FoodPizzaMoldySlice = кусок заплесневелой пиццы .desc = Когда-то это был отличный кусок пиццы, но теперь он лежит здесь, прогорклый и пронизанный спорами. +ent-FoodPizzaUranium = острокаменная пицца + .desc = Острая пицца с перчиками и ураном. +ent-FoodPizzaUraniumSlice = ломтик острокаменной пиццы + .desc = Светящийся кусочек острокаменной пиццы. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl index 4748cd023d1..ce0ba45bdf4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/produce.ftl @@ -8,6 +8,8 @@ ent-OatBushel = сноп овса .desc = Ешьте овсянку, делайте зарядку. ent-Sugarcane = сахарный тростник .desc = Болезненно-сладкий. +ent-Papercane = бумажный тростник + .desc = Зачем мы вообще выращиваем бумагу? ent-FoodLaughinPeaPod = стручок смешного горошка .desc = Любимое растение клоуна. ent-Log = бревно @@ -58,6 +60,8 @@ ent-FoodEggplant = баклажан .desc = Может, внутри сидит баклан? ent-FoodApple = яблоко .desc = Это маленький кусочек Эдема. +ent-FoodGoldenApple = золотое яблоко + .desc = Разве оно не должно быть в форме куба? ent-FoodCocoaPod = стручок какао-боба .desc = Шоколада много не бывает! ent-FoodCorn = початок кукурузы @@ -96,6 +100,8 @@ ent-FoodAmbrosiaDeus = амброзия деус .desc = Лекарственное растение, пользующееся огромным спросом. Может оказывать побочные эффекты. ent-FoodGalaxythistle = галакточертополох .desc = Лекарственное растение, используемое для получения антитоксина. +ent-FoodGlasstle = стеклополох + .desc = Хрупкое кристаллическое растение с множеством острых шипов. ent-FoodFlyAmanita = мухомор .desc = Аппетитно выглядящий гриб, как в мультфильмах. ent-FoodGatfruit = гатфрукт diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl index 69c4dc5e28d..a90fc2e3436 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/base_handheld.ftl @@ -1,2 +1,2 @@ ent-BaseHandheldComputer = { ent-BaseItem } - .desc = { ent-BaseItem.desc } + .desc = { ent-BaseItem.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl index ad68cb4849f..98ca2968c1a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/circuitboards/machine/production.ftl @@ -154,3 +154,5 @@ ent-JukeboxCircuitBoard = музыкальный автомат (машинна .desc = Печатная плата для музыкального автомата. ent-ReagentGrinderIndustrialMachineCircuitboard = промышленный измельчитель реагентов (машинная плата) .desc = { ent-BaseMachineCircuitboard.desc } +ent-CutterMachineCircuitboard = плиткорез (машинная плата) + .desc = { ent-BaseMachineCircuitboard.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl index 2f0b16674f0..755635dd946 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl @@ -1,3 +1,5 @@ +ent-ReinforcementRadio = радио подкрепления Синдиката + .desc = Призовите на помощь агента Синдиката сомнительного качества, мгновенно! Предоставляется только базовое снаряжение. # Corvax-HiddenDesc-Start ent-ReinforcementRadioSyndicate = старое радио .suffix = радио подкрепления Cиндиката diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl index 84755ea946f..ff1ef959754 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/paper.ftl @@ -53,3 +53,5 @@ ent-BoxFolderCentComClipboard = планшет Центком .desc = Роскошный планшет, обитый зелёным бархатом. Представители Центком часто носят его с собой, но редко используют. ent-BoxFolderQmClipboard = цифровой планшет заявок .desc = Громоздкий цифровой планшет, содержащий информацию о поставках и финансовых операциях. При таком количестве компрометирующих документов его следует беречь. +ent-Envelope = конверт + .desc = Небольшой конверт для защиты от посторонних глаз ваших конфиденциальных документов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl index 2db38a71bff..3535fe79872 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/tiles.ftl @@ -6,10 +6,58 @@ ent-FloorTileItemSteelCheckerDark = тёмная стальная плитка .desc = { ent-FloorTileItemSteel.desc } ent-FloorTileItemSteelCheckerLight = светлая стальная плитка шашечками .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemDarkDiagonalMini = тёмная стальная диагональная мини плитка + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkDiagonal = тёмная стальная диагональная плитка + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkHerringbone = тёмная стальная плитка ёлочкой + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkMini = тёмная стальная мини плитка + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkMono = тёмная стальная моно плита + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkPavement = тёмная стальная тротуарная плитка + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkPavementVertical = тёмная стальная вертикальная тротуарная плитка + .desc = { ent-FloorTileItemDark.desc } +ent-FloorTileItemDarkOffset = тёмная смещёная стальная плитка + .desc = { ent-FloorTileItemDark.desc } ent-FloorTileItemMetalDiamond = стальная плитка .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemSteelOffset = смещёная стальная плитка + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelDiagonalMini = стальная диагональная мини плитка + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelDiagonal = стальная диагональная плитка + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelHerringbone = стальная плитка ёлочкой + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelMini = стальная мини плитка + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelMono = стальная моно плита + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelPavement = стальная тротуарная плитка + .desc = { ent-FloorTileItemSteel.desc } +ent-FloorTileItemSteelPavementVertical = стальная вертикальная тротуарная плитка + .desc = { ent-FloorTileItemSteel.desc } ent-FloorTileItemWood = деревянный пол .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemWhiteOffset = смещёная белая стальная плитка + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteDiagonalMini = белая стальная диагональная мини плитка + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteDiagonal = белая стальная диагональная плитка + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteHerringbone = белая стальная плитка ёлочкой + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteMini = белая стальная мини плитка + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhiteMono = белая стальная моно плита + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhitePavement = белая стальная тротуарная плитка + .desc = { ent-FloorTileItemWhite.desc } +ent-FloorTileItemWhitePavementVertical = белая стальная вертикальная тротуарная плитка + .desc = { ent-FloorTileItemWhite.desc } ent-FloorTileItemWhite = белая плитка .desc = { ent-FloorTileItemBase.desc } ent-FloorTileItemDark = тёмная плитка @@ -58,10 +106,22 @@ ent-FloorTileItemLaundry = плитка прачечной .desc = { ent-FloorTileItemBase.desc } ent-FloorTileItemConcrete = бетонная плитка .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemConcreteMono = бетонная плита + .desc = { ent-FloorTileItemConcrete.desc } +ent-FloorTileItemConcreteSmooth = бетонный пол + .desc = { ent-FloorTileItemConcrete.desc } ent-FloorTileItemGrayConcrete = серая бетонная плитка .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemGrayConcreteMono = серая бетонная плита + .desc = { ent-FloorTileItemGrayConcrete.desc } +ent-FloorTileItemGrayConcreteSmooth = серый бетонный пол + .desc = { ent-FloorTileItemGrayConcrete.desc } ent-FloorTileItemOldConcrete = старая бетонная плитка .desc = { ent-FloorTileItemBase.desc } +ent-FloorTileItemOldConcreteMono = старая бетонная плита + .desc = { ent-FloorTileItemOldConcrete.desc } +ent-FloorTileItemOldConcreteSmooth = старый бетонный пол + .desc = { ent-FloorTileItemOldConcrete.desc } ent-FloorTileItemArcadeBlue = синий пол аркады .desc = { ent-FloorTileItemBase.desc } ent-FloorTileItemArcadeBlue2 = синий пол аркады diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl index aeda8e2e6a8..0c6b223e68e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/hydroponics/seeds.ftl @@ -30,6 +30,8 @@ ent-PotatoSeeds = пакет семян (картофель) .desc = { ent-SeedBase.desc } ent-SugarcaneSeeds = пакет семян (сахарный тростник) .desc = { ent-SeedBase.desc } +ent-PapercaneSeeds = пакет семян (бумажный тростник) + .desc = { ent-SeedBase.desc } ent-TowercapSeeds = пакет спор (грибошляпник) .desc = { ent-SeedBase.desc } ent-SteelcapSeeds = пакет спор (сталешляпник) @@ -40,12 +42,14 @@ ent-BlueTomatoSeeds = пакет семян (синий томат) .desc = { ent-SeedBase.desc } ent-BloodTomatoSeeds = пакет семян (кровяной томат) .desc = { ent-SeedBase.desc } -ent-KillerTomatoSeeds = packet of killer tomato seeds +ent-KillerTomatoSeeds = пакет семян (томат-убийца) .desc = { ent-SeedBase.desc } ent-EggplantSeeds = пакет семян (баклажан) .desc = { ent-SeedBase.desc } ent-AppleSeeds = пакет семян (яблоко) .desc = { ent-SeedBase.desc } +ent-GoldenAppleSeeds = пакет семян (золотое яблоко) + .desc = { ent-SeedBase.desc } ent-CornSeeds = пакет семян (кукуруза) .desc = { ent-SeedBase.desc } ent-ChanterelleSeeds = пакет спор (лисички) @@ -80,6 +84,8 @@ ent-AmbrosiaDeusSeeds = пакет семян (амброзия деус) .desc = Лекарственное растение самих богов. ent-GalaxythistleSeeds = пакет семян (галакточертополох) .desc = Кисточки ночных звёзд. +ent-GlasstleSeeds = пакет семян (стеклополох) + .desc = Шрамы беспросветных ночей. ent-FlyAmanitaSeeds = пакет спор (мухомор) .desc = Знаковый, невероятно смертоносный гриб, выращиваемый исключительно в декоративных целях. ent-GatfruitSeeds = пакет семян (гатфрукт) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl index 5e4a412d929..a735684e913 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/gas_tanks.ftl @@ -3,26 +3,26 @@ ent-GasTankBase = { ent-BaseItem } ent-GasTankRoundBase = { ent-GasTankBase } .desc = { ent-GasTankBase.desc } ent-OxygenTank = кислородный баллон - .desc = Стандартный цилиндрический газовый баллон для кислорода. + .desc = Стандартный цилиндрический газовый баллон для кислорода. Вмещает 5 Л газа. ent-NitrogenTank = азотный баллон - .desc = Стандартный цилиндрический газовый баллон для азота. + .desc = Стандартный цилиндрический газовый баллон для азота. Вмещает 5 Л газа. ent-EmergencyOxygenTank = аварийный кислородный баллон - .desc = Лёгкий переносной баллон для чрезвычайных ситуаций. Содержит очень мало кислорода, предназначен только для выживания. + .desc = Лёгкий переносной баллон для чрезвычайных ситуаций. Содержит очень мало кислорода, предназначен только для выживания. Вмещает 0,66 Л газа. ent-EmergencyNitrogenTank = аварийный азотный баллон - .desc = Лёгкий переносной баллон для чрезвычайных ситуаций. Содержит очень мало азота, предназначен только для выживания. + .desc = Лёгкий переносной баллон для чрезвычайных ситуаций. Содержит очень мало азота, предназначен только для выживания. Вмещает 0,66 Л газа. ent-ExtendedEmergencyOxygenTank = аварийный кислородный баллон повышенной ёмкости - .desc = Аварийный баллон повышенной ёмкости. Технически рассчитан на длительное использование. + .desc = Аварийный баллон повышенной ёмкости. Технически рассчитан на длительное использование. Вмещает 1,5 Л газа. ent-ExtendedEmergencyNitrogenTank = аварийный азотный баллон повышенной ёмкости - .desc = Аварийный баллон повышенной ёмкости. Технически рассчитан на длительное использование. + .desc = Аварийный баллон повышенной ёмкости. Технически рассчитан на длительное использование. Вмещает 1,5 Л газа. ent-DoubleEmergencyOxygenTank = двойной аварийный кислородный баллон - .desc = Высококлассный двухбаллонный резервуар аварийного жизнеобеспечения. Вмещает приличное для своих небольших размеров количество кислорода. + .desc = Высококлассный двухбаллонный резервуар аварийного жизнеобеспечения. Вмещает приличное для своих небольших размеров количество кислорода. Вмещает 2,5 Л газа. ent-DoubleEmergencyNitrogenTank = двойной аварийный азотный баллон - .desc = Высококлассный двухбаллонный резервуар аварийного жизнеобеспечения. Вмещает приличное для своих небольших размеров количество азота. + .desc = Высококлассный двухбаллонный резервуар аварийного жизнеобеспечения. Вмещает приличное для своих небольших размеров количество азота. Вмещает 2,5 Л газа. ent-EmergencyFunnyOxygenTank = весёлый аварийный кислородный баллон - .desc = Лёгкий переносной баллон для чрезвычайных ситуаций. Содержит очень мало кислорода и чуточку веселящего газа, предназначен только для выживания. + .desc = Лёгкий переносной баллон для чрезвычайных ситуаций. Содержит очень мало кислорода и чуточку веселящего газа, предназначен только для выживания. Вмещает 0,66 Л газа. ent-AirTank = баллон воздуха - .desc = Какая-то смесь? + .desc = Какая-то смесь? Вмещает 5 Л газа. ent-NitrousOxideTank = баллон оксида азота - .desc = Содержит смесь воздуха и оксида азота. Убедитесь, что вы не заправляете его чистым N2O. + .desc = Содержит смесь воздуха и оксида азота. Убедитесь, что вы не заправляете его чистым N2O. Вмещает 5 Л газа. ent-PlasmaTank = баллон плазмы - .desc = Содержит опасную плазму. Не вдыхать. Чрезвычайно огнеопасен. + .desc = Содержит опасную плазму. Не вдыхать. Чрезвычайно огнеопасен. Вмещает 5 Л газа. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl index d1d11303193..d2c58b5182b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/jetpacks.ftl @@ -1,7 +1,7 @@ ent-JetpackEffect = { "" } .desc = { "" } ent-BaseJetpack = джетпак - .desc = Это реактивный ранец - джетпак. + .desc = Это реактивный ранец - джетпак. Вмещает 5 Л газа. ent-ActionToggleJetpack = Переключить джетпак .desc = Переключить джетпак, позволяющий с лёгкостью передвигаться вне станции. ent-JetpackBlue = джетпак @@ -24,7 +24,7 @@ ent-JetpackCaptainFilled = джетпак капитана .desc = { ent-JetpackCaptain.desc } ent-JetpackMini = мини джетпак .suffix = Пустой - .desc = { ent-BaseJetpack.desc } + .desc = Это реактивный ранец - джетпак. Вмещает 1,5 Л газа. ent-JetpackMiniFilled = мини джетпак .suffix = Полный .desc = { ent-JetpackMini.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl index 57e3b6dfcc2..8eb49dfe679 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/melee/e_sword.ftl @@ -6,7 +6,6 @@ ent-EnergyDaggerLoud = энергокинжал .desc = Не такой громкий и опасный кинжал с лучом из чистой, концентрированной плазмы. Совершенно лишён возможности маскироваться. # Corvax-HiddenDesc-End - ent-EnergyDagger = ручка .desc = Ручка с чёрными чернилами. .suffix = Энергокинжал @@ -17,9 +16,10 @@ ent-EnergyDaggerBox = футляр энергокинжала ent-EnergyCutlass = отломанная рукоять игрушечной абордажной сабли .suffix = абордажная энергосабля .desc = Тот кто сделал это, должно быть совсем не любит игрушки. +ent-CyborgEnergySwordDouble = { ent-EnergySwordDouble } + .desc = Интерны Командования Синдиката решили, что одного лезвия на энергетическом мече недостаточно. Специальная разработка для киборгов Синдиката. + .suffix = Одноручное, Для боргов ent-EnergySwordDouble = игрушечный двухклинковый меч .suffix = двухклинковый энергетический меч .desc = Новый двойной пластиковый меч от Sandy-Cat! В два раза больше эпика и громких звуков! - # Corvax-HiddenDesc-End - diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl index a2e4d1f5079..39554bfb6ab 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/gates.ftl @@ -1,7 +1,23 @@ ent-BaseLogicItem = { ent-BaseItem } .desc = { ent-BaseItem.desc } -ent-LogicGate = логический элемент - .desc = Логический элемент с двумя портами на вход и одним на выход, можно изменить логическую операцию с помощью отвёртки. +ent-LogicGateOr = логический элемент + .desc = Логический элемент с двумя портами на вход и одним на выход. Можно изменить логическую операцию с помощью отвёртки. + .suffix = Or, ИЛИ +ent-LogicGateAnd = { ent-LogicGateOr } + .suffix = And, И + .desc = { ent-LogicGateOr.desc } +ent-LogicGateXor = { ent-LogicGateOr } + .suffix = Xor, Исключающее ИЛИ + .desc = { ent-LogicGateOr.desc } +ent-LogicGateNor = { ent-LogicGateOr } + .suffix = Nor, ИЛИ-НЕ + .desc = { ent-LogicGateOr.desc } +ent-LogicGateNand = { ent-LogicGateOr } + .suffix = Nand, И-НЕ + .desc = { ent-LogicGateOr.desc } +ent-LogicGateXnor = { ent-LogicGateOr } + .suffix = Xnor, Исключающее ИЛИ-НЕ + .desc = { ent-LogicGateOr.desc } ent-EdgeDetector = детектор сигнала .desc = Определяет уровень сигнала и разделяет его. Устройство игнорирует импульсные сигналы. ent-PowerSensor = датчик питания diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/lathe.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/lathe.ftl index 727ef453720..e52f6dd4b22 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/lathe.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/lathe.ftl @@ -34,3 +34,5 @@ ent-OreProcessorIndustrial = промышленный переработчик .desc = Переработчик руды, разработанный специально для производства металлов в промышленных масштабах. ent-Sheetifier = лист-мастер 2000 .desc = Довольно мяссивное устройство. +ent-CutterMachine = плиткорез + .desc = Это плиткорез. Он режет. Придайте разнообразия полу вашей станции с помощью интересных узоров! Не засовывайте внутрь пальцы. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/shelfs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/shelfs.ftl new file mode 100644 index 00000000000..f6d494a3d80 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/shelfs.ftl @@ -0,0 +1,25 @@ +ent-ShelfBase = shelf + .desc = a strange place to place, well, anything really. You feel like you shouldn't be seeing this.' +ent-ShelfBaseReinforced = укреплённая полка + .desc = Она выглядит такой же прочной, как и наша реальность. +ent-ShelfWood = деревянная полка + .desc = Удобное место для размещения, ээ, да чего угодно. +ent-ShelfMetal = металлическая полка + .desc = Прочное место для размещения, ээ, да чего угодно. +ent-ShelfGlass = стеклянная полка + .desc = Хрупкое место для размещения, ээ, да чего угодно. +ent-ShelfRWood = прочная деревянная полка + .desc = Безопасное место, куда можно убрать любимую бутылку виски. +ent-ShelfRMetal = прочная металлическая полка + .desc = Прочное и блестящее место для хранения всех ваших склянок. +ent-ShelfRGlass = прочная стеклянная полка + .desc = Кристально чистые дверцы из армированного стекла позволят выставить напоказ все ваши модные бутылки, за которые вы точно не продали любимую таракамольку коллеги. +ent-ShelfBar = барная полка + .desc = Изготовлена из отборной синтетической древесины для хранения алкоголя. +ent-ShelfKitchen = кухонная полка + .desc = Для хранения ножей, специй и всего прочего! +ent-ShelfChemistry = химическая полка + .desc = Держите все ваши химикаты в безопасности и подальше от клоу... эээ... публики! +ent-ShelfChemistryChemistrySecure = { ent-ShelfChemistry } + .suffix = Химия, Защищённый + .desc = { ent-ShelfChemistry.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl index afdb66dc79f..1b15b401116 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -89,8 +89,8 @@ ent-WallCobblebrick = булыжниковая стена .desc = Идеально подогнанные друг к другу кирпичик за кирпичиком образовали стену. ent-WallBasaltCobblebrick = базальтовая стена .desc = { ent-WallCobblebrick.desc } -ent-WallSnowCobblebrick = снежковая стена - .desc = A cold, not-so-impenetrable wall. +ent-WallSnowCobblebrick = снежная стена + .desc = Холодная, не такая уж непроходимая стена. ent-WallAsteroidCobblebrick = астероидная булыжниковая стена .desc = { ent-WallCobblebrick.desc } ent-WallSandCobblebrick = песчаниковая булыжниковая стена diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index db420f6ee84..3f78237937f 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -87,7 +87,9 @@ uplink-black-jetpack-desc = Чёрный джетпак. Позволяет ле uplink-reinforcement-radio-ancestor-name = Телепорт подкрепления генетическим предком uplink-reinforcement-radio-ancestor-desc = Призовите на помощь специально обученного предка по вашему выбору. Комплектуются одной сигаретой Синдиката. uplink-reinforcement-radio-name = Телепорт подкрепления -uplink-reinforcement-radio-desc = Телепортирует агента крайне сомнительного качества. Не имеет кнопки отключения, покупайте его только если вы готовы к вечеринке. У агента есть пистолет без запасных патронов и нож. Это всё. +uplink-reinforcement-radio-traitor-desc = Телепортирует в качестве подкрепления сомнительного качества агента. Не имеет кнопки отключения, покупайте его только если вы готовы к вечеринке. Вызовите медика, шпиона или вора, чтобы они помогли вам. Удачи. +uplink-reinforcement-radio-nukeops-name = Телепорт Ядерного оперативника +uplink-reinforcement-radio-nukeops-desc = Телепортирует в качестве подкрепления сомнительного качества ядерного оперативника. Не имеет кнопки отключения, покупайте его только если вы готовы к вечеринке. У них будет базовое снаряжение ядерного оперативника. uplink-reinforcement-radio-cyborg-assault-name = Телепорт штурмового киборга Синдиката uplink-reinforcement-radio-cyborg-assault-desc = Машина для убийств с доступом к энергомечу, пулемёту, криптографическому секвенсору и пинпоинтеру. uplink-stealth-box-name = Стелс-коробка @@ -169,7 +171,7 @@ uplink-super-surplus-bundle-name = Ящик суперприпасов Синд uplink-super-surplus-bundle-desc = Содержит случайное снаряжение Синдиката, общей стоимостью в 125 телекристаллов. # Tools uplink-toolbox-name = Ящик инструментов -uplink-toolbox-desc = Полный набор инструментов для предателя с тягой к механике. Включает пару изолированных боевых перчаток, противогаз Синдиката и плечевую кобуру. +uplink-toolbox-desc = Полный набор инструментов для предателя с тягой к механике. Включает пару изолированных боевых перчаток и противогаз Синдиката. uplink-syndicate-jaws-of-life-name = Челюсти жизни uplink-syndicate-jaws-of-life-desc = Комбинация лома и кусачек. Используется для проникновения на станцию или в её отделы. uplink-duffel-surgery-name = Хирургический вещмешок diff --git a/Resources/Locale/ru-RU/traits/traits.ftl b/Resources/Locale/ru-RU/traits/traits.ftl index ae4cc0d9186..59a5e95e6bd 100644 --- a/Resources/Locale/ru-RU/traits/traits.ftl +++ b/Resources/Locale/ru-RU/traits/traits.ftl @@ -21,8 +21,8 @@ trait-accentless-name = Отсутствие акцента trait-accentless-desc = У вас нет того акцента, который характерен для представителей вашего вида. trait-frontal-lisp-name = Сигматизм trait-frontal-lisp-desc = У ваф имеютшя проблемы ш произношением. -trait-socialanxiety-name = Социофобия -trait-socialanxiety-desc = Вы испытываете тревожность, когда говорите, что приводит к заиканию. +trait-socialanxiety-name = Заикание +trait-socialanxiety-desc = Вы заикаетесь. trait-southern-name = Диалект юга США trait-southern-desc = У вас другая манера речи. Работает только с английским. trait-snoring-name = Храп diff --git a/Resources/Locale/ru-RU/weapons/ranged/gun.ftl b/Resources/Locale/ru-RU/weapons/ranged/gun.ftl index 4324029f149..91020607ebd 100644 --- a/Resources/Locale/ru-RU/weapons/ranged/gun.ftl +++ b/Resources/Locale/ru-RU/weapons/ranged/gun.ftl @@ -5,6 +5,7 @@ gun-selected-mode = Выбран { $mode } gun-disabled = Вы не можете использовать оружие! gun-clumsy = Оружие взрывается вам в лицо! gun-set-fire-mode = Выбран режим { $mode } +gun-magazine-whitelist-fail = Это не помещается в оружие! # SelectiveFire gun-SemiAuto = полуавто gun-Burst = очередь diff --git a/Resources/Locale/ru-RU/wieldable/wieldable-component.ftl b/Resources/Locale/ru-RU/wieldable/wieldable-component.ftl index e15d3e2a0f7..cb370a1d248 100644 --- a/Resources/Locale/ru-RU/wieldable/wieldable-component.ftl +++ b/Resources/Locale/ru-RU/wieldable/wieldable-component.ftl @@ -16,3 +16,4 @@ wieldable-component-not-enough-free-hands = wieldable-component-not-in-hands = { CAPITALIZE($item) } не в ваших руках! wieldable-component-requires = { CAPITALIZE($item) } должно быть в двух руках! gunwieldbonus-component-examine = Это оружие обладает повышенной точностью, когда его держат в двух руках. +gunrequireswield-component-examine = Из этого оружия можно стрелять только держа его в двух руках. diff --git a/Resources/Maps/Misc/corvax_terminal.yml b/Resources/Maps/Misc/corvax_terminal.yml index e5717d12b5e..1ac5a52fea3 100644 --- a/Resources/Maps/Misc/corvax_terminal.yml +++ b/Resources/Maps/Misc/corvax_terminal.yml @@ -43,7 +43,7 @@ tilemap: entities: - proto: "" entities: - - uid: 818 + - uid: 2 components: - type: MetaData name: NT-EM Terminal @@ -53,7 +53,7 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAACgAAAAAACgAAAAAABAAAAAAAHQAAAAAADAAAAAAADAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAABgAAAAAACAAAAAAABgAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAACgAAAAAACgAAAAAABAAAAAAAHQAAAAAADAAAAAAADAAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADQAAAAAADQAAAAAADQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAABgAAAAAACAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAABgAAAAAACAAAAAAABgAAAAAAeQAAAAAA version: 6 0,0: ind: 0,0 @@ -73,7 +73,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAAADgAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAHQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAHQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAADgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAABAAAAAAADgAAAAAABAAAAAAA version: 6 1,0: ind: 1,0 @@ -116,1477 +116,1511 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 958: 14,-9 - 959: 14,-2 - 960: 14,2 - 961: 14,-15 - 962: 14,-23 - 977: 3,4 - 978: 3,-11 - 979: 7,-11 - 980: 11,-11 - 981: 7,-4 - 982: 7,-3 - 983: 11,-3 - 984: 11,-4 - 985: 7,4 - 986: 11,4 - 991: -4,4 - 992: -4,-11 + 648: 14,-9 + 649: 14,-2 + 650: 14,2 + 651: 14,-15 + 652: 14,-23 + 667: 3,4 + 668: 3,-11 + 669: 7,-11 + 670: 11,-11 + 671: 7,-4 + 672: 7,-3 + 673: 11,-3 + 674: 11,-4 + 675: 7,4 + 676: 11,4 + 681: -4,4 + 682: -4,-11 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 987: -6,-4 - 988: -8,-4 - 989: 0,-4 - 990: 2,-4 + 677: -6,-4 + 678: -8,-4 + 679: 0,-4 + 680: 2,-4 - node: color: '#9FED5895' id: Bot decals: - 994: 2,-19 + 684: 2,-19 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 993: -6,-19 + 683: -6,-19 - node: zIndex: 1 color: '#FFFFFFFF' id: BotGreyscale decals: - 944: 7,-13 - 945: 6,-13 - 947: 8,-13 + 636: 7,-13 + 637: 6,-13 + 639: 8,-13 - node: color: '#3EB38896' id: BrickLineOverlayE decals: - 759: -9,-11 + 528: -9,-11 - node: color: '#3EB38896' id: BrickLineOverlayN decals: - 756: -8,-12 - 757: -7,-12 + 525: -8,-12 + 526: -7,-12 - node: color: '#3EB38896' id: BrickLineOverlayS decals: - 760: -8,-10 - 761: -7,-10 + 529: -8,-10 + 530: -7,-10 - node: color: '#3EB38896' id: BrickLineOverlayW decals: - 758: -6,-11 + 527: -6,-11 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 93: -1,0 - 652: -5,-11 - 715: -2,-13 - 892: -3,6 - 893: -3,2 - 949: -3,-9 - 963: 11,-31 - 964: 11,-27 - 1108: -5,0 + 47: -1,0 + 430: -5,-11 + 484: -2,-13 + 614: -3,6 + 615: -3,2 + 641: -3,-9 + 653: 11,-31 + 654: 11,-27 + 769: -5,0 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 150: 3,1 - 338: 13,3 - 339: 13,-5 - 340: 8,-5 - 341: 8,3 - 656: -6,-10 + 77: 3,1 + 224: 13,3 + 225: 13,-5 + 226: 8,-5 + 227: 8,3 + 432: -6,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 145: 0,1 - 333: 6,-5 - 334: 11,-5 - 335: 6,3 - 336: 11,3 - 654: -9,-10 + 73: 0,1 + 220: 6,-5 + 221: 11,-5 + 222: 6,3 + 223: 11,3 + 431: -9,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 343: 8,-10 - 344: 13,-10 - 345: 13,-2 - 346: 8,-2 - 658: -6,-12 + 229: 8,-10 + 230: 13,-10 + 231: 13,-2 + 232: 8,-2 + 433: -6,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 328: 6,-2 - 329: 11,-2 - 330: 6,-10 - 331: 11,-10 - 660: -9,-12 + 216: 6,-2 + 217: 11,-2 + 218: 6,-10 + 219: 11,-10 + 434: -9,-12 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 102: 3,-1 + 56: 3,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 837: 9,-17 - 838: 9,-21 + 604: 9,-17 + 605: 9,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 835: 9,-23 - 836: 9,-19 + 602: 9,-23 + 603: 9,-19 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 97: 0,-1 + 51: 0,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 350: 6,-10 - 351: 11,-10 - 352: 6,-2 - 353: 11,-2 - 668: -6,-11 - 712: 1,4 - 753: 1,-11 - 829: 11,-21 - 830: 11,-16 + 235: 6,-10 + 236: 11,-10 + 237: 6,-2 + 238: 11,-2 + 439: -6,-11 + 481: 1,4 + 522: 1,-11 + 596: 11,-21 + 597: 11,-16 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 606: 8,-5 - 607: 13,-5 - 608: 13,3 - 609: 8,3 + 389: 8,-5 + 390: 13,-5 + 391: 13,3 + 392: 8,3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 158: 0,0 - 348: 8,-2 - 349: 13,-2 - 364: 8,-10 - 365: 13,-10 - 711: -2,4 - 752: -2,-11 - 827: 11,-16 - 828: 11,-21 + 84: 0,0 + 233: 8,-2 + 234: 13,-2 + 248: 8,-10 + 249: 13,-10 + 480: -2,4 + 521: -2,-11 + 594: 11,-16 + 595: 11,-21 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 602: 6,-5 - 603: 11,-5 - 604: 6,3 - 605: 11,3 + 385: 6,-5 + 386: 11,-5 + 387: 6,3 + 388: 11,3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 354: 6,3 - 355: 11,3 - 356: 11,-5 - 357: 6,-5 - 666: -6,-11 - 710: 1,4 - 754: 1,-11 - 833: 11,-19 - 834: 11,-24 + 239: 6,3 + 240: 11,3 + 241: 11,-5 + 242: 6,-5 + 438: -6,-11 + 479: 1,4 + 523: 1,-11 + 600: 11,-19 + 601: 11,-24 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 610: 8,-2 - 611: 13,-2 - 612: 13,-10 - 613: 8,-10 + 393: 8,-2 + 394: 13,-2 + 395: 13,-10 + 396: 8,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 161: 0,0 - 358: 8,-5 - 359: 13,-5 - 360: 8,3 - 361: 13,3 - 713: -2,4 - 755: -2,-11 - 831: 11,-24 - 832: 11,-19 + 86: 0,0 + 243: 8,-5 + 244: 13,-5 + 245: 8,3 + 246: 13,3 + 482: -2,4 + 524: -2,-11 + 598: 11,-24 + 599: 11,-19 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 614: 6,-10 - 615: 11,-10 - 616: 11,-2 - 617: 6,-2 + 397: 6,-10 + 398: 11,-10 + 399: 11,-2 + 400: 6,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 156: 3,0 - 164: -1,0 - 245: 6,-6 - 246: 6,-7 - 247: 6,-8 - 248: 6,-9 - 249: 8,-9 - 250: 8,-8 - 251: 8,-7 - 254: 8,-6 - 255: 13,-9 - 256: 13,-8 - 257: 13,-7 - 258: 13,-6 - 261: 13,-1 - 262: 13,0 - 263: 13,1 - 265: 13,2 - 266: 8,-1 - 267: 8,0 - 268: 8,1 - 269: 8,2 - 271: 6,2 - 272: 6,1 - 273: 6,0 - 274: 6,-1 - 275: 11,-1 - 276: 11,0 - 277: 11,2 - 280: 11,-6 - 281: 11,-7 - 282: 11,-8 - 283: 11,-9 - 304: 11,1 - 702: -3,4 - 746: -3,-11 - 811: 10,-24 - 812: 10,-23 - 813: 10,-22 - 814: 10,-21 - 815: 10,-19 - 816: 10,-19 - 817: 10,-18 - 818: 10,-17 - 819: 10,-17 - 820: 10,-16 - 841: 9,-18 - 842: 9,-22 + 83: 3,0 + 88: -1,0 + 152: 6,-6 + 153: 6,-7 + 154: 6,-8 + 155: 6,-9 + 156: 8,-9 + 157: 8,-8 + 158: 8,-7 + 159: 8,-6 + 160: 13,-9 + 161: 13,-8 + 162: 13,-7 + 163: 13,-6 + 164: 13,-1 + 165: 13,0 + 166: 13,1 + 167: 13,2 + 168: 8,-1 + 169: 8,0 + 170: 8,1 + 171: 8,2 + 173: 6,2 + 174: 6,1 + 175: 6,0 + 176: 6,-1 + 177: 11,-1 + 178: 11,0 + 179: 11,2 + 182: 11,-6 + 183: 11,-7 + 184: 11,-8 + 185: 11,-9 + 198: 11,1 + 471: -3,4 + 515: -3,-11 + 580: 10,-24 + 581: 10,-23 + 582: 10,-22 + 583: 10,-21 + 584: 10,-19 + 585: 10,-19 + 586: 10,-18 + 587: 10,-17 + 588: 10,-17 + 589: 10,-16 + 608: 9,-18 + 609: 9,-22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 105: 1,-1 - 106: 2,-1 - 151: 1,1 - 152: 2,1 - 166: 0,-1 - 167: 1,-1 - 168: 2,-1 - 169: 3,-1 - 189: 7,-10 - 191: 12,-10 - 192: 12,-2 - 194: 7,-2 - 195: 7,3 - 196: 12,3 - 198: 12,-5 - 199: 7,-5 - 390: 5,-5 - 391: 9,-5 - 392: 10,-5 - 393: 10,3 - 394: 9,3 - 395: 5,3 - 584: 5,-12 - 585: 6,-12 - 586: 7,-12 - 587: 8,-12 - 588: 9,-12 - 589: 10,-12 - 590: 11,-12 - 591: 12,-12 - 592: 13,-12 - 650: -8,-10 - 651: -7,-10 - 703: -2,3 - 704: -2,3 - 705: -1,3 - 706: 0,3 - 707: 0,3 - 708: 0,3 - 709: 1,3 - 748: -2,-12 - 749: -1,-12 - 750: 0,-12 - 751: 1,-12 - 825: 11,-25 - 826: 11,-20 + 59: 1,-1 + 60: 2,-1 + 78: 1,1 + 79: 2,1 + 89: 0,-1 + 90: 1,-1 + 91: 2,-1 + 92: 3,-1 + 109: 7,-10 + 111: 12,-10 + 112: 12,-2 + 113: 7,-2 + 114: 7,3 + 115: 12,3 + 117: 12,-5 + 118: 7,-5 + 259: 5,-5 + 260: 9,-5 + 261: 10,-5 + 262: 10,3 + 263: 9,3 + 264: 5,3 + 367: 5,-12 + 368: 6,-12 + 369: 7,-12 + 370: 8,-12 + 371: 9,-12 + 372: 10,-12 + 373: 11,-12 + 374: 12,-12 + 375: 13,-12 + 428: -8,-10 + 429: -7,-10 + 472: -2,3 + 473: -2,3 + 474: -1,3 + 475: 0,3 + 476: 0,3 + 477: 0,3 + 478: 1,3 + 517: -2,-12 + 518: -1,-12 + 519: 0,-12 + 520: 1,-12 + 592: 11,-25 + 593: 11,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 103: 1,-1 - 104: 2,-1 - 202: 7,-10 - 203: 12,-10 - 204: 12,-2 - 205: 7,-2 - 206: 7,3 - 207: 12,3 - 208: 12,-5 - 209: 7,-5 - 382: 5,-2 - 383: 9,-2 - 384: 10,-2 - 385: 9,-10 - 386: 10,-10 - 388: 5,-10 - 593: 13,5 - 594: 12,5 - 595: 10,5 - 596: 11,5 - 597: 9,5 - 598: 8,5 - 599: 7,5 - 600: 6,5 - 601: 5,5 - 663: -8,-12 - 664: -7,-12 - 697: -2,5 - 698: -1,5 - 699: -1,5 - 700: 0,5 - 701: 1,5 - 742: -2,-10 - 743: -1,-10 - 744: 0,-10 - 745: 1,-10 - 823: 11,-15 - 824: 11,-20 + 57: 1,-1 + 58: 2,-1 + 120: 7,-10 + 121: 12,-10 + 122: 12,-2 + 123: 7,-2 + 124: 7,3 + 125: 12,3 + 126: 12,-5 + 127: 7,-5 + 253: 5,-2 + 254: 9,-2 + 255: 10,-2 + 256: 9,-10 + 257: 10,-10 + 258: 5,-10 + 376: 13,5 + 377: 12,5 + 378: 10,5 + 379: 11,5 + 380: 9,5 + 381: 8,5 + 382: 7,5 + 383: 6,5 + 384: 5,5 + 436: -8,-12 + 437: -7,-12 + 466: -2,5 + 467: -1,5 + 468: -1,5 + 469: 0,5 + 470: 1,5 + 511: -2,-10 + 512: -1,-10 + 513: 0,-10 + 514: 1,-10 + 590: 11,-15 + 591: 11,-20 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 212: 6,-9 - 213: 6,-8 - 214: 6,-7 - 215: 6,-6 - 217: 11,-9 - 218: 11,-8 - 219: 11,-7 - 220: 11,-6 - 221: 13,-9 - 222: 13,-8 - 223: 13,-7 - 224: 13,-6 - 225: 6,-1 - 226: 6,0 - 228: 6,1 - 229: 6,2 - 232: 8,-1 - 233: 8,0 - 234: 8,1 - 235: 8,2 - 236: 13,-1 - 238: 13,0 - 239: 13,1 - 240: 13,2 - 288: 8,-9 - 289: 8,-8 - 290: 8,-7 - 291: 8,-6 - 296: 11,-1 - 298: 11,0 - 299: 11,0 - 300: 11,1 - 302: 11,2 - 662: -9,-11 - 747: 2,-11 - 802: 12,-16 - 803: 12,-17 - 804: 12,-17 - 805: 12,-18 - 806: 12,-19 - 807: 12,-21 - 808: 12,-22 - 809: 12,-22 - 810: 12,-24 - 839: 9,-22 - 840: 9,-18 - 955: 12,-23 - 976: 2,4 + 128: 6,-9 + 129: 6,-8 + 130: 6,-7 + 131: 6,-6 + 132: 11,-9 + 133: 11,-8 + 134: 11,-7 + 135: 11,-6 + 136: 13,-9 + 137: 13,-8 + 138: 13,-7 + 139: 13,-6 + 140: 6,-1 + 141: 6,0 + 142: 6,1 + 143: 6,2 + 144: 8,-1 + 145: 8,0 + 146: 8,1 + 147: 8,2 + 148: 13,-1 + 149: 13,0 + 150: 13,1 + 151: 13,2 + 188: 8,-9 + 189: 8,-8 + 190: 8,-7 + 191: 8,-6 + 193: 11,-1 + 194: 11,0 + 195: 11,0 + 196: 11,1 + 197: 11,2 + 435: -9,-11 + 516: 2,-11 + 571: 12,-16 + 572: 12,-17 + 573: 12,-17 + 574: 12,-18 + 575: 12,-19 + 576: 12,-21 + 577: 12,-22 + 578: 12,-22 + 579: 12,-24 + 606: 9,-22 + 607: 9,-18 + 645: 12,-23 + 666: 2,4 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 714: -5,-11 - 766: 11,-13 - 886: 4,4 - 887: 4,-11 - 948: -5,4 + 483: -5,-11 + 535: 11,-13 + 612: 4,4 + 613: 4,-11 + 640: -5,4 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNe decals: - 548: -2,13 + 331: -2,13 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 673: 3,5 - 735: 3,-10 - 784: 12,-14 + 442: 3,5 + 504: 3,-10 + 553: 12,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 674: -4,5 - 736: -4,-10 - 783: 10,-14 + 443: -4,5 + 505: -4,-10 + 552: 10,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSe decals: - 556: -2,7 + 339: -2,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 672: 3,3 - 717: 3,-12 - 786: 12,-26 + 441: 3,3 + 486: 3,-12 + 555: 12,-26 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 671: -4,3 - 716: -4,-12 - 785: 10,-26 + 440: -4,3 + 485: -4,-12 + 554: 10,-26 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 884: 4,-3 + 610: 4,-3 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 885: 4,-4 + 611: 4,-4 - node: color: '#00FFFFFF' id: BrickTileSteelEndW decals: - 628: -6,7 - 629: -6,9 - 630: -6,11 - 631: -6,13 + 411: -6,7 + 412: -6,9 + 413: -6,11 + 414: -6,13 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 643: -7,-11 - 676: -3,5 - 686: 3,4 - 688: 2,5 - 720: 3,-11 - 738: -3,-10 - 800: 11,-14 + 426: -7,-11 + 445: -3,5 + 455: 3,4 + 457: 2,5 + 489: 3,-11 + 507: -3,-10 + 569: 11,-14 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNw decals: - 574: -4,11 - 575: -4,9 - 576: -4,7 + 357: -4,11 + 358: -4,9 + 359: -4,7 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 644: -8,-11 - 675: -3,5 - 678: -4,4 - 689: 2,5 - 718: -4,-11 - 737: -3,-10 - 799: 11,-14 + 427: -8,-11 + 444: -3,5 + 447: -4,4 + 458: 2,5 + 487: -4,-11 + 506: -3,-10 + 568: 11,-14 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSe decals: - 578: -3,7 + 361: -3,7 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 641: -7,-11 - 687: 3,4 - 696: -3,3 - 721: 3,-11 - 741: -2,-12 - 797: 11,-26 + 424: -7,-11 + 456: 3,4 + 465: -3,3 + 490: 3,-11 + 510: -2,-12 + 566: 11,-26 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSw decals: - 557: -3,7 - 558: -4,9 - 559: -4,11 - 560: -4,13 + 340: -3,7 + 341: -4,9 + 342: -4,11 + 343: -4,13 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 642: -8,-11 - 677: -4,4 - 695: -3,3 - 719: -4,-11 - 740: -2,-12 - 798: 11,-26 + 425: -8,-11 + 446: -4,4 + 464: -3,3 + 488: -4,-11 + 509: -2,-12 + 567: 11,-26 - node: color: '#00FFFFFF' id: BrickTileSteelLineE decals: - 549: -2,12 - 550: -2,11 - 551: -2,10 - 552: -2,9 - 553: -2,9 - 554: -2,8 + 332: -2,12 + 333: -2,11 + 334: -2,10 + 335: -2,9 + 336: -2,9 + 337: -2,8 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 635: -9,-11 - 787: 12,-25 - 788: 12,-24 - 789: 12,-22 - 790: 12,-22 - 791: 12,-21 - 792: 12,-20 - 793: 12,-19 - 794: 12,-18 - 795: 12,-17 - 796: 12,-16 - 956: 12,-23 - 957: 12,-15 + 418: -9,-11 + 556: 12,-25 + 557: 12,-24 + 558: 12,-22 + 559: 12,-22 + 560: 12,-21 + 561: 12,-20 + 562: 12,-19 + 563: 12,-18 + 564: 12,-17 + 565: 12,-16 + 646: 12,-23 + 647: 12,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineN decals: - 539: -6,13 - 540: -5,13 - 541: -4,13 - 542: -3,13 - 565: -6,7 - 566: -5,7 - 567: -6,9 - 568: -5,9 - 569: -6,11 - 570: -5,11 + 323: -6,13 + 324: -5,13 + 325: -4,13 + 326: -3,13 + 348: -6,7 + 349: -5,7 + 350: -6,9 + 351: -5,9 + 352: -6,11 + 353: -5,11 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 639: -8,-12 - 640: -7,-12 - 690: -2,5 - 691: -1,5 - 692: -1,5 - 693: 0,5 - 694: 1,5 - 728: -2,-10 - 729: -1,-10 - 730: 0,-10 - 731: 0,-10 - 732: 1,-10 - 733: 1,-10 - 734: 2,-10 - 739: -2,-13 + 422: -8,-12 + 423: -7,-12 + 459: -2,5 + 460: -1,5 + 461: -1,5 + 462: 0,5 + 463: 1,5 + 497: -2,-10 + 498: -1,-10 + 499: 0,-10 + 500: 0,-10 + 501: 1,-10 + 502: 1,-10 + 503: 2,-10 + 508: -2,-13 - node: color: '#00FFFFFF' id: BrickTileSteelLineS decals: - 530: -6,7 - 531: -5,7 - 532: -4,7 - 533: -6,9 - 534: -5,9 - 535: -6,11 - 536: -5,11 - 537: -6,13 - 538: -5,13 + 314: -6,7 + 315: -5,7 + 316: -4,7 + 317: -6,9 + 318: -5,9 + 319: -6,11 + 320: -5,11 + 321: -6,13 + 322: -5,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 636: -8,-10 - 637: -7,-10 - 679: -2,3 - 680: -1,3 - 681: 0,3 - 682: 0,3 - 683: 1,3 - 684: 2,3 - 685: 2,3 - 722: -1,-12 - 723: 0,-12 - 724: 1,-12 - 725: 1,-12 - 726: 2,-12 - 727: -3,-12 - 801: 11,-13 + 419: -8,-10 + 420: -7,-10 + 448: -2,3 + 449: -1,3 + 450: 0,3 + 451: 0,3 + 452: 1,3 + 453: 2,3 + 454: 2,3 + 491: -1,-12 + 492: 0,-12 + 493: 1,-12 + 494: 1,-12 + 495: 2,-12 + 496: -3,-12 + 570: 11,-13 - node: color: '#00FFFFFF' id: BrickTileSteelLineW decals: - 562: -4,10 - 563: -4,8 - 572: -4,12 + 345: -4,10 + 346: -4,8 + 355: -4,12 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 638: -6,-11 - 767: 10,-23 - 768: 10,-24 - 769: 10,-24 - 770: 10,-25 - 771: 10,-23 - 772: 10,-22 - 773: 10,-21 - 774: 10,-21 - 775: 10,-20 - 776: 10,-19 - 777: 10,-18 - 778: 10,-18 - 779: 10,-17 - 780: 10,-16 - 781: 10,-16 - 782: 10,-15 + 421: -6,-11 + 536: 10,-23 + 537: 10,-24 + 538: 10,-24 + 539: 10,-25 + 540: 10,-23 + 541: 10,-22 + 542: 10,-21 + 543: 10,-21 + 544: 10,-20 + 545: 10,-19 + 546: 10,-18 + 547: 10,-18 + 548: 10,-17 + 549: 10,-16 + 550: 10,-16 + 551: 10,-15 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 436: -5.001849,-7.7211533 + 282: -5.001849,-7.7211533 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 438: -4.954974,-6.7836533 + 284: -4.954974,-6.7836533 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 439: -1.0018489,-7.1586533 + 285: -1.0018489,-7.1586533 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 440: -1.0330989,-5.9242783 + 286: -1.0330989,-5.9242783 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 971: 13.595629,2.003996 - 972: 13.595629,-2.0041823 - 973: 13.600033,-9.000203 - 974: 13.600033,-15.003099 - 975: 13.600033,-23.005238 + 661: 13.595629,2.003996 + 662: 13.595629,-2.0041823 + 663: 13.600033,-9.000203 + 664: 13.600033,-15.003099 + 665: 13.600033,-23.005238 - node: color: '#9FED585D' id: CheckerNESW decals: - 1055: 3,-22 - 1056: 3,-21 + 745: 3,-22 + 746: 3,-21 - node: color: '#FFFFFFFF' id: CheckerNWSE decals: - 1057: -7,-22 - 1058: -7,-21 + 747: -7,-22 + 748: -7,-21 - node: color: '#422E23FF' id: ConcreteTrimCornerNe decals: - 447: -4,-4 + 292: -4,-4 - node: color: '#422E23FF' id: ConcreteTrimCornerSe decals: - 448: -3,-3 + 293: -3,-3 - node: color: '#422E23FF' id: ConcreteTrimCornerSw decals: - 445: -2,-4 + 291: -2,-4 - node: color: '#422E23FF' id: ConcreteTrimInnerNw decals: - 450: -3,-4 + 295: -3,-4 - node: color: '#422E23FF' id: ConcreteTrimInnerSe decals: - 449: -3,-4 + 294: -3,-4 - node: zIndex: 1 color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 946: 5,-13 + 638: 5,-13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 804: -9,-17 + 805: -9,-16 + 806: -9,-17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 802: -9,-17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 803: -9,-16 - node: zIndex: 1 color: '#FFFFFFFF' id: FlowersBROne decals: - 622: 6.8216906,10.010503 + 405: 6.8216906,10.010503 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 51: -0.9850607,-1.9918964 + 24: -0.9850607,-1.9918964 - node: zIndex: 1 color: '#FFFFFFFF' id: FlowersBRThree decals: - 623: 11.132726,9.995637 - 625: 5.9594836,5.9358044 + 406: 11.132726,9.995637 + 408: 5.9594836,5.9358044 - node: zIndex: 1 color: '#FFFFFFFF' id: FlowersBRTwo decals: - 624: 12.128723,5.903023 + 407: 12.128723,5.903023 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 422: -4.986224,-6.3617783 + 274: -4.986224,-6.3617783 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 50: -5.0475607,-1.9762714 + 23: -5.0475607,-1.9762714 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowerspv1 decals: - 633: 11.146828,5.949858 + 416: 11.146828,5.949858 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowerspv2 decals: - 626: 6.47978,5.9506707 - 632: 12.12796,10.008332 - 634: 11.205407,9.958935 + 409: 6.47978,5.9506707 + 415: 12.12796,10.008332 + 417: 11.205407,9.958935 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowerspv3 decals: - 627: 6.34599,10.052931 + 410: 6.34599,10.052931 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 431: -0.98622394,-6.4242783 + 279: -0.98622394,-6.4242783 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowersy1 decals: - 618: 5.9743495,10.0997 + 401: 5.9743495,10.0997 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowersy2 decals: - 619: 11.786814,10.02537 + 402: 11.786814,10.02537 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 426: -0.98622394,-7.9711533 + 278: -0.98622394,-7.9711533 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowersy3 decals: - 620: 6.9257503,5.937163 + 403: 6.9257503,5.937163 - node: zIndex: 1 color: '#FFFFFFFF' id: Flowersy4 decals: - 621: 11.311113,5.9074306 + 404: 11.311113,5.9074306 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 48: -5.0006857,-1.9450214 - 421: -5.017474,-7.9711533 - 424: -1.0330989,-6.1274033 + 21: -5.0006857,-1.9450214 + 273: -5.017474,-7.9711533 + 276: -1.0330989,-6.1274033 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 418: -5.001849,-6.1742783 + 271: -5.001849,-6.1742783 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 425: -1.0174739,-7.9242783 - 953: 6.818325,5.9747634 + 277: -1.0174739,-7.9242783 + 643: 6.818325,5.9747634 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 47: -5.0319357,-1.9450214 - 419: -5.017474,-6.9711533 - 423: -1.0487239,-7.0649033 - 952: 6.08395,6.0060134 - 954: 11.4277,6.0685134 + 20: -5.0319357,-1.9450214 + 272: -5.017474,-6.9711533 + 275: -1.0487239,-7.0649033 + 642: 6.08395,6.0060134 + 644: 11.4277,6.0685134 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 49: -1.0163107,-1.9293964 + 22: -1.0163107,-1.9293964 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe decals: - 22: -6,-3 - 26: -2,-3 + 1: -6,-3 + 5: -2,-3 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 24: -4,-3 - 25: 0,-3 + 3: -4,-3 + 4: 0,-3 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 78: -2,-1 - 91: -6,-5 - 310: -6,-5 - 1121: -2,-5 + 35: -2,-1 + 46: -6,-5 + 201: -6,-5 + 778: -2,-5 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw decals: - 30: 0,-1 - 74: -4,-1 - 95: -4,-5 - 96: 0,-5 - 109: 0,-1 - 134: 0,-1 - 312: 0,-5 + 9: 0,-1 + 32: -4,-1 + 49: -4,-5 + 50: 0,-5 + 61: 0,-1 + 68: 0,-1 + 202: 0,-5 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 29: -2,-2 - 88: -2,-8 - 89: -2,-7 - 90: -2,-6 - 171: -6,-6 - 172: -6,-7 - 186: -2,-8 - 368: -6,-8 + 8: -2,-2 + 43: -2,-8 + 44: -2,-7 + 45: -2,-6 + 94: -6,-6 + 95: -6,-7 + 106: -2,-8 + 251: -6,-8 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 23: -5,-3 - 27: -1,-3 + 2: -5,-3 + 6: -1,-3 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 94: -5,-5 - 98: -1,-5 + 48: -5,-5 + 52: -1,-5 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 20: -4,-2 - 28: 0,-2 - 99: -4,-6 - 100: -4,-7 - 101: -4,-8 - 173: 0,-6 - 174: 0,-7 - 175: 0,-8 - 187: -4,-8 - 342: 0,-8 - 404: 0,-2 + 0: -4,-2 + 7: 0,-2 + 53: -4,-6 + 54: -4,-7 + 55: -4,-8 + 96: 0,-6 + 97: 0,-7 + 98: 0,-8 + 107: -4,-8 + 228: 0,-8 + 269: 0,-2 - node: color: '#639137FF' id: MiniTileBoxOverlay decals: - 905: 3,-15 - 906: 3,-16 + 618: 3,-15 + 619: 3,-16 - node: color: '#FFFFFFA4' id: MiniTileBoxOverlay decals: - 894: -7,-16 - 895: -7,-15 + 616: -7,-16 + 617: -7,-15 - node: color: '#FFFFFF5D' id: MiniTileCornerOverlaySE decals: - 940: -3,-18 + 632: -3,-18 - node: color: '#639137FF' id: MiniTileCornerOverlaySW decals: - 931: -1,-18 + 623: -1,-18 - node: color: '#FFFFFFFF' id: MiniTileDarkEndE decals: - 995: 2,-17 - 997: -4,-17 + 685: 2,-17 + 687: -4,-17 - node: color: '#FFFFFFFF' id: MiniTileDarkEndW decals: - 996: -6,-17 - 998: 0,-17 + 686: -6,-17 + 688: 0,-17 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 999: -1,-17 - 1000: -1,-16 - 1001: -1,-15 - 1034: -3,-16 - 1040: -7,-17 - 1053: -1,-14 + 689: -1,-17 + 690: -1,-16 + 691: -1,-15 + 724: -3,-16 + 730: -7,-17 + 743: -1,-14 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 1051: -5,-17 - 1052: 1,-17 + 741: -5,-17 + 742: 1,-17 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 1131: -9,1 - 1132: -8,1 - 1133: -7,1 - 1134: -6,1 - 1135: -6,0 - 1136: -7,0 - 1137: -8,0 - 1138: -9,0 - 1139: -9,0 + 780: -9,1 + 781: -8,1 + 782: -7,1 + 783: -6,1 + 784: -6,0 + 785: -7,0 + 786: -8,0 + 787: -9,0 + 788: -9,0 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1049: -5,-17 - 1050: 1,-17 + 739: -5,-17 + 740: 1,-17 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1140: -9,0 - 1141: -8,0 - 1142: -7,0 - 1143: -6,0 - 1144: -6,0 - 1148: -6,-1 - 1149: -8,-1 - 1150: -9,-1 - 1151: -7,-1 + 789: -9,0 + 790: -8,0 + 791: -7,0 + 792: -6,0 + 793: -6,0 + 794: -6,-1 + 795: -8,-1 + 796: -9,-1 + 797: -7,-1 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 1007: -3,-17 - 1008: -3,-16 - 1009: -3,-15 - 1027: -1,-16 - 1042: 3,-17 - 1054: -3,-14 + 697: -3,-17 + 698: -3,-16 + 699: -3,-15 + 717: -1,-16 + 732: 3,-17 + 744: -3,-14 - node: color: '#3EB38896' id: MiniTileInnerOverlayNE decals: - 763: -7,-11 + 532: -7,-11 - node: color: '#3EB38896' id: MiniTileInnerOverlayNW decals: - 762: -8,-11 + 531: -8,-11 - node: color: '#3EB38896' id: MiniTileInnerOverlaySE decals: - 765: -7,-11 + 534: -7,-11 - node: color: '#3EB38896' id: MiniTileInnerOverlaySW decals: - 764: -8,-11 + 533: -8,-11 - node: color: '#FFFFFF5D' id: MiniTileLineOverlayE decals: - 941: -3,-17 - 942: -3,-15 - 943: -3,-14 + 633: -3,-17 + 634: -3,-15 + 635: -3,-14 - node: color: '#639137FF' id: MiniTileLineOverlayS decals: - 932: 0,-18 - 933: 1,-18 - 934: 2,-18 - 935: 3,-18 + 624: 0,-18 + 625: 1,-18 + 626: 2,-18 + 627: 3,-18 - node: color: '#FFFFFF5D' id: MiniTileLineOverlayS decals: - 936: -7,-18 - 937: -6,-18 - 938: -5,-18 - 939: -4,-18 + 628: -7,-18 + 629: -6,-18 + 630: -5,-18 + 631: -4,-18 - node: color: '#639137FF' id: MiniTileLineOverlayW decals: - 928: -1,-14 - 929: -1,-15 - 930: -1,-17 + 620: -1,-14 + 621: -1,-15 + 622: -1,-17 - node: zIndex: 1 color: '#5C473CFF' id: OldConcreteTrimCornerNw decals: - 1120: -3,-5 + 777: -3,-5 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 965: 11,-30 - 966: 11,-29 - 967: 11,-28 + 655: 11,-30 + 656: 11,-29 + 657: 11,-28 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1098: 15,-23 - 1099: 16,-23 - 1100: 15,-15 - 1101: 16,-15 - 1102: 15,-9 - 1103: 16,-9 - 1104: 15,-2 - 1105: 16,-2 - 1106: 15,2 - 1107: 16,2 + 759: 15,-23 + 760: 16,-23 + 761: 15,-15 + 762: 16,-15 + 763: 15,-9 + 764: 16,-9 + 765: 15,-2 + 766: 16,-2 + 767: 15,2 + 768: 16,2 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 968: 11,-30 - 969: 11,-29 - 970: 11,-28 + 658: 11,-30 + 659: 11,-29 + 660: 11,-28 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1088: 15,2 - 1089: 16,2 - 1090: 15,-2 - 1091: 16,-2 - 1092: 15,-9 - 1093: 16,-9 - 1094: 15,-15 - 1095: 16,-15 - 1096: 15,-23 - 1097: 16,-23 + 749: 15,2 + 750: 16,2 + 751: 15,-2 + 752: 16,-2 + 753: 15,-9 + 754: 16,-9 + 755: 15,-15 + 756: 16,-15 + 757: 15,-23 + 758: 16,-23 - node: color: '#422E23FF' id: WoodTrimThinCornerNeWhite decals: - 67: -2,1 - 433: -4,-5 + 25: -2,1 + 280: -4,-5 - node: color: '#4B362BFF' id: WoodTrimThinCornerNeWhite decals: - 483: 7,9 - 484: 12,9 - 1035: 1,-19 + 302: 7,9 + 303: 12,9 + 725: 1,-19 - node: color: '#422E23FF' id: WoodTrimThinCornerNwWhite decals: - 68: -4,1 + 26: -4,1 - node: color: '#463126FF' id: WoodTrimThinCornerNwWhite decals: - 1112: -2,-5 + 770: -2,-5 - node: color: '#4B362BFF' id: WoodTrimThinCornerNwWhite decals: - 485: 6,9 - 486: 11,9 - 1036: -5,-19 + 304: 6,9 + 305: 11,9 + 726: -5,-19 - node: color: '#DE3A3A41' id: WoodTrimThinCornerNwWhite decals: - 555: 5,-15 + 338: 5,-15 - node: color: '#281E18FF' id: WoodTrimThinCornerSeWhite decals: - 324: 3,-8 + 212: 3,-8 - node: color: '#422E23FF' id: WoodTrimThinCornerSeWhite decals: - 270: 3,-5 - 435: -4,-3 + 172: 3,-5 + 281: -4,-3 - node: color: '#4B362BFF' id: WoodTrimThinCornerSeWhite decals: - 487: 12,7 - 488: 7,7 - 1037: 1,-22 + 306: 12,7 + 307: 7,7 + 727: 1,-22 - node: color: '#DE3A3A41' id: WoodTrimThinCornerSeWhite decals: - 561: 8,-15 - 564: 7,-17 + 344: 8,-15 + 347: 7,-17 - node: color: '#281E18FF' id: WoodTrimThinCornerSwWhite decals: - 319: -9,-8 + 207: -9,-8 - node: color: '#422E23FF' id: WoodTrimThinCornerSwWhite decals: - 293: -9,-5 - 437: -2,-3 + 192: -9,-5 + 283: -2,-3 - node: color: '#4B362BFF' id: WoodTrimThinCornerSwWhite decals: - 489: 6,7 - 490: 11,7 - 1038: -5,-22 + 308: 6,7 + 309: 11,7 + 728: -5,-22 - node: color: '#DE3A3A41' id: WoodTrimThinCornerSwWhite decals: - 571: 5,-17 + 354: 5,-17 - node: color: '#422E23FF' id: WoodTrimThinInnerNeWhite decals: - 36: -6,-3 - 37: -2,-3 - 69: -3,1 - 81: -2,0 - 87: 3,-3 - 454: -3,-3 - 455: -2,-4 + 13: -6,-3 + 14: -2,-3 + 27: -3,1 + 38: -2,0 + 42: 3,-3 + 299: -3,-3 + 300: -2,-4 - node: zIndex: 1 color: '#463126FF' id: WoodTrimThinInnerNeWhite decals: - 1119: -4,-5 + 776: -4,-5 - node: color: '#4B362BFF' id: WoodTrimThinInnerNeWhite decals: - 1039: -5,-22 - 1041: 1,-19 + 729: -5,-22 + 731: 1,-19 - node: color: '#422E23FF' id: WoodTrimThinInnerNwWhite decals: - 32: -4,-3 - 38: 0,-3 - 70: -3,1 - 71: -4,0 - 84: -9,-3 - 452: -3,-3 - 453: -4,-4 + 11: -4,-3 + 15: 0,-3 + 28: -3,1 + 29: -4,0 + 39: -9,-3 + 297: -3,-3 + 298: -4,-4 - node: zIndex: 1 color: '#463126FF' id: WoodTrimThinInnerNwWhite decals: - 1118: -2,-5 + 775: -2,-5 - node: color: '#4B362BFF' id: WoodTrimThinInnerNwWhite decals: - 1043: 1,-22 - 1044: -5,-19 + 733: 1,-22 + 734: -5,-19 - node: color: '#DE3A3A41' id: WoodTrimThinInnerNwWhite decals: - 583: 6,-15 + 366: 6,-15 - node: color: '#422E23FF' id: WoodTrimThinInnerSeWhite decals: - 79: -2,0 - 80: -2,-1 - 86: 3,-4 - 135: -6,-5 - 201: -3,-8 - 314: -6,-5 - 457: -2,-4 + 36: -2,0 + 37: -2,-1 + 41: 3,-4 + 69: -6,-5 + 119: -3,-8 + 204: -6,-5 + 301: -2,-4 - node: zIndex: 1 color: '#463126FF' id: WoodTrimThinInnerSeWhite decals: - 1115: -3,-5 - 1116: -4,-3 - 1122: -2,-5 + 772: -3,-5 + 773: -4,-3 + 779: -2,-5 - node: color: '#4B362BFF' id: WoodTrimThinInnerSeWhite decals: - 1045: -5,-19 - 1046: 1,-22 + 735: -5,-19 + 736: 1,-22 - node: color: '#DE3A3A41' id: WoodTrimThinInnerSeWhite decals: - 582: 7,-15 + 365: 7,-15 - node: color: '#422E23FF' id: WoodTrimThinInnerSwWhite decals: - 45: 0,-1 - 72: -4,0 - 75: -4,-1 - 85: -9,-4 - 136: 0,-1 - 143: -4,-5 - 162: 0,-5 - 197: -3,-8 - 313: 0,-5 - 451: -4,-4 + 19: 0,-1 + 30: -4,0 + 33: -4,-1 + 40: -9,-4 + 70: 0,-1 + 72: -4,-5 + 87: 0,-5 + 116: -3,-8 + 203: 0,-5 + 296: -4,-4 - node: zIndex: 1 color: '#463126FF' id: WoodTrimThinInnerSwWhite decals: - 1114: -3,-5 - 1117: -2,-3 + 771: -3,-5 + 774: -2,-3 - node: color: '#4B362BFF' id: WoodTrimThinInnerSwWhite decals: - 1047: 1,-19 - 1048: -5,-22 + 737: 1,-19 + 738: -5,-22 - node: color: '#281E18FF' id: WoodTrimThinLineEWhite decals: - 325: 3,-7 - 326: 3,-6 + 213: 3,-7 + 214: 3,-6 - node: color: '#422E23FF' id: WoodTrimThinLineEWhite decals: - 40: -2,-2 - 77: -2,-1 - 121: 3,-2 - 123: 3,-5 - 153: -2,-8 - 154: -2,-7 - 155: -2,-6 - 178: -6,-6 - 179: -6,-7 - 188: -2,-8 - 372: -6,-8 - 443: -5,-4 + 17: -2,-2 + 34: -2,-1 + 66: 3,-2 + 67: 3,-5 + 80: -2,-8 + 81: -2,-7 + 82: -2,-6 + 99: -6,-6 + 100: -6,-7 + 108: -2,-8 + 252: -6,-8 + 289: -5,-4 - node: color: '#4B362BFF' id: WoodTrimThinLineEWhite decals: - 491: 12,8 - 492: 7,8 - 1030: -5,-21 - 1031: -5,-20 - 1032: 1,-21 - 1033: 1,-20 + 310: 12,8 + 311: 7,8 + 720: -5,-21 + 721: -5,-20 + 722: 1,-21 + 723: 1,-20 - node: color: '#DE3A3A41' id: WoodTrimThinLineEWhite decals: - 579: 7,-16 - 581: 8,-14 + 362: 7,-16 + 364: 8,-14 - node: color: '#422E23FF' id: WoodTrimThinLineNWhite decals: - 31: -5,-3 - 39: -1,-3 - 441: -3,-6 + 10: -5,-3 + 16: -1,-3 + 287: -3,-6 - node: color: '#4B362BFF' id: WoodTrimThinLineNWhite decals: - 1015: -4,-22 - 1016: -3,-22 - 1017: -2,-22 - 1018: -1,-22 - 1019: 0,-22 - 1020: 0,-19 - 1021: -1,-19 - 1022: -2,-19 - 1023: -3,-19 - 1024: -4,-19 + 705: -4,-22 + 706: -3,-22 + 707: -2,-22 + 708: -1,-22 + 709: 0,-22 + 710: 0,-19 + 711: -1,-19 + 712: -2,-19 + 713: -3,-19 + 714: -4,-19 - node: color: '#281E18FF' id: WoodTrimThinLineSWhite decals: - 320: -8,-8 - 321: -7,-8 - 322: 1,-8 - 323: 2,-8 - 327: 0,-8 - 366: -6,-8 + 208: -8,-8 + 209: -7,-8 + 210: 1,-8 + 211: 2,-8 + 215: 0,-8 + 250: -6,-8 - node: color: '#422E23FF' id: WoodTrimThinLineSWhite decals: - 115: 0,-1 - 117: 1,-1 - 118: 2,-1 - 119: 3,-1 - 139: -5,-5 - 159: -1,-5 - 182: -4,-8 - 185: -2,-8 - 278: 2,-5 - 279: 1,-5 - 284: -8,-5 - 287: -7,-5 - 306: 0,-5 - 307: -6,-5 - 398: 0,-2 - 399: 1,-2 - 400: 2,-2 - 401: 3,-2 - 444: -3,-2 + 62: 0,-1 + 63: 1,-1 + 64: 2,-1 + 65: 3,-1 + 71: -5,-5 + 85: -1,-5 + 102: -4,-8 + 105: -2,-8 + 180: 2,-5 + 181: 1,-5 + 186: -8,-5 + 187: -7,-5 + 199: 0,-5 + 200: -6,-5 + 265: 0,-2 + 266: 1,-2 + 267: 2,-2 + 268: 3,-2 + 290: -3,-2 - node: color: '#4B362BFF' id: WoodTrimThinLineSWhite decals: - 1002: -4,-22 - 1003: -3,-22 - 1004: -2,-22 - 1005: -1,-22 - 1006: 0,-22 - 1010: -4,-19 - 1011: -3,-19 - 1012: -2,-19 - 1013: -1,-19 - 1014: 0,-19 + 692: -4,-22 + 693: -3,-22 + 694: -2,-22 + 695: -1,-22 + 696: 0,-22 + 700: -4,-19 + 701: -3,-19 + 702: -2,-19 + 703: -1,-19 + 704: 0,-19 - node: color: '#DE3A3A41' id: WoodTrimThinLineSWhite decals: - 544: 5,-13 - 545: 6,-13 - 546: 7,-13 - 547: 8,-13 - 580: 6,-17 + 327: 5,-13 + 328: 6,-13 + 329: 7,-13 + 330: 8,-13 + 363: 6,-17 - node: color: '#281E18FF' id: WoodTrimThinLineWWhite decals: - 317: -9,-6 - 318: -9,-7 + 205: -9,-6 + 206: -9,-7 - node: color: '#422E23FF' id: WoodTrimThinLineWWhite decals: - 33: -4,-2 - 41: 0,-2 - 73: -4,-1 - 146: -4,-6 - 148: -4,-7 - 149: -4,-8 - 170: -1,0 - 181: 0,-6 - 183: 0,-7 - 184: 0,-8 - 190: -4,-8 - 363: 0,-8 - 406: 0,-2 - 442: -1,-4 + 12: -4,-2 + 18: 0,-2 + 31: -4,-1 + 74: -4,-6 + 75: -4,-7 + 76: -4,-8 + 93: -1,0 + 101: 0,-6 + 103: 0,-7 + 104: 0,-8 + 110: -4,-8 + 247: 0,-8 + 270: 0,-2 + 288: -1,-4 - node: color: '#4B362BFF' id: WoodTrimThinLineWWhite decals: - 493: 6,8 - 494: 11,8 - 1025: 1,-21 - 1026: 1,-20 - 1028: -5,-21 - 1029: -5,-20 + 312: 6,8 + 313: 11,8 + 715: 1,-21 + 716: 1,-20 + 718: -5,-21 + 719: -5,-20 - node: color: '#DE3A3A41' id: WoodTrimThinLineWWhite decals: - 573: 5,-16 - 577: 6,-14 + 356: 5,-16 + 360: 6,-14 + - node: + cleanable: True + color: '#57121292' + id: splatter + decals: + 800: -9.013203,-16.087303 + 801: -9.060078,-16.212303 + - node: + cleanable: True + color: '#9B000066' + id: splatter + decals: + 798: -9.075703,-16.024803 + 799: -8.825703,-16.196678 - type: GridAtmosphere version: 2 data: @@ -1885,6103 +1919,6150 @@ entities: range: 48 - proto: AirAlarm entities: - - uid: 86 + - uid: 3 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-12.5 - parent: 818 + parent: 2 - type: DeviceList devices: - - 1089 - - 761 - - 138 - - 971 - - 844 - - 954 - - uid: 289 + - 890 + - 872 + - 588 + - 593 + - 585 + - 586 + - uid: 4 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-15.5 - parent: 818 - - uid: 1009 + parent: 2 + - uid: 5 components: - type: Transform pos: 0.5,-12.5 - parent: 818 + parent: 2 - type: DeviceList devices: - - 1721 - - 1712 - - 1718 - - 1711 - - 1710 - - 1511 - - 138 - - uid: 1038 + - 878 + - 895 + - 877 + - 876 + - 894 + - 893 + - 588 + - uid: 6 components: - type: Transform pos: -3.5,6.5 - parent: 818 + parent: 2 - type: DeviceList devices: - - 969 - - 652 - - 970 - - 788 - - 642 - - 17 - - 797 - - 1732 - - 622 - - 596 - - 1868 - - 1876 - - uid: 1040 + - 587 + - 579 + - 592 + - 888 + - 871 + - 881 + - 873 + - 896 + - 869 + - 577 + - 879 + - 897 + - uid: 7 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-6.5 - parent: 818 + parent: 2 - type: DeviceList devices: - - 108 - - 109 - - 1174 - - 1177 - - 1176 - - 1173 - - 298 - - 970 - - 777 - - 841 - - 971 + - 863 + - 882 + - 875 + - 892 + - 891 + - 874 + - 589 - 592 - - 583 - - uid: 1072 + - 590 + - 591 + - 593 + - 886 + - 866 + - uid: 8 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-12.5 - parent: 818 + parent: 2 - type: DeviceList devices: - - 519 - - 13 - - 954 - - uid: 1105 + - 885 + - 862 + - 586 + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,1.5 - parent: 818 + parent: 2 - type: DeviceList devices: - - 931 - - 636 - - 601 - - 602 - - 603 - - 474 - - 461 - - 8 - - 652 - - 777 - - 841 - - 844 - - 837 - - 755 - - 766 - - 757 - - 568 + - 889 + - 870 + - 887 + - 867 + - 868 + - 884 + - 865 + - 880 + - 579 + - 590 + - 591 + - 585 + - 584 + - 581 + - 583 + - 582 + - 41 - proto: Airlock entities: - - uid: 14 + - uid: 10 components: - type: Transform pos: 4.5,-3.5 - parent: 818 - - uid: 15 + parent: 2 + - uid: 11 components: - type: Transform pos: 4.5,-2.5 - parent: 818 - - uid: 20 + parent: 2 + - uid: 12 components: - type: Transform pos: 4.5,-10.5 - parent: 818 - - uid: 21 + parent: 2 + - uid: 13 components: - type: Transform pos: 4.5,4.5 - parent: 818 - - uid: 42 + parent: 2 + - uid: 14 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 - parent: 818 - - uid: 473 + parent: 2 + - uid: 15 components: - type: Transform pos: -4.5,13.5 - parent: 818 + parent: 2 missingComponents: - AccessReader - - uid: 549 + - uid: 16 components: - type: Transform pos: -4.5,9.5 - parent: 818 + parent: 2 missingComponents: - AccessReader - - uid: 595 + - uid: 17 components: - type: Transform pos: -4.5,7.5 - parent: 818 + parent: 2 missingComponents: - AccessReader - - uid: 791 + - uid: 18 components: - type: Transform pos: -4.5,11.5 - parent: 818 + parent: 2 missingComponents: - AccessReader - - uid: 1344 + - uid: 19 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,6.5 - parent: 818 + parent: 2 - proto: AirlockAtmosphericsLocked entities: - - uid: 764 + - uid: 20 components: - type: Transform pos: -4.5,-10.5 - parent: 818 + parent: 2 - proto: AirlockBarGlassLocked entities: - - uid: 940 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 818 + parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 1632 + - uid: 22 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,4.5 - parent: 818 + parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 28 + - uid: 23 components: - type: Transform pos: 15.5,-14.5 - parent: 818 + parent: 2 + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 462 + - uid: 24 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,2.5 - parent: 818 + parent: 2 + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 550 + - uid: 25 components: - type: Transform pos: 15.5,-8.5 - parent: 818 + parent: 2 + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 561 + - uid: 26 components: - type: Transform pos: 15.5,-1.5 - parent: 818 + parent: 2 + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 1221 + - uid: 27 components: - type: Transform pos: 11.5,-26.5 - parent: 818 + parent: 2 + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 1363 + - uid: 28 components: - type: Transform pos: 15.5,-22.5 - parent: 818 + parent: 2 + - type: ContainerFill + containers: + board: [ DoorElectronicsCentralCommand ] missingComponents: - RCDDeconstructable - Damageable - Destructible - proto: AirlockExternalShuttleLocked entities: - - uid: 101 + - uid: 29 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-22.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 1363: + 28: - DockStatus: AutoClose - 1960: + 1050: - DoorStatus: Trigger missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 103 + - uid: 30 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-14.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 28: + 23: - DockStatus: AutoClose - 1959: + 1049: - DoorStatus: Trigger missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 130 + - uid: 31 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-1.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 561: + 26: - DockStatus: AutoClose - 1957: + 1047: - DoorStatus: Trigger missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 144 + - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-8.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 550: + 25: - DockStatus: AutoClose - 1958: + 1048: - DoorStatus: Trigger missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 695 + - uid: 33 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,2.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 462: + 24: - DockStatus: AutoClose - 1911: + 1046: - DoorStatus: Trigger missingComponents: - RCDDeconstructable - Damageable - Destructible - - uid: 1373 + - uid: 34 components: - type: Transform pos: 11.5,-30.5 - parent: 818 + parent: 2 missingComponents: - RCDDeconstructable - Damageable - Destructible - proto: AirlockGlass entities: - - uid: 1142 + - uid: 35 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,2.5 - parent: 818 - - uid: 1337 + parent: 2 + - uid: 36 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-12.5 - parent: 818 - - uid: 1342 + parent: 2 + - uid: 37 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 - parent: 818 - - uid: 1455 + parent: 2 + - uid: 38 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-8.5 - parent: 818 + parent: 2 - proto: AirlockMaint entities: - - uid: 1704 + - uid: 39 components: - type: Transform pos: -2.5,14.5 - parent: 818 + parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 730 + - uid: 40 components: - type: Transform pos: 8.5,-13.5 - parent: 818 + parent: 2 - proto: AirSensor entities: - - uid: 568 + - uid: 41 components: - type: Transform pos: -2.5,-3.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 +- proto: AlwaysPoweredlightRed + entities: + - uid: 1570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 - proto: APCBasic entities: - - uid: 127 + - uid: 42 components: - type: Transform pos: -0.5,6.5 - parent: 818 - - uid: 572 + parent: 2 + - uid: 43 components: - type: Transform pos: 1.5,-12.5 - parent: 818 - - uid: 966 + parent: 2 + - uid: 44 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-4.5 - parent: 818 - - uid: 967 + parent: 2 + - uid: 45 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-14.5 - parent: 818 - - uid: 1138 + parent: 2 + - uid: 46 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-2.5 - parent: 818 + parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 318 + - uid: 47 components: - type: Transform pos: 13.5,-21.5 - parent: 818 - - uid: 486 + parent: 2 + - uid: 48 components: - type: Transform pos: 14.5,-0.5 - parent: 818 - - uid: 487 + parent: 2 + - uid: 49 components: - type: Transform pos: 14.5,3.5 - parent: 818 - - uid: 802 + parent: 2 + - uid: 50 components: - type: Transform pos: 13.5,-13.5 - parent: 818 - - uid: 803 + parent: 2 + - uid: 51 components: - type: Transform pos: 14.5,-7.5 - parent: 818 + parent: 2 - proto: Ash entities: - - uid: 1660 + - uid: 52 components: - type: Transform pos: -1.54991,12.886424 - parent: 818 + parent: 2 - proto: Ashtray entities: - - uid: 1661 + - uid: 53 components: - type: Transform pos: -1.596785,12.459861 - parent: 818 + parent: 2 - proto: AtmosDeviceFanTiny entities: - - uid: 34 + - uid: 54 components: - type: Transform pos: 16.5,2.5 - parent: 818 - - uid: 322 + parent: 2 + - uid: 55 components: - type: Transform pos: 16.5,-8.5 - parent: 818 - - uid: 463 + parent: 2 + - uid: 56 components: - type: Transform pos: 16.5,-14.5 - parent: 818 - - uid: 484 + parent: 2 + - uid: 57 components: - type: Transform pos: 16.5,-1.5 - parent: 818 - - uid: 635 + parent: 2 + - uid: 58 components: - type: Transform pos: 16.5,-22.5 - parent: 818 - - uid: 1209 + parent: 2 + - uid: 59 components: - type: Transform pos: 11.5,-30.5 - parent: 818 + parent: 2 - proto: BarSign entities: - - uid: 648 + - uid: 60 components: - type: Transform pos: 2.5,2.5 - parent: 818 + parent: 2 - proto: BaseComputer entities: - - uid: 1648 + - uid: 61 components: - type: MetaData name: касса - type: Transform pos: -1.5,-19.5 - parent: 818 + parent: 2 - proto: BenchRedComfy entities: - - uid: 48 + - uid: 62 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-6.5 - parent: 818 - - uid: 88 + parent: 2 + - uid: 63 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-5.5 - parent: 818 - - uid: 277 + parent: 2 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,1.5 - parent: 818 - - uid: 280 + parent: 2 + - uid: 65 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,2.5 - parent: 818 - - uid: 281 + parent: 2 + - uid: 66 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-8.5 - parent: 818 - - uid: 282 + parent: 2 + - uid: 67 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-6.5 - parent: 818 - - uid: 359 + parent: 2 + - uid: 68 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-0.5 - parent: 818 - - uid: 360 + parent: 2 + - uid: 69 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-7.5 - parent: 818 - - uid: 361 + parent: 2 + - uid: 70 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,1.5 - parent: 818 - - uid: 362 + parent: 2 + - uid: 71 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-8.5 - parent: 818 - - uid: 363 + parent: 2 + - uid: 72 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-7.5 - parent: 818 - - uid: 372 + parent: 2 + - uid: 73 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-0.5 - parent: 818 - - uid: 373 + parent: 2 + - uid: 74 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,2.5 - parent: 818 - - uid: 375 + parent: 2 + - uid: 75 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,0.5 - parent: 818 - - uid: 423 + parent: 2 + - uid: 76 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,2.5 - parent: 818 - - uid: 443 + parent: 2 + - uid: 77 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-6.5 - parent: 818 - - uid: 494 + parent: 2 + - uid: 78 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,1.5 - parent: 818 - - uid: 495 + parent: 2 + - uid: 79 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-0.5 - parent: 818 - - uid: 496 + parent: 2 + - uid: 80 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,0.5 - parent: 818 - - uid: 517 + parent: 2 + - uid: 81 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-5.5 - parent: 818 - - uid: 520 + parent: 2 + - uid: 82 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-7.5 - parent: 818 - - uid: 660 + parent: 2 + - uid: 83 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-5.5 - parent: 818 - - uid: 860 + parent: 2 + - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-8.5 - parent: 818 - - uid: 899 + parent: 2 + - uid: 85 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 - parent: 818 + parent: 2 - proto: BlockGameArcade entities: - - uid: 61 + - uid: 86 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-0.5 - parent: 818 + parent: 2 - proto: BookRandomStory entities: - - uid: 332 + - uid: 87 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.68713,-1.3668416 - parent: 818 + parent: 2 - proto: BoozeDispenser entities: - - uid: 513 + - uid: 88 components: - type: Transform pos: 1.5,1.5 - parent: 818 + parent: 2 - proto: BowImprovised entities: - - uid: 157 + - uid: 90 components: - type: Transform - parent: 151 + parent: 89 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CableApcExtension entities: - - uid: 142 + - uid: 96 components: - type: Transform pos: 11.5,-27.5 - parent: 818 - - uid: 143 + parent: 2 + - uid: 97 components: - type: Transform pos: 11.5,-26.5 - parent: 818 - - uid: 472 + parent: 2 + - uid: 98 components: - type: Transform pos: -2.5,-2.5 - parent: 818 - - uid: 477 + parent: 2 + - uid: 99 components: - type: Transform pos: -0.5,-15.5 - parent: 818 - - uid: 512 + parent: 2 + - uid: 100 components: - type: Transform pos: 11.5,-25.5 - parent: 818 - - uid: 604 + parent: 2 + - uid: 101 components: - type: Transform pos: 0.5,-15.5 - parent: 818 - - uid: 665 + parent: 2 + - uid: 102 components: - type: Transform pos: 13.5,-22.5 - parent: 818 - - uid: 806 + parent: 2 + - uid: 103 components: - type: Transform pos: 13.5,-2.5 - parent: 818 - - uid: 1010 + parent: 2 + - uid: 104 components: - type: Transform pos: 14.5,-2.5 - parent: 818 - - uid: 1238 + parent: 2 + - uid: 105 components: - type: Transform pos: -1.5,-15.5 - parent: 818 - - uid: 1384 + parent: 2 + - uid: 106 components: - type: Transform pos: 12.5,-2.5 - parent: 818 - - uid: 1394 + parent: 2 + - uid: 107 components: - type: Transform pos: 1.5,-15.5 - parent: 818 - - uid: 1395 + parent: 2 + - uid: 108 components: - type: Transform pos: -1.5,-14.5 - parent: 818 - - uid: 1396 + parent: 2 + - uid: 109 components: - type: Transform pos: -2.5,-15.5 - parent: 818 - - uid: 1397 + parent: 2 + - uid: 110 components: - type: Transform pos: -0.5,6.5 - parent: 818 - - uid: 1398 + parent: 2 + - uid: 111 components: - type: Transform pos: -0.5,5.5 - parent: 818 - - uid: 1399 + parent: 2 + - uid: 112 components: - type: Transform pos: -0.5,4.5 - parent: 818 - - uid: 1401 + parent: 2 + - uid: 113 components: - type: Transform pos: 1.5,-13.5 - parent: 818 - - uid: 1402 + parent: 2 + - uid: 114 components: - type: Transform pos: 1.5,-14.5 - parent: 818 - - uid: 1403 + parent: 2 + - uid: 115 components: - type: Transform pos: -1.5,4.5 - parent: 818 - - uid: 1404 + parent: 2 + - uid: 116 components: - type: Transform pos: -2.5,4.5 - parent: 818 - - uid: 1405 + parent: 2 + - uid: 117 components: - type: Transform pos: -3.5,4.5 - parent: 818 - - uid: 1406 + parent: 2 + - uid: 118 components: - type: Transform pos: -4.5,4.5 - parent: 818 - - uid: 1407 + parent: 2 + - uid: 119 components: - type: Transform pos: -5.5,4.5 - parent: 818 - - uid: 1408 + parent: 2 + - uid: 120 components: - type: Transform pos: -6.5,4.5 - parent: 818 - - uid: 1409 + parent: 2 + - uid: 121 components: - type: Transform pos: 0.5,4.5 - parent: 818 - - uid: 1410 + parent: 2 + - uid: 122 components: - type: Transform pos: 1.5,4.5 - parent: 818 - - uid: 1411 + parent: 2 + - uid: 123 components: - type: Transform pos: 2.5,4.5 - parent: 818 - - uid: 1415 + parent: 2 + - uid: 124 components: - type: Transform pos: -2.5,5.5 - parent: 818 - - uid: 1416 + parent: 2 + - uid: 125 components: - type: Transform pos: -2.5,6.5 - parent: 818 - - uid: 1417 + parent: 2 + - uid: 126 components: - type: Transform pos: -2.5,7.5 - parent: 818 - - uid: 1418 + parent: 2 + - uid: 127 components: - type: Transform pos: -2.5,8.5 - parent: 818 - - uid: 1419 + parent: 2 + - uid: 128 components: - type: Transform pos: -2.5,9.5 - parent: 818 - - uid: 1420 + parent: 2 + - uid: 129 components: - type: Transform pos: -2.5,10.5 - parent: 818 - - uid: 1421 + parent: 2 + - uid: 130 components: - type: Transform pos: -2.5,11.5 - parent: 818 - - uid: 1424 + parent: 2 + - uid: 131 components: - type: Transform pos: -2.5,12.5 - parent: 818 - - uid: 1426 + parent: 2 + - uid: 132 components: - type: Transform pos: -2.5,13.5 - parent: 818 - - uid: 1443 + parent: 2 + - uid: 133 components: - type: Transform pos: 11.5,-2.5 - parent: 818 - - uid: 1444 + parent: 2 + - uid: 134 components: - type: Transform pos: 10.5,-2.5 - parent: 818 - - uid: 1445 + parent: 2 + - uid: 135 components: - type: Transform pos: 9.5,-2.5 - parent: 818 - - uid: 1446 + parent: 2 + - uid: 136 components: - type: Transform pos: 8.5,-2.5 - parent: 818 - - uid: 1449 + parent: 2 + - uid: 137 components: - type: Transform pos: 12.5,-1.5 - parent: 818 - - uid: 1450 + parent: 2 + - uid: 138 components: - type: Transform pos: 12.5,-0.5 - parent: 818 - - uid: 1451 + parent: 2 + - uid: 139 components: - type: Transform pos: 12.5,0.5 - parent: 818 - - uid: 1452 + parent: 2 + - uid: 140 components: - type: Transform pos: 12.5,1.5 - parent: 818 - - uid: 1453 + parent: 2 + - uid: 141 components: - type: Transform pos: 12.5,2.5 - parent: 818 - - uid: 1454 + parent: 2 + - uid: 142 components: - type: Transform pos: 13.5,2.5 - parent: 818 - - uid: 1456 + parent: 2 + - uid: 143 components: - type: Transform pos: 7.5,-2.5 - parent: 818 - - uid: 1457 + parent: 2 + - uid: 144 components: - type: Transform pos: 6.5,-2.5 - parent: 818 - - uid: 1458 + parent: 2 + - uid: 145 components: - type: Transform pos: 12.5,-3.5 - parent: 818 - - uid: 1459 + parent: 2 + - uid: 146 components: - type: Transform pos: 12.5,-4.5 - parent: 818 - - uid: 1460 + parent: 2 + - uid: 147 components: - type: Transform pos: 12.5,-5.5 - parent: 818 - - uid: 1461 + parent: 2 + - uid: 148 components: - type: Transform pos: 12.5,-6.5 - parent: 818 - - uid: 1462 + parent: 2 + - uid: 149 components: - type: Transform pos: 12.5,-7.5 - parent: 818 - - uid: 1463 + parent: 2 + - uid: 150 components: - type: Transform pos: 12.5,-8.5 - parent: 818 - - uid: 1464 + parent: 2 + - uid: 151 components: - type: Transform pos: 12.5,-9.5 - parent: 818 - - uid: 1465 + parent: 2 + - uid: 152 components: - type: Transform pos: 13.5,-8.5 - parent: 818 - - uid: 1466 + parent: 2 + - uid: 153 components: - type: Transform pos: 10.5,-14.5 - parent: 818 - - uid: 1467 + parent: 2 + - uid: 154 components: - type: Transform pos: 9.5,-14.5 - parent: 818 - - uid: 1468 + parent: 2 + - uid: 155 components: - type: Transform pos: 8.5,-14.5 - parent: 818 - - uid: 1469 + parent: 2 + - uid: 156 components: - type: Transform pos: 7.5,-14.5 - parent: 818 - - uid: 1470 + parent: 2 + - uid: 157 components: - type: Transform pos: 6.5,-3.5 - parent: 818 - - uid: 1471 + parent: 2 + - uid: 158 components: - type: Transform pos: 6.5,-4.5 - parent: 818 - - uid: 1472 + parent: 2 + - uid: 159 components: - type: Transform pos: 6.5,-5.5 - parent: 818 - - uid: 1473 + parent: 2 + - uid: 160 components: - type: Transform pos: 6.5,-6.5 - parent: 818 - - uid: 1474 + parent: 2 + - uid: 161 components: - type: Transform pos: 6.5,-7.5 - parent: 818 - - uid: 1475 + parent: 2 + - uid: 162 components: - type: Transform pos: 6.5,-8.5 - parent: 818 - - uid: 1476 + parent: 2 + - uid: 163 components: - type: Transform pos: 6.5,-9.5 - parent: 818 - - uid: 1477 + parent: 2 + - uid: 164 components: - type: Transform pos: 6.5,-10.5 - parent: 818 - - uid: 1478 + parent: 2 + - uid: 165 components: - type: Transform pos: 12.5,-10.5 - parent: 818 - - uid: 1479 + parent: 2 + - uid: 166 components: - type: Transform pos: 6.5,-1.5 - parent: 818 - - uid: 1480 + parent: 2 + - uid: 167 components: - type: Transform pos: 6.5,-0.5 - parent: 818 - - uid: 1481 + parent: 2 + - uid: 168 components: - type: Transform pos: 6.5,0.5 - parent: 818 - - uid: 1482 + parent: 2 + - uid: 169 components: - type: Transform pos: 6.5,1.5 - parent: 818 - - uid: 1483 + parent: 2 + - uid: 170 components: - type: Transform pos: 6.5,2.5 - parent: 818 - - uid: 1484 + parent: 2 + - uid: 171 components: - type: Transform pos: 6.5,3.5 - parent: 818 - - uid: 1485 + parent: 2 + - uid: 172 components: - type: Transform pos: 6.5,4.5 - parent: 818 - - uid: 1486 + parent: 2 + - uid: 173 components: - type: Transform pos: 7.5,4.5 - parent: 818 - - uid: 1487 + parent: 2 + - uid: 174 components: - type: Transform pos: 8.5,4.5 - parent: 818 - - uid: 1488 + parent: 2 + - uid: 175 components: - type: Transform pos: 9.5,4.5 - parent: 818 - - uid: 1489 + parent: 2 + - uid: 176 components: - type: Transform pos: 9.5,5.5 - parent: 818 - - uid: 1490 + parent: 2 + - uid: 177 components: - type: Transform pos: 9.5,6.5 - parent: 818 - - uid: 1491 + parent: 2 + - uid: 178 components: - type: Transform pos: 9.5,7.5 - parent: 818 - - uid: 1492 + parent: 2 + - uid: 179 components: - type: Transform pos: 9.5,8.5 - parent: 818 - - uid: 1493 + parent: 2 + - uid: 180 components: - type: Transform pos: 9.5,9.5 - parent: 818 - - uid: 1494 + parent: 2 + - uid: 181 components: - type: Transform pos: 8.5,8.5 - parent: 818 - - uid: 1495 + parent: 2 + - uid: 182 components: - type: Transform pos: 10.5,8.5 - parent: 818 - - uid: 1496 + parent: 2 + - uid: 183 components: - type: Transform pos: 11.5,-14.5 - parent: 818 - - uid: 1497 + parent: 2 + - uid: 184 components: - type: Transform pos: 11.5,-15.5 - parent: 818 - - uid: 1498 + parent: 2 + - uid: 185 components: - type: Transform pos: 11.5,-16.5 - parent: 818 - - uid: 1499 + parent: 2 + - uid: 186 components: - type: Transform pos: 11.5,-17.5 - parent: 818 - - uid: 1500 + parent: 2 + - uid: 187 components: - type: Transform pos: 11.5,-18.5 - parent: 818 - - uid: 1501 + parent: 2 + - uid: 188 components: - type: Transform pos: 11.5,-19.5 - parent: 818 - - uid: 1502 + parent: 2 + - uid: 189 components: - type: Transform pos: 11.5,-20.5 - parent: 818 - - uid: 1503 + parent: 2 + - uid: 190 components: - type: Transform pos: 11.5,-21.5 - parent: 818 - - uid: 1504 + parent: 2 + - uid: 191 components: - type: Transform pos: 11.5,-22.5 - parent: 818 - - uid: 1505 + parent: 2 + - uid: 192 components: - type: Transform pos: 11.5,-23.5 - parent: 818 - - uid: 1506 + parent: 2 + - uid: 193 components: - type: Transform pos: 11.5,-24.5 - parent: 818 - - uid: 1507 + parent: 2 + - uid: 194 components: - type: Transform pos: 12.5,-22.5 - parent: 818 - - uid: 1508 + parent: 2 + - uid: 195 components: - type: Transform pos: -7.5,-4.5 - parent: 818 - - uid: 1509 + parent: 2 + - uid: 196 components: - type: Transform pos: 13.5,-14.5 - parent: 818 - - uid: 1510 + parent: 2 + - uid: 197 components: - type: Transform pos: 12.5,-14.5 - parent: 818 - - uid: 1519 + parent: 2 + - uid: 198 components: - type: Transform pos: 4.5,-4.5 - parent: 818 - - uid: 1520 + parent: 2 + - uid: 199 components: - type: Transform pos: 3.5,-4.5 - parent: 818 - - uid: 1521 + parent: 2 + - uid: 200 components: - type: Transform pos: 2.5,-3.5 - parent: 818 - - uid: 1522 + parent: 2 + - uid: 201 components: - type: Transform pos: 2.5,-4.5 - parent: 818 - - uid: 1523 + parent: 2 + - uid: 202 components: - type: Transform pos: -1.5,0.5 - parent: 818 - - uid: 1524 + parent: 2 + - uid: 203 components: - type: Transform pos: 1.5,-3.5 - parent: 818 - - uid: 1525 + parent: 2 + - uid: 204 components: - type: Transform pos: 0.5,-3.5 - parent: 818 - - uid: 1526 + parent: 2 + - uid: 205 components: - type: Transform pos: -0.5,-3.5 - parent: 818 - - uid: 1527 + parent: 2 + - uid: 206 components: - type: Transform pos: -1.5,-3.5 - parent: 818 - - uid: 1528 + parent: 2 + - uid: 207 components: - type: Transform pos: -2.5,-3.5 - parent: 818 - - uid: 1529 + parent: 2 + - uid: 208 components: - type: Transform pos: -3.5,-3.5 - parent: 818 - - uid: 1530 + parent: 2 + - uid: 209 components: - type: Transform pos: -4.5,-3.5 - parent: 818 - - uid: 1531 + parent: 2 + - uid: 210 components: - type: Transform pos: -5.5,-3.5 - parent: 818 - - uid: 1532 + parent: 2 + - uid: 211 components: - type: Transform pos: -6.5,-3.5 - parent: 818 - - uid: 1533 + parent: 2 + - uid: 212 components: - type: Transform pos: -7.5,-3.5 - parent: 818 - - uid: 1534 + parent: 2 + - uid: 213 components: - type: Transform pos: -2.5,-1.5 - parent: 818 - - uid: 1535 + parent: 2 + - uid: 214 components: - type: Transform pos: -2.5,-0.5 - parent: 818 - - uid: 1536 + parent: 2 + - uid: 215 components: - type: Transform pos: -2.5,0.5 - parent: 818 - - uid: 1538 + parent: 2 + - uid: 216 components: - type: Transform pos: -2.5,-4.5 - parent: 818 - - uid: 1539 + parent: 2 + - uid: 217 components: - type: Transform pos: -2.5,-5.5 - parent: 818 - - uid: 1540 + parent: 2 + - uid: 218 components: - type: Transform pos: -2.5,-6.5 - parent: 818 - - uid: 1542 + parent: 2 + - uid: 219 components: - type: Transform pos: -7.5,-2.5 - parent: 818 - - uid: 1543 + parent: 2 + - uid: 220 components: - type: Transform pos: 2.5,-2.5 - parent: 818 - - uid: 1544 + parent: 2 + - uid: 221 components: - type: Transform pos: -0.5,0.5 - parent: 818 - - uid: 1546 + parent: 2 + - uid: 222 components: - type: Transform pos: 0.5,0.5 - parent: 818 - - uid: 1547 + parent: 2 + - uid: 223 components: - type: Transform pos: -3.5,0.5 - parent: 818 - - uid: 1548 + parent: 2 + - uid: 224 components: - type: Transform pos: -4.5,0.5 - parent: 818 - - uid: 1549 + parent: 2 + - uid: 225 components: - type: Transform pos: -5.5,0.5 - parent: 818 - - uid: 1550 + parent: 2 + - uid: 226 components: - type: Transform pos: -6.5,0.5 - parent: 818 - - uid: 1551 + parent: 2 + - uid: 227 components: - type: Transform pos: 1.5,0.5 - parent: 818 - - uid: 1553 + parent: 2 + - uid: 228 components: - type: Transform pos: -0.5,-10.5 - parent: 818 - - uid: 1554 + parent: 2 + - uid: 229 components: - type: Transform pos: 1.5,-12.5 - parent: 818 - - uid: 1555 + parent: 2 + - uid: 230 components: - type: Transform pos: 1.5,-11.5 - parent: 818 - - uid: 1556 + parent: 2 + - uid: 231 components: - type: Transform pos: 1.5,-10.5 - parent: 818 - - uid: 1557 + parent: 2 + - uid: 232 components: - type: Transform pos: 0.5,-10.5 - parent: 818 - - uid: 1558 + parent: 2 + - uid: 233 components: - type: Transform pos: 2.5,-10.5 - parent: 818 - - uid: 1559 + parent: 2 + - uid: 234 components: - type: Transform pos: -1.5,-10.5 - parent: 818 - - uid: 1560 + parent: 2 + - uid: 235 components: - type: Transform pos: -2.5,-10.5 - parent: 818 - - uid: 1561 + parent: 2 + - uid: 236 components: - type: Transform pos: -3.5,-10.5 - parent: 818 - - uid: 1562 + parent: 2 + - uid: 237 components: - type: Transform pos: -4.5,-10.5 - parent: 818 - - uid: 1563 + parent: 2 + - uid: 238 components: - type: Transform pos: -5.5,-10.5 - parent: 818 - - uid: 1564 + parent: 2 + - uid: 239 components: - type: Transform pos: -6.5,-10.5 - parent: 818 - - uid: 1565 + parent: 2 + - uid: 240 components: - type: Transform pos: -7.5,-10.5 - parent: 818 - - uid: 1579 + parent: 2 + - uid: 241 components: - type: Transform pos: -1.5,-19.5 - parent: 818 - - uid: 1591 + parent: 2 + - uid: 242 components: - type: Transform pos: -3.5,-15.5 - parent: 818 - - uid: 1592 + parent: 2 + - uid: 243 components: - type: Transform pos: -4.5,-15.5 - parent: 818 - - uid: 1593 + parent: 2 + - uid: 244 components: - type: Transform pos: -1.5,-16.5 - parent: 818 - - uid: 1594 + parent: 2 + - uid: 245 components: - type: Transform pos: -1.5,-17.5 - parent: 818 - - uid: 1595 + parent: 2 + - uid: 246 components: - type: Transform pos: -1.5,-18.5 - parent: 818 - - uid: 1597 + parent: 2 + - uid: 247 components: - type: Transform pos: -1.5,-20.5 - parent: 818 - - uid: 1598 + parent: 2 + - uid: 248 components: - type: Transform pos: -1.5,-21.5 - parent: 818 - - uid: 1599 + parent: 2 + - uid: 249 components: - type: Transform pos: -4.5,-20.5 - parent: 818 - - uid: 1600 + parent: 2 + - uid: 250 components: - type: Transform pos: -4.5,-23.5 - parent: 818 - - uid: 1601 + parent: 2 + - uid: 251 components: - type: Transform pos: -4.5,-22.5 - parent: 818 - - uid: 1602 + parent: 2 + - uid: 252 components: - type: Transform pos: -2.5,-23.5 - parent: 818 - - uid: 1603 + parent: 2 + - uid: 253 components: - type: Transform pos: 1.5,-22.5 - parent: 818 - - uid: 1604 + parent: 2 + - uid: 254 components: - type: Transform pos: -2.5,-22.5 - parent: 818 - - uid: 1605 + parent: 2 + - uid: 255 components: - type: Transform pos: -0.5,-22.5 - parent: 818 - - uid: 1606 + parent: 2 + - uid: 256 components: - type: Transform pos: -0.5,-23.5 - parent: 818 - - uid: 1607 + parent: 2 + - uid: 257 components: - type: Transform pos: 1.5,-23.5 - parent: 818 - - uid: 1608 + parent: 2 + - uid: 258 components: - type: Transform pos: -4.5,-21.5 - parent: 818 - - uid: 1609 + parent: 2 + - uid: 259 components: - type: Transform pos: -3.5,-21.5 - parent: 818 - - uid: 1610 + parent: 2 + - uid: 260 components: - type: Transform pos: -2.5,-21.5 - parent: 818 - - uid: 1611 + parent: 2 + - uid: 261 components: - type: Transform pos: -0.5,-21.5 - parent: 818 - - uid: 1612 + parent: 2 + - uid: 262 components: - type: Transform pos: 0.5,-21.5 - parent: 818 - - uid: 1613 + parent: 2 + - uid: 263 components: - type: Transform pos: 1.5,-21.5 - parent: 818 - - uid: 1615 + parent: 2 + - uid: 264 components: - type: Transform pos: -4.5,-19.5 - parent: 818 - - uid: 1616 + parent: 2 + - uid: 265 components: - type: Transform pos: 1.5,-20.5 - parent: 818 - - uid: 1617 + parent: 2 + - uid: 266 components: - type: Transform pos: 1.5,-19.5 - parent: 818 - - uid: 1822 + parent: 2 + - uid: 267 components: - type: Transform pos: -2.5,14.5 - parent: 818 - - uid: 1824 + parent: 2 + - uid: 268 components: - type: Transform pos: -2.5,15.5 - parent: 818 - - uid: 1825 + parent: 2 + - uid: 269 components: - type: Transform pos: -3.5,15.5 - parent: 818 - - uid: 1826 + parent: 2 + - uid: 270 components: - type: Transform pos: -4.5,15.5 - parent: 818 - - uid: 1871 + parent: 2 + - uid: 271 components: - type: Transform pos: -8.5,-10.5 - parent: 818 - - uid: 1901 + parent: 2 + - uid: 272 components: - type: Transform pos: -8.5,-11.5 - parent: 818 + parent: 2 - proto: CableHV entities: - - uid: 946 + - uid: 273 components: - type: Transform pos: -5.5,3.5 - parent: 818 - - uid: 947 + parent: 2 + - uid: 274 components: - type: Transform pos: -5.5,4.5 - parent: 818 - - uid: 948 + parent: 2 + - uid: 275 components: - type: Transform pos: -5.5,5.5 - parent: 818 - - uid: 949 + parent: 2 + - uid: 276 components: - type: Transform pos: -6.5,5.5 - parent: 818 - - uid: 951 + parent: 2 + - uid: 277 components: - type: Transform pos: -7.5,5.5 - parent: 818 - - uid: 952 + parent: 2 + - uid: 278 components: - type: Transform pos: -8.5,5.5 - parent: 818 + parent: 2 - proto: CableMV entities: - - uid: 57 + - uid: 279 components: - type: Transform pos: -5.5,4.5 - parent: 818 - - uid: 207 + parent: 2 + - uid: 280 components: - type: Transform pos: 7.5,-4.5 - parent: 818 - - uid: 227 + parent: 2 + - uid: 281 components: - type: Transform pos: -8.5,5.5 - parent: 818 - - uid: 291 + parent: 2 + - uid: 282 components: - type: Transform pos: 6.5,-4.5 - parent: 818 - - uid: 293 + parent: 2 + - uid: 283 components: - type: Transform pos: -7.5,4.5 - parent: 818 - - uid: 294 + parent: 2 + - uid: 284 components: - type: Transform pos: 6.5,-10.5 - parent: 818 - - uid: 297 + parent: 2 + - uid: 285 components: - type: Transform pos: -8.5,4.5 - parent: 818 - - uid: 699 + parent: 2 + - uid: 286 components: - type: Transform pos: -6.5,4.5 - parent: 818 - - uid: 974 + parent: 2 + - uid: 287 components: - type: Transform pos: -4.5,4.5 - parent: 818 - - uid: 984 + parent: 2 + - uid: 288 components: - type: Transform pos: -3.5,4.5 - parent: 818 - - uid: 985 + parent: 2 + - uid: 289 components: - type: Transform pos: -2.5,4.5 - parent: 818 - - uid: 986 + parent: 2 + - uid: 290 components: - type: Transform pos: -1.5,4.5 - parent: 818 - - uid: 987 + parent: 2 + - uid: 291 components: - type: Transform pos: -0.5,4.5 - parent: 818 - - uid: 988 + parent: 2 + - uid: 292 components: - type: Transform pos: -0.5,5.5 - parent: 818 - - uid: 989 + parent: 2 + - uid: 293 components: - type: Transform pos: -0.5,6.5 - parent: 818 - - uid: 1000 + parent: 2 + - uid: 294 components: - type: Transform pos: 0.5,4.5 - parent: 818 - - uid: 1001 + parent: 2 + - uid: 295 components: - type: Transform pos: 1.5,4.5 - parent: 818 - - uid: 1002 + parent: 2 + - uid: 296 components: - type: Transform pos: 2.5,4.5 - parent: 818 - - uid: 1003 + parent: 2 + - uid: 297 components: - type: Transform pos: 3.5,4.5 - parent: 818 - - uid: 1004 + parent: 2 + - uid: 298 components: - type: Transform pos: 4.5,4.5 - parent: 818 - - uid: 1005 + parent: 2 + - uid: 299 components: - type: Transform pos: 5.5,4.5 - parent: 818 - - uid: 1006 + parent: 2 + - uid: 300 components: - type: Transform pos: 6.5,4.5 - parent: 818 - - uid: 1007 + parent: 2 + - uid: 301 components: - type: Transform pos: 7.5,4.5 - parent: 818 - - uid: 1008 + parent: 2 + - uid: 302 components: - type: Transform pos: 8.5,4.5 - parent: 818 - - uid: 1012 + parent: 2 + - uid: 303 components: - type: Transform pos: 5.5,-4.5 - parent: 818 - - uid: 1023 + parent: 2 + - uid: 304 components: - type: Transform pos: 4.5,-4.5 - parent: 818 - - uid: 1024 + parent: 2 + - uid: 305 components: - type: Transform pos: 7.5,-10.5 - parent: 818 - - uid: 1025 + parent: 2 + - uid: 306 components: - type: Transform pos: 5.5,-10.5 - parent: 818 - - uid: 1026 + parent: 2 + - uid: 307 components: - type: Transform pos: 4.5,-10.5 - parent: 818 - - uid: 1027 + parent: 2 + - uid: 308 components: - type: Transform pos: 2.5,-10.5 - parent: 818 - - uid: 1028 + parent: 2 + - uid: 309 components: - type: Transform pos: 1.5,-10.5 - parent: 818 - - uid: 1029 + parent: 2 + - uid: 310 components: - type: Transform pos: 3.5,-10.5 - parent: 818 - - uid: 1033 + parent: 2 + - uid: 311 components: - type: Transform pos: 1.5,-11.5 - parent: 818 - - uid: 1034 + parent: 2 + - uid: 312 components: - type: Transform pos: 1.5,-12.5 - parent: 818 - - uid: 1039 + parent: 2 + - uid: 313 components: - type: Transform pos: 9.5,-2.5 - parent: 818 - - uid: 1041 + parent: 2 + - uid: 314 components: - type: Transform pos: 10.5,-2.5 - parent: 818 - - uid: 1042 + parent: 2 + - uid: 315 components: - type: Transform pos: 11.5,-2.5 - parent: 818 - - uid: 1043 + parent: 2 + - uid: 316 components: - type: Transform pos: -2.5,-4.5 - parent: 818 - - uid: 1044 + parent: 2 + - uid: 317 components: - type: Transform pos: 8.5,-11.5 - parent: 818 - - uid: 1045 + parent: 2 + - uid: 318 components: - type: Transform pos: 8.5,-12.5 - parent: 818 - - uid: 1046 + parent: 2 + - uid: 319 components: - type: Transform pos: 8.5,-13.5 - parent: 818 - - uid: 1047 + parent: 2 + - uid: 320 components: - type: Transform pos: 8.5,-14.5 - parent: 818 - - uid: 1048 + parent: 2 + - uid: 321 components: - type: Transform pos: 9.5,-14.5 - parent: 818 - - uid: 1049 + parent: 2 + - uid: 322 components: - type: Transform pos: 8.5,3.5 - parent: 818 - - uid: 1050 + parent: 2 + - uid: 323 components: - type: Transform pos: 8.5,2.5 - parent: 818 - - uid: 1051 + parent: 2 + - uid: 324 components: - type: Transform pos: 8.5,1.5 - parent: 818 - - uid: 1052 + parent: 2 + - uid: 325 components: - type: Transform pos: 8.5,0.5 - parent: 818 - - uid: 1053 + parent: 2 + - uid: 326 components: - type: Transform pos: 8.5,-0.5 - parent: 818 - - uid: 1054 + parent: 2 + - uid: 327 components: - type: Transform pos: 8.5,-1.5 - parent: 818 - - uid: 1055 + parent: 2 + - uid: 328 components: - type: Transform pos: 8.5,-2.5 - parent: 818 - - uid: 1056 + parent: 2 + - uid: 329 components: - type: Transform pos: 8.5,-3.5 - parent: 818 - - uid: 1057 + parent: 2 + - uid: 330 components: - type: Transform pos: 8.5,-4.5 - parent: 818 - - uid: 1058 + parent: 2 + - uid: 331 components: - type: Transform pos: 8.5,-5.5 - parent: 818 - - uid: 1059 + parent: 2 + - uid: 332 components: - type: Transform pos: 8.5,-6.5 - parent: 818 - - uid: 1060 + parent: 2 + - uid: 333 components: - type: Transform pos: 8.5,-7.5 - parent: 818 - - uid: 1061 + parent: 2 + - uid: 334 components: - type: Transform pos: 8.5,-8.5 - parent: 818 - - uid: 1062 + parent: 2 + - uid: 335 components: - type: Transform pos: 8.5,-9.5 - parent: 818 - - uid: 1063 + parent: 2 + - uid: 336 components: - type: Transform pos: 8.5,-10.5 - parent: 818 - - uid: 1064 + parent: 2 + - uid: 337 components: - type: Transform pos: -3.5,-4.5 - parent: 818 - - uid: 1065 + parent: 2 + - uid: 338 components: - type: Transform pos: -4.5,-4.5 - parent: 818 - - uid: 1066 + parent: 2 + - uid: 339 components: - type: Transform pos: -5.5,-4.5 - parent: 818 - - uid: 1067 + parent: 2 + - uid: 340 components: - type: Transform pos: -6.5,-4.5 - parent: 818 - - uid: 1068 + parent: 2 + - uid: 341 components: - type: Transform pos: -7.5,-4.5 - parent: 818 - - uid: 1069 + parent: 2 + - uid: 342 components: - type: Transform pos: -8.5,-4.5 - parent: 818 - - uid: 1094 + parent: 2 + - uid: 343 components: - type: Transform pos: -9.5,-4.5 - parent: 818 - - uid: 1125 + parent: 2 + - uid: 344 components: - type: Transform pos: -2.5,-3.5 - parent: 818 - - uid: 1126 + parent: 2 + - uid: 345 components: - type: Transform pos: -2.5,-2.5 - parent: 818 - - uid: 1127 + parent: 2 + - uid: 346 components: - type: Transform pos: -2.5,-1.5 - parent: 818 - - uid: 1128 + parent: 2 + - uid: 347 components: - type: Transform pos: -2.5,-0.5 - parent: 818 - - uid: 1129 + parent: 2 + - uid: 348 components: - type: Transform pos: -2.5,0.5 - parent: 818 - - uid: 1130 + parent: 2 + - uid: 349 components: - type: Transform pos: -2.5,1.5 - parent: 818 - - uid: 1131 + parent: 2 + - uid: 350 components: - type: Transform pos: -2.5,2.5 - parent: 818 - - uid: 1132 + parent: 2 + - uid: 351 components: - type: Transform pos: -2.5,3.5 - parent: 818 - - uid: 1133 + parent: 2 + - uid: 352 components: - type: Transform pos: 12.5,-2.5 - parent: 818 - - uid: 1134 + parent: 2 + - uid: 353 components: - type: Transform pos: 13.5,-2.5 - parent: 818 - - uid: 1135 + parent: 2 + - uid: 354 components: - type: Transform pos: 14.5,-2.5 - parent: 818 + parent: 2 - proto: CableTerminal entities: - - uid: 945 + - uid: 355 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 818 + parent: 2 - proto: CandleBlackInfinite entities: - - uid: 540 + - uid: 356 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.2142973,-7.1859117 - parent: 818 + parent: 2 - proto: CandleGreenSmallInfinite entities: - - uid: 842 + - uid: 357 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.7767973,-7.3265367 - parent: 818 + parent: 2 - proto: CandlePurpleSmallInfinite entities: - - uid: 772 + - uid: 358 components: - type: Transform pos: -7.2544527,-7.1859117 - parent: 818 + parent: 2 - proto: CandleRedInfinite entities: - - uid: 441 + - uid: 359 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.7544527,-7.2327867 - parent: 818 + parent: 2 - proto: Carpet entities: - - uid: 114 + - uid: 360 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-16.5 - parent: 818 - - uid: 115 + parent: 2 + - uid: 361 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 - parent: 818 - - uid: 116 + parent: 2 + - uid: 362 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-15.5 - parent: 818 - - uid: 257 + parent: 2 + - uid: 363 components: - type: Transform pos: -3.5,-20.5 - parent: 818 - - uid: 541 + parent: 2 + - uid: 364 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-14.5 - parent: 818 - - uid: 554 + parent: 2 + - uid: 365 components: - type: Transform pos: -2.5,-20.5 - parent: 818 - - uid: 990 + parent: 2 + - uid: 366 components: - type: Transform pos: 0.5,-19.5 - parent: 818 - - uid: 996 + parent: 2 + - uid: 367 components: - type: Transform pos: -0.5,-20.5 - parent: 818 - - uid: 1183 + parent: 2 + - uid: 368 components: - type: Transform pos: 0.5,-20.5 - parent: 818 - - uid: 1186 + parent: 2 + - uid: 369 components: - type: Transform pos: -0.5,-19.5 - parent: 818 - - uid: 1207 + parent: 2 + - uid: 370 components: - type: Transform pos: -2.5,-19.5 - parent: 818 - - uid: 1215 + parent: 2 + - uid: 371 components: - type: Transform pos: -3.5,-19.5 - parent: 818 - - uid: 1217 + parent: 2 + - uid: 372 components: - type: Transform pos: -1.5,-20.5 - parent: 818 - - uid: 1218 + parent: 2 + - uid: 373 components: - type: Transform pos: -1.5,-20.5 - parent: 818 - - uid: 1219 + parent: 2 + - uid: 374 components: - type: Transform pos: -1.5,-19.5 - parent: 818 + parent: 2 - proto: CarpetBlack entities: - - uid: 617 + - uid: 375 components: - type: Transform pos: -4.5,-25.5 - parent: 818 - - uid: 1145 + parent: 2 + - uid: 376 components: - type: Transform pos: 1.5,-25.5 - parent: 818 - - uid: 1184 + parent: 2 + - uid: 377 components: - type: Transform pos: -2.5,-25.5 - parent: 818 - - uid: 1362 + parent: 2 + - uid: 378 components: - type: Transform pos: -0.5,-25.5 - parent: 818 + parent: 2 - proto: CarpetGreen entities: - - uid: 1167 + - uid: 379 components: - type: Transform pos: 0.5,-14.5 - parent: 818 - - uid: 1168 + parent: 2 + - uid: 380 components: - type: Transform pos: 0.5,-15.5 - parent: 818 - - uid: 1169 + parent: 2 + - uid: 381 components: - type: Transform pos: 1.5,-14.5 - parent: 818 - - uid: 1170 + parent: 2 + - uid: 382 components: - type: Transform pos: 1.5,-15.5 - parent: 818 - - uid: 1171 + parent: 2 + - uid: 383 components: - type: Transform pos: 2.5,-14.5 - parent: 818 - - uid: 1172 + parent: 2 + - uid: 384 components: - type: Transform pos: 2.5,-15.5 - parent: 818 + parent: 2 - proto: CarpetWhite entities: - - uid: 1157 + - uid: 385 components: - type: Transform pos: -5.5,-14.5 - parent: 818 - - uid: 1158 + parent: 2 + - uid: 386 components: - type: Transform pos: -5.5,-15.5 - parent: 818 - - uid: 1159 + parent: 2 + - uid: 387 components: - type: Transform pos: -4.5,-14.5 - parent: 818 - - uid: 1160 + parent: 2 + - uid: 388 components: - type: Transform pos: -4.5,-15.5 - parent: 818 - - uid: 1161 + parent: 2 + - uid: 389 components: - type: Transform pos: -3.5,-14.5 - parent: 818 - - uid: 1162 + parent: 2 + - uid: 390 components: - type: Transform pos: -3.5,-15.5 - parent: 818 + parent: 2 - proto: Catwalk entities: - - uid: 599 + - uid: 391 components: - type: Transform pos: -5.5,4.5 - parent: 818 - - uid: 609 + parent: 2 + - uid: 392 components: - type: Transform pos: -8.5,4.5 - parent: 818 - - uid: 792 + parent: 2 + - uid: 393 components: - type: Transform pos: -6.5,4.5 - parent: 818 - - uid: 853 + parent: 2 + - uid: 394 components: - type: Transform pos: -7.5,4.5 - parent: 818 + parent: 2 - proto: Chair entities: - - uid: 140 + - uid: 395 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-17.5 - parent: 818 - - uid: 214 + parent: 2 + - uid: 396 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-18.5 - parent: 818 - - uid: 215 + parent: 2 + - uid: 397 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-24.5 - parent: 818 - - uid: 430 + parent: 2 + - uid: 398 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-19.5 - parent: 818 - - uid: 432 + parent: 2 + - uid: 399 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-24.5 - parent: 818 - - uid: 457 + parent: 2 + - uid: 400 components: - type: Transform pos: 9.5,-20.5 - parent: 818 - - uid: 1114 + parent: 2 + - uid: 401 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-16.5 - parent: 818 - - uid: 1121 + parent: 2 + - uid: 402 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-20.5 - parent: 818 - - uid: 1146 + parent: 2 + - uid: 403 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-22.5 - parent: 818 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 - proto: ChairGreyscale entities: - - uid: 851 + - uid: 404 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-16.5 - parent: 818 + parent: 2 - proto: ChairOfficeDark entities: - - uid: 124 + - uid: 405 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5282974,-14.420438 - parent: 818 + parent: 2 - proto: ChairWood entities: - - uid: 31 + - uid: 406 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 - parent: 818 - - uid: 709 + parent: 2 + - uid: 407 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-21.5 - parent: 818 - - uid: 1392 + parent: 2 + - uid: 408 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-20.5 - parent: 818 - - uid: 1625 + parent: 2 + - uid: 409 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-21.5 - parent: 818 - - uid: 1626 + parent: 2 + - uid: 410 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-20.5 - parent: 818 + parent: 2 - proto: CigaretteMold entities: - - uid: 1763 + - uid: 411 components: - type: Transform rot: 3.141592653589793 rad pos: -1.691752,12.017473 - parent: 818 + parent: 2 - proto: CigaretteSpent entities: - - uid: 1671 + - uid: 412 components: - type: Transform pos: -1.70616,12.589549 - parent: 818 - - uid: 1674 + parent: 2 + - uid: 413 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.378035,12.433299 - parent: 818 - - uid: 1675 + parent: 2 + - uid: 414 components: - type: Transform rot: 3.141592653589793 rad pos: -1.315535,12.433299 - parent: 818 + parent: 2 - proto: ClothingBeltQuiver entities: - - uid: 156 + - uid: 91 components: - type: Transform - parent: 151 + parent: 89 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatBeretFrench entities: - - uid: 1518 + - uid: 416 components: - type: Transform - parent: 1516 + parent: 415 - type: Physics canCollide: False - proto: ClothingHeadHatBunny entities: - - uid: 1744 + - uid: 418 components: - type: Transform pos: 1.321607,-25.619549 - parent: 818 + parent: 2 - proto: ClothingHeadHatTacticalMaidHeadband entities: - - uid: 154 + - uid: 92 components: - type: MetaData name: повязка службы безопасности - type: Transform - parent: 151 + parent: 89 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatUshanka entities: - - uid: 1514 + - uid: 420 components: - type: Transform - parent: 1512 + parent: 419 - type: Physics canCollide: False - proto: ClothingNeckScarfStripedRed entities: - - uid: 153 + - uid: 93 components: - type: Transform - parent: 151 + parent: 89 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWinterCoat entities: - - uid: 1079 - components: - - type: Transform - pos: -6.765032,-16.31055 - parent: 818 - - uid: 1513 + - uid: 421 components: - type: Transform - parent: 1512 + parent: 419 - type: Physics canCollide: False + - uid: 423 + components: + - type: Transform + pos: -6.765032,-16.31055 + parent: 2 - proto: ClothingOuterWinterEngi entities: - - uid: 1731 + - uid: 424 components: - type: MetaData name: коричневая зимняя куртка - type: Transform pos: -6.793171,-17.483648 - parent: 818 + parent: 2 - proto: ClothingOuterWinterGen entities: - - uid: 1087 + - uid: 425 components: - type: MetaData name: бело-синяя зимняя куртка - type: Transform pos: -6.786134,-16.921467 - parent: 818 + parent: 2 - proto: ClothingShoesBootsLaceup entities: - - uid: 1733 + - uid: 426 components: - type: Transform pos: 2.352745,-13.342463 - parent: 818 + parent: 2 - proto: ClothingShoesBootsWinter entities: - - uid: 1338 + - uid: 427 components: - type: Transform pos: -5.3679223,-13.595501 - parent: 818 + parent: 2 - proto: ClothingShoesBootsWinterCargo entities: - - uid: 1187 + - uid: 428 components: - type: MetaData name: коричневые зимние ботинки - type: Transform pos: -3.6020138,-13.568881 - parent: 818 + parent: 2 - proto: ClothingShoesBootsWinterMed entities: - - uid: 1254 + - uid: 429 components: - type: MetaData name: синие зимние ботинки - type: Transform pos: -4.5038624,-13.212091 - parent: 818 + parent: 2 - proto: ClothingShoesBootsWork entities: - - uid: 1634 + - uid: 430 components: - type: Transform pos: 1.3232573,-13.656497 - parent: 818 + parent: 2 - proto: ClothingShoesColorBlack entities: - - uid: 1588 + - uid: 431 components: - type: Transform pos: 0.50740063,-13.279211 - parent: 818 + parent: 2 - proto: ClothingShoesColorBlue entities: - - uid: 37 + - uid: 432 components: - type: Transform pos: 0.4818722,-13.819506 - parent: 818 + parent: 2 - proto: ClothingShoesColorRed entities: - - uid: 1011 + - uid: 433 components: - type: Transform pos: 2.2520154,-13.7933235 - parent: 818 + parent: 2 - proto: ClothingShoesDameDane entities: - - uid: 1766 + - uid: 434 components: - type: Transform pos: 2.990286,-16.449436 - parent: 818 + parent: 2 - proto: ClothingShoesLeather entities: - - uid: 1319 + - uid: 435 components: - type: Transform pos: 1.5809284,-13.332744 - parent: 818 + parent: 2 - proto: ClothingShoesSlippers entities: - - uid: 1745 + - uid: 436 components: - type: Transform pos: 1.727857,-25.275799 - parent: 818 + parent: 2 - proto: ClothingShoesTourist entities: - - uid: 152 + - uid: 94 components: - type: Transform - parent: 151 + parent: 89 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtBlackElegantDress entities: - - uid: 1382 + - uid: 417 components: - type: MetaData desc: Элегантное платье с красивым бантом. - name: чёрное элегантное платье. + name: чёрное элегантное платье - type: Transform - pos: 3.8379946,-16.860613 - parent: 818 - - uid: 1517 + parent: 415 + - type: Physics + canCollide: False + - uid: 437 components: - type: MetaData desc: Элегантное платье с красивым бантом. - name: чёрное элегантное платье + name: чёрное элегантное платье. - type: Transform - parent: 1516 - - type: Physics - canCollide: False + pos: 3.8379946,-16.860613 + parent: 2 - proto: ClothingUniformJumpskirtGreenTurtleneckDress entities: - - uid: 1191 + - uid: 438 components: - type: MetaData desc: Платье с водолазкой и уникальным дизайном. name: зелёное платье с водолазкой - type: Transform pos: 3.8496308,-17.384262 - parent: 818 + parent: 2 - proto: ClothingUniformJumpskirtPurpleElegantDress entities: - - uid: 1233 + - uid: 439 components: - type: MetaData desc: Элегантное платье с красивым бантом. name: фиолетовое элегантное платье - type: Transform pos: 3.8296533,-16.31055 - parent: 818 + parent: 2 - proto: ClothingUniformJumpsuitCasualRed entities: - - uid: 155 + - uid: 95 components: - type: Transform - parent: 151 + parent: 89 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitColorGrey entities: - - uid: 1515 + - uid: 422 components: - type: Transform - parent: 1512 + parent: 419 - type: Physics canCollide: False +- proto: Cobweb1 + entities: + - uid: 1568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 1567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 - proto: ComfyChair entities: - - uid: 341 + - uid: 440 components: - type: Transform pos: 6.5,9.5 - parent: 818 - - uid: 466 + parent: 2 + - uid: 441 components: - type: Transform pos: 12.5,9.5 - parent: 818 - - uid: 481 + parent: 2 + - uid: 442 components: - type: Transform pos: 7.5,9.5 - parent: 818 - - uid: 499 + parent: 2 + - uid: 443 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-5.5 - parent: 818 - - uid: 515 + parent: 2 + - uid: 444 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 - parent: 818 - - uid: 620 + parent: 2 + - uid: 445 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,7.5 - parent: 818 - - uid: 621 + parent: 2 + - uid: 446 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,7.5 - parent: 818 - - uid: 624 + parent: 2 + - uid: 447 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-7.5 - parent: 818 - - uid: 625 + parent: 2 + - uid: 448 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-7.5 - parent: 818 - - uid: 626 + parent: 2 + - uid: 449 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 - parent: 818 - - uid: 644 + parent: 2 + - uid: 450 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 - parent: 818 - - uid: 650 + parent: 2 + - uid: 451 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-5.5 - parent: 818 - - uid: 651 + parent: 2 + - uid: 452 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-6.5 - parent: 818 - - uid: 771 + parent: 2 + - uid: 453 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-7.5 - parent: 818 - - uid: 827 + parent: 2 + - uid: 454 components: - type: Transform pos: 11.5,9.5 - parent: 818 - - uid: 828 + parent: 2 + - uid: 455 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 - parent: 818 - - uid: 829 + parent: 2 + - uid: 456 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 - parent: 818 - - uid: 835 + parent: 2 + - uid: 457 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-6.5 - parent: 818 - - uid: 836 + parent: 2 + - uid: 458 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-6.5 - parent: 818 - - uid: 839 + parent: 2 + - uid: 459 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 - parent: 818 - - uid: 1644 + parent: 2 + - uid: 460 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 - parent: 818 - - uid: 1752 + parent: 2 + - uid: 461 components: - type: Transform pos: -8.5,-11.5 - parent: 818 + parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 731 + - uid: 462 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-15.5 - parent: 818 + parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 720 + - uid: 463 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-14.5 - parent: 818 + parent: 2 - proto: ConveyorBelt entities: - - uid: 1689 + - uid: 464 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 - parent: 818 - - uid: 1690 + parent: 2 + - uid: 465 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,16.5 - parent: 818 - - uid: 1691 + parent: 2 + - uid: 466 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,16.5 - parent: 818 - - uid: 1692 + parent: 2 + - uid: 467 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,16.5 - parent: 818 - - uid: 1693 + parent: 2 + - uid: 468 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,16.5 - parent: 818 - - uid: 1694 + parent: 2 + - uid: 469 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,16.5 - parent: 818 + parent: 2 - proto: CowToolboxFilled entities: - - uid: 1645 + - uid: 470 components: - type: Transform pos: -6.457727,-11.454361 - parent: 818 + parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 1682 + - uid: 471 components: - type: Transform pos: -5.5,15.5 - parent: 818 + parent: 2 - proto: CurtainsWhite entities: - - uid: 916 + - uid: 472 components: - type: Transform pos: 1.5,-23.5 - parent: 818 + parent: 2 - proto: CurtainsWhiteOpen entities: - - uid: 19 + - uid: 473 components: - type: Transform pos: -4.5,-23.5 - parent: 818 - - uid: 917 + parent: 2 + - uid: 474 components: - type: Transform pos: -0.5,-23.5 - parent: 818 - - uid: 938 + parent: 2 + - uid: 475 components: - type: Transform pos: -2.5,-23.5 - parent: 818 + parent: 2 - proto: DisposalBend entities: - - uid: 135 + - uid: 476 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-17.5 - parent: 818 - - uid: 1253 + parent: 2 + - uid: 477 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 - parent: 818 - - uid: 1259 + parent: 2 + - uid: 478 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,16.5 - parent: 818 - - uid: 1313 + parent: 2 + - uid: 479 components: - type: Transform pos: 5.5,4.5 - parent: 818 - - uid: 1335 + parent: 2 + - uid: 480 components: - type: Transform pos: 11.5,-10.5 - parent: 818 - - uid: 1755 + parent: 2 + - uid: 481 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 - parent: 818 + parent: 2 - proto: DisposalJunction entities: - - uid: 137 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 - parent: 818 - - uid: 1251 + parent: 2 + - uid: 483 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 - parent: 818 - - uid: 1314 + parent: 2 + - uid: 484 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-10.5 - parent: 818 - - uid: 1666 + parent: 2 + - uid: 485 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 - parent: 818 - - uid: 1668 + parent: 2 + - uid: 486 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 - parent: 818 + parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 311 + - uid: 487 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,1.5 - parent: 818 - - uid: 1662 + parent: 2 + - uid: 488 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 - parent: 818 - - uid: 1663 + parent: 2 + - uid: 489 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 - parent: 818 - - uid: 1667 + parent: 2 + - uid: 490 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 - parent: 818 - - uid: 1724 + parent: 2 + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 - parent: 818 + parent: 2 - proto: DisposalPipe entities: - - uid: 78 + - uid: 492 components: - type: Transform pos: -2.5,0.5 - parent: 818 - - uid: 218 + parent: 2 + - uid: 493 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 - parent: 818 - - uid: 304 + parent: 2 + - uid: 494 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-10.5 - parent: 818 - - uid: 305 + parent: 2 + - uid: 495 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-4.5 - parent: 818 - - uid: 796 + parent: 2 + - uid: 496 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 - parent: 818 - - uid: 824 + parent: 2 + - uid: 497 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 - parent: 818 - - uid: 924 + parent: 2 + - uid: 498 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,15.5 - parent: 818 - - uid: 1151 + parent: 2 + - uid: 499 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-16.5 - parent: 818 - - uid: 1152 + parent: 2 + - uid: 500 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-15.5 - parent: 818 - - uid: 1153 + parent: 2 + - uid: 501 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 - parent: 818 - - uid: 1154 + parent: 2 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-13.5 - parent: 818 - - uid: 1155 + parent: 2 + - uid: 503 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-12.5 - parent: 818 - - uid: 1156 + parent: 2 + - uid: 504 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-11.5 - parent: 818 - - uid: 1250 + parent: 2 + - uid: 505 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 - parent: 818 - - uid: 1255 + parent: 2 + - uid: 506 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 - parent: 818 - - uid: 1256 + parent: 2 + - uid: 507 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 - parent: 818 - - uid: 1257 + parent: 2 + - uid: 508 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,11.5 - parent: 818 - - uid: 1258 + parent: 2 + - uid: 509 components: - type: Transform pos: -3.5,8.5 - parent: 818 - - uid: 1264 + parent: 2 + - uid: 510 components: - type: Transform pos: -2.5,-9.5 - parent: 818 - - uid: 1265 + parent: 2 + - uid: 511 components: - type: Transform pos: -2.5,-8.5 - parent: 818 - - uid: 1267 + parent: 2 + - uid: 512 components: - type: Transform pos: -2.5,-6.5 - parent: 818 - - uid: 1268 + parent: 2 + - uid: 513 components: - type: Transform pos: -2.5,-5.5 - parent: 818 - - uid: 1269 + parent: 2 + - uid: 514 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-10.5 - parent: 818 - - uid: 1270 + parent: 2 + - uid: 515 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 - parent: 818 - - uid: 1271 + parent: 2 + - uid: 516 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 - parent: 818 - - uid: 1272 + parent: 2 + - uid: 517 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 - parent: 818 - - uid: 1273 + parent: 2 + - uid: 518 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 - parent: 818 - - uid: 1274 + parent: 2 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-10.5 - parent: 818 - - uid: 1278 + parent: 2 + - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-10.5 - parent: 818 - - uid: 1279 + parent: 2 + - uid: 521 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-10.5 - parent: 818 - - uid: 1280 + parent: 2 + - uid: 522 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-10.5 - parent: 818 - - uid: 1281 + parent: 2 + - uid: 523 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 - parent: 818 - - uid: 1295 + parent: 2 + - uid: 524 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 - parent: 818 - - uid: 1296 + parent: 2 + - uid: 525 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 - parent: 818 - - uid: 1297 + parent: 2 + - uid: 526 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-2.5 - parent: 818 - - uid: 1299 + parent: 2 + - uid: 527 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-10.5 - parent: 818 - - uid: 1303 + parent: 2 + - uid: 528 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,4.5 - parent: 818 - - uid: 1304 + parent: 2 + - uid: 529 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,4.5 - parent: 818 - - uid: 1305 + parent: 2 + - uid: 530 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 - parent: 818 - - uid: 1306 + parent: 2 + - uid: 531 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,4.5 - parent: 818 - - uid: 1307 + parent: 2 + - uid: 532 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,4.5 - parent: 818 - - uid: 1308 + parent: 2 + - uid: 533 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,4.5 - parent: 818 - - uid: 1309 + parent: 2 + - uid: 534 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,4.5 - parent: 818 - - uid: 1310 + parent: 2 + - uid: 535 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 - parent: 818 - - uid: 1311 + parent: 2 + - uid: 536 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 - parent: 818 - - uid: 1330 + parent: 2 + - uid: 537 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-17.5 - parent: 818 - - uid: 1664 + parent: 2 + - uid: 538 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 - parent: 818 - - uid: 1665 + parent: 2 + - uid: 539 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,13.5 - parent: 818 - - uid: 1670 + parent: 2 + - uid: 540 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,11.5 - parent: 818 - - uid: 1672 + parent: 2 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 - parent: 818 - - uid: 1673 + parent: 2 + - uid: 542 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,7.5 - parent: 818 - - uid: 1751 + parent: 2 + - uid: 543 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 - parent: 818 + parent: 2 - proto: DisposalTrunk entities: - - uid: 306 + - uid: 544 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-17.5 - parent: 818 - - uid: 312 + parent: 2 + - uid: 545 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,1.5 - parent: 818 - - uid: 323 + parent: 2 + - uid: 546 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 - parent: 818 - - uid: 1260 + parent: 2 + - uid: 547 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,16.5 - parent: 818 - - uid: 1275 + parent: 2 + - uid: 548 components: - type: Transform pos: 5.5,-9.5 - parent: 818 - - uid: 1652 + parent: 2 + - uid: 549 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 - parent: 818 - - uid: 1653 + parent: 2 + - uid: 550 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 818 - - uid: 1654 + parent: 2 + - uid: 551 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 - parent: 818 - - uid: 1655 + parent: 2 + - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 - parent: 818 - - uid: 1681 + parent: 2 + - uid: 553 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,3.5 - parent: 818 - - uid: 1789 + parent: 2 + - uid: 554 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-7.5 - parent: 818 + parent: 2 - proto: DisposalUnit entities: - - uid: 309 + - uid: 555 components: - type: Transform pos: 9.5,-17.5 - parent: 818 - - uid: 325 + parent: 2 + - uid: 556 components: - type: Transform pos: -1.5,7.5 - parent: 818 - - uid: 468 + parent: 2 + - uid: 557 components: - type: Transform pos: -3.5,1.5 - parent: 818 - - uid: 503 + parent: 2 + - uid: 558 components: - type: Transform pos: 5.5,3.5 - parent: 818 - - uid: 783 + parent: 2 + - uid: 559 components: - type: Transform pos: 5.5,-9.5 - parent: 818 - - uid: 1327 + parent: 2 + - uid: 560 components: - type: Transform pos: -1.5,-7.5 - parent: 818 + parent: 2 - proto: DrinkBadTouchGlass entities: - - uid: 1912 + - uid: 561 components: - type: Transform pos: 2.7226288,-0.3183478 - parent: 818 + parent: 2 - proto: DrinkColaCan entities: - - uid: 111 + - uid: 562 components: - type: Transform pos: -5.311922,-0.20970154 - parent: 818 - - uid: 171 + parent: 2 + - uid: 563 components: - type: Transform pos: -5.4770956,-0.40791774 - parent: 818 - - uid: 235 + parent: 2 + - uid: 564 components: - type: Transform pos: -5.6800737,-0.25959373 - parent: 818 + parent: 2 - proto: DrinkGlass entities: - - uid: 659 + - uid: 565 components: - type: Transform pos: 3.1884108,1.6255958 - parent: 818 - - uid: 877 + parent: 2 + - uid: 566 components: - type: Transform pos: 3.2977858,1.7662208 - parent: 818 - - uid: 880 + parent: 2 + - uid: 567 components: - type: Transform pos: 3.4696608,1.6099708 - parent: 818 - - uid: 1412 + parent: 2 + - uid: 568 components: - type: Transform pos: -6.3673034,-20.542006 - parent: 818 - - uid: 1422 + parent: 2 + - uid: 569 components: - type: Transform pos: 3.49748,-21.225851 - parent: 818 - - uid: 1725 + parent: 2 + - uid: 570 components: - type: Transform pos: 3.6521113,-20.442896 - parent: 818 - - uid: 1727 + parent: 2 + - uid: 571 components: - type: Transform pos: -6.555601,-21.315048 - parent: 818 + parent: 2 - proto: DrinkHotCoffee entities: - - uid: 1695 + - uid: 572 components: - type: Transform pos: 6.602686,8.518019 - parent: 818 - - uid: 1696 + parent: 2 + - uid: 573 components: - type: Transform pos: 7.524561,8.736769 - parent: 818 + parent: 2 - proto: ExtinguisherCabinetFilled entities: - - uid: 351 + - uid: 574 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 - parent: 818 - - uid: 1676 + parent: 2 + - uid: 575 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-8.5 - parent: 818 - - uid: 1765 + parent: 2 + - uid: 576 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 - parent: 818 + parent: 2 - proto: Firelock entities: - - uid: 596 + - uid: 577 components: - type: Transform pos: -2.5,6.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 - - uid: 643 + - 6 + - uid: 578 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 818 - - uid: 652 + parent: 2 + - uid: 579 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,2.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - 1038 - - uid: 653 + - 9 + - 6 + - uid: 580 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,0.5 - parent: 818 - - uid: 755 + parent: 2 + - uid: 581 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - uid: 757 + - 9 + - uid: 582 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - uid: 766 + - 9 + - uid: 583 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - uid: 837 + - 9 + - uid: 584 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - uid: 844 + - 9 + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-8.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - 86 - - uid: 954 + - 9 + - 3 + - uid: 586 components: - type: Transform pos: -4.5,-10.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1072 - - 86 - - uid: 969 + - 8 + - 3 + - uid: 587 components: - type: Transform pos: -4.5,4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - proto: FirelockGlass entities: - - uid: 138 + - uid: 588 components: - type: Transform pos: -1.5,-12.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - 1009 - - uid: 298 + - 3 + - 5 + - uid: 589 components: - type: Transform pos: 11.5,-12.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 - - uid: 777 + - 7 + - uid: 590 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - 1040 - - uid: 841 + - 9 + - 7 + - uid: 591 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-3.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 - - 1040 - - uid: 970 + - 9 + - 7 + - uid: 592 components: - type: Transform pos: 4.5,4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 - - 1038 - - uid: 971 + - 7 + - 6 + - uid: 593 components: - type: Transform pos: 4.5,-10.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - 1040 + - 3 + - 7 - proto: FoodBoxDonut entities: - - uid: 1698 + - uid: 594 components: - type: Transform pos: 12.368311,8.596144 - parent: 818 + parent: 2 - proto: FoodBoxPizzaFilled entities: - - uid: 240 + - uid: 595 components: - type: Transform pos: -5.4837027,1.7526376 - parent: 818 + parent: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 1966 + - uid: 596 components: - type: MetaData name: газодобытчик воздуха - type: Transform pos: -8.5,-13.5 - parent: 818 + parent: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 673 + - uid: 597 components: - type: MetaData name: газодобытчик воздуха - type: Transform pos: -8.5,-13.5 - parent: 818 + parent: 2 - proto: GasPassiveVent entities: - - uid: 514 + - uid: 598 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 773 + - uid: 599 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasPipeBend entities: - - uid: 9 + - uid: 600 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16 + - uid: 601 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30 + - uid: 602 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 64 + - uid: 603 components: - type: Transform pos: 8.5,8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 110 + - uid: 604 components: - type: Transform pos: 10.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 167 + - uid: 605 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 170 + - uid: 606 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 - parent: 818 - - uid: 303 + parent: 2 + - uid: 607 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 334 + - uid: 608 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 339 + - uid: 609 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-20.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 507 + - uid: 610 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 509 + - uid: 611 components: - type: Transform pos: 11.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 538 + - uid: 612 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 632 + - uid: 613 components: - type: Transform pos: -9.5,-8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 691 + - uid: 614 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 732 + - uid: 615 components: - type: Transform pos: -9.5,-1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 774 + - uid: 616 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 817 + - uid: 617 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 823 + - uid: 618 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 856 + - uid: 619 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 939 + - uid: 620 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1720 + - uid: 621 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-18.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1723 + - uid: 622 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-18.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1809 + - uid: 623 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1813 + - uid: 624 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1821 + - uid: 625 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasPipeFourway entities: - - uid: 795 + - uid: 626 components: - type: Transform pos: 1.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 933 + - uid: 627 components: - type: Transform pos: 2.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 991 + - uid: 628 components: - type: Transform pos: -0.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1719 + - uid: 629 components: - type: Transform pos: -1.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasPipeStraight entities: - - uid: 5 + - uid: 630 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6 + - uid: 631 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7 + - uid: 632 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18 + - uid: 633 components: - type: Transform pos: -6.5,-1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 23 + - uid: 634 components: - type: Transform pos: -1.5,10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 36 + - uid: 635 components: - type: Transform pos: -1.5,8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38 + - uid: 636 components: - type: Transform pos: -6.5,-0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40 + - uid: 637 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 47 + - uid: 638 components: - type: Transform pos: -0.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 49 + - uid: 639 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,5.5 - parent: 818 - - uid: 50 + parent: 2 + - uid: 640 components: - type: Transform pos: -0.5,-12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 100 + - uid: 641 components: - type: Transform pos: 11.5,-6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 104 + - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 113 + - uid: 643 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 117 + - uid: 644 components: - type: Transform pos: 11.5,-13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 118 + - uid: 645 components: - type: Transform pos: 11.5,-12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 119 + - uid: 646 components: - type: Transform pos: 11.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 120 + - uid: 647 components: - type: Transform pos: 10.5,-12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 121 + - uid: 648 components: - type: Transform pos: 10.5,-13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 122 + - uid: 649 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 125 + - uid: 650 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 128 + - uid: 651 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 134 + - uid: 652 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 136 + - uid: 653 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 139 + - uid: 654 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 - parent: 818 - - uid: 147 + parent: 2 + - uid: 655 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 149 + - uid: 656 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 - parent: 818 - - uid: 150 + parent: 2 + - uid: 657 components: - type: Transform pos: 10.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 158 + - uid: 658 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 159 + - uid: 659 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 160 + - uid: 660 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 161 + - uid: 661 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 162 + - uid: 662 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 165 + - uid: 663 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 166 + - uid: 664 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 180 + - uid: 665 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 184 + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 192 + - uid: 667 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 213 + - uid: 668 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 216 + - uid: 669 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 217 + - uid: 670 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 219 + - uid: 671 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 251 + - uid: 672 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-17.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 252 + - uid: 673 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-17.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 255 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 256 + - uid: 675 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 284 + - uid: 676 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 285 + - uid: 677 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 286 + - uid: 678 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 287 + - uid: 679 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 288 + - uid: 680 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 314 + - uid: 681 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 316 + - uid: 682 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 317 + - uid: 683 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 319 + - uid: 684 components: - type: Transform pos: -7.5,-0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 320 + - uid: 685 components: - type: Transform pos: -7.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 321 + - uid: 686 components: - type: Transform pos: 1.5,-1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 333 + - uid: 687 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 335 + - uid: 688 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-18.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 342 + - uid: 689 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 345 + - uid: 690 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 348 + - uid: 691 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 350 + - uid: 692 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 352 + - uid: 693 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 353 + - uid: 694 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 429 + - uid: 695 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 431 + - uid: 696 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 433 + - uid: 697 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 434 + - uid: 698 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 435 + - uid: 699 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 436 + - uid: 700 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 449 + - uid: 701 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 467 + - uid: 702 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 480 + - uid: 703 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 482 + - uid: 704 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 485 + - uid: 705 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 501 + - uid: 706 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 502 + - uid: 707 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 504 + - uid: 708 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 505 + - uid: 709 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 527 + - uid: 710 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 528 + - uid: 711 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 529 + - uid: 712 components: - type: Transform pos: -0.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 530 + - uid: 713 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 536 + - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 537 + - uid: 715 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 548 + - uid: 716 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 556 + - uid: 717 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 559 + - uid: 718 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-19.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 560 + - uid: 719 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 565 + - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 605 + - uid: 721 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 606 + - uid: 722 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 607 + - uid: 723 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 612 + - uid: 724 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 613 + - uid: 725 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 615 + - uid: 726 components: - type: Transform pos: -6.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 616 + - uid: 727 components: - type: Transform pos: 1.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 623 + - uid: 728 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 639 + - uid: 729 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 640 + - uid: 730 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 641 + - uid: 731 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 646 + - uid: 732 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 662 + - uid: 733 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 668 + - uid: 734 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 671 + - uid: 735 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 692 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 694 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 696 + - uid: 738 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 698 + - uid: 739 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 702 + - uid: 740 components: - type: Transform pos: 11.5,-8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 703 + - uid: 741 components: - type: Transform pos: 8.5,-8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 716 + - uid: 742 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 718 + - uid: 743 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 721 + - uid: 744 components: - type: Transform pos: 7.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 722 + - uid: 745 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 723 + - uid: 746 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 724 + - uid: 747 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 725 + - uid: 748 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 726 + - uid: 749 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 727 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 728 + - uid: 751 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 729 + - uid: 752 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 736 + - uid: 753 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 737 + - uid: 754 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 746 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 756 components: - type: Transform pos: -0.5,-13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 760 + - uid: 757 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 763 + - uid: 758 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 765 + - uid: 759 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 768 + - uid: 760 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 784 + - uid: 761 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 786 + - uid: 762 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 787 + - uid: 763 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 793 + - uid: 764 components: - type: Transform pos: -6.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 798 + - uid: 765 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 800 + - uid: 766 components: - type: Transform pos: -1.5,9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 801 + - uid: 767 components: - type: Transform pos: -2.5,7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 807 + - uid: 768 components: - type: Transform pos: 1.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 814 + - uid: 769 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 820 + - uid: 770 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 832 + - uid: 771 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 847 + - uid: 772 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 849 + - uid: 773 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 863 + - uid: 774 components: - type: Transform pos: -1.5,-13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 864 + - uid: 775 components: - type: Transform pos: -1.5,-12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 865 + - uid: 776 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 867 + - uid: 777 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 872 + - uid: 778 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 881 + - uid: 779 components: - type: Transform pos: -2.5,-5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 883 + - uid: 780 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 891 + - uid: 781 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 892 + - uid: 782 components: - type: Transform pos: -2.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 900 + - uid: 783 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 903 + - uid: 784 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 907 + - uid: 785 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 909 + - uid: 786 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 912 + - uid: 787 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 913 + - uid: 788 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 914 + - uid: 789 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 915 + - uid: 790 components: - type: Transform pos: -1.5,6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 919 + - uid: 791 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 920 + - uid: 792 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 921 + - uid: 793 components: - type: Transform pos: -1.5,7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 922 + - uid: 794 components: - type: Transform pos: 2.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 923 + - uid: 795 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 926 + - uid: 796 components: - type: Transform pos: -7.5,-1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 927 + - uid: 797 components: - type: Transform pos: 2.5,-1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 928 + - uid: 798 components: - type: Transform pos: 2.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 929 + - uid: 799 components: - type: Transform pos: -7.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 930 + - uid: 800 components: - type: Transform pos: 1.5,-0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 934 + - uid: 801 components: - type: Transform pos: 2.5,-0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 937 + - uid: 802 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 942 + - uid: 803 components: - type: Transform pos: -2.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 943 + - uid: 804 components: - type: Transform pos: -2.5,-6.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 992 + - uid: 805 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1147 + - uid: 806 components: - type: Transform pos: 8.5,-7.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1148 + - uid: 807 components: - type: Transform pos: 8.5,0.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1149 + - uid: 808 components: - type: Transform pos: 11.5,1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1185 + - uid: 809 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1211 + - uid: 810 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1212 + - uid: 811 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1213 + - uid: 812 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1214 + - uid: 813 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1326 + - uid: 814 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1389 + - uid: 815 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1683 + - uid: 816 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1707 + - uid: 817 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1708 + - uid: 2000 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1715 + - uid: 819 components: - type: Transform pos: -0.5,-17.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1716 + - uid: 820 components: - type: Transform pos: -0.5,-16.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1717 + - uid: 821 components: - type: Transform pos: -1.5,-17.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1722 + - uid: 822 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1773 + - uid: 823 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1776 + - uid: 824 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1793 + - uid: 825 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1800 + - uid: 826 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1827 + - uid: 827 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1836 + - uid: 828 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1845 + - uid: 829 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,12.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1856 + - uid: 830 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1864 + - uid: 831 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,15.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1895 + - uid: 832 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasPipeTJunction entities: - - uid: 4 + - uid: 833 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,8.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 97 + - uid: 834 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 112 + - uid: 835 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-4.5 - parent: 818 - - uid: 129 + parent: 2 + - uid: 836 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 145 + - uid: 837 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-2.5 - parent: 818 - - uid: 146 + parent: 2 + - uid: 838 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 220 + - uid: 839 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 344 + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 349 + - uid: 841 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 354 + - uid: 842 components: - type: Transform pos: -3.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 387 + - uid: 843 components: - type: Transform pos: 2.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 465 + - uid: 844 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 483 + - uid: 845 components: - type: Transform pos: -3.5,4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 570 + - uid: 846 components: - type: Transform pos: 6.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 661 + - uid: 847 components: - type: Transform pos: -0.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 682 + - uid: 848 components: - type: Transform pos: 7.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 754 + - uid: 849 components: - type: Transform pos: -3.5,-10.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 776 + - uid: 850 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 821 + - uid: 851 components: - type: Transform pos: 1.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 831 + - uid: 852 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 840 + - uid: 853 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-9.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 908 + - uid: 854 components: - type: Transform pos: -2.5,-2.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 918 + - uid: 855 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,5.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1163 + - uid: 856 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1164 + - uid: 857 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1165 + - uid: 858 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-1.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1166 + - uid: 859 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-4.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1205 + - uid: 860 components: - type: Transform pos: -1.5,-11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1726 + - uid: 861 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,11.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVentPump entities: - - uid: 13 + - uid: 862 components: - type: Transform pos: -6.5,-10.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1072 + - 8 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 108 + - uid: 863 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,8.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 254 + - uid: 864 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-18.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 461 + - uid: 865 components: - type: Transform pos: 1.5,0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 583 + - uid: 866 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 602 + - uid: 867 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 603 + - uid: 868 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 622 + - uid: 869 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 636 + - uid: 870 components: - type: Transform pos: -6.5,0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 642 + - uid: 871 components: - type: Transform pos: -2.5,9.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 761 + - uid: 872 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 86 + - 3 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 797 + - uid: 873 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1173 + - uid: 874 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1174 + - uid: 875 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-1.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1711 + - uid: 876 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-16.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1009 + - 5 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1718 + - uid: 877 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1009 + - 5 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1721 + - uid: 878 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-19.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1009 + - 5 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1868 + - uid: 879 components: - type: Transform pos: -2.5,16.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasVentScrubber entities: - - uid: 8 + - uid: 880 components: - type: Transform pos: 2.5,0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17 + - uid: 881 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 109 + - uid: 882 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 253 + - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-20.5 - parent: 818 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 474 + - uid: 884 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-5.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 519 + - uid: 885 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-10.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1072 + - 8 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 592 + - uid: 886 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-15.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 601 + - uid: 887 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 788 + - uid: 888 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 931 + - uid: 889 components: - type: Transform pos: -7.5,0.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1105 + - 9 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1089 + - uid: 890 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 86 + - 3 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1176 + - uid: 891 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1177 + - uid: 892 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-1.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1040 + - 7 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1511 + - uid: 893 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-15.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1009 + - 5 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1710 + - uid: 894 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-15.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1009 + - 5 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1712 + - uid: 895 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-19.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1009 + - 5 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1732 + - uid: 896 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,4.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1876 + - uid: 897 components: - type: Transform pos: -1.5,16.5 - parent: 818 + parent: 2 - type: DeviceNetwork deviceLists: - - 1038 + - 6 - type: AtmosPipeColor color: '#FF0000FF' - proto: GeneratorRTG entities: - - uid: 747 + - uid: 898 components: - type: Transform pos: -5.5,5.5 - parent: 818 + parent: 2 - type: PowerSupplier supplyRate: 30000 - - uid: 748 + - uid: 899 components: - type: Transform pos: -5.5,3.5 - parent: 818 + parent: 2 - type: PowerSupplier supplyRate: 30000 - proto: GravityGeneratorMini entities: - - uid: 950 + - uid: 900 components: - type: Transform pos: -8.5,3.5 - parent: 818 + parent: 2 - proto: Grille entities: - - uid: 243 + - uid: 901 components: - type: Transform pos: 14.5,-4.5 - parent: 818 - - uid: 260 + parent: 2 + - uid: 902 components: - type: Transform pos: 14.5,-5.5 - parent: 818 - - uid: 392 + parent: 2 + - uid: 903 components: - type: Transform pos: 13.5,-19.5 - parent: 818 - - uid: 418 + parent: 2 + - uid: 904 components: - type: Transform pos: 13.5,-17.5 - parent: 818 - - uid: 456 + parent: 2 + - uid: 905 components: - type: Transform pos: 8.5,-22.5 - parent: 818 - - uid: 893 + parent: 2 + - uid: 906 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-12.5 - parent: 818 - - uid: 1136 + parent: 2 + - uid: 907 components: - type: Transform pos: 13.5,-18.5 - parent: 818 - - uid: 1179 + parent: 2 + - uid: 908 components: - type: Transform pos: 8.5,-21.5 - parent: 818 - - uid: 1180 + parent: 2 + - uid: 909 components: - type: Transform pos: 8.5,-20.5 - parent: 818 + parent: 2 - proto: LockerAtmospherics entities: - - uid: 957 + - uid: 910 components: - type: Transform pos: -7.5,-9.5 - parent: 818 + parent: 2 - proto: LockerSecurity entities: - - uid: 151 + - uid: 89 components: - type: Transform pos: 6.5,-16.5 - parent: 818 + parent: 2 - type: EntityStorage air: volume: 200 @@ -8006,33 +8087,33 @@ entities: showEnts: False occludes: True ents: - - 157 - - 156 - - 155 - - 154 - - 153 - - 152 + - 90 + - 91 + - 95 + - 92 + - 93 + - 94 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: Mannequin entities: - - uid: 1512 + - uid: 415 components: - type: Transform - pos: -2.5,-13.5 - parent: 818 + pos: -0.5,-13.5 + parent: 2 - type: ContainerContainer containers: jumpsuit: !type:ContainerSlot showEnts: False occludes: False - ent: 1515 + ent: 417 outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: 1513 + ent: null neck: !type:ContainerSlot showEnts: False occludes: False @@ -8048,7 +8129,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 1514 + ent: 416 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -8057,22 +8138,22 @@ entities: showEnts: False occludes: False ent: null - - type: RussianAccent - - uid: 1516 + - type: FrenchAccent + - uid: 419 components: - type: Transform - pos: -0.5,-13.5 - parent: 818 + pos: -2.5,-13.5 + parent: 2 - type: ContainerContainer containers: jumpsuit: !type:ContainerSlot showEnts: False occludes: False - ent: 1517 + ent: 422 outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: null + ent: 421 neck: !type:ContainerSlot showEnts: False occludes: False @@ -8088,7 +8169,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 1518 + ent: 420 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -8097,638 +8178,648 @@ entities: showEnts: False occludes: False ent: null - - type: FrenchAccent + - type: RussianAccent - proto: Mirror entities: - - uid: 1736 + - uid: 911 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-26.5 - parent: 818 - - uid: 1737 + parent: 2 + - uid: 912 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-26.5 - parent: 818 - - uid: 1738 + parent: 2 + - uid: 913 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 - parent: 818 - - uid: 1739 + parent: 2 + - uid: 914 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 - parent: 818 + parent: 2 - proto: Paper entities: - - uid: 22 + - uid: 915 components: - type: Transform rot: 3.141592653589793 rad pos: 9.765255,-4.4293413 - parent: 818 - - uid: 830 + parent: 2 + - uid: 916 components: - type: Transform rot: 3.141592653589793 rad pos: 9.921505,-4.4762163 - parent: 818 - - uid: 1639 + parent: 2 + - uid: 917 components: - type: Transform pos: -0.11029482,-19.458694 - parent: 818 - - uid: 1646 + parent: 2 + - uid: 918 components: - type: Transform pos: -0.35465497,-19.342327 - parent: 818 - - uid: 1647 + parent: 2 + - uid: 919 components: - type: Transform pos: -0.5408342,-19.505241 - parent: 818 + parent: 2 - proto: Pen entities: - - uid: 1649 + - uid: 920 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.18060982,-19.551788 - parent: 818 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 1315 + - uid: 921 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 - parent: 818 + parent: 2 - proto: PlushieAtmosian entities: - - uid: 1753 + - uid: 922 components: - type: Transform pos: -8.480301,-11.51842 - parent: 818 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 1563 + components: + - type: MetaData + desc: Доревьювился. + name: неизвестный мейнтейнер + - type: Transform + pos: -8.528828,-15.495922 + parent: 2 - proto: PlushieLizardMirrored entities: - - uid: 163 + - uid: 923 components: - type: Transform pos: 5.5931134,-0.44783163 - parent: 818 + parent: 2 - proto: PlushiePenguin entities: - - uid: 355 + - uid: 924 components: - type: MetaData desc: Надо было ставить Линукс. - type: Transform pos: 9.50761,2.5900903 - parent: 818 + parent: 2 - proto: PlushieSlime entities: - - uid: 965 + - uid: 926 components: - type: MetaData desc: Уверяю вас. Мне можно доверить огнестрельное оружие... name: плюшевый Керн - type: Transform - parent: 964 + parent: 925 - type: Physics canCollide: False - - uid: 1381 + - uid: 927 components: - type: Transform pos: 9.412727,-6.492947 - parent: 818 + parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 1754 + - uid: 928 components: - type: Transform pos: -9.5,-11.5 - parent: 818 + parent: 2 - proto: PottedPlant11 entities: - - uid: 770 + - uid: 929 components: - type: Transform pos: -7.0200777,-7.4046617 - parent: 818 + parent: 2 - proto: PottedPlant13 entities: - - uid: 1747 + - uid: 930 components: - type: Transform pos: -3.5,-20.5 - parent: 818 + parent: 2 - proto: PottedPlant17 entities: - - uid: 738 + - uid: 931 components: - type: Transform pos: 2.010267,-7.4168715 - parent: 818 + parent: 2 - proto: PottedPlant7 entities: - - uid: 964 + - uid: 925 components: - type: Transform pos: 5.5,-16.5 - parent: 818 + parent: 2 - type: ContainerContainer containers: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 965 + ent: 926 - proto: PottedPlantAlt2 entities: - - uid: 2 + - uid: 932 components: - type: Transform pos: 8.25,10.5 - parent: 818 - - uid: 41 + parent: 2 + - uid: 933 components: - type: Transform pos: 10.75,10.5 - parent: 818 + parent: 2 - proto: PottedPlantAlt8 entities: - - uid: 1746 + - uid: 934 components: - type: Transform pos: 0.5,-20.5 - parent: 818 + parent: 2 - proto: PottedPlantRandom entities: - - uid: 24 + - uid: 935 components: - type: Transform pos: 6.5,5.5 - parent: 818 - - uid: 179 + parent: 2 + - uid: 936 components: - type: Transform pos: -1.5,1.5 - parent: 818 - - uid: 506 + parent: 2 + - uid: 937 components: - type: Transform pos: -1.5,13.5 - parent: 818 - - uid: 693 + parent: 2 + - uid: 938 components: - type: Transform pos: -3.5,-7.5 - parent: 818 - - uid: 790 + parent: 2 + - uid: 939 components: - type: Transform pos: 12.5,5.5 - parent: 818 - - uid: 813 + parent: 2 + - uid: 940 components: - type: Transform pos: 13.5,-11.5 - parent: 818 - - uid: 972 + parent: 2 + - uid: 941 components: - type: Transform pos: 10.5,-13.5 - parent: 818 - - uid: 1073 + parent: 2 + - uid: 942 components: - type: Transform pos: 12.5,-13.5 - parent: 818 - - uid: 1103 + parent: 2 + - uid: 943 components: - type: Transform pos: 10.5,-25.5 - parent: 818 - - uid: 1104 + parent: 2 + - uid: 944 components: - type: Transform pos: 12.5,-25.5 - parent: 818 + parent: 2 - proto: Poweredlight entities: - - uid: 12 + - uid: 945 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-3.5 - parent: 818 - - uid: 46 + parent: 2 + - uid: 946 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 - parent: 818 - - uid: 106 + parent: 2 + - uid: 947 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-15.5 - parent: 818 - - uid: 526 + parent: 2 + - uid: 948 components: - type: Transform pos: 0.5,1.5 - parent: 818 - - uid: 631 + parent: 2 + - uid: 949 components: - type: Transform pos: -1.5,1.5 - parent: 818 - - uid: 654 + parent: 2 + - uid: 950 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 - parent: 818 - - uid: 656 + parent: 2 + - uid: 951 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-6.5 - parent: 818 - - uid: 848 + parent: 2 + - uid: 952 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-7.5 - parent: 818 - - uid: 850 + parent: 2 + - uid: 953 components: - type: Transform pos: -3.5,1.5 - parent: 818 - - uid: 999 + parent: 2 + - uid: 954 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 - parent: 818 - - uid: 1084 + parent: 2 + - uid: 955 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-15.5 - parent: 818 - - uid: 1085 + parent: 2 + - uid: 956 components: - type: Transform pos: 9.5,-16.5 - parent: 818 - - uid: 1091 + parent: 2 + - uid: 957 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-22.5 - parent: 818 - - uid: 1216 + parent: 2 + - uid: 958 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-21.5 - parent: 818 - - uid: 1227 + parent: 2 + - uid: 959 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-25.5 - parent: 818 - - uid: 1228 + parent: 2 + - uid: 960 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-25.5 - parent: 818 - - uid: 1230 + parent: 2 + - uid: 961 components: - type: Transform pos: 10.5,-13.5 - parent: 818 - - uid: 1232 + parent: 2 + - uid: 962 components: - type: Transform pos: 12.5,-13.5 - parent: 818 - - uid: 1236 + parent: 2 + - uid: 963 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-9.5 - parent: 818 - - uid: 1237 + parent: 2 + - uid: 964 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-11.5 - parent: 818 - - uid: 1239 + parent: 2 + - uid: 965 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-11.5 - parent: 818 - - uid: 1240 + parent: 2 + - uid: 966 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-9.5 - parent: 818 - - uid: 1243 + parent: 2 + - uid: 967 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,3.5 - parent: 818 - - uid: 1244 + parent: 2 + - uid: 968 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 - parent: 818 - - uid: 1245 + parent: 2 + - uid: 969 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 - parent: 818 - - uid: 1247 + parent: 2 + - uid: 970 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,5.5 - parent: 818 - - uid: 1248 + parent: 2 + - uid: 971 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 - parent: 818 - - uid: 1249 + parent: 2 + - uid: 972 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 818 - - uid: 1262 + parent: 2 + - uid: 973 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,0.5 - parent: 818 - - uid: 1263 + parent: 2 + - uid: 974 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,0.5 - parent: 818 - - uid: 1276 + parent: 2 + - uid: 975 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,8.5 - parent: 818 - - uid: 1294 + parent: 2 + - uid: 976 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,5.5 - parent: 818 - - uid: 1302 + parent: 2 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,5.5 - parent: 818 - - uid: 1320 + parent: 2 + - uid: 978 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-21.5 - parent: 818 - - uid: 1324 + parent: 2 + - uid: 979 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-11.5 - parent: 818 - - uid: 1357 + parent: 2 + - uid: 980 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-6.5 - parent: 818 - - uid: 1366 + parent: 2 + - uid: 981 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-11.5 - parent: 818 - - uid: 1374 + parent: 2 + - uid: 982 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-6.5 - parent: 818 - - uid: 1633 + parent: 2 + - uid: 983 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 - parent: 818 - - uid: 1635 + parent: 2 + - uid: 984 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-15.5 - parent: 818 - - uid: 1636 + parent: 2 + - uid: 985 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-15.5 - parent: 818 - - uid: 1759 + parent: 2 + - uid: 986 components: - type: Transform pos: -3.5,-13.5 - parent: 818 - - uid: 1760 + parent: 2 + - uid: 987 components: - type: Transform pos: 0.5,-13.5 - parent: 818 - - uid: 1761 + parent: 2 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-22.5 - parent: 818 - - uid: 1762 + parent: 2 + - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-22.5 - parent: 818 + parent: 2 - proto: PoweredlightPink entities: - - uid: 93 + - uid: 990 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,0.5 - parent: 818 + parent: 2 - proto: PoweredSmallLight entities: - - uid: 141 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-28.5 - parent: 818 - - uid: 315 + parent: 2 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-24.5 - parent: 818 - - uid: 459 + parent: 2 + - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 - parent: 818 - - uid: 471 + parent: 2 + - uid: 994 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 - parent: 818 - - uid: 782 + parent: 2 + - uid: 995 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-22.5 - parent: 818 - - uid: 805 + parent: 2 + - uid: 996 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 818 - - uid: 810 + parent: 2 + - uid: 997 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 - parent: 818 - - uid: 1202 + parent: 2 + - uid: 998 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-8.5 - parent: 818 - - uid: 1206 + parent: 2 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-1.5 - parent: 818 - - uid: 1234 + parent: 2 + - uid: 1000 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-14.5 - parent: 818 - - uid: 1345 + parent: 2 + - uid: 1001 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-10.5 - parent: 818 - - uid: 1346 + parent: 2 + - uid: 1002 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,4.5 - parent: 818 - - uid: 1354 + parent: 2 + - uid: 1003 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,2.5 - parent: 818 - - uid: 1393 + parent: 2 + - uid: 1004 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-24.5 - parent: 818 - - uid: 1705 + parent: 2 + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,15.5 - parent: 818 - - uid: 1735 + parent: 2 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-13.5 - parent: 818 - - uid: 1740 + parent: 2 + - uid: 1007 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-24.5 - parent: 818 - - uid: 1741 + parent: 2 + - uid: 1008 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-24.5 - parent: 818 + parent: 2 - proto: Rack entities: - - uid: 704 + - uid: 1009 components: - type: Transform pos: -5.5,-11.5 - parent: 818 - - uid: 962 + parent: 2 + - uid: 1010 components: - type: Transform pos: -6.5,-11.5 - parent: 818 + parent: 2 - proto: Railing entities: - - uid: 888 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 - parent: 818 - - uid: 889 + parent: 2 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 - parent: 818 - - uid: 1019 + parent: 2 + - uid: 1013 components: - type: MetaData desc: Вешалка для одежды. @@ -8736,8 +8827,8 @@ entities: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-17.5 - parent: 818 - - uid: 1021 + parent: 2 + - uid: 1014 components: - type: MetaData desc: Вешалка для одежды. @@ -8745,8 +8836,8 @@ entities: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-16.5 - parent: 818 - - uid: 1086 + parent: 2 + - uid: 1015 components: - type: MetaData desc: Вешалка для одежды. @@ -8754,8 +8845,8 @@ entities: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-17.5 - parent: 818 - - uid: 1101 + parent: 2 + - uid: 1016 components: - type: MetaData desc: Вешалка для одежды. @@ -8763,53 +8854,53 @@ entities: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-16.5 - parent: 818 - - uid: 1351 + parent: 2 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-13.5 - parent: 818 - - uid: 1353 + parent: 2 + - uid: 1018 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-13.5 - parent: 818 - - uid: 1364 + parent: 2 + - uid: 1019 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-13.5 - parent: 818 - - uid: 1365 + parent: 2 + - uid: 1020 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 - parent: 818 + parent: 2 - proto: RailingCornerSmall entities: - - uid: 649 + - uid: 1021 components: - type: Transform pos: 8.5,-12.5 - parent: 818 - - uid: 712 + parent: 2 + - uid: 1022 components: - type: MetaData desc: Вешалка для одежды. name: вешалка - type: Transform pos: -6.5,-16.5 - parent: 818 - - uid: 713 + parent: 2 + - uid: 1023 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-12.5 - parent: 818 - - uid: 1196 + parent: 2 + - uid: 1024 components: - type: MetaData desc: Вешалка для одежды. @@ -8817,14 +8908,14 @@ entities: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-17.5 - parent: 818 - - uid: 1242 + parent: 2 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-17.5 - parent: 818 - - uid: 1246 + parent: 2 + - uid: 1026 components: - type: MetaData desc: Вешалка для одежды. @@ -8832,155 +8923,168 @@ entities: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-16.5 - parent: 818 + parent: 2 - proto: RandomDrinkBottle entities: - - uid: 29 + - uid: 1027 components: - type: Transform pos: 3.5,1.5 - parent: 818 + parent: 2 - proto: RandomDrinkGlass entities: - - uid: 611 + - uid: 1028 components: - type: Transform pos: -6.5,-5.5 - parent: 818 - - uid: 1750 + parent: 2 + - uid: 1029 components: - type: Transform pos: 11.5,8.5 - parent: 818 + parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 742 + - uid: 1030 components: - type: Transform pos: 1.5,-5.5 - parent: 818 + parent: 2 - proto: RandomFoodBakedWhole entities: - - uid: 591 + - uid: 1031 components: - type: Transform pos: 2.5,-6.5 - parent: 818 + parent: 2 - proto: RandomFoodMeal entities: - - uid: 569 + - uid: 1032 components: - type: Transform pos: -7.5,-6.5 - parent: 818 - - uid: 1080 + parent: 2 + - uid: 1033 components: - type: Transform pos: 9.5,-21.5 - parent: 818 + parent: 2 - proto: RandomPosterLegit entities: - - uid: 178 + - uid: 1034 components: - type: Transform pos: 1.5,6.5 - parent: 818 + parent: 2 - proto: RandomVendingDrinks entities: - - uid: 175 + - uid: 1035 components: - type: Transform pos: -7.5,-2.5 - parent: 818 - - uid: 338 + parent: 2 + - uid: 1036 components: - type: Transform pos: 5.5,-4.5 - parent: 818 - - uid: 1442 + parent: 2 + - uid: 1037 components: - type: Transform pos: -6.5,-22.5 - parent: 818 + parent: 2 - proto: RandomVendingSnacks entities: - - uid: 164 + - uid: 1038 components: - type: Transform pos: 5.5,-1.5 - parent: 818 - - uid: 226 + parent: 2 + - uid: 1039 components: - type: Transform pos: -8.5,-2.5 - parent: 818 + parent: 2 - proto: Recycler entities: - - uid: 1697 + - uid: 1040 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,16.5 - parent: 818 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 600 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-12.5 - parent: 818 + parent: 2 +- proto: ShardGlass + entities: + - uid: 1565 + components: + - type: Transform + pos: -8.872578,-16.071678 + parent: 2 + - uid: 1566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.169453,-15.165428 + parent: 2 - proto: SignalButton entities: - - uid: 597 + - uid: 1042 components: - type: Transform pos: -5.5,10.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 549: + 16: - Pressed: DoorBolt - - uid: 598 + - uid: 1043 components: - type: Transform pos: -5.5,12.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 791: + 18: - Pressed: DoorBolt - - uid: 749 + - uid: 1044 components: - type: Transform pos: -5.5,14.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 473: + 15: - Pressed: DoorBolt - - uid: 932 + - uid: 1045 components: - type: Transform pos: -5.5,8.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 595: + 17: - Pressed: DoorBolt - proto: SignalTimer entities: - - uid: 1911 + - uid: 1046 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,2.5 - parent: 818 + parent: 2 - type: SignalTimer delay: 1 - type: DeviceLinkSource linkedPorts: - 462: + 24: - Timer: Toggle - type: DeviceLinkSink invokeCounter: 1 @@ -8989,17 +9093,17 @@ entities: - type: Stealth - type: StealthOnMove - type: ActiveSignalTimer - - uid: 1957 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-1.5 - parent: 818 + parent: 2 - type: SignalTimer delay: 1 - type: DeviceLinkSource linkedPorts: - 561: + 26: - Timer: Toggle - type: DeviceLinkSink invokeCounter: 1 @@ -9008,17 +9112,17 @@ entities: - type: Stealth - type: StealthOnMove - type: ActiveSignalTimer - - uid: 1958 + - uid: 1048 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-8.5 - parent: 818 + parent: 2 - type: SignalTimer delay: 1 - type: DeviceLinkSource linkedPorts: - 550: + 25: - Timer: Toggle - type: DeviceLinkSink invokeCounter: 1 @@ -9027,17 +9131,17 @@ entities: - type: Stealth - type: StealthOnMove - type: ActiveSignalTimer - - uid: 1959 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-14.5 - parent: 818 + parent: 2 - type: SignalTimer delay: 1 - type: DeviceLinkSource linkedPorts: - 28: + 23: - Timer: Toggle - type: DeviceLinkSink invokeCounter: 1 @@ -9046,17 +9150,17 @@ entities: - type: Stealth - type: StealthOnMove - type: ActiveSignalTimer - - uid: 1960 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-22.5 - parent: 818 + parent: 2 - type: SignalTimer delay: 1 - type: DeviceLinkSource linkedPorts: - 1363: + 28: - Timer: Toggle - type: DeviceLinkSink invokeCounter: 1 @@ -9067,506 +9171,506 @@ entities: - type: ActiveSignalTimer - proto: SignArcade entities: - - uid: 94 + - uid: 1051 components: - type: Transform pos: -4.5,-0.5 - parent: 818 + parent: 2 - proto: SignAtmos entities: - - uid: 1030 + - uid: 1052 components: - type: Transform pos: -4.5,-9.5 - parent: 818 + parent: 2 - proto: SignBar entities: - - uid: 148 + - uid: 1053 components: - type: Transform pos: 4.5,-1.5 - parent: 818 + parent: 2 - proto: SignDisposalSpace entities: - - uid: 1703 + - uid: 1054 components: - type: Transform pos: -1.5,14.5 - parent: 818 + parent: 2 - proto: SignEngineering entities: - - uid: 1657 + - uid: 1055 components: - type: Transform pos: -4.5,5.5 - parent: 818 + parent: 2 - proto: SignJanitor entities: - - uid: 1702 + - uid: 1056 components: - type: Transform pos: -1.5,6.5 - parent: 818 + parent: 2 - proto: SignShipDock entities: - - uid: 1656 + - uid: 1057 components: - type: Transform pos: 14.5,1.5 - parent: 818 - - uid: 1686 + parent: 2 + - uid: 1058 components: - type: Transform pos: 14.5,-9.5 - parent: 818 + parent: 2 - proto: SignSmoking entities: - - uid: 1669 + - uid: 1059 components: - type: Transform pos: -0.5,12.5 - parent: 818 + parent: 2 - proto: Sink entities: - - uid: 859 + - uid: 1060 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 - parent: 818 + parent: 2 - proto: SinkStemlessWater entities: - - uid: 169 + - uid: 1061 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-14.5 - parent: 818 - - uid: 794 + parent: 2 + - uid: 1062 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.8169644,11.372251 - parent: 818 - - uid: 811 + parent: 2 + - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.8013394,9.356626 - parent: 818 + parent: 2 - proto: SMESBasic entities: - - uid: 944 + - uid: 1064 components: - type: Transform pos: -7.5,5.5 - parent: 818 + parent: 2 - proto: SodaDispenser entities: - - uid: 634 + - uid: 1065 components: - type: Transform pos: 2.5,1.5 - parent: 818 + parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 98 + - uid: 1066 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,0.5 - parent: 818 - - uid: 177 + parent: 2 + - uid: 1067 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,1.5 - parent: 818 + parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 707 + - uid: 1068 components: - type: Transform pos: 5.5,1.5 - parent: 818 - - uid: 708 + parent: 2 + - uid: 1069 components: - type: Transform pos: 10.5,-0.5 - parent: 818 - - uid: 1081 + parent: 2 + - uid: 1070 components: - type: Transform pos: 9.5,-8.5 - parent: 818 - - uid: 1204 + parent: 2 + - uid: 1071 components: - type: Transform pos: 10.5,-6.5 - parent: 818 - - uid: 1252 + parent: 2 + - uid: 1072 components: - type: Transform pos: 9.5,-7.5 - parent: 818 - - uid: 1288 + parent: 2 + - uid: 1073 components: - type: Transform pos: 9.5,-5.5 - parent: 818 - - uid: 1289 + parent: 2 + - uid: 1074 components: - type: Transform pos: 5.5,0.5 - parent: 818 - - uid: 1870 + parent: 2 + - uid: 1075 components: - type: Transform pos: 10.5,-5.5 - parent: 818 - - uid: 1902 + parent: 2 + - uid: 1076 components: - type: Transform pos: 5.5,-8.5 - parent: 818 - - uid: 1903 + parent: 2 + - uid: 1077 components: - type: Transform pos: 9.5,-0.5 - parent: 818 - - uid: 1904 + parent: 2 + - uid: 1078 components: - type: Transform pos: 9.5,0.5 - parent: 818 - - uid: 1905 + parent: 2 + - uid: 1079 components: - type: Transform pos: 9.5,1.5 - parent: 818 - - uid: 1906 + parent: 2 + - uid: 1080 components: - type: Transform pos: 10.5,0.5 - parent: 818 - - uid: 1907 + parent: 2 + - uid: 1081 components: - type: Transform pos: 10.5,1.5 - parent: 818 - - uid: 1908 + parent: 2 + - uid: 1082 components: - type: Transform pos: 5.5,2.5 - parent: 818 - - uid: 1909 + parent: 2 + - uid: 1083 components: - type: Transform pos: 10.5,2.5 - parent: 818 - - uid: 1961 + parent: 2 + - uid: 1084 components: - type: Transform pos: 10.5,-7.5 - parent: 818 - - uid: 1962 + parent: 2 + - uid: 1085 components: - type: Transform pos: 10.5,-8.5 - parent: 818 - - uid: 1963 + parent: 2 + - uid: 1086 components: - type: Transform pos: 5.5,-7.5 - parent: 818 - - uid: 1964 + parent: 2 + - uid: 1087 components: - type: Transform pos: 5.5,-6.5 - parent: 818 - - uid: 1965 + parent: 2 + - uid: 1088 components: - type: Transform pos: 5.5,-5.5 - parent: 818 + parent: 2 - proto: Spoon entities: - - uid: 1734 + - uid: 1089 components: - type: MetaData name: ложка для обуви - type: Transform rot: -0.5235987755982988 rad pos: 1.7093852,-16.486588 - parent: 818 - - uid: 1764 + parent: 2 + - uid: 1090 components: - type: MetaData name: ложка для обуви - type: Transform rot: -0.8726646259971648 rad pos: -4.697705,-16.59065 - parent: 818 + parent: 2 - proto: StairDark entities: - - uid: 759 + - uid: 1091 components: - type: Transform pos: 8.5,6.5 - parent: 818 - - uid: 762 + parent: 2 + - uid: 1092 components: - type: Transform pos: 10.5,6.5 - parent: 818 - - uid: 769 + parent: 2 + - uid: 1093 components: - type: Transform pos: 9.5,6.5 - parent: 818 + parent: 2 - proto: Stairs entities: - - uid: 1348 + - uid: 1094 components: - type: MetaData name: полки для обуви - type: Transform pos: -5.5,-13.5 - parent: 818 - - uid: 1349 + parent: 2 + - uid: 1095 components: - type: MetaData name: полки для обуви - type: Transform pos: -4.5,-13.5 - parent: 818 - - uid: 1350 + parent: 2 + - uid: 1096 components: - type: MetaData name: полки для обуви - type: Transform pos: -3.5,-13.5 - parent: 818 - - uid: 1358 + parent: 2 + - uid: 1097 components: - type: MetaData name: полки для обуви - type: Transform pos: 0.5,-13.5 - parent: 818 - - uid: 1359 + parent: 2 + - uid: 1098 components: - type: MetaData name: полки для обуви - type: Transform pos: 1.5,-13.5 - parent: 818 - - uid: 1360 + parent: 2 + - uid: 1099 components: - type: MetaData name: полки для обуви - type: Transform pos: 2.5,-13.5 - parent: 818 + parent: 2 - proto: SteelBench entities: - - uid: 1628 + - uid: 1100 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-25.5 - parent: 818 - - uid: 1629 + parent: 2 + - uid: 1101 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-25.5 - parent: 818 - - uid: 1630 + parent: 2 + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-25.5 - parent: 818 - - uid: 1631 + parent: 2 + - uid: 1103 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-25.5 - parent: 818 + parent: 2 - proto: StoolBar entities: - - uid: 27 + - uid: 1104 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 - parent: 818 - - uid: 43 + parent: 2 + - uid: 1105 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,0.5 - parent: 818 - - uid: 173 + parent: 2 + - uid: 1106 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-0.5 - parent: 818 - - uid: 376 + parent: 2 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-1.5 - parent: 818 - - uid: 525 + parent: 2 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 - parent: 818 - - uid: 539 + parent: 2 + - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 - parent: 818 - - uid: 670 + parent: 2 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 - parent: 818 + parent: 2 - proto: SubstationBasic entities: - - uid: 469 + - uid: 1111 components: - type: Transform pos: -8.5,5.5 - parent: 818 + parent: 2 - proto: SuitStorageBase entities: - - uid: 959 + - uid: 1112 components: - type: Transform pos: -8.5,-9.5 - parent: 818 + parent: 2 - proto: SurveillanceCameraGeneral entities: - - uid: 99 + - uid: 1113 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-9.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Южный коридор - - uid: 234 + - uid: 1114 components: - type: Transform pos: -6.5,3.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Инженерия - - uid: 479 + - uid: 1115 components: - type: Transform pos: -0.5,3.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Северный коридор - - uid: 1400 + - uid: 1116 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-9.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Атмос - - uid: 1587 + - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,1.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Бар - - uid: 1589 + - uid: 1118 components: - type: Transform pos: -5.5,-7.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Ресторан - - uid: 1596 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,9.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Рекреация - - uid: 1614 + - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-18.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Одежда - - uid: 1620 + - uid: 1121 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,1.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Терминал 1 - - uid: 1621 + - uid: 1122 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-9.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True id: Терминал 2 - - uid: 1622 + - uid: 1123 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-19.5 - parent: 818 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral @@ -9574,428 +9678,436 @@ entities: id: Терминал 3 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 1581 + - uid: 1124 components: - type: Transform pos: -6.5,3.5 - parent: 818 + parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 1956 + - uid: 1125 components: - type: Transform pos: -8.5,4.5 - parent: 818 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 - proto: TableCarpet entities: - - uid: 11 + - uid: 1126 components: - type: Transform pos: 2.5,1.5 - parent: 818 - - uid: 516 + parent: 2 + - uid: 1127 components: - type: Transform pos: 1.5,1.5 - parent: 818 - - uid: 647 + parent: 2 + - uid: 1128 components: - type: Transform pos: 3.5,1.5 - parent: 818 - - uid: 1414 + parent: 2 + - uid: 1129 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-20.5 - parent: 818 - - uid: 1425 + parent: 2 + - uid: 1130 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-20.5 - parent: 818 + parent: 2 - proto: TableCounterWood entities: - - uid: 346 + - uid: 1131 components: - type: Transform pos: 1.5,-0.5 - parent: 818 - - uid: 491 + parent: 2 + - uid: 1132 components: - type: Transform pos: 3.5,-0.5 - parent: 818 - - uid: 524 + parent: 2 + - uid: 1133 components: - type: Transform pos: 2.5,-0.5 - parent: 818 - - uid: 630 + parent: 2 + - uid: 1134 components: - type: Transform pos: 0.5,-0.5 - parent: 818 - - uid: 1137 + parent: 2 + - uid: 1135 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-16.5 - parent: 818 - - uid: 1140 + parent: 2 + - uid: 1136 components: - type: Transform pos: -4.5,-16.5 - parent: 818 - - uid: 1640 + parent: 2 + - uid: 1137 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-19.5 - parent: 818 - - uid: 1641 + parent: 2 + - uid: 1138 components: - type: Transform pos: 0.5,-19.5 - parent: 818 - - uid: 1642 + parent: 2 + - uid: 1139 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-19.5 - parent: 818 - - uid: 1643 + parent: 2 + - uid: 1140 components: - type: Transform pos: -3.5,-19.5 - parent: 818 - - uid: 1650 + parent: 2 + - uid: 1141 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-20.5 - parent: 818 - - uid: 1651 + parent: 2 + - uid: 1142 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-20.5 - parent: 818 + parent: 2 - proto: TableFancyBlack entities: - - uid: 358 + - uid: 1143 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 - parent: 818 - - uid: 497 + parent: 2 + - uid: 1144 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-7.5 - parent: 818 - - uid: 498 + parent: 2 + - uid: 1145 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-7.5 - parent: 818 - - uid: 522 + parent: 2 + - uid: 1146 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 - parent: 818 - - uid: 627 + parent: 2 + - uid: 1147 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-6.5 - parent: 818 - - uid: 628 + parent: 2 + - uid: 1148 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 - parent: 818 - - uid: 629 + parent: 2 + - uid: 1149 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-7.5 - parent: 818 - - uid: 657 + parent: 2 + - uid: 1150 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-5.5 - parent: 818 - - uid: 658 + parent: 2 + - uid: 1151 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-7.5 - parent: 818 - - uid: 781 + parent: 2 + - uid: 1152 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-5.5 - parent: 818 - - uid: 843 + parent: 2 + - uid: 1153 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 - parent: 818 - - uid: 845 + parent: 2 + - uid: 1154 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-5.5 - parent: 818 + parent: 2 - proto: TableGlass entities: - - uid: 283 + - uid: 1155 components: - type: Transform pos: 9.5,-21.5 - parent: 818 + parent: 2 - proto: TableReinforced entities: - - uid: 181 + - uid: 1156 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,1.5 - parent: 818 - - uid: 224 + parent: 2 + - uid: 1157 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-0.5 - parent: 818 - - uid: 706 + parent: 2 + - uid: 1158 components: - type: Transform pos: 6.5,-13.5 - parent: 818 - - uid: 743 + parent: 2 + - uid: 1159 components: - type: Transform pos: 7.5,-13.5 - parent: 818 - - uid: 861 + parent: 2 + - uid: 1160 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-16.5 - parent: 818 + parent: 2 - proto: TableReinforcedGlass entities: - - uid: 107 + - uid: 1161 components: - type: Transform pos: 10.5,-4.5 - parent: 818 - - uid: 126 + parent: 2 + - uid: 1162 components: - type: Transform pos: 10.5,-1.5 - parent: 818 - - uid: 330 + parent: 2 + - uid: 1163 components: - type: Transform pos: 9.5,-1.5 - parent: 818 - - uid: 336 + parent: 2 + - uid: 1164 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 - parent: 818 - - uid: 337 + parent: 2 + - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 - parent: 818 - - uid: 340 + parent: 2 + - uid: 1166 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,8.5 - parent: 818 - - uid: 697 + parent: 2 + - uid: 1167 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,8.5 - parent: 818 - - uid: 963 + parent: 2 + - uid: 1168 components: - type: Transform pos: 9.5,-4.5 - parent: 818 - - uid: 1198 + parent: 2 + - uid: 1169 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-9.5 - parent: 818 - - uid: 1199 + parent: 2 + - uid: 1170 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-9.5 - parent: 818 - - uid: 1200 + parent: 2 + - uid: 1171 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 - parent: 818 - - uid: 1201 + parent: 2 + - uid: 1172 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 - parent: 818 + parent: 2 - proto: TableStone entities: - - uid: 324 + - uid: 1173 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,12.5 - parent: 818 - - uid: 508 + parent: 2 + - uid: 1174 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 - parent: 818 - - uid: 638 + parent: 2 + - uid: 1175 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 - parent: 818 - - uid: 925 + parent: 2 + - uid: 1176 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,11.5 - parent: 818 - - uid: 935 + parent: 2 + - uid: 1177 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,8.5 - parent: 818 + parent: 2 - proto: TableWood entities: - - uid: 1413 + - uid: 1178 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-21.5 - parent: 818 - - uid: 1423 + parent: 2 + - uid: 1179 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-21.5 - parent: 818 + parent: 2 - proto: TelecomServerFilled entities: - - uid: 953 + - uid: 1180 components: - type: Transform pos: -7.5,3.5 - parent: 818 + parent: 2 - proto: TintedWindow entities: - - uid: 76 + - uid: 1181 components: - type: Transform pos: 14.5,-4.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable - RCDDeconstructable - Destructible - - uid: 172 + - uid: 1182 components: - type: Transform pos: 14.5,-5.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable - RCDDeconstructable - Destructible - - uid: 232 + - uid: 1183 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-17.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable - RCDDeconstructable - Destructible - - uid: 445 + - uid: 1184 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-18.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable - RCDDeconstructable - Destructible - - uid: 961 + - uid: 1185 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-19.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable - RCDDeconstructable - Destructible - - uid: 993 + - uid: 1186 components: - type: Transform pos: 8.5,-20.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable - RCDDeconstructable - Destructible - - uid: 994 + - uid: 1187 components: - type: Transform pos: 8.5,-21.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable - RCDDeconstructable - Destructible - - uid: 995 + - uid: 1188 components: - type: Transform pos: 8.5,-22.5 - parent: 818 + parent: 2 missingComponents: - Occluder - Damageable @@ -10003,2425 +10115,2462 @@ entities: - Destructible - proto: ToiletEmpty entities: - - uid: 758 + - uid: 1189 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 818 - - uid: 809 + parent: 2 + - uid: 1190 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 - parent: 818 - - uid: 812 + parent: 2 + - uid: 1191 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 - parent: 818 - - uid: 852 + parent: 2 + - uid: 1192 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 - parent: 818 + parent: 2 - proto: ToolboxElectrical entities: - - uid: 1637 + - uid: 1193 components: - type: Transform pos: -5.395227,-11.313736 - parent: 818 + parent: 2 - proto: ToolboxMechanical entities: - - uid: 1638 + - uid: 1194 components: - type: Transform pos: -5.582727,-11.532486 - parent: 818 + parent: 2 - proto: ToyFigurineBartender entities: - - uid: 614 + - uid: 1195 components: - type: Transform pos: 0.45116568,-0.33467317 - parent: 818 + parent: 2 - proto: TrashBag entities: - - uid: 1678 + - uid: 1196 components: - type: MetaData name: пакет для покупок - type: Transform rot: 1.5707963267948966 rad pos: -2.547278,-20.178963 - parent: 818 - - uid: 1701 + parent: 2 + - uid: 1197 components: - type: MetaData name: пакет для покупок - type: Transform pos: -3.0217736,-20.58265 - parent: 818 + parent: 2 - proto: TrashBagBlue entities: - - uid: 1680 + - uid: 1198 components: - type: MetaData name: пакет для покупок - type: Transform pos: -2.9506664,-20.171206 - parent: 818 + parent: 2 - proto: TwoWayLever entities: - - uid: 1700 + - uid: 1199 components: - type: Transform pos: -4.5,15.5 - parent: 818 + parent: 2 - type: DeviceLinkSource linkedPorts: - 1689: + 464: - Left: Forward - Right: Reverse - Middle: Off - 1690: + 465: - Left: Forward - Right: Reverse - Middle: Off - 1691: + 466: - Left: Forward - Right: Reverse - Middle: Off - 1697: + 1040: - Left: Forward - Right: Reverse - Middle: Off - 1692: + 467: - Left: Forward - Right: Reverse - Middle: Off - 1693: + 468: - Left: Forward - Right: Reverse - Middle: Off - 1694: + 469: - Left: Forward - Right: Reverse - Middle: Off - proto: VendingMachineBooze entities: - - uid: 511 + - uid: 1200 components: - type: Transform pos: 0.5,1.5 - parent: 818 + parent: 2 missingComponents: - AccessReader - proto: VendingMachineChang entities: - - uid: 1441 + - uid: 1201 components: - type: Transform pos: 3.5,-22.5 - parent: 818 + parent: 2 - proto: VendingMachineCigs entities: - - uid: 3 + - uid: 1202 components: - type: Transform pos: 5.5,5.5 - parent: 818 - - uid: 62 + parent: 2 + - uid: 1203 components: - type: Transform pos: -5.5,-2.5 - parent: 818 - - uid: 1175 + parent: 2 + - uid: 1204 components: - type: Transform pos: 9.5,-16.5 - parent: 818 + parent: 2 - proto: VendingMachineClothing entities: - - uid: 1143 + - uid: 1205 components: - type: Transform pos: 3.5,-15.5 - parent: 818 - - uid: 1144 + parent: 2 + - uid: 1206 components: - type: Transform pos: 3.5,-14.5 - parent: 818 + parent: 2 - proto: VendingMachineCoffee entities: - - uid: 174 + - uid: 1207 components: - type: Transform pos: -6.5,-2.5 - parent: 818 - - uid: 906 + parent: 2 + - uid: 1208 components: - type: Transform pos: 13.5,5.5 - parent: 818 - - uid: 1178 + parent: 2 + - uid: 1209 components: - type: Transform pos: 9.5,-18.5 - parent: 818 + parent: 2 - proto: VendingMachineSecDrobe entities: - - uid: 719 + - uid: 1210 components: - type: Transform pos: 7.5,-16.5 - parent: 818 + parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 750 + - uid: 1211 components: - type: Transform pos: -5.5,-9.5 - parent: 818 + parent: 2 - proto: VendingMachineWinter entities: - - uid: 1118 + - uid: 1212 components: - type: Transform pos: -6.5,-14.5 - parent: 818 - - uid: 1119 + parent: 2 + - uid: 1213 components: - type: Transform pos: -6.5,-15.5 - parent: 818 + parent: 2 - proto: WallmountTelevision entities: - - uid: 518 + - uid: 1214 components: - type: Transform pos: 9.5,11.5 - parent: 818 + parent: 2 - proto: WallPlastitaniumIndestructible entities: - - uid: 10 + - uid: 1215 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,2.5 - parent: 818 - - uid: 25 + parent: 2 + - uid: 1216 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 - parent: 818 - - uid: 26 + parent: 2 + - uid: 1217 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,14.5 - parent: 818 - - uid: 32 + parent: 2 + - uid: 1218 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,6.5 - parent: 818 - - uid: 33 + parent: 2 + - uid: 1219 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,6.5 - parent: 818 - - uid: 39 + parent: 2 + - uid: 1220 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,17.5 - parent: 818 - - uid: 44 + parent: 2 + - uid: 1221 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,2.5 - parent: 818 - - uid: 51 + parent: 2 + - uid: 1222 components: - type: Transform pos: -9.5,-0.5 - parent: 818 - - uid: 52 + parent: 2 + - uid: 1223 components: - type: Transform pos: -5.5,-8.5 - parent: 818 - - uid: 54 + parent: 2 + - uid: 1224 components: - type: Transform pos: -9.5,-4.5 - parent: 818 - - uid: 56 + parent: 2 + - uid: 1225 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,10.5 - parent: 818 - - uid: 58 + parent: 2 + - uid: 1226 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,9.5 - parent: 818 - - uid: 59 + parent: 2 + - uid: 1227 components: - type: Transform pos: 2.5,6.5 - parent: 818 - - uid: 60 + parent: 2 + - uid: 1228 components: - type: Transform pos: -3.5,-8.5 - parent: 818 - - uid: 67 + parent: 2 + - uid: 1229 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,11.5 - parent: 818 - - uid: 70 + parent: 2 + - uid: 1230 components: - type: Transform pos: 0.5,-24.5 - parent: 818 - - uid: 75 + parent: 2 + - uid: 1231 components: - type: Transform pos: 4.5,-22.5 - parent: 818 - - uid: 80 + parent: 2 + - uid: 1232 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,11.5 - parent: 818 - - uid: 81 + parent: 2 + - uid: 1233 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,11.5 - parent: 818 - - uid: 83 + parent: 2 + - uid: 1234 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,11.5 - parent: 818 - - uid: 85 + parent: 2 + - uid: 1235 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,11.5 - parent: 818 - - uid: 87 + parent: 2 + - uid: 1236 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 - parent: 818 - - uid: 102 + parent: 2 + - uid: 1237 components: - type: Transform pos: -9.5,-3.5 - parent: 818 - - uid: 105 + parent: 2 + - uid: 1238 components: - type: Transform pos: -9.5,-2.5 - parent: 818 - - uid: 123 + parent: 2 + - uid: 1239 components: - type: Transform pos: 1.5,6.5 - parent: 818 - - uid: 131 + parent: 2 + - uid: 1240 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,10.5 - parent: 818 - - uid: 133 + parent: 2 + - uid: 1241 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 - parent: 818 - - uid: 176 + parent: 2 + - uid: 1242 components: - type: Transform pos: 3.5,6.5 - parent: 818 - - uid: 185 + parent: 2 + - uid: 1243 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,8.5 - parent: 818 - - uid: 186 + parent: 2 + - uid: 1244 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,7.5 - parent: 818 - - uid: 193 + parent: 2 + - uid: 1245 components: - type: Transform pos: 4.5,-14.5 - parent: 818 - - uid: 199 + parent: 2 + - uid: 1246 components: - type: Transform pos: -6.5,-1.5 - parent: 818 - - uid: 201 + parent: 2 + - uid: 1247 components: - type: Transform pos: 5.5,-17.5 - parent: 818 - - uid: 202 + parent: 2 + - uid: 1248 components: - type: Transform pos: 7.5,-17.5 - parent: 818 - - uid: 203 + parent: 2 + - uid: 1249 components: - type: Transform pos: 4.5,-15.5 - parent: 818 - - uid: 206 + parent: 2 + - uid: 1250 components: - type: Transform pos: -9.5,0.5 - parent: 818 - - uid: 208 + parent: 2 + - uid: 1251 components: - type: Transform pos: -8.5,-1.5 - parent: 818 - - uid: 209 + parent: 2 + - uid: 1252 components: - type: Transform pos: -7.5,-1.5 - parent: 818 - - uid: 211 + parent: 2 + - uid: 1253 components: - type: Transform pos: -9.5,-8.5 - parent: 818 - - uid: 212 + parent: 2 + - uid: 1254 components: - type: Transform pos: -8.5,-8.5 - parent: 818 - - uid: 221 + parent: 2 + - uid: 1255 components: - type: Transform pos: 1.5,-26.5 - parent: 818 - - uid: 222 + parent: 2 + - uid: 1256 components: - type: Transform pos: 2.5,-26.5 - parent: 818 - - uid: 225 + parent: 2 + - uid: 1257 components: - type: Transform pos: -9.5,-7.5 - parent: 818 - - uid: 228 + parent: 2 + - uid: 1258 components: - type: Transform pos: -9.5,2.5 - parent: 818 - - uid: 237 + parent: 2 + - uid: 1259 components: - type: Transform pos: 6.5,-17.5 - parent: 818 - - uid: 238 + parent: 2 + - uid: 1260 components: - type: Transform pos: 4.5,-16.5 - parent: 818 - - uid: 239 + parent: 2 + - uid: 1261 components: - type: Transform pos: 4.5,-17.5 - parent: 818 - - uid: 241 + parent: 2 + - uid: 1262 components: - type: Transform pos: -7.5,-22.5 - parent: 818 - - uid: 244 + parent: 2 + - uid: 1263 components: - type: Transform pos: -9.5,-11.5 - parent: 818 - - uid: 245 + parent: 2 + - uid: 1264 components: - type: Transform pos: -6.5,-12.5 - parent: 818 - - uid: 246 + parent: 2 + - uid: 1265 components: - type: Transform pos: -9.5,-12.5 - parent: 818 - - uid: 247 + parent: 2 + - uid: 1266 components: - type: Transform pos: -7.5,-16.5 - parent: 818 - - uid: 248 + parent: 2 + - uid: 1267 components: - type: Transform pos: -9.5,-13.5 - parent: 818 - - uid: 249 + parent: 2 + - uid: 1268 components: - type: Transform pos: -5.5,-25.5 - parent: 818 - - uid: 250 + parent: 2 + - uid: 1269 components: - type: Transform pos: -7.5,-15.5 - parent: 818 - - uid: 262 + parent: 2 + - uid: 1270 components: - type: Transform pos: 0.5,-23.5 - parent: 818 - - uid: 263 + parent: 2 + - uid: 1271 components: - type: Transform pos: 4.5,-23.5 - parent: 818 - - uid: 264 + parent: 2 + - uid: 1272 components: - type: Transform pos: 3.5,-23.5 - parent: 818 - - uid: 265 + parent: 2 + - uid: 1273 components: - type: Transform pos: 3.5,-18.5 - parent: 818 - - uid: 266 + parent: 2 + - uid: 1274 components: - type: Transform pos: 2.5,-25.5 - parent: 818 - - uid: 267 + parent: 2 + - uid: 1275 components: - type: Transform pos: 0.5,-26.5 - parent: 818 - - uid: 268 + parent: 2 + - uid: 1276 components: - type: Transform pos: 0.5,-25.5 - parent: 818 - - uid: 269 + parent: 2 + - uid: 1277 components: - type: Transform pos: -3.5,-24.5 - parent: 818 - - uid: 275 + parent: 2 + - uid: 1278 components: - type: Transform pos: -3.5,-25.5 - parent: 818 - - uid: 292 + parent: 2 + - uid: 1279 components: - type: Transform pos: -5.5,-1.5 - parent: 818 - - uid: 326 + parent: 2 + - uid: 1280 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,13.5 - parent: 818 - - uid: 327 + parent: 2 + - uid: 1281 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 - parent: 818 - - uid: 328 + parent: 2 + - uid: 1282 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,7.5 - parent: 818 - - uid: 329 + parent: 2 + - uid: 1283 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,9.5 - parent: 818 - - uid: 356 + parent: 2 + - uid: 1284 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,13.5 - parent: 818 - - uid: 357 + parent: 2 + - uid: 1285 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 - parent: 818 - - uid: 364 + parent: 2 + - uid: 1286 components: - type: Transform pos: -3.5,-23.5 - parent: 818 - - uid: 366 + parent: 2 + - uid: 1287 components: - type: Transform pos: -9.5,-6.5 - parent: 818 - - uid: 367 + parent: 2 + - uid: 1288 components: - type: Transform pos: -4.5,-11.5 - parent: 818 - - uid: 368 + parent: 2 + - uid: 1289 components: - type: Transform pos: -6.5,-13.5 - parent: 818 - - uid: 369 + parent: 2 + - uid: 1290 components: - type: Transform pos: -7.5,-23.5 - parent: 818 - - uid: 374 + parent: 2 + - uid: 1291 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,11.5 - parent: 818 - - uid: 377 + parent: 2 + - uid: 1292 components: - type: Transform pos: -3.5,-26.5 - parent: 818 - - uid: 378 + parent: 2 + - uid: 1293 components: - type: Transform pos: -5.5,-23.5 - parent: 818 - - uid: 379 + parent: 2 + - uid: 1294 components: - type: Transform pos: -1.5,-23.5 - parent: 818 - - uid: 380 + parent: 2 + - uid: 1295 components: - type: Transform pos: 2.5,-12.5 - parent: 818 - - uid: 381 + parent: 2 + - uid: 1296 components: - type: Transform pos: 4.5,-19.5 - parent: 818 - - uid: 382 + parent: 2 + - uid: 1297 components: - type: Transform pos: 2.5,-23.5 - parent: 818 - - uid: 383 + parent: 2 + - uid: 1298 components: - type: Transform pos: 4.5,-20.5 - parent: 818 - - uid: 384 + parent: 2 + - uid: 1299 components: - type: Transform pos: 4.5,-21.5 - parent: 818 - - uid: 388 + parent: 2 + - uid: 1300 components: - type: Transform pos: -9.5,-9.5 - parent: 818 - - uid: 400 + parent: 2 + - uid: 1301 components: - type: Transform pos: -9.5,1.5 - parent: 818 - - uid: 402 + parent: 2 + - uid: 1302 components: - type: Transform pos: -9.5,-1.5 - parent: 818 - - uid: 403 + parent: 2 + - uid: 1303 components: - type: Transform pos: -4.5,-8.5 - parent: 818 - - uid: 404 + parent: 2 + - uid: 1304 components: - type: Transform pos: -9.5,-5.5 - parent: 818 - - uid: 405 + parent: 2 + - uid: 1305 components: - type: Transform pos: -7.5,-8.5 - parent: 818 - - uid: 406 + parent: 2 + - uid: 1306 components: - type: Transform pos: -6.5,-8.5 - parent: 818 - - uid: 407 + parent: 2 + - uid: 1307 components: - type: Transform pos: -4.5,-12.5 - parent: 818 - - uid: 408 + parent: 2 + - uid: 1308 components: - type: Transform pos: -4.5,-9.5 - parent: 818 - - uid: 409 + parent: 2 + - uid: 1309 components: - type: Transform pos: -7.5,-12.5 - parent: 818 - - uid: 410 + parent: 2 + - uid: 1310 components: - type: Transform pos: -7.5,-19.5 - parent: 818 - - uid: 411 + parent: 2 + - uid: 1311 components: - type: Transform pos: -7.5,-18.5 - parent: 818 - - uid: 412 + parent: 2 + - uid: 1312 components: - type: Transform pos: -7.5,-17.5 - parent: 818 - - uid: 413 + parent: 2 + - uid: 1313 components: - type: Transform pos: -2.5,-26.5 - parent: 818 - - uid: 414 + parent: 2 + - uid: 1314 components: - type: Transform pos: -5.5,-26.5 - parent: 818 - - uid: 415 + parent: 2 + - uid: 1315 components: - type: Transform pos: -5.5,-24.5 - parent: 818 - - uid: 416 + parent: 2 + - uid: 1316 components: - type: Transform pos: -1.5,-24.5 - parent: 818 - - uid: 417 + parent: 2 + - uid: 1317 components: - type: Transform pos: -6.5,-23.5 - parent: 818 - - uid: 421 + parent: 2 + - uid: 1318 components: - type: Transform pos: -5.5,-12.5 - parent: 818 - - uid: 427 + parent: 2 + - uid: 1319 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,14.5 - parent: 818 - - uid: 428 + parent: 2 + - uid: 1320 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,10.5 - parent: 818 - - uid: 437 + parent: 2 + - uid: 1321 components: - type: Transform pos: -7.5,-14.5 - parent: 818 - - uid: 438 + parent: 2 + - uid: 1322 components: - type: Transform pos: -9.5,-10.5 - parent: 818 - - uid: 439 + parent: 2 + - uid: 1323 components: - type: Transform pos: -6.5,-18.5 - parent: 818 - - uid: 440 + parent: 2 + - uid: 1324 components: - type: Transform pos: -7.5,-20.5 - parent: 818 - - uid: 442 + parent: 2 + - uid: 1325 components: - type: Transform pos: -7.5,-13.5 - parent: 818 - - uid: 450 + parent: 2 + - uid: 1326 components: - type: Transform pos: -4.5,-26.5 - parent: 818 - - uid: 451 + parent: 2 + - uid: 1327 components: - type: Transform pos: -0.5,-26.5 - parent: 818 - - uid: 452 + parent: 2 + - uid: 1328 components: - type: Transform pos: 4.5,-18.5 - parent: 818 - - uid: 453 + parent: 2 + - uid: 1329 components: - type: Transform pos: -1.5,-26.5 - parent: 818 - - uid: 455 + parent: 2 + - uid: 1330 components: - type: Transform pos: 3.5,-12.5 - parent: 818 - - uid: 460 + parent: 2 + - uid: 1331 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,2.5 - parent: 818 - - uid: 523 + parent: 2 + - uid: 1332 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-0.5 - parent: 818 - - uid: 532 + parent: 2 + - uid: 1333 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,6.5 - parent: 818 - - uid: 533 + parent: 2 + - uid: 1334 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 - parent: 818 - - uid: 534 + parent: 2 + - uid: 1335 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 - parent: 818 - - uid: 535 + parent: 2 + - uid: 1336 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 818 - - uid: 542 + parent: 2 + - uid: 1337 components: - type: Transform pos: 0.5,-8.5 - parent: 818 - - uid: 543 + parent: 2 + - uid: 1338 components: - type: Transform pos: -0.5,-8.5 - parent: 818 - - uid: 544 + parent: 2 + - uid: 1339 components: - type: Transform pos: 1.5,-8.5 - parent: 818 - - uid: 545 + parent: 2 + - uid: 1340 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,2.5 - parent: 818 - - uid: 551 + parent: 2 + - uid: 1341 components: - type: Transform pos: 1.5,-12.5 - parent: 818 - - uid: 552 + parent: 2 + - uid: 1342 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,8.5 - parent: 818 - - uid: 553 + parent: 2 + - uid: 1343 components: - type: Transform pos: -3.5,-12.5 - parent: 818 - - uid: 557 + parent: 2 + - uid: 1344 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,7.5 - parent: 818 - - uid: 558 + parent: 2 + - uid: 1345 components: - type: Transform pos: -8.5,-14.5 - parent: 818 - - uid: 562 + parent: 2 + - uid: 1346 components: - type: Transform pos: -1.5,-8.5 - parent: 818 - - uid: 563 + parent: 2 + - uid: 1347 components: - type: Transform pos: -1.5,-25.5 - parent: 818 - - uid: 566 + parent: 2 + - uid: 1348 components: - type: Transform pos: -9.5,-14.5 - parent: 818 - - uid: 575 + parent: 2 + - uid: 1349 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,15.5 - parent: 818 - - uid: 576 + parent: 2 + - uid: 1350 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,14.5 - parent: 818 - - uid: 577 + parent: 2 + - uid: 1351 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,17.5 - parent: 818 - - uid: 578 + parent: 2 + - uid: 1352 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,7.5 - parent: 818 - - uid: 579 + parent: 2 + - uid: 1353 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 - parent: 818 - - uid: 585 + parent: 2 + - uid: 1354 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,14.5 - parent: 818 - - uid: 586 + parent: 2 + - uid: 1355 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,6.5 - parent: 818 - - uid: 589 + parent: 2 + - uid: 1356 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,11.5 - parent: 818 - - uid: 590 + parent: 2 + - uid: 1357 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,14.5 - parent: 818 - - uid: 593 + parent: 2 + - uid: 1358 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,8.5 - parent: 818 - - uid: 594 + parent: 2 + - uid: 1359 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 - parent: 818 - - uid: 663 + parent: 2 + - uid: 1360 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,3.5 - parent: 818 - - uid: 664 + parent: 2 + - uid: 1361 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,5.5 - parent: 818 - - uid: 666 + parent: 2 + - uid: 1362 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,6.5 - parent: 818 - - uid: 669 + parent: 2 + - uid: 1363 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 - parent: 818 - - uid: 672 + parent: 2 + - uid: 1364 components: - type: Transform pos: 3.5,-13.5 - parent: 818 - - uid: 674 + parent: 2 + - uid: 1365 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,1.5 - parent: 818 - - uid: 677 + parent: 2 + - uid: 1366 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,2.5 - parent: 818 - - uid: 678 + parent: 2 + - uid: 1367 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 - parent: 818 - - uid: 683 + parent: 2 + - uid: 1368 components: - type: Transform pos: 0.5,-12.5 - parent: 818 - - uid: 684 + parent: 2 + - uid: 1369 components: - type: Transform pos: -2.5,-12.5 - parent: 818 - - uid: 685 + parent: 2 + - uid: 1370 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,11.5 - parent: 818 - - uid: 686 + parent: 2 + - uid: 1371 components: - type: Transform pos: -0.5,-12.5 - parent: 818 - - uid: 687 + parent: 2 + - uid: 1372 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,11.5 - parent: 818 - - uid: 688 + parent: 2 + - uid: 1373 components: - type: Transform pos: 2.5,-24.5 - parent: 818 - - uid: 689 + parent: 2 + - uid: 1374 components: - type: Transform pos: -7.5,-21.5 - parent: 818 - - uid: 711 + parent: 2 + - uid: 1375 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 - parent: 818 - - uid: 775 + parent: 2 + - uid: 1376 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,8.5 - parent: 818 - - uid: 846 + parent: 2 + - uid: 1377 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,2.5 - parent: 818 - - uid: 854 + parent: 2 + - uid: 1378 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,10.5 - parent: 818 - - uid: 855 + parent: 2 + - uid: 1379 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,12.5 - parent: 818 - - uid: 870 + parent: 2 + - uid: 1380 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,10.5 - parent: 818 - - uid: 871 + parent: 2 + - uid: 1381 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,8.5 - parent: 818 - - uid: 873 + parent: 2 + - uid: 1382 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,2.5 - parent: 818 - - uid: 874 + parent: 2 + - uid: 1383 components: - type: Transform pos: -9.5,5.5 - parent: 818 - - uid: 876 + parent: 2 + - uid: 1384 components: - type: Transform pos: 2.5,-8.5 - parent: 818 - - uid: 879 + parent: 2 + - uid: 1385 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,2.5 - parent: 818 - - uid: 885 + parent: 2 + - uid: 1386 components: - type: Transform pos: -9.5,3.5 - parent: 818 - - uid: 886 + parent: 2 + - uid: 1387 components: - type: Transform pos: -9.5,4.5 - parent: 818 - - uid: 887 + parent: 2 + - uid: 1388 components: - type: Transform pos: 3.5,-8.5 - parent: 818 - - uid: 894 + parent: 2 + - uid: 1389 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 818 - - uid: 897 + parent: 2 + - uid: 1390 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,12.5 - parent: 818 - - uid: 898 + parent: 2 + - uid: 1391 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,2.5 - parent: 818 - - uid: 904 + parent: 2 + - uid: 1392 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,12.5 - parent: 818 - - uid: 905 + parent: 2 + - uid: 1393 components: - type: Transform pos: -9.5,6.5 - parent: 818 - - uid: 910 + parent: 2 + - uid: 1394 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,10.5 - parent: 818 - - uid: 911 + parent: 2 + - uid: 1395 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,2.5 - parent: 818 - - uid: 1623 + parent: 2 + - uid: 1396 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,17.5 - parent: 818 - - uid: 1658 + parent: 2 + - uid: 1397 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,17.5 - parent: 818 - - uid: 1659 + parent: 2 + - uid: 1398 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,17.5 - parent: 818 - - uid: 1677 + parent: 2 + - uid: 1399 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,17.5 - parent: 818 - - uid: 1679 + parent: 2 + - uid: 1400 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,16.5 - parent: 818 - - uid: 1684 + parent: 2 + - uid: 1401 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,17.5 - parent: 818 - - uid: 1685 + parent: 2 + - uid: 1402 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,15.5 - parent: 818 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 - proto: WallRiveted entities: - - uid: 45 + - uid: 1403 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,2.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 53 + - uid: 1404 components: - type: Transform pos: 14.5,1.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 65 + - uid: 1405 components: - type: Transform pos: 14.5,6.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 66 + - uid: 1406 components: - type: Transform pos: 14.5,5.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 68 + - uid: 1407 components: - type: Transform pos: 14.5,0.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 69 + - uid: 1408 components: - type: Transform pos: 16.5,-23.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 71 + - uid: 1409 components: - type: Transform pos: 14.5,-0.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 72 + - uid: 1410 components: - type: Transform pos: 14.5,4.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 73 + - uid: 1411 components: - type: Transform pos: 14.5,3.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 74 + - uid: 1412 components: - type: Transform pos: 15.5,3.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 89 + - uid: 1413 components: - type: Transform pos: 14.5,-2.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 90 + - uid: 1414 components: - type: Transform pos: 15.5,-2.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 91 + - uid: 1415 components: - type: Transform pos: 14.5,-15.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 92 + - uid: 1416 components: - type: Transform pos: 14.5,-6.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 95 + - uid: 1417 components: - type: Transform pos: 14.5,-7.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 96 + - uid: 1418 components: - type: Transform pos: 15.5,-7.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 168 + - uid: 1419 components: - type: Transform pos: 14.5,-13.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 182 + - uid: 1420 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 183 + - uid: 1421 components: - type: Transform pos: 16.5,-9.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 187 + - uid: 1422 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,6.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 188 + - uid: 1423 components: - type: Transform pos: 14.5,-9.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 189 + - uid: 1424 components: - type: Transform pos: 15.5,-9.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 190 + - uid: 1425 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-9.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 191 + - uid: 1426 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-11.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 194 + - uid: 1427 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-13.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 195 + - uid: 1428 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-14.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 196 + - uid: 1429 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-12.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 197 + - uid: 1430 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-15.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 198 + - uid: 1431 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-15.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 200 + - uid: 1432 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-17.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 204 + - uid: 1433 components: - type: Transform pos: 10.5,-12.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 205 + - uid: 1434 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-12.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 210 + - uid: 1435 components: - type: Transform pos: 9.5,-23.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 223 + - uid: 1436 components: - type: Transform pos: 12.5,-26.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 229 + - uid: 1437 components: - type: Transform pos: 13.5,-23.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 230 + - uid: 1438 components: - type: Transform pos: 12.5,-12.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 231 + - uid: 1439 components: - type: Transform pos: 13.5,-13.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 233 + - uid: 1440 components: - type: Transform pos: 13.5,-12.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 236 + - uid: 1441 components: - type: Transform pos: 14.5,-12.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 242 + - uid: 1442 components: - type: Transform pos: 10.5,-30.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 258 + - uid: 1443 components: - type: Transform pos: 13.5,-21.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 259 + - uid: 1444 components: - type: Transform pos: 15.5,-15.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 261 + - uid: 1445 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-20.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 270 + - uid: 1446 components: - type: Transform pos: 14.5,-3.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 271 + - uid: 1447 components: - type: Transform pos: 13.5,-15.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 272 + - uid: 1448 components: - type: Transform pos: 9.5,-19.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 273 + - uid: 1449 components: - type: Transform pos: 8.5,-18.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 274 + - uid: 1450 components: - type: Transform pos: 8.5,-19.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 290 + - uid: 1451 components: - type: Transform pos: 16.5,-21.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 300 + - uid: 1452 components: - type: Transform pos: 10.5,-26.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 301 + - uid: 1453 components: - type: Transform pos: 13.5,-26.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 370 + - uid: 1454 components: - type: Transform pos: 8.5,-23.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 371 + - uid: 1455 components: - type: Transform pos: 14.5,-10.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 385 + - uid: 1456 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-16.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 390 + - uid: 1457 components: - type: Transform pos: 9.5,-26.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 391 + - uid: 1458 components: - type: Transform pos: 15.5,-13.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 393 + - uid: 1459 components: - type: Transform pos: 14.5,-23.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 419 + - uid: 1460 components: - type: Transform pos: 14.5,-11.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 420 + - uid: 1461 components: - type: Transform pos: 15.5,1.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 424 + - uid: 1462 components: - type: Transform pos: 16.5,-2.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 425 + - uid: 1463 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-16.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 426 + - uid: 1464 components: - type: Transform pos: 16.5,-0.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 446 + - uid: 1465 components: - type: Transform pos: 14.5,-21.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 454 + - uid: 1466 components: - type: Transform pos: 12.5,-30.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 458 + - uid: 1467 components: - type: Transform pos: 16.5,-13.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 464 + - uid: 1468 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-24.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 531 + - uid: 1469 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,1.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 546 + - uid: 1470 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 555 + - uid: 1471 components: - type: Transform pos: 15.5,-0.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 567 + - uid: 1472 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-13.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 571 + - uid: 1473 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 574 + - uid: 1474 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,6.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 580 + - uid: 1475 components: - type: Transform pos: 16.5,-15.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 618 + - uid: 1476 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-24.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 637 + - uid: 1477 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-25.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 667 + - uid: 1478 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,0.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 675 + - uid: 1479 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 676 + - uid: 1480 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,5.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 679 + - uid: 1481 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-4.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 681 + - uid: 1482 components: - type: Transform pos: -0.5,-0.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 734 + - uid: 1483 components: - type: Transform pos: 15.5,-23.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 751 + - uid: 1484 components: - type: Transform pos: 16.5,-7.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 752 + - uid: 1485 components: - type: Transform pos: 16.5,1.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 753 + - uid: 1486 components: - type: Transform pos: 16.5,3.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 767 + - uid: 1487 components: - type: Transform pos: 15.5,-21.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 804 + - uid: 1488 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-25.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 878 + - uid: 1489 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-7.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 882 + - uid: 1490 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 884 + - uid: 1491 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-1.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 901 + - uid: 1492 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-8.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 902 + - uid: 1493 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-6.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 1352 + - uid: 1494 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-29.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 1369 + - uid: 1495 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-27.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 1706 + - uid: 1496 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-28.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 1709 + - uid: 1497 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-27.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 1713 + - uid: 1498 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-28.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - - uid: 1714 + - uid: 1499 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-29.5 - parent: 818 + parent: 2 missingComponents: - Damageable - Destructible - proto: WardrobeAtmospherics entities: - - uid: 956 + - uid: 1500 components: - type: Transform pos: -6.5,-9.5 - parent: 818 + parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 308 + - uid: 1501 components: - type: Transform pos: 2.5,-18.5 - parent: 818 + parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 1182 + - uid: 1502 components: - type: Transform pos: -5.5,-18.5 - parent: 818 + parent: 2 - proto: WarningAir entities: - - uid: 276 + - uid: 1503 components: - type: Transform pos: -7.5,-12.5 - parent: 818 + parent: 2 +- proto: WarpPoint + entities: + - uid: 1569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - type: WarpPoint + location: Терминал - proto: WaterCooler entities: - - uid: 1624 + - uid: 1504 components: - type: Transform pos: -6.5,-19.5 - parent: 818 - - uid: 1627 + parent: 2 + - uid: 1505 components: - type: Transform pos: 3.5,-19.5 - parent: 818 + parent: 2 - proto: Windoor entities: - - uid: 739 + - uid: 1506 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 - parent: 818 - - uid: 741 + parent: 2 + - uid: 1507 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-13.5 - parent: 818 - - uid: 1390 + parent: 2 + - uid: 1508 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-15.5 - parent: 818 - - uid: 1391 + parent: 2 + - uid: 1509 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-15.5 - parent: 818 + parent: 2 - proto: WindoorSecure entities: - - uid: 1699 + - uid: 1510 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,15.5 - parent: 818 + parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 735 + - uid: 1511 components: - type: Transform pos: 6.5,-13.5 - parent: 818 - - uid: 740 + parent: 2 + - uid: 1512 components: - type: Transform pos: 7.5,-13.5 - parent: 818 + parent: 2 - proto: Window entities: - - uid: 55 + - uid: 1513 components: - type: Transform pos: 12.5,6.5 - parent: 818 - - uid: 63 + parent: 2 + - uid: 1514 components: - type: Transform pos: 12.5,10.5 - parent: 818 - - uid: 77 + parent: 2 + - uid: 1515 components: - type: Transform pos: 7.5,6.5 - parent: 818 - - uid: 79 + parent: 2 + - uid: 1516 components: - type: Transform pos: 11.5,10.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 82 + - uid: 1517 components: - type: Transform pos: 6.5,6.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 84 + - uid: 1518 components: - type: Transform pos: 11.5,6.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 132 + - uid: 1519 components: - type: Transform pos: 7.5,10.5 - parent: 818 - - uid: 278 + parent: 2 + - uid: 1520 components: - type: Transform pos: 6.5,10.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 2 offset: 0.5,0 - - uid: 279 + - uid: 1521 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 2 - - uid: 447 + - uid: 1522 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-1.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 2 - - uid: 510 + - uid: 1523 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 - parent: 818 - - uid: 838 + parent: 2 + - uid: 1524 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-6.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 3 - - uid: 862 + - uid: 1525 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-5.5 - parent: 818 - - uid: 868 + parent: 2 + - uid: 1526 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 - parent: 818 - - uid: 869 + parent: 2 + - uid: 1527 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-7.5 - parent: 818 - - uid: 875 + parent: 2 + - uid: 1528 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 - parent: 818 + parent: 2 - type: PointLight energy: 3 color: '#AF60FCFF' radius: 3 - proto: WindowDirectional entities: - - uid: 422 + - uid: 1529 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 - parent: 818 - - uid: 633 + parent: 2 + - uid: 1530 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 818 - - uid: 785 + parent: 2 + - uid: 1531 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-13.5 - parent: 818 - - uid: 1340 + parent: 2 + - uid: 1532 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-16.5 - parent: 818 - - uid: 1343 + parent: 2 + - uid: 1533 components: - type: Transform pos: -5.5,-17.5 - parent: 818 - - uid: 1370 + parent: 2 + - uid: 1534 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-14.5 - parent: 818 - - uid: 1372 + parent: 2 + - uid: 1535 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-14.5 - parent: 818 - - uid: 1375 + parent: 2 + - uid: 1536 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-13.5 - parent: 818 - - uid: 1376 + parent: 2 + - uid: 1537 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 - parent: 818 - - uid: 1377 + parent: 2 + - uid: 1538 components: - type: Transform pos: -2.5,-17.5 - parent: 818 - - uid: 1378 + parent: 2 + - uid: 1539 components: - type: Transform pos: -4.5,-17.5 - parent: 818 - - uid: 1379 + parent: 2 + - uid: 1540 components: - type: Transform pos: -3.5,-17.5 - parent: 818 - - uid: 1380 + parent: 2 + - uid: 1541 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-17.5 - parent: 818 - - uid: 1383 + parent: 2 + - uid: 1542 components: - type: Transform pos: -6.5,-17.5 - parent: 818 - - uid: 1385 + parent: 2 + - uid: 1543 components: - type: Transform pos: 0.5,-17.5 - parent: 818 - - uid: 1386 + parent: 2 + - uid: 1544 components: - type: Transform pos: 1.5,-17.5 - parent: 818 - - uid: 1387 + parent: 2 + - uid: 1545 components: - type: Transform pos: 2.5,-17.5 - parent: 818 - - uid: 1388 + parent: 2 + - uid: 1546 components: - type: Transform pos: 3.5,-17.5 - parent: 818 - - uid: 1447 + parent: 2 + - uid: 1547 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-17.5 - parent: 818 - - uid: 1448 + parent: 2 + - uid: 1548 components: - type: Transform pos: -0.5,-17.5 - parent: 818 - - uid: 1742 + parent: 2 + - uid: 1549 components: - type: MetaData name: зеркало - type: Transform rot: -1.5707963267948966 rad pos: -0.5,11.5 - parent: 818 - - uid: 1743 + parent: 2 + - uid: 1550 components: - type: MetaData name: зеркало - type: Transform rot: -1.5707963267948966 rad pos: -0.5,9.5 - parent: 818 + parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 35 + - uid: 1551 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-13.5 - parent: 818 - - uid: 745 + parent: 2 + - uid: 1552 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 818 + parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 1317 + - uid: 1553 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,15.5 - parent: 818 - - uid: 1321 + parent: 2 + - uid: 1554 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,15.5 - parent: 818 - - uid: 1687 + parent: 2 + - uid: 1555 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,15.5 - parent: 818 - - uid: 1688 + parent: 2 + - uid: 1556 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,15.5 - parent: 818 + parent: 2 +- proto: ZiptiesBroken + entities: + - uid: 1564 + components: + - type: Transform + pos: -8.450703,-15.806053 + parent: 2 ... diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml index 2e7f60c91df..2063451a0ee 100644 --- a/Resources/Maps/Nonstations/nukieplanet.yml +++ b/Resources/Maps/Nonstations/nukieplanet.yml @@ -13721,13 +13721,6 @@ entities: - type: Transform pos: 3.5882664,-8.344303 parent: 104 -- proto: VariantCubeBox - entities: - - uid: 1826 - components: - - type: Transform - pos: 14.485744,-16.427467 - parent: 104 - proto: VendingMachineBooze entities: - uid: 1380 diff --git a/Resources/Maps/Shuttles/emergency_accordia.yml b/Resources/Maps/Shuttles/emergency_accordia.yml index 8b5dac4d927..65959a909d7 100644 --- a/Resources/Maps/Shuttles/emergency_accordia.yml +++ b/Resources/Maps/Shuttles/emergency_accordia.yml @@ -27,11 +27,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: PAAAAAAAgQAAAAAAgQAAAAAAcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PAAAAAAAgQAAAAAAPAAAAAAAcwAAAAADcwAAAAAAcwAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: PAAAAAAAgQAAAAAAgQAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: PAAAAAAAgQAAAAAAPAAAAAAAfQAAAAABfQAAAAABfQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAgQAAAAAAPAAAAAAAIAAAAAAAIAAAAAACIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAgQAAAAAAIAAAAAABIAAAAAABIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACgQAAAAAAIAAAAAABIAAAAAACIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAgQAAAAAAcwAAAAABcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABcwAAAAACcwAAAAABcwAAAAADcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAcwAAAAADcwAAAAABcwAAAAABcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABgQAAAAAAcwAAAAABcwAAAAAAcwAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 @@ -39,11 +39,11 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAADPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAACIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAADYAAAAAABYAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAYAAAAAACYAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAACIAAAAAAAIAAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACIAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAgQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAPAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAABYAAAAAAAYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAABIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAADYAAAAAACYAAAAAABYAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAADYAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAABYAAAAAACIAAAAAAB version: 6 -1,-2: ind: -1,-2 @@ -81,403 +81,403 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 40: 5,12 - 41: 4,13 - 43: 3,15 + 3: 5,12 + 4: 4,13 + 5: 3,15 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 116: 5,0 + 44: 5,0 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 119: 5,-6 + 47: 5,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 115: 3,0 + 43: 3,0 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 120: 3,-6 + 48: 3,-6 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 117: 5,-4 + 45: 5,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 118: 5,-10 + 46: 5,-10 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 206: -3,-25 + 111: -3,-25 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 46: -2,14 - 47: -1,13 - 48: 0,12 - 89: 3,9 + 6: -2,14 + 7: -1,13 + 8: 0,12 + 28: 3,9 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 114: 3,-4 + 42: 3,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 132: 3,-10 + 60: 3,-10 - node: color: '#334E6DC8' id: BrickTileWhiteEndS decals: - 82: 1,9 + 25: 1,9 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 70: 2,15 - 72: 4,12 - 97: 3,13 - 148: 1,7 + 21: 2,15 + 22: 4,12 + 30: 3,13 + 74: 1,7 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 137: 1,-4 + 65: 1,-4 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNe decals: - 152: -3,7 - 177: 1,-19 + 77: -3,7 + 92: 1,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 145: 1,-9 + 71: 1,-9 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 183: 1,-22 + 98: 1,-22 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 57: -2,15 - 149: 3,7 + 14: -2,15 + 75: 3,7 - node: color: '#D4D4D496' id: BrickTileWhiteInnerNw decals: - 151: -1,7 - 243: -5,-3 + 76: -1,7 + 143: -5,-3 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 184: -1,-23 + 99: -1,-23 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 104: 1,11 + 34: 1,11 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 138: 1,-1 + 66: 1,-1 - node: color: '#D4D4D496' id: BrickTileWhiteInnerSe decals: - 175: 1,-17 - 176: 1,-23 + 90: 1,-17 + 91: 1,-23 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 146: 1,-6 + 72: 1,-6 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 181: 1,-20 + 96: 1,-20 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 58: -2,15 - 79: 0,13 - 92: -1,14 - 102: 1,12 - 103: 3,11 + 15: -2,15 + 24: 0,13 + 29: -1,14 + 32: 1,12 + 33: 3,11 - node: color: '#D4D4D496' id: BrickTileWhiteInnerSw decals: - 242: -5,-7 + 142: -5,-7 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 182: -1,-20 + 97: -1,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 36: 5,10 - 38: 5,11 - 53: 2,16 - 54: 3,14 - 83: 1,10 + 1: 5,10 + 2: 5,11 + 11: 2,16 + 12: 3,14 + 26: 1,10 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 110: 5,-3 - 111: 5,-2 - 112: 5,-1 - 135: 1,-3 - 136: 1,-2 + 38: 5,-3 + 39: 5,-2 + 40: 5,-1 + 63: 1,-3 + 64: 1,-2 - node: color: '#D4D4D496' id: BrickTileWhiteLineE decals: - 173: 1,-24 - 174: 1,-18 + 88: 1,-24 + 89: 1,-18 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 127: 5,-9 - 128: 5,-8 - 129: 5,-7 - 133: 1,-8 - 134: 1,-7 + 55: 5,-9 + 56: 5,-8 + 57: 5,-7 + 61: 1,-8 + 62: 1,-7 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 180: 1,-21 - 190: -3,-17 - 191: -3,-18 - 192: -3,-19 - 193: -3,-20 - 197: -3,-23 - 205: -3,-24 + 95: 1,-21 + 104: -3,-17 + 105: -3,-18 + 106: -3,-19 + 107: -3,-20 + 109: -3,-23 + 110: -3,-24 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 147: 2,7 + 73: 2,7 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 113: 4,0 + 41: 4,0 - node: color: '#D4D4D496' id: BrickTileWhiteLineN decals: - 153: -2,7 + 78: -2,7 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 131: 4,-6 + 59: 4,-6 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 35: 4,9 + 0: 4,9 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 106: 4,-4 + 36: 4,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 130: 4,-10 + 58: 4,-10 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 207: -4,-25 + 112: -4,-25 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 50: 1,10 - 52: -2,16 - 86: 3,10 - 100: 1,11 + 9: 1,10 + 10: -2,16 + 27: 3,10 + 31: 1,11 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 109: 3,-1 - 141: 3,-3 - 142: 3,-2 + 37: 3,-1 + 67: 3,-3 + 68: 3,-2 - node: color: '#D4D4D428' id: BrickTileWhiteLineW decals: - 164: -1,-1 - 165: -1,-2 - 166: -1,-3 - 167: -1,-4 - 168: -1,-5 - 169: -1,-6 - 170: -1,-7 - 171: -1,-8 - 172: -1,-9 + 79: -1,-1 + 80: -1,-2 + 81: -1,-3 + 82: -1,-4 + 83: -1,-5 + 84: -1,-6 + 85: -1,-7 + 86: -1,-8 + 87: -1,-9 - node: color: '#D4D4D496' id: BrickTileWhiteLineW decals: - 236: -5,-8 - 237: -5,-10 - 238: -5,-2 - 239: -5,-1 - 240: -5,0 - 241: -5,-9 + 136: -5,-8 + 137: -5,-10 + 138: -5,-2 + 139: -5,-1 + 140: -5,0 + 141: -5,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 124: 3,-7 - 125: 3,-8 - 126: 3,-9 + 52: 3,-7 + 53: 3,-8 + 54: 3,-9 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 178: -1,-22 - 179: -1,-21 - 186: -5,-17 - 187: -5,-18 + 93: -1,-22 + 94: -1,-21 + 100: -5,-17 + 101: -5,-18 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 55: -3,15 - 62: 2,17 - 63: 1,17 - 64: 0,17 - 65: -1,17 - 66: -2,17 - 74: 2,10 - 245: 2,8 + 13: -3,15 + 16: 2,17 + 17: 1,17 + 18: 0,17 + 19: -1,17 + 20: -2,17 + 23: 2,10 + 144: 2,8 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 143: 2,-3 - 144: 2,-2 + 69: 2,-3 + 70: 2,-2 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 121: 4,-5 - 122: 2,-7 - 123: 2,-8 + 49: 4,-5 + 50: 2,-7 + 51: 2,-8 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 212: -5,-25 - 213: -5,-24 - 217: -2,-22 - 218: -2,-21 + 113: -5,-25 + 114: -5,-24 + 118: -2,-22 + 119: -2,-21 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 188: -5,-17 - 189: -4,-17 - 194: -3,-17 + 102: -5,-17 + 103: -4,-17 + 108: -3,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 105: 2,11 + 35: 2,11 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 214: -4,-25 - 215: -4,-24 + 115: -4,-25 + 116: -4,-24 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 219: -3,-22 - 220: -3,-21 + 120: -3,-22 + 121: -3,-21 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw decals: - 216: -4,-23 + 117: -4,-23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 221: 5,-24 - 222: 5,-16 + 122: 5,-24 + 123: 5,-16 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 223: 3,-16 - 224: 3,-24 + 124: 3,-16 + 125: 3,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 227: 5,-25 - 228: 5,-18 + 128: 5,-25 + 129: 5,-18 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 225: 3,-25 - 226: 3,-18 + 126: 3,-25 + 127: 3,-18 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 229: 5,-17 + 130: 5,-17 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 233: 4,-16 - 234: 4,-24 + 134: 4,-16 + 135: 4,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 231: 4,-25 - 232: 4,-18 + 132: 4,-25 + 133: 4,-18 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 230: 3,-17 + 131: 3,-17 - type: GridAtmosphere version: 2 data: @@ -634,6 +634,145 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 955 + - 573 + - 521 + - 967 + - 966 + - 965 + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 1 + - type: DeviceList + devices: + - 952 + - 538 + - 533 + - 970 + - 971 + - 968 + - 969 + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + - type: DeviceList + devices: + - 953 + - 572 + - 575 + - 519 + - 520 + - 965 + - 966 + - 963 + - 964 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - type: DeviceList + devices: + - 522 + - 574 + - 954 + - 967 + - 963 + - 964 + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 949 + - 537 + - 460 + - 971 + - 970 + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - type: DeviceList + devices: + - 957 + - 483 + - 487 + - 488 + - 476 + - 961 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + - type: DeviceList + devices: + - 486 + - 958 + - 475 + - 962 + - uid: 972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 961 + - 962 + - 956 + - 490 + - 452 + - 454 + - 489 + - uid: 973 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 951 + - 463 + - 661 + - 969 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 1 + - type: DeviceList + devices: + - 461 + - 536 + - 948 + - 968 - proto: Airlock entities: - uid: 377 @@ -769,6 +908,98 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 1 +- proto: AirSensor + entities: + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 974 + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 950 + - uid: 951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 973 + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 947 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 + - uid: 956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 + - uid: 957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 960 - proto: AltarNanotrasen entities: - uid: 253 @@ -797,61 +1028,60 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,11.5 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 1 - uid: 270 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-12.5 + pos: 1.5,3.5 parent: 1 - uid: 271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 + rot: -1.5707963267948966 rad + pos: -0.5,3.5 parent: 1 - uid: 272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 parent: 1 - uid: 273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 parent: 1 - uid: 274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 1 - uid: 275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + rot: -1.5707963267948966 rad + pos: -5.5,-9.5 parent: 1 - uid: 276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-9.5 + pos: 0.5,-24.5 parent: 1 - - uid: 389 + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 946 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-24.5 + pos: 1.5,-12.5 parent: 1 - proto: BaseComputer entities: @@ -956,6 +1186,11 @@ entities: - type: InsideEntityStorage - proto: CableApcExtension entities: + - uid: 389 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 - uid: 534 components: - type: Transform @@ -1414,17 +1649,17 @@ entities: - uid: 746 components: - type: Transform - pos: 0.5,7.5 + pos: -2.5,7.5 parent: 1 - uid: 747 components: - type: Transform - pos: 1.5,7.5 + pos: -1.5,6.5 parent: 1 - uid: 748 components: - type: Transform - pos: 2.5,7.5 + pos: 1.5,6.5 parent: 1 - uid: 749 components: @@ -1459,7 +1694,7 @@ entities: - uid: 755 components: - type: Transform - pos: -0.5,7.5 + pos: 4.5,11.5 parent: 1 - uid: 756 components: @@ -1571,11 +1806,6 @@ entities: - type: Transform pos: 5.5,12.5 parent: 1 - - uid: 778 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - uid: 779 components: - type: Transform @@ -1591,6 +1821,136 @@ entities: - type: Transform pos: 3.5,10.5 parent: 1 + - uid: 985 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 - proto: CableHV entities: - uid: 376 @@ -2459,17 +2819,241 @@ entities: parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 886 + - uid: 983 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 +- proto: FireAlarm + entities: + - uid: 778 components: - type: Transform pos: -1.5,0.5 parent: 1 - - uid: 887 + - type: DeviceList + devices: + - 963 + - 964 + - 966 + - 965 + - uid: 975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: DeviceList + devices: + - 969 + - 968 + - 971 + - 970 + - uid: 976 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-9.5 + pos: 3.5,-18.5 parent: 1 + - type: DeviceList + devices: + - 968 + - uid: 977 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 969 + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 + - type: DeviceList + devices: + - 965 + - 966 + - 967 + - uid: 979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: DeviceList + devices: + - 963 + - 964 + - 967 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + - type: DeviceList + devices: + - 961 + - 962 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - type: DeviceList + devices: + - 961 + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - type: DeviceList + devices: + - 962 +- proto: FirelockGlass + entities: + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 + - 972 + - 980 + - 981 + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 + - 960 + - 980 + - 982 + - uid: 963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 947 + - 979 + - 778 + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 947 + - 979 + - 778 + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 145 + - 978 + - 778 + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 + - 145 + - 978 + - 778 + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 + - 947 + - 979 + - 978 + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 974 + - 975 + - 976 + - uid: 969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 973 + - 977 + - 975 + - uid: 970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 950 + - 975 + - uid: 971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 + - 950 + - 975 - proto: FloorDrain entities: - uid: 806 @@ -3688,6 +4272,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#0335FCFF' - uid: 454 @@ -3696,6 +4283,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#0335FCFF' - uid: 460 @@ -3704,6 +4294,9 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 950 - type: AtmosPipeColor color: '#0335FCFF' - uid: 461 @@ -3711,6 +4304,9 @@ entities: - type: Transform pos: 4.5,-16.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 974 - type: AtmosPipeColor color: '#0335FCFF' - uid: 462 @@ -3727,6 +4323,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-23.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 973 - type: AtmosPipeColor color: '#0335FCFF' - uid: 475 @@ -3734,6 +4333,9 @@ entities: - type: Transform pos: -1.5,10.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 960 - type: AtmosPipeColor color: '#0335FCFF' - uid: 476 @@ -3742,6 +4344,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#0335FCFF' - uid: 483 @@ -3750,6 +4355,9 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#0335FCFF' - uid: 519 @@ -3758,6 +4366,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#0335FCFF' - uid: 520 @@ -3766,6 +4377,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#0335FCFF' - uid: 521 @@ -3774,6 +4388,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 - type: AtmosPipeColor color: '#0335FCFF' - uid: 522 @@ -3782,6 +4399,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 947 - type: AtmosPipeColor color: '#0335FCFF' - uid: 533 @@ -3790,6 +4410,9 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -3799,6 +4422,9 @@ entities: - type: Transform pos: -2.5,11.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 960 - type: AtmosPipeColor color: '#FF1212FF' - uid: 487 @@ -3806,6 +4432,9 @@ entities: - type: Transform pos: 0.5,14.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#FF1212FF' - uid: 488 @@ -3814,6 +4443,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 959 - type: AtmosPipeColor color: '#FF1212FF' - uid: 489 @@ -3822,6 +4454,9 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#FF1212FF' - uid: 490 @@ -3830,6 +4465,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 972 - type: AtmosPipeColor color: '#FF1212FF' - uid: 535 @@ -3845,6 +4483,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-15.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 974 - type: AtmosPipeColor color: '#FF1212FF' - uid: 537 @@ -3853,6 +4494,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 950 - type: AtmosPipeColor color: '#FF1212FF' - uid: 538 @@ -3860,6 +4504,9 @@ entities: - type: Transform pos: 1.5,-20.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 269 - type: AtmosPipeColor color: '#FF1212FF' - uid: 572 @@ -3868,6 +4515,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#FF1212FF' - uid: 573 @@ -3876,6 +4526,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 145 - type: AtmosPipeColor color: '#FF1212FF' - uid: 574 @@ -3884,6 +4537,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 947 - type: AtmosPipeColor color: '#FF1212FF' - uid: 575 @@ -3892,6 +4548,9 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 886 - type: AtmosPipeColor color: '#FF1212FF' - uid: 661 @@ -3900,6 +4559,9 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-24.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 973 - type: AtmosPipeColor color: '#FF1212FF' - proto: GeneratorBasic15kW @@ -6172,6 +6834,11 @@ entities: - type: Transform pos: 2.5,-15.5 parent: 1 + - uid: 887 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 - proto: WallShuttleDiagonal entities: - uid: 6 @@ -6263,12 +6930,6 @@ entities: parent: 1 - proto: WallShuttleInterior entities: - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-22.5 - parent: 1 - uid: 202 components: - type: Transform diff --git a/Resources/Maps/Shuttles/emergency_courser.yml b/Resources/Maps/Shuttles/emergency_courser.yml index 135c95e247d..f9ff40b8fa7 100644 --- a/Resources/Maps/Shuttles/emergency_courser.yml +++ b/Resources/Maps/Shuttles/emergency_courser.yml @@ -362,90 +362,86 @@ entities: version: 2 data: tiles: - -2,-1: - 0: 61166 - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 -2,-3: - 0: 60620 + 0: 8192 + 1: 34944 -2,-2: - 0: 61102 - 1: 64 + 1: 52936 + -2,-1: + 1: 52430 -2,-4: - 0: 51328 + 0: 16512 + -2,0: + 1: 52940 -1,-4: - 0: 57343 - 1: 8192 + 1: 65260 -1,-3: - 0: 65535 + 1: 65372 -1,-2: - 0: 49151 - 1: 16384 + 1: 57297 + -1,-1: + 1: 65489 + -1,-5: + 0: 4096 + -1,0: + 1: 8191 0,-4: - 0: 65535 + 1: 63347 0,-3: - 0: 65535 + 1: 65443 0,-2: - 0: 65535 + 1: 49080 + 0,-1: + 1: 65464 + 0,0: + 1: 36863 + 0,-5: + 0: 32768 1,-4: - 0: 12560 + 0: 8208 1,-3: - 0: 29491 + 1: 4368 + 0: 16384 1,-2: - 0: 30551 - 1: 32 + 1: 14129 1,-1: - 0: 30583 - -2,0: - 0: 61166 + 1: 13111 + 1,0: + 1: 14131 -2,1: - 0: 61102 - 1: 64 + 1: 35022 + 0: 8192 -2,2: - 0: 52300 - 1: 128 - -2,3: - 0: 136 - -1,0: - 0: 65535 + 1: 136 + 0: 16384 -1,1: - 0: 49151 - 1: 16384 + 1: 56829 -1,2: - 0: 65535 + 1: 62705 + -2,3: + 0: 128 -1,3: - 0: 61439 - 0,0: - 0: 65535 + 1: 3310 0,1: - 0: 57343 - 1: 8192 + 1: 48123 0,2: - 0: 65535 + 1: 62200 0,3: - 0: 32767 - 1,0: - 0: 30583 + 1: 887 1,1: - 0: 30551 - 1: 32 + 1: 4407 + 0: 16384 1,2: - 0: 13091 - 1: 16 + 1: 17 + 0: 8192 1,3: - 0: 17 - -1,-5: - 0: 61440 - 0,-5: - 0: 61440 + 0: 16 uniqueMixes: - volume: 2500 - temperature: 293.15 + immutable: True moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -459,8 +455,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 19.481253 - - 73.28662 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -485,8 +481,6 @@ entities: - type: Transform pos: 0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: AirlockCommandGlassLocked entities: - uid: 601 @@ -2023,6 +2017,14 @@ entities: - type: Transform pos: 0.5,14.5 parent: 656 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 656 - proto: ExtinguisherCabinetFilled entities: - uid: 517 @@ -2176,8 +2178,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasPassiveVent entities: - uid: 521 @@ -2186,8 +2186,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasPipeBend entities: - uid: 523 @@ -2536,8 +2534,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GasVentPump entities: - uid: 524 @@ -2546,72 +2542,54 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-12.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 550 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-10.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 551 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-10.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 552 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-0.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 553 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 574 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - uid: 589 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 656 - - type: AtmosDevice - joinedGrid: 656 - proto: GeneratorBasic15kW entities: - uid: 66 @@ -3424,7 +3402,7 @@ entities: - type: Transform pos: 1.5,-15.5 parent: 656 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 166 components: diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index e376a1a91ee..7bb91cde061 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -2921,6 +2921,9 @@ entities: - type: DeviceList devices: - 5914 + - 1087 + - 6891 + - 6173 - uid: 1948 components: - type: Transform @@ -2930,6 +2933,7 @@ entities: - type: DeviceList devices: - 6719 + - 7056 - uid: 1949 components: - type: Transform @@ -3031,6 +3035,9 @@ entities: devices: - 6799 - 7235 + - 7798 + - 8673 + - 8508 - uid: 6648 components: - type: Transform @@ -3045,6 +3052,7 @@ entities: - 3817 - 3815 - 7599 + - 929 - uid: 7372 components: - type: Transform @@ -3060,6 +3068,11 @@ entities: - 3771 - 2164 - 2131 + - 4537 + - 8468 + - 2085 + - 819 + - 820 - uid: 7532 components: - type: Transform @@ -3342,6 +3355,15 @@ entities: - type: DeviceList devices: - 8623 + - uid: 8680 + components: + - type: Transform + pos: 1.5,8.5 + parent: 30 + - type: DeviceList + devices: + - 8668 + - 8669 - proto: AirCanister entities: - uid: 5877 @@ -4717,6 +4739,11 @@ entities: rot: 3.141592653589793 rad pos: 22.5,34.5 parent: 30 + - uid: 2442 + components: + - type: Transform + pos: -15.5,4.5 + parent: 30 - uid: 6874 components: - type: Transform @@ -4767,13 +4794,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,30.5 parent: 30 -- proto: AtmosDeviceFanTiny - entities: - - uid: 2442 - components: - - type: Transform - pos: -15.5,4.5 - parent: 30 - proto: AtmosFixBlockerMarker entities: - uid: 4894 @@ -24027,12 +24047,18 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-0.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1947 - uid: 6891 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,0.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1947 - uid: 7205 components: - type: Transform @@ -34907,6 +34933,9 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,5.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1087 @@ -34915,6 +34944,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,5.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1947 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1146 @@ -35236,6 +35268,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4548 @@ -35511,6 +35546,9 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-1.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 6101 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8226 @@ -35536,11 +35574,23 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,1.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 6101 - uid: 8669 components: - type: Transform pos: 2.5,6.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 8680 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -35636,6 +35686,9 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,7.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#990000FF' - uid: 845 @@ -35650,6 +35703,9 @@ entities: - type: Transform pos: 1.5,10.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 6648 - type: AtmosPipeColor color: '#990000FF' - uid: 1099 @@ -35715,6 +35771,9 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,11.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#990000FF' - uid: 2127 @@ -36074,6 +36133,9 @@ entities: - type: Transform pos: -36.5,9.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 1948 - type: AtmosPipeColor color: '#990000FF' - uid: 7235 @@ -36197,6 +36259,9 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,18.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 7372 - type: AtmosPipeColor color: '#990000FF' - uid: 8629 @@ -36213,8 +36278,20 @@ entities: rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 8680 - type: AtmosPipeColor color: '#990000FF' + - uid: 8673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,2.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 6101 - proto: GasVolumePump entities: - uid: 7730 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index ed153964bdb..c7030f6cf5a 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -11876,6 +11876,8 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 7536 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43669 dockedWith: 7332 @@ -13198,6 +13200,8 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - type: Door + changeAirtight: False - uid: 12584 components: - type: Transform @@ -14327,6 +14331,17 @@ entities: rot: 3.141592653589793 rad pos: 46.5,31.5 parent: 60 + - uid: 898 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 60 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 60 - uid: 3189 components: - type: Transform @@ -14339,6 +14354,18 @@ entities: rot: 1.5707963267948966 rad pos: 59.5,14.5 parent: 60 + - uid: 6129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 60 + - uid: 6130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 7536 - uid: 6768 components: - type: Transform @@ -14363,6 +14390,17 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-70.5 parent: 60 + - uid: 9110 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 7536 + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 7536 - uid: 12269 components: - type: Transform @@ -14410,38 +14448,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-70.5 parent: 60 -- proto: AtmosDeviceFanTiny - entities: - - uid: 6129 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 7536 - - uid: 6130 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 7536 - - uid: 9110 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 7536 - - uid: 9214 - components: - - type: Transform - pos: 23.5,-29.5 - parent: 60 - - uid: 13825 - components: - - type: Transform - pos: 25.5,-25.5 - parent: 60 - - uid: 19808 - components: - - type: Transform - pos: 20.5,28.5 - parent: 60 - proto: AtmosFixBlockerMarker entities: - uid: 6252 @@ -74858,18 +74864,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 898 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 899 components: - type: Transform @@ -74894,18 +74888,6 @@ entities: parent: 60 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 902 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -13.5,-22.5 - parent: 60 - - type: AtmosPipeColor - color: '#0335FCFF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 903 components: - type: Transform @@ -122248,6 +122230,21 @@ entities: parent: 60 - proto: SignAi entities: + - uid: 16533 + components: + - type: Transform + pos: -101.5,16.5 + parent: 60 + - uid: 19800 + components: + - type: Transform + pos: -112.5,20.5 + parent: 60 + - uid: 19808 + components: + - type: Transform + pos: -107.5,16.5 + parent: 60 - uid: 21237 components: - type: Transform @@ -122258,6 +122255,18 @@ entities: - type: Transform pos: -60.5,16.5 parent: 60 +- proto: SignAiUpload + entities: + - uid: 21130 + components: + - type: Transform + pos: -110.5,6.5 + parent: 60 + - uid: 23380 + components: + - type: Transform + pos: -112.5,14.5 + parent: 60 - proto: SignalButton entities: - uid: 3803 @@ -123144,11 +123153,12 @@ entities: - type: Transform pos: 2.5,-1.5 parent: 60 -- proto: SignCanisters +- proto: SignCans entities: - - uid: 15171 + - uid: 13825 components: - type: Transform + rot: 3.141592653589793 rad pos: -28.5,37.5 parent: 60 - proto: SignCargo @@ -123205,6 +123215,13 @@ entities: - type: Transform pos: 42.5,-25.5 parent: 60 +- proto: SignCryo + entities: + - uid: 15171 + components: + - type: Transform + pos: -29.5,22.5 + parent: 60 - proto: SignCryogenicsMed entities: - uid: 4111 @@ -123335,11 +123352,11 @@ entities: rot: 1.5707963267948966 rad pos: 42.49971,-21.305145 parent: 60 - - uid: 16533 + - uid: 23381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,22.5 + rot: 3.141592653589793 rad + pos: -32.5,18.5 parent: 60 - proto: SignDirectionalDorms entities: @@ -124078,6 +124095,14 @@ entities: - type: Transform pos: -109.5,20.5 parent: 60 +- proto: SignKitchen + entities: + - uid: 23382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-25.5 + parent: 60 - proto: SignLaserMed entities: - uid: 14624 @@ -124116,6 +124141,12 @@ entities: - type: Transform pos: 3.5,-46.5 parent: 60 + - uid: 23969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,17.5 + parent: 60 - proto: SignMedical entities: - uid: 2632 @@ -124301,6 +124332,14 @@ entities: - type: Transform pos: -19.5,-11.5 parent: 60 +- proto: SignRestroom + entities: + - uid: 23970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 60 - proto: SignRND entities: - uid: 7085 @@ -124559,6 +124598,14 @@ entities: - type: Transform pos: 22.5,6.5 parent: 60 +- proto: SignTheater + entities: + - uid: 24271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 60 - proto: SignToolStorage entities: - uid: 6315 @@ -124566,6 +124613,14 @@ entities: - type: Transform pos: 14.5,10.5 parent: 60 +- proto: SignVault + entities: + - uid: 24268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 60 - proto: SignVirology entities: - uid: 2969 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index ea4dd61dd9d..2ba6b203e5e 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -28,6 +28,7 @@ tilemap: 62: FloorLino 64: FloorMetalDiamond 65: FloorMime + 2: FloorMono 77: FloorReinforced 78: FloorReinforcedHardened 79: FloorRockVault @@ -382,7 +383,7 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAaAAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-6: ind: -1,-6 @@ -390,7 +391,7 @@ entities: version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADTQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAABeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA version: 6 2,-6: ind: 2,-6 @@ -512,17 +513,17 @@ entities: decals: 1116: -24,-18 1117: -24,-16 - 2954: 2,-67 - 2955: 2,-66 - 3031: 66,-52 - 3032: 66,-51 - 3263: -23,-25 - 3264: -25,-25 - 3468: 2,-64 - 3469: 2,-63 - 3470: 2,-62 - 3471: 2,-61 - 3472: 2,-60 + 2941: 2,-67 + 2942: 2,-66 + 3018: 66,-52 + 3019: 66,-51 + 3246: -23,-25 + 3247: -25,-25 + 3451: 2,-64 + 3452: 2,-63 + 3453: 2,-62 + 3454: 2,-61 + 3455: 2,-60 - node: color: '#FFFFFFFF' id: Arrows @@ -532,54 +533,42 @@ entities: 2556: 6,-49 2557: 7,-49 2595: 3,-45 - 2631: -6,-76 - 2696: 4,-76 - 3027: 80,-54 - 3028: 79,-54 - 3029: 74,-54 - 3030: 72,-54 + 2625: -6,-76 + 2690: 4,-76 + 3014: 80,-54 + 3015: 79,-54 + 3016: 74,-54 + 3017: 72,-54 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2620: 9,-75 - 3265: -25,-27 - 3266: -23,-27 - 3473: 8,-64 - 3474: 8,-63 + 2614: 9,-75 + 3248: -25,-27 + 3249: -23,-27 + 3456: 8,-64 + 3457: 8,-63 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 3660: 60,-52 + 3643: 60,-52 - node: color: '#FFFFFFFF' id: ArrowsGreyscale decals: 386: -25,-66 - - node: - color: '#529CFF93' - id: Bot - decals: - 2598: 16,-79 - 2599: 16,-79 - - node: - color: '#DE3A3A96' - id: Bot - decals: - 2596: 13,-79 - 2597: 14,-79 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 2956: 1,-72 - 2957: 9,-68 - 2958: 9,-67 - 2959: 5,-66 + 2943: 1,-72 + 2944: 9,-68 + 2945: 9,-67 + 2946: 5,-66 - node: color: '#FFFFFFFF' id: Bot @@ -656,75 +645,66 @@ entities: 2459: 14,-43 2593: 6,-41 2594: 7,-41 - 2617: 5,-73 - 2618: 6,-73 - 2619: 7,-73 - 2864: -1,-63 - 2865: -1,-64 - 2952: 1,-67 - 2953: 1,-66 - 3021: 65,-52 - 3022: 65,-51 - 3023: 72,-55 - 3024: 74,-55 - 3025: 79,-55 - 3026: 80,-55 - 3034: 74,-44 - 3035: 73,-44 - 3089: 34,-47 - 3090: 34,-46 - 3091: 34,-50 - 3092: 34,-49 - 3093: 37,-50 - 3094: 37,-49 - 3095: 18,-84 - 3096: 14,-85 - 3097: 14,-86 - 3098: 14,-87 - 3146: 34,-44 - 3147: 35,-44 - 3148: 34,-39 - 3230: -35,-19 - 3231: -36,-19 - 3232: -37,-19 - 3233: -38,-19 - 3234: -37,-27 - 3235: -38,-27 - 3236: -39,-27 - 3237: -37,-25 - 3238: -38,-25 - 3239: -39,-25 - 3240: -37,-23 - 3241: -38,-23 - 3242: -39,-23 - 3252: -26,-32 - 3253: -27,-32 - 3254: -27,-34 - 3255: -27,-33 - 3256: -26,-33 - 3257: -26,-34 - 3258: -26,-35 - 3259: -27,-35 - 3460: 3,-55 - 3461: 1,-64 - 3462: 1,-63 - 3463: 1,-62 - 3464: 1,-61 - 3465: 1,-60 - 3466: 9,-64 - 3467: 9,-63 - 3536: -10,31 - 3537: -7,31 - 3564: -10,29 - 3656: 60,-51 - 3657: 59,-51 - 3659: 57,-51 - - node: - color: '#529CFF93' - id: BotGreyscale - decals: - 2600: 16,-79 - 2601: 17,-79 + 2611: 5,-73 + 2612: 6,-73 + 2613: 7,-73 + 2851: -1,-63 + 2852: -1,-64 + 2939: 1,-67 + 2940: 1,-66 + 3008: 65,-52 + 3009: 65,-51 + 3010: 72,-55 + 3011: 74,-55 + 3012: 79,-55 + 3013: 80,-55 + 3021: 74,-44 + 3022: 73,-44 + 3076: 34,-47 + 3077: 34,-46 + 3078: 34,-50 + 3079: 34,-49 + 3080: 37,-50 + 3081: 37,-49 + 3082: 18,-84 + 3129: 34,-44 + 3130: 35,-44 + 3131: 34,-39 + 3213: -35,-19 + 3214: -36,-19 + 3215: -37,-19 + 3216: -38,-19 + 3217: -37,-27 + 3218: -38,-27 + 3219: -39,-27 + 3220: -37,-25 + 3221: -38,-25 + 3222: -39,-25 + 3223: -37,-23 + 3224: -38,-23 + 3225: -39,-23 + 3235: -26,-32 + 3236: -27,-32 + 3237: -27,-34 + 3238: -27,-33 + 3239: -26,-33 + 3240: -26,-34 + 3241: -26,-35 + 3242: -27,-35 + 3443: 3,-55 + 3444: 1,-64 + 3445: 1,-63 + 3446: 1,-62 + 3447: 1,-61 + 3448: 1,-60 + 3449: 9,-64 + 3450: 9,-63 + 3519: -10,31 + 3520: -7,31 + 3547: -10,29 + 3639: 60,-51 + 3640: 59,-51 + 3642: 57,-51 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -738,27 +718,27 @@ entities: 1063: 0,-21 1079: -2,-14 1080: 0,-14 - 3587: -16,36 - 3588: -15,36 - 3589: -14,36 - 3590: -13,36 - 3591: -12,36 + 3570: -16,36 + 3571: -15,36 + 3572: -14,36 + 3573: -13,36 + 3574: -12,36 - node: color: '#FFFFFFFF' id: BotLeft decals: 1688: 55,-32 - 3111: 18,-71 - 3112: 17,-71 - 3113: 16,-71 - 3114: 15,-71 - 3249: -40,-28 - 3250: -39,-28 - 3251: -38,-28 - 3606: -1,37 - 3607: 0,37 - 3608: 1,37 - 3609: 2,37 + 3095: 18,-71 + 3096: 17,-71 + 3097: 16,-71 + 3098: 15,-71 + 3232: -40,-28 + 3233: -39,-28 + 3234: -38,-28 + 3589: -1,37 + 3590: 0,37 + 3591: 1,37 + 3592: 2,37 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -790,14 +770,13 @@ entities: color: '#FFFFFFFF' id: Box decals: - 3563: -7,32 + 3546: -7,32 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: 2460: 14,-42 2461: 14,-41 - 3115: 15,-81 - node: color: '#FFFFFFFF' id: BrickTileDarkBox @@ -809,80 +788,80 @@ entities: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 2976: 11,-35 + 2963: 11,-35 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 3604: -2,36 + 3587: -2,36 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3605: 3,36 + 3588: 3,36 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 3603: -2,38 + 3586: -2,38 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3602: 3,38 + 3585: 3,38 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 2977: 11,-34 - 3593: -2,37 + 2964: 11,-34 + 3576: -2,37 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 2941: -6,-66 - 2942: -7,-66 - 2943: -8,-66 - 2969: 13,-36 - 2970: 11,-36 - 2973: 12,-36 - 2974: 10,-36 - 2975: 9,-36 - 3598: -1,36 - 3599: 0,36 - 3600: 1,36 - 3601: 2,36 + 2928: -6,-66 + 2929: -7,-66 + 2930: -8,-66 + 2956: 13,-36 + 2957: 11,-36 + 2960: 12,-36 + 2961: 10,-36 + 2962: 9,-36 + 3581: -1,36 + 3582: 0,36 + 3583: 1,36 + 3584: 2,36 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2944: -8,-62 - 2945: -7,-62 - 2946: -6,-62 - 2947: -4,-62 - 2948: -3,-62 - 2949: -2,-62 - 2950: -1,-62 - 2967: 10,-35 - 2968: 9,-35 - 3594: -1,38 - 3595: 0,38 - 3596: 1,38 - 3597: 2,38 + 2931: -8,-62 + 2932: -7,-62 + 2933: -6,-62 + 2934: -4,-62 + 2935: -3,-62 + 2936: -2,-62 + 2937: -1,-62 + 2954: 10,-35 + 2955: 9,-35 + 3577: -1,38 + 3578: 0,38 + 3579: 1,38 + 3580: 2,38 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 3555: -6,29 - 3556: -6,30 - 3557: -6,31 - 3558: -6,32 - 3592: 3,37 + 3538: -6,29 + 3539: -6,30 + 3540: -6,31 + 3541: -6,32 + 3575: 3,37 - node: color: '#9FED584D' id: BrickTileSteelCornerNe decals: - 3063: 35,-46 + 3050: 35,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNe @@ -892,12 +871,12 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNe decals: - 3069: 35,-49 + 3056: 35,-49 - node: color: '#9FED584D' id: BrickTileSteelCornerNw decals: - 3064: 34,-46 + 3051: 34,-46 - node: color: '#D381C996' id: BrickTileSteelCornerNw @@ -908,37 +887,37 @@ entities: color: '#EFB34196' id: BrickTileSteelCornerNw decals: - 3070: 34,-49 + 3057: 34,-49 - node: color: '#52B4E996' id: BrickTileSteelCornerSe decals: - 2981: 19,-34 + 2968: 19,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSe decals: - 3065: 35,-47 + 3052: 35,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSe decals: - 3068: 35,-50 + 3055: 35,-50 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 2980: 21,-34 + 2967: 21,-34 - node: color: '#9FED584D' id: BrickTileSteelCornerSw decals: - 3066: 34,-47 + 3053: 34,-47 - node: color: '#EFB34196' id: BrickTileSteelCornerSw decals: - 3067: 34,-50 + 3054: 34,-50 - node: color: '#D381C996' id: BrickTileSteelInnerNe @@ -968,11 +947,11 @@ entities: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2983: 19,-33 - 3071: 37,-50 - 3072: 37,-49 - 3073: 37,-47 - 3074: 37,-46 + 2970: 19,-33 + 3058: 37,-50 + 3059: 37,-49 + 3060: 37,-47 + 3061: 37,-46 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -1029,8 +1008,8 @@ entities: color: '#52B4E996' id: BrickTileSteelLineS decals: - 2978: 22,-34 - 2979: 18,-34 + 2965: 22,-34 + 2966: 18,-34 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -1074,7 +1053,7 @@ entities: color: '#52B4E996' id: BrickTileSteelLineW decals: - 2982: 21,-33 + 2969: 21,-33 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -1088,8 +1067,8 @@ entities: decals: 2430: 34,-35 2438: 46,-54 - 3393: 45,-1 - 3394: 45,0 + 3376: 45,-1 + 3377: 45,0 - node: color: '#D4D4D428' id: BrickTileWhiteBox @@ -1107,7 +1086,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNe decals: - 3053: 37,-40 + 3040: 37,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1141,8 +1120,8 @@ entities: 1498: -4,9 2252: -12,-50 2573: 7,-41 - 2641: -10,-73 - 2866: 9,-66 + 2635: -10,-73 + 2853: 9,-66 - node: color: '#FFEBAE96' id: BrickTileWhiteCornerNe @@ -1159,7 +1138,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerNw decals: - 3054: 34,-40 + 3041: 34,-40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1181,7 +1160,7 @@ entities: id: BrickTileWhiteCornerNw decals: 2255: -16,-57 - 3545: -15,27 + 3528: -15,27 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw @@ -1189,10 +1168,10 @@ entities: 1497: -7,9 2251: -13,-50 2572: 3,-41 - 2642: -18,-73 - 2872: 1,-66 - 2877: -4,-67 - 2878: -8,-68 + 2636: -18,-73 + 2859: 1,-66 + 2864: -4,-67 + 2865: -8,-68 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -1204,7 +1183,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSe decals: - 3056: 37,-43 + 3043: 37,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe @@ -1226,8 +1205,8 @@ entities: decals: 2267: -6,-58 2580: 7,-45 - 2623: -5,-76 - 2656: -10,-77 + 2617: -5,-76 + 2650: -10,-77 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -1239,7 +1218,7 @@ entities: color: '#5299B43A' id: BrickTileWhiteCornerSw decals: - 3055: 34,-43 + 3042: 34,-43 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw @@ -1259,7 +1238,7 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 3546: -15,26 + 3529: -15,26 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw @@ -1267,8 +1246,8 @@ entities: 1500: -7,6 2265: -8,-58 2569: 3,-45 - 2622: -8,-76 - 2655: -18,-77 + 2616: -8,-76 + 2649: -18,-77 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -1283,12 +1262,12 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 3553: -6,27 + 3536: -6,27 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2901: -4,-68 + 2888: -4,-68 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe @@ -1320,8 +1299,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineE decals: - 3059: 37,-42 - 3060: 37,-41 + 3046: 37,-42 + 3047: 37,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1356,10 +1335,10 @@ entities: id: BrickTileWhiteLineE decals: 1533: -11,4 - 3549: -5,30 - 3550: -5,31 - 3551: -5,32 - 3552: -5,29 + 3532: -5,30 + 3533: -5,31 + 3534: -5,32 + 3535: -5,29 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1372,14 +1351,14 @@ entities: 2577: 7,-42 2578: 7,-43 2579: 7,-44 - 2624: -5,-73 - 2628: -5,-72 - 2650: -10,-74 - 2651: -10,-76 - 2889: 9,-70 - 2890: 9,-69 - 2891: 9,-68 - 2892: 9,-67 + 2618: -5,-73 + 2622: -5,-72 + 2644: -10,-74 + 2645: -10,-76 + 2876: 9,-70 + 2877: 9,-69 + 2878: 9,-68 + 2879: 9,-67 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1401,8 +1380,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineN decals: - 3051: 36,-40 - 3052: 35,-40 + 3038: 36,-40 + 3039: 35,-40 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1451,16 +1430,16 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 3540: -7,27 - 3541: -10,27 - 3542: -11,27 - 3543: -13,27 - 3544: -14,27 - 3574: -12,36 - 3575: -13,36 - 3576: -14,36 - 3577: -15,36 - 3578: -16,36 + 3523: -7,27 + 3524: -10,27 + 3525: -11,27 + 3526: -13,27 + 3527: -14,27 + 3557: -12,36 + 3558: -13,36 + 3559: -14,36 + 3560: -15,36 + 3561: -16,36 - node: color: '#EFB34196' id: BrickTileWhiteLineN @@ -1470,29 +1449,29 @@ entities: 2574: 6,-41 2575: 5,-41 2576: 4,-41 - 2611: 7,-73 - 2612: 6,-73 - 2613: 5,-73 - 2637: -20,-69 - 2638: -21,-69 - 2643: -17,-73 - 2644: -16,-73 - 2645: -15,-73 - 2646: -14,-73 - 2647: -13,-73 - 2648: -12,-73 - 2649: -11,-73 - 2867: 7,-66 - 2868: 6,-66 - 2869: 5,-66 - 2870: 4,-66 - 2871: 2,-66 - 2873: 0,-67 - 2874: -1,-67 - 2875: -2,-67 - 2876: -3,-67 - 2899: -6,-68 - 2900: -5,-68 + 2605: 7,-73 + 2606: 6,-73 + 2607: 5,-73 + 2631: -20,-69 + 2632: -21,-69 + 2637: -17,-73 + 2638: -16,-73 + 2639: -15,-73 + 2640: -14,-73 + 2641: -13,-73 + 2642: -12,-73 + 2643: -11,-73 + 2854: 7,-66 + 2855: 6,-66 + 2856: 5,-66 + 2857: 4,-66 + 2858: 2,-66 + 2860: 0,-67 + 2861: -1,-67 + 2862: -2,-67 + 2863: -3,-67 + 2886: -6,-68 + 2887: -5,-68 - node: color: '#FFEBAE96' id: BrickTileWhiteLineN @@ -1515,8 +1494,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineS decals: - 3057: 36,-43 - 3058: 35,-43 + 3044: 36,-43 + 3045: 35,-43 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1566,10 +1545,10 @@ entities: 2089: 10,26 2090: 8,26 2091: 7,26 - 3579: -12,34 - 3580: -13,34 - 3581: -14,34 - 3582: -16,34 + 3562: -12,34 + 3563: -13,34 + 3564: -14,34 + 3565: -16,34 - node: color: '#EFB34196' id: BrickTileWhiteLineS @@ -1582,30 +1561,30 @@ entities: 2581: 6,-45 2582: 5,-45 2583: 4,-45 - 2614: 8,-76 - 2615: 6,-76 - 2616: 7,-76 - 2629: -6,-76 - 2630: -7,-76 - 2639: -20,-71 - 2640: -21,-71 - 2657: -11,-77 - 2658: -12,-77 - 2659: -13,-77 - 2660: -14,-77 - 2661: -15,-77 - 2662: -16,-77 - 2663: -17,-77 - 2879: -4,-71 - 2880: -3,-71 - 2881: -2,-71 - 2882: -1,-71 - 2883: 0,-71 - 2884: 1,-71 - 2885: 2,-71 - 2886: 5,-71 - 2887: 6,-71 - 2888: 7,-71 + 2608: 8,-76 + 2609: 6,-76 + 2610: 7,-76 + 2623: -6,-76 + 2624: -7,-76 + 2633: -20,-71 + 2634: -21,-71 + 2651: -11,-77 + 2652: -12,-77 + 2653: -13,-77 + 2654: -14,-77 + 2655: -15,-77 + 2656: -16,-77 + 2657: -17,-77 + 2866: -4,-71 + 2867: -3,-71 + 2868: -2,-71 + 2869: -1,-71 + 2870: 0,-71 + 2871: 1,-71 + 2872: 2,-71 + 2873: 5,-71 + 2874: 6,-71 + 2875: 7,-71 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1631,8 +1610,8 @@ entities: color: '#5299B43A' id: BrickTileWhiteLineW decals: - 3061: 34,-42 - 3062: 34,-41 + 3048: 34,-42 + 3049: 34,-41 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -1657,11 +1636,11 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 3554: -6,28 - 3559: -6,29 - 3560: -6,30 - 3561: -6,31 - 3562: -6,32 + 3537: -6,28 + 3542: -6,29 + 3543: -6,30 + 3544: -6,31 + 3545: -6,32 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1672,12 +1651,12 @@ entities: 2264: -8,-57 2570: 3,-44 2571: 3,-42 - 2625: -8,-74 - 2626: -8,-73 - 2627: -8,-72 - 2652: -18,-74 - 2653: -18,-75 - 2654: -18,-76 + 2619: -8,-74 + 2620: -8,-73 + 2621: -8,-72 + 2646: -18,-74 + 2647: -18,-75 + 2648: -18,-76 - node: color: '#FFFFFFFF' id: Bushb1 @@ -1741,7 +1720,7 @@ entities: decals: 1680: 66,-22 2436: 31,-34 - 2621: 9,-74 + 2615: 9,-74 - node: color: '#3B393B85' id: CheckerNESW @@ -1776,14 +1755,14 @@ entities: 1584: 44,-45 1585: 43,-45 1586: 42,-46 - 3138: 34,-44 - 3139: 35,-44 - 3140: 36,-44 - 3141: 37,-44 - 3142: 37,-39 - 3143: 36,-39 - 3144: 35,-39 - 3145: 34,-39 + 3121: 34,-44 + 3122: 35,-44 + 3123: 36,-44 + 3124: 37,-44 + 3125: 37,-39 + 3126: 36,-39 + 3127: 35,-39 + 3128: 34,-39 - node: color: '#92929B96' id: CheckerNESW @@ -1818,18 +1797,18 @@ entities: color: '#9FED5896' id: CheckerNESW decals: - 3381: 45,-1 - 3382: 45,0 - 3383: 46,-1 - 3384: 46,0 - 3385: 47,-1 - 3386: 47,0 - 3387: 48,-1 - 3388: 48,0 - 3389: 48,1 - 3390: 49,1 - 3391: 49,0 - 3392: 49,-1 + 3364: 45,-1 + 3365: 45,0 + 3366: 46,-1 + 3367: 46,0 + 3368: 47,-1 + 3369: 47,0 + 3370: 48,-1 + 3371: 48,0 + 3372: 48,1 + 3373: 49,1 + 3374: 49,0 + 3375: 49,-1 - node: color: '#D381C996' id: CheckerNESW @@ -1869,30 +1848,30 @@ entities: color: '#EFCC4163' id: CheckerNESW decals: - 2840: -1,-65 - 2841: -2,-65 - 2842: -2,-64 - 2843: -1,-64 - 2844: -1,-63 - 2845: -2,-63 - 2846: -4,-63 - 2847: -3,-63 - 2848: -3,-64 - 2849: -4,-64 - 2850: -5,-64 - 2851: -5,-63 - 2852: -3,-65 - 2853: -4,-65 - 2854: -5,-65 - 2855: -6,-65 - 2856: -8,-65 - 2857: -7,-65 - 2858: -6,-64 - 2859: -7,-64 - 2860: -8,-64 - 2861: -8,-63 - 2862: -7,-63 - 2863: -6,-63 + 2827: -1,-65 + 2828: -2,-65 + 2829: -2,-64 + 2830: -1,-64 + 2831: -1,-63 + 2832: -2,-63 + 2833: -4,-63 + 2834: -3,-63 + 2835: -3,-64 + 2836: -4,-64 + 2837: -5,-64 + 2838: -5,-63 + 2839: -3,-65 + 2840: -4,-65 + 2841: -5,-65 + 2842: -6,-65 + 2843: -8,-65 + 2844: -7,-65 + 2845: -6,-64 + 2846: -7,-64 + 2847: -8,-64 + 2848: -8,-63 + 2849: -7,-63 + 2850: -6,-63 - node: color: '#FFEBAE96' id: CheckerNESW @@ -1917,18 +1896,18 @@ entities: color: '#FFFFFFFF' id: CheckerNESW decals: - 3369: 45,-1 - 3370: 45,0 - 3371: 46,0 - 3372: 46,-1 - 3373: 47,-1 - 3374: 47,0 - 3375: 48,-1 - 3376: 48,0 - 3377: 49,-1 - 3378: 49,0 - 3379: 49,1 - 3380: 48,1 + 3352: 45,-1 + 3353: 45,0 + 3354: 46,0 + 3355: 46,-1 + 3356: 47,-1 + 3357: 47,0 + 3358: 48,-1 + 3359: 48,0 + 3360: 49,-1 + 3361: 49,0 + 3362: 49,1 + 3363: 48,1 - node: color: '#334E6DC8' id: CheckerNWSE @@ -1991,32 +1970,32 @@ entities: 1647: 49,-36 1648: 49,-35 1649: 49,-34 - 2988: 38,-30 - 2989: 38,-29 - 2990: 38,-28 - 2991: 38,-27 - 2992: 39,-27 - 2993: 40,-27 - 2994: 41,-27 - 2995: 41,-28 - 2996: 40,-28 - 2997: 39,-28 - 2998: 39,-29 - 2999: 39,-30 - 3000: 40,-30 - 3001: 40,-29 - 3002: 41,-29 - 3003: 41,-30 - 3079: 40,-49 - 3080: 40,-48 - 3081: 40,-47 - 3082: 40,-46 - 3083: 40,-45 - 3084: 40,-44 - 3085: 40,-43 - 3086: 40,-42 - 3087: 40,-41 - 3088: 40,-40 + 2975: 38,-30 + 2976: 38,-29 + 2977: 38,-28 + 2978: 38,-27 + 2979: 39,-27 + 2980: 40,-27 + 2981: 41,-27 + 2982: 41,-28 + 2983: 40,-28 + 2984: 39,-28 + 2985: 39,-29 + 2986: 39,-30 + 2987: 40,-30 + 2988: 40,-29 + 2989: 41,-29 + 2990: 41,-30 + 3066: 40,-49 + 3067: 40,-48 + 3068: 40,-47 + 3069: 40,-46 + 3070: 40,-45 + 3071: 40,-44 + 3072: 40,-43 + 3073: 40,-42 + 3074: 40,-41 + 3075: 40,-40 - node: color: '#9FED5896' id: CheckerNWSE @@ -2033,22 +2012,22 @@ entities: 744: 47,-59 745: 47,-60 746: 47,-61 - 3172: 3,-36 - 3173: 3,-35 - 3174: 4,-35 - 3175: 4,-36 - 3176: 5,-36 - 3177: 5,-35 - 3178: 6,-35 - 3179: 6,-36 + 3155: 3,-36 + 3156: 3,-35 + 3157: 4,-35 + 3158: 4,-36 + 3159: 5,-36 + 3160: 5,-35 + 3161: 6,-35 + 3162: 6,-36 - node: color: '#A4610696' id: CheckerNWSE decals: - 3190: -33,-31 - 3191: -33,-30 - 3192: -32,-30 - 3193: -32,-31 + 3173: -33,-31 + 3174: -33,-30 + 3175: -32,-30 + 3176: -32,-31 - node: color: '#D381C996' id: CheckerNWSE @@ -2170,57 +2149,57 @@ entities: 2562: 3,-46 2563: 4,-49 2564: 4,-48 - 2602: -9,-71 - 2603: -9,-70 - 2604: -9,-69 - 2605: -19,-70 - 2632: -9,-75 - 2633: -8,-72 - 2634: -7,-72 - 2635: -6,-72 - 2636: -5,-72 - 2684: 8,-72 - 2685: 9,-72 - 2686: 4,-72 - 2687: 3,-72 - 2951: -1,-62 - 3033: 67,-54 - 3036: 70,-44 - 3037: 78,-42 - 3038: 78,-40 - 3226: -38,-20 - 3227: -37,-20 - 3228: -36,-20 - 3229: -35,-20 - 3243: -40,-27 - 3244: -40,-25 - 3245: -40,-23 - 3246: -38,-31 - 3247: -39,-31 - 3248: -40,-31 - 3260: -26,-39 - 3261: -27,-39 - 3262: -28,-39 - 3395: 87,-6 - 3396: 87,-4 - 3397: 87,-12 - 3398: 87,-14 - 3399: 83,-14 - 3400: 83,-12 - 3401: 83,-6 - 3402: 83,-4 - 3406: 9,-32 - 3407: 9,-31 - 3408: 9,-30 - 3475: 3,-65 - 3476: 8,-65 - 3477: 8,-59 - 3478: 4,-59 - 3651: 57,-44 - 3652: 58,-44 - 3653: 59,-44 - 3654: 60,-44 - 3658: 58,-51 + 2596: -9,-71 + 2597: -9,-70 + 2598: -9,-69 + 2599: -19,-70 + 2626: -9,-75 + 2627: -8,-72 + 2628: -7,-72 + 2629: -6,-72 + 2630: -5,-72 + 2678: 8,-72 + 2679: 9,-72 + 2680: 4,-72 + 2681: 3,-72 + 2938: -1,-62 + 3020: 67,-54 + 3023: 70,-44 + 3024: 78,-42 + 3025: 78,-40 + 3209: -38,-20 + 3210: -37,-20 + 3211: -36,-20 + 3212: -35,-20 + 3226: -40,-27 + 3227: -40,-25 + 3228: -40,-23 + 3229: -38,-31 + 3230: -39,-31 + 3231: -40,-31 + 3243: -26,-39 + 3244: -27,-39 + 3245: -28,-39 + 3378: 87,-6 + 3379: 87,-4 + 3380: 87,-12 + 3381: 87,-14 + 3382: 83,-14 + 3383: 83,-12 + 3384: 83,-6 + 3385: 83,-4 + 3389: 9,-32 + 3390: 9,-31 + 3391: 9,-30 + 3458: 3,-65 + 3459: 8,-65 + 3460: 8,-59 + 3461: 4,-59 + 3634: 57,-44 + 3635: 58,-44 + 3636: 59,-44 + 3637: 60,-44 + 3641: 58,-51 - node: cleanable: True color: '#474F52FF' @@ -2292,41 +2271,41 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 3479: 3,-63 - 3480: 3,-62 - 3481: 4,-61 - 3482: 7,-61 - 3483: 8,-61 - 3484: 8,-60 - 3485: 8,-56 - 3486: 8,-55 - 3487: 6,-54 - 3488: 4,-53 - 3624: 55,-53 - 3625: 53,-55 - 3626: 60,-55 - 3627: 61,-56 - 3628: 65,-56 - 3629: 51,-56 - 3630: 50,-55 - 3631: 44,-50 - 3632: 43,-50 - 3633: 51,-49 - 3634: 50,-48 - 3635: 47,-42 - 3636: 48,-43 - 3637: 44,-43 - 3638: 51,-46 - 3639: 57,-51 - 3640: 57,-52 - 3641: 61,-53 - 3642: 63,-52 - 3643: 60,-51 - 3646: 60,-48 - 3647: 53,-50 - 3648: 55,-49 - 3649: 57,-45 - 3650: 58,-46 + 3462: 3,-63 + 3463: 3,-62 + 3464: 4,-61 + 3465: 7,-61 + 3466: 8,-61 + 3467: 8,-60 + 3468: 8,-56 + 3469: 8,-55 + 3470: 6,-54 + 3471: 4,-53 + 3607: 55,-53 + 3608: 53,-55 + 3609: 60,-55 + 3610: 61,-56 + 3611: 65,-56 + 3612: 51,-56 + 3613: 50,-55 + 3614: 44,-50 + 3615: 43,-50 + 3616: 51,-49 + 3617: 50,-48 + 3618: 47,-42 + 3619: 48,-43 + 3620: 44,-43 + 3621: 51,-46 + 3622: 57,-51 + 3623: 57,-52 + 3624: 61,-53 + 3625: 63,-52 + 3626: 60,-51 + 3629: 60,-48 + 3630: 53,-50 + 3631: 55,-49 + 3632: 57,-45 + 3633: 58,-46 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2338,42 +2317,42 @@ entities: id: DirtHeavy decals: 2529: -1,-55 - 2755: 5,-69 - 2756: 6,-69 - 2757: 0,-70 - 2914: -7,-71 - 2915: -8,-71 - 2916: -7,-72 - 2917: -7,-73 - 2918: -6,-73 - 2919: -1,-72 - 2920: 0,-72 - 3283: -32,-22 - 3284: -36,-22 - 3285: -38,-24 - 3286: -36,-26 - 3287: -36,-29 - 3318: -27,-38 - 3319: -28,-36 - 3320: -28,-35 - 3321: -28,-34 - 3322: -25,-33 - 3489: 3,-61 - 3490: 8,-62 - 3491: 8,-57 - 3616: 63,-56 - 3617: 58,-56 + 2749: 5,-69 + 2750: 6,-69 + 2751: 0,-70 + 2901: -7,-71 + 2902: -8,-71 + 2903: -7,-72 + 2904: -7,-73 + 2905: -6,-73 + 2906: -1,-72 + 2907: 0,-72 + 3266: -32,-22 + 3267: -36,-22 + 3268: -38,-24 + 3269: -36,-26 + 3270: -36,-29 + 3301: -27,-38 + 3302: -28,-36 + 3303: -28,-35 + 3304: -28,-34 + 3305: -25,-33 + 3472: 3,-61 + 3473: 8,-62 + 3474: 8,-57 + 3599: 63,-56 + 3600: 58,-56 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2921: 1,-72 - 2922: 1,-71 - 2923: 4,-71 - 2924: 3,-66 - 3611: 51,-56 - 3612: 51,-48 + 2908: 1,-72 + 2909: 1,-71 + 2910: 4,-71 + 2911: 3,-66 + 3594: 51,-56 + 3595: 51,-48 - node: cleanable: True color: '#474F52FF' @@ -2520,129 +2499,129 @@ entities: 2523: 0,-56 2524: 1,-57 2525: 2,-57 - 2725: 4,-68 - 2726: 8,-68 - 2727: 8,-73 - 2728: 8,-75 - 2729: 9,-73 - 2730: 11,-74 - 2731: 11,-73 - 2732: 4,-74 - 2733: 3,-73 - 2734: 1,-74 - 2735: 0,-74 - 2736: -1,-73 - 2737: -3,-75 - 2738: -4,-74 - 2739: -4,-75 - 2740: -5,-74 - 2741: -6,-73 - 2742: -5,-69 - 2743: -4,-68 - 2744: -10,-70 - 2745: -11,-69 - 2746: -13,-70 - 2747: -15,-70 - 2748: -17,-69 - 2749: -10,-75 - 2750: -11,-76 - 2751: -13,-77 - 2752: 0,-70 - 2753: 1,-69 - 2754: 7,-68 - 2765: 7,-70 - 2766: 0,-69 - 2767: -1,-69 - 2768: -2,-70 - 2769: -7,-69 - 2770: -6,-68 - 2771: -5,-68 - 2772: -4,-69 - 2773: -4,-70 - 2925: 2,-67 - 2926: 3,-67 - 2927: 2,-66 - 2928: 5,-67 - 2929: 5,-67 - 2930: 4,-67 - 2931: 9,-70 - 2932: 9,-71 - 2933: 8,-71 - 2934: -4,-71 - 2935: -6,-71 - 2936: -8,-70 - 2937: -8,-69 - 2938: -7,-70 - 2939: -10,-71 - 2940: -12,-71 - 3267: -40,-30 - 3268: -41,-31 - 3269: -38,-30 - 3270: -38,-31 - 3271: -36,-31 - 3272: -38,-28 - 3273: -41,-27 - 3274: -38,-25 - 3275: -36,-26 - 3276: -39,-24 - 3277: -37,-22 - 3278: -35,-21 - 3279: -33,-21 - 3280: -33,-21 - 3281: -31,-22 - 3282: -29,-23 - 3328: -26,-35 - 3329: -26,-35 - 3330: -25,-35 - 3331: -27,-35 - 3332: -26,-33 - 3333: -27,-33 - 3334: -27,-31 - 3335: -28,-31 - 3336: -28,-32 - 3337: -29,-32 - 3338: -31,-31 - 3339: -30,-31 - 3340: -35,-31 - 3341: -26,-29 - 3342: -25,-30 - 3343: -25,-28 - 3344: -26,-28 - 3345: -28,-28 - 3346: -28,-27 - 3347: -28,-26 - 3348: -26,-25 - 3349: -25,-27 - 3350: -25,-27 - 3351: -23,-27 - 3352: -22,-27 - 3353: -21,-25 - 3492: 8,-58 - 3493: 7,-57 - 3494: 8,-54 - 3495: 7,-54 - 3496: 4,-54 - 3497: 5,-53 - 3498: 3,-53 - 3499: 3,-64 - 3500: 2,-63 - 3501: 5,-61 - 3502: 6,-61 - 3503: 4,-60 - 3504: 8,-64 - 3505: 6,-57 - 3506: 5,-57 - 3507: 5,-57 - 3508: 3,-57 - 3509: 4,-58 - 3510: 4,-56 - 3610: 53,-55 - 3618: 62,-56 - 3619: 58,-55 - 3620: 57,-56 - 3621: 59,-56 - 3622: 60,-56 - 3623: 54,-55 + 2719: 4,-68 + 2720: 8,-68 + 2721: 8,-73 + 2722: 8,-75 + 2723: 9,-73 + 2724: 11,-74 + 2725: 11,-73 + 2726: 4,-74 + 2727: 3,-73 + 2728: 1,-74 + 2729: 0,-74 + 2730: -1,-73 + 2731: -3,-75 + 2732: -4,-74 + 2733: -4,-75 + 2734: -5,-74 + 2735: -6,-73 + 2736: -5,-69 + 2737: -4,-68 + 2738: -10,-70 + 2739: -11,-69 + 2740: -13,-70 + 2741: -15,-70 + 2742: -17,-69 + 2743: -10,-75 + 2744: -11,-76 + 2745: -13,-77 + 2746: 0,-70 + 2747: 1,-69 + 2748: 7,-68 + 2759: 7,-70 + 2760: 0,-69 + 2761: -1,-69 + 2762: -2,-70 + 2763: -7,-69 + 2764: -6,-68 + 2765: -5,-68 + 2766: -4,-69 + 2767: -4,-70 + 2912: 2,-67 + 2913: 3,-67 + 2914: 2,-66 + 2915: 5,-67 + 2916: 5,-67 + 2917: 4,-67 + 2918: 9,-70 + 2919: 9,-71 + 2920: 8,-71 + 2921: -4,-71 + 2922: -6,-71 + 2923: -8,-70 + 2924: -8,-69 + 2925: -7,-70 + 2926: -10,-71 + 2927: -12,-71 + 3250: -40,-30 + 3251: -41,-31 + 3252: -38,-30 + 3253: -38,-31 + 3254: -36,-31 + 3255: -38,-28 + 3256: -41,-27 + 3257: -38,-25 + 3258: -36,-26 + 3259: -39,-24 + 3260: -37,-22 + 3261: -35,-21 + 3262: -33,-21 + 3263: -33,-21 + 3264: -31,-22 + 3265: -29,-23 + 3311: -26,-35 + 3312: -26,-35 + 3313: -25,-35 + 3314: -27,-35 + 3315: -26,-33 + 3316: -27,-33 + 3317: -27,-31 + 3318: -28,-31 + 3319: -28,-32 + 3320: -29,-32 + 3321: -31,-31 + 3322: -30,-31 + 3323: -35,-31 + 3324: -26,-29 + 3325: -25,-30 + 3326: -25,-28 + 3327: -26,-28 + 3328: -28,-28 + 3329: -28,-27 + 3330: -28,-26 + 3331: -26,-25 + 3332: -25,-27 + 3333: -25,-27 + 3334: -23,-27 + 3335: -22,-27 + 3336: -21,-25 + 3475: 8,-58 + 3476: 7,-57 + 3477: 8,-54 + 3478: 7,-54 + 3479: 4,-54 + 3480: 5,-53 + 3481: 3,-53 + 3482: 3,-64 + 3483: 2,-63 + 3484: 5,-61 + 3485: 6,-61 + 3486: 4,-60 + 3487: 8,-64 + 3488: 6,-57 + 3489: 5,-57 + 3490: 5,-57 + 3491: 3,-57 + 3492: 4,-58 + 3493: 4,-56 + 3593: 53,-55 + 3601: 62,-56 + 3602: 58,-55 + 3603: 57,-56 + 3604: 59,-56 + 3605: 60,-56 + 3606: 54,-55 - node: cleanable: True zIndex: 1 @@ -2674,51 +2653,51 @@ entities: 2526: 0,-58 2527: -1,-58 2528: -1,-56 - 2758: -5,-70 - 2759: -6,-69 - 2760: -7,-68 - 2761: -1,-70 - 2762: 6,-70 - 2763: 6,-68 - 2764: 7,-69 - 3288: -37,-29 - 3289: -36,-28 - 3290: -36,-30 - 3291: -36,-27 - 3292: -37,-26 - 3293: -36,-25 - 3294: -36,-24 - 3295: -37,-24 - 3296: -36,-23 - 3297: -39,-22 - 3298: -41,-24 - 3299: -40,-24 - 3300: -41,-25 - 3301: -41,-26 - 3302: -32,-20 - 3303: -32,-19 - 3304: -34,-20 - 3305: -33,-20 - 3306: -28,-21 - 3307: -27,-23 - 3308: -26,-24 - 3309: -26,-26 - 3310: -27,-26 - 3311: -27,-27 - 3312: -27,-28 - 3313: -29,-37 - 3314: -29,-38 - 3315: -28,-38 - 3316: -26,-38 - 3317: -25,-36 - 3323: -28,-33 - 3324: -26,-36 - 3325: -27,-36 - 3326: -27,-33 - 3327: -28,-32 - 3613: 55,-53 - 3614: 64,-56 - 3615: 62,-55 + 2752: -5,-70 + 2753: -6,-69 + 2754: -7,-68 + 2755: -1,-70 + 2756: 6,-70 + 2757: 6,-68 + 2758: 7,-69 + 3271: -37,-29 + 3272: -36,-28 + 3273: -36,-30 + 3274: -36,-27 + 3275: -37,-26 + 3276: -36,-25 + 3277: -36,-24 + 3278: -37,-24 + 3279: -36,-23 + 3280: -39,-22 + 3281: -41,-24 + 3282: -40,-24 + 3283: -41,-25 + 3284: -41,-26 + 3285: -32,-20 + 3286: -32,-19 + 3287: -34,-20 + 3288: -33,-20 + 3289: -28,-21 + 3290: -27,-23 + 3291: -26,-24 + 3292: -26,-26 + 3293: -27,-26 + 3294: -27,-27 + 3295: -27,-28 + 3296: -29,-37 + 3297: -29,-38 + 3298: -28,-38 + 3299: -26,-38 + 3300: -25,-36 + 3306: -28,-33 + 3307: -26,-36 + 3308: -27,-36 + 3309: -27,-33 + 3310: -28,-32 + 3596: 55,-53 + 3597: 64,-56 + 3598: 62,-55 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -2760,22 +2739,22 @@ entities: color: '#52B4E937' id: FullTileOverlayGreyscale decals: - 3004: 42,-29 - 3005: 42,-28 - 3006: 43,-29 - 3007: 43,-28 - 3008: 44,-29 - 3009: 44,-28 - 3010: 45,-29 - 3011: 45,-28 - 3012: 46,-29 - 3013: 46,-28 - 3014: 45,-27 - 3015: 45,-26 - 3016: 45,-25 - 3017: 45,-24 - 3018: 44,-24 - 3019: 46,-24 + 2991: 42,-29 + 2992: 42,-28 + 2993: 43,-29 + 2994: 43,-28 + 2995: 44,-29 + 2996: 44,-28 + 2997: 45,-29 + 2998: 45,-28 + 2999: 46,-29 + 3000: 46,-28 + 3001: 45,-27 + 3002: 45,-26 + 3003: 45,-25 + 3004: 45,-24 + 3005: 44,-24 + 3006: 46,-24 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -2825,7 +2804,7 @@ entities: 1727: 57,-41 1728: 55,-41 1729: 53,-41 - 3171: 5,-33 + 3154: 5,-33 - node: color: '#DE3A3A2B' id: FullTileOverlayGreyscale @@ -2850,11 +2829,11 @@ entities: id: FullTileOverlayGreyscale decals: 2068: -2,25 - 2893: 1,-72 - 2894: 0,-72 - 2895: -1,-72 - 2896: -2,-72 - 2897: -3,-72 + 2880: 1,-72 + 2881: 0,-72 + 2882: -1,-72 + 2883: -2,-72 + 2884: -3,-72 - node: color: '#EFCF412B' id: FullTileOverlayGreyscale @@ -2907,20 +2886,20 @@ entities: id: Grassd1 decals: 1138: 46.57632,-52.483627 - 3361: 42,0 + 3344: 42,0 - node: color: '#FFFFFFFF' id: Grassd2 decals: 1137: 44.04507,-52.733627 - 3360: 44,0 + 3343: 44,0 - node: color: '#FFFFFFFF' id: Grassd3 decals: 491: -14.979541,-25.083757 1438: 2,48 - 3362: 43,0 + 3345: 43,0 - node: color: '#FFFFFFFF' id: Grasse1 @@ -2930,7 +2909,7 @@ entities: 1136: 43.29507,-52.358627 1437: 2,47 1439: -3,48 - 3358: 43,-1 + 3341: 43,-1 - node: color: '#FFFFFFFF' id: Grasse2 @@ -2942,7 +2921,7 @@ entities: 1434: 4,47 1435: -1,48 1451: -1,47 - 3359: 42,-1 + 3342: 42,-1 - node: color: '#FFFFFFFF' id: Grasse3 @@ -2952,7 +2931,7 @@ entities: 1338: 6.3967857,-23.96697 1433: 4,48 1436: -3,47 - 3357: 44,-1 + 3340: 44,-1 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2981,10 +2960,10 @@ entities: 1564: 40,-23 2065: -4,28 2428: 34,-35 - 2984: 22,-35 - 2985: 21,-35 - 2986: 18,-35 - 2987: 19,-35 + 2971: 22,-35 + 2972: 21,-35 + 2973: 18,-35 + 2974: 19,-35 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale @@ -3015,8 +2994,8 @@ entities: 2318: 5,28 2319: 28,-24 2320: 69,-18 - 3186: -32,-29 - 3187: -33,-29 + 3169: -32,-29 + 3170: -33,-29 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -3035,10 +3014,10 @@ entities: 1710: 53,-40 1711: 52,-40 1712: 51,-40 - 3157: 6,-34 - 3158: 5,-34 - 3159: 4,-34 - 3160: 3,-34 + 3140: 6,-34 + 3141: 5,-34 + 3142: 4,-34 + 3143: 3,-34 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -3075,11 +3054,11 @@ entities: 1103: 61,-18 1104: 62,-18 2096: 14,32 - 3565: -5,36 - 3566: -7,36 - 3567: -8,36 - 3568: -9,36 - 3569: -10,36 + 3548: -5,36 + 3549: -7,36 + 3550: -8,36 + 3551: -9,36 + 3552: -10,36 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale @@ -3161,8 +3140,8 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 3188: -33,-32 - 3189: -32,-32 + 3171: -33,-32 + 3172: -32,-32 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -3188,13 +3167,13 @@ entities: 1721: 62,-42 1722: 63,-42 1723: 61,-42 - 3149: 5,-32 - 3163: 3,-37 - 3164: 4,-37 - 3165: 6,-37 - 3166: 5,-37 - 3644: 56,-42 - 3645: 58,-42 + 3132: 5,-32 + 3146: 3,-37 + 3147: 4,-37 + 3148: 6,-37 + 3149: 5,-37 + 3627: 56,-42 + 3628: 58,-42 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3224,16 +3203,16 @@ entities: 1000: 81,-4 2094: 14,34 2099: 14,31 - 3572: -10,34 + 3555: -10,34 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: 347: -2,23 - 2700: -2,-68 - 2701: -2,-69 - 2712: 2,-68 - 2713: 2,-70 + 2694: -2,-68 + 2695: -2,-69 + 2706: 2,-68 + 2707: 2,-70 - node: color: '#334E6D5A' id: HalfTileOverlayGreyscale270 @@ -3278,9 +3257,9 @@ entities: 2425: 35,-32 2426: 35,-33 2427: 35,-34 - 3076: 39,-49 - 3077: 39,-47 - 3078: 39,-46 + 3063: 39,-49 + 3064: 39,-47 + 3065: 39,-46 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -3310,7 +3289,7 @@ entities: 443: -42,-25 444: -42,-26 445: -42,-27 - 3180: -34,-30 + 3163: -34,-30 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3319,8 +3298,8 @@ entities: 264: 65,-19 265: 65,-20 1731: 63,-41 - 3161: 2,-35 - 3162: 2,-36 + 3144: 2,-35 + 3145: 2,-36 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3337,7 +3316,7 @@ entities: 1400: -12,39 1401: -12,40 1402: -12,41 - 3573: -11,35 + 3556: -11,35 - node: color: '#EFB34131' id: HalfTileOverlayGreyscale270 @@ -3414,15 +3393,15 @@ entities: 1112: -20,-18 1113: -20,-19 1114: -20,-20 - 3181: -31,-30 - 3208: -36,-32 - 3209: -36,-30 - 3210: -36,-29 - 3211: -36,-28 - 3212: -36,-27 - 3213: -36,-26 - 3214: -36,-25 - 3215: -36,-24 + 3164: -31,-30 + 3191: -36,-32 + 3192: -36,-30 + 3193: -36,-29 + 3194: -36,-28 + 3195: -36,-27 + 3196: -36,-26 + 3197: -36,-25 + 3198: -36,-24 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -3434,8 +3413,8 @@ entities: 268: 63,-21 269: 63,-22 1730: 51,-41 - 3155: 7,-36 - 3156: 7,-35 + 3138: 7,-36 + 3139: 7,-35 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3467,17 +3446,17 @@ entities: 1068: 0,-27 2584: 4,-43 2585: 4,-42 - 2697: -3,-70 - 2698: -3,-69 - 2702: -1,-69 - 2703: -1,-70 - 2704: 0,-70 - 2705: 0,-69 - 2709: 1,-70 - 2710: 1,-69 - 2714: 3,-70 - 2715: 3,-69 - 2724: 5,-69 + 2691: -3,-70 + 2692: -3,-69 + 2696: -1,-69 + 2697: -1,-70 + 2698: 0,-70 + 2699: 0,-69 + 2703: 1,-70 + 2704: 1,-69 + 2708: 3,-70 + 2709: 3,-69 + 2718: 5,-69 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3490,7 +3469,7 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 3655: 57,-52 + 3638: 57,-52 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3523,8 +3502,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale decals: - 3043: 36,-43 - 3044: 37,-42 + 3030: 36,-43 + 3031: 37,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -3693,37 +3672,37 @@ entities: 2183: -18,-6 2184: -18,-5 2185: -18,-4 - 2774: 19,12 - 2775: 19,13 - 2776: 19,14 - 2777: 19,15 - 2778: 20,15 - 2779: 21,15 - 2780: 22,15 - 2781: 23,15 - 2808: 8,17 - 2809: 8,16 - 2810: 8,15 - 2811: 8,14 - 2812: 8,13 - 2813: 8,12 - 2814: 8,10 - 2815: 8,11 - 2816: 8,9 - 2817: 8,8 - 2818: 8,7 - 2819: 8,6 - 2820: 8,5 - 2821: 8,4 - 2822: 8,3 - 3116: -47,-9 - 3117: -47,-8 - 3118: -47,-7 - 3119: -47,-6 - 3120: -46,-6 - 3121: -45,-6 - 3122: -44,-6 - 3123: -43,-6 + 2768: 19,12 + 2769: 19,13 + 2770: 19,14 + 2771: 19,15 + 2772: 20,15 + 2773: 21,15 + 2774: 22,15 + 2775: 23,15 + 2802: 8,17 + 2803: 8,16 + 2804: 8,15 + 2805: 8,14 + 2806: 8,13 + 2807: 8,12 + 2808: 8,10 + 2809: 8,11 + 2810: 8,9 + 2811: 8,8 + 2812: 8,7 + 2813: 8,6 + 2814: 8,5 + 2815: 8,4 + 2816: 8,3 + 3099: -47,-9 + 3100: -47,-8 + 3101: -47,-7 + 3102: -47,-6 + 3103: -46,-6 + 3104: -45,-6 + 3105: -44,-6 + 3106: -43,-6 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -3811,27 +3790,27 @@ entities: 2590: 6,-44 2591: 6,-42 2592: 6,-43 - 2666: -18,-69 - 2667: -17,-69 - 2668: -16,-69 - 2669: -15,-69 - 2670: -14,-69 - 2671: -13,-69 - 2672: -12,-69 - 2673: -11,-69 - 2674: -10,-69 - 3431: 1,-64 - 3432: 1,-63 - 3433: 1,-62 - 3434: 1,-61 - 3435: 1,-60 - 3436: 2,-60 - 3437: 3,-60 - 3455: 2,-52 - 3456: 2,-53 - 3457: 2,-54 - 3458: 3,-56 - 3459: 3,-55 + 2660: -18,-69 + 2661: -17,-69 + 2662: -16,-69 + 2663: -15,-69 + 2664: -14,-69 + 2665: -13,-69 + 2666: -12,-69 + 2667: -11,-69 + 2668: -10,-69 + 3414: 1,-64 + 3415: 1,-63 + 3416: 1,-62 + 3417: 1,-61 + 3418: 1,-60 + 3419: 2,-60 + 3420: 3,-60 + 3438: 2,-52 + 3439: 2,-53 + 3440: 2,-54 + 3441: 3,-56 + 3442: 3,-55 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale @@ -3888,8 +3867,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale180 decals: - 3045: 34,-41 - 3046: 35,-40 + 3032: 34,-41 + 3033: 35,-40 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3913,7 +3892,7 @@ entities: 919: 41,-15 1555: 36,-25 1637: 39,-15 - 2960: 38,-15 + 2947: 38,-15 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale180 @@ -3953,20 +3932,20 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 3153: 3,-32 - 3154: 2,-32 + 3136: 3,-32 + 3137: 2,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: 188: -31,-17 428: -27,-28 - 3216: -36,-23 - 3217: -35,-23 - 3218: -34,-23 - 3219: -32,-23 - 3220: -31,-23 - 3221: -33,-23 + 3199: -36,-23 + 3200: -35,-23 + 3201: -34,-23 + 3202: -32,-23 + 3203: -31,-23 + 3204: -33,-23 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -3984,7 +3963,7 @@ entities: 2381: -27,-39 2382: -28,-39 2383: -29,-39 - 3150: 4,-32 + 3133: 4,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -4017,8 +3996,8 @@ entities: 2176: 0,-32 2177: 1,-32 2179: 7,-32 - 2786: 27,8 - 2787: 27,9 + 2780: 27,8 + 2781: 27,9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -4074,29 +4053,29 @@ entities: 933: 0,-40 2504: 0,-58 2505: 1,-58 - 2675: -10,-71 - 2676: -11,-71 - 2677: -12,-71 - 2678: -13,-71 - 2679: -14,-71 - 2680: -15,-71 - 2681: -16,-71 - 2682: -17,-71 - 2683: -18,-71 - 2699: -3,-68 - 2706: -1,-68 - 2707: 0,-68 - 2711: 1,-68 - 2716: 3,-68 - 2720: 4,-70 - 2721: 4,-68 - 2722: 5,-70 - 2723: 5,-68 - 3438: 9,-64 - 3439: 9,-63 - 3440: 9,-62 - 3441: 9,-61 - 3442: 9,-60 + 2669: -10,-71 + 2670: -11,-71 + 2671: -12,-71 + 2672: -13,-71 + 2673: -14,-71 + 2674: -15,-71 + 2675: -16,-71 + 2676: -17,-71 + 2677: -18,-71 + 2693: -3,-68 + 2700: -1,-68 + 2701: 0,-68 + 2705: 1,-68 + 2710: 3,-68 + 2714: 4,-70 + 2715: 4,-68 + 2716: 5,-70 + 2717: 5,-68 + 3421: 9,-64 + 3422: 9,-63 + 3423: 9,-62 + 3424: 9,-61 + 3425: 9,-60 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -4129,8 +4108,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale270 decals: - 3047: 36,-40 - 3048: 37,-41 + 3034: 36,-40 + 3035: 37,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -4166,9 +4145,9 @@ entities: 1853: -66,-6 2278: -78,-6 2279: -79,-6 - 3354: 12,-32 - 3355: 11,-32 - 3356: 10,-32 + 3337: 12,-32 + 3338: 11,-32 + 3339: 10,-32 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 @@ -4217,8 +4196,8 @@ entities: 732: 38,-59 733: 38,-58 734: 38,-57 - 3152: 7,-32 - 3410: 8,-32 + 3135: 7,-32 + 3393: 8,-32 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -4260,7 +4239,7 @@ entities: 1550: 50,-27 1671: 56,-15 1674: 59,-15 - 3151: 6,-32 + 3134: 6,-32 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4318,15 +4297,15 @@ entities: 2339: 51,-10 2340: 51,-9 2344: 46,-12 - 2788: 23,8 - 2789: 22,8 - 2790: 21,8 - 2791: 20,8 - 2792: 20,9 - 2793: 19,9 - 3403: 14,-27 - 3404: 14,-26 - 3405: 14,-25 + 2782: 23,8 + 2783: 22,8 + 2784: 21,8 + 2785: 20,8 + 2786: 20,9 + 2787: 19,9 + 3386: 14,-27 + 3387: 14,-26 + 3388: 14,-25 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -4399,8 +4378,8 @@ entities: 2501: -4,-58 2502: -3,-58 2503: -2,-58 - 2708: 0,-70 - 2717: 4,-69 + 2702: 0,-70 + 2711: 4,-69 - node: color: '#F5DB9E96' id: QuarterTileOverlayGreyscale270 @@ -4428,8 +4407,8 @@ entities: color: '#5299B43A' id: QuarterTileOverlayGreyscale90 decals: - 3049: 35,-43 - 3050: 34,-42 + 3036: 35,-43 + 3037: 34,-42 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4466,10 +4445,10 @@ entities: 2369: -24,-37 2370: -24,-38 2371: -24,-39 - 3222: -31,-19 - 3223: -32,-19 - 3224: -33,-19 - 3225: -34,-19 + 3205: -31,-19 + 3206: -32,-19 + 3207: -33,-19 + 3208: -34,-19 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -4580,39 +4559,39 @@ entities: 2346: 44,-13 2347: 43,-13 2348: 42,-13 - 2782: 25,15 - 2783: 26,15 - 2784: 27,15 - 2785: 27,14 - 2794: 17,12 - 2795: 16,12 - 2796: 15,12 - 2797: 14,12 - 2798: 13,12 - 2799: 12,12 - 2800: 11,12 - 2801: 10,12 - 2802: 9,12 - 2803: 9,13 - 2804: 9,14 - 2805: 9,15 - 2806: 9,16 - 2807: 9,17 - 3124: -42,-6 - 3125: -41,-6 - 3126: -40,-6 - 3127: -40,-6 - 3128: -39,-6 - 3129: -38,-6 - 3130: -38,-7 - 3131: -38,-8 - 3132: -38,-9 - 3133: -38,-10 - 3134: -38,-11 - 3135: -38,-12 - 3136: -38,-13 - 3137: -38,-14 - 3409: 8,-30 + 2776: 25,15 + 2777: 26,15 + 2778: 27,15 + 2779: 27,14 + 2788: 17,12 + 2789: 16,12 + 2790: 15,12 + 2791: 14,12 + 2792: 13,12 + 2793: 12,12 + 2794: 11,12 + 2795: 10,12 + 2796: 9,12 + 2797: 9,13 + 2798: 9,14 + 2799: 9,15 + 2800: 9,16 + 2801: 9,17 + 3107: -42,-6 + 3108: -41,-6 + 3109: -40,-6 + 3110: -40,-6 + 3111: -39,-6 + 3112: -38,-6 + 3113: -38,-7 + 3114: -38,-8 + 3115: -38,-9 + 3116: -38,-10 + 3117: -38,-11 + 3118: -38,-12 + 3119: -38,-13 + 3120: -38,-14 + 3392: 8,-30 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -4704,20 +4683,20 @@ entities: 2510: 0,-53 2511: 0,-52 2589: 4,-44 - 2718: 4,-69 - 2719: 4,-70 - 3443: 9,-58 - 3444: 9,-57 - 3445: 9,-56 - 3446: 9,-55 - 3447: 9,-54 - 3448: 9,-53 - 3449: 9,-52 - 3450: 8,-52 - 3451: 7,-52 - 3452: 6,-52 - 3453: 5,-52 - 3454: 4,-52 + 2712: 4,-69 + 2713: 4,-70 + 3426: 9,-58 + 3427: 9,-57 + 3428: 9,-56 + 3429: 9,-55 + 3430: 9,-54 + 3431: 9,-53 + 3432: 9,-52 + 3433: 8,-52 + 3434: 7,-52 + 3435: 6,-52 + 3436: 5,-52 + 3437: 4,-52 - node: color: '#F9FFFEFF' id: Remains @@ -4773,7 +4752,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale decals: - 3042: 36,-42 + 3029: 36,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale @@ -4799,7 +4778,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 430: -30,-36 - 3183: -34,-29 + 3166: -34,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale @@ -4809,7 +4788,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 3170: 2,-34 + 3153: 2,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale @@ -4822,7 +4801,7 @@ entities: 396: -62,5 985: 76,-2 1096: 57,-17 - 3570: -11,36 + 3553: -11,36 - node: color: '#EFB34131' id: ThreeQuarterTileOverlayGreyscale @@ -4838,7 +4817,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3041: 35,-41 + 3028: 35,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -4861,7 +4840,7 @@ entities: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3185: -31,-32 + 3168: -31,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale180 @@ -4872,7 +4851,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 883: 71,-16 - 3169: 7,-37 + 3152: 7,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale180 @@ -4890,12 +4869,12 @@ entities: decals: 343: -1,23 1065: 0,-28 - 3429: 1,-26 + 3412: 1,-26 - node: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3039: 36,-41 + 3026: 36,-41 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -4903,7 +4882,7 @@ entities: 335: -11,23 1543: 48,-29 2411: 28,-37 - 3075: 39,-50 + 3062: 39,-50 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 @@ -4915,7 +4894,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 429: -30,-39 - 3184: -34,-32 + 3167: -34,-32 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale270 @@ -4926,7 +4905,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 882: 61,-16 - 3168: 2,-37 + 3151: 2,-37 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale270 @@ -4938,14 +4917,14 @@ entities: decals: 393: -62,3 988: 76,-4 - 3571: -11,34 + 3554: -11,34 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: 344: -3,23 1066: -2,-28 - 3430: -3,-26 + 3413: -3,-26 - node: color: '#334E6D5A' id: ThreeQuarterTileOverlayGreyscale90 @@ -4956,7 +4935,7 @@ entities: color: '#5299B43A' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3040: 35,-42 + 3027: 35,-42 - node: color: '#52B4E931' id: ThreeQuarterTileOverlayGreyscale90 @@ -4984,7 +4963,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 1110: -20,-16 - 3182: -31,-29 + 3165: -31,-29 - node: color: '#D381C934' id: ThreeQuarterTileOverlayGreyscale90 @@ -4994,7 +4973,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3167: 7,-34 + 3150: 7,-34 - node: color: '#DE3A3A2B' id: ThreeQuarterTileOverlayGreyscale90 @@ -5060,46 +5039,46 @@ entities: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 2964: 42,-18 + 2951: 42,-18 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 2907: 9,-71 + 2894: 9,-71 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 2908: -8,-71 + 2895: -8,-71 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3532: 23,19 + 3515: 23,19 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3533: 25,19 + 3516: 25,19 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 1608: 19,-19 - 3530: 23,17 + 3513: 23,17 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: 1615: 21,-21 - 3534: 25,17 + 3517: 25,17 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: 1282: 44,-21 1283: 46,-21 - 2966: 42,-21 + 2953: 42,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW @@ -5113,8 +5092,8 @@ entities: 1073: -3,-30 1665: 51,-21 2314: -73,-4 - 3109: 13,-77 - 3529: -13,-63 + 3093: 13,-77 + 3512: -13,-63 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5127,8 +5106,8 @@ entities: 2291: -79,-6 2312: -69,-4 2313: -76,-4 - 3108: 17,-77 - 3528: -11,-63 + 3092: 17,-77 + 3511: -11,-63 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5138,7 +5117,7 @@ entities: 1663: 51,-17 2041: 22,-90 2317: -73,8 - 3107: 13,-75 + 3091: 13,-75 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5154,12 +5133,12 @@ entities: 2290: -79,-4 2315: -69,8 2316: -76,8 - 3110: 17,-75 + 3094: 17,-75 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN decals: - 3363: 46,-17 + 3346: 46,-17 - node: color: '#DE3A3A96' id: WarnFullGreyscale @@ -5204,9 +5183,9 @@ entities: 2040: 22,-91 2476: 8,-49 2477: 8,-48 - 3105: 13,-76 - 3527: -13,-62 - 3531: 23,18 + 3089: 13,-76 + 3510: -13,-62 + 3514: 23,18 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5217,7 +5196,7 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 3020: 42,-24 + 3007: 42,-24 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -5229,9 +5208,9 @@ entities: 1275: 44,-19 1276: 44,-18 1277: 44,-17 - 2665: -10,-75 - 2962: 42,-20 - 2963: 42,-19 + 2659: -10,-75 + 2949: 42,-20 + 2950: 42,-19 - node: color: '#334E6DC8' id: WarnLineGreyscaleN @@ -5242,7 +5221,7 @@ entities: id: WarnLineGreyscaleN decals: 1563: 41,-23 - 2961: 38,-22 + 2948: 38,-22 - node: color: '#A4610696' id: WarnLineGreyscaleN @@ -5266,12 +5245,12 @@ entities: 1398: -24,45 2243: -8,27 2244: -9,27 - 3548: -12,27 + 3531: -12,27 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 2898: -7,-68 + 2885: -7,-68 - node: color: '#F5DB9E96' id: WarnLineGreyscaleN @@ -5290,15 +5269,15 @@ entities: 2487: -2,-35 2512: 0,-52 2513: -2,-52 - 2692: 9,-73 - 2693: 8,-73 - 2694: 3,-73 - 2695: 4,-73 - 2823: 8,16 - 2824: 9,16 - 2902: 3,-66 - 2903: 8,-66 - 2965: 41,-18 + 2686: 9,-73 + 2687: 8,-73 + 2688: 3,-73 + 2689: 4,-73 + 2817: 8,16 + 2818: 9,16 + 2889: 3,-66 + 2890: 8,-66 + 2952: 41,-18 - node: color: '#334E6DC8' id: WarnLineGreyscaleS @@ -5338,10 +5317,10 @@ entities: 1393: -6,43 2092: 6,26 2093: 4,26 - 3538: -9,34 - 3539: -8,34 - 3547: -14,26 - 3583: -15,34 + 3521: -9,34 + 3522: -8,34 + 3530: -14,26 + 3566: -15,34 - node: color: '#EFB34196' id: WarnLineGreyscaleS @@ -5358,21 +5337,21 @@ entities: 2488: 0,-33 2489: -1,-33 2490: -2,-33 - 2688: 9,-76 - 2689: 5,-76 - 2690: 4,-76 - 2691: 3,-76 - 2904: 3,-71 - 2905: 4,-71 - 2906: 8,-71 - 2911: -7,-71 - 2912: -6,-71 - 2913: -5,-71 - 3364: 46,-21 - 3365: 45,-21 - 3366: 44,-21 - 3367: 43,-21 - 3368: 42,-21 + 2682: 9,-76 + 2683: 5,-76 + 2684: 4,-76 + 2685: 3,-76 + 2891: 3,-71 + 2892: 4,-71 + 2893: 8,-71 + 2898: -7,-71 + 2899: -6,-71 + 2900: -5,-71 + 3347: 46,-21 + 3348: 45,-21 + 3349: 44,-21 + 3350: 43,-21 + 3351: 42,-21 - node: color: '#EFB34196' id: WarnLineGreyscaleW @@ -5392,9 +5371,9 @@ entities: 2395: 75,-15 2396: 75,-14 2397: 75,-13 - 2664: -8,-75 - 2909: -8,-69 - 2910: -8,-70 + 2658: -8,-75 + 2896: -8,-69 + 2897: -8,-70 - node: color: '#FFFFFFFF' id: WarnLineN @@ -5462,21 +5441,14 @@ entities: 2465: 11,-46 2466: 10,-46 2467: 9,-46 - 2606: 1,-79 - 2607: 0,-79 - 2608: -1,-79 - 2609: -2,-79 - 2610: -3,-79 - 2825: 18,-87 - 2826: 17,-87 - 2827: 16,-87 - 2828: 15,-87 - 2829: 14,-87 - 2830: 13,-87 - 2831: 12,-87 - 3102: 14,-75 - 3103: 15,-75 - 3104: 16,-75 + 2600: 1,-79 + 2601: 0,-79 + 2602: -1,-79 + 2603: -2,-79 + 2604: -3,-79 + 3086: 14,-75 + 3087: 15,-75 + 3088: 16,-75 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5537,12 +5509,12 @@ entities: 2393: -30,-39 2474: 8,-49 2475: 8,-48 - 3106: 17,-76 - 3526: -11,-62 - 3535: 25,18 - 3584: -11,34 - 3585: -11,35 - 3586: -11,36 + 3090: 17,-76 + 3509: -11,-62 + 3518: 25,18 + 3567: -11,34 + 3568: -11,35 + 3569: -11,36 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5618,70 +5590,70 @@ entities: 2471: 11,-46 2472: 10,-46 2473: 9,-46 - 2832: 13,-84 - 2833: 14,-84 - 2834: 15,-84 - 2835: 16,-84 - 2836: 17,-84 - 2837: 18,-84 - 3099: 14,-77 - 3100: 15,-77 - 3101: 16,-77 - 3525: -12,-63 + 2819: 13,-84 + 2820: 14,-84 + 2821: 15,-84 + 2822: 16,-84 + 2823: 17,-84 + 2824: 18,-84 + 3083: 14,-77 + 3084: 15,-77 + 3085: 16,-77 + 3508: -12,-63 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 3201: -31,-25 - 3415: 12,-26 + 3184: -31,-25 + 3398: 12,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 3204: -34,-25 - 3422: 6,-26 + 3187: -34,-25 + 3405: 6,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 2443: 12,-37 - 3416: 12,-27 + 3399: 12,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 2444: 10,-37 - 3421: 6,-27 + 3404: 6,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 3412: 9,-25 + 3395: 9,-25 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 3411: 9,-28 + 3394: 9,-28 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 3428: 9,-26 + 3411: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 3427: 9,-26 + 3410: 9,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 3426: 9,-27 + 3409: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 3425: 9,-27 + 3408: 9,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -5694,17 +5666,17 @@ entities: 1233: 11,-15 1234: 11,-14 1235: 11,-13 - 2971: 12,-36 - 3198: -31,-28 - 3199: -31,-27 - 3200: -31,-26 - 3518: -12,-28 - 3519: -12,-27 - 3520: -12,-26 - 3521: -12,-25 - 3522: -12,-24 - 3523: -12,-23 - 3524: -12,-22 + 2958: 12,-36 + 3181: -31,-28 + 3182: -31,-27 + 3183: -31,-26 + 3501: -12,-28 + 3502: -12,-27 + 3503: -12,-26 + 3504: -12,-25 + 3505: -12,-24 + 3506: -12,-23 + 3507: -12,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -5728,16 +5700,16 @@ entities: 1642: 55,-38 1643: 56,-38 1644: 57,-38 - 3194: -34,-29 - 3195: -33,-29 - 3196: -32,-29 - 3197: -31,-29 - 3202: -32,-25 - 3203: -33,-25 - 3413: 10,-26 - 3414: 11,-26 - 3423: 7,-26 - 3424: 8,-26 + 3177: -34,-29 + 3178: -33,-29 + 3179: -32,-29 + 3180: -31,-29 + 3185: -32,-25 + 3186: -33,-25 + 3396: 10,-26 + 3397: 11,-26 + 3406: 7,-26 + 3407: 8,-26 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -5752,27 +5724,27 @@ entities: 1351: -15,53 1352: -16,53 2445: 11,-37 - 3417: 11,-27 - 3418: 10,-27 - 3419: 8,-27 - 3420: 7,-27 + 3400: 11,-27 + 3401: 10,-27 + 3402: 8,-27 + 3403: 7,-27 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2838: 32,-1 - 2839: 32,0 - 2972: 10,-36 - 3205: -34,-28 - 3206: -34,-27 - 3207: -34,-26 - 3511: -8,-28 - 3512: -8,-27 - 3513: -8,-26 - 3514: -8,-25 - 3515: -8,-24 - 3516: -8,-23 - 3517: -8,-22 + 2825: 32,-1 + 2826: 32,0 + 2959: 10,-36 + 3188: -34,-28 + 3189: -34,-27 + 3190: -34,-26 + 3494: -8,-28 + 3495: -8,-27 + 3496: -8,-26 + 3497: -8,-25 + 3498: -8,-24 + 3499: -8,-23 + 3500: -8,-22 - node: color: '#FFFFFFFF' id: bushsnowa2 @@ -5797,9 +5769,9 @@ entities: color: '#FFFFFFFF' id: thinline decals: - 3661: 32.88275,8.297449 - 3662: 32.88275,9.188074 - 3663: 32.88275,10.078699 + 3644: 32.88275,8.297449 + 3645: 32.88275,9.188074 + 3646: 32.88275,10.078699 - type: GridAtmosphere version: 2 data: @@ -6453,7 +6425,8 @@ entities: 0,8: 0: 65535 0,9: - 0: 65535 + 0: 32767 + 3: 32768 0,10: 0: 65535 0,11: @@ -6461,7 +6434,8 @@ entities: 1,8: 0: 65535 1,9: - 0: 65535 + 0: 61439 + 3: 4096 1,10: 0: 65535 1,11: @@ -6540,7 +6514,7 @@ entities: 0: 52462 8,0: 0: 65527 - 3: 8 + 4: 8 8,1: 0: 65295 8,2: @@ -6548,7 +6522,7 @@ entities: 8,3: 0: 65535 9,0: - 3: 15 + 4: 15 0: 65520 9,1: 0: 65487 @@ -6557,7 +6531,7 @@ entities: 9,3: 0: 32767 10,0: - 3: 1 + 4: 1 0: 65534 10,1: 0: 65535 @@ -6901,7 +6875,7 @@ entities: 0: 65535 8,-1: 0: 30591 - 3: 34944 + 4: 34944 9,-4: 0: 65535 9,-3: @@ -6910,7 +6884,7 @@ entities: 0: 65535 9,-1: 0: 15 - 3: 65520 + 4: 65520 10,-4: 0: 65535 10,-3: @@ -6919,7 +6893,7 @@ entities: 0: 65535 10,-1: 0: 61167 - 3: 4368 + 4: 4368 11,-4: 0: 65535 11,-3: @@ -7746,7 +7720,7 @@ entities: 0: 65535 4,-17: 0: 34959 - 4: 30576 + 5: 30576 5,-20: 0: 62813 5,-19: @@ -7946,14 +7920,15 @@ entities: 2,-17: 0: 65535 3,-20: - 0: 65535 + 0: 64511 + 6: 1024 3,-19: 0: 65535 3,-18: 0: 65535 3,-17: 0: 34959 - 5: 30576 + 7: 30576 0,-24: 0: 65416 0,-23: @@ -7981,7 +7956,8 @@ entities: 3,-23: 0: 61440 3,-22: - 0: 65535 + 0: 63487 + 8: 2048 -4,-24: 0: 310 -4,-23: @@ -8309,7 +8285,8 @@ entities: -10,-9: 0: 63624 4,-20: - 0: 65535 + 0: 65279 + 6: 256 5,-18: 0: 4607 -16,5: @@ -8425,11 +8402,14 @@ entities: 2,-24: 0: 12544 3,-21: - 0: 65535 + 0: 64511 + 9: 1024 4,-22: 0: 65535 4,-21: - 0: 65535 + 6: 1 + 0: 65278 + 9: 256 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8476,6 +8456,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -8506,6 +8501,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14987 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -8521,6 +8531,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14993 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: Joint joints: @@ -11408,7 +11448,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -1003.90155 + secondsUntilStateChange: -3331.5208 state: Opening - type: DeviceLinkSource lastSignals: @@ -14671,6 +14711,17 @@ entities: rot: 1.5707963267948966 rad pos: 87.5,-3.5 parent: 8364 + - uid: 7209 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 8364 + - uid: 9934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 8364 - uid: 12475 components: - type: Transform @@ -14689,6 +14740,12 @@ entities: rot: 3.141592653589793 rad pos: -70.5,-2.5 parent: 8364 + - uid: 13399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 8364 - uid: 13779 components: - type: Transform @@ -14740,23 +14797,6 @@ entities: - type: Transform pos: -0.5,-0.5 parent: 11906 -- proto: AtmosDeviceFanTiny - entities: - - uid: 7209 - components: - - type: Transform - pos: 36.5,-3.5 - parent: 8364 - - uid: 9934 - components: - - type: Transform - pos: 36.5,1.5 - parent: 8364 - - uid: 13399 - components: - - type: Transform - pos: 41.5,-0.5 - parent: 8364 - proto: AtmosFixBlockerMarker entities: - uid: 110 @@ -17003,6 +17043,11 @@ entities: - type: Transform pos: 9.5,-77.5 parent: 8364 + - uid: 144 + components: + - type: Transform + pos: 14.5,-77.5 + parent: 8364 - uid: 346 components: - type: Transform @@ -17608,6 +17653,11 @@ entities: - type: Transform pos: 34.5,-64.5 parent: 8364 + - uid: 3681 + components: + - type: Transform + pos: 11.5,-74.5 + parent: 8364 - uid: 3699 components: - type: Transform @@ -17666,12 +17716,12 @@ entities: - uid: 3735 components: - type: Transform - pos: 18.5,-84.5 + pos: 11.5,-72.5 parent: 8364 - uid: 3736 components: - type: Transform - pos: 18.5,-85.5 + pos: 11.5,-71.5 parent: 8364 - uid: 3745 components: @@ -17698,16 +17748,46 @@ entities: - type: Transform pos: 4.5,-70.5 parent: 8364 + - uid: 3820 + components: + - type: Transform + pos: 11.5,-79.5 + parent: 8364 + - uid: 3822 + components: + - type: Transform + pos: 11.5,-73.5 + parent: 8364 + - uid: 3823 + components: + - type: Transform + pos: 11.5,-77.5 + parent: 8364 + - uid: 3826 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 8364 - uid: 3827 components: - type: Transform pos: 5.5,-70.5 parent: 8364 + - uid: 3828 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 8364 - uid: 3839 components: - type: Transform pos: -13.5,-68.5 parent: 8364 + - uid: 3864 + components: + - type: Transform + pos: 11.5,-80.5 + parent: 8364 - uid: 3879 components: - type: Transform @@ -17778,20 +17858,35 @@ entities: - type: Transform pos: 2.5,-63.5 parent: 8364 + - uid: 4005 + components: + - type: Transform + pos: 13.5,-77.5 + parent: 8364 - uid: 4031 components: - type: Transform pos: -19.5,-72.5 parent: 8364 + - uid: 4032 + components: + - type: Transform + pos: 11.5,-78.5 + parent: 8364 - uid: 4040 components: - type: Transform pos: 26.5,-71.5 parent: 8364 + - uid: 4042 + components: + - type: Transform + pos: 11.5,-76.5 + parent: 8364 - uid: 4048 components: - type: Transform - pos: 12.5,-81.5 + pos: 11.5,-75.5 parent: 8364 - uid: 4058 components: @@ -17836,7 +17931,7 @@ entities: - uid: 4699 components: - type: Transform - pos: 12.5,-79.5 + pos: 18.5,-77.5 parent: 8364 - uid: 4710 components: @@ -27578,11 +27673,6 @@ entities: - type: Transform pos: -2.5,11.5 parent: 8364 - - uid: 13665 - components: - - type: Transform - pos: 12.5,-80.5 - parent: 8364 - uid: 13693 components: - type: Transform @@ -32238,11 +32328,6 @@ entities: - type: Transform pos: 13.5,-71.5 parent: 8364 - - uid: 16825 - components: - - type: Transform - pos: 18.5,-86.5 - parent: 8364 - uid: 16833 components: - type: Transform @@ -32313,16 +32398,6 @@ entities: - type: Transform pos: 6.5,-53.5 parent: 8364 - - uid: 16914 - components: - - type: Transform - pos: 19.5,-78.5 - parent: 8364 - - uid: 16915 - components: - - type: Transform - pos: 19.5,-75.5 - parent: 8364 - uid: 16917 components: - type: Transform @@ -32398,11 +32473,6 @@ entities: - type: Transform pos: 10.5,-46.5 parent: 8364 - - uid: 17002 - components: - - type: Transform - pos: 19.5,-79.5 - parent: 8364 - uid: 17016 components: - type: Transform @@ -32448,11 +32518,6 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 8364 - - uid: 17088 - components: - - type: Transform - pos: 18.5,-81.5 - parent: 8364 - uid: 17096 components: - type: Transform @@ -32703,11 +32768,6 @@ entities: - type: Transform pos: 7.5,-50.5 parent: 8364 - - uid: 17383 - components: - - type: Transform - pos: 12.5,-74.5 - parent: 8364 - uid: 17392 components: - type: Transform @@ -33003,16 +33063,6 @@ entities: - type: Transform pos: 5.5,-49.5 parent: 8364 - - uid: 17570 - components: - - type: Transform - pos: 19.5,-81.5 - parent: 8364 - - uid: 17571 - components: - - type: Transform - pos: 19.5,-80.5 - parent: 8364 - uid: 17596 components: - type: Transform @@ -33038,11 +33088,6 @@ entities: - type: Transform pos: -16.5,-71.5 parent: 8364 - - uid: 17781 - components: - - type: Transform - pos: 19.5,-74.5 - parent: 8364 - uid: 17782 components: - type: Transform @@ -35158,11 +35203,6 @@ entities: - type: Transform pos: 41.5,-24.5 parent: 8364 - - uid: 18758 - components: - - type: Transform - pos: 12.5,-72.5 - parent: 8364 - uid: 18760 components: - type: Transform @@ -36493,11 +36533,6 @@ entities: - type: Transform pos: 77.5,-57.5 parent: 8364 - - uid: 20006 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 8364 - uid: 20014 components: - type: Transform @@ -38328,21 +38363,6 @@ entities: - type: Transform pos: 17.5,31.5 parent: 8364 - - uid: 22758 - components: - - type: Transform - pos: 12.5,-77.5 - parent: 8364 - - uid: 22764 - components: - - type: Transform - pos: 12.5,-76.5 - parent: 8364 - - uid: 22770 - components: - - type: Transform - pos: 12.5,-75.5 - parent: 8364 - uid: 22818 components: - type: Transform @@ -38368,11 +38388,6 @@ entities: - type: Transform pos: 25.5,-71.5 parent: 8364 - - uid: 22858 - components: - - type: Transform - pos: 18.5,-77.5 - parent: 8364 - uid: 22931 components: - type: Transform @@ -38398,21 +38413,6 @@ entities: - type: Transform pos: 18.5,-71.5 parent: 8364 - - uid: 22975 - components: - - type: Transform - pos: 12.5,-78.5 - parent: 8364 - - uid: 22976 - components: - - type: Transform - pos: 12.5,-73.5 - parent: 8364 - - uid: 22977 - components: - - type: Transform - pos: 12.5,-71.5 - parent: 8364 - uid: 22986 components: - type: Transform @@ -38643,16 +38643,6 @@ entities: - type: Transform pos: -11.5,-77.5 parent: 8364 - - uid: 26627 - components: - - type: Transform - pos: 19.5,-77.5 - parent: 8364 - - uid: 26628 - components: - - type: Transform - pos: 19.5,-76.5 - parent: 8364 - uid: 26629 components: - type: Transform @@ -68529,6 +68519,22 @@ entities: - type: Transform pos: 66.509186,-76.72045 parent: 8364 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 20856 + components: + - type: Transform + parent: 11965 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20857 + components: + - type: Transform + parent: 17151 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHoodieGrey entities: - uid: 21633 @@ -85301,14 +85307,6 @@ entities: - type: Transform pos: 15.5,-52.5 parent: 8364 - - uid: 3823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 12676 components: - type: Transform @@ -85327,6 +85325,14 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-64.5 parent: 8364 + - uid: 16540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 16760 components: - type: Transform @@ -85351,6 +85357,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17222 components: - type: Transform @@ -85383,22 +85397,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 17673 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20140 components: - type: Transform @@ -85464,22 +85462,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 3822 + - uid: 4140 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-73.5 + pos: 10.5,-47.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4140 + color: '#0335FCFF' + - uid: 4508 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 16.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#947507FF' - uid: 4512 components: - type: Transform @@ -85534,14 +85532,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4561 components: - type: Transform @@ -85558,6 +85548,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 4572 components: - type: Transform @@ -85565,6 +85563,36 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4610 + components: + - type: Transform + pos: 14.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4678 + components: + - type: Transform + pos: 14.5,-80.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5202 components: - type: Transform @@ -85939,30 +85967,38 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15876 + - uid: 15880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-72.5 + rot: 3.141592653589793 rad + pos: 14.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15877 + color: '#947507FF' + - uid: 15881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-76.5 + rot: 1.5707963267948966 rad + pos: 16.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15879 + - uid: 15890 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-76.5 + pos: 18.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' + - uid: 15892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-78.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15898 components: - type: Transform @@ -86010,14 +86046,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 16880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 16882 components: - type: Transform @@ -86033,14 +86061,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 16936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16988 components: - type: Transform @@ -86072,28 +86092,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17029 - components: - - type: Transform - pos: 14.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17057 - components: - - type: Transform - pos: 17.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17095 components: - type: Transform @@ -86154,13 +86152,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17156 - components: - - type: Transform - pos: 17.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 17203 components: - type: Transform @@ -86238,37 +86229,38 @@ entities: rot: 3.141592653589793 rad pos: -44.5,15.5 parent: 8364 - - uid: 17365 + - uid: 17384 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-77.5 + pos: 21.5,-40.5 parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17384 + - uid: 17565 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-40.5 + pos: 17.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17564 + color: '#03FCD3FF' + - uid: 17675 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-82.5 + pos: 14.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17607 + color: '#947507FF' + - uid: 17704 components: - type: Transform - pos: 15.5,-82.5 + rot: -1.5707963267948966 rad + pos: 16.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 18600 components: - type: Transform @@ -86285,14 +86277,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 19247 components: - type: Transform @@ -86307,22 +86291,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 20124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20202 components: - type: Transform @@ -86356,14 +86324,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-33.5 parent: 8364 - - uid: 22736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22744 components: - type: Transform @@ -87209,13 +87169,6 @@ entities: parent: 8364 - proto: GasPipeFourway entities: - - uid: 5240 - components: - - type: Transform - pos: 14.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 5316 components: - type: Transform @@ -87574,14 +87527,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 750 components: - type: Transform @@ -87634,14 +87579,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 3681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-78.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3682 components: - type: Transform @@ -87714,30 +87651,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 3820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-72.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3837 components: - type: Transform @@ -87754,6 +87667,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 3865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 3878 components: - type: Transform @@ -87911,6 +87832,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4136 + components: + - type: Transform + pos: 17.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 4147 components: - type: Transform @@ -87982,6 +87910,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 4498 components: - type: Transform @@ -87995,14 +87931,14 @@ entities: pos: 17.5,-82.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 4502 components: - type: Transform pos: 13.5,-82.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4509 components: - type: Transform @@ -88080,11 +88016,10 @@ entities: - uid: 4538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-73.5 + pos: 15.5,-83.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 4539 components: - type: Transform @@ -88099,19 +88034,32 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4541 + - uid: 4559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-74.5 + rot: 3.141592653589793 rad + pos: 19.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4559 + color: '#947507FF' + - uid: 4560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-72.5 + pos: 16.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 4564 + components: + - type: Transform + pos: 15.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 4565 + components: + - type: Transform + pos: 14.5,-82.5 parent: 8364 - type: AtmosPipeColor color: '#947507FF' @@ -88139,6 +88087,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 4612 + components: + - type: Transform + pos: 17.5,-79.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 4650 + components: + - type: Transform + pos: 16.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4680 components: - type: Transform @@ -88150,10 +88120,11 @@ entities: - uid: 4684 components: - type: Transform - pos: 14.5,-74.5 + rot: -1.5707963267948966 rad + pos: 26.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#EB2828FF' + color: '#03FCD3FF' - uid: 5068 components: - type: Transform @@ -89381,11 +89352,26 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 13665 + components: + - type: Transform + pos: 13.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 14087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-76.5 + rot: -1.5707963267948966 rad + pos: 19.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' @@ -89437,60 +89423,77 @@ entities: - uid: 15543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-75.5 + rot: -1.5707963267948966 rad + pos: 18.5,-72.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 15544 components: - type: Transform - pos: 13.5,-73.5 + rot: 3.141592653589793 rad + pos: 14.5,-76.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15546 + color: '#03FCD3FF' + - uid: 15876 + components: + - type: Transform + pos: 14.5,-84.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15877 + components: + - type: Transform + pos: 14.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15878 components: - type: Transform pos: 13.5,-74.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15881 + color: '#990000FF' + - uid: 15879 components: - type: Transform - pos: 17.5,-75.5 + pos: 13.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 15882 components: - type: Transform - pos: 17.5,-74.5 + pos: 16.5,-74.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 15883 components: - type: Transform - pos: 17.5,-73.5 + pos: 13.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 15890 + color: '#990000FF' + - uid: 15889 components: - type: Transform - pos: 12.5,-79.5 + rot: -1.5707963267948966 rad + pos: 22.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 15891 components: - type: Transform - pos: 12.5,-78.5 + rot: -1.5707963267948966 rad + pos: 21.5,-72.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#03FCD3FF' - uid: 16511 components: - type: Transform @@ -89607,6 +89610,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#3AB334FF' + - uid: 16825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-72.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 16888 components: - type: Transform @@ -89639,6 +89658,29 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 16914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16936 + components: + - type: Transform + pos: 17.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 16984 components: - type: Transform @@ -89663,6 +89705,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17002 + components: + - type: Transform + pos: 13.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17003 components: - type: Transform @@ -89718,13 +89767,28 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 17028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17029 + components: + - type: Transform + pos: 17.5,-76.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17030 components: - type: Transform - pos: 16.5,-74.5 + pos: 13.5,-77.5 parent: 8364 - type: AtmosPipeColor - color: '#28EBD7FF' + color: '#990000FF' - uid: 17047 components: - type: Transform @@ -89764,6 +89828,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 17057 + components: + - type: Transform + pos: 14.5,-83.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 17083 components: - type: Transform @@ -90017,6 +90088,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 17212 + components: + - type: Transform + pos: 16.5,-82.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - uid: 17213 components: - type: Transform @@ -90304,6 +90382,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17466 components: - type: Transform @@ -90344,14 +90430,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17565 + - uid: 17564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-81.5 + pos: 15.5,-80.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 17569 components: - type: Transform @@ -90423,37 +90508,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 17704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17707 - components: - - type: Transform - pos: 15.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 17794 components: - type: Transform @@ -90594,13 +90648,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 19953 - components: - - type: Transform - pos: 13.5,-75.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 19957 components: - type: Transform @@ -90609,22 +90656,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 20068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20125 components: - type: Transform @@ -90641,14 +90672,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 20135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-83.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20153 components: - type: Transform @@ -90739,14 +90762,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 22747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22749 components: - type: Transform @@ -90755,14 +90770,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 22750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22760 components: - type: Transform @@ -91138,14 +91145,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 22921 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-73.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 22922 components: - type: Transform @@ -106072,22 +106071,6 @@ entities: - type: Transform pos: 22.5,-92.5 parent: 8364 - - uid: 27425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-84.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 27426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-86.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 27548 components: - type: Transform @@ -106178,42 +106161,26 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-83.5 + pos: 13.5,-80.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4565 + color: '#990000FF' + - uid: 4541 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-77.5 + pos: 17.5,-78.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4577 + - uid: 5240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-84.5 + pos: 13.5,-78.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5261 components: - type: Transform @@ -106373,45 +106340,22 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15878 + - uid: 15546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-76.5 + pos: 17.5,-80.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 15880 + - uid: 15549 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-76.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15889 - components: - - type: Transform - pos: 13.5,-80.5 + pos: -1.5,-47.5 parent: 8364 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-77.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16338 components: - type: Transform @@ -106428,14 +106372,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 16540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-74.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 16604 components: - type: Transform @@ -106501,11 +106437,10 @@ entities: - uid: 17063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-84.5 + pos: 15.5,-79.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - uid: 17064 components: - type: Transform @@ -106552,6 +106487,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 17221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 17261 components: - type: Transform @@ -106597,6 +106540,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' + - uid: 17570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' - uid: 17590 components: - type: Transform @@ -106611,13 +106562,14 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 17775 + - uid: 17673 components: - type: Transform - pos: 17.5,-80.5 + rot: 3.141592653589793 rad + pos: 15.5,-85.5 parent: 8364 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 17870 components: - type: Transform @@ -106649,22 +106601,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 20066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 20070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-80.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 20185 components: - type: Transform @@ -108735,14 +108671,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 27418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-85.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - proto: GasPort entities: - uid: 409 @@ -108779,22 +108707,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-47.5 parent: 8364 - - uid: 4563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-78.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-78.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 5596 components: - type: Transform @@ -108872,15 +108784,11 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#947507FF' - - uid: 17207 - components: - - type: Transform - pos: 14.5,-78.5 - parent: 8364 - - uid: 17208 + - uid: 17571 components: - type: Transform - pos: 16.5,-78.5 + rot: 1.5707963267948966 rad + pos: 21.5,-73.5 parent: 8364 - uid: 18298 components: @@ -108911,6 +108819,38 @@ entities: rot: -1.5707963267948966 rad pos: 86.5,-48.5 parent: 8364 + - uid: 20069 + components: + - type: Transform + pos: 18.5,-76.5 + parent: 8364 + - uid: 20070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-75.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20135 + components: + - type: Transform + pos: 12.5,-76.5 + parent: 8364 + - uid: 20136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-73.5 + parent: 8364 - uid: 20802 components: - type: Transform @@ -108988,24 +108928,12 @@ entities: - type: Transform pos: 22.5,-91.5 parent: 8364 - - uid: 27550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-72.5 - parent: 8364 - uid: 27551 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-72.5 parent: 8364 - - uid: 27552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-72.5 - parent: 8364 - uid: 27553 components: - type: Transform @@ -109119,13 +109047,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 17212 - components: - - type: Transform - pos: 14.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17218 components: - type: MetaData @@ -109156,13 +109077,6 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 17221 - components: - - type: Transform - pos: 16.5,-79.5 - parent: 8364 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 17568 components: - type: Transform @@ -109177,6 +109091,20 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 20066 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20068 + components: + - type: Transform + pos: 18.5,-77.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 22840 components: - type: Transform @@ -109237,6 +109165,12 @@ entities: - type: Transform pos: 38.5,0.5 parent: 8364 + - uid: 20859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-73.5 + parent: 8364 - uid: 21274 components: - type: Transform @@ -109257,12 +109191,6 @@ entities: - type: Transform pos: 18.5,-50.5 parent: 8364 - - uid: 27380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-72.5 - parent: 8364 - proto: GasThermoMachineHeater entities: - uid: 3803 @@ -109281,63 +109209,97 @@ entities: - type: Transform pos: 12.5,-51.5 parent: 8364 + - uid: 20858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-73.5 + parent: 8364 - uid: 21405 components: - type: Transform pos: 74.5,-47.5 parent: 8364 - - uid: 27549 +- proto: GasValve + entities: + - uid: 17062 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-72.5 + pos: 20.5,-71.5 parent: 8364 -- proto: GasValve - entities: - - uid: 4136 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' + - uid: 17339 components: - type: Transform - pos: 13.5,-81.5 + rot: 3.141592653589793 rad + pos: 15.5,-56.5 + parent: 8364 + - type: GasValve + open: False + - uid: 17707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-78.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4228 + color: '#947507FF' + - uid: 17719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-78.5 + parent: 8364 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' + - uid: 17766 components: - type: Transform + rot: 3.141592653589793 rad pos: 17.5,-81.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 14079 + - uid: 17775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-80.5 + rot: 3.141592653589793 rad + pos: 16.5,-81.5 parent: 8364 - type: GasValve open: False - - uid: 17062 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 17781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-71.5 + rot: 3.141592653589793 rad + pos: 14.5,-81.5 parent: 8364 - type: GasValve open: False - type: AtmosPipeColor - color: '#947507FF' - - uid: 17339 + color: '#990000FF' + - uid: 18758 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-56.5 + pos: 13.5,-81.5 parent: 8364 - type: GasValve open: False + - type: AtmosPipeColor + color: '#990000FF' - uid: 22843 components: - type: MetaData @@ -112182,21 +112144,37 @@ entities: color: '#FF1212FF' - proto: GasVolumePump entities: - - uid: 17031 + - uid: 4577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-74.5 + parent: 8364 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 19073 components: - type: Transform pos: 16.5,-73.5 parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 17159 + - uid: 19953 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-73.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 20006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-81.5 + parent: 8364 + - type: AtmosPipeColor + color: '#947507FF' - proto: GeigerCounter entities: - uid: 26819 @@ -115238,11 +115216,6 @@ entities: - type: Transform pos: 26.5,-80.5 parent: 8364 - - uid: 4508 - components: - - type: Transform - pos: 15.5,-82.5 - parent: 8364 - uid: 4511 components: - type: Transform @@ -115388,16 +115361,6 @@ entities: - type: Transform pos: -11.5,-88.5 parent: 8364 - - uid: 4610 - components: - - type: Transform - pos: 16.5,-82.5 - parent: 8364 - - uid: 4612 - components: - - type: Transform - pos: 17.5,-82.5 - parent: 8364 - uid: 4613 components: - type: Transform @@ -115523,21 +115486,6 @@ entities: - type: Transform pos: -20.5,-76.5 parent: 8364 - - uid: 4648 - components: - - type: Transform - pos: 14.5,-82.5 - parent: 8364 - - uid: 4650 - components: - - type: Transform - pos: 18.5,-82.5 - parent: 8364 - - uid: 4678 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 8364 - uid: 4685 components: - type: Transform @@ -120145,14 +120093,13 @@ entities: parent: 8364 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 27427 + - uid: 17607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-85.5 + pos: 15.5,-84.5 parent: 8364 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#947507FF' - proto: Hemostat entities: - uid: 13776 @@ -130389,6 +130336,7 @@ entities: - uid: 26104 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: 18.5,-86.5 parent: 8364 @@ -132753,36 +132701,6 @@ entities: - type: Transform pos: 44.5,-54.5 parent: 8364 - - uid: 3864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-82.5 - parent: 8364 - - uid: 3865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-82.5 - parent: 8364 - - uid: 4005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-82.5 - parent: 8364 - - uid: 4032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-82.5 - parent: 8364 - - uid: 4042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-82.5 - parent: 8364 - uid: 5799 components: - type: Transform @@ -132833,11 +132751,6 @@ entities: - type: Transform pos: 17.5,-50.5 parent: 8364 - - uid: 22737 - components: - - type: Transform - pos: 13.5,-82.5 - parent: 8364 - uid: 22830 components: - type: Transform @@ -137038,6 +136951,11 @@ entities: - type: Transform pos: 2.5,-41.5 parent: 8364 + - uid: 17088 + components: + - type: Transform + pos: 14.5,-82.5 + parent: 8364 - uid: 17093 components: - type: Transform @@ -137048,6 +136966,16 @@ entities: - type: Transform pos: 7.5,-45.5 parent: 8364 + - uid: 17156 + components: + - type: Transform + pos: 15.5,-82.5 + parent: 8364 + - uid: 17159 + components: + - type: Transform + pos: 16.5,-82.5 + parent: 8364 - uid: 17205 components: - type: Transform @@ -137060,6 +136988,21 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-43.5 parent: 8364 + - uid: 17207 + components: + - type: Transform + pos: 13.5,-82.5 + parent: 8364 + - uid: 17208 + components: + - type: Transform + pos: 17.5,-82.5 + parent: 8364 + - uid: 17365 + components: + - type: Transform + pos: 18.5,-82.5 + parent: 8364 - uid: 17455 components: - type: Transform @@ -143864,6 +143807,31 @@ entities: - type: Transform pos: 3.5,39.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20856 - uid: 16531 components: - type: Transform @@ -143874,6 +143842,31 @@ entities: - type: Transform pos: 4.5,39.5 parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20857 - proto: SuitStorageWarden entities: - uid: 11999 diff --git a/Resources/Maps/cluster.yml b/Resources/Maps/cluster.yml index a8c3becaf3d..32f860cae6e 100644 --- a/Resources/Maps/cluster.yml +++ b/Resources/Maps/cluster.yml @@ -7605,6 +7605,18 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,3.5 parent: 1 + - uid: 3147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 3148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 - uid: 4816 components: - type: Transform @@ -7647,18 +7659,6 @@ entities: rot: 3.141592653589793 rad pos: 23.5,38.5 parent: 1 -- proto: AtmosDeviceFanTiny - entities: - - uid: 3147 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - uid: 3148 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1 - proto: AtmosFixBlockerMarker entities: - uid: 7260 diff --git a/Resources/Maps/corvax_avrite.yml b/Resources/Maps/corvax_avrite.yml index bc69f588c16..939c3fc2b12 100644 --- a/Resources/Maps/corvax_avrite.yml +++ b/Resources/Maps/corvax_avrite.yml @@ -129,7 +129,7 @@ entities: - uid: 1 components: - type: MetaData - name: map 30 + name: Avrite - type: Transform - type: Map mapPaused: True @@ -144,7 +144,7 @@ entities: - uid: 2 components: - type: MetaData - name: grid + name: Avrite station - type: Transform pos: -0.5,-0.4375 parent: 1 @@ -851,113 +851,113 @@ entities: color: '#A700DF59' id: 0 decals: - 16179: -61.654747,50.21939 - 16180: -60.592247,48.828766 - 16181: -60.451622,48.828766 - 16182: -61.451622,50.28189 - 16183: -59.842247,50.391266 - 16184: -59.701622,50.360016 + 15912: -61.654747,50.21939 + 15913: -60.592247,48.828766 + 15914: -60.451622,48.828766 + 15915: -61.451622,50.28189 + 15916: -59.842247,50.391266 + 15917: -59.701622,50.360016 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: 1 decals: - 10371: -49,-37 - 10372: -49,-43 + 10104: -49,-37 + 10105: -49,-43 - node: cleanable: True color: '#1861D5FF' id: 2 decals: - 1254: -75.04729,21.859375 + 1207: -75.04729,21.859375 - node: cleanable: True color: '#951710FF' id: 2 decals: - 1253: -76.01604,22.140625 + 1206: -76.01604,22.140625 - node: zIndex: 60 color: '#A700DF59' id: 2 decals: - 16170: -62.217247,50.18814 - 16171: -61.185997,48.828766 - 16172: -60.310997,50.34439 + 15903: -62.217247,50.18814 + 15904: -61.185997,48.828766 + 15905: -60.310997,50.34439 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: 2 decals: - 10373: -50,-43 - 10374: -50,-37 + 10106: -50,-43 + 10107: -50,-37 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: 3 decals: - 10375: -51,-43 - 10376: -51,-37 + 10108: -51,-43 + 10109: -51,-37 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: 4 decals: - 10377: -52,-43 - 10378: -52,-37 + 10110: -52,-43 + 10111: -52,-37 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: 5 decals: - 10379: -53,-37 - 10380: -53,-43 + 10112: -53,-37 + 10113: -53,-43 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: 6 decals: - 10381: -54,-43 - 10382: -54,-37 + 10114: -54,-43 + 10115: -54,-37 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: 7 decals: - 10383: -55,-43 - 10384: -55,-37 + 10116: -55,-43 + 10117: -55,-37 - node: cleanable: True color: '#D5188DFF' id: 8 decals: - 1255: -74.29729,22.265625 + 1208: -74.29729,22.265625 - node: color: '#FFFFFFFF' id: Arrows decals: - 11424: -29,-3 + 11157: -29,-3 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 2442: 81,-3 + 2395: 81,-3 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 885: 68,-6 - 2286: 58,2 - 11425: -23,-3 + 838: 68,-6 + 2239: 58,2 + 11158: -23,-3 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: ArrowsGreyscale decals: - 2289: 56,2 - 2290: 57,2 + 2242: 56,2 + 2243: 57,2 - node: color: '#FFFFFFFF' id: Basalt1 @@ -965,23 +965,23 @@ entities: 639: -101.94546,0.7961118 643: -114.93956,13.517784 644: -114.7845,4.3146305 - 1244: -45.879574,48.932552 - 5315: 0.08361673,79.23561 - 5316: 0.7398665,79.04811 - 5336: -11.448912,73.64757 - 5337: -14.402037,73.60069 - 5338: -14.870786,74.28819 - 6760: 11.991004,-69.915535 - 6761: 18.008902,-72.49366 - 8472: 3.5264568,-21.851084 + 1197: -45.879574,48.932552 + 5118: 0.08361673,79.23561 + 5119: 0.7398665,79.04811 + 5139: -11.448912,73.64757 + 5140: -14.402037,73.60069 + 5141: -14.870786,74.28819 + 6511: 11.991004,-69.915535 + 6512: 18.008902,-72.49366 + 8205: 3.5264568,-21.851084 - node: zIndex: 60 color: '#FFFFFFFF' id: Basalt1 decals: - 15831: -82.81665,36.27815 - 15834: -77.72689,33.722324 - 15841: -76.805016,39.916313 + 15564: -82.81665,36.27815 + 15567: -77.72689,33.722324 + 15574: -76.805016,39.916313 - node: color: '#FFFFFFFF' id: Basalt2 @@ -993,195 +993,195 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 15833: -82.5354,35.1844 - 15838: -77.867516,38.71319 + 15566: -82.5354,35.1844 + 15571: -77.867516,38.71319 - node: color: '#FFFFFFFF' id: Basalt3 decals: 646: -105.555145,10.978873 - 5318: -1.0726335,78.157486 - 5319: -1.8848606,73.198425 - 5335: -1.3395357,75.44444 + 5121: -1.0726335,78.157486 + 5122: -1.8848606,73.198425 + 5138: -1.3395357,75.44444 - node: color: '#FFFFFFFF' id: Basalt4 decals: - 5317: -0.5570085,79.032486 + 5120: -0.5570085,79.032486 - node: color: '#FFFFFFFF' id: Basalt5 decals: 638: -98.16869,5.9079857 645: -104.25833,11.635123 - 5320: -9.009766,73.15155 - 6604: -17.598835,75.19385 - 6605: -17.442585,77.0376 - 6606: 3.606937,77.3501 - 6607: 4.638187,76.05322 - 6608: 2.872562,75.1001 - 15555: 24.017624,-46.968567 + 5123: -9.009766,73.15155 + 6355: -17.598835,75.19385 + 6356: -17.442585,77.0376 + 6357: 3.606937,77.3501 + 6358: 4.638187,76.05322 + 6359: 2.872562,75.1001 + 15288: 24.017624,-46.968567 - node: cleanable: True color: '#FFFFFFFF' id: Basalt5 decals: - 18156: -62,69 + 17889: -62,69 - node: zIndex: 60 color: '#FFFFFFFF' id: Basalt5 decals: - 15832: -83.207275,34.950024 - 15837: -76.78939,34.7692 - 15839: -78.180016,38.947563 + 15565: -83.207275,34.950024 + 15570: -76.78939,34.7692 + 15572: -78.180016,38.947563 - node: cleanable: True angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Basalt6 decals: - 18157: -63,69 + 17890: -63,69 - node: color: '#FFFFFFFF' id: Basalt6 decals: - 1245: -43.098324,47.791927 - 5321: -11.119141,73.229675 - 5322: -10.791015,76.3078 - 5323: -10.916015,75.760925 - 5324: -5.1972647,75.83905 - 5325: -3.86914,75.65155 - 5326: -8.30664,74.8078 - 5327: -6.5566406,72.073425 - 5328: -7.5097656,70.46405 - 5339: -5.206111,80.08118 - 5340: -8.877986,79.04993 - 5341: -8.315486,78.42493 - 5342: -11.315486,80.20618 - 5343: -2.846736,79.86409 - 5344: -0.87798595,80.30159 - 5345: -0.92486095,81.207146 - 8473: 4.1306233,-20.851084 - 8474: 6.318124,-20.288584 - 15556: 24.220747,-46.937317 + 1198: -43.098324,47.791927 + 5124: -11.119141,73.229675 + 5125: -10.791015,76.3078 + 5126: -10.916015,75.760925 + 5127: -5.1972647,75.83905 + 5128: -3.86914,75.65155 + 5129: -8.30664,74.8078 + 5130: -6.5566406,72.073425 + 5131: -7.5097656,70.46405 + 5142: -5.206111,80.08118 + 5143: -8.877986,79.04993 + 5144: -8.315486,78.42493 + 5145: -11.315486,80.20618 + 5146: -2.846736,79.86409 + 5147: -0.87798595,80.30159 + 5148: -0.92486095,81.207146 + 8206: 4.1306233,-20.851084 + 8207: 6.318124,-20.288584 + 15289: 24.220747,-46.937317 - node: cleanable: True color: '#FFFFFFFF' id: Basalt6 decals: - 18118: -65,73 - 18178: -35.895695,-16.584595 - 18179: -35.092934,-11.385485 - 18180: -36.93627,-4.94048 - 18181: -27.699226,-16.156225 - 18182: -21.711567,-13.885185 + 17851: -65,73 + 17911: -35.895695,-16.584595 + 17912: -35.092934,-11.385485 + 17913: -36.93627,-4.94048 + 17914: -27.699226,-16.156225 + 17915: -21.711567,-13.885185 - node: zIndex: 60 color: '#FFFFFFFF' id: Basalt6 decals: - 15836: -78.41439,35.222324 + 15569: -78.41439,35.222324 - node: color: '#FFFFFFFF' id: Basalt7 decals: - 5330: -8.119141,68.06874 - 5331: -5.9160147,71.91249 - 5332: -8.745786,75.24132 - 5333: -5.8864107,75.63194 - 5334: -5.2770357,73.71007 - 6421: -8.757884,76.60296 - 6422: -11.023509,75.79046 - 8475: 5.2868733,-20.7365 - 8476: 4.026457,-22.694834 + 5133: -8.119141,68.06874 + 5134: -5.9160147,71.91249 + 5135: -8.745786,75.24132 + 5136: -5.8864107,75.63194 + 5137: -5.2770357,73.71007 + 6172: -8.757884,76.60296 + 6173: -11.023509,75.79046 + 8208: 5.2868733,-20.7365 + 8209: 4.026457,-22.694834 - node: cleanable: True color: '#FFFFFFFF' id: Basalt7 decals: - 16203: -49,-87 - 18119: -60,73 + 15936: -49,-87 + 17852: -60,73 - node: zIndex: 60 color: '#FFFFFFFF' id: Basalt7 decals: - 15835: -78.180016,35.0192 - 15840: -76.992516,39.853813 + 15568: -78.180016,35.0192 + 15573: -76.992516,39.853813 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 8478: 7.099374,-21.684416 + 8211: 7.099374,-21.684416 - node: color: '#FFFFFFFF' id: Basalt9 decals: 640: -110.27212,2.7929213 - 1252: -44.660824,46.463802 - 5329: -5.7753906,67.584366 - 8477: 2.9952068,-23.01775 + 1205: -44.660824,46.463802 + 5132: -5.7753906,67.584366 + 8210: 2.9952068,-23.01775 - node: cleanable: True color: '#FFFFFFFF' id: Basalt9 decals: - 18120: -62,74 + 17853: -62,74 - node: color: '#000000C3' id: Bot decals: - 3989: -42,35 - 3990: -42,34 - 3991: -42,33 + 3846: -42,35 + 3847: -42,34 + 3848: -42,33 - node: color: '#CAD8DFFF' id: Bot decals: - 7679: -9,-58 - 7680: -16,-62 + 7412: -9,-58 + 7413: -16,-62 - node: color: '#DE3A3AFF' id: Bot decals: - 20108: 59,-67 + 19841: 59,-67 - node: cleanable: True color: '#FED83DFF' id: Bot decals: - 20084: -62,-88 - 20085: -62,-87 - 20086: -63,-87 - 20087: -63,-88 + 19817: -62,-88 + 19818: -62,-87 + 19819: -63,-87 + 19820: -63,-88 - node: angle: 1.5707963267948966 rad color: '#FEFFFFFF' id: Bot decals: - 2071: 66,0 - 2072: 67,0 - 2073: 68,0 - 2074: 70,0 - 2075: 69,0 - 2076: 66,-2 - 2077: 67,-2 - 2078: 68,-2 - 2079: 69,-2 - 2080: 70,-2 - 2081: 74,-2 - 2082: 75,-2 - 2083: 76,-2 - 2084: 77,-2 - 2085: 78,-2 - 2086: 78,0 - 2087: 77,0 - 2088: 76,0 - 2089: 75,0 - 2090: 74,0 - 2119: 72,5 - 2120: 73,6 + 2024: 66,0 + 2025: 67,0 + 2026: 68,0 + 2027: 70,0 + 2028: 69,0 + 2029: 66,-2 + 2030: 67,-2 + 2031: 68,-2 + 2032: 69,-2 + 2033: 70,-2 + 2034: 74,-2 + 2035: 75,-2 + 2036: 76,-2 + 2037: 77,-2 + 2038: 78,-2 + 2039: 78,0 + 2040: 77,0 + 2041: 76,0 + 2042: 75,0 + 2043: 74,0 + 2072: 72,5 + 2073: 73,6 - node: color: '#FFFFFFFF' id: Bot @@ -1192,537 +1192,537 @@ entities: 362: 26,-19 363: 21,-23 434: 56,-35 - 886: 68,-6 - 1782: 45,-23 - 1783: 46,-23 - 1784: 41,-19 - 1786: 32,-19 - 1937: -65,11 - 1938: -62,11 - 1940: -65,7 - 2061: 66,-4 - 2062: 67,-4 - 2063: 68,-4 - 2064: 69,-4 - 2065: 70,-4 - 2066: 74,-4 - 2067: 75,-4 - 2068: 76,-4 - 2069: 77,-4 - 2070: 78,-4 - 2307: 83,2 - 2308: 86,2 - 2314: 59,4 - 2315: 59,9 - 2322: 83,6 - 2323: 71,6 - 2324: 72,7 - 2328: 71,4 - 2339: 59,9 - 2340: 59,9 - 2341: 85,4 - 2342: 86,8 - 2343: 75,2 - 2347: 64,-8 - 2351: 53,-6 - 2352: 58,-6 - 2391: 56,-4 - 2392: 58,-4 - 2396: 62,-41 - 2397: 62,-45 - 2398: 64,-45 - 2399: 64,-43 - 2401: 57,-3 - 2402: 56,-2 - 2403: 58,-2 - 2422: 82,-41 - 2423: 82,-36 - 2437: 81,-3 - 2555: 77,-36 - 2556: 77,-41 - 2557: 70,-39 - 2644: 79,-30 - 2645: 79,-32 - 2709: 51,-65 - 2718: 69,-65 - 2897: 53,-54 - 2902: 66,-57 - 2904: 63,-57 - 3538: -9,-1 - 3539: 9,-1 - 4356: -51,8 - 4357: -51,7 - 4847: -83,45 - 4848: -75,44 - 4849: -73,46 - 4850: -73,48 - 4862: -73,44 - 7329: 25,-61 - 7330: 39,-62 - 7349: 37,-58 - 7350: 35,-58 - 7418: -1,-48 - 7419: 1,-48 - 7547: 45,20 - 7548: 46,20 - 7549: 47,20 - 7550: 45,15 - 7551: 46,15 - 7552: 47,15 - 7948: 83,43 - 8009: 22,51 - 8010: 22,50 - 8011: 22,49 - 8274: 66,43 - 8275: 65,43 - 8276: 64,43 - 8277: 67,42 - 8278: 67,43 - 8279: 67,44 - 8467: 48,41 - 8468: 54,42 - 9537: 111,-62 - 9540: 125,-62 - 9541: 125,-52 - 9543: 111,-52 - 9544: 111,-59 - 9546: 111,-55 - 9547: 125,-55 - 9550: 125,-59 - 9553: 128,-54 - 9554: 128,-60 - 9555: 133,-60 - 9557: 133,-54 - 9828: 43,4 - 9829: 46,6 - 11415: -29,-3 - 11416: -29,-4 - 11417: -28,-4 - 11418: -27,-4 - 11419: -26,-4 - 11420: -25,-4 - 11421: -24,-4 - 11422: -23,-4 - 11423: -23,-3 - 12559: -37,-22 - 12560: -37,-21 - 12561: -37,-20 - 12562: -37,-19 - 12563: -33,-19 - 12564: -33,-20 - 12565: -33,-21 - 12566: -33,-22 - 12567: -39,-29 - 12568: -39,-30 - 12569: -39,-34 - 12570: -39,-35 - 12571: -34,-35 - 12572: -34,-34 - 12573: -34,-30 - 12574: -34,-29 - 12575: -37,-30 - 12576: -36,-30 - 12577: -36,-34 - 12578: -37,-34 - 12630: -11,-20 - 12631: -9,-20 - 12632: -9,-23 - 12633: -11,-23 - 12650: -17,-20 - 12693: -56,-35 - 12694: -57,-35 - 12695: -55,-35 - 12696: -57,-33 - 12697: -56,-33 - 12698: -55,-33 - 12699: -53,-33 - 12700: -52,-33 - 12701: -51,-33 - 12702: -51,-35 - 12703: -52,-35 - 12704: -53,-35 - 12705: -50,-35 - 12706: -49,-35 - 12707: -47,-35 - 12708: -45,-35 - 12709: -50,-31 - 12710: -51,-31 - 12711: -52,-31 - 12712: -53,-31 - 12713: -53,-29 - 12714: -52,-29 - 12715: -51,-29 - 12716: -55,-29 - 12717: -56,-29 - 12718: -57,-29 - 12719: -57,-31 - 12720: -56,-31 - 12721: -55,-31 - 12754: -60,-28 - 12755: -59,-28 - 12756: -60,-29 - 12758: -59,-29 - 12767: -63,-28 - 12768: -62,-28 - 12769: -62,-29 - 12770: -63,-29 - 12771: -63,-30 - 12772: -62,-30 - 12773: -62,-31 - 12774: -63,-31 - 12775: -63,-32 - 12776: -62,-32 - 12925: -47,-33 - 13165: 54,34 - 13166: 55,34 - 13167: 56,34 - 13168: 57,34 - 13169: 58,34 - 13170: 58,30 - 13171: 57,30 - 13172: 56,30 - 13173: 55,30 - 13174: 54,30 - 13551: -43,-33 - 13552: -43,-31 - 15600: -32,6 - 15601: -32,7 - 15602: -32,8 - 15603: -32,10 - 15604: -32,11 - 15605: -32,12 - 15613: -19,11 - 15614: -19,7 - 18357: -70,-20 - 18358: -69,-36 - 18359: -65,-36 - 18364: -58,-44 - 18368: -81,-44 - 18369: -79,-46 - 18376: -76,-63 - 18377: -72,-60 - 18378: -68,-60 - 18379: -69,-67 - 18380: -74,-67 - 20122: -72,-30 - 20280: 62,7 - 20281: 26,-21 - 20296: -5,-39 + 839: 68,-6 + 1735: 45,-23 + 1736: 46,-23 + 1737: 41,-19 + 1739: 32,-19 + 1890: -65,11 + 1891: -62,11 + 1893: -65,7 + 2014: 66,-4 + 2015: 67,-4 + 2016: 68,-4 + 2017: 69,-4 + 2018: 70,-4 + 2019: 74,-4 + 2020: 75,-4 + 2021: 76,-4 + 2022: 77,-4 + 2023: 78,-4 + 2260: 83,2 + 2261: 86,2 + 2267: 59,4 + 2268: 59,9 + 2275: 83,6 + 2276: 71,6 + 2277: 72,7 + 2281: 71,4 + 2292: 59,9 + 2293: 59,9 + 2294: 85,4 + 2295: 86,8 + 2296: 75,2 + 2300: 64,-8 + 2304: 53,-6 + 2305: 58,-6 + 2344: 56,-4 + 2345: 58,-4 + 2349: 62,-41 + 2350: 62,-45 + 2351: 64,-45 + 2352: 64,-43 + 2354: 57,-3 + 2355: 56,-2 + 2356: 58,-2 + 2375: 82,-41 + 2376: 82,-36 + 2390: 81,-3 + 2508: 77,-36 + 2509: 77,-41 + 2510: 70,-39 + 2597: 79,-30 + 2598: 79,-32 + 2662: 51,-65 + 2671: 69,-65 + 2850: 53,-54 + 2855: 66,-57 + 2857: 63,-57 + 3491: -9,-1 + 3492: 9,-1 + 4159: -51,8 + 4160: -51,7 + 4650: -83,45 + 4651: -75,44 + 4652: -73,46 + 4653: -73,48 + 4665: -73,44 + 7062: 25,-61 + 7063: 39,-62 + 7082: 37,-58 + 7083: 35,-58 + 7151: -1,-48 + 7152: 1,-48 + 7280: 45,20 + 7281: 46,20 + 7282: 47,20 + 7283: 45,15 + 7284: 46,15 + 7285: 47,15 + 7681: 83,43 + 7742: 22,51 + 7743: 22,50 + 7744: 22,49 + 8007: 66,43 + 8008: 65,43 + 8009: 64,43 + 8010: 67,42 + 8011: 67,43 + 8012: 67,44 + 8200: 48,41 + 8201: 54,42 + 9270: 111,-62 + 9273: 125,-62 + 9274: 125,-52 + 9276: 111,-52 + 9277: 111,-59 + 9279: 111,-55 + 9280: 125,-55 + 9283: 125,-59 + 9286: 128,-54 + 9287: 128,-60 + 9288: 133,-60 + 9290: 133,-54 + 9561: 43,4 + 9562: 46,6 + 11148: -29,-3 + 11149: -29,-4 + 11150: -28,-4 + 11151: -27,-4 + 11152: -26,-4 + 11153: -25,-4 + 11154: -24,-4 + 11155: -23,-4 + 11156: -23,-3 + 12292: -37,-22 + 12293: -37,-21 + 12294: -37,-20 + 12295: -37,-19 + 12296: -33,-19 + 12297: -33,-20 + 12298: -33,-21 + 12299: -33,-22 + 12300: -39,-29 + 12301: -39,-30 + 12302: -39,-34 + 12303: -39,-35 + 12304: -34,-35 + 12305: -34,-34 + 12306: -34,-30 + 12307: -34,-29 + 12308: -37,-30 + 12309: -36,-30 + 12310: -36,-34 + 12311: -37,-34 + 12363: -11,-20 + 12364: -9,-20 + 12365: -9,-23 + 12366: -11,-23 + 12383: -17,-20 + 12426: -56,-35 + 12427: -57,-35 + 12428: -55,-35 + 12429: -57,-33 + 12430: -56,-33 + 12431: -55,-33 + 12432: -53,-33 + 12433: -52,-33 + 12434: -51,-33 + 12435: -51,-35 + 12436: -52,-35 + 12437: -53,-35 + 12438: -50,-35 + 12439: -49,-35 + 12440: -47,-35 + 12441: -45,-35 + 12442: -50,-31 + 12443: -51,-31 + 12444: -52,-31 + 12445: -53,-31 + 12446: -53,-29 + 12447: -52,-29 + 12448: -51,-29 + 12449: -55,-29 + 12450: -56,-29 + 12451: -57,-29 + 12452: -57,-31 + 12453: -56,-31 + 12454: -55,-31 + 12487: -60,-28 + 12488: -59,-28 + 12489: -60,-29 + 12491: -59,-29 + 12500: -63,-28 + 12501: -62,-28 + 12502: -62,-29 + 12503: -63,-29 + 12504: -63,-30 + 12505: -62,-30 + 12506: -62,-31 + 12507: -63,-31 + 12508: -63,-32 + 12509: -62,-32 + 12658: -47,-33 + 12898: 54,34 + 12899: 55,34 + 12900: 56,34 + 12901: 57,34 + 12902: 58,34 + 12903: 58,30 + 12904: 57,30 + 12905: 56,30 + 12906: 55,30 + 12907: 54,30 + 13284: -43,-33 + 13285: -43,-31 + 15333: -32,6 + 15334: -32,7 + 15335: -32,8 + 15336: -32,10 + 15337: -32,11 + 15338: -32,12 + 15346: -19,11 + 15347: -19,7 + 18090: -70,-20 + 18091: -69,-36 + 18092: -65,-36 + 18097: -58,-44 + 18101: -81,-44 + 18102: -79,-46 + 18109: -76,-63 + 18110: -72,-60 + 18111: -68,-60 + 18112: -69,-67 + 18113: -74,-67 + 19855: -72,-30 + 19918: 62,7 + 19919: 26,-21 + 19934: -5,-39 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 1265: -77,22 - 5750: 9,33 - 5751: 10,33 - 18161: -51,59 - 18162: -53,59 - 20008: 59,2 - 20009: 39,-15 - 20010: 35,-19 - 20011: 51,-22 - 20013: 58,-24 - 20014: 51,-30 - 20015: 67,-30 - 20016: 70,-35 - 20017: 70,-42 - 20018: 64,-54 - 20019: 47,-29 - 20020: 21,-27 - 20021: 46,-3 - 20022: 75,4 - 20023: 66,4 - 20024: 41,9 - 20025: 41,32 - 20028: 25,40 - 20029: 17,26 - 20035: 50,39 - 20036: 2,33 - 20037: 14,44 - 20039: 15,15 - 20040: 0,9 - 20041: -7,-2 - 20042: -15,-15 - 20043: -10,-39 - 20044: -6,-32 - 20045: -12,-29 - 20046: 17,-7 - 20047: -17,7 - 20048: 32,-27 - 20049: 23,-59 - 20050: 5,-59 - 20051: 19,-56 - 20052: 15,-44 - 20053: -7,-44 - 20054: -50,-74 - 20055: -41,-66 - 20056: -41,-37 - 20057: -39,-15 - 20058: -43,-8 - 20059: -56,-17 - 20060: -60,-10 - 20064: -32,-37 - 20065: -14,-37 - 20066: -58,25 - 20067: -46,40 - 20068: -45,51 - 20069: -52,51 - 20070: -64,52 - 20071: -72,-9 - 20072: 20,45 - 20073: -9,49 - 20080: -62,-87 - 20081: -62,-88 - 20082: -63,-88 - 20083: -63,-87 + 1218: -77,22 + 5553: 9,33 + 5554: 10,33 + 17894: -51,59 + 17895: -53,59 + 19741: 59,2 + 19742: 39,-15 + 19743: 35,-19 + 19744: 51,-22 + 19746: 58,-24 + 19747: 51,-30 + 19748: 67,-30 + 19749: 70,-35 + 19750: 70,-42 + 19751: 64,-54 + 19752: 47,-29 + 19753: 21,-27 + 19754: 46,-3 + 19755: 75,4 + 19756: 66,4 + 19757: 41,9 + 19758: 41,32 + 19761: 25,40 + 19762: 17,26 + 19768: 50,39 + 19769: 2,33 + 19770: 14,44 + 19772: 15,15 + 19773: 0,9 + 19774: -7,-2 + 19775: -15,-15 + 19776: -10,-39 + 19777: -6,-32 + 19778: -12,-29 + 19779: 17,-7 + 19780: -17,7 + 19781: 32,-27 + 19782: 23,-59 + 19783: 5,-59 + 19784: 19,-56 + 19785: 15,-44 + 19786: -7,-44 + 19787: -50,-74 + 19788: -41,-66 + 19789: -41,-37 + 19790: -39,-15 + 19791: -43,-8 + 19792: -56,-17 + 19793: -60,-10 + 19797: -32,-37 + 19798: -14,-37 + 19799: -58,25 + 19800: -46,40 + 19801: -45,51 + 19802: -52,51 + 19803: -64,52 + 19804: -72,-9 + 19805: 20,45 + 19806: -9,49 + 19813: -62,-87 + 19814: -62,-88 + 19815: -63,-88 + 19816: -63,-87 - node: zIndex: 2 color: '#FFFFFFFF' id: Bot decals: - 21305: 22,-54 + 20537: 22,-54 - node: zIndex: 60 color: '#FFFFFFFF' id: Bot decals: - 16045: -86,33 - 16046: -89,38 - 16047: -89,39 - 16048: -88,42 - 16049: -77,34 - 16050: -68,40 - 16051: -68,39 - 16052: -68,48 - 16053: -66,45 - 16054: -64,42 - 16055: -61,38 - 16056: -60,31 - 16057: -66,32 - 16058: -67,27 - 16059: -72,27 + 15778: -86,33 + 15779: -89,38 + 15780: -89,39 + 15781: -88,42 + 15782: -77,34 + 15783: -68,40 + 15784: -68,39 + 15785: -68,48 + 15786: -66,45 + 15787: -64,42 + 15788: -61,38 + 15789: -60,31 + 15790: -66,32 + 15791: -67,27 + 15792: -72,27 - node: color: '#000000C3' id: BotGreyscale decals: - 3984: -42,36 - 3985: -42,32 - 3986: -42,31 + 3841: -42,36 + 3842: -42,32 + 3843: -42,31 - node: color: '#334E6DC8' id: BotGreyscale decals: - 2898: -4,-9 + 2851: -4,-9 - node: color: '#334E6DFF' id: BotGreyscale decals: - 2901: -4,-9 - 2930: -6,-6 - 2931: -5,-6 + 2854: -4,-9 + 2883: -6,-6 + 2884: -5,-6 - node: color: '#52B4E9FF' id: BotGreyscale decals: - 2924: -4,-10 + 2877: -4,-10 - node: cleanable: True color: '#663C0DFF' id: BotGreyscale decals: - 5434: -75,62 - 5435: -74,62 - 5436: -73,62 - 5437: -73,61 - 5438: -74,61 - 5439: -73,60 - 5440: -74,60 - 5445: -71,64 - 5446: -71,62 - 5447: -71,60 - 5448: -72,60 - 5456: -72,62 - 5473: -77,62 - 5474: -76,62 - 5475: -76,61 - 5476: -77,61 - 5477: -75,61 - 5478: -75,60 - 5479: -76,60 - 5480: -77,60 + 5237: -75,62 + 5238: -74,62 + 5239: -73,62 + 5240: -73,61 + 5241: -74,61 + 5242: -73,60 + 5243: -74,60 + 5248: -71,64 + 5249: -71,62 + 5250: -71,60 + 5251: -72,60 + 5259: -72,62 + 5276: -77,62 + 5277: -76,62 + 5278: -76,61 + 5279: -77,61 + 5280: -75,61 + 5281: -75,60 + 5282: -76,60 + 5283: -77,60 - node: color: '#8C347FFF' id: BotGreyscale decals: - 2895: -4,-8 + 2848: -4,-8 - node: color: '#9FED58FF' id: BotGreyscale decals: - 2923: -4,-9 + 2876: -4,-9 - node: color: '#A46106FF' id: BotGreyscale decals: - 2912: -7,-10 + 2865: -7,-10 - node: color: '#CAD8DFFF' id: BotGreyscale decals: - 7681: -9,-62 + 7414: -9,-62 - node: color: '#DE3A3A96' id: BotGreyscale decals: - 2896: -7,-8 + 2849: -7,-8 - node: color: '#DE3A3AFF' id: BotGreyscale decals: - 2905: -7,-8 + 2858: -7,-8 - node: color: '#EFB341FF' id: BotGreyscale decals: - 2918: -7,-9 + 2871: -7,-9 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 1920: -64,7 - 1921: -64,11 - 1923: -63,11 - 2317: 57,4 - 2318: 80,9 - 2319: 81,9 - 2321: 82,6 - 2344: 69,7 - 2345: 63,-8 - 2346: 69,6 - 2348: 56,-6 - 2349: 49,-9 - 2350: 50,-9 - 4851: -77,48 - 4852: -75,48 - 4853: -76,42 - 4854: -81,45 - 4855: -79,45 - 6071: -30,-41 - 7498: 33,23 - 7499: 34,23 - 7500: 35,23 - 7501: 36,23 - 7502: 33,19 - 7503: 34,19 - 7504: 35,19 - 7505: 36,19 - 9831: 43,5 - 9833: 44,12 - 9834: 46,12 - 18360: -64,-36 - 18370: -81,-44 - 18371: -83,-56 - 18381: -76,-68 - 20297: -3,-42 - 20299: -5,-42 - 20300: 65,-8 + 1873: -64,7 + 1874: -64,11 + 1876: -63,11 + 2270: 57,4 + 2271: 80,9 + 2272: 81,9 + 2274: 82,6 + 2297: 69,7 + 2298: 63,-8 + 2299: 69,6 + 2301: 56,-6 + 2302: 49,-9 + 2303: 50,-9 + 4654: -77,48 + 4655: -75,48 + 4656: -76,42 + 4657: -81,45 + 4658: -79,45 + 5874: -30,-41 + 7231: 33,23 + 7232: 34,23 + 7233: 35,23 + 7234: 36,23 + 7235: 33,19 + 7236: 34,19 + 7237: 35,19 + 7238: 36,19 + 9564: 43,5 + 9566: 44,12 + 9567: 46,12 + 18093: -64,-36 + 18103: -81,-44 + 18104: -83,-56 + 18114: -76,-68 + 19935: -3,-42 + 19937: -5,-42 + 19938: 65,-8 - node: cleanable: True color: '#FFFFFFFF' id: BotGreyscale decals: - 5481: -58,39 - 5482: -58,38 - 5483: -58,37 - 5484: -57,37 - 5485: -57,38 - 5486: -57,39 - 5487: -56,39 - 5488: -56,38 - 5489: -56,37 - 5752: 14,34 - 20030: 29,40 - 20031: 17,28 - 20032: 75,2 - 20033: 46,-23 - 20034: 39,9 - 20038: 13,47 - 20061: -73,-23 - 20062: -53,-10 - 20063: -43,-27 - 20079: -62,-87 + 5284: -58,39 + 5285: -58,38 + 5286: -58,37 + 5287: -57,37 + 5288: -57,38 + 5289: -57,39 + 5290: -56,39 + 5291: -56,38 + 5292: -56,37 + 5555: 14,34 + 19763: 29,40 + 19764: 17,28 + 19765: 75,2 + 19766: 46,-23 + 19767: 39,9 + 19771: 13,47 + 19794: -73,-23 + 19795: -53,-10 + 19796: -43,-27 + 19812: -62,-87 - node: zIndex: 60 color: '#FFFFFFFF' id: BotGreyscale decals: - 16060: -82,26 - 16061: -88,45 - 16062: -73,38 + 15793: -82,26 + 15794: -88,45 + 15795: -73,38 - node: color: '#FFFFFFFF' id: BotLeft decals: - 4373: -48,9 - 4374: -47,9 - 6072: -25,-47 - 6073: -25,-48 - 6074: -23,-47 - 6075: -23,-48 - 6076: -21,-47 - 6077: -21,-48 - 8600: 50,44 - 8601: 48,42 - 8602: 52,45 - 8603: 53,41 + 4176: -48,9 + 4177: -47,9 + 5875: -25,-47 + 5876: -25,-48 + 5877: -23,-47 + 5878: -23,-48 + 5879: -21,-47 + 5880: -21,-48 + 8333: 50,44 + 8334: 48,42 + 8335: 52,45 + 8336: 53,41 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 18372: -83,-56 + 18105: -83,-56 - node: cleanable: True color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 5490: -58,37 - 5491: -58,38 - 5492: -58,39 - 5493: -57,39 - 5494: -57,38 - 5495: -57,37 - 5496: -56,37 - 5497: -56,38 - 5498: -56,39 + 5293: -58,37 + 5294: -58,38 + 5295: -58,39 + 5296: -57,39 + 5297: -57,38 + 5298: -57,37 + 5299: -56,37 + 5300: -56,38 + 5301: -56,39 - node: color: '#FFFFFFFF' id: BotRight decals: - 18361: -63,-36 + 18094: -63,-36 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 18373: -83,-56 + 18106: -83,-56 - node: color: '#000000C3' id: Box decals: - 3987: -42,34 - 3988: -42,33 + 3844: -42,34 + 3845: -42,33 - node: color: '#DA8929FF' id: Box decals: - 4351: -44,3 - 4352: -43,3 + 4154: -44,3 + 4155: -43,3 - node: color: '#F9801DFF' id: Box decals: - 4354: -44,3 - 4355: -43,3 + 4157: -44,3 + 4158: -43,3 - node: color: '#FFFFFFFF' id: Box @@ -1736,525 +1736,525 @@ entities: 677: 52,-27 678: 51,-27 679: 57,-27 - 1088: -29,6 - 1089: -29,7 - 1090: -29,8 - 1091: -29,9 - 1092: -29,10 - 1093: -29,11 - 1094: -27,11 - 1095: -27,10 - 1096: -27,9 - 1097: -27,8 - 1098: -27,7 - 1099: -27,6 - 1100: -25,6 - 1101: -25,7 - 1102: -25,8 - 1103: -25,9 - 1104: -25,10 - 1105: -25,11 - 1106: -23,11 - 1107: -23,10 - 1108: -23,9 - 1109: -23,8 - 1110: -23,7 - 1111: -23,6 - 1934: -65,11 - 1935: -62,11 - 1936: -65,7 - 2285: 58,2 - 2304: 89,-15 - 2305: 90,-15 - 2329: 76,4 - 2330: 78,4 - 2331: 80,4 - 2332: 82,4 - 2356: 59,-8 - 2387: 67,-45 - 2393: 62,-40 - 2394: 63,-40 - 2395: 64,-40 - 4863: -73,42 - 4864: -73,41 - 4865: -72,41 - 4866: -71,41 - 4867: -71,42 - 6603: 3.56635,75.88135 - 7940: 79,39 - 7941: 79,47 - 7942: 87,47 - 7943: 87,39 - 8280: 65,42 - 8456: 49,42 - 8457: 48,45 - 8458: 49,44 - 8459: 51,45 - 8460: 53,44 - 8461: 54,45 - 8463: 54,41 - 8465: 53,42 - 8599: 51,44 - 9839: 46,3 - 15615: -19,6 - 15616: -19,5 - 15617: -19,12 - 15618: -19,13 - 15695: -48,42 - 15696: -48,43 - 18362: -58,-41 - 18363: -58,-42 - 18365: -76,-39 - 18366: -73,-39 - 18367: -72,-39 - 18382: -69,-67 - 20298: -7,-41 + 1041: -29,6 + 1042: -29,7 + 1043: -29,8 + 1044: -29,9 + 1045: -29,10 + 1046: -29,11 + 1047: -27,11 + 1048: -27,10 + 1049: -27,9 + 1050: -27,8 + 1051: -27,7 + 1052: -27,6 + 1053: -25,6 + 1054: -25,7 + 1055: -25,8 + 1056: -25,9 + 1057: -25,10 + 1058: -25,11 + 1059: -23,11 + 1060: -23,10 + 1061: -23,9 + 1062: -23,8 + 1063: -23,7 + 1064: -23,6 + 1887: -65,11 + 1888: -62,11 + 1889: -65,7 + 2238: 58,2 + 2257: 89,-15 + 2258: 90,-15 + 2282: 76,4 + 2283: 78,4 + 2284: 80,4 + 2285: 82,4 + 2309: 59,-8 + 2340: 67,-45 + 2346: 62,-40 + 2347: 63,-40 + 2348: 64,-40 + 4666: -73,42 + 4667: -73,41 + 4668: -72,41 + 4669: -71,41 + 4670: -71,42 + 6354: 3.56635,75.88135 + 7673: 79,39 + 7674: 79,47 + 7675: 87,47 + 7676: 87,39 + 8013: 65,42 + 8189: 49,42 + 8190: 48,45 + 8191: 49,44 + 8192: 51,45 + 8193: 53,44 + 8194: 54,45 + 8196: 54,41 + 8198: 53,42 + 8332: 51,44 + 9572: 46,3 + 15348: -19,6 + 15349: -19,5 + 15350: -19,12 + 15351: -19,13 + 15428: -48,42 + 15429: -48,43 + 18095: -58,-41 + 18096: -58,-42 + 18098: -76,-39 + 18099: -73,-39 + 18100: -72,-39 + 18115: -69,-67 + 19936: -7,-41 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 5499: 15,20 - 5500: 15,21 - 5501: 17,20 - 5502: 17,21 - 5753: 15,30 - 5754: 17,30 + 5302: 15,20 + 5303: 15,21 + 5304: 17,20 + 5305: 17,21 + 5556: 15,30 + 5557: 17,30 - node: color: '#3AB3DAFF' id: BoxGreyscale decals: - 4353: -51,5 + 4156: -51,5 - node: color: '#52B4E9FF' id: BoxGreyscale decals: - 7312: 28,-57 - 7313: 29,-57 - 7314: 30,-57 - 7315: 31,-57 - 7316: 32,-57 - 7317: 32,-59 - 7318: 31,-59 - 7319: 31,-60 - 7320: 32,-60 - 7321: 29,-59 - 7322: 28,-59 - 7323: 28,-60 - 7324: 29,-60 - 7325: 28,-62 - 7326: 29,-62 - 7327: 31,-62 - 7328: 32,-62 - 14232: 4,-41 - 14233: 4,-40 - 14235: 7,-41 - 14236: 7,-40 + 7045: 28,-57 + 7046: 29,-57 + 7047: 30,-57 + 7048: 31,-57 + 7049: 32,-57 + 7050: 32,-59 + 7051: 31,-59 + 7052: 31,-60 + 7053: 32,-60 + 7054: 29,-59 + 7055: 28,-59 + 7056: 28,-60 + 7057: 29,-60 + 7058: 28,-62 + 7059: 29,-62 + 7060: 31,-62 + 7061: 32,-62 + 13965: 4,-41 + 13966: 4,-40 + 13968: 7,-41 + 13969: 7,-40 - node: cleanable: True color: '#663C0DFF' id: BoxGreyscale decals: - 5427: -74,62 - 5428: -75,62 - 5429: -73,62 - 5430: -74,61 - 5431: -73,61 - 5432: -73,60 - 5433: -74,60 - 5441: -71,62 - 5442: -71,64 - 5443: -71,60 - 5444: -72,60 - 5455: -72,62 - 5465: -77,62 - 5466: -76,62 - 5467: -77,61 - 5468: -76,61 - 5469: -75,61 - 5470: -75,60 - 5471: -76,60 - 5472: -77,60 + 5230: -74,62 + 5231: -75,62 + 5232: -73,62 + 5233: -74,61 + 5234: -73,61 + 5235: -73,60 + 5236: -74,60 + 5244: -71,62 + 5245: -71,64 + 5246: -71,60 + 5247: -72,60 + 5258: -72,62 + 5268: -77,62 + 5269: -76,62 + 5270: -77,61 + 5271: -76,61 + 5272: -75,61 + 5273: -75,60 + 5274: -76,60 + 5275: -77,60 - node: color: '#791500FF' id: BoxGreyscale decals: - 1228: -53,46 + 1181: -53,46 - node: color: '#96DAFFFF' id: BoxGreyscale decals: - 14225: 4,-41 - 14226: 4,-40 - 14229: 7,-41 - 14230: 7,-40 + 13958: 4,-41 + 13959: 4,-40 + 13962: 7,-41 + 13963: 7,-40 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 1916: -64,11 - 1918: -63,11 - 1919: -64,7 - 2287: 57,2 - 2288: 56,2 - 7930: 25,51 - 7931: 25,49 - 18374: -74,-59 - 18375: -79,-64 + 1869: -64,11 + 1871: -63,11 + 1872: -64,7 + 2240: 57,2 + 2241: 56,2 + 7663: 25,51 + 7664: 25,49 + 18107: -74,-59 + 18108: -79,-64 - node: cleanable: True color: '#FFFFFFFF' id: BoxGreyscale decals: - 1264: -74,24 - 5503: 16,20 - 5504: 16,21 - 5505: 18,20 - 5506: 18,21 + 1217: -74,24 + 5306: 16,20 + 5307: 16,21 + 5308: 18,20 + 5309: 18,21 - node: color: '#334E6DC8' id: BrickBoxOverlay decals: - 3318: 5,59 + 3271: 5,59 - node: color: '#52B4E996' id: BrickBoxOverlay decals: - 3319: 6,59 + 3272: 6,59 - node: color: '#9FED5896' id: BrickBoxOverlay decals: - 3320: 6,57 + 3273: 6,57 - node: color: '#A4610696' id: BrickBoxOverlay decals: - 3321: 5,57 + 3274: 5,57 - node: color: '#D381C996' id: BrickBoxOverlay decals: - 3324: 4,59 + 3277: 4,59 - node: color: '#D4D4D496' id: BrickBoxOverlay decals: - 3328: 7,59 + 3281: 7,59 - node: color: '#DE3A3A96' id: BrickBoxOverlay decals: - 3327: 7,57 + 3280: 7,57 - node: color: '#EFB34196' id: BrickBoxOverlay decals: - 3322: 4,57 + 3275: 4,57 - node: color: '#52B4E996' id: BrickCornerOverlayNE decals: - 6112: 11,-60 + 5911: 11,-60 - node: color: '#52B4E996' id: BrickCornerOverlayNW decals: - 6111: 9,-60 + 5910: 9,-60 - node: color: '#52B4E996' id: BrickCornerOverlaySE decals: - 6105: 11,-56 + 5907: 11,-56 - node: color: '#52B4E996' id: BrickCornerOverlaySW decals: - 6106: 9,-56 + 5908: 9,-56 - node: color: '#52B4E996' id: BrickLineOverlayN decals: - 6109: 10,-60 + 5909: 10,-60 - node: color: '#52B4E996' id: BrickLineOverlayS decals: - 6104: 10,-56 + 5906: 10,-56 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 3540: -8,-1 - 3541: -8,1 - 3542: 8,1 - 3543: 8,-1 - 3544: 11,1 - 3545: 11,-1 - 3546: -11,1 - 3547: -11,-1 - 3643: 1,7 - 3644: -1,7 - 3897: -2,8 - 3898: 2,8 - 3935: -7,8 - 3936: 7,8 - 4233: -42,8 - 4234: -42,6 - 4235: -46,2 - 4430: 0,-3 + 3493: -8,-1 + 3494: -8,1 + 3495: 8,1 + 3496: 8,-1 + 3497: 11,1 + 3498: 11,-1 + 3499: -11,1 + 3500: -11,-1 + 3596: 1,7 + 3597: -1,7 + 3772: -2,8 + 3773: 2,8 + 3810: -7,8 + 3811: 7,8 + 4036: -42,8 + 4037: -42,6 + 4038: -46,2 + 4233: 0,-3 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 18025: -87,29 + 17758: -87,29 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerNe decals: - 10985: -46,-23 + 10718: -46,-23 - node: color: '#B8B8B8FF' id: BrickTileDarkCornerNe decals: - 9709: 37,-4 + 9442: 37,-4 - node: color: '#DCDCDCFF' id: BrickTileDarkCornerNe decals: - 4452: 7,2 - 4527: 1,-4 + 4255: 7,2 + 4330: 1,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 161: 33,-19 - 1900: -44,-16 - 2216: 46,-31 - 3574: 3,6 - 3610: -1,6 - 3904: 7,10 - 4418: -57,31 - 8023: 26,42 - 11205: -60,-10 - 13324: 38,26 - 13325: 39,25 - 17139: -85,-44 - 18215: 23,-76 - 18239: 26,-82 - 18240: 29,-82 + 1853: -44,-16 + 2169: 46,-31 + 3527: 3,6 + 3563: -1,6 + 3779: 7,10 + 4221: -57,31 + 7756: 26,42 + 10938: -60,-10 + 13057: 38,26 + 13058: 39,25 + 16872: -85,-44 + 17948: 23,-76 + 17972: 26,-82 + 17973: 29,-82 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerNw decals: - 10986: -48,-23 + 10719: -48,-23 - node: color: '#B8B8B8FF' id: BrickTileDarkCornerNw decals: - 9713: 30,-4 + 9446: 30,-4 - node: color: '#DCDCDCFF' id: BrickTileDarkCornerNw decals: - 4445: -7,2 - 4526: -1,-4 + 4248: -7,2 + 4329: -1,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 167: 31,-19 - 1695: -46,-16 - 2215: 44,-31 - 3572: -3,6 - 3573: 1,6 - 3622: 1,6 - 3903: -7,10 - 8022: 28,42 - 10527: -37,-39 - 11196: -63,-10 - 13322: 41,25 - 13323: 42,26 - 15015: 23,-42 - 17133: -91,-44 - 18237: 24,-82 - 18238: 27,-82 + 1648: -46,-16 + 2168: 44,-31 + 3525: -3,6 + 3526: 1,6 + 3575: 1,6 + 3778: -7,10 + 7755: 28,42 + 10260: -37,-39 + 10929: -63,-10 + 13055: 41,25 + 13056: 42,26 + 14748: 23,-42 + 16866: -91,-44 + 17970: 24,-82 + 17971: 27,-82 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1257: -75,21 + 1210: -75,21 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerSe decals: - 10988: -46,-25 + 10721: -46,-25 - node: color: '#B8B8B8FF' id: BrickTileDarkCornerSe decals: - 9708: 37,-6 + 9441: 37,-6 - node: color: '#DCDCDCFF' id: BrickTileDarkCornerSe decals: - 4453: 7,-2 + 4256: 7,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 151: 33,-21 823: -33,43 - 1697: -44,-17 - 2217: 46,-33 - 3569: 3,4 - 3612: -1,4 - 3937: 7,9 - 4417: -57,33 - 11206: -60,-13 - 13320: 39,29 - 13321: 38,28 - 17142: -89,-45 - 18216: 23,-79 - 18233: 26,-83 - 18234: 29,-83 + 1650: -44,-17 + 2170: 46,-33 + 3522: 3,4 + 3565: -1,4 + 3812: 7,9 + 4220: -57,33 + 10939: -60,-13 + 13053: 39,29 + 13054: 38,28 + 16875: -89,-45 + 17949: 23,-79 + 17966: 26,-83 + 17967: 29,-83 - node: color: '#B1AFB7FF' id: BrickTileDarkCornerSw decals: - 10987: -48,-25 + 10720: -48,-25 - node: color: '#B8B8B8FF' id: BrickTileDarkCornerSw decals: - 9706: 35,-6 - 9714: 30,-5 + 9439: 35,-6 + 9447: 30,-5 - node: color: '#DCDCDCFF' id: BrickTileDarkCornerSw decals: - 4446: -7,-2 + 4249: -7,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 155: 31,-21 - 1696: -46,-17 - 2218: 44,-33 - 3570: -3,4 - 3571: 1,4 - 3623: 1,4 - 3938: -7,9 - 7998: 22,44 - 11208: -63,-13 - 13326: 41,29 - 13327: 42,28 - 18235: 24,-83 - 18236: 27,-83 + 1649: -46,-17 + 2171: 44,-33 + 3523: -3,4 + 3524: 1,4 + 3576: 1,4 + 3813: -7,9 + 7731: 22,44 + 10941: -63,-13 + 13059: 41,29 + 13060: 42,28 + 17968: 24,-83 + 17969: 27,-83 - node: color: '#B8B8B8FF' id: BrickTileDarkEndE decals: - 9716: 37,-4 + 9449: 37,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 3899: -7,8 - 3900: 7,8 + 3774: -7,8 + 3775: 7,8 - node: color: '#B8B8B8FF' id: BrickTileDarkEndW decals: - 9715: 35,-4 + 9448: 35,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 17131: -92,-53 - 17132: -92,-45 + 16864: -92,-53 + 16865: -92,-45 - node: color: '#000000DC' id: BrickTileDarkInnerNe decals: - 17020: -45,-85 - 17021: -45,-89 + 16753: -45,-85 + 16754: -45,-89 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 7908: 39,24 - 13328: 37,26 + 7641: 39,24 + 13061: 37,26 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 18024: -89,30 + 17757: -89,30 - node: color: '#000000DC' id: BrickTileDarkInnerNw decals: - 17019: -45,-86 + 16752: -45,-86 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 7909: 41,24 - 18220: 23,-79 + 7642: 41,24 + 17953: 23,-79 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 3932: -7,9 - 7910: 37,28 - 7911: 39,30 + 3807: -7,9 + 7643: 37,28 + 7644: 39,30 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 18023: -89,28 + 17756: -89,28 - node: color: '#B8B8B8FF' id: BrickTileDarkInnerSw decals: - 9707: 35,-5 + 9440: 35,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3933: 7,9 - 7912: 41,30 - 7913: 43,28 - 18221: 23,-76 + 3808: 7,9 + 7645: 41,30 + 7646: 43,28 + 17954: 23,-76 - node: color: '#B1AFB7FF' id: BrickTileDarkLineE decals: - 10992: -46,-24 + 10725: -46,-24 - node: color: '#B8B8B8FF' id: BrickTileDarkLineE decals: - 9710: 37,-5 + 9443: 37,-5 - node: color: '#C3C2C0FF' id: BrickTileDarkLineE decals: - 4529: 1,-10 + 4332: 1,-10 - node: color: '#DCDCDCFF' id: BrickTileDarkLineE decals: - 4454: 7,0 - 4513: 1,-6 - 4514: 1,-7 - 4515: 1,-8 - 4516: 1,-10 - 4522: 1,-4 + 4257: 7,0 + 4316: 1,-6 + 4317: 1,-7 + 4318: 1,-8 + 4319: 1,-10 + 4325: 1,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -2262,196 +2262,196 @@ entities: 149: 33,-20 824: -33,44 825: -33,45 - 2222: 46,-32 - 2510: 9,-9 - 2511: 9,-10 - 3577: 3,5 - 3611: -1,5 - 3901: 7,9 - 4415: -57,35 - 4416: -57,34 - 4433: -1,-3 - 4434: 1,-3 - 7904: 37,27 - 7914: 26,52 - 7915: 26,50 - 7916: 26,49 - 7921: 26,47 - 8001: 20,43 - 8015: 20,49 - 8016: 20,50 - 8017: 20,51 - 8024: 25,43 - 8176: 38,44 - 8177: 38,45 - 8178: 38,46 - 8179: 38,47 - 8199: 38,43 - 8230: 18,27 - 8573: 56,43 - 11203: -60,-11 - 11204: -60,-12 - 13097: 20,44 - 13314: 18,28 - 13315: 18,26 - 18227: 23,-78 - 18228: 23,-77 + 2175: 46,-32 + 2463: 9,-9 + 2464: 9,-10 + 3530: 3,5 + 3564: -1,5 + 3776: 7,9 + 4218: -57,35 + 4219: -57,34 + 4236: -1,-3 + 4237: 1,-3 + 7637: 37,27 + 7647: 26,52 + 7648: 26,50 + 7649: 26,49 + 7654: 26,47 + 7734: 20,43 + 7748: 20,49 + 7749: 20,50 + 7750: 20,51 + 7757: 25,43 + 7909: 38,44 + 7910: 38,45 + 7911: 38,46 + 7912: 38,47 + 7932: 38,43 + 7963: 18,27 + 8306: 56,43 + 10936: -60,-11 + 10937: -60,-12 + 12830: 20,44 + 13047: 18,28 + 13048: 18,26 + 17960: 23,-78 + 17961: 23,-77 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 18004: -88,30 - 18005: -88,29 - 18006: -88,28 - 18009: -89,31 - 18010: -89,27 + 17737: -88,30 + 17738: -88,29 + 17739: -88,28 + 17742: -89,31 + 17743: -89,27 - node: color: '#B1AFB7FF' id: BrickTileDarkLineN decals: - 10991: -47,-23 + 10724: -47,-23 - node: color: '#B8B8B8FF' id: BrickTileDarkLineN decals: - 9690: 31,-4 - 9691: 30,-4 - 9692: 32,-4 - 9693: 33,-4 - 9694: 35,-4 - 9695: 34,-4 - 9696: 36,-4 - 9697: 37,-4 + 9423: 31,-4 + 9424: 30,-4 + 9425: 32,-4 + 9426: 33,-4 + 9427: 35,-4 + 9428: 34,-4 + 9429: 36,-4 + 9430: 37,-4 - node: color: '#DCDCDCFF' id: BrickTileDarkLineN decals: - 4439: -5,2 - 4440: -7,2 - 4441: -6,2 - 4448: -10,1 - 4455: 5,2 - 4456: 6,2 - 4523: -1,-4 - 4524: 0,-4 - 4525: 1,-4 + 4242: -5,2 + 4243: -7,2 + 4244: -6,2 + 4251: -10,1 + 4258: 5,2 + 4259: 6,2 + 4326: -1,-4 + 4327: 0,-4 + 4328: 1,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1698: -45,-16 - 1785: 32,-19 - 2220: 45,-31 - 2508: 8,-9 - 2509: 9,-9 - 3524: -3,2 - 3525: -1,2 - 3526: 0,2 - 3527: 1,2 - 3528: 3,2 - 3536: -2,2 - 3537: 2,2 - 3565: -3,6 - 3566: -2,6 - 3567: 1,6 - 3568: 3,6 - 3585: 2,6 - 3905: 5,10 - 3906: 6,10 - 3907: 4,10 - 3908: 3,10 - 3909: 2,10 - 3910: 1,10 - 3911: 0,10 - 3912: -1,10 - 3913: -3,10 - 3914: -3,10 - 3915: -4,10 - 3916: -6,10 - 3917: -5,10 - 3934: -2,10 - 7888: 40,24 - 7920: 27,46 - 7923: 27,48 - 7925: 27,51 - 7999: 21,42 - 8000: 22,42 - 8008: 21,48 - 8021: 27,41 - 8169: 40,42 - 8170: 39,42 - 8171: 41,42 - 8172: 42,42 - 8173: 43,42 - 8174: 44,42 - 8175: 45,42 - 8229: 21,24 - 8574: 57,42 - 8575: 58,42 - 8576: 59,42 - 10524: -36,-39 - 10525: -35,-39 - 10526: -34,-39 - 11197: -62,-10 - 11198: -61,-10 - 13318: 20,24 - 13319: 22,24 - 15024: 24,-42 - 15025: 25,-42 - 17134: -90,-44 - 17135: -89,-44 - 17136: -88,-44 - 17137: -87,-44 - 17138: -86,-44 - 18209: 20,-79 - 18210: 21,-79 - 18211: 22,-79 - 18212: 20,-76 - 18213: 21,-76 - 18214: 22,-76 - 18231: 25,-82 - 18232: 28,-82 + 1651: -45,-16 + 1738: 32,-19 + 2173: 45,-31 + 2461: 8,-9 + 2462: 9,-9 + 3477: -3,2 + 3478: -1,2 + 3479: 0,2 + 3480: 1,2 + 3481: 3,2 + 3489: -2,2 + 3490: 2,2 + 3518: -3,6 + 3519: -2,6 + 3520: 1,6 + 3521: 3,6 + 3538: 2,6 + 3780: 5,10 + 3781: 6,10 + 3782: 4,10 + 3783: 3,10 + 3784: 2,10 + 3785: 1,10 + 3786: 0,10 + 3787: -1,10 + 3788: -3,10 + 3789: -3,10 + 3790: -4,10 + 3791: -6,10 + 3792: -5,10 + 3809: -2,10 + 7621: 40,24 + 7653: 27,46 + 7656: 27,48 + 7658: 27,51 + 7732: 21,42 + 7733: 22,42 + 7741: 21,48 + 7754: 27,41 + 7902: 40,42 + 7903: 39,42 + 7904: 41,42 + 7905: 42,42 + 7906: 43,42 + 7907: 44,42 + 7908: 45,42 + 7962: 21,24 + 8307: 57,42 + 8308: 58,42 + 8309: 59,42 + 10257: -36,-39 + 10258: -35,-39 + 10259: -34,-39 + 10930: -62,-10 + 10931: -61,-10 + 13051: 20,24 + 13052: 22,24 + 14757: 24,-42 + 14758: 25,-42 + 16867: -90,-44 + 16868: -89,-44 + 16869: -88,-44 + 16870: -87,-44 + 16871: -86,-44 + 17942: 20,-79 + 17943: 21,-79 + 17944: 22,-79 + 17945: 20,-76 + 17946: 21,-76 + 17947: 22,-76 + 17964: 25,-82 + 17965: 28,-82 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 18003: -86,29 - 18008: -88,30 - 18017: -90,31 - 18018: -89,31 - 18019: -89,31 + 17736: -86,29 + 17741: -88,30 + 17750: -90,31 + 17751: -89,31 + 17752: -89,31 - node: color: '#B1AFB7FF' id: BrickTileDarkLineS decals: - 10989: -47,-25 + 10722: -47,-25 - node: color: '#B8B8B8FF' id: BrickTileDarkLineS decals: - 9698: 30,-5 - 9699: 31,-5 - 9700: 32,-5 - 9701: 33,-5 - 9702: 34,-5 - 9703: 35,-6 - 9704: 36,-6 - 9705: 37,-6 - 9717: 36,-4 + 9431: 30,-5 + 9432: 31,-5 + 9433: 32,-5 + 9434: 33,-5 + 9435: 34,-5 + 9436: 35,-6 + 9437: 36,-6 + 9438: 37,-6 + 9450: 36,-4 - node: color: '#DCDCDCFF' id: BrickTileDarkLineS decals: - 4435: -4,-2 - 4436: -5,-2 - 4437: -6,-2 - 4438: -7,-2 - 4447: -10,-1 - 4449: 5,-2 - 4450: 6,-2 - 4451: 7,-2 + 4238: -4,-2 + 4239: -5,-2 + 4240: -6,-2 + 4241: -7,-2 + 4250: -10,-1 + 4252: 5,-2 + 4253: 6,-2 + 4254: 7,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -2461,400 +2461,400 @@ entities: 820: -36,43 821: -35,43 822: -34,43 - 1699: -45,-17 - 2219: 45,-33 - 2506: 8,-10 - 2507: 9,-10 - 3529: -3,-2 - 3530: -2,-2 - 3531: -1,-2 - 3532: 0,-2 - 3533: 1,-2 - 3534: 2,-2 - 3535: 3,-2 - 3560: -3,4 - 3561: -2,4 - 3562: 1,4 - 3563: 2,4 - 3564: 3,4 - 3918: -6,9 - 3919: -5,9 - 3920: -4,9 - 3921: -2,9 - 3922: -1,9 - 3923: 0,9 - 3924: 2,9 - 3925: 3,9 - 3926: 4,9 - 3927: 5,9 - 3928: 6,9 - 3929: 2,9 - 3930: -3,9 - 3931: 1,9 - 7889: 40,30 - 7922: 27,48 - 7924: 27,51 - 7927: 27,53 - 8002: 21,45 - 8007: 21,52 - 8025: 26,44 - 8026: 27,44 - 8027: 28,44 - 8180: 39,48 - 8181: 40,48 - 8182: 41,48 - 8183: 42,48 - 8184: 43,48 - 8185: 44,48 - 8186: 45,48 - 8228: 21,30 - 8577: 57,44 - 8578: 58,44 - 8579: 59,44 - 11199: -61,-13 - 11200: -62,-13 - 13312: 20,30 - 13313: 22,30 - 15039: 24,-44 - 15040: 25,-44 - 15043: 26,-44 - 17140: -91,-45 - 17141: -90,-45 - 17143: -91,-53 - 17144: -90,-53 - 17145: -88,-53 - 17146: -87,-53 - 17147: -86,-53 - 17148: -86,-53 - 17149: -85,-53 - 17150: -84,-53 - 18217: 20,-79 - 18218: 21,-79 - 18219: 22,-79 - 18222: 22,-76 - 18223: 20,-76 - 18224: 21,-76 - 18229: 25,-83 - 18230: 28,-83 + 1652: -45,-17 + 2172: 45,-33 + 2459: 8,-10 + 2460: 9,-10 + 3482: -3,-2 + 3483: -2,-2 + 3484: -1,-2 + 3485: 0,-2 + 3486: 1,-2 + 3487: 2,-2 + 3488: 3,-2 + 3513: -3,4 + 3514: -2,4 + 3515: 1,4 + 3516: 2,4 + 3517: 3,4 + 3793: -6,9 + 3794: -5,9 + 3795: -4,9 + 3796: -2,9 + 3797: -1,9 + 3798: 0,9 + 3799: 2,9 + 3800: 3,9 + 3801: 4,9 + 3802: 5,9 + 3803: 6,9 + 3804: 2,9 + 3805: -3,9 + 3806: 1,9 + 7622: 40,30 + 7655: 27,48 + 7657: 27,51 + 7660: 27,53 + 7735: 21,45 + 7740: 21,52 + 7758: 26,44 + 7759: 27,44 + 7760: 28,44 + 7913: 39,48 + 7914: 40,48 + 7915: 41,48 + 7916: 42,48 + 7917: 43,48 + 7918: 44,48 + 7919: 45,48 + 7961: 21,30 + 8310: 57,44 + 8311: 58,44 + 8312: 59,44 + 10932: -61,-13 + 10933: -62,-13 + 13045: 20,30 + 13046: 22,30 + 14772: 24,-44 + 14773: 25,-44 + 14776: 26,-44 + 16873: -91,-45 + 16874: -90,-45 + 16876: -91,-53 + 16877: -90,-53 + 16878: -88,-53 + 16879: -87,-53 + 16880: -86,-53 + 16881: -86,-53 + 16882: -85,-53 + 16883: -84,-53 + 17950: 20,-79 + 17951: 21,-79 + 17952: 22,-79 + 17955: 22,-76 + 17956: 20,-76 + 17957: 21,-76 + 17962: 25,-83 + 17963: 28,-83 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 18002: -86,29 - 18007: -88,28 - 18020: -90,27 - 18021: -89,27 - 18022: -89,27 + 17735: -86,29 + 17740: -88,28 + 17753: -90,27 + 17754: -89,27 + 17755: -89,27 - node: color: '#B1AFB7FF' id: BrickTileDarkLineW decals: - 10990: -48,-24 + 10723: -48,-24 - node: color: '#B8B8B8FF' id: BrickTileDarkLineW decals: - 9711: 30,-4 - 9712: 29,-5 + 9444: 30,-4 + 9445: 29,-5 - node: color: '#C3C2C0FF' id: BrickTileDarkLineW decals: - 4528: -1,-10 + 4331: -1,-10 - node: color: '#DCDCDCFF' id: BrickTileDarkLineW decals: - 4442: -7,2 - 4443: -7,0 - 4444: -7,-2 - 4517: -1,-10 - 4518: -1,-8 - 4519: -1,-7 - 4520: -1,-6 - 4521: -1,-4 + 4245: -7,2 + 4246: -7,0 + 4247: -7,-2 + 4320: -1,-10 + 4321: -1,-8 + 4322: -1,-7 + 4323: -1,-6 + 4324: -1,-4 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: 148: 31,-20 - 2221: 44,-32 - 2504: 8,-9 - 2505: 8,-10 - 3575: -3,5 - 3576: 1,5 - 3621: 1,5 - 3902: -7,9 - 4431: -1,-3 - 4432: 1,-3 - 7906: 43,27 - 7917: 28,49 - 7918: 28,50 - 7919: 28,47 - 7926: 28,52 - 8003: 23,43 - 8004: 22,49 - 8005: 22,50 - 8006: 22,51 - 8028: 29,43 - 8187: 46,43 - 8188: 46,44 - 8189: 46,46 - 8190: 46,47 - 8191: 46,45 - 8227: 24,27 - 8572: 60,43 - 10528: -37,-40 - 10529: -37,-41 - 11201: -63,-11 - 11202: -63,-12 - 13316: 24,26 - 13317: 24,28 - 15034: 23,-43 - 18225: 23,-78 - 18226: 23,-77 + 2174: 44,-32 + 2457: 8,-9 + 2458: 8,-10 + 3528: -3,5 + 3529: 1,5 + 3574: 1,5 + 3777: -7,9 + 4234: -1,-3 + 4235: 1,-3 + 7639: 43,27 + 7650: 28,49 + 7651: 28,50 + 7652: 28,47 + 7659: 28,52 + 7736: 23,43 + 7737: 22,49 + 7738: 22,50 + 7739: 22,51 + 7761: 29,43 + 7920: 46,43 + 7921: 46,44 + 7922: 46,46 + 7923: 46,47 + 7924: 46,45 + 7960: 24,27 + 8305: 60,43 + 10261: -37,-40 + 10262: -37,-41 + 10934: -63,-11 + 10935: -63,-12 + 13049: 24,26 + 13050: 24,28 + 14767: 23,-43 + 17958: 23,-78 + 17959: 23,-77 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1258: -75,20 - 18011: -90,31 - 18012: -90,30 - 18013: -90,29 - 18014: -90,28 - 18015: -90,27 - 18016: -90,27 + 1211: -75,20 + 17744: -90,31 + 17745: -90,30 + 17746: -90,29 + 17747: -90,28 + 17748: -90,27 + 17749: -90,27 - node: color: '#808080FF' id: BrickTileSteelBox decals: - 14019: 16,-9 - 14048: 16,9 - 14231: -16,-9 - 14260: -16,9 - 14911: -7,61 + 13752: 16,-9 + 13781: 16,9 + 13964: -16,-9 + 13993: -16,9 + 14644: -7,61 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 2503: 9,-9 + 2456: 9,-9 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 5663: 10,23 - 5664: 10,24 - 5665: 12,23 - 5666: 14,23 - 5667: 14,24 - 5668: 12,24 - 5669: 10,22 - 5670: 12,21 - 5671: 12,22 - 5672: 16,23 - 5673: 16,24 - 5674: 18,24 - 5675: 18,23 - 5702: 10,21 - 5704: 12,25 + 5466: 10,23 + 5467: 10,24 + 5468: 12,23 + 5469: 14,23 + 5470: 14,24 + 5471: 12,24 + 5472: 10,22 + 5473: 12,21 + 5474: 12,22 + 5475: 16,23 + 5476: 16,24 + 5477: 18,24 + 5478: 18,23 + 5505: 10,21 + 5507: 12,25 - node: color: '#808080FF' id: BrickTileSteelCornerNe decals: - 14263: 0,50 - 15004: -25,1 + 13996: 0,50 + 14737: -25,1 - node: color: '#999999FF' id: BrickTileSteelCornerNe decals: - 14573: -40,54 + 14306: -40,54 - node: color: '#CDCDCDFF' id: BrickTileSteelCornerNe decals: - 21021: -100,67 + 20282: -100,67 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 1929: -44,-14 - 1930: -43,-15 + 1882: -44,-14 + 1883: -43,-15 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: 755: -27,24 - 1491: -25,38 - 1766: 44,-20 - 2461: 76,-36 - 2462: 76,-40 - 2466: 73,-40 - 3022: 73,-23 - 3138: 73,-31 - 3616: 5,7 - 3624: -4,7 - 4187: -29,-12 - 6942: 20,-66 + 1444: -25,38 + 1719: 44,-20 + 2414: 76,-36 + 2415: 76,-40 + 2419: 73,-40 + 2975: 73,-23 + 3091: 73,-31 + 3569: 5,7 + 3577: -4,7 + 3990: -29,-12 + 6675: 20,-66 - node: color: '#808080FF' id: BrickTileSteelCornerNw decals: - 15003: -27,1 + 14736: -27,1 - node: color: '#CDCDCDFF' id: BrickTileSteelCornerNw decals: - 21022: -107,67 + 20283: -107,67 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 1797: -47,-14 + 1750: -47,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: 751: -31,24 - 1767: 36,-20 - 2463: 71,-40 - 2464: 75,-40 - 2465: 75,-36 - 3044: 69,-23 - 3139: 69,-31 - 3615: -5,7 - 3625: 4,7 - 4188: -30,-12 - 6229: 16,-54 - 6954: 18,-66 - 6958: 17,-67 + 1720: 36,-20 + 2416: 71,-40 + 2417: 75,-40 + 2418: 75,-36 + 2997: 69,-23 + 3092: 69,-31 + 3568: -5,7 + 3578: 4,7 + 3991: -30,-12 + 5986: 16,-54 + 6687: 18,-66 + 6691: 17,-67 - node: color: '#808080FF' id: BrickTileSteelCornerSe decals: - 15006: -25,-1 + 14739: -25,-1 - node: color: '#CDCDCDFF' id: BrickTileSteelCornerSe decals: - 21020: -100,41 + 20281: -100,41 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 1789: -43,-18 - 1790: -44,-19 + 1742: -43,-18 + 1743: -44,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: 759: -27,20 - 2467: 73,-41 - 2468: 76,-41 - 2469: 76,-38 - 3035: 73,-27 - 3146: 73,-32 - 3614: 5,4 - 3626: -4,4 - 4189: -29,-13 - 6953: 20,-68 - 6956: 20,-68 - 9040: -34,-63 + 2420: 73,-41 + 2421: 76,-41 + 2422: 76,-38 + 2988: 73,-27 + 3099: 73,-32 + 3567: 5,4 + 3579: -4,4 + 3992: -29,-13 + 6686: 20,-68 + 6689: 20,-68 + 8773: -34,-63 - node: color: '#808080FF' id: BrickTileSteelCornerSw decals: - 14267: -7,50 - 15005: -27,-1 + 14000: -7,50 + 14738: -27,-1 - node: color: '#CDCDCDFF' id: BrickTileSteelCornerSw decals: - 21019: -107,41 + 20280: -107,41 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 1793: -47,-19 + 1746: -47,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: 763: -31,20 - 2470: 71,-41 - 2471: 75,-41 - 2472: 75,-38 - 3038: 69,-27 - 3147: 69,-32 - 3613: -5,4 - 3627: 4,4 - 4190: -30,-13 - 6957: 17,-68 - 9038: -35,-63 + 2423: 71,-41 + 2424: 75,-41 + 2425: 75,-38 + 2991: 69,-27 + 3100: 69,-32 + 3566: -5,4 + 3580: 4,4 + 3993: -30,-13 + 6690: 17,-68 + 8771: -35,-63 - node: color: '#4B709CFF' id: BrickTileSteelEndE decals: - 13978: 15,0 - 14069: 1,-17 - 14095: -13,0 - 14118: 1,18 + 13711: 15,0 + 13802: 1,-17 + 13828: -13,0 + 13851: 1,18 - node: color: '#808080FF' id: BrickTileSteelEndE decals: - 13990: 41,0 - 14087: 1,-26 - 14160: 1,27 - 14266: -6,50 - 14294: -70,0 - 14315: -39,0 - 14344: -39,27 - 14491: -25,27 - 14830: -44,27 - 14834: -58,27 - 14835: -51,27 - 14836: -35,27 - 14837: -30,27 - 14886: -4,27 - 14887: -11,27 - 14888: -20,27 - 14894: 5,27 - 14917: 6,41 - 14918: 13,41 - 14939: -45,54 - 14940: -51,54 - 14941: -59,54 - 14942: -65,54 - 14955: -71,54 - 14973: -46,0 - 14974: -53,0 - 14975: -63,0 - 14976: -32,0 - 14977: -18,0 - 15046: -10,-17 - 15047: -4,-17 - 15048: 6,-17 - 15049: 12,-17 - 15050: 12,18 - 15051: 6,18 - 15052: -4,18 - 15053: -10,18 - 15082: 5,-26 - 15083: 10,-26 - 15084: 15,-26 - 15085: 20,-26 - 15093: 20,0 - 15094: 27,0 - 15095: 34,0 - 15102: 45,0 + 13723: 41,0 + 13820: 1,-26 + 13893: 1,27 + 13999: -6,50 + 14027: -70,0 + 14048: -39,0 + 14077: -39,27 + 14224: -25,27 + 14563: -44,27 + 14567: -58,27 + 14568: -51,27 + 14569: -35,27 + 14570: -30,27 + 14619: -4,27 + 14620: -11,27 + 14621: -20,27 + 14627: 5,27 + 14650: 6,41 + 14651: 13,41 + 14672: -45,54 + 14673: -51,54 + 14674: -59,54 + 14675: -65,54 + 14688: -71,54 + 14706: -46,0 + 14707: -53,0 + 14708: -63,0 + 14709: -32,0 + 14710: -18,0 + 14779: -10,-17 + 14780: -4,-17 + 14781: 6,-17 + 14782: 12,-17 + 14783: 12,18 + 14784: 6,18 + 14785: -4,18 + 14786: -10,18 + 14815: 5,-26 + 14816: 10,-26 + 14817: 15,-26 + 14818: 20,-26 + 14826: 20,0 + 14827: 27,0 + 14828: 34,0 + 14835: 45,0 - node: color: '#999999FF' id: BrickTileSteelEndE decals: - 14568: -71,54 + 14301: -71,54 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE @@ -2865,187 +2865,187 @@ entities: 324: 41,-26 684: 55,-31 786: 49,-26 - 1769: 37,-20 - 2997: 63,-48 - 3028: 70,-27 - 3029: 70,-23 - 3049: 72,-25 - 6783: 63,-31 + 1722: 37,-20 + 2950: 63,-48 + 2981: 70,-27 + 2982: 70,-23 + 3002: 72,-25 + 6534: 63,-31 - node: color: '#4B709CFF' id: BrickTileSteelEndN decals: - 13979: 14,1 - 14094: -14,1 - 14119: 0,19 + 13712: 14,1 + 13827: -14,1 + 13852: 0,19 - node: color: '#808080FF' id: BrickTileSteelEndN decals: - 13991: 40,1 - 14088: 0,-25 - 14157: 0,28 - 14265: -7,51 - 14293: -71,1 - 14316: -40,1 - 14493: -26,28 - 14896: 0,34 - 14902: 0,39 - 14905: 0,46 - 14913: -7,56 - 14925: 0,23 - 14929: -26,37 - 14930: -26,32 - 14931: -40,43 - 14932: -40,49 - 14956: -72,55 - 14961: -40,23 - 14962: -40,17 - 14963: -40,11 - 14964: -40,6 - 15062: -14,-12 - 15063: -14,-4 - 15064: -14,6 - 15065: -14,14 - 15066: 14,14 - 15067: 14,6 - 15068: 14,-4 - 15069: 14,-12 - 15080: 0,-30 - 15081: 0,-21 - 15096: 40,5 - 15097: 40,-4 - 15098: 40,-14 + 13724: 40,1 + 13821: 0,-25 + 13890: 0,28 + 13998: -7,51 + 14026: -71,1 + 14049: -40,1 + 14226: -26,28 + 14629: 0,34 + 14635: 0,39 + 14638: 0,46 + 14646: -7,56 + 14658: 0,23 + 14662: -26,37 + 14663: -26,32 + 14664: -40,43 + 14665: -40,49 + 14689: -72,55 + 14694: -40,23 + 14695: -40,17 + 14696: -40,11 + 14697: -40,6 + 14795: -14,-12 + 14796: -14,-4 + 14797: -14,6 + 14798: -14,14 + 14799: 14,14 + 14800: 14,6 + 14801: 14,-4 + 14802: 14,-12 + 14813: 0,-30 + 14814: 0,-21 + 14829: 40,5 + 14830: 40,-4 + 14831: 40,-14 - node: color: '#999999FF' id: BrickTileSteelEndN decals: - 14569: -72,55 + 14302: -72,55 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN decals: - 3024: 71,-24 - 3025: 73,-26 - 3026: 69,-26 + 2977: 71,-24 + 2978: 73,-26 + 2979: 69,-26 - node: color: '#4B709CFF' id: BrickTileSteelEndS decals: - 13981: 14,-1 - 14068: 0,-18 - 14096: -14,-1 + 13714: 14,-1 + 13801: 0,-18 + 13829: -14,-1 - node: color: '#808080FF' id: BrickTileSteelEndS decals: - 13993: 40,-1 - 14089: 0,-27 - 14159: 0,26 - 14261: 0,49 - 14295: -71,-1 - 14346: -40,26 - 14897: 0,31 - 14903: 0,38 - 14904: 0,43 - 14914: -7,54 - 14926: 0,22 - 14927: -26,31 - 14928: -26,36 - 14933: -40,47 - 14934: -40,41 - 14957: -72,53 - 14965: -40,21 - 14966: -40,16 - 14967: -40,10 - 14968: -40,4 - 15070: 14,-14 - 15071: 14,-6 - 15072: 14,4 - 15073: 14,12 - 15074: -14,12 - 15075: -14,4 - 15076: -14,-6 - 15077: -14,-14 - 15078: 0,-22 - 15079: 0,-31 - 15099: 40,-15 - 15100: 40,-5 - 15101: 40,4 + 13726: 40,-1 + 13822: 0,-27 + 13892: 0,26 + 13994: 0,49 + 14028: -71,-1 + 14079: -40,26 + 14630: 0,31 + 14636: 0,38 + 14637: 0,43 + 14647: -7,54 + 14659: 0,22 + 14660: -26,31 + 14661: -26,36 + 14666: -40,47 + 14667: -40,41 + 14690: -72,53 + 14698: -40,21 + 14699: -40,16 + 14700: -40,10 + 14701: -40,4 + 14803: 14,-14 + 14804: 14,-6 + 14805: 14,4 + 14806: 14,12 + 14807: -14,12 + 14808: -14,4 + 14809: -14,-6 + 14810: -14,-14 + 14811: 0,-22 + 14812: 0,-31 + 14832: 40,-15 + 14833: 40,-5 + 14834: 40,4 - node: color: '#999999FF' id: BrickTileSteelEndS decals: - 14570: -72,53 - 14572: -40,53 + 14303: -72,53 + 14305: -40,53 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 1773: 36,-21 - 1774: 44,-21 - 3020: 73,-24 - 3031: 69,-24 - 3052: 71,-26 + 1726: 36,-21 + 1727: 44,-21 + 2973: 73,-24 + 2984: 69,-24 + 3005: 71,-26 - node: color: '#4B709CFF' id: BrickTileSteelEndW decals: - 13980: 13,0 - 14067: -1,-17 - 14093: -15,0 - 14117: -1,18 + 13713: 13,0 + 13800: -1,-17 + 13826: -15,0 + 13850: -1,18 - node: color: '#808080FF' id: BrickTileSteelEndW decals: - 13992: 39,0 - 14158: -1,27 - 14262: -1,50 - 14314: -41,0 - 14343: -41,27 - 14490: -27,27 - 14831: -47,27 - 14832: -54,27 - 14833: -61,27 - 14838: -36,27 - 14839: -31,27 - 14840: -22,27 - 14841: -15,27 - 14842: -6,27 - 14895: 4,27 - 14915: 5,41 - 14916: 12,41 - 14943: -67,54 - 14944: -61,54 - 14945: -53,54 - 14946: -47,54 - 14978: -20,0 - 14979: -34,0 - 14980: -48,0 - 14981: -58,0 - 14982: -65,0 - 15054: -12,18 - 15055: -6,18 - 15056: 4,18 - 15057: 10,18 - 15058: 10,-17 - 15059: 4,-17 - 15060: -6,-17 - 15061: -12,-17 - 15086: 19,-26 - 15087: 14,-26 - 15088: 9,-26 - 15089: 4,-26 - 15090: 18,0 - 15091: 25,0 - 15092: 32,0 - 15103: 44,0 + 13725: 39,0 + 13891: -1,27 + 13995: -1,50 + 14047: -41,0 + 14076: -41,27 + 14223: -27,27 + 14564: -47,27 + 14565: -54,27 + 14566: -61,27 + 14571: -36,27 + 14572: -31,27 + 14573: -22,27 + 14574: -15,27 + 14575: -6,27 + 14628: 4,27 + 14648: 5,41 + 14649: 12,41 + 14676: -67,54 + 14677: -61,54 + 14678: -53,54 + 14679: -47,54 + 14711: -20,0 + 14712: -34,0 + 14713: -48,0 + 14714: -58,0 + 14715: -65,0 + 14787: -12,18 + 14788: -6,18 + 14789: 4,18 + 14790: 10,18 + 14791: 10,-17 + 14792: 4,-17 + 14793: -6,-17 + 14794: -12,-17 + 14819: 19,-26 + 14820: 14,-26 + 14821: 9,-26 + 14822: 4,-26 + 14823: 18,0 + 14824: 25,0 + 14825: 32,0 + 14836: 44,0 - node: color: '#999999FF' id: BrickTileSteelEndW decals: - 14571: -41,54 + 14304: -41,54 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW @@ -3056,418 +3056,418 @@ entities: 327: 39,-26 685: 52,-31 787: 47,-26 - 1771: 43,-20 - 2998: 60,-48 - 3021: 72,-23 - 3033: 72,-27 - 3048: 70,-25 - 6784: 61,-31 + 1724: 43,-20 + 2951: 60,-48 + 2974: 72,-23 + 2986: 72,-27 + 3001: 70,-25 + 6535: 61,-31 - node: color: '#4B709CFF' id: BrickTileSteelInnerNe decals: - 13985: 14,0 - 14098: -14,0 - 14121: 0,18 + 13718: 14,0 + 13831: -14,0 + 13854: 0,18 - node: color: '#808080FF' id: BrickTileSteelInnerNe decals: - 14008: 40,0 - 14091: 0,-26 - 14162: 0,27 - 14268: -7,50 - 14298: -71,0 - 14318: -40,0 - 14505: -26,27 - 14959: -72,54 + 13741: 40,0 + 13824: 0,-26 + 13895: 0,27 + 14001: -7,50 + 14031: -71,0 + 14051: -40,0 + 14238: -26,27 + 14692: -72,54 - node: color: '#999999FF' id: BrickTileSteelInnerNe decals: - 14577: -72,54 + 14310: -72,54 - node: color: '#BABABAFF' id: BrickTileSteelInnerNe decals: - 7346: 34,-61 + 7079: 34,-61 - node: color: '#CDCDCDFF' id: BrickTileSteelInnerNe decals: - 21066: -105,41 - 21067: -107,42 - 21068: -102,42 - 21069: -105,43 - 21070: -105,49 - 21071: -105,51 - 21072: -107,50 - 21073: -102,50 - 21074: -107,58 - 21075: -105,59 - 21076: -102,58 - 21077: -105,57 - 21078: -105,65 + 20326: -105,41 + 20327: -107,42 + 20328: -102,42 + 20329: -105,43 + 20330: -105,49 + 20331: -105,51 + 20332: -107,50 + 20333: -102,50 + 20334: -107,58 + 20335: -105,59 + 20336: -102,58 + 20337: -105,57 + 20338: -105,65 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerNe decals: - 4497: -7,-2 - 4498: -3,-2 - 4499: 1,-2 - 4500: 5,-2 - 4508: -1,-8 + 4300: -7,-2 + 4301: -3,-2 + 4302: 1,-2 + 4303: 5,-2 + 4311: -1,-8 - node: color: '#DE3A3A96' id: BrickTileSteelInnerNe decals: - 1933: -44,-15 + 1886: -44,-15 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1494: -25,35 - 1499: -40,60 - 1511: -47,59 - 3039: 69,-27 - 3060: 71,-25 + 1447: -25,35 + 1452: -40,60 + 1464: -47,59 + 2992: 69,-27 + 3013: 71,-25 - node: color: '#4B709CFF' id: BrickTileSteelInnerNw decals: - 13984: 14,0 - 14097: -14,0 - 14120: 0,18 + 13717: 14,0 + 13830: -14,0 + 13853: 0,18 - node: color: '#808080FF' id: BrickTileSteelInnerNw decals: - 14007: 40,0 - 14161: 0,27 - 14317: -40,0 - 14504: -26,27 + 13740: 40,0 + 13894: 0,27 + 14050: -40,0 + 14237: -26,27 - node: color: '#BABABAFF' id: BrickTileSteelInnerNw decals: - 7347: 38,-61 + 7080: 38,-61 - node: color: '#CDCDCDFF' id: BrickTileSteelInnerNw decals: - 21051: -102,65 - 21052: -105,58 - 21053: -102,59 - 21054: -100,58 - 21055: -102,57 - 21056: -105,50 - 21057: -102,51 - 21058: -100,50 - 21059: -102,49 - 21061: -105,42 - 21063: -102,43 - 21064: -102,41 - 21065: -100,42 + 20312: -102,65 + 20313: -105,58 + 20314: -102,59 + 20315: -100,58 + 20316: -102,57 + 20317: -105,50 + 20318: -102,51 + 20319: -100,50 + 20320: -102,49 + 20321: -105,42 + 20323: -102,43 + 20324: -102,41 + 20325: -100,42 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerNw decals: - 4501: 7,-2 - 4502: 3,-2 - 4503: -1,-2 - 4504: -5,-2 - 4505: 1,-8 + 4304: 7,-2 + 4305: 3,-2 + 4306: -1,-2 + 4307: -5,-2 + 4308: 1,-8 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1500: -48,60 - 1512: -41,59 - 3041: 73,-27 - 3056: 71,-25 - 6955: 18,-67 + 1453: -48,60 + 1465: -41,59 + 2994: 73,-27 + 3009: 71,-25 + 6688: 18,-67 - node: color: '#4B709CFF' id: BrickTileSteelInnerSe decals: - 13982: 14,0 - 14071: 0,-17 - 14099: -14,0 + 13715: 14,0 + 13804: 0,-17 + 13832: -14,0 - node: color: '#808080FF' id: BrickTileSteelInnerSe decals: - 14009: 40,0 - 14092: 0,-26 - 14163: 0,27 - 14297: -71,0 - 14347: -40,27 - 14960: -72,54 + 13742: 40,0 + 13825: 0,-26 + 13896: 0,27 + 14030: -71,0 + 14080: -40,27 + 14693: -72,54 - node: color: '#999999FF' id: BrickTileSteelInnerSe decals: - 14576: -72,54 + 14309: -72,54 - node: color: '#BABABAFF' id: BrickTileSteelInnerSe decals: - 7344: 34,-59 + 7077: 34,-59 - node: color: '#CDCDCDFF' id: BrickTileSteelInnerSe decals: - 21023: -107,66 - 21024: -105,67 - 21025: -105,65 - 21026: -102,66 - 21027: -105,59 - 21028: -107,58 - 21029: -105,57 - 21030: -102,58 - 21031: -105,51 - 21032: -107,50 - 21033: -105,49 - 21034: -102,50 - 21035: -105,43 + 20284: -107,66 + 20285: -105,67 + 20286: -105,65 + 20287: -102,66 + 20288: -105,59 + 20289: -107,58 + 20290: -105,57 + 20291: -102,58 + 20292: -105,51 + 20293: -107,50 + 20294: -105,49 + 20295: -102,50 + 20296: -105,43 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerSe decals: - 4493: 5,2 - 4494: 1,2 - 4495: -3,2 - 4496: -7,2 - 4506: -1,-6 + 4296: 5,2 + 4297: 1,2 + 4298: -3,2 + 4299: -7,2 + 4309: -1,-6 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSe decals: - 1798: -44,-18 + 1751: -44,-18 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1507: -47,61 - 1777: 36,-20 - 3042: 69,-23 - 3055: 71,-25 - 5867: -27,-45 + 1460: -47,61 + 1730: 36,-20 + 2995: 69,-23 + 3008: 71,-25 + 5670: -27,-45 - node: color: '#4B709CFF' id: BrickTileSteelInnerSw decals: - 13983: 14,0 - 14072: 0,-17 - 14100: -14,0 + 13716: 14,0 + 13805: 0,-17 + 13833: -14,0 - node: color: '#808080FF' id: BrickTileSteelInnerSw decals: - 14010: 40,0 - 14164: 0,27 - 14264: 0,50 - 14348: -40,27 + 13743: 40,0 + 13897: 0,27 + 13997: 0,50 + 14081: -40,27 - node: color: '#999999FF' id: BrickTileSteelInnerSw decals: - 14574: -40,54 + 14307: -40,54 - node: color: '#BABABAFF' id: BrickTileSteelInnerSw decals: - 7345: 38,-59 + 7078: 38,-59 - node: color: '#CDCDCDFF' id: BrickTileSteelInnerSw decals: - 21036: -102,43 - 21037: -102,49 - 21038: -105,50 - 21039: -100,50 - 21040: -102,51 - 21043: -105,58 - 21044: -102,57 - 21045: -102,59 - 21046: -100,58 - 21047: -105,66 - 21048: -102,65 - 21049: -102,67 - 21050: -100,66 + 20297: -102,43 + 20298: -102,49 + 20299: -105,50 + 20300: -100,50 + 20301: -102,51 + 20304: -105,58 + 20305: -102,57 + 20306: -102,59 + 20307: -100,58 + 20308: -105,66 + 20309: -102,65 + 20310: -102,67 + 20311: -100,66 - node: color: '#DCDCDCFF' id: BrickTileSteelInnerSw decals: - 4489: -1,2 - 4490: -5,2 - 4491: 3,2 - 4492: 7,2 - 4507: 1,-6 + 4292: -1,2 + 4293: -5,2 + 4294: 3,2 + 4295: 7,2 + 4310: 1,-6 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 1508: -41,61 - 1776: 44,-20 - 3023: 73,-23 - 3053: 71,-25 - 5868: -19,-45 + 1461: -41,61 + 1729: 44,-20 + 2976: 73,-23 + 3006: 71,-25 + 5671: -19,-45 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 5734: 9,24 - 5735: 9,23 - 5736: 9,22 - 5737: 9,21 - 5738: 11,21 - 5739: 11,22 - 5740: 11,23 - 5741: 11,24 - 5742: 13,24 - 5743: 13,23 - 5744: 13,22 - 5745: 13,21 - 5746: 15,23 - 5747: 15,24 - 5748: 17,24 - 5749: 17,23 + 5537: 9,24 + 5538: 9,23 + 5539: 9,22 + 5540: 9,21 + 5541: 11,21 + 5542: 11,22 + 5543: 11,23 + 5544: 11,24 + 5545: 13,24 + 5546: 13,23 + 5547: 13,22 + 5548: 13,21 + 5549: 15,23 + 5550: 15,24 + 5551: 17,24 + 5552: 17,23 - node: color: '#808080FF' id: BrickTileSteelLineE decals: - 14900: 0,32 - 14901: 0,33 - 14906: 0,44 - 14907: 0,45 - 14912: -7,55 - 14935: -40,42 - 14936: -40,48 - 14969: -40,5 - 14970: -40,22 - 14995: -25,0 - 15016: 14,13 - 15017: 14,5 - 15018: 14,-5 - 15019: 14,-13 - 15020: -14,-13 - 15021: -14,-5 - 15022: -14,5 - 15023: -14,13 + 14633: 0,32 + 14634: 0,33 + 14639: 0,44 + 14640: 0,45 + 14645: -7,55 + 14668: -40,42 + 14669: -40,48 + 14702: -40,5 + 14703: -40,22 + 14728: -25,0 + 14749: 14,13 + 14750: 14,5 + 14751: 14,-5 + 14752: 14,-13 + 14753: -14,-13 + 14754: -14,-5 + 14755: -14,5 + 14756: -14,13 - node: color: '#BABABAFF' id: BrickTileSteelLineE decals: - 7336: 34,-60 + 7069: 34,-60 - node: color: '#CDCDCDFF' id: BrickTileSteelLineE decals: - 20788: -107,65 - 20789: -107,64 - 20790: -107,63 - 20791: -107,62 - 20792: -107,61 - 20793: -107,60 - 20794: -107,59 - 20798: -105,63 - 20799: -105,64 - 20800: -102,59 - 20801: -102,60 - 20802: -102,61 - 20803: -102,62 - 20804: -102,63 - 20805: -102,64 - 20806: -102,65 - 20807: -105,66 - 20808: -100,66 - 20809: -100,65 - 20810: -100,64 - 20811: -100,63 - 20812: -100,62 - 20813: -100,61 - 20814: -100,60 - 20815: -100,59 - 20816: -100,58 - 20817: -100,57 - 20818: -100,56 - 20819: -100,55 - 20820: -100,54 - 20821: -100,53 - 20822: -100,52 - 20823: -100,51 - 20824: -100,50 - 20825: -100,49 - 20826: -100,48 - 20827: -100,46 - 20828: -100,47 - 20829: -100,45 - 20830: -100,44 - 20831: -100,43 - 20832: -100,42 - 20833: -105,42 - 20834: -102,43 - 20835: -102,44 - 20836: -102,45 - 20837: -102,46 - 20838: -102,47 - 20839: -102,48 - 20840: -102,49 - 20841: -107,43 - 20842: -107,44 - 20843: -107,45 - 20844: -107,46 - 20845: -107,47 - 20846: -107,48 - 20847: -107,49 - 20848: -105,44 - 20849: -105,45 - 20850: -105,46 - 20851: -105,47 - 20852: -105,48 - 20853: -105,52 - 20854: -105,53 - 20855: -105,54 - 20856: -105,55 - 20857: -105,56 - 20858: -107,51 - 20859: -107,52 - 20860: -107,53 - 20861: -107,54 - 20863: -107,56 - 20864: -107,57 - 20865: -102,51 - 20866: -102,52 - 20867: -102,53 - 20868: -102,54 - 20869: -102,55 - 20870: -102,56 - 20871: -102,57 - 20874: -105,62 - 20875: -105,61 - 20876: -105,60 - 20877: -105,50 - 20915: -107,55 - 21003: -105,58 + 20059: -107,65 + 20060: -107,64 + 20061: -107,63 + 20062: -107,62 + 20063: -107,61 + 20064: -107,60 + 20065: -107,59 + 20066: -105,63 + 20067: -105,64 + 20068: -102,59 + 20069: -102,60 + 20070: -102,61 + 20071: -102,62 + 20072: -102,63 + 20073: -102,64 + 20074: -102,65 + 20075: -105,66 + 20076: -100,66 + 20077: -100,65 + 20078: -100,64 + 20079: -100,63 + 20080: -100,62 + 20081: -100,61 + 20082: -100,60 + 20083: -100,59 + 20084: -100,58 + 20085: -100,57 + 20086: -100,56 + 20087: -100,55 + 20088: -100,54 + 20089: -100,53 + 20090: -100,52 + 20091: -100,51 + 20092: -100,50 + 20093: -100,49 + 20094: -100,48 + 20095: -100,46 + 20096: -100,47 + 20097: -100,45 + 20098: -100,44 + 20099: -100,43 + 20100: -100,42 + 20101: -105,42 + 20102: -102,43 + 20103: -102,44 + 20104: -102,45 + 20105: -102,46 + 20106: -102,47 + 20107: -102,48 + 20108: -102,49 + 20109: -107,43 + 20110: -107,44 + 20111: -107,45 + 20112: -107,46 + 20113: -107,47 + 20114: -107,48 + 20115: -107,49 + 20116: -105,44 + 20117: -105,45 + 20118: -105,46 + 20119: -105,47 + 20120: -105,48 + 20121: -105,52 + 20122: -105,53 + 20123: -105,54 + 20124: -105,55 + 20125: -105,56 + 20126: -107,51 + 20127: -107,52 + 20128: -107,53 + 20129: -107,54 + 20130: -107,56 + 20131: -107,57 + 20132: -102,51 + 20133: -102,52 + 20134: -102,53 + 20135: -102,54 + 20136: -102,55 + 20137: -102,56 + 20138: -102,57 + 20139: -105,62 + 20140: -105,61 + 20141: -105,60 + 20142: -105,50 + 20178: -107,55 + 20264: -105,58 - node: color: '#DCDCDCFF' id: BrickTileSteelLineE decals: - 4473: -7,1 - 4474: -7,0 - 4475: -7,-1 - 4476: -3,1 - 4477: -3,0 - 4478: -3,-1 - 4479: 1,1 - 4480: 1,0 - 4481: 1,-1 - 4482: 5,1 - 4483: 5,0 - 4484: 5,-1 - 4509: -1,-7 + 4276: -7,1 + 4277: -7,0 + 4278: -7,-1 + 4279: -3,1 + 4280: -3,0 + 4281: -3,-1 + 4282: 1,1 + 4283: 1,0 + 4284: 1,-1 + 4285: 5,1 + 4286: 5,0 + 4287: 5,-1 + 4312: -1,-7 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -3475,128 +3475,128 @@ entities: 756: -27,23 757: -27,22 758: -27,21 - 1493: -25,36 - 1497: -40,62 - 1498: -40,61 - 1509: -47,60 - 2473: 76,-37 - 2799: 59,-65 - 2800: 59,-64 - 2801: 59,-63 - 2802: 59,-62 - 2962: 59,-56 - 2963: 59,-57 - 2964: 59,-58 - 3617: 5,6 - 3618: 5,5 - 3630: -4,6 - 3631: -4,5 - 6952: 20,-67 - 7150: 20,-53 - 7334: 34,-60 - 12553: -54,-14 - 12554: -54,-15 - 12555: -54,-16 - 12556: -54,-17 - 12557: -54,-18 - 12558: -54,-19 + 1446: -25,36 + 1450: -40,62 + 1451: -40,61 + 1462: -47,60 + 2426: 76,-37 + 2752: 59,-65 + 2753: 59,-64 + 2754: 59,-63 + 2755: 59,-62 + 2915: 59,-56 + 2916: 59,-57 + 2917: 59,-58 + 3570: 5,6 + 3571: 5,5 + 3583: -4,6 + 3584: -4,5 + 6685: 20,-67 + 6883: 20,-53 + 7067: 34,-60 + 12286: -54,-14 + 12287: -54,-15 + 12288: -54,-16 + 12289: -54,-17 + 12290: -54,-18 + 12291: -54,-19 - node: color: '#4B709CFF' id: BrickTileSteelLineN decals: - 14070: 0,-17 + 13803: 0,-17 - node: color: '#808080FF' id: BrickTileSteelLineN decals: - 14345: -40,27 - 14889: -21,27 - 14890: -14,27 - 14891: -13,27 - 14892: -12,27 - 14893: -5,27 - 14919: -60,27 - 14920: -59,27 - 14921: -52,27 - 14922: -53,27 - 14923: -45,27 - 14924: -46,27 - 14951: -66,54 - 14952: -60,54 - 14953: -52,54 - 14954: -46,54 - 14991: -26,1 - 14992: -19,0 - 14996: -33,0 - 14997: -47,0 - 14998: -57,0 - 14999: -56,0 - 15000: -55,0 - 15001: -54,0 - 15002: -64,0 - 15026: -11,18 - 15027: -5,18 - 15028: 5,18 - 15029: 11,18 - 15041: 11,-17 - 15042: 5,-17 - 15044: -5,-17 - 15045: -11,-17 - 15107: 19,0 - 15108: 26,0 - 15109: 33,0 + 14078: -40,27 + 14622: -21,27 + 14623: -14,27 + 14624: -13,27 + 14625: -12,27 + 14626: -5,27 + 14652: -60,27 + 14653: -59,27 + 14654: -52,27 + 14655: -53,27 + 14656: -45,27 + 14657: -46,27 + 14684: -66,54 + 14685: -60,54 + 14686: -52,54 + 14687: -46,54 + 14724: -26,1 + 14725: -19,0 + 14729: -33,0 + 14730: -47,0 + 14731: -57,0 + 14732: -56,0 + 14733: -55,0 + 14734: -54,0 + 14735: -64,0 + 14759: -11,18 + 14760: -5,18 + 14761: 5,18 + 14762: 11,18 + 14774: 11,-17 + 14775: 5,-17 + 14777: -5,-17 + 14778: -11,-17 + 14840: 19,0 + 14841: 26,0 + 14842: 33,0 - node: color: '#BABABAFF' id: BrickTileSteelLineN decals: - 7337: 35,-61 - 7338: 36,-61 - 7339: 37,-61 + 7070: 35,-61 + 7071: 36,-61 + 7072: 37,-61 - node: color: '#CDCDCDFF' id: BrickTileSteelLineN decals: - 20927: -106,67 - 20928: -105,67 - 20929: -104,67 - 20930: -103,67 - 20931: -102,67 - 20932: -101,67 - 20933: -104,65 - 20934: -103,65 - 21001: -104,57 - 21002: -103,57 - 21005: -104,59 - 21006: -103,59 - 21007: -104,51 - 21008: -103,51 - 21009: -104,43 - 21010: -103,43 - 21011: -106,50 - 21012: -101,50 - 21013: -106,58 - 21014: -101,58 - 21015: -106,42 - 21016: -101,42 - 21017: -104,41 - 21018: -103,41 - 21041: -104,49 - 21042: -103,49 + 20190: -106,67 + 20191: -105,67 + 20192: -104,67 + 20193: -103,67 + 20194: -102,67 + 20195: -101,67 + 20196: -104,65 + 20197: -103,65 + 20262: -104,57 + 20263: -103,57 + 20266: -104,59 + 20267: -103,59 + 20268: -104,51 + 20269: -103,51 + 20270: -104,43 + 20271: -103,43 + 20272: -106,50 + 20273: -101,50 + 20274: -106,58 + 20275: -101,58 + 20276: -106,42 + 20277: -101,42 + 20278: -104,41 + 20279: -103,41 + 20302: -104,49 + 20303: -103,49 - node: color: '#DCDCDCFF' id: BrickTileSteelLineN decals: - 4485: -6,-2 - 4486: -2,-2 - 4487: 2,-2 - 4488: 6,-2 - 4511: 0,-8 + 4288: -6,-2 + 4289: -2,-2 + 4290: 2,-2 + 4291: 6,-2 + 4314: 0,-8 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 1796: -46,-14 - 1924: -45,-14 + 1749: -46,-14 + 1877: -45,-14 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -3611,129 +3611,129 @@ entities: 753: -29,24 754: -28,24 789: 48,-26 - 1492: -27,38 - 1501: -39,60 - 1513: -46,59 - 1514: -45,59 - 1515: -44,59 - 1516: -43,59 - 1517: -42,59 - 2199: -39,60 - 2204: -49,60 - 2475: 72,-40 - 2808: 60,-66 - 2960: 60,-59 - 3001: 61,-48 - 3002: 62,-48 - 3140: 70,-31 - 3141: 71,-31 - 3142: 72,-31 - 6225: 18,-54 - 6226: 17,-54 - 6786: 62,-31 - 6949: 17,-67 - 6950: 19,-66 - 6951: 18,-66 - 18334: 12,-59 + 1445: -27,38 + 1454: -39,60 + 1466: -46,59 + 1467: -45,59 + 1468: -44,59 + 1469: -43,59 + 1470: -42,59 + 2152: -39,60 + 2157: -49,60 + 2428: 72,-40 + 2761: 60,-66 + 2913: 60,-59 + 2954: 61,-48 + 2955: 62,-48 + 3093: 70,-31 + 3094: 71,-31 + 3095: 72,-31 + 5982: 18,-54 + 5983: 17,-54 + 6537: 62,-31 + 6682: 17,-67 + 6683: 19,-66 + 6684: 18,-66 + 18067: 12,-59 - node: color: '#4B709CFF' id: BrickTileSteelLineS decals: - 14116: 0,18 + 13849: 0,18 - node: color: '#808080FF' id: BrickTileSteelLineS decals: - 14313: -40,0 - 14494: -26,27 - 14875: -60,27 - 14876: -59,27 - 14877: -52,27 - 14878: -53,27 - 14879: -45,27 - 14880: -46,27 - 14881: -21,27 - 14882: -14,27 - 14883: -13,27 - 14884: -12,27 - 14885: -5,27 - 14947: -46,54 - 14948: -52,54 - 14949: -60,54 - 14950: -66,54 - 14983: -64,0 - 14984: -57,0 - 14985: -56,0 - 14986: -55,0 - 14987: -54,0 - 14988: -47,0 - 14989: -33,0 - 14990: -26,-1 - 14993: -19,0 - 15030: 11,18 - 15031: 5,18 - 15032: -5,18 - 15033: -11,18 - 15035: -11,-17 - 15036: -5,-17 - 15037: 5,-17 - 15038: 11,-17 - 15104: 33,0 - 15105: 26,0 - 15106: 19,0 + 14046: -40,0 + 14227: -26,27 + 14608: -60,27 + 14609: -59,27 + 14610: -52,27 + 14611: -53,27 + 14612: -45,27 + 14613: -46,27 + 14614: -21,27 + 14615: -14,27 + 14616: -13,27 + 14617: -12,27 + 14618: -5,27 + 14680: -46,54 + 14681: -52,54 + 14682: -60,54 + 14683: -66,54 + 14716: -64,0 + 14717: -57,0 + 14718: -56,0 + 14719: -55,0 + 14720: -54,0 + 14721: -47,0 + 14722: -33,0 + 14723: -26,-1 + 14726: -19,0 + 14763: 11,18 + 14764: 5,18 + 14765: -5,18 + 14766: -11,18 + 14768: -11,-17 + 14769: -5,-17 + 14770: 5,-17 + 14771: 11,-17 + 14837: 33,0 + 14838: 26,0 + 14839: 19,0 - node: color: '#BABABAFF' id: BrickTileSteelLineS decals: - 7340: 35,-59 - 7341: 36,-59 - 7342: 37,-59 - 7343: 35,-59 + 7073: 35,-59 + 7074: 36,-59 + 7075: 37,-59 + 7076: 35,-59 - node: color: '#CDCDCDFF' id: BrickTileSteelLineS decals: - 20974: -106,41 - 20976: -104,41 - 20977: -103,41 - 20978: -102,41 - 20979: -101,41 - 20980: -103,43 - 20981: -104,43 - 20982: -104,49 - 20983: -103,49 - 20984: -104,51 - 20985: -103,51 - 20986: -106,50 - 20987: -101,50 - 20988: -104,57 - 20989: -103,57 - 20990: -106,58 - 20991: -101,58 - 20992: -106,66 - 20993: -104,65 - 20994: -103,65 - 20995: -101,66 - 20996: -104,67 - 20997: -103,67 - 20999: -104,59 - 21000: -103,59 - 21062: -105,41 + 20237: -106,41 + 20238: -104,41 + 20239: -103,41 + 20240: -102,41 + 20241: -101,41 + 20242: -103,43 + 20243: -104,43 + 20244: -104,49 + 20245: -103,49 + 20246: -104,51 + 20247: -103,51 + 20248: -106,50 + 20249: -101,50 + 20250: -104,57 + 20251: -103,57 + 20252: -106,58 + 20253: -101,58 + 20254: -106,66 + 20255: -104,65 + 20256: -103,65 + 20257: -101,66 + 20258: -104,67 + 20259: -103,67 + 20260: -104,59 + 20261: -103,59 + 20322: -105,41 - node: color: '#DCDCDCFF' id: BrickTileSteelLineS decals: - 4457: 6,2 - 4458: 2,2 - 4459: -2,2 - 4460: -6,2 - 4510: 0,-6 + 4260: 6,2 + 4261: 2,2 + 4262: -2,2 + 4263: -6,2 + 4313: 0,-6 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 1791: -45,-19 - 1792: -46,-19 + 1744: -45,-19 + 1745: -46,-19 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -3748,225 +3748,225 @@ entities: 761: -29,20 762: -30,20 788: 48,-26 - 1502: -42,61 - 1503: -43,61 - 1504: -44,61 - 1505: -45,61 - 1506: -46,61 - 2476: 72,-41 - 2807: 60,-61 - 2961: 60,-55 - 2999: 61,-48 - 3000: 62,-48 - 3143: 70,-32 - 3144: 71,-32 - 3145: 72,-32 - 5859: -26,-45 - 5860: -26,-45 - 5861: -25,-45 - 5862: -24,-45 - 5863: -23,-45 - 5864: -22,-45 - 5865: -21,-45 - 5866: -20,-45 - 6785: 62,-31 - 6943: 20,-68 - 6944: 19,-68 - 6945: 18,-68 - 6946: 17,-68 - 9039: -34,-63 - 18335: 12,-59 + 1455: -42,61 + 1456: -43,61 + 1457: -44,61 + 1458: -45,61 + 1459: -46,61 + 2429: 72,-41 + 2760: 60,-61 + 2914: 60,-55 + 2952: 61,-48 + 2953: 62,-48 + 3096: 70,-32 + 3097: 71,-32 + 3098: 72,-32 + 5662: -26,-45 + 5663: -26,-45 + 5664: -25,-45 + 5665: -24,-45 + 5666: -23,-45 + 5667: -22,-45 + 5668: -21,-45 + 5669: -20,-45 + 6536: 62,-31 + 6676: 20,-68 + 6677: 19,-68 + 6678: 18,-68 + 6679: 17,-68 + 8772: -34,-63 + 18068: 12,-59 - node: color: '#00000016' id: BrickTileSteelLineW decals: - 18338: 12.21762,-58.99109 - 18345: 4.213413,-51.970966 - 18346: 4.2180424,-50.994114 - 18347: 4.217442,-49.963196 + 18071: 12.21762,-58.99109 + 18078: 4.213413,-51.970966 + 18079: 4.2180424,-50.994114 + 18080: 4.217442,-49.963196 - node: cleanable: True color: '#00000016' id: BrickTileSteelLineW decals: - 18354: -3.5035815,-51.99901 - 18355: -3.498952,-51.00364 - 18356: -3.498952,-49.99901 + 18087: -3.5035815,-51.99901 + 18088: -3.498952,-51.00364 + 18089: -3.498952,-49.99901 - node: color: '#0000002D' id: BrickTileSteelLineW decals: - 18337: 12.46762,-59.000347 - 18342: 4.5050263,-52.004772 - 18343: 4.5003967,-51.004772 - 18344: 4.5003967,-50.0013 + 18070: 12.46762,-59.000347 + 18075: 4.5050263,-52.004772 + 18076: 4.5003967,-51.004772 + 18077: 4.5003967,-50.0013 - node: cleanable: True color: '#0000002D' id: BrickTileSteelLineW decals: - 18351: -3.748952,-51.99901 - 18352: -3.748952,-50.99901 - 18353: -3.748952,-49.99901 + 18084: -3.748952,-51.99901 + 18085: -3.748952,-50.99901 + 18086: -3.748952,-49.99901 - node: color: '#00000044' id: BrickTileSteelLineW decals: - 18336: 12.71762,-59.000347 - 18339: 4.755844,-52.00014 - 18340: 4.7512145,-51.00014 - 18341: 4.7512145,-50.00014 - 18348: -3.998952,-51.99901 - 18349: -3.998952,-50.99901 - 18350: -3.998952,-49.994377 + 18069: 12.71762,-59.000347 + 18072: 4.755844,-52.00014 + 18073: 4.7512145,-51.00014 + 18074: 4.7512145,-50.00014 + 18081: -3.998952,-51.99901 + 18082: -3.998952,-50.99901 + 18083: -3.998952,-49.994377 - node: color: '#808080FF' id: BrickTileSteelLineW decals: - 14090: 0,-26 - 14296: -71,0 - 14898: 0,32 - 14899: 0,33 - 14908: 0,44 - 14909: 0,45 - 14910: -7,55 - 14937: -40,42 - 14938: -40,48 - 14958: -72,54 - 14971: -40,22 - 14972: -40,5 - 14994: -27,0 - 15007: -14,5 - 15008: -14,13 - 15009: -14,-5 - 15010: -14,-13 - 15011: 14,-13 - 15012: 14,-5 - 15013: 14,5 - 15014: 14,13 + 13823: 0,-26 + 14029: -71,0 + 14631: 0,32 + 14632: 0,33 + 14641: 0,44 + 14642: 0,45 + 14643: -7,55 + 14670: -40,42 + 14671: -40,48 + 14691: -72,54 + 14704: -40,22 + 14705: -40,5 + 14727: -27,0 + 14740: -14,5 + 14741: -14,13 + 14742: -14,-5 + 14743: -14,-13 + 14744: 14,-13 + 14745: 14,-5 + 14746: 14,5 + 14747: 14,13 - node: color: '#999999FF' id: BrickTileSteelLineW decals: - 14575: -72,54 + 14308: -72,54 - node: color: '#BABABAFF' id: BrickTileSteelLineW decals: - 7335: 38,-60 + 7068: 38,-60 - node: color: '#CDCDCDFF' id: BrickTileSteelLineW decals: - 20878: -105,43 - 20879: -105,44 - 20880: -105,45 - 20881: -105,46 - 20882: -105,47 - 20883: -105,48 - 20884: -105,49 - 20885: -102,44 - 20886: -102,45 - 20887: -102,46 - 20888: -102,47 - 20889: -102,48 - 20890: -102,50 - 20891: -102,42 - 20892: -100,43 - 20893: -100,44 - 20894: -100,45 - 20895: -100,46 - 20896: -100,47 - 20897: -100,48 - 20898: -100,49 - 20899: -107,42 - 20900: -107,43 - 20901: -107,44 - 20902: -107,45 - 20903: -107,46 - 20904: -107,47 - 20905: -107,48 - 20906: -107,49 - 20907: -107,50 - 20908: -107,51 - 20909: -107,52 - 20910: -107,53 - 20911: -107,54 - 20914: -107,55 - 20916: -107,56 - 20917: -107,57 - 20918: -107,58 - 20919: -107,59 - 20920: -107,60 - 20921: -107,61 - 20922: -107,62 - 20923: -107,63 - 20924: -107,64 - 20925: -107,65 - 20926: -107,66 - 20935: -102,66 - 20936: -105,65 - 20937: -105,64 - 20938: -105,63 - 20939: -105,62 - 20940: -105,61 - 20941: -105,60 - 20942: -105,59 - 20943: -100,59 - 20944: -100,60 - 20945: -100,61 - 20946: -100,62 - 20947: -100,63 - 20948: -100,64 - 20949: -100,65 - 20950: -102,60 - 20951: -102,61 - 20952: -102,62 - 20953: -102,63 - 20954: -102,64 - 20955: -105,57 - 20956: -105,56 - 20957: -105,55 - 20958: -105,54 - 20959: -105,53 - 20960: -105,52 - 20961: -105,51 - 20962: -102,52 - 20963: -102,53 - 20964: -102,54 - 20965: -102,55 - 20966: -102,56 - 20967: -100,51 - 20968: -100,52 - 20969: -100,53 - 20970: -100,54 - 20971: -100,55 - 20972: -100,56 - 20973: -100,57 - 21004: -102,58 + 20143: -105,43 + 20144: -105,44 + 20145: -105,45 + 20146: -105,46 + 20147: -105,47 + 20148: -105,48 + 20149: -105,49 + 20150: -102,44 + 20151: -102,45 + 20152: -102,46 + 20153: -102,47 + 20154: -102,48 + 20155: -102,50 + 20156: -102,42 + 20157: -100,43 + 20158: -100,44 + 20159: -100,45 + 20160: -100,46 + 20161: -100,47 + 20162: -100,48 + 20163: -100,49 + 20164: -107,42 + 20165: -107,43 + 20166: -107,44 + 20167: -107,45 + 20168: -107,46 + 20169: -107,47 + 20170: -107,48 + 20171: -107,49 + 20172: -107,50 + 20173: -107,51 + 20174: -107,52 + 20175: -107,53 + 20176: -107,54 + 20177: -107,55 + 20179: -107,56 + 20180: -107,57 + 20181: -107,58 + 20182: -107,59 + 20183: -107,60 + 20184: -107,61 + 20185: -107,62 + 20186: -107,63 + 20187: -107,64 + 20188: -107,65 + 20189: -107,66 + 20198: -102,66 + 20199: -105,65 + 20200: -105,64 + 20201: -105,63 + 20202: -105,62 + 20203: -105,61 + 20204: -105,60 + 20205: -105,59 + 20206: -100,59 + 20207: -100,60 + 20208: -100,61 + 20209: -100,62 + 20210: -100,63 + 20211: -100,64 + 20212: -100,65 + 20213: -102,60 + 20214: -102,61 + 20215: -102,62 + 20216: -102,63 + 20217: -102,64 + 20218: -105,57 + 20219: -105,56 + 20220: -105,55 + 20221: -105,54 + 20222: -105,53 + 20223: -105,52 + 20224: -105,51 + 20225: -102,52 + 20226: -102,53 + 20227: -102,54 + 20228: -102,55 + 20229: -102,56 + 20230: -100,51 + 20231: -100,52 + 20232: -100,53 + 20233: -100,54 + 20234: -100,55 + 20235: -100,56 + 20236: -100,57 + 20265: -102,58 - node: color: '#DCDCDCFF' id: BrickTileSteelLineW decals: - 4461: -5,1 - 4462: -5,0 - 4463: -5,-1 - 4464: -1,1 - 4465: -1,0 - 4466: -1,-1 - 4467: 3,1 - 4468: 3,0 - 4469: 3,-1 - 4470: 7,1 - 4471: 7,0 - 4472: 7,-1 - 4512: 1,-7 + 4264: -5,1 + 4265: -5,0 + 4266: -5,-1 + 4267: -1,1 + 4268: -1,0 + 4269: -1,-1 + 4270: 3,1 + 4271: 3,0 + 4272: 3,-1 + 4273: 7,1 + 4274: 7,0 + 4275: 7,-1 + 4315: 1,-7 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 1794: -47,-18 - 1795: -47,-15 + 1747: -47,-18 + 1748: -47,-15 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -3974,948 +3974,948 @@ entities: 748: -31,21 749: -31,22 750: -31,23 - 1495: -48,62 - 1496: -48,61 - 1510: -41,60 - 2474: 75,-37 - 2803: 61,-65 - 2804: 61,-64 - 2805: 61,-63 - 2806: 61,-62 - 2965: 61,-58 - 2966: 61,-57 - 2967: 61,-56 - 3619: -5,6 - 3620: -5,5 - 3628: 4,6 - 3629: 4,5 - 5856: -19,-46 - 5857: -19,-47 - 6227: 16,-55 - 6228: 16,-56 - 6947: 17,-68 - 6948: 17,-67 - 7151: 20,-53 + 1448: -48,62 + 1449: -48,61 + 1463: -41,60 + 2427: 75,-37 + 2756: 61,-65 + 2757: 61,-64 + 2758: 61,-63 + 2759: 61,-62 + 2918: 61,-58 + 2919: 61,-57 + 2920: 61,-56 + 3572: -5,6 + 3573: -5,5 + 3581: 4,6 + 3582: 4,5 + 5659: -19,-46 + 5660: -19,-47 + 5984: 16,-55 + 5985: 16,-56 + 6680: 17,-68 + 6681: 17,-67 + 6884: 20,-53 - node: color: '#6CDBFFFF' id: BrickTileWhiteBox decals: - 4186: -29,-12 + 3989: -29,-12 - node: color: '#9A54BFFF' id: BrickTileWhiteBox decals: - 17748: -46,106 + 17481: -46,106 - node: color: '#FFFFFFFF' id: BrickTileWhiteBox decals: - 7128: 21,-52 + 6861: 21,-52 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNe decals: - 3896: 1,12 + 3771: 1,12 - node: color: '#37789BFF' id: BrickTileWhiteCornerNe decals: - 7283: 41,-58 - 7302: 27,-57 - 7353: 34,-57 - 9217: 29,-50 + 7016: 41,-58 + 7035: 27,-57 + 7086: 34,-57 + 8950: 29,-50 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNe decals: - 13969: 13,-1 - 14063: -1,-18 - 14106: -15,-1 - 15597: -19,13 - 16962: -40,-82 + 13702: 13,-1 + 13796: -1,-18 + 13839: -15,-1 + 15330: -19,13 + 16695: -40,-82 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: - 6723: 16,-64 - 7378: 3,-50 - 7404: 3,-48 + 6474: 16,-64 + 7111: 3,-50 + 7137: 3,-48 - node: color: '#628E36FF' id: BrickTileWhiteCornerNe decals: - 1307: -43,45 + 1260: -43,45 - node: color: '#808080FF' id: BrickTileWhiteCornerNe decals: - 14141: -1,26 - 14172: 39,-1 - 14219: -16,-10 - 14247: -16,8 - 14291: -1,49 - 14342: -41,26 - 14854: -41,53 + 13874: -1,26 + 13905: 39,-1 + 13952: -16,-10 + 13980: -16,8 + 14024: -1,49 + 14075: -41,26 + 14587: -41,53 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNe decals: - 6400: 3,-58 - 6758: 11,-57 - 6918: 23,-57 - 6932: 20,-54 - 7384: 3,-50 - 9035: -33,-61 - 9181: 2,-39 + 6151: 3,-58 + 6509: 11,-57 + 6663: 23,-57 + 6665: 20,-54 + 7117: 3,-50 + 8768: -33,-61 + 8914: 2,-39 - node: color: '#999999FF' id: BrickTileWhiteCornerNe decals: - 14622: -41,53 + 14355: -41,53 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 1395: -48,39 - 3855: -7,12 + 1348: -48,39 + 3730: -7,12 - node: color: '#A4610696' id: BrickTileWhiteCornerNe decals: - 3842: 9,7 + 3717: 9,7 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 3888: 5,12 + 3763: 5,12 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerNe decals: - 1199: -54,43 + 1152: -54,43 - node: color: '#DDC3A1FF' id: BrickTileWhiteCornerNe decals: - 3396: -46,20 + 3349: -46,20 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 3778: -7,7 + 3707: -7,7 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 3864: 9,12 + 3739: 9,12 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: 206: 51,-18 - 2515: 7,-9 - 4191: -29,-12 - 6180: 14,-54 - 6373: -1,-58 - 6802: 23,-60 - 6803: 17,-60 - 15656: 1,-35 - 15657: -4,-35 - 15658: 6,-35 + 2468: 7,-9 + 3994: -29,-12 + 5941: 14,-54 + 6124: -1,-58 + 6553: 23,-60 + 6554: 17,-60 + 15389: 1,-35 + 15390: -4,-35 + 15391: 6,-35 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 1376: -66,25 - 1382: -65,21 + 1329: -66,25 + 1335: -65,21 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 3881: -1,12 + 3756: -1,12 - node: color: '#37789BFF' id: BrickTileWhiteCornerNw decals: - 7294: 33,-62 - 7295: 33,-59 - 7303: 25,-57 - 9218: 25,-50 + 7027: 33,-62 + 7028: 33,-59 + 7036: 25,-57 + 8951: 25,-50 - node: color: '#4B709CFF' id: BrickTileWhiteCornerNw decals: - 13968: 15,-1 - 14064: 1,-18 - 14107: -13,-1 - 15568: -32,13 - 16963: -43,-82 + 13701: 15,-1 + 13797: 1,-18 + 13840: -13,-1 + 15301: -32,13 + 16696: -43,-82 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 3873: -5,12 + 3748: -5,12 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: - 6720: 13,-65 - 6721: 14,-64 - 7379: -3,-50 - 7405: -3,-48 + 6471: 13,-65 + 6472: 14,-64 + 7112: -3,-50 + 7138: -3,-48 - node: color: '#628E36FF' id: BrickTileWhiteCornerNw decals: - 1309: -46,45 - 1315: -52,44 + 1262: -46,45 + 1268: -52,44 - node: color: '#808080FF' id: BrickTileWhiteCornerNw decals: - 14015: 16,-10 - 14040: 16,8 - 14086: 1,-27 - 14142: 1,26 - 14171: 41,-1 - 14306: -70,-1 - 14341: -39,26 - 14867: -71,53 + 13748: 16,-10 + 13773: 16,8 + 13819: 1,-27 + 13875: 1,26 + 13904: 41,-1 + 14039: -70,-1 + 14074: -39,26 + 14600: -71,53 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerNw decals: - 6410: 0,-58 - 6747: 13,-57 - 6754: 8,-57 - 7385: -3,-50 - 9034: -35,-61 - 9182: -1,-39 + 6161: 0,-58 + 6498: 13,-57 + 6505: 8,-57 + 7118: -3,-50 + 8767: -35,-61 + 8915: -1,-39 - node: color: '#999999FF' id: BrickTileWhiteCornerNw decals: - 14582: -71,53 + 14315: -71,53 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 1410: -52,32 - 1419: -54,39 - 3854: -9,12 + 1363: -52,32 + 1372: -54,39 + 3729: -9,12 - node: color: '#A4610696' id: BrickTileWhiteCornerNw decals: - 3841: 7,7 + 3716: 7,7 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerNw decals: - 1203: -58,43 + 1156: -58,43 - node: color: '#DDC3A1FF' id: BrickTileWhiteCornerNw decals: - 3404: -50,20 + 3357: -50,20 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 3777: -9,7 + 3706: -9,7 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 3866: 7,12 + 3741: 7,12 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteCornerNw decals: - 1431: -75,21 + 1384: -75,21 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteCornerNw decals: - 1289: -75,21 + 1242: -75,21 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 205: 50,-18 210: 49,-19 - 2512: 6,-9 - 4192: -30,-12 - 6181: 13,-54 - 6374: -3,-58 - 6792: 13,-60 - 6793: 19,-60 - 15659: 4,-35 - 15660: -1,-35 - 15661: -6,-35 + 2465: 6,-9 + 3995: -30,-12 + 5942: 13,-54 + 6125: -3,-58 + 6543: 13,-60 + 6544: 19,-60 + 15392: 4,-35 + 15393: -1,-35 + 15394: -6,-35 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 1256: -75,21 - 1260: -75,21 - 1377: -69,22 + 1209: -75,21 + 1213: -75,21 + 1330: -69,22 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSe decals: - 3883: 1,11 + 3758: 1,11 - node: color: '#37789BFF' id: BrickTileWhiteCornerSe decals: - 7284: 41,-62 - 7300: 27,-62 - 9219: 29,-55 + 7017: 41,-62 + 7033: 27,-62 + 8952: 29,-55 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSe decals: - 13967: 13,1 - 14105: -15,1 - 14128: -1,19 - 15586: -22,4 - 15589: -19,5 + 13700: 13,1 + 13838: -15,1 + 13861: -1,19 + 15319: -22,4 + 15322: -19,5 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 3885: -3,11 + 3760: -3,11 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSe decals: - 6731: 16,-68 - 7380: 3,-52 - 7403: 3,-49 + 6482: 16,-68 + 7113: 3,-52 + 7136: 3,-49 - node: color: '#808080FF' id: BrickTileWhiteCornerSe decals: - 14143: -1,28 - 14170: 39,1 - 14218: -16,-8 - 14248: -16,10 - 14322: -41,1 - 14434: -27,28 + 13876: -1,28 + 13903: 39,1 + 13951: -16,-8 + 13981: -16,10 + 14055: -41,1 + 14167: -27,28 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSe decals: - 6405: 3,-63 - 6746: 23,-59 - 6757: 11,-59 - 7383: 3,-52 - 9036: -33,-63 - 9180: 2,-42 + 6156: 3,-63 + 6497: 23,-59 + 6508: 11,-59 + 7116: 3,-52 + 8769: -33,-63 + 8913: 2,-42 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 3857: -7,11 - 3858: -8,10 + 3732: -7,11 + 3733: -8,10 - node: color: '#A4610696' id: BrickTileWhiteCornerSe decals: - 3849: 9,4 + 3724: 9,4 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 3889: 5,11 + 3764: 5,11 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSe decals: - 1206: -54,41 + 1159: -54,41 - node: color: '#DDC3A1FF' id: BrickTileWhiteCornerSe decals: - 3397: -46,17 + 3350: -46,17 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 3780: -7,4 + 3709: -7,4 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 207: 51,-20 - 2514: 7,-10 - 4193: -29,-13 - 6182: 14,-56 - 6233: 18,-56 - 6265: 18,-56 - 6375: -1,-61 - 6804: 17,-62 - 6805: 23,-62 - 15663: -4,-36 - 15665: 1,-36 - 15669: 6,-36 + 2467: 7,-10 + 3996: -29,-13 + 5943: 14,-56 + 5990: 18,-56 + 6022: 18,-56 + 6126: -1,-61 + 6555: 17,-62 + 6556: 23,-62 + 15396: -4,-36 + 15398: 1,-36 + 15402: 6,-36 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 1383: -65,23 + 1336: -65,23 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 3882: -1,11 + 3757: -1,11 - node: color: '#37789BFF' id: BrickTileWhiteCornerSw decals: - 7296: 33,-60 - 7301: 25,-62 - 9220: 25,-55 + 7029: 33,-60 + 7034: 25,-62 + 8953: 25,-55 - node: color: '#4B709CFF' id: BrickTileWhiteCornerSw decals: - 13966: 15,1 - 14104: -13,1 - 14127: 1,19 - 15576: -32,5 - 15577: -30,4 - 16961: -43,-91 + 13699: 15,1 + 13837: -13,1 + 13860: 1,19 + 15309: -32,5 + 15310: -30,4 + 16694: -43,-91 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 3874: -5,11 + 3749: -5,11 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSw decals: - 6732: 13,-68 - 7381: -3,-52 - 7402: -3,-49 + 6483: 13,-68 + 7114: -3,-52 + 7135: -3,-49 - node: color: '#628E36FF' id: BrickTileWhiteCornerSw decals: - 1299: -46,40 + 1252: -46,40 - node: color: '#808080FF' id: BrickTileWhiteCornerSw decals: - 13995: 41,1 - 14014: 16,-8 - 14039: 16,10 - 14085: 1,-25 - 14144: 1,28 - 14284: -6,51 - 14305: -70,1 - 14321: -39,1 - 14433: -25,28 - 14868: -71,55 + 13728: 41,1 + 13747: 16,-8 + 13772: 16,10 + 13818: 1,-25 + 13877: 1,28 + 14017: -6,51 + 14038: -70,1 + 14054: -39,1 + 14166: -25,28 + 14601: -71,55 - node: color: '#96DAFFFF' id: BrickTileWhiteCornerSw decals: - 6408: 0,-63 - 6755: 8,-59 - 6789: 13,-59 - 7382: -3,-52 - 9179: -1,-42 + 6159: 0,-63 + 6506: 8,-59 + 6540: 13,-59 + 7115: -3,-52 + 8912: -1,-42 - node: color: '#999999FF' id: BrickTileWhiteCornerSw decals: - 14584: -71,55 + 14317: -71,55 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 1408: -52,30 - 1412: -52,34 - 1418: -54,37 + 1361: -52,30 + 1365: -52,34 + 1371: -54,37 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 3848: 7,4 + 3723: 7,4 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 3894: 3,11 + 3769: 3,11 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSw decals: - 1207: -58,41 + 1160: -58,41 - node: color: '#DDC3A1FF' id: BrickTileWhiteCornerSw decals: - 3401: -50,17 + 3354: -50,17 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 3779: -9,4 + 3708: -9,4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 3867: 7,11 - 3868: 8,10 + 3742: 7,11 + 3743: 8,10 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteCornerSw decals: - 1427: -75,23 + 1380: -75,23 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteCornerSw decals: - 1288: -75,23 + 1241: -75,23 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 211: 49,-20 - 2513: 6,-10 - 4194: -30,-13 - 6376: -3,-61 - 6806: 13,-62 - 6807: 19,-62 - 6808: 13,-62 - 6809: 19,-62 - 15662: -6,-36 - 15667: -1,-36 - 15668: 4,-36 - 21332: 13,-56 + 2466: 6,-10 + 3997: -30,-13 + 6127: -3,-61 + 6557: 13,-62 + 6558: 19,-62 + 6559: 13,-62 + 6560: 19,-62 + 15395: -6,-36 + 15400: -1,-36 + 15401: 4,-36 + 20563: 13,-56 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 1261: -75,23 + 1214: -75,23 - node: color: '#52B4E996' id: BrickTileWhiteEndE decals: - 3886: -2,12 + 3761: -2,12 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteEndE decals: - 1422: -73,22 + 1375: -73,22 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteEndE decals: - 1291: -73,22 + 1244: -73,22 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 14436: 1,-45 - 14507: -9,-55 - 14508: -23,-66 - 16423: 1,-55 + 14169: 1,-45 + 14240: -9,-55 + 14241: -23,-66 + 16156: 1,-55 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 1268: -73,22 + 1221: -73,22 - node: color: '#96DAFFFF' id: BrickTileWhiteEndN decals: - 6748: 19,-56 + 6499: 19,-56 - node: color: '#DC7269FF' id: BrickTileWhiteEndN decals: - 17820: -40,97 + 17553: -40,97 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteEndN decals: - 1423: -76,25 + 1376: -76,25 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteEndN decals: - 1284: -76,25 + 1237: -76,25 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 14443: -6,-48 - 14457: 6,-48 - 14461: -6,-58 - 14462: 6,-58 - 14512: -20,-58 + 14176: -6,-48 + 14190: 6,-48 + 14194: -6,-58 + 14195: 6,-58 + 14245: -20,-58 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 1269: -76,25 - 5676: 13,25 - 5677: 11,25 - 5691: 15,24 - 5692: 17,24 - 5701: 9,24 + 1222: -76,25 + 5479: 13,25 + 5480: 11,25 + 5494: 15,24 + 5495: 17,24 + 5504: 9,24 - node: color: '#9FED5896' id: BrickTileWhiteEndS decals: - 3851: -9,9 + 3726: -9,9 - node: color: '#DC7269FF' id: BrickTileWhiteEndS decals: - 17819: -40,94 + 17552: -40,94 - node: color: '#EFB34196' id: BrickTileWhiteEndS decals: - 3861: 9,9 + 3736: 9,9 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 14444: -6,-52 - 14458: 6,-52 - 14459: -6,-60 - 14460: 6,-60 - 14511: -20,-63 + 14177: -6,-52 + 14191: 6,-52 + 14192: -6,-60 + 14193: 6,-60 + 14244: -20,-63 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 5678: 11,21 - 5679: 13,21 - 5693: 15,23 - 5694: 17,23 - 5695: 9,21 + 5481: 11,21 + 5482: 13,21 + 5496: 15,23 + 5497: 17,23 + 5498: 9,21 - node: color: '#37789BFF' id: BrickTileWhiteEndW decals: - 7354: 33,-57 + 7087: 33,-57 - node: color: '#D381C996' id: BrickTileWhiteEndW decals: - 3893: 2,12 + 3768: 2,12 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 14439: -1,-45 - 14509: -32,-66 - 14510: -17,-55 - 16422: -1,-55 + 14172: -1,-45 + 14242: -32,-66 + 14243: -17,-55 + 16155: -1,-55 - node: color: '#37789BFF' id: BrickTileWhiteInnerNe decals: - 7352: 34,-58 + 7085: 34,-58 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNe decals: - 13976: 12,-1 - 13977: 13,-2 - 14062: -2,-18 - 14066: -1,-19 - 14114: -16,-1 - 14115: -15,-2 - 14134: -2,17 - 16960: -40,-90 + 13709: 12,-1 + 13710: 13,-2 + 13795: -2,-18 + 13799: -1,-19 + 13847: -16,-1 + 13848: -15,-2 + 13867: -2,17 + 16693: -40,-90 - node: color: '#628E36FF' id: BrickTileWhiteInnerNe decals: - 1324: -43,40 - 1325: -44,45 - 1326: -51,44 + 1277: -43,40 + 1278: -44,45 + 1279: -51,44 - node: color: '#808080FF' id: BrickTileWhiteInnerNe decals: - 14005: 39,-2 - 14006: 38,-1 - 14023: 15,-11 - 14047: 15,7 - 14084: -1,-28 - 14155: -2,26 - 14156: -1,25 - 14227: -16,-11 - 14228: -17,-10 - 14253: -17,8 - 14254: -16,7 - 14280: -8,49 - 14290: -1,48 - 14292: -2,49 - 14310: -72,-2 - 14328: -42,-1 - 14335: -41,25 - 14336: -42,26 - 14848: -28,26 - 14849: -42,53 - 14856: -41,52 - 14873: -73,52 - 15377: -70,53 - 15378: -64,53 - 15379: -58,53 - 15380: -50,53 - 15381: -44,53 - 15382: -41,50 - 15383: -41,44 - 15384: -57,26 - 15385: -50,26 - 15386: -34,26 - 15387: -27,33 - 15388: -19,26 - 15389: -10,26 - 15390: -1,35 - 15391: -1,40 - 15392: 7,40 - 15393: -5,49 - 15394: -8,57 - 15395: -41,18 - 15396: -41,12 - 15397: -41,7 - 15398: -45,-1 - 15399: -52,-1 - 15400: -62,-1 - 15401: -69,-1 - 15402: -38,-1 - 15403: -31,-1 - 15404: -24,-1 - 15405: -15,7 - 15406: -15,15 - 15407: -9,17 - 15408: 7,17 - 15409: 13,15 - 15410: 13,7 - 15411: 13,-11 - 15412: 13,-17 - 15413: 7,-18 - 15414: -9,-18 - 15415: -15,-17 - 15416: -15,-11 - 15417: 6,-27 - 15418: 11,-27 - 15419: 16,-27 - 15420: 21,-1 - 15421: 28,-1 - 15422: 35,-1 - 15423: 39,-8 - 15424: 39,-13 + 13738: 39,-2 + 13739: 38,-1 + 13756: 15,-11 + 13780: 15,7 + 13817: -1,-28 + 13888: -2,26 + 13889: -1,25 + 13960: -16,-11 + 13961: -17,-10 + 13986: -17,8 + 13987: -16,7 + 14013: -8,49 + 14023: -1,48 + 14025: -2,49 + 14043: -72,-2 + 14061: -42,-1 + 14068: -41,25 + 14069: -42,26 + 14581: -28,26 + 14582: -42,53 + 14589: -41,52 + 14606: -73,52 + 15110: -70,53 + 15111: -64,53 + 15112: -58,53 + 15113: -50,53 + 15114: -44,53 + 15115: -41,50 + 15116: -41,44 + 15117: -57,26 + 15118: -50,26 + 15119: -34,26 + 15120: -27,33 + 15121: -19,26 + 15122: -10,26 + 15123: -1,35 + 15124: -1,40 + 15125: 7,40 + 15126: -5,49 + 15127: -8,57 + 15128: -41,18 + 15129: -41,12 + 15130: -41,7 + 15131: -45,-1 + 15132: -52,-1 + 15133: -62,-1 + 15134: -69,-1 + 15135: -38,-1 + 15136: -31,-1 + 15137: -24,-1 + 15138: -15,7 + 15139: -15,15 + 15140: -9,17 + 15141: 7,17 + 15142: 13,15 + 15143: 13,7 + 15144: 13,-11 + 15145: 13,-17 + 15146: 7,-18 + 15147: -9,-18 + 15148: -15,-17 + 15149: -15,-11 + 15150: 6,-27 + 15151: 11,-27 + 15152: 16,-27 + 15153: 21,-1 + 15154: 28,-1 + 15155: 35,-1 + 15156: 39,-8 + 15157: 39,-13 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNe decals: - 6288: 18,-57 - 6290: 18,-54 - 6749: 19,-57 - 9187: 0,-39 + 6044: 18,-57 + 6046: 18,-54 + 6500: 19,-57 + 8920: 0,-39 - node: color: '#999999FF' id: BrickTileWhiteInnerNe decals: - 14591: -73,52 - 14629: -41,52 - 14630: -42,53 + 14324: -73,52 + 14362: -41,52 + 14363: -42,53 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 1392: -51,39 - 1400: -48,34 + 1345: -51,39 + 1353: -48,34 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteInnerNe decals: - 1425: -76,24 - 1429: -74,22 + 1378: -76,24 + 1382: -74,22 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteInnerNe decals: - 1285: -76,24 - 1292: -74,22 + 1238: -76,24 + 1245: -74,22 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 1266: -74,22 - 1270: -76,24 + 1219: -74,22 + 1223: -76,24 - node: color: '#37789BFF' id: BrickTileWhiteInnerNw decals: - 7297: 34,-59 - 7298: 34,-62 + 7030: 34,-59 + 7031: 34,-62 - node: color: '#4B709CFF' id: BrickTileWhiteInnerNw decals: - 13970: 15,-2 - 13971: 16,-1 - 14061: 2,-18 - 14065: 1,-19 - 14108: -13,-2 - 14109: -12,-1 - 14133: 2,17 + 13703: 15,-2 + 13704: 16,-1 + 13794: 2,-18 + 13798: 1,-19 + 13841: -13,-2 + 13842: -12,-1 + 13866: 2,17 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 6270: 16,-57 - 6271: 19,-57 + 6027: 16,-57 + 6028: 19,-57 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerNw decals: - 6722: 14,-65 + 6473: 14,-65 - node: color: '#628E36FF' id: BrickTileWhiteInnerNw decals: - 1310: -46,44 - 1321: -52,41 - 1322: -51,44 - 1323: -44,45 + 1263: -46,44 + 1274: -52,41 + 1275: -51,44 + 1276: -44,45 - node: color: '#808080FF' id: BrickTileWhiteInnerNw decals: - 13999: 41,-2 - 14000: 42,-1 - 14018: 17,-10 - 14042: 17,8 - 14046: 16,7 - 14080: 1,-28 - 14083: 2,-27 - 14149: 1,25 - 14150: 2,26 - 14224: -15,-11 - 14255: -15,7 - 14285: -5,49 - 14289: 1,48 - 14307: -69,-1 - 14311: -70,-2 - 14327: -38,-1 - 14334: -39,25 - 14440: -24,26 - 14845: -38,26 - 14855: -39,52 - 14871: -70,53 - 14872: -71,52 - 15370: -39,44 - 15371: -39,50 - 15372: -42,53 - 15373: -48,53 - 15374: -54,53 - 15375: -62,53 - 15376: -68,53 - 15425: -55,26 - 15426: -48,26 - 15427: -32,26 - 15428: -39,18 - 15429: -16,26 - 15430: -25,33 - 15431: -7,26 - 15432: 1,35 - 15433: 1,40 - 15434: -2,49 - 15435: -6,57 - 15436: -7,17 - 15437: 9,17 - 15438: 15,15 - 15439: -13,15 - 15440: -13,7 - 15441: -13,-11 - 15442: -21,-1 - 15443: 15,-11 - 15444: 15,-17 - 15445: 9,-18 - 15446: -7,-18 - 15447: -13,-17 - 15448: -28,-1 - 15449: -35,-1 - 15450: -42,-1 - 15451: -49,-1 - 15452: -59,-1 - 15453: -66,-1 - 15454: -39,7 - 15455: -39,12 - 15456: 11,40 - 15457: 15,7 - 15458: 8,-27 - 15459: 13,-27 - 15460: 18,-27 - 15461: 24,-1 - 15462: 31,-1 - 15463: 38,-1 - 15464: 41,-8 - 15465: 41,-13 + 13732: 41,-2 + 13733: 42,-1 + 13751: 17,-10 + 13775: 17,8 + 13779: 16,7 + 13813: 1,-28 + 13816: 2,-27 + 13882: 1,25 + 13883: 2,26 + 13957: -15,-11 + 13988: -15,7 + 14018: -5,49 + 14022: 1,48 + 14040: -69,-1 + 14044: -70,-2 + 14060: -38,-1 + 14067: -39,25 + 14173: -24,26 + 14578: -38,26 + 14588: -39,52 + 14604: -70,53 + 14605: -71,52 + 15103: -39,44 + 15104: -39,50 + 15105: -42,53 + 15106: -48,53 + 15107: -54,53 + 15108: -62,53 + 15109: -68,53 + 15158: -55,26 + 15159: -48,26 + 15160: -32,26 + 15161: -39,18 + 15162: -16,26 + 15163: -25,33 + 15164: -7,26 + 15165: 1,35 + 15166: 1,40 + 15167: -2,49 + 15168: -6,57 + 15169: -7,17 + 15170: 9,17 + 15171: 15,15 + 15172: -13,15 + 15173: -13,7 + 15174: -13,-11 + 15175: -21,-1 + 15176: 15,-11 + 15177: 15,-17 + 15178: 9,-18 + 15179: -7,-18 + 15180: -13,-17 + 15181: -28,-1 + 15182: -35,-1 + 15183: -42,-1 + 15184: -49,-1 + 15185: -59,-1 + 15186: -66,-1 + 15187: -39,7 + 15188: -39,12 + 15189: 11,40 + 15190: 15,7 + 15191: 8,-27 + 15192: 13,-27 + 15193: 18,-27 + 15194: 24,-1 + 15195: 31,-1 + 15196: 38,-1 + 15197: 41,-8 + 15198: 41,-13 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerNw decals: - 6283: 16,-57 - 6287: 19,-57 - 9190: 0,-39 + 6039: 16,-57 + 6043: 19,-57 + 8923: 0,-39 - node: color: '#999999FF' id: BrickTileWhiteInnerNw decals: - 14589: -71,52 - 14590: -70,53 - 14628: -39,52 + 14322: -71,52 + 14323: -70,53 + 14361: -39,52 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 1391: -51,39 - 1411: -51,32 + 1344: -51,39 + 1364: -51,32 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteInnerNw decals: - 1424: -76,24 + 1377: -76,24 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteInnerNw decals: - 1286: -76,24 + 1239: -76,24 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw @@ -4926,2729 +4926,2729 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 1271: -76,24 - 1384: -65,23 - 1387: -65,20 - 5703: 12,23 - 5705: 12,22 - 5706: 12,21 - 5707: 12,24 - 5708: 12,25 - 5709: 10,23 - 5710: 10,24 - 5711: 10,22 - 5712: 10,21 - 5713: 14,23 - 5714: 14,24 - 5715: 16,24 - 5716: 16,23 - 5717: 18,23 - 5718: 18,24 + 1224: -76,24 + 1337: -65,23 + 1340: -65,20 + 5506: 12,23 + 5508: 12,22 + 5509: 12,21 + 5510: 12,24 + 5511: 12,25 + 5512: 10,23 + 5513: 10,24 + 5514: 10,22 + 5515: 10,21 + 5516: 14,23 + 5517: 14,24 + 5518: 16,24 + 5519: 16,23 + 5520: 18,23 + 5521: 18,24 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSe decals: - 13974: 13,2 - 13975: 12,1 - 14049: 15,7 - 14059: -2,-16 - 14112: -15,2 - 14113: -16,1 - 14129: -2,19 - 14130: -1,20 + 13707: 13,2 + 13708: 12,1 + 13782: 15,7 + 13792: -2,-16 + 13845: -15,2 + 13846: -16,1 + 13862: -2,19 + 13863: -1,20 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 3887: -3,12 - 6272: 18,-56 + 3762: -3,12 + 6029: 18,-56 - node: color: '#628E36FF' id: BrickTileWhiteInnerSe decals: - 1320: -51,41 + 1273: -51,41 - node: color: '#808080FF' id: BrickTileWhiteInnerSe decals: - 14001: 38,1 - 14002: 39,2 - 14022: 15,-7 - 14045: 15,11 - 14079: -1,-24 - 14153: -1,29 - 14154: -2,28 - 14221: -17,-8 - 14222: -16,-7 - 14250: -17,10 - 14251: -16,11 - 14279: -2,51 - 14281: -8,52 - 14309: -72,2 - 14329: -42,1 - 14330: -41,2 - 14333: -42,28 - 14435: -27,29 - 14847: -28,28 - 14851: -42,55 - 14874: -73,56 - 15356: -70,55 - 15357: -64,55 - 15358: -58,55 - 15359: -50,55 - 15360: -44,55 - 15361: -41,52 - 15362: -41,46 - 15506: -57,28 - 15507: -50,28 - 15508: -34,28 - 15509: -27,35 - 15510: -19,28 - 15511: -10,28 - 15512: -1,37 - 15513: 7,42 - 15514: -1,42 - 15515: -5,51 - 15516: -8,60 - 15517: -9,19 - 15518: -15,17 - 15519: 13,17 - 15520: 7,19 - 15521: -15,11 - 15522: 13,11 - 15523: 13,-7 - 15524: 13,-15 - 15525: -9,-16 - 15526: 7,-16 - 15527: -15,-15 - 15528: -15,-7 - 15529: -24,1 - 15530: -31,1 - 15531: -38,1 - 15532: -45,1 - 15533: -52,1 - 15534: -62,1 - 15535: -69,1 - 15536: -41,9 - 15537: -41,15 - 15538: -41,20 - 15540: 6,-25 - 15541: 11,-25 - 15542: 16,-25 - 15543: 21,1 - 15544: 28,1 - 15545: 35,1 - 15546: 39,-6 - 15547: 39,-11 + 13734: 38,1 + 13735: 39,2 + 13755: 15,-7 + 13778: 15,11 + 13812: -1,-24 + 13886: -1,29 + 13887: -2,28 + 13954: -17,-8 + 13955: -16,-7 + 13983: -17,10 + 13984: -16,11 + 14012: -2,51 + 14014: -8,52 + 14042: -72,2 + 14062: -42,1 + 14063: -41,2 + 14066: -42,28 + 14168: -27,29 + 14580: -28,28 + 14584: -42,55 + 14607: -73,56 + 15089: -70,55 + 15090: -64,55 + 15091: -58,55 + 15092: -50,55 + 15093: -44,55 + 15094: -41,52 + 15095: -41,46 + 15239: -57,28 + 15240: -50,28 + 15241: -34,28 + 15242: -27,35 + 15243: -19,28 + 15244: -10,28 + 15245: -1,37 + 15246: 7,42 + 15247: -1,42 + 15248: -5,51 + 15249: -8,60 + 15250: -9,19 + 15251: -15,17 + 15252: 13,17 + 15253: 7,19 + 15254: -15,11 + 15255: 13,11 + 15256: 13,-7 + 15257: 13,-15 + 15258: -9,-16 + 15259: 7,-16 + 15260: -15,-15 + 15261: -15,-7 + 15262: -24,1 + 15263: -31,1 + 15264: -38,1 + 15265: -45,1 + 15266: -52,1 + 15267: -62,1 + 15268: -69,1 + 15269: -41,9 + 15270: -41,15 + 15271: -41,20 + 15273: 6,-25 + 15274: 11,-25 + 15275: 16,-25 + 15276: 21,1 + 15277: 28,1 + 15278: 35,1 + 15279: 39,-6 + 15280: 39,-11 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerSe decals: - 6286: 18,-56 - 9188: 1,-42 + 6042: 18,-56 + 8921: 1,-42 - node: color: '#999999FF' id: BrickTileWhiteInnerSe decals: - 14588: -73,56 - 14627: -42,55 + 14321: -73,56 + 14360: -42,55 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe decals: - 1401: -48,33 - 3859: -9,10 - 3860: -8,11 + 1354: -48,33 + 3734: -9,10 + 3735: -8,11 - node: color: '#C6FF91FF' id: BrickTileWhiteInnerSe decals: - 5881: -27,-45 + 5684: -27,-45 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteInnerSe decals: - 1430: -74,22 + 1383: -74,22 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteInnerSe decals: - 1293: -74,22 + 1246: -74,22 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 1267: -74,22 - 1378: -69,22 - 5719: 10,21 - 5720: 12,21 - 5721: 12,22 - 5722: 12,23 - 5723: 12,24 - 5724: 12,25 - 5725: 10,24 - 5726: 10,23 - 5727: 10,22 - 5728: 14,23 - 5729: 14,24 - 5730: 16,23 - 5731: 16,24 - 5732: 18,23 - 5733: 18,24 + 1220: -74,22 + 1331: -69,22 + 5522: 10,21 + 5523: 12,21 + 5524: 12,22 + 5525: 12,23 + 5526: 12,24 + 5527: 12,25 + 5528: 10,24 + 5529: 10,23 + 5530: 10,22 + 5531: 14,23 + 5532: 14,24 + 5533: 16,23 + 5534: 16,24 + 5535: 18,23 + 5536: 18,24 - node: color: '#37789BFF' id: BrickTileWhiteInnerSw decals: - 7299: 34,-60 - 7355: 34,-57 + 7032: 34,-60 + 7088: 34,-57 - node: color: '#4B709CFF' id: BrickTileWhiteInnerSw decals: - 13972: 16,1 - 13973: 15,2 - 14060: 2,-16 - 14110: -12,1 - 14111: -13,2 - 14131: 1,20 - 14132: 2,19 - 15579: -30,5 + 13705: 16,1 + 13706: 15,2 + 13793: 2,-16 + 13843: -12,1 + 13844: -13,2 + 13864: 1,20 + 13865: 2,19 + 15312: -30,5 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 6273: 16,-56 + 6030: 16,-56 - node: color: '#628E36FF' id: BrickTileWhiteInnerSw decals: - 1298: -46,41 - 1319: -51,41 + 1251: -46,41 + 1272: -51,41 - node: color: '#808080FF' id: BrickTileWhiteInnerSw decals: - 14003: 41,2 - 14004: 42,1 - 14017: 17,-8 - 14031: 16,-7 - 14043: 17,10 - 14044: 16,11 - 14081: 1,-24 - 14082: 2,-25 - 14151: 2,28 - 14152: 1,29 - 14223: -15,-7 - 14252: -15,11 - 14278: 1,51 - 14286: -5,51 - 14287: -6,52 - 14308: -69,1 - 14312: -70,2 - 14331: -39,2 - 14332: -38,1 - 14437: -25,29 - 14438: -24,28 - 14844: -38,28 - 14860: -39,55 - 14869: -71,56 - 14870: -70,55 - 15363: -68,55 - 15364: -62,55 - 15365: -54,55 - 15366: -48,55 - 15367: -42,55 - 15368: -39,52 - 15369: -39,46 - 15466: 41,-11 - 15467: 41,-6 - 15468: 38,1 - 15469: 31,1 - 15470: 24,1 - 15471: 15,11 - 15472: 15,17 - 15473: 9,19 - 15474: 15,-7 - 15475: 15,-15 - 15476: 9,-16 - 15477: -7,-16 - 15478: -13,-15 - 15479: -13,-7 - 15480: -13,11 - 15481: -13,17 - 15482: -7,19 - 15483: 8,-25 - 15484: 13,-25 - 15485: 18,-25 - 15486: -21,1 - 15487: -28,1 - 15488: -35,1 - 15489: -42,1 - 15490: -49,1 - 15491: -59,1 - 15492: -66,1 - 15493: -39,15 - 15494: -39,20 - 15495: -48,28 - 15496: -55,28 - 15497: -32,28 - 15498: -25,35 - 15499: -16,28 - 15500: -7,28 - 15501: 1,37 - 15502: 11,42 - 15503: 1,42 - 15504: -2,51 - 15505: -6,60 - 15539: -39,9 + 13736: 41,2 + 13737: 42,1 + 13750: 17,-8 + 13764: 16,-7 + 13776: 17,10 + 13777: 16,11 + 13814: 1,-24 + 13815: 2,-25 + 13884: 2,28 + 13885: 1,29 + 13956: -15,-7 + 13985: -15,11 + 14011: 1,51 + 14019: -5,51 + 14020: -6,52 + 14041: -69,1 + 14045: -70,2 + 14064: -39,2 + 14065: -38,1 + 14170: -25,29 + 14171: -24,28 + 14577: -38,28 + 14593: -39,55 + 14602: -71,56 + 14603: -70,55 + 15096: -68,55 + 15097: -62,55 + 15098: -54,55 + 15099: -48,55 + 15100: -42,55 + 15101: -39,52 + 15102: -39,46 + 15199: 41,-11 + 15200: 41,-6 + 15201: 38,1 + 15202: 31,1 + 15203: 24,1 + 15204: 15,11 + 15205: 15,17 + 15206: 9,19 + 15207: 15,-7 + 15208: 15,-15 + 15209: 9,-16 + 15210: -7,-16 + 15211: -13,-15 + 15212: -13,-7 + 15213: -13,11 + 15214: -13,17 + 15215: -7,19 + 15216: 8,-25 + 15217: 13,-25 + 15218: 18,-25 + 15219: -21,1 + 15220: -28,1 + 15221: -35,1 + 15222: -42,1 + 15223: -49,1 + 15224: -59,1 + 15225: -66,1 + 15226: -39,15 + 15227: -39,20 + 15228: -48,28 + 15229: -55,28 + 15230: -32,28 + 15231: -25,35 + 15232: -16,28 + 15233: -7,28 + 15234: 1,37 + 15235: 11,42 + 15236: 1,42 + 15237: -2,51 + 15238: -6,60 + 15272: -39,9 - node: color: '#96DAFFFF' id: BrickTileWhiteInnerSw decals: - 6289: 16,-56 - 9189: 1,-42 + 6045: 16,-56 + 8922: 1,-42 - node: color: '#999999FF' id: BrickTileWhiteInnerSw decals: - 14586: -71,56 - 14587: -70,55 - 14626: -39,55 - 14829: -38,28 + 14319: -71,56 + 14320: -70,55 + 14359: -39,55 + 14562: -38,28 - node: color: '#9FED5896' id: BrickTileWhiteInnerSw decals: - 1413: -51,34 - 1416: -52,37 + 1366: -51,34 + 1369: -52,37 - node: color: '#C6FF91FF' id: BrickTileWhiteInnerSw decals: - 5882: -19,-45 + 5685: -19,-45 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 3895: 3,12 + 3770: 3,12 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 3869: 8,11 - 3870: 9,10 + 3744: 8,11 + 3745: 9,10 - node: color: '#FFFFFF23' id: BrickTileWhiteInnerSw decals: - 19602: -22.119724,-81.92842 + 19335: -22.119724,-81.92842 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 1379: -66,25 - 1385: -65,21 - 1386: -65,24 + 1332: -66,25 + 1338: -65,21 + 1339: -65,24 - node: color: '#37789BFF' id: BrickTileWhiteLineE decals: - 7310: 27,-59 - 7311: 27,-60 - 7351: 34,-57 - 9221: 29,-51 - 9222: 29,-52 - 9223: 29,-53 - 9224: 29,-53 - 9225: 29,-54 - 9226: 29,-54 - 9242: 28,-51 - 9243: 28,-52 - 9244: 28,-52 - 9245: 28,-53 - 9246: 28,-54 - 9247: 28,-54 - 9248: 28,-54 + 7043: 27,-59 + 7044: 27,-60 + 7084: 34,-57 + 8954: 29,-51 + 8955: 29,-52 + 8956: 29,-53 + 8957: 29,-53 + 8958: 29,-54 + 8959: 29,-54 + 8975: 28,-51 + 8976: 28,-52 + 8977: 28,-52 + 8978: 28,-53 + 8979: 28,-54 + 8980: 28,-54 + 8981: 28,-54 - node: color: '#3AB3DAFF' id: BrickTileWhiteLineE decals: - 1484: -25,37 + 1437: -25,37 - node: color: '#4B709CFF' id: BrickTileWhiteLineE decals: - 13963: 12,0 - 14053: -2,-17 - 14126: -2,18 - 14631: -16,0 - 15590: -19,6 - 15591: -19,7 - 15595: -19,11 - 15596: -19,12 - 16931: -40,-82 - 16932: -40,-83 - 16933: -40,-84 - 16934: -40,-85 - 16935: -40,-86 - 16936: -40,-87 - 16937: -40,-88 - 16938: -40,-89 + 13696: 12,0 + 13786: -2,-17 + 13859: -2,18 + 14364: -16,0 + 15323: -19,6 + 15324: -19,7 + 15328: -19,11 + 15329: -19,12 + 16664: -40,-82 + 16665: -40,-83 + 16666: -40,-84 + 16667: -40,-85 + 16668: -40,-86 + 16669: -40,-87 + 16670: -40,-88 + 16671: -40,-89 - node: color: '#52B4E9FF' id: BrickTileWhiteLineE decals: - 6725: 16,-65 - 6726: 16,-66 - 6727: 16,-67 - 7375: 3,-50 - 7376: 3,-51 - 7377: 3,-52 + 6476: 16,-65 + 6477: 16,-66 + 6478: 16,-67 + 7108: 3,-50 + 7109: 3,-51 + 7110: 3,-52 - node: color: '#628E36FF' id: BrickTileWhiteLineE decals: - 1303: -43,41 - 1304: -43,42 - 1305: -43,43 - 1306: -43,44 - 1328: -51,40 - 1329: -51,45 + 1256: -43,41 + 1257: -43,42 + 1258: -43,43 + 1259: -43,44 + 1281: -51,40 + 1282: -51,45 - node: color: '#808080FF' id: BrickTileWhiteLineE decals: - 13997: 38,0 - 14011: 15,-8 - 14012: 15,-9 - 14013: 15,-10 - 14036: 15,8 - 14037: 15,9 - 14038: 15,10 - 14073: -1,-26 - 14074: -1,-25 - 14075: -1,-27 - 14145: -2,27 - 14173: 47,1 - 14174: 47,0 - 14175: 47,-1 - 14220: -17,-9 - 14249: -17,9 - 14282: -8,51 - 14283: -8,50 - 14288: -2,50 - 14301: -72,-1 - 14302: -72,0 - 14303: -72,1 - 14320: -42,0 - 14338: -42,27 - 14846: -28,27 - 14850: -42,54 - 14862: -73,53 - 14863: -73,54 - 14864: -73,55 - 15111: 39,-7 - 15115: 39,-12 - 15223: -69,0 - 15224: -62,0 - 15225: -52,0 - 15226: -45,0 - 15227: -41,8 - 15228: -41,14 - 15229: -41,13 - 15230: -41,19 - 15231: -50,27 - 15232: -57,27 - 15251: -41,45 - 15252: -41,51 - 15253: -44,54 - 15254: -50,54 - 15255: -58,54 - 15256: -64,54 - 15257: -70,54 - 15265: -34,27 - 15266: -27,34 - 15267: -19,27 - 15268: -10,27 - 15269: -1,36 - 15270: -1,41 - 15271: -5,50 - 15272: -8,58 - 15273: -8,59 - 15274: -38,0 - 15275: -31,0 - 15276: -24,0 - 15277: -15,8 - 15278: -15,9 - 15279: -15,10 - 15280: -15,16 - 15281: -9,18 - 15282: 7,18 - 15283: 13,16 - 15284: 13,10 - 15285: 13,9 - 15286: 13,8 - 15287: 13,-10 - 15288: 13,-9 - 15289: 13,-8 - 15290: 13,-16 - 15291: 7,-17 - 15292: -9,-17 - 15293: -15,-16 - 15294: -15,-10 - 15295: -15,-9 - 15296: -15,-8 - 15297: 6,-26 - 15298: 11,-26 - 15299: 16,-26 - 15300: 21,0 - 15301: 28,0 - 15302: 35,0 - 15349: 7,41 + 13730: 38,0 + 13744: 15,-8 + 13745: 15,-9 + 13746: 15,-10 + 13769: 15,8 + 13770: 15,9 + 13771: 15,10 + 13806: -1,-26 + 13807: -1,-25 + 13808: -1,-27 + 13878: -2,27 + 13906: 47,1 + 13907: 47,0 + 13908: 47,-1 + 13953: -17,-9 + 13982: -17,9 + 14015: -8,51 + 14016: -8,50 + 14021: -2,50 + 14034: -72,-1 + 14035: -72,0 + 14036: -72,1 + 14053: -42,0 + 14071: -42,27 + 14579: -28,27 + 14583: -42,54 + 14595: -73,53 + 14596: -73,54 + 14597: -73,55 + 14844: 39,-7 + 14848: 39,-12 + 14956: -69,0 + 14957: -62,0 + 14958: -52,0 + 14959: -45,0 + 14960: -41,8 + 14961: -41,14 + 14962: -41,13 + 14963: -41,19 + 14964: -50,27 + 14965: -57,27 + 14984: -41,45 + 14985: -41,51 + 14986: -44,54 + 14987: -50,54 + 14988: -58,54 + 14989: -64,54 + 14990: -70,54 + 14998: -34,27 + 14999: -27,34 + 15000: -19,27 + 15001: -10,27 + 15002: -1,36 + 15003: -1,41 + 15004: -5,50 + 15005: -8,58 + 15006: -8,59 + 15007: -38,0 + 15008: -31,0 + 15009: -24,0 + 15010: -15,8 + 15011: -15,9 + 15012: -15,10 + 15013: -15,16 + 15014: -9,18 + 15015: 7,18 + 15016: 13,16 + 15017: 13,10 + 15018: 13,9 + 15019: 13,8 + 15020: 13,-10 + 15021: 13,-9 + 15022: 13,-8 + 15023: 13,-16 + 15024: 7,-17 + 15025: -9,-17 + 15026: -15,-16 + 15027: -15,-10 + 15028: -15,-9 + 15029: -15,-8 + 15030: 6,-26 + 15031: 11,-26 + 15032: 16,-26 + 15033: 21,0 + 15034: 28,0 + 15035: 35,0 + 15082: 7,41 - node: color: '#96DAFFFF' id: BrickTileWhiteLineE decals: - 6401: 3,-59 - 6402: 3,-60 - 6403: 3,-61 - 6404: 3,-62 - 6752: 23,-58 - 6753: 11,-58 - 6933: 20,-55 - 7394: 3,-51 - 9024: -33,-61 - 9025: -33,-62 - 9026: -33,-63 - 9174: 2,-40 - 9175: 2,-41 - 9183: 1,-43 - 9184: 0,-38 + 6152: 3,-59 + 6153: 3,-60 + 6154: 3,-61 + 6155: 3,-62 + 6503: 23,-58 + 6504: 11,-58 + 6666: 20,-55 + 7127: 3,-51 + 8757: -33,-61 + 8758: -33,-62 + 8759: -33,-63 + 8907: 2,-40 + 8908: 2,-41 + 8916: 1,-43 + 8917: 0,-38 - node: cleanable: True color: '#96DAFFFF' id: BrickTileWhiteLineE decals: - 6788: 23,-57 + 6539: 23,-57 - node: color: '#999999FF' id: BrickTileWhiteLineE decals: - 14578: -73,54 - 14579: -73,55 - 14580: -73,53 - 14619: -42,54 - 17644: -51,94 - 17645: -51,90 - 17652: -51,93 - 17653: -51,92 - 17654: -51,91 - 17655: -51,91 - 17656: -51,91 - 17676: -54,93 - 17677: -54,92 - 17678: -54,91 - 17679: -54,91 - 17684: -54,100 - 17685: -54,99 - 17686: -54,98 - 17687: -54,97 - 17688: -54,97 - 17689: -54,96 - 17690: -54,95 - 17691: -54,95 + 14311: -73,54 + 14312: -73,55 + 14313: -73,53 + 14352: -42,54 + 17377: -51,94 + 17378: -51,90 + 17385: -51,93 + 17386: -51,92 + 17387: -51,91 + 17388: -51,91 + 17389: -51,91 + 17409: -54,93 + 17410: -54,92 + 17411: -54,91 + 17412: -54,91 + 17417: -54,100 + 17418: -54,99 + 17419: -54,98 + 17420: -54,97 + 17421: -54,97 + 17422: -54,96 + 17423: -54,95 + 17424: -54,95 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1396: -48,38 - 1397: -48,37 - 1398: -48,36 - 1399: -48,35 - 1402: -48,32 - 1403: -48,31 - 1404: -48,30 + 1349: -48,38 + 1350: -48,37 + 1351: -48,36 + 1352: -48,35 + 1355: -48,32 + 1356: -48,31 + 1357: -48,30 - node: color: '#A4610696' id: BrickTileWhiteLineE decals: - 3846: 9,6 - 3847: 9,5 + 3721: 9,6 + 3722: 9,5 - node: color: '#B3B3B3FF' id: BrickTileWhiteLineE decals: - 17657: -51,94 - 17658: -51,93 - 17659: -51,92 - 17660: -51,91 - 17661: -51,91 - 17662: -51,90 - 17663: -51,90 - 17672: -54,93 - 17673: -54,92 - 17674: -54,91 - 17675: -54,91 + 17390: -51,94 + 17391: -51,93 + 17392: -51,92 + 17393: -51,91 + 17394: -51,91 + 17395: -51,90 + 17396: -51,90 + 17405: -54,93 + 17406: -54,92 + 17407: -54,91 + 17408: -54,91 - node: color: '#C6FF91FF' id: BrickTileWhiteLineE decals: - 5869: -19,-47 + 5672: -19,-47 - node: color: '#DABC8BFF' id: BrickTileWhiteLineE decals: - 1204: -54,42 + 1157: -54,42 - node: color: '#DC7269FF' id: BrickTileWhiteLineE decals: - 17812: -40,97 - 17813: -40,96 - 17814: -40,96 - 17815: -40,95 - 17816: -40,95 - 17817: -40,94 - 17818: -40,94 + 17545: -40,97 + 17546: -40,96 + 17547: -40,96 + 17548: -40,95 + 17549: -40,95 + 17550: -40,94 + 17551: -40,94 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 3781: -7,6 - 3782: -7,5 + 3710: -7,6 + 3711: -7,5 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 3862: 9,10 - 3863: 9,11 + 3737: 9,10 + 3738: 9,11 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: 208: 51,-19 - 6179: 14,-55 - 6220: 18,-54 - 6221: 18,-55 - 6222: 18,-56 - 6234: 18,-54 - 6261: 18,-54 - 6262: 18,-55 - 6365: -1,-58 - 6366: -1,-59 - 6367: -1,-60 - 6368: -1,-60 - 6369: -1,-61 - 6794: 17,-61 - 6795: 23,-61 - 14445: -6,-51 - 14446: -6,-50 - 14447: -6,-49 - 14454: 6,-51 - 14455: 6,-50 - 14456: 6,-49 - 14463: 6,-59 - 14464: -6,-59 - 14527: -20,-59 - 14528: -20,-60 - 14529: -20,-61 - 14530: -20,-62 + 5940: 14,-55 + 5977: 18,-54 + 5978: 18,-55 + 5979: 18,-56 + 5991: 18,-54 + 6018: 18,-54 + 6019: 18,-55 + 6116: -1,-58 + 6117: -1,-59 + 6118: -1,-60 + 6119: -1,-60 + 6120: -1,-61 + 6545: 17,-61 + 6546: 23,-61 + 14178: -6,-51 + 14179: -6,-50 + 14180: -6,-49 + 14187: 6,-51 + 14188: 6,-50 + 14189: 6,-49 + 14196: 6,-59 + 14197: -6,-59 + 14260: -20,-59 + 14261: -20,-60 + 14262: -20,-61 + 14263: -20,-62 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 1380: -65,24 - 1381: -65,20 - 5680: 13,22 - 5681: 13,23 - 5682: 13,24 - 5696: 9,22 - 5697: 9,23 - 5698: 11,22 - 5699: 11,23 - 5700: 11,24 + 1333: -65,24 + 1334: -65,20 + 5483: 13,22 + 5484: 13,23 + 5485: 13,24 + 5499: 9,22 + 5500: 9,23 + 5501: 11,22 + 5502: 11,23 + 5503: 11,24 - node: color: '#334E6DFF' id: BrickTileWhiteLineN decals: - 3880: 0,12 - 16966: -38,-83 - 16967: -37,-83 - 16968: -46,-84 - 16969: -45,-84 - 16976: -46,-87 - 16977: -45,-87 - 16978: -34,-90 - 16979: -33,-90 - 16980: -32,-90 + 3755: 0,12 + 16699: -38,-83 + 16700: -37,-83 + 16701: -46,-84 + 16702: -45,-84 + 16709: -46,-87 + 16710: -45,-87 + 16711: -34,-90 + 16712: -33,-90 + 16713: -32,-90 - node: color: '#37789BFF' id: BrickTileWhiteLineN decals: - 7267: 35,-58 - 7272: 38,-58 - 7273: 37,-58 - 7274: 35,-58 - 7275: 35,-58 - 7276: 36,-58 - 7277: 39,-58 - 7278: 41,-58 - 7279: 41,-58 - 7280: 40,-58 - 7281: 39,-58 - 7282: 40,-58 - 7304: 26,-57 - 9212: 29,-50 - 9213: 27,-50 - 9214: 28,-50 - 9215: 26,-50 - 9216: 25,-50 - 9235: 24,-51 - 9237: 26,-51 - 9238: 28,-51 - 9260: 27,-51 + 7000: 35,-58 + 7005: 38,-58 + 7006: 37,-58 + 7007: 35,-58 + 7008: 35,-58 + 7009: 36,-58 + 7010: 39,-58 + 7011: 41,-58 + 7012: 41,-58 + 7013: 40,-58 + 7014: 39,-58 + 7015: 40,-58 + 7037: 26,-57 + 8945: 29,-50 + 8946: 27,-50 + 8947: 28,-50 + 8948: 26,-50 + 8949: 25,-50 + 8968: 24,-51 + 8970: 26,-51 + 8971: 28,-51 + 8993: 27,-51 - node: color: '#4B709CFF' id: BrickTileWhiteLineN decals: - 13965: 14,-2 - 14057: 0,-19 - 14103: -14,-2 - 14122: -1,17 - 14123: 1,17 - 14124: 0,17 - 15559: -22,13 - 15560: -23,13 - 15561: -24,13 - 15562: -25,13 - 15563: -26,13 - 15564: -27,13 - 15565: -28,13 - 15566: -29,13 - 15567: -30,13 - 15598: -21,13 - 15599: -20,13 - 16951: -39,-90 - 16952: -38,-90 - 16964: -42,-82 - 16965: -41,-82 + 13698: 14,-2 + 13790: 0,-19 + 13836: -14,-2 + 13855: -1,17 + 13856: 1,17 + 13857: 0,17 + 15292: -22,13 + 15293: -23,13 + 15294: -24,13 + 15295: -25,13 + 15296: -26,13 + 15297: -27,13 + 15298: -28,13 + 15299: -29,13 + 15300: -30,13 + 15331: -21,13 + 15332: -20,13 + 16684: -39,-90 + 16685: -38,-90 + 16697: -42,-82 + 16698: -41,-82 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 3871: -4,12 - 3872: -3,12 - 6266: 12,-57 - 6267: 15,-57 + 3746: -4,12 + 3747: -3,12 + 6023: 12,-57 + 6024: 15,-57 - node: color: '#52B4E9FF' id: BrickTileWhiteLineN decals: - 6724: 15,-64 - 7268: 35,-58 - 7269: 36,-58 - 7270: 37,-58 - 7271: 38,-58 - 7357: -3,-50 - 7358: -2,-50 - 7359: -1,-50 - 7360: 0,-50 - 7361: 1,-50 - 7362: 2,-50 - 7363: 3,-50 - 7412: -2,-48 - 7413: -1,-48 - 7414: 0,-48 - 7415: 1,-48 - 7416: 2,-48 - 7417: 2,-48 + 6475: 15,-64 + 7001: 35,-58 + 7002: 36,-58 + 7003: 37,-58 + 7004: 38,-58 + 7090: -3,-50 + 7091: -2,-50 + 7092: -1,-50 + 7093: 0,-50 + 7094: 1,-50 + 7095: 2,-50 + 7096: 3,-50 + 7145: -2,-48 + 7146: -1,-48 + 7147: 0,-48 + 7148: 1,-48 + 7149: 2,-48 + 7150: 2,-48 - node: color: '#628E36FF' id: BrickTileWhiteLineN decals: - 1308: -45,45 - 1311: -47,44 - 1312: -48,44 - 1313: -49,44 - 1314: -50,44 - 1331: -42,40 + 1261: -45,45 + 1264: -47,44 + 1265: -48,44 + 1266: -49,44 + 1267: -50,44 + 1284: -42,40 - node: color: '#808080FF' id: BrickTileWhiteLineN decals: - 13996: 40,-2 - 14078: 0,-28 - 14148: 0,25 - 14272: -6,49 - 14273: -7,49 - 14274: 0,48 - 14300: -71,-2 - 14324: -40,-1 - 14325: -41,-1 - 14326: -39,-1 - 14337: -40,25 - 14428: -27,26 - 14429: -26,26 - 14430: -25,26 - 14857: -40,52 - 14866: -72,52 - 15110: 40,-8 - 15116: 40,-13 - 15170: -68,-1 - 15171: -67,-1 - 15172: -61,-1 - 15173: -60,-1 - 15174: -51,-1 - 15175: -50,-1 - 15176: -44,-1 - 15177: -43,-1 - 15178: -37,-1 - 15179: -36,-1 - 15182: -30,-1 - 15183: -29,-1 - 15184: -23,-1 - 15185: -22,-1 - 15186: -40,7 - 15187: -40,12 - 15188: -40,18 - 15189: -49,26 - 15190: -56,26 - 15191: -33,26 - 15192: -26,33 - 15193: -18,26 - 15194: -17,26 - 15195: -8,26 - 15196: -9,26 - 15197: 0,35 - 15198: 0,40 - 15199: -3,49 - 15200: -4,49 - 15201: -7,57 - 15202: -8,17 - 15203: -14,15 - 15204: -14,7 - 15205: -14,-11 - 15206: -14,-17 - 15207: -8,-18 - 15208: 8,-18 - 15209: 14,-17 - 15210: 14,-11 - 15211: 14,7 - 15212: 8,17 - 15213: 14,15 - 15214: 22,-1 - 15215: 23,-1 - 15216: 29,-1 - 15217: 30,-1 - 15218: 36,-1 - 15219: 37,-1 - 15220: 7,-27 - 15221: 12,-27 - 15222: 17,-27 - 15233: -40,44 - 15234: -40,50 - 15235: -43,53 - 15236: -49,53 - 15237: -57,53 - 15238: -56,53 - 15239: -55,53 - 15240: -63,53 - 15241: -69,53 - 15350: 8,40 - 15351: 9,40 - 15352: 10,40 + 13729: 40,-2 + 13811: 0,-28 + 13881: 0,25 + 14005: -6,49 + 14006: -7,49 + 14007: 0,48 + 14033: -71,-2 + 14057: -40,-1 + 14058: -41,-1 + 14059: -39,-1 + 14070: -40,25 + 14161: -27,26 + 14162: -26,26 + 14163: -25,26 + 14590: -40,52 + 14599: -72,52 + 14843: 40,-8 + 14849: 40,-13 + 14903: -68,-1 + 14904: -67,-1 + 14905: -61,-1 + 14906: -60,-1 + 14907: -51,-1 + 14908: -50,-1 + 14909: -44,-1 + 14910: -43,-1 + 14911: -37,-1 + 14912: -36,-1 + 14915: -30,-1 + 14916: -29,-1 + 14917: -23,-1 + 14918: -22,-1 + 14919: -40,7 + 14920: -40,12 + 14921: -40,18 + 14922: -49,26 + 14923: -56,26 + 14924: -33,26 + 14925: -26,33 + 14926: -18,26 + 14927: -17,26 + 14928: -8,26 + 14929: -9,26 + 14930: 0,35 + 14931: 0,40 + 14932: -3,49 + 14933: -4,49 + 14934: -7,57 + 14935: -8,17 + 14936: -14,15 + 14937: -14,7 + 14938: -14,-11 + 14939: -14,-17 + 14940: -8,-18 + 14941: 8,-18 + 14942: 14,-17 + 14943: 14,-11 + 14944: 14,7 + 14945: 8,17 + 14946: 14,15 + 14947: 22,-1 + 14948: 23,-1 + 14949: 29,-1 + 14950: 30,-1 + 14951: 36,-1 + 14952: 37,-1 + 14953: 7,-27 + 14954: 12,-27 + 14955: 17,-27 + 14966: -40,44 + 14967: -40,50 + 14968: -43,53 + 14969: -49,53 + 14970: -57,53 + 14971: -56,53 + 14972: -55,53 + 14973: -63,53 + 14974: -69,53 + 15083: 8,40 + 15084: 9,40 + 15085: 10,40 - node: color: '#96DAFFFF' id: BrickTileWhiteLineN decals: - 6280: 12,-57 - 6282: 15,-57 - 6291: 19,-54 - 6294: 9,-57 - 6295: 10,-57 - 6296: 14,-57 - 6397: 1,-58 - 6398: 2,-58 - 6399: 3,-58 - 6751: 21,-57 - 6919: 22,-57 - 7395: -2,-50 - 7396: -1,-50 - 7397: 0,-50 - 7398: 1,-50 - 7399: 1,-50 - 7400: 1,-50 - 7401: 2,-50 - 9027: -33,-61 - 9028: -34,-61 - 9029: -35,-61 - 14551: 1,-39 + 6036: 12,-57 + 6038: 15,-57 + 6047: 19,-54 + 6050: 9,-57 + 6051: 10,-57 + 6052: 14,-57 + 6148: 1,-58 + 6149: 2,-58 + 6150: 3,-58 + 6502: 21,-57 + 6664: 22,-57 + 7128: -2,-50 + 7129: -1,-50 + 7130: 0,-50 + 7131: 1,-50 + 7132: 1,-50 + 7133: 1,-50 + 7134: 2,-50 + 8760: -33,-61 + 8761: -34,-61 + 8762: -35,-61 + 14284: 1,-39 - node: color: '#999999FF' id: BrickTileWhiteLineN decals: - 14581: -72,52 - 14623: -40,52 + 14314: -72,52 + 14356: -40,52 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1389: -53,39 - 1390: -52,39 - 1393: -50,39 - 1394: -49,39 - 3856: -8,12 + 1342: -53,39 + 1343: -52,39 + 1346: -50,39 + 1347: -49,39 + 3731: -8,12 - node: color: '#9FED58FF' id: BrickTileWhiteLineN decals: - 17724: -55,100 - 17725: -54,100 - 17726: -56,100 - 17727: -56,100 - 17728: -57,100 - 17729: -57,100 + 17457: -55,100 + 17458: -54,100 + 17459: -56,100 + 17460: -56,100 + 17461: -57,100 + 17462: -57,100 - node: color: '#A4610696' id: BrickTileWhiteLineN decals: - 3843: 8,7 + 3718: 8,7 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 3891: 4,12 - 3892: 3,12 + 3766: 4,12 + 3767: 3,12 - node: color: '#DABC8BFF' id: BrickTileWhiteLineN decals: - 1200: -55,43 - 1201: -56,43 - 1202: -57,43 + 1153: -55,43 + 1154: -56,43 + 1155: -57,43 - node: color: '#DDC3A1FF' id: BrickTileWhiteLineN decals: - 3394: -48,20 - 3395: -47,20 - 3405: -49,20 + 3347: -48,20 + 3348: -47,20 + 3358: -49,20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 3785: -8,7 + 3714: -8,7 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 3865: 8,12 + 3740: 8,12 - node: color: '#F38BAAFF' id: BrickTileWhiteLineN decals: - 1483: -26,38 + 1436: -26,38 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteLineN decals: - 1421: -74,21 + 1374: -74,21 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 6370: -2,-58 - 6750: 20,-57 - 6796: 14,-60 - 6797: 15,-60 - 6798: 16,-60 - 6799: 20,-60 - 6800: 21,-60 - 6801: 22,-60 - 7124: 21,-49 - 7125: 20,-49 - 14442: 0,-45 - 14513: -16,-55 - 14514: -15,-55 - 14515: -14,-55 - 14516: -13,-55 - 14517: -12,-55 - 14518: -11,-55 - 14519: -10,-55 - 14535: -31,-66 - 14536: -30,-66 - 14537: -29,-66 - 14538: -28,-66 - 14539: -27,-66 - 14540: -26,-66 - 14541: -25,-66 - 14542: -24,-66 - 15671: 0,-35 - 15672: -5,-35 - 15673: 5,-35 - 16424: 0,-55 + 6121: -2,-58 + 6501: 20,-57 + 6547: 14,-60 + 6548: 15,-60 + 6549: 16,-60 + 6550: 20,-60 + 6551: 21,-60 + 6552: 22,-60 + 6857: 21,-49 + 6858: 20,-49 + 14175: 0,-45 + 14246: -16,-55 + 14247: -15,-55 + 14248: -14,-55 + 14249: -13,-55 + 14250: -12,-55 + 14251: -11,-55 + 14252: -10,-55 + 14268: -31,-66 + 14269: -30,-66 + 14270: -29,-66 + 14271: -28,-66 + 14272: -27,-66 + 14273: -26,-66 + 14274: -25,-66 + 14275: -24,-66 + 15404: 0,-35 + 15405: -5,-35 + 15406: 5,-35 + 16157: 0,-55 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 3884: 0,11 - 16970: -46,-89 - 16971: -45,-89 - 16972: -46,-86 - 16973: -45,-86 - 16974: -38,-85 - 16975: -37,-85 - 16981: -34,-91 - 16982: -33,-91 - 16983: -32,-91 + 3759: 0,11 + 16703: -46,-89 + 16704: -45,-89 + 16705: -46,-86 + 16706: -45,-86 + 16707: -38,-85 + 16708: -37,-85 + 16714: -34,-91 + 16715: -33,-91 + 16716: -32,-91 - node: color: '#37789BFF' id: BrickTileWhiteLineS decals: - 7285: 40,-62 - 7286: 39,-62 - 7287: 38,-62 - 7288: 37,-62 - 7289: 36,-62 - 7290: 36,-62 - 7291: 35,-62 - 7292: 34,-62 - 7293: 33,-62 - 7305: 26,-62 - 9232: 26,-55 - 9233: 27,-55 - 9234: 28,-55 - 9236: 24,-51 - 9239: 26,-54 - 9240: 28,-54 - 9241: 28,-54 - 9259: 27,-54 + 7018: 40,-62 + 7019: 39,-62 + 7020: 38,-62 + 7021: 37,-62 + 7022: 36,-62 + 7023: 36,-62 + 7024: 35,-62 + 7025: 34,-62 + 7026: 33,-62 + 7038: 26,-62 + 8965: 26,-55 + 8966: 27,-55 + 8967: 28,-55 + 8969: 24,-51 + 8972: 26,-54 + 8973: 28,-54 + 8974: 28,-54 + 8992: 27,-54 - node: color: '#4B709CFF' id: BrickTileWhiteLineS decals: - 13962: 14,2 - 14054: -1,-16 - 14055: 0,-16 - 14056: 1,-16 - 14102: -14,2 - 14137: 0,20 - 15578: -31,5 - 15580: -29,4 - 15581: -28,4 - 15582: -24,4 - 15583: -23,4 - 15587: -21,5 - 15588: -20,5 - 16953: -43,-91 - 16954: -42,-91 - 16955: -41,-91 - 16956: -40,-91 - 16957: -39,-91 - 16958: -38,-91 - 16959: -38,-91 + 13695: 14,2 + 13787: -1,-16 + 13788: 0,-16 + 13789: 1,-16 + 13835: -14,2 + 13870: 0,20 + 15311: -31,5 + 15313: -29,4 + 15314: -28,4 + 15315: -24,4 + 15316: -23,4 + 15320: -21,5 + 15321: -20,5 + 16686: -43,-91 + 16687: -42,-91 + 16688: -41,-91 + 16689: -40,-91 + 16690: -39,-91 + 16691: -38,-91 + 16692: -38,-91 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 3875: -4,11 + 3750: -4,11 - node: color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 6728: 14,-68 - 6729: 15,-68 - 7364: -3,-52 - 7365: -2,-52 - 7366: -1,-52 - 7367: 0,-52 - 7368: 1,-52 - 7369: 2,-52 - 7370: 3,-52 - 7371: 3,-52 - 7406: -2,-49 - 7407: -1,-49 - 7408: 0,-49 - 7409: 1,-49 - 7410: 1,-49 - 7411: 2,-49 + 6479: 14,-68 + 6480: 15,-68 + 7097: -3,-52 + 7098: -2,-52 + 7099: -1,-52 + 7100: 0,-52 + 7101: 1,-52 + 7102: 2,-52 + 7103: 3,-52 + 7104: 3,-52 + 7139: -2,-49 + 7140: -1,-49 + 7141: 0,-49 + 7142: 1,-49 + 7143: 1,-49 + 7144: 2,-49 - node: color: '#628E36FF' id: BrickTileWhiteLineS decals: - 1294: -50,41 - 1295: -49,41 - 1296: -48,41 - 1297: -47,41 - 1300: -45,40 - 1301: -44,40 - 1302: -43,40 - 1318: -52,41 - 1332: -42,40 + 1247: -50,41 + 1248: -49,41 + 1249: -48,41 + 1250: -47,41 + 1253: -45,40 + 1254: -44,40 + 1255: -43,40 + 1271: -52,41 + 1285: -42,40 - node: color: '#808080FF' id: BrickTileWhiteLineS decals: - 13998: 40,2 - 14077: 0,-24 - 14147: 0,29 - 14275: -7,52 - 14276: 0,51 - 14277: -1,51 - 14299: -71,2 - 14323: -40,2 - 14339: -40,28 - 14340: -39,28 - 14427: -41,28 - 14432: -26,29 - 14852: -41,55 - 14853: -40,55 - 14865: -72,56 - 15112: 40,-6 - 15117: 40,-11 - 15118: 36,1 - 15119: 37,1 - 15120: 29,1 - 15121: 30,1 - 15122: 22,1 - 15123: 23,1 - 15124: 14,11 - 15125: 14,17 - 15126: 8,19 - 15127: -8,19 - 15128: -14,17 - 15129: -14,11 - 15130: -14,-7 - 15131: -14,-15 - 15132: -8,-16 - 15133: 8,-16 - 15134: 14,-15 - 15135: 14,-7 - 15136: 7,-25 - 15137: 12,-25 - 15138: 17,-25 - 15139: -22,1 - 15140: -23,1 - 15141: -30,1 - 15142: -29,1 - 15143: -43,1 - 15144: -44,1 - 15145: -51,1 - 15146: -50,1 - 15147: -61,1 - 15148: -60,1 - 15149: -68,1 - 15150: -67,1 - 15151: -40,9 - 15152: -40,15 - 15153: -40,20 - 15154: -49,28 - 15155: -56,28 - 15156: -33,28 - 15157: -18,28 - 15158: -17,28 - 15159: -26,35 - 15160: -9,28 - 15161: -8,28 - 15162: 0,37 - 15163: 0,42 - 15164: 10,42 - 15165: 9,42 - 15166: 8,42 - 15167: -4,51 - 15168: -3,51 - 15169: -7,60 - 15180: -37,1 - 15181: -36,1 - 15242: -69,55 - 15243: -63,55 - 15244: -57,55 - 15245: -56,55 - 15246: -55,55 - 15247: -49,55 - 15248: -43,55 - 15249: -40,52 - 15250: -40,46 + 13731: 40,2 + 13810: 0,-24 + 13880: 0,29 + 14008: -7,52 + 14009: 0,51 + 14010: -1,51 + 14032: -71,2 + 14056: -40,2 + 14072: -40,28 + 14073: -39,28 + 14160: -41,28 + 14165: -26,29 + 14585: -41,55 + 14586: -40,55 + 14598: -72,56 + 14845: 40,-6 + 14850: 40,-11 + 14851: 36,1 + 14852: 37,1 + 14853: 29,1 + 14854: 30,1 + 14855: 22,1 + 14856: 23,1 + 14857: 14,11 + 14858: 14,17 + 14859: 8,19 + 14860: -8,19 + 14861: -14,17 + 14862: -14,11 + 14863: -14,-7 + 14864: -14,-15 + 14865: -8,-16 + 14866: 8,-16 + 14867: 14,-15 + 14868: 14,-7 + 14869: 7,-25 + 14870: 12,-25 + 14871: 17,-25 + 14872: -22,1 + 14873: -23,1 + 14874: -30,1 + 14875: -29,1 + 14876: -43,1 + 14877: -44,1 + 14878: -51,1 + 14879: -50,1 + 14880: -61,1 + 14881: -60,1 + 14882: -68,1 + 14883: -67,1 + 14884: -40,9 + 14885: -40,15 + 14886: -40,20 + 14887: -49,28 + 14888: -56,28 + 14889: -33,28 + 14890: -18,28 + 14891: -17,28 + 14892: -26,35 + 14893: -9,28 + 14894: -8,28 + 14895: 0,37 + 14896: 0,42 + 14897: 10,42 + 14898: 9,42 + 14899: 8,42 + 14900: -4,51 + 14901: -3,51 + 14902: -7,60 + 14913: -37,1 + 14914: -36,1 + 14975: -69,55 + 14976: -63,55 + 14977: -57,55 + 14978: -56,55 + 14979: -55,55 + 14980: -49,55 + 14981: -43,55 + 14982: -40,52 + 14983: -40,46 - node: color: '#96DAFFFF' id: BrickTileWhiteLineS decals: - 6292: 9,-59 - 6293: 10,-59 - 6406: 2,-63 - 6407: 1,-63 - 6739: 15,-59 - 6740: 16,-59 - 6741: 18,-59 - 6742: 19,-59 - 6743: 20,-59 - 6744: 21,-59 - 6745: 22,-59 - 6791: 14,-59 - 6934: 20,-55 - 6935: 19,-55 - 7387: -2,-52 - 7388: -2,-52 - 7389: 0,-52 - 7390: 0,-52 - 7391: 1,-52 - 7392: 2,-52 - 7393: 2,-52 - 9032: -35,-62 - 9033: -34,-62 - 9176: 0,-42 + 6048: 9,-59 + 6049: 10,-59 + 6157: 2,-63 + 6158: 1,-63 + 6490: 15,-59 + 6491: 16,-59 + 6492: 18,-59 + 6493: 19,-59 + 6494: 20,-59 + 6495: 21,-59 + 6496: 22,-59 + 6542: 14,-59 + 6667: 20,-55 + 6668: 19,-55 + 7120: -2,-52 + 7121: -2,-52 + 7122: 0,-52 + 7123: 0,-52 + 7124: 1,-52 + 7125: 2,-52 + 7126: 2,-52 + 8765: -35,-62 + 8766: -34,-62 + 8909: 0,-42 - node: cleanable: True color: '#96DAFFFF' id: BrickTileWhiteLineS decals: - 6787: 17,-59 + 6538: 17,-59 - node: color: '#999999FF' id: BrickTileWhiteLineS decals: - 14585: -72,56 - 14620: -41,55 - 14621: -40,55 + 14318: -72,56 + 14353: -41,55 + 14354: -40,55 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1405: -49,30 - 1406: -50,30 - 1407: -51,30 - 1417: -53,37 + 1358: -49,30 + 1359: -50,30 + 1360: -51,30 + 1370: -53,37 - node: color: '#9FED58FF' id: BrickTileWhiteLineS decals: - 17730: -57,95 - 17731: -56,95 - 17732: -56,95 - 17733: -55,95 - 17734: -55,95 - 17735: -55,95 - 17736: -54,95 - 17737: -54,95 - 17738: -54,95 + 17463: -57,95 + 17464: -56,95 + 17465: -56,95 + 17466: -55,95 + 17467: -55,95 + 17468: -55,95 + 17469: -54,95 + 17470: -54,95 + 17471: -54,95 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 3850: 8,4 + 3725: 8,4 - node: color: '#C6FF91FF' id: BrickTileWhiteLineS decals: - 5873: -26,-45 - 5874: -25,-45 - 5875: -24,-45 - 5876: -23,-45 - 5877: -22,-45 - 5878: -21,-45 - 5879: -20,-45 - 5880: -20,-45 + 5676: -26,-45 + 5677: -25,-45 + 5678: -24,-45 + 5679: -23,-45 + 5680: -22,-45 + 5681: -21,-45 + 5682: -20,-45 + 5683: -20,-45 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 3890: 4,11 + 3765: 4,11 - node: color: '#DABC8BFF' id: BrickTileWhiteLineS decals: - 1208: -57,41 - 1209: -56,41 - 1210: -55,41 + 1161: -57,41 + 1162: -56,41 + 1163: -55,41 - node: color: '#DDC3A1FF' id: BrickTileWhiteLineS decals: - 3398: -47,17 - 3399: -48,17 - 3400: -49,17 + 3351: -47,17 + 3352: -48,17 + 3353: -49,17 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 3790: -8,4 + 3715: -8,4 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteLineS decals: - 1428: -74,23 + 1381: -74,23 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteLineS decals: - 1283: -74,23 + 1236: -74,23 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: 209: 50,-20 - 6230: 16,-56 - 6231: 17,-56 - 6232: 18,-56 - 6263: 16,-56 - 6264: 17,-56 - 6377: -2,-61 - 6810: 14,-62 - 6811: 15,-62 - 6812: 16,-62 - 6813: 20,-62 - 6814: 21,-62 - 6815: 22,-62 - 7132: 20,-52 - 7133: 21,-52 - 14441: 0,-45 - 14520: -16,-55 - 14521: -15,-55 - 14522: -14,-55 - 14523: -13,-55 - 14524: -12,-55 - 14525: -11,-55 - 14526: -10,-55 - 14543: -31,-66 - 14544: -30,-66 - 14545: -29,-66 - 14546: -28,-66 - 14547: -27,-66 - 14548: -26,-66 - 14549: -25,-66 - 14550: -24,-66 - 15674: -5,-36 - 15675: 0,-36 - 15676: 5,-36 - 16425: 0,-55 + 5987: 16,-56 + 5988: 17,-56 + 5989: 18,-56 + 6020: 16,-56 + 6021: 17,-56 + 6128: -2,-61 + 6561: 14,-62 + 6562: 15,-62 + 6563: 16,-62 + 6564: 20,-62 + 6565: 21,-62 + 6566: 22,-62 + 6865: 20,-52 + 6866: 21,-52 + 14174: 0,-45 + 14253: -16,-55 + 14254: -15,-55 + 14255: -14,-55 + 14256: -13,-55 + 14257: -12,-55 + 14258: -11,-55 + 14259: -10,-55 + 14276: -31,-66 + 14277: -30,-66 + 14278: -29,-66 + 14279: -28,-66 + 14280: -27,-66 + 14281: -26,-66 + 14282: -25,-66 + 14283: -24,-66 + 15407: -5,-36 + 15408: 0,-36 + 15409: 5,-36 + 16158: 0,-55 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1262: -74,23 + 1215: -74,23 - node: color: '#37789BFF' id: BrickTileWhiteLineW decals: - 7306: 25,-61 - 7307: 25,-60 - 7308: 25,-59 - 7309: 25,-58 - 9227: 25,-51 - 9228: 25,-52 - 9229: 25,-53 - 9230: 25,-54 - 9231: 25,-54 - 9249: 26,-54 - 9250: 26,-53 - 9251: 26,-52 - 9252: 26,-52 - 9253: 26,-51 - 9254: 26,-51 + 7039: 25,-61 + 7040: 25,-60 + 7041: 25,-59 + 7042: 25,-58 + 8960: 25,-51 + 8961: 25,-52 + 8962: 25,-53 + 8963: 25,-54 + 8964: 25,-54 + 8982: 26,-54 + 8983: 26,-53 + 8984: 26,-52 + 8985: 26,-52 + 8986: 26,-51 + 8987: 26,-51 - node: color: '#4B709CFF' id: BrickTileWhiteLineW decals: - 14058: 2,-17 - 14101: -12,0 - 14125: 2,18 - 14632: 16,0 - 15569: -32,12 - 15570: -32,11 - 15571: -32,10 - 15572: -32,9 - 15573: -32,8 - 15574: -32,7 - 15575: -32,6 - 16939: -43,-82 - 16940: -43,-83 - 16941: -43,-84 - 16942: -43,-85 - 16943: -43,-85 - 16944: -43,-86 - 16945: -43,-87 - 16946: -43,-88 - 16947: -43,-89 - 16948: -43,-90 - 16949: -43,-90 - 16950: -43,-91 + 13791: 2,-17 + 13834: -12,0 + 13858: 2,18 + 14365: 16,0 + 15302: -32,12 + 15303: -32,11 + 15304: -32,10 + 15305: -32,9 + 15306: -32,8 + 15307: -32,7 + 15308: -32,6 + 16672: -43,-82 + 16673: -43,-83 + 16674: -43,-84 + 16675: -43,-85 + 16676: -43,-85 + 16677: -43,-86 + 16678: -43,-87 + 16679: -43,-88 + 16680: -43,-89 + 16681: -43,-90 + 16682: -43,-90 + 16683: -43,-91 - node: color: '#52B4E9FF' id: BrickTileWhiteLineW decals: - 6718: 13,-66 - 6719: 13,-67 - 7372: -3,-50 - 7373: -3,-51 - 7374: -3,-52 + 6469: 13,-66 + 6470: 13,-67 + 7105: -3,-50 + 7106: -3,-51 + 7107: -3,-52 - node: color: '#628E36FF' id: BrickTileWhiteLineW decals: - 1316: -52,43 - 1317: -52,42 - 1327: -51,40 - 1330: -51,45 + 1269: -52,43 + 1270: -52,42 + 1280: -51,40 + 1283: -51,45 - node: color: '#808080FF' id: BrickTileWhiteLineW decals: - 13994: 42,0 - 14016: 17,-9 - 14041: 17,9 - 14076: 2,-26 - 14146: 2,27 - 14215: -15,-8 - 14216: -15,-9 - 14217: -15,-10 - 14244: -15,10 - 14245: -15,9 - 14246: -15,8 - 14269: -5,50 - 14270: 1,50 - 14271: 1,49 - 14304: -69,0 - 14319: -38,0 - 14431: -24,27 - 14843: -38,27 - 14858: -39,53 - 14859: -39,54 - 14861: -70,54 - 15113: 41,-7 - 15114: 41,-12 - 15258: -68,54 - 15259: -62,54 - 15260: -54,54 - 15261: -48,54 - 15262: -42,54 - 15263: -39,51 - 15264: -39,45 - 15303: 38,0 - 15304: 31,0 - 15305: 24,0 - 15306: 15,9 - 15307: 15,10 - 15308: 15,8 - 15309: 15,16 - 15310: 9,18 - 15311: 15,-10 - 15312: 15,-9 - 15313: 15,-8 - 15314: 15,-16 - 15315: 9,-17 - 15316: -7,18 - 15317: -13,16 - 15318: -13,10 - 15319: -13,8 - 15320: -13,9 - 15321: -13,-10 - 15322: -13,-9 - 15323: -13,-8 - 15324: -13,-16 - 15325: -7,-17 - 15326: 8,-26 - 15327: 13,-26 - 15328: 18,-26 - 15329: -21,0 - 15330: -28,0 - 15331: -35,0 - 15332: -42,0 - 15333: -49,0 - 15334: -59,0 - 15335: -66,0 - 15336: -39,8 - 15337: -39,14 - 15338: -39,13 - 15339: -39,19 - 15340: -48,27 - 15341: -55,27 - 15342: -32,27 - 15343: -25,34 - 15344: -16,27 - 15345: -7,27 - 15346: 1,36 - 15347: 1,41 - 15348: 11,41 - 15353: -2,50 - 15354: -6,58 - 15355: -6,59 + 13727: 42,0 + 13749: 17,-9 + 13774: 17,9 + 13809: 2,-26 + 13879: 2,27 + 13948: -15,-8 + 13949: -15,-9 + 13950: -15,-10 + 13977: -15,10 + 13978: -15,9 + 13979: -15,8 + 14002: -5,50 + 14003: 1,50 + 14004: 1,49 + 14037: -69,0 + 14052: -38,0 + 14164: -24,27 + 14576: -38,27 + 14591: -39,53 + 14592: -39,54 + 14594: -70,54 + 14846: 41,-7 + 14847: 41,-12 + 14991: -68,54 + 14992: -62,54 + 14993: -54,54 + 14994: -48,54 + 14995: -42,54 + 14996: -39,51 + 14997: -39,45 + 15036: 38,0 + 15037: 31,0 + 15038: 24,0 + 15039: 15,9 + 15040: 15,10 + 15041: 15,8 + 15042: 15,16 + 15043: 9,18 + 15044: 15,-10 + 15045: 15,-9 + 15046: 15,-8 + 15047: 15,-16 + 15048: 9,-17 + 15049: -7,18 + 15050: -13,16 + 15051: -13,10 + 15052: -13,8 + 15053: -13,9 + 15054: -13,-10 + 15055: -13,-9 + 15056: -13,-8 + 15057: -13,-16 + 15058: -7,-17 + 15059: 8,-26 + 15060: 13,-26 + 15061: 18,-26 + 15062: -21,0 + 15063: -28,0 + 15064: -35,0 + 15065: -42,0 + 15066: -49,0 + 15067: -59,0 + 15068: -66,0 + 15069: -39,8 + 15070: -39,14 + 15071: -39,13 + 15072: -39,19 + 15073: -48,27 + 15074: -55,27 + 15075: -32,27 + 15076: -25,34 + 15077: -16,27 + 15078: -7,27 + 15079: 1,36 + 15080: 1,41 + 15081: 11,41 + 15086: -2,50 + 15087: -6,58 + 15088: -6,59 - node: color: '#96DAFFFF' id: BrickTileWhiteLineW decals: - 6409: 0,-62 - 6411: 0,-59 - 6412: 0,-60 - 6413: 0,-61 - 6756: 8,-58 - 6790: 13,-58 - 7386: -3,-51 - 9030: -35,-61 - 9031: -35,-62 - 9177: -1,-40 - 9178: -1,-41 - 9185: 0,-38 - 9186: 1,-43 + 6160: 0,-62 + 6162: 0,-59 + 6163: 0,-60 + 6164: 0,-61 + 6507: 8,-58 + 6541: 13,-58 + 7119: -3,-51 + 8763: -35,-61 + 8764: -35,-62 + 8910: -1,-40 + 8911: -1,-41 + 8918: 0,-38 + 8919: 1,-43 - node: color: '#999999FF' id: BrickTileWhiteLineW decals: - 14583: -70,54 - 14624: -39,53 - 14625: -39,54 - 17646: -53,90 - 17647: -53,94 - 17648: -53,93 - 17649: -53,93 - 17650: -53,92 - 17651: -53,91 - 17680: -50,93 - 17681: -50,92 - 17682: -50,91 - 17683: -50,91 - 17692: -46,100 - 17693: -46,99 + 14316: -70,54 + 14357: -39,53 + 14358: -39,54 + 17379: -53,90 + 17380: -53,94 + 17381: -53,93 + 17382: -53,93 + 17383: -53,92 + 17384: -53,91 + 17413: -50,93 + 17414: -50,92 + 17415: -50,91 + 17416: -50,91 + 17425: -46,100 + 17426: -46,99 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1409: -52,31 - 1414: -52,35 - 1415: -52,36 - 1420: -54,38 - 3852: -9,10 - 3853: -9,11 + 1362: -52,31 + 1367: -52,35 + 1368: -52,36 + 1373: -54,38 + 3727: -9,10 + 3728: -9,11 - node: color: '#9FED58FF' id: BrickTileWhiteLineW decals: - 17739: -57,95 - 17740: -57,96 - 17741: -57,96 - 17742: -57,97 - 17743: -57,98 - 17744: -57,98 - 17745: -57,99 - 17746: -57,100 - 17747: -57,100 + 17472: -57,95 + 17473: -57,96 + 17474: -57,96 + 17475: -57,97 + 17476: -57,98 + 17477: -57,98 + 17478: -57,99 + 17479: -57,100 + 17480: -57,100 - node: color: '#A4610696' id: BrickTileWhiteLineW decals: - 3844: 7,6 - 3845: 7,5 + 3719: 7,6 + 3720: 7,5 - node: color: '#B3B3B3FF' id: BrickTileWhiteLineW decals: - 17664: -53,94 - 17665: -53,93 - 17666: -53,93 - 17667: -53,92 - 17668: -53,91 - 17669: -53,91 - 17670: -53,90 - 17671: -53,90 + 17397: -53,94 + 17398: -53,93 + 17399: -53,93 + 17400: -53,92 + 17401: -53,91 + 17402: -53,91 + 17403: -53,90 + 17404: -53,90 - node: color: '#C6FF91FF' id: BrickTileWhiteLineW decals: - 5871: -19,-47 - 5872: -19,-46 + 5674: -19,-47 + 5675: -19,-46 - node: color: '#DABC8BFF' id: BrickTileWhiteLineW decals: - 1205: -58,42 + 1158: -58,42 - node: color: '#DC7269FF' id: BrickTileWhiteLineW decals: - 17806: -40,97 - 17807: -40,96 - 17808: -40,96 - 17809: -40,95 - 17810: -40,95 - 17811: -40,94 + 17539: -40,97 + 17540: -40,96 + 17541: -40,96 + 17542: -40,95 + 17543: -40,95 + 17544: -40,94 - node: color: '#DDC3A1FF' id: BrickTileWhiteLineW decals: - 3402: -50,18 - 3403: -50,19 + 3355: -50,18 + 3356: -50,19 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 3783: -9,6 - 3784: -9,5 + 3712: -9,6 + 3713: -9,5 - node: cleanable: True color: '#FFB46EFF' id: BrickTileWhiteLineW decals: - 1426: -75,24 - 1432: -75,20 + 1379: -75,24 + 1385: -75,20 - node: cleanable: True color: '#FFB482FF' id: BrickTileWhiteLineW decals: - 1287: -75,24 - 1290: -75,20 + 1240: -75,24 + 1243: -75,20 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 6178: 13,-55 - 6371: -3,-59 - 6372: -3,-60 - 6816: 13,-61 - 6817: 19,-61 - 7121: 22,-49 - 7122: 22,-50 - 7123: 22,-52 - 7126: 20,-50 - 7127: 20,-49 - 7129: 22,-51 - 7130: 22,-52 - 7131: 20,-52 - 7148: 20,-51 - 14448: -6,-51 - 14449: -6,-50 - 14450: -6,-49 - 14451: 6,-49 - 14452: 6,-50 - 14453: 6,-51 - 14465: -6,-59 - 14466: 6,-59 - 14531: -20,-62 - 14532: -20,-61 - 14533: -20,-60 - 14534: -20,-59 + 5939: 13,-55 + 6122: -3,-59 + 6123: -3,-60 + 6567: 13,-61 + 6568: 19,-61 + 6854: 22,-49 + 6855: 22,-50 + 6856: 22,-52 + 6859: 20,-50 + 6860: 20,-49 + 6862: 22,-51 + 6863: 22,-52 + 6864: 20,-52 + 6881: 20,-51 + 14181: -6,-51 + 14182: -6,-50 + 14183: -6,-49 + 14184: 6,-49 + 14185: 6,-50 + 14186: 6,-51 + 14198: -6,-59 + 14199: 6,-59 + 14264: -20,-62 + 14265: -20,-61 + 14266: -20,-60 + 14267: -20,-59 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 1259: -75,20 - 1263: -75,24 - 5683: 13,22 - 5684: 13,23 - 5685: 13,24 - 5686: 11,22 - 5687: 11,23 - 5688: 11,24 - 5689: 9,22 - 5690: 9,23 + 1212: -75,20 + 1216: -75,24 + 5486: 13,22 + 5487: 13,23 + 5488: 13,24 + 5489: 11,22 + 5490: 11,23 + 5491: 11,24 + 5492: 9,22 + 5493: 9,23 - node: color: '#FFFFFFFF' id: BushAOne decals: 1: -25,-3 - 955: -103,-1 - 6762: 1.3516278,-76.21758 - 13579: -16.369896,5.4938498 - 13855: 20,2 + 908: -103,-1 + 6513: 1.3516278,-76.21758 + 13312: -16.369896,5.4938498 + 13588: 20,2 - node: color: '#C7CFD0FF' id: BushAThree decals: - 18422: -73,-70 + 18155: -73,-70 - node: color: '#FFFFFFFF' id: BushAThree decals: 2: -25.456352,-2.9906468 - 954: -104,-2 - 15622: 44.19969,-57.937622 - 15623: 29.57766,-71.88984 - 15624: 29.57766,-71.88984 - 20140: -15.83383,-77.86303 - 20144: -12.920367,-76.05045 + 907: -104,-2 + 15355: 44.19969,-57.937622 + 15356: 29.57766,-71.88984 + 15357: 29.57766,-71.88984 + 19873: -15.83383,-77.86303 + 19877: -12.920367,-76.05045 - node: color: '#8B8CA4E2' id: BushATwo decals: - 19096: -52,-54 + 18829: -52,-54 - node: cleanable: True color: '#AEBCB7D6' id: BushATwo decals: - 13068: -72,-58 + 12801: -72,-58 - node: color: '#FFFFFFFF' id: BushATwo decals: - 17096: -41,-83 - 17409: -38,89 - 19616: -22,-83 - 20445: -103.8991,55.432346 - 20476: -108.94219,66.80342 - 20483: -103.51445,39.034008 + 16829: -41,-83 + 17142: -38,89 + 19349: -22,-83 + 20004: -103.8991,55.432346 + 20035: -108.94219,66.80342 + 20042: -103.51445,39.034008 - node: color: '#8B8CA4E2' id: BushCOne decals: - 19095: -51,-51 + 18828: -51,-51 - node: color: '#C7CFD07C' id: BushCOne decals: - 18429: -67,-68 + 18162: -67,-68 - node: color: '#C7CFD089' id: BushCOne decals: - 18404: -70,-37 - 18408: -55,-46 + 18137: -70,-37 + 18141: -55,-46 - node: color: '#E0D9DDE6' id: BushCOne decals: - 19471: -60,-85 - 19490: -41,-70 - 19491: -41,-74 - 19492: -42,-77 + 19204: -60,-85 + 19223: -41,-70 + 19224: -41,-74 + 19225: -42,-77 - node: color: '#E3AC00FF' id: BushCOne decals: - 6629: 3.263187,75.55322 - 6630: 3.856937,75.5376 + 6380: 3.263187,75.55322 + 6381: 3.856937,75.5376 - node: color: '#FFFFFFA8' id: BushCOne decals: - 19927: -18.36628,-87.29305 - 19928: -21.52253,-87.93368 - 19929: -16.83503,-88.90243 + 19660: -18.36628,-87.29305 + 19661: -21.52253,-87.93368 + 19662: -16.83503,-88.90243 - node: color: '#FFFFFFFF' id: BushCOne decals: - 953: -101,-1 - 3586: 0.061931133,7.177826 - 6599: -101.41183,-2.7686312 - 13783: -63,2 - 13799: -63.009872,-2.0162082 - 15553: 37.07539,-55.95293 - 15621: 44.996567,-58.109497 - 17407: -50,89 - 18384: -70,-24 - 20111: 30,37 - 20461: -109,59 + 906: -101,-1 + 3539: 0.061931133,7.177826 + 6350: -101.41183,-2.7686312 + 13516: -63,2 + 13532: -63.009872,-2.0162082 + 15286: 37.07539,-55.95293 + 15354: 44.996567,-58.109497 + 17140: -50,89 + 18117: -70,-24 + 19844: 30,37 + 20020: -109,59 - node: zIndex: 60 color: '#FFFFFFFF' id: BushCOne decals: - 16078: -59.81195,48.561295 - 16084: -71.52169,37.83802 - 16087: -87.20823,34.63641 + 15811: -59.81195,48.561295 + 15817: -71.52169,37.83802 + 15820: -87.20823,34.63641 - node: color: '#3B4947A7' id: BushCThree decals: - 19078: -55,-52 + 18811: -55,-52 - node: color: '#8B8CA4E2' id: BushCThree decals: - 19079: -57,-51 - 19081: -58,-52 - 19083: -58,-51 - 19088: -59,-48 - 19104: -61,-57 + 18812: -57,-51 + 18814: -58,-52 + 18816: -58,-51 + 18821: -59,-48 + 18837: -61,-57 - node: color: '#C7CFD089' id: BushCThree decals: - 18407: -59,-46 + 18140: -59,-46 - node: color: '#C7CFD0FF' id: BushCThree decals: - 18425: -69,-72 - 18426: -65,-70 + 18158: -69,-72 + 18159: -65,-70 - node: color: '#E0D9DDE6' id: BushCThree decals: - 19487: -41,-77 + 19220: -41,-77 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: BushCThree decals: - 15551: 28.403992,-37.58063 + 15284: 28.403992,-37.58063 - node: color: '#FFFFFFFF' id: BushCThree decals: - 4202: -56.000343,30.500975 - 9485: 87.38128,-24.298883 - 15557: 26.878628,-43.968555 - 16910: 31.572422,-86.81383 - 16917: 35.97138,-72.91673 - 17086: -44,-82 - 17097: -41,-86 - 17098: -42,-87 - 17406: -55,86 - 17415: -42,88 - 18390: -73,-40 - 18391: -76,-44 - 18395: -79,-45 + 4005: -56.000343,30.500975 + 9218: 87.38128,-24.298883 + 15290: 26.878628,-43.968555 + 16643: 31.572422,-86.81383 + 16650: 35.97138,-72.91673 + 16819: -44,-82 + 16830: -41,-86 + 16831: -42,-87 + 17139: -55,86 + 17148: -42,88 + 18123: -73,-40 + 18124: -76,-44 + 18128: -79,-45 - node: cleanable: True color: '#FFFFFFFF' id: BushCThree decals: - 18125: -61,76 - 18127: -60,76 + 17858: -61,76 + 17860: -60,76 - node: zIndex: 60 color: '#FFFFFFFF' id: BushCThree decals: - 16083: -68.56313,38.867214 - 16086: -86.92698,43.68572 + 15816: -68.56313,38.867214 + 15819: -86.92698,43.68572 - node: color: '#8B8CA4E2' id: BushCTwo decals: - 19080: -55,-52 - 19086: -56,-54 - 19089: -48,-51 - 19094: -44,-53 - 19099: -63,-56 - 19107: -50,-53 + 18813: -55,-52 + 18819: -56,-54 + 18822: -48,-51 + 18827: -44,-53 + 18832: -63,-56 + 18840: -50,-53 - node: cleanable: True color: '#AEBCB7A7' id: BushCTwo decals: - 13088: -76,-54 + 12821: -76,-54 - node: color: '#C7CFD089' id: BushCTwo decals: - 18405: -62,-39 - 18409: -58,-48 - 18412: -42,-52 + 18138: -62,-39 + 18142: -58,-48 + 18145: -42,-52 - node: color: '#C7CFD0FF' id: BushCTwo decals: - 18419: -75,-68 + 18152: -75,-68 - node: color: '#E0D9DDE6' id: BushCTwo decals: - 19476: -54,-79 - 19481: -47,-79 - 19488: -42,-73 - 19489: -43,-70 + 19209: -54,-79 + 19214: -47,-79 + 19221: -42,-73 + 19222: -43,-70 - node: color: '#FFFFFFA8' id: BushCTwo decals: - 19930: -17.788155,-85.822525 + 19663: -17.788155,-85.822525 - node: color: '#FFFFFFFF' id: BushCTwo decals: 0: -26,-3 637: -100.89421,8.992738 - 964: -104,-1 - 4350: -86,54 - 9482: 84.709404,-24.439508 - 13629: 16.81386,12.21085 - 15550: 28.888367,-37.221256 - 17088: -44,-90 - 17091: -45,-85 - 17400: -63,87 - 17416: -48,86 - 17424: -58,89 - 18385: -69,-28 - 18389: -71,-40 - 18396: -82,-55 - 19617: -24,-82 + 917: -104,-1 + 4153: -86,54 + 9215: 84.709404,-24.439508 + 13362: 16.81386,12.21085 + 15283: 28.888367,-37.221256 + 16821: -44,-90 + 16824: -45,-85 + 17133: -63,87 + 17149: -48,86 + 17157: -58,89 + 18118: -69,-28 + 18122: -71,-40 + 18129: -82,-55 + 19350: -24,-82 - node: cleanable: True color: '#FFFFFFFF' id: BushCTwo decals: - 18126: -61,77 + 17859: -61,77 - node: zIndex: 60 color: '#FFFFFFFF' id: BushCTwo decals: - 16079: -66.350685,46.87553 - 16082: -68.62563,44.44866 - 16094: -64.711494,29.489738 + 15812: -66.350685,46.87553 + 15815: -68.62563,44.44866 + 15827: -64.711494,29.489738 - node: color: '#FFFFFFFF' id: BushDThree decals: - 8466: 5.5056233,-20.226084 + 8199: 5.5056233,-20.226084 - node: cleanable: True color: '#FFFFFFFF' id: BushDThree decals: - 18142: -63,70 + 17875: -63,70 - node: color: '#C7CFD089' id: Busha1 decals: - 18410: -52,-46 + 18143: -52,-46 - node: color: '#C7CFD0FF' id: Busha1 decals: - 18416: -80,-63 - 18417: -77,-66 + 18149: -80,-63 + 18150: -77,-66 - node: color: '#FFFFFFA8' id: Busha1 decals: - 19924: -4.13912,-89.1368 - 19925: -2.842245,-88.29305 - 19926: -6.20162,-88.90243 + 19657: -4.13912,-89.1368 + 19658: -2.842245,-88.29305 + 19659: -6.20162,-88.90243 - node: color: '#FFFFFFFF' id: Busha1 decals: 635: -102.092125,11.003155 708: -104.89678,18.90071 - 8511: -4.342837,-22.742023 - 9489: 83.553154,-21.642633 - 13601: 16.129253,-13.934627 - 13626: 16.22011,4.1171 - 13781: -65.713,-2.0474582 - 13847: 26.72542,-2.093804 - 13875: 52,1 - 17414: -42,87 - 18383: -70,-21 - 18397: -79,-54 - 19614: -24,-85 - 19615: -21,-80 - 20109: 27,37 - 20440: -103.82098,63.725235 - 20441: -103.93035,52.432346 - 20449: -103.8366,44.279797 - 20460: -109,57 + 8244: -4.342837,-22.742023 + 9222: 83.553154,-21.642633 + 13334: 16.129253,-13.934627 + 13359: 16.22011,4.1171 + 13514: -65.713,-2.0474582 + 13580: 26.72542,-2.093804 + 13608: 52,1 + 17147: -42,87 + 18116: -70,-21 + 18130: -79,-54 + 19347: -24,-85 + 19348: -21,-80 + 19842: 27,37 + 19999: -103.82098,63.725235 + 20000: -103.93035,52.432346 + 20008: -103.8366,44.279797 + 20019: -109,57 - node: cleanable: True color: '#FFFFFFFF' id: Busha1 decals: - 16208: -52,-88 + 15941: -52,-88 - node: zIndex: 60 color: '#FFFFFFFF' id: Busha1 decals: - 16085: -88.23948,43.65447 + 15818: -88.23948,43.65447 - node: color: '#8B8CA4E2' id: Busha2 decals: - 19101: -63,-60 - 19106: -59,-57 + 18834: -63,-60 + 18839: -59,-57 - node: color: '#C7CFD089' id: Busha2 decals: - 18411: -45,-49 + 18144: -45,-49 - node: color: '#C7CFD0FF' id: Busha2 decals: - 18414: -53,-49 - 18420: -70,-68 + 18147: -53,-49 + 18153: -70,-68 - node: color: '#E0D9DDA5' id: Busha2 decals: - 19467: -57,-84 + 19200: -57,-84 - node: color: '#E0D9DDE6' id: Busha2 decals: - 19479: -47,-79 - 19480: -46,-79 - 19484: -39,-79 + 19212: -47,-79 + 19213: -46,-79 + 19217: -39,-79 - node: color: '#E3AC00FF' id: Busha2 decals: - 6621: 3.372562,76.0376 - 6622: 3.216312,75.75635 - 6623: 3.700687,75.6626 - 6624: 3.935062,75.86572 - 6625: 3.060062,75.6001 - 6626: 3.169437,76.1001 - 6627: 3.231937,76.2251 - 6628: 3.622562,76.2876 + 6372: 3.372562,76.0376 + 6373: 3.216312,75.75635 + 6374: 3.700687,75.6626 + 6375: 3.935062,75.86572 + 6376: 3.060062,75.6001 + 6377: 3.169437,76.1001 + 6378: 3.231937,76.2251 + 6379: 3.622562,76.2876 - node: color: '#FFFFFFFF' id: Busha2 decals: - 956: -102,-2 - 13578: -16.91677,13.540725 - 13602: 16.941753,-12.200252 - 13848: 25.834795,-2.109429 - 17398: -63,80 - 17404: -54,86 - 19612: -30,-82 - 19613: -26,-80 - 19618: -34,-82 - 20110: 24,37 + 909: -102,-2 + 13311: -16.91677,13.540725 + 13335: 16.941753,-12.200252 + 13581: 25.834795,-2.109429 + 17131: -63,80 + 17137: -54,86 + 19345: -30,-82 + 19346: -26,-80 + 19351: -34,-82 + 19843: 24,37 - node: cleanable: True color: '#FFFFFFFF' id: Busha2 decals: - 17125: -42.465942,-85.07283 + 16858: -42.465942,-85.07283 - node: zIndex: 60 color: '#FFFFFFFF' id: Busha2 decals: - 16091: -66.913536,48.83989 + 15824: -66.913536,48.83989 - node: color: '#8B8CA4E2' id: Busha3 decals: - 19082: -57,-50 - 19087: -55,-51 - 19092: -43,-54 + 18815: -57,-50 + 18820: -55,-51 + 18825: -43,-54 - node: color: '#C7CFD089' id: Busha3 decals: - 18403: -75,-39 - 18406: -69,-29 + 18136: -75,-39 + 18139: -69,-29 - node: color: '#C7CFD0FF' id: Busha3 decals: - 18421: -72,-69 - 18427: -66,-68 + 18154: -72,-69 + 18160: -66,-68 - node: cleanable: True color: '#D4D4D428' id: Busha3 decals: - 12984: -45,-58 - 12985: -43,-56 + 12717: -45,-58 + 12718: -43,-56 - node: color: '#E0D9DDE6' id: Busha3 decals: - 19470: -50,-84 - 19473: -56,-84 - 19486: -41,-78 + 19203: -50,-84 + 19206: -56,-84 + 19219: -41,-78 - node: color: '#FFFFFF8B' id: Busha3 decals: - 18400: -79,-61 + 18133: -79,-61 - node: color: '#FFFFFFFF' id: Busha3 decals: - 957: -100,-2 - 17094: -34,-86 - 17401: -61,86 - 17405: -53,86 - 17408: -49,89 - 17423: -59,89 - 18388: -64,-37 - 19466: -63,-83 - 19610: -31,-80 - 19611: -30,-80 + 910: -100,-2 + 16827: -34,-86 + 17134: -61,86 + 17138: -53,86 + 17141: -49,89 + 17156: -59,89 + 18121: -64,-37 + 19199: -63,-83 + 19343: -31,-80 + 19344: -30,-80 - node: zIndex: 60 color: '#FFFFFFFF' id: Busha3 decals: - 16088: -86.223854,32.745705 - 16090: -67.83541,41.91686 + 15821: -86.223854,32.745705 + 15823: -67.83541,41.91686 - node: color: '#8B8CA4E2' id: Bushb1 decals: - 19091: -45,-54 - 19102: -64,-62 + 18824: -45,-54 + 18835: -64,-62 - node: cleanable: True color: '#AEBCB789' id: Bushb1 decals: - 12987: -47,-56 + 12720: -47,-56 - node: cleanable: True color: '#AEBCB7D6' id: Bushb1 decals: - 13067: -69,-58 + 12800: -69,-58 - node: color: '#C7CFD0B4' id: Bushb1 decals: - 18434: -71,-60 + 18167: -71,-60 - node: color: '#C7CFD0FF' id: Bushb1 decals: - 18415: -59,-42 - 18423: -71,-72 + 18148: -59,-42 + 18156: -71,-72 - node: color: '#E0D9DDE6' id: Bushb1 decals: - 19468: -57,-84 + 19201: -57,-84 - node: color: '#FFFFFFFF' id: Bushb1 decals: 634: -104.882866,7.919821 - 1239: -88,-14 - 13555: -17,-13 - 15548: 30.926634,-45.078316 - 17099: -43,-91 - 17402: -60,86 - 17410: -37,89 - 17412: -42,86 - 17421: -60,89 - 18393: -80,-43 - 20484: -102.5457,39.018383 + 1192: -88,-14 + 13288: -17,-13 + 15281: 30.926634,-45.078316 + 16832: -43,-91 + 17135: -60,86 + 17143: -37,89 + 17145: -42,86 + 17154: -60,89 + 18126: -80,-43 + 20043: -102.5457,39.018383 - node: zIndex: 60 color: '#FFFFFFFF' id: Bushb1 decals: - 15842: -79.86455,33.821987 + 15575: -79.86455,33.821987 - node: color: '#8B8CA4E2' id: Bushb2 decals: - 19090: -48,-54 - 19093: -45,-52 - 19097: -60,-55 + 18823: -48,-54 + 18826: -45,-52 + 18830: -60,-55 - node: color: '#C7CFD0E3' id: Bushb2 decals: - 18435: -69,-61 + 18168: -69,-61 - node: color: '#C7CFD0FF' id: Bushb2 decals: - 18413: -41,-51 - 18424: -70,-72 - 18428: -63,-68 + 18146: -41,-51 + 18157: -70,-72 + 18161: -63,-68 - node: cleanable: True color: '#D4D4D428' id: Bushb2 decals: - 12982: -45,-62 - 12983: -47,-60 - 12986: -42,-62 + 12715: -45,-62 + 12716: -47,-60 + 12719: -42,-62 - node: color: '#E0D9DDE6' id: Bushb2 decals: - 19472: -57,-86 - 19474: -54,-80 - 19478: -48,-80 - 19483: -43,-79 + 19205: -57,-86 + 19207: -54,-80 + 19211: -48,-80 + 19216: -43,-79 - node: color: '#FFFFFF8B' id: Bushb2 decals: - 18399: -80,-55 + 18132: -80,-55 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 13627: 16.798235,5.4921 - 17090: -46,-86 - 17093: -33,-88 - 17095: -43,-84 - 17399: -63,86 - 18386: -68,-37 + 13360: 16.798235,5.4921 + 16823: -46,-86 + 16826: -33,-88 + 16828: -43,-84 + 17132: -63,86 + 18119: -68,-37 - node: zIndex: 60 color: '#FFFFFFFF' id: Bushb2 decals: - 16089: -84.896225,17.745642 - 16092: -59.864784,39.662167 + 15822: -84.896225,17.745642 + 15825: -59.864784,39.662167 - node: color: '#8B8CA4E2' id: Bushb3 decals: - 19098: -60,-58 - 19105: -62,-54 + 18831: -60,-58 + 18838: -62,-54 - node: cleanable: True color: '#AEBCB7A7' id: Bushb3 decals: - 13089: -77,-56 + 12822: -77,-56 - node: color: '#C7CFD07C' id: Bushb3 decals: - 18430: -65,-69 + 18163: -65,-69 - node: color: '#C7CFD089' id: Bushb3 decals: - 18402: -81,-45 + 18135: -81,-45 - node: color: '#C7CFD0B4' id: Bushb3 decals: - 18433: -67,-62 + 18166: -67,-62 - node: color: '#C7CFD0FF' id: Bushb3 decals: - 18418: -77,-66 + 18151: -77,-66 - node: color: '#E0D9DDE6' id: Bushb3 decals: - 19469: -54,-82 - 19475: -50,-78 - 19482: -46,-80 - 19485: -40,-79 - 19494: -36,-69 + 19202: -54,-82 + 19208: -50,-78 + 19215: -46,-80 + 19218: -40,-79 + 19227: -36,-69 - node: color: '#FFFFFF8B' id: Bushb3 decals: - 18401: -74,-60 + 18134: -74,-60 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 9479: 81.84287,-21.85721 - 13628: 16.141985,13.695225 - 17087: -39,-83 - 17092: -38,-89 - 17413: -41,87 - 18387: -62,-36 - 18392: -75,-42 - 18394: -80,-46 - 18398: -77,-57 + 9212: 81.84287,-21.85721 + 13361: 16.141985,13.695225 + 16820: -39,-83 + 16825: -38,-89 + 17146: -41,87 + 18120: -62,-36 + 18125: -75,-42 + 18127: -80,-46 + 18131: -77,-57 - node: zIndex: 60 color: '#FFFFFFFF' id: Bushb3 decals: - 16093: -61.646034,31.479626 - 16095: -65.023994,25.706036 + 15826: -61.646034,31.479626 + 15828: -65.023994,25.706036 - node: color: '#8B8CA4E2' id: Bushc1 decals: - 19085: -53,-53 + 18818: -53,-53 - node: color: '#FFFFFFFF' id: Bushc1 decals: 636: -106.05046,9.617738 - 15636: 26.826162,-69.78971 - 16874: 31.3545,-89.89499 + 15369: 26.826162,-69.78971 + 16607: 31.3545,-89.89499 - node: color: '#8B8CA4E2' id: Bushc2 decals: - 19084: -58,-53 + 18817: -58,-53 - node: color: '#C7CFD0B4' id: Bushc2 decals: - 18431: -66,-72 - 18432: -68,-65 + 18164: -66,-72 + 18165: -68,-65 - node: color: '#E0D9DDE6' id: Bushc2 decals: - 19493: -39,-70 + 19226: -39,-70 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 13577: -16.213646,12.1501 - 15619: 33.9766,-65.93899 - 17089: -45,-89 - 17411: -37,88 - 17418: -48,87 - 17420: -57,89 - 20141: -14.987721,-77.936424 + 13310: -16.213646,12.1501 + 15352: 33.9766,-65.93899 + 16822: -45,-89 + 17144: -37,88 + 17151: -48,87 + 17153: -57,89 + 19874: -14.987721,-77.936424 - node: zIndex: 60 color: '#FFFFFFFF' id: Bushc2 decals: - 16081: -69.36001,44.44866 + 15814: -69.36001,44.44866 - node: color: '#8B8CA4E2' id: Bushc3 decals: - 19100: -65,-58 - 19103: -65,-60 + 18833: -65,-58 + 18836: -65,-60 - node: cleanable: True color: '#AEBCB789' id: Bushc3 decals: - 12988: -42,-56 + 12721: -42,-56 - node: color: '#E0D9DDE6' id: Bushc3 decals: - 19477: -50,-80 + 19210: -50,-80 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 4203: -58.000343,34.704094 - 13576: -16.88552,4.2282248 - 14720: 55.101177,-43.94642 - 14721: 55.101177,-43.94642 - 15549: 31.129759,-45.547066 - 15552: 28.810242,-38.002506 - 15620: 34.32035,-66.31399 - 15625: 29.903814,-72.374214 - 15637: 27.154287,-70.25846 - 16889: 31.792,-90.441864 - 17403: -59,86 - 17417: -49,87 + 4006: -58.000343,34.704094 + 13309: -16.88552,4.2282248 + 14453: 55.101177,-43.94642 + 14454: 55.101177,-43.94642 + 15282: 31.129759,-45.547066 + 15285: 28.810242,-38.002506 + 15353: 34.32035,-66.31399 + 15358: 29.903814,-72.374214 + 15370: 27.154287,-70.25846 + 16622: 31.792,-90.441864 + 17136: -59,86 + 17150: -49,87 - node: cleanable: True color: '#FFFFFFFF' id: Bushc3 decals: - 16209: -50,-87 + 15942: -50,-87 - node: zIndex: 60 color: '#FFFFFFFF' id: Bushc3 decals: - 16080: -65.881935,46.672405 + 15813: -65.881935,46.672405 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bushc3 decals: - 15554: 37.559765,-55.73418 + 15287: 37.559765,-55.73418 - node: color: '#FFFFFFFF' id: Bushd1 decals: - 20451: -104.0866,45.311047 + 20010: -104.0866,45.311047 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 4204: -54.453465,34.699295 - 13782: -64.04112,2.0306668 - 13784: -63.712997,2.1712918 - 20459: -103.80535,55.968666 + 4007: -54.453465,34.699295 + 13515: -64.04112,2.0306668 + 13517: -63.712997,2.1712918 + 20018: -103.80535,55.968666 - node: color: '#FFFFFFFF' id: Bushd4 decals: - 8469: 3.0264568,-21.39275 - 13785: -63.697372,1.9369168 - 16892: 31.838875,-90.11374 - 16902: 31.400547,-86.39195 - 16926: 35.936672,-72.54769 - 20450: -103.68035,45.26417 - 20452: -103.75848,45.529797 + 8202: 3.0264568,-21.39275 + 13518: -63.697372,1.9369168 + 16625: 31.838875,-90.11374 + 16635: 31.400547,-86.39195 + 16659: 35.936672,-72.54769 + 20009: -103.68035,45.26417 + 20011: -103.75848,45.529797 - node: color: '#FFFFFFFF' id: Bushe1 decals: 709: -104.5079,18.893766 710: -100.48755,19.77571 - 9505: 83.928154,-27.627008 - 13575: -16.072613,-13.910778 - 13873: 26.722322,2.0706012 - 15628: 17.694618,-79.71322 + 9238: 83.928154,-27.627008 + 13308: -16.072613,-13.910778 + 13606: 26.722322,2.0706012 + 15361: 17.694618,-79.71322 - node: cleanable: True color: '#FFFFFFFF' id: Bushe1 decals: - 16206: -50,-88 - 16207: -50,-88 + 15939: -50,-88 + 15940: -50,-88 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 8471: 6.682707,-19.95525 - 16239: -67.56176,-5.4844217 - 16240: -67.90898,-5.539977 + 8204: 6.682707,-19.95525 + 15972: -67.56176,-5.4844217 + 15973: -67.90898,-5.539977 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 8454: 4.0472903,-21.257334 - 13791: -66.43175,2.0306668 - 16238: -68.06176,-5.368681 - 20116: 25.193958,37.121845 - 20481: -104.82814,39.20661 + 8187: 4.0472903,-21.257334 + 13524: -66.43175,2.0306668 + 15971: -68.06176,-5.368681 + 19849: 25.193958,37.121845 + 20040: -104.82814,39.20661 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 5300: -13.190159,81.4231 - 5301: -12.658909,81.34498 - 5302: -12.596411,80.78248 - 5303: -12.955786,80.78248 - 5304: -13.28391,80.9231 - 5305: -12.549536,80.53248 - 5306: -12.252661,80.46998 - 5307: -12.870861,80.40294 - 5308: -12.527111,80.199814 - 5309: -11.964611,80.137314 - 5310: -11.917736,80.46544 - 8453: 3.01604,-22.559416 - 9502: 84.06878,-20.220758 - 13790: -66.74425,2.1869168 - 13798: -60.837997,-2.0787082 - 15558: 26.894253,-43.624805 - 16237: -67.723206,-5.232699 - 20482: -104.406265,39.20661 + 5103: -13.190159,81.4231 + 5104: -12.658909,81.34498 + 5105: -12.596411,80.78248 + 5106: -12.955786,80.78248 + 5107: -13.28391,80.9231 + 5108: -12.549536,80.53248 + 5109: -12.252661,80.46998 + 5110: -12.870861,80.40294 + 5111: -12.527111,80.199814 + 5112: -11.964611,80.137314 + 5113: -11.917736,80.46544 + 8186: 3.01604,-22.559416 + 9235: 84.06878,-20.220758 + 13523: -66.74425,2.1869168 + 13531: -60.837997,-2.0787082 + 15291: 26.894253,-43.624805 + 15970: -67.723206,-5.232699 + 20041: -104.406265,39.20661 - node: cleanable: True color: '#FFFFFFFF' id: Bushe4 decals: - 16205: -48,-88 + 15938: -48,-88 - node: cleanable: True color: '#AEBCB789' id: Bushf1 decals: - 12989: -47,-61 + 12722: -47,-61 - node: color: '#E0D9DDE6' id: Bushf1 decals: - 19498: -35,-79 - 19503: -47,-80 - 19504: -53,-79 + 19231: -35,-79 + 19236: -47,-80 + 19237: -53,-79 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 5311: -0.744509,73.27751 - 5312: -0.35388398,72.94939 - 6488: -5.320268,87.13922 - 6564: -9.412165,88.75944 - 15626: 17.866493,-80.38509 - 15627: 18.288368,-80.05697 - 20447: -103.8991,53.432346 + 5114: -0.744509,73.27751 + 5115: -0.35388398,72.94939 + 6239: -5.320268,87.13922 + 6315: -9.412165,88.75944 + 15359: 17.866493,-80.38509 + 15360: 18.288368,-80.05697 + 20006: -103.8991,53.432346 - node: cleanable: True color: '#FFFFFFFF' id: Bushf1 decals: - 18143: -65,70 + 17876: -65,70 - node: cleanable: True color: '#AEBCB7D6' id: Bushf2 decals: - 13075: -68,-57 + 12808: -68,-57 - node: color: '#FFFFFFFF' id: Bushf2 decals: 633: -109.081566,15.127165 - 20439: -103.9616,62.912735 + 19998: -103.9616,62.912735 - node: color: '#E0D9DDE6' id: Bushf3 decals: - 19499: -32,-82 + 19232: -32,-82 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 903: -27,-3 - 8455: 4.0472903,-22.70525 - 20112: 27,37 - 20438: -103.6491,62.756485 - 20446: -103.69598,53.47922 - 20498: -108.947235,50.130665 + 856: -27,-3 + 8188: 4.0472903,-22.70525 + 19845: 27,37 + 19997: -103.6491,62.756485 + 20005: -103.69598,53.47922 + 20057: -108.947235,50.130665 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 6489: -5.382768,87.82672 - 6490: -4.476518,88.02985 - 13792: -65.66612,2.0462918 - 20499: -108.71844,49.75251 + 6240: -5.382768,87.82672 + 6241: -4.476518,88.02985 + 13525: -65.66612,2.0462918 + 20058: -108.71844,49.75251 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 8470: 5.0681233,-21.038584 - 14715: 57.069927,-44.243294 - 20472: -103.11407,69.006546 + 8203: 5.0681233,-21.038584 + 14448: 57.069927,-44.243294 + 20031: -103.11407,69.006546 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 6491: -8.304644,86.76422 + 6242: -8.304644,86.76422 - node: color: '#E0D9DDE6' id: Bushh1 decals: - 19501: -34,-84 + 19234: -34,-84 - node: cleanable: True color: '#AEBCB7D6' id: Bushh2 decals: - 13069: -70,-57 - 13073: -75,-57 + 12802: -70,-57 + 12806: -75,-57 - node: color: '#E0D9DDE6' id: Bushh2 decals: - 19502: -34,-84 + 19235: -34,-84 - node: cleanable: True color: '#AEBCB789' id: Bushh3 decals: - 12990: -41,-60 + 12723: -41,-60 - node: color: '#E0D9DDE6' id: Bushh3 decals: - 19500: -34,-84 + 19233: -34,-84 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 13797: -60.869247,-1.938083 - 13857: 18.959795,2.062446 - 20453: -103.03973,45.04542 - 20477: -108.94219,66.506546 + 13530: -60.869247,-1.938083 + 13590: 18.959795,2.062446 + 20012: -103.03973,45.04542 + 20036: -108.94219,66.506546 - node: zIndex: 60 color: '#FFFFFFFF' id: Bushh3 decals: - 15934: -87.548004,22.785946 + 15667: -87.548004,22.785946 - node: color: '#3B4947A7' id: Bushi1 decals: - 19070: -55.519043,-50.362453 - 19071: -58.644043,-51.15933 - 19072: -56.519043,-52.581203 + 18803: -55.519043,-50.362453 + 18804: -58.644043,-51.15933 + 18805: -56.519043,-52.581203 - node: cleanable: True color: '#AEBCB7D6' id: Bushi1 decals: - 13071: -68,-60 + 12804: -68,-60 - node: color: '#E0D9DDE6' id: Bushi1 decals: - 19497: -39,-80 + 19230: -39,-80 - node: color: '#FFFFFFFF' id: Bushi1 decals: 632: -110.463066,11.762582 - 952: -105,-1 - 3956: -103,63 - 4347: -87,53 - 8512: -6.530337,-20.445148 - 9512: 81.709404,-28.236383 - 13566: -16.822613,-12.129528 - 13574: -16.525738,-4.723278 - 13619: 16.035503,-4.5424256 - 13620: 16.098003,-4.1049256 - 13621: 16.316753,-4.5111756 - 13643: 17.09511,4.4921 - 13786: -67.93175,2.0150418 - 13794: -62.150497,-2.0943332 - 13844: 23.522295,-2.125054 - 13852: 19.866045,2.046821 - 13854: 20.241045,2.078071 - 13856: 19.147295,1.9686961 - 13874: 52,-1 - 15629: 14.66687,-71.7433 - 15630: 15.244995,-72.16518 - 15631: 15.463745,-71.44643 - 15634: 20.518112,-72.46205 - 15635: 21.158737,-72.32143 - 20113: 24.990833,36.903095 - 20114: 25.272083,37.028095 - 20115: 25.443958,36.91872 - 20142: -2.7521122,-76.123924 - 20143: -2.4552372,-76.0458 - 20436: -104,60 - 20442: -103.97723,54.66672 - 20473: -102.31719,68.944046 - 20474: -102.08282,68.99092 + 905: -105,-1 + 3830: -103,63 + 4150: -87,53 + 8245: -6.530337,-20.445148 + 9245: 81.709404,-28.236383 + 13299: -16.822613,-12.129528 + 13307: -16.525738,-4.723278 + 13352: 16.035503,-4.5424256 + 13353: 16.098003,-4.1049256 + 13354: 16.316753,-4.5111756 + 13376: 17.09511,4.4921 + 13519: -67.93175,2.0150418 + 13527: -62.150497,-2.0943332 + 13577: 23.522295,-2.125054 + 13585: 19.866045,2.046821 + 13587: 20.241045,2.078071 + 13589: 19.147295,1.9686961 + 13607: 52,-1 + 15362: 14.66687,-71.7433 + 15363: 15.244995,-72.16518 + 15364: 15.463745,-71.44643 + 15367: 20.518112,-72.46205 + 15368: 21.158737,-72.32143 + 19846: 24.990833,36.903095 + 19847: 25.272083,37.028095 + 19848: 25.443958,36.91872 + 19875: -2.7521122,-76.123924 + 19876: -2.4552372,-76.0458 + 19995: -104,60 + 20001: -103.97723,54.66672 + 20032: -102.31719,68.944046 + 20033: -102.08282,68.99092 - node: cleanable: True color: '#FFFFFFFF' id: Bushi1 decals: - 18132: -63,74 + 17865: -63,74 - node: color: '#3B4947A7' id: Bushi2 decals: - 19073: -57.628418,-49.65933 - 19074: -54.550293,-53.31558 - 19075: -53.253418,-52.706203 + 18806: -57.628418,-49.65933 + 18807: -54.550293,-53.31558 + 18808: -53.253418,-52.706203 - node: color: '#E0D9DDE6' id: Bushi2 decals: - 19496: -49,-80 + 19229: -49,-80 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 13787: -67.60362,2.1556668 - 13795: -61.650497,-2.0005832 - 13846: 23.866045,-2.078179 - 13853: 20.66292,2.015571 - 13870: 27.076488,1.9386568 - 13871: 26.423712,1.9317122 - 13872: 26.6251,2.0358791 - 20478: -104.85939,39.065987 - 20479: -104.57814,39.222237 - 20480: -104.39064,39.01911 + 13520: -67.60362,2.1556668 + 13528: -61.650497,-2.0005832 + 13579: 23.866045,-2.078179 + 13586: 20.66292,2.015571 + 13603: 27.076488,1.9386568 + 13604: 26.423712,1.9317122 + 13605: 26.6251,2.0358791 + 20037: -104.85939,39.065987 + 20038: -104.57814,39.222237 + 20039: -104.39064,39.01911 - node: cleanable: True color: '#FFFFFFFF' id: Bushi2 decals: - 18133: -63,79 + 17866: -63,79 - node: color: '#3B4947A7' id: Bushi3 decals: - 19076: -56.784668,-52.768703 - 19077: -54.972168,-50.643703 + 18809: -56.784668,-52.768703 + 18810: -54.972168,-50.643703 - node: color: '#E0D9DDE6' id: Bushi3 decals: - 19495: -52,-80 + 19228: -52,-80 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 3958: -103,47 - 9516: 87.31878,-24.377008 - 13567: -16.306988,-13.676403 - 13568: -16.447613,-4.535778 - 13788: -67.4005,1.9837918 - 13796: -61.541122,-2.1880832 - 13845: 24.272295,-2.156304 - 20443: -103.66473,54.35422 - 20444: -103.97723,54.338596 + 3832: -103,47 + 9249: 87.31878,-24.377008 + 13300: -16.306988,-13.676403 + 13301: -16.447613,-4.535778 + 13521: -67.4005,1.9837918 + 13529: -61.541122,-2.1880832 + 13578: 24.272295,-2.156304 + 20002: -103.66473,54.35422 + 20003: -103.97723,54.338596 - node: cleanable: True color: '#FFFFFFFF' id: Bushi3 decals: - 16204: -55,-88 + 15937: -55,-88 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 4348: -86,55 - 8464: 7.193124,-22.434416 + 4151: -86,55 + 8197: 7.193124,-22.434416 - node: cleanable: True color: '#FFFFFFFF' id: Bushi4 decals: - 18160: -61,70 + 17893: -61,70 - node: color: '#8B8CA4E2' id: Bushj1 decals: - 19110: -56,-50 + 18843: -56,-50 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 904: -27,-3 - 20117: 24.100208,36.98122 + 857: -27,-3 + 19850: 24.100208,36.98122 - node: color: '#8B8CA4E2' id: Bushj2 decals: - 19109: -58,-51 + 18842: -58,-51 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 6638: 4.8775463,76.81885 - 8462: 6.932707,-20.95525 - 13600: -16.30259,13.5876 - 20458: -103.7741,47.85792 - 20486: -102.88945,39.237133 + 6389: 4.8775463,76.81885 + 8195: 6.932707,-20.95525 + 13333: -16.30259,13.5876 + 20017: -103.7741,47.85792 + 20045: -102.88945,39.237133 - node: color: '#8B8CA4E2' id: Bushj3 decals: - 19108: -55,-53 + 18841: -55,-53 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 3957: -103,54 + 3831: -103,54 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 5298: -15.138445,73.282555 - 5299: -14.185321,72.95443 - 6644: -17.43182,77.4751 - 6645: -18.68182,76.00635 - 6646: -17.322445,74.2251 - 14726: 55.116802,-43.50892 - 15632: 15.13562,-71.5558 - 15633: 20.830612,-71.77455 - 20437: -103.57098,60.318985 + 5101: -15.138445,73.282555 + 5102: -14.185321,72.95443 + 6395: -17.43182,77.4751 + 6396: -18.68182,76.00635 + 6397: -17.322445,74.2251 + 14459: 55.116802,-43.50892 + 15365: 15.13562,-71.5558 + 15366: 20.830612,-71.77455 + 19996: -103.57098,60.318985 - node: color: '#FFFFFFFF' id: Bushk2 @@ -7658,474 +7658,474 @@ entities: color: '#FFFFFFFF' id: Bushk3 decals: - 4162: -29.980495,33.162273 - 4559: -94,41 - 5313: 0.552366,72.74626 - 5314: 0.34924102,73.43376 - 13801: -67.9005,-1.953708 + 3969: -29.980495,33.162273 + 4362: -94,41 + 5116: 0.552366,72.74626 + 5117: 0.34924102,73.43376 + 13534: -67.9005,-1.953708 - node: color: '#FFFFFFFF' id: Bushl1 decals: - 13642: 16.141985,12.14835 + 13375: 16.141985,12.14835 - node: color: '#FFFFFFFF' id: Bushl2 decals: - 4349: -85,54 - 13647: 16.860735,5.820225 + 4152: -85,54 + 13380: 16.860735,5.820225 - node: color: '#FFFFFFFF' id: Bushl3 decals: - 1238: -88,-18 - 13648: 17.12636,3.9452248 + 1191: -88,-18 + 13381: 17.12636,3.9452248 - node: zIndex: 60 color: '#FFFFFFFF' id: Bushm1 decals: - 16109: -62.160988,40.958115 + 15842: -62.160988,40.958115 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 13800: -62.962997,-1.922458 - 13869: 24.6876,2.285879 + 13533: -62.962997,-1.922458 + 13602: 24.6876,2.285879 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 8513: -2.9990869,-22.913898 + 8246: -2.9990869,-22.913898 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 6600: -102.44308,-2.6748812 - 13569: -16.572613,-12.301403 - 13599: -16.95884,12.321975 - 13625: 16.519878,-5.4330506 - 13644: 16.28261,4.320225 - 13793: -65.25987,-2.0474582 - 13849: 23.81917,-1.9844289 - 20448: -103.69598,53.557346 - 20475: -108.91094,65.55342 + 6351: -102.44308,-2.6748812 + 13302: -16.572613,-12.301403 + 13332: -16.95884,12.321975 + 13358: 16.519878,-5.4330506 + 13377: 16.28261,4.320225 + 13526: -65.25987,-2.0474582 + 13582: 23.81917,-1.9844289 + 20007: -103.69598,53.557346 + 20034: -108.91094,65.55342 - node: color: '#FFFF00FF' id: Caution decals: - 2974: -72,19 + 2927: -72,19 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 7968: 87,42 - 7969: 87,44 + 7701: 87,42 + 7702: 87,44 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 7965: 82,47 - 7966: 84,47 + 7698: 82,47 + 7699: 84,47 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 7961: 79,42 - 7964: 79,44 + 7694: 79,42 + 7697: 79,44 - node: color: '#FFFFFFFF' id: Caution decals: - 2684: 69,-69 - 2703: 51,-69 - 2973: -70,19 - 4372: -44.008343,3.4439569 - 7957: 82,39 - 7958: 84,39 + 2637: 69,-69 + 2656: 51,-69 + 2926: -70,19 + 4175: -44.008343,3.4439569 + 7690: 82,39 + 7691: 84,39 - node: color: '#1D1D21FF' id: CheckerNESW decals: - 922: -61,21 - 923: -60,21 - 924: -59,21 - 925: -58,21 - 926: -58,20 - 927: -58,19 - 928: -58,18 - 929: -59,18 - 930: -59,19 - 931: -59,20 - 932: -60,20 - 933: -61,20 - 934: -61,19 - 935: -60,19 - 936: -60,18 - 937: -61,18 + 875: -61,21 + 876: -60,21 + 877: -59,21 + 878: -58,21 + 879: -58,20 + 880: -58,19 + 881: -58,18 + 882: -59,18 + 883: -59,19 + 884: -59,20 + 885: -60,20 + 886: -61,20 + 887: -61,19 + 888: -60,19 + 889: -60,18 + 890: -61,18 - node: color: '#4B709CFF' id: CheckerNESW decals: - 17444: -46,100 - 17445: -46,99 - 17446: -45,99 - 17447: -45,100 - 17448: -44,100 - 17449: -42,100 - 17450: -41,100 - 17451: -41,99 - 17452: -42,99 - 17453: -44,99 - 17454: -44,99 - 17455: -43,100 - 17456: -43,99 - 17457: -43,99 - 17458: -38,99 - 17459: -38,100 - 17460: -38,102 - 17461: -38,103 - 17462: -38,103 - 17463: -37,103 - 17464: -37,101 - 17465: -37,100 - 17466: -37,99 - 17467: -38,101 - 17468: -38,102 - 17469: -37,102 - 17470: -41,103 - 17471: -42,103 - 17472: -43,103 - 17473: -45,103 - 17474: -47,103 - 17475: -47,103 - 17476: -48,102 - 17477: -48,102 - 17478: -47,102 - 17479: -46,102 - 17480: -44,102 - 17481: -42,102 - 17482: -41,102 - 17483: -41,102 - 17484: -42,102 - 17485: -44,102 - 17486: -46,102 - 17487: -47,102 - 17488: -48,103 - 17489: -48,103 - 17490: -47,103 - 17491: -46,103 - 17492: -44,103 - 17493: -43,102 - 17494: -43,102 - 17495: -46,102 - 17496: -46,102 - 17497: -45,102 - 17498: -45,102 - 17499: -45,104 - 17500: -46,104 - 17501: -46,105 - 17502: -45,105 - 17503: -45,105 + 17177: -46,100 + 17178: -46,99 + 17179: -45,99 + 17180: -45,100 + 17181: -44,100 + 17182: -42,100 + 17183: -41,100 + 17184: -41,99 + 17185: -42,99 + 17186: -44,99 + 17187: -44,99 + 17188: -43,100 + 17189: -43,99 + 17190: -43,99 + 17191: -38,99 + 17192: -38,100 + 17193: -38,102 + 17194: -38,103 + 17195: -38,103 + 17196: -37,103 + 17197: -37,101 + 17198: -37,100 + 17199: -37,99 + 17200: -38,101 + 17201: -38,102 + 17202: -37,102 + 17203: -41,103 + 17204: -42,103 + 17205: -43,103 + 17206: -45,103 + 17207: -47,103 + 17208: -47,103 + 17209: -48,102 + 17210: -48,102 + 17211: -47,102 + 17212: -46,102 + 17213: -44,102 + 17214: -42,102 + 17215: -41,102 + 17216: -41,102 + 17217: -42,102 + 17218: -44,102 + 17219: -46,102 + 17220: -47,102 + 17221: -48,103 + 17222: -48,103 + 17223: -47,103 + 17224: -46,103 + 17225: -44,103 + 17226: -43,102 + 17227: -43,102 + 17228: -46,102 + 17229: -46,102 + 17230: -45,102 + 17231: -45,102 + 17232: -45,104 + 17233: -46,104 + 17234: -46,105 + 17235: -45,105 + 17236: -45,105 - node: color: '#4C2A5EFF' id: CheckerNESW decals: - 17637: -48,106 - 17638: -48,105 + 17370: -48,106 + 17371: -48,105 - node: color: '#52B4E996' id: CheckerNESW decals: - 1281: -31,-12 - 1282: -31,-13 + 1234: -31,-12 + 1235: -31,-13 - node: color: '#52B4E9AB' id: CheckerNESW decals: - 7101: 23,-49 - 7103: 23,-50 - 7104: 23,-51 - 7105: 23,-52 + 6834: 23,-49 + 6836: 23,-50 + 6837: 23,-51 + 6838: 23,-52 - node: color: '#729953FF' id: CheckerNESW decals: - 3671: -22,23 - 3672: -22,24 - 3673: -21,24 - 3674: -20,24 - 3675: -20,23 - 3676: -21,23 - 3677: -22,22 - 3678: -22,21 - 3679: -22,20 - 3680: -22,19 - 3681: -21,19 - 3682: -21,20 - 3683: -21,21 - 3684: -21,22 - 3685: -20,22 - 3686: -20,21 - 3687: -20,20 - 3688: -20,19 - 3689: -19,24 - 3690: -19,23 - 3691: -19,22 - 3692: -19,21 - 3693: -19,20 - 3694: -19,19 - 3695: -18,19 - 3696: -18,20 - 3697: -18,21 - 3698: -18,22 - 3699: -18,23 - 3700: -18,24 - 3701: -17,24 - 3702: -17,23 - 3703: -17,22 - 3704: -17,21 - 3705: -17,20 - 3706: -17,19 - 3707: -16,19 - 3708: -16,20 - 3709: -16,21 - 3710: -16,22 - 3711: -16,23 - 3712: -16,24 + 3624: -22,23 + 3625: -22,24 + 3626: -21,24 + 3627: -20,24 + 3628: -20,23 + 3629: -21,23 + 3630: -22,22 + 3631: -22,21 + 3632: -22,20 + 3633: -22,19 + 3634: -21,19 + 3635: -21,20 + 3636: -21,21 + 3637: -21,22 + 3638: -20,22 + 3639: -20,21 + 3640: -20,20 + 3641: -20,19 + 3642: -19,24 + 3643: -19,23 + 3644: -19,22 + 3645: -19,21 + 3646: -19,20 + 3647: -19,19 + 3648: -18,19 + 3649: -18,20 + 3650: -18,21 + 3651: -18,22 + 3652: -18,23 + 3653: -18,24 + 3654: -17,24 + 3655: -17,23 + 3656: -17,22 + 3657: -17,21 + 3658: -17,20 + 3659: -17,19 + 3660: -16,19 + 3661: -16,20 + 3662: -16,21 + 3663: -16,22 + 3664: -16,23 + 3665: -16,24 - node: color: '#774194FF' id: CheckerNESW decals: - 17615: -45,107 - 17616: -46,107 - 17617: -48,107 - 17618: -48,107 - 17619: -48,108 - 17620: -47,108 - 17621: -46,108 - 17622: -46,108 - 17623: -45,108 - 17624: -47,107 - 17639: -48,106 - 17640: -48,105 - 17641: -48,105 + 17348: -45,107 + 17349: -46,107 + 17350: -48,107 + 17351: -48,107 + 17352: -48,108 + 17353: -47,108 + 17354: -46,108 + 17355: -46,108 + 17356: -45,108 + 17357: -47,107 + 17372: -48,106 + 17373: -48,105 + 17374: -48,105 - node: color: '#808080FF' id: CheckerNESW decals: - 17512: -48,103 - 17513: -48,102 - 17514: -47,102 - 17515: -47,103 - 17516: -47,103 - 17517: -46,102 - 17518: -46,103 - 17519: -46,104 - 17520: -46,104 - 17521: -46,105 - 17522: -45,105 - 17523: -45,104 - 17524: -45,103 - 17525: -45,102 - 17526: -45,102 - 17527: -44,103 - 17528: -43,103 - 17529: -42,103 - 17530: -41,103 - 17531: -41,102 - 17532: -42,102 - 17533: -43,102 - 17534: -44,102 - 17535: -44,102 - 17536: -38,103 - 17537: -37,103 - 17538: -37,102 - 17539: -38,102 - 17540: -38,102 - 17541: -38,101 - 17542: -37,100 - 17543: -38,100 - 17544: -38,99 - 17545: -37,99 - 17546: -37,101 - 17547: -37,101 - 17548: -37,100 - 17549: -38,99 - 17550: -42,100 - 17551: -42,100 - 17552: -43,100 - 17553: -45,100 - 17554: -46,100 - 17555: -46,100 - 17556: -46,99 - 17557: -46,99 - 17558: -44,99 - 17559: -43,99 - 17560: -43,99 - 17561: -42,99 - 17562: -41,99 - 17563: -41,100 - 17564: -42,100 - 17565: -44,100 - 17566: -44,100 - 17567: -45,99 - 17568: -45,99 + 17245: -48,103 + 17246: -48,102 + 17247: -47,102 + 17248: -47,103 + 17249: -47,103 + 17250: -46,102 + 17251: -46,103 + 17252: -46,104 + 17253: -46,104 + 17254: -46,105 + 17255: -45,105 + 17256: -45,104 + 17257: -45,103 + 17258: -45,102 + 17259: -45,102 + 17260: -44,103 + 17261: -43,103 + 17262: -42,103 + 17263: -41,103 + 17264: -41,102 + 17265: -42,102 + 17266: -43,102 + 17267: -44,102 + 17268: -44,102 + 17269: -38,103 + 17270: -37,103 + 17271: -37,102 + 17272: -38,102 + 17273: -38,102 + 17274: -38,101 + 17275: -37,100 + 17276: -38,100 + 17277: -38,99 + 17278: -37,99 + 17279: -37,101 + 17280: -37,101 + 17281: -37,100 + 17282: -38,99 + 17283: -42,100 + 17284: -42,100 + 17285: -43,100 + 17286: -45,100 + 17287: -46,100 + 17288: -46,100 + 17289: -46,99 + 17290: -46,99 + 17291: -44,99 + 17292: -43,99 + 17293: -43,99 + 17294: -42,99 + 17295: -41,99 + 17296: -41,100 + 17297: -42,100 + 17298: -44,100 + 17299: -44,100 + 17300: -45,99 + 17301: -45,99 - node: color: '#999999FF' id: CheckerNESW decals: - 17506: -48,103 - 17507: -48,103 - 17508: -48,102 - 17509: -47,102 - 17510: -47,103 - 17511: -47,103 - 17572: -45,107 - 17573: -46,107 - 17574: -47,107 - 17575: -47,107 - 17576: -47,108 - 17577: -46,108 - 17578: -45,108 - 17579: -48,107 - 17580: -48,106 - 17581: -48,105 - 17582: -48,105 + 17239: -48,103 + 17240: -48,103 + 17241: -48,102 + 17242: -47,102 + 17243: -47,103 + 17244: -47,103 + 17305: -45,107 + 17306: -46,107 + 17307: -47,107 + 17308: -47,107 + 17309: -47,108 + 17310: -46,108 + 17311: -45,108 + 17312: -48,107 + 17313: -48,106 + 17314: -48,105 + 17315: -48,105 - node: color: '#9A54BFFF' id: CheckerNESW decals: - 17600: -45,107 - 17601: -45,108 - 17602: -46,108 - 17603: -46,107 - 17604: -47,107 - 17605: -47,108 - 17606: -48,107 - 17607: -48,106 - 17608: -48,106 - 17609: -48,105 - 17610: -48,108 + 17333: -45,107 + 17334: -45,108 + 17335: -46,108 + 17336: -46,107 + 17337: -47,107 + 17338: -47,108 + 17339: -48,107 + 17340: -48,106 + 17341: -48,106 + 17342: -48,105 + 17343: -48,108 - node: color: '#9C2020FF' id: CheckerNESW decals: - 12184: -58,-23 - 12186: -58,-24 - 12188: -59,-24 - 12190: -59,-23 - 12191: -60,-23 - 12192: -60,-24 - 12194: -61,-24 - 12196: -61,-23 + 11917: -58,-23 + 11919: -58,-24 + 11921: -59,-24 + 11923: -59,-23 + 11924: -60,-23 + 11925: -60,-24 + 11927: -61,-24 + 11929: -61,-23 - node: color: '#B3B3B3FF' id: CheckerNESW decals: - 17504: -48,103 - 17505: -48,102 + 17237: -48,103 + 17238: -48,102 - node: color: '#CA7EF2FF' id: CheckerNESW decals: - 17611: -45,107 - 17612: -45,108 - 17613: -46,108 - 17614: -46,107 - 17625: -45,107 - 17626: -46,107 - 17627: -48,107 - 17628: -48,107 - 17629: -48,107 - 17630: -48,108 - 17631: -47,108 - 17632: -46,108 - 17633: -45,108 - 17634: -45,108 - 17635: -47,107 - 17636: -47,107 + 17344: -45,107 + 17345: -45,108 + 17346: -46,108 + 17347: -46,107 + 17358: -45,107 + 17359: -46,107 + 17360: -48,107 + 17361: -48,107 + 17362: -48,107 + 17363: -48,108 + 17364: -47,108 + 17365: -46,108 + 17366: -45,108 + 17367: -45,108 + 17368: -47,107 + 17369: -47,107 - node: color: '#DABC8BFF' id: CheckerNESW decals: - 6184: 10,-50 - 6185: 16,-50 - 6186: 18,-50 - 6187: 10,-51 - 6188: 9,-51 - 6189: 9,-52 - 6190: 10,-52 - 6191: 11,-52 - 6192: 11,-51 - 6193: 12,-51 - 6194: 12,-52 - 6195: 13,-52 - 6196: 13,-51 - 6197: 8,-52 - 6275: 8,-47 - 6276: 8,-41 - 6277: 8,-40 + 5944: 10,-50 + 5945: 16,-50 + 5946: 18,-50 + 5947: 10,-51 + 5948: 9,-51 + 5949: 9,-52 + 5950: 10,-52 + 5951: 11,-52 + 5952: 11,-51 + 5953: 12,-51 + 5954: 12,-52 + 5955: 13,-52 + 5956: 13,-51 + 5957: 8,-52 + 6031: 8,-47 + 6032: 8,-41 + 6033: 8,-40 - node: color: '#E6E6E6FF' id: CheckerNESW decals: - 17569: -42,104 - 17570: -49,103 - 17571: -44,98 + 17302: -42,104 + 17303: -49,103 + 17304: -44,98 - node: color: '#EFB34196' id: CheckerNESW decals: - 17326: 9,-47 - 17344: 9,-41 - 17369: 18,-49 - 17383: 12,-49 + 17059: 9,-47 + 17077: 9,-41 + 17102: 18,-49 + 17116: 12,-49 - node: color: '#000000E9' id: CheckerNWSE decals: - 10507: -37,-39 - 10508: -36,-39 - 10509: -35,-39 - 10510: -34,-39 - 10511: -34,-40 - 10512: -35,-40 - 10513: -36,-40 - 10514: -37,-40 - 10516: -37,-41 - 10517: -36,-41 - 10518: -35,-41 - 10519: -34,-41 + 10240: -37,-39 + 10241: -36,-39 + 10242: -35,-39 + 10243: -34,-39 + 10244: -34,-40 + 10245: -35,-40 + 10246: -36,-40 + 10247: -37,-40 + 10249: -37,-41 + 10250: -36,-41 + 10251: -35,-41 + 10252: -34,-41 - node: color: '#37789BB1' id: CheckerNWSE decals: - 7113: 23,-49 - 7114: 23,-50 - 7115: 23,-51 - 7117: 23,-52 + 6846: 23,-49 + 6847: 23,-50 + 6848: 23,-51 + 6850: 23,-52 - node: color: '#43990996' id: CheckerNWSE decals: - 1183: -63,45 - 1184: -63,46 - 1185: -63,47 - 1186: -62,47 - 1187: -62,46 - 1188: -62,45 - 1189: -61,45 - 1190: -61,46 - 1191: -61,47 - 1192: -60,47 - 1193: -60,46 - 1194: -60,45 - 1195: -59,46 - 1196: -64,46 + 1136: -63,45 + 1137: -63,46 + 1138: -63,47 + 1139: -62,47 + 1140: -62,46 + 1141: -62,45 + 1142: -61,45 + 1143: -61,46 + 1144: -61,47 + 1145: -60,47 + 1146: -60,46 + 1147: -60,45 + 1148: -59,46 + 1149: -64,46 - node: color: '#474F52FF' id: CheckerNWSE @@ -8159,691 +8159,691 @@ entities: color: '#808080FF' id: CheckerNWSE decals: - 17642: -48,106 - 17643: -48,105 + 17375: -48,106 + 17376: -48,105 - node: color: '#F9FFFEFF' id: CheckerNWSE decals: - 906: -61,21 - 907: -61,20 - 908: -61,19 - 909: -61,18 - 910: -60,18 - 911: -59,18 - 912: -58,18 - 913: -58,19 - 914: -59,19 - 915: -60,19 - 916: -60,20 - 917: -60,21 - 918: -59,21 - 919: -59,20 - 920: -58,20 - 921: -58,21 + 859: -61,21 + 860: -61,20 + 861: -61,19 + 862: -61,18 + 863: -60,18 + 864: -59,18 + 865: -58,18 + 866: -58,19 + 867: -59,19 + 868: -60,19 + 869: -60,20 + 870: -60,21 + 871: -59,21 + 872: -59,20 + 873: -58,20 + 874: -58,21 - node: color: '#96DAFFFF' id: ConcreteTrimBox decals: - 9210: 3,-40 - 9211: 3,-41 + 8943: 3,-40 + 8944: 3,-41 - node: cleanable: True color: '#FFFFFFFF' id: ConcreteTrimBox decals: - 5755: 10,31 - 5756: 12,31 - 5757: 14,31 - 5758: 17,31 - 5759: 15,31 - 5760: 13,31 + 5558: 10,31 + 5559: 12,31 + 5560: 14,31 + 5561: 17,31 + 5562: 15,31 + 5563: 13,31 - node: color: '#00000026' id: ConcreteTrimCornerNe decals: - 3219: 5,54 + 3172: 5,54 - node: color: '#323232FF' id: ConcreteTrimCornerNe decals: - 10993: -45,-21 + 10726: -45,-21 - node: color: '#CA7EF2FF' id: ConcreteTrimCornerNe decals: - 17697: -47,100 + 17430: -47,100 - node: color: '#DAA58BFF' id: ConcreteTrimCornerNe decals: - 6212: 13,-51 + 5969: 13,-51 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 16287: 85,-4 - 16404: 85,1 - 17128: -85,-55 + 16020: 85,-4 + 16137: 85,1 + 16861: -85,-55 - node: color: '#CA7EF2FF' id: ConcreteTrimCornerNw decals: - 17700: -53,100 + 17433: -53,100 - node: color: '#DAA58BFF' id: ConcreteTrimCornerNw decals: - 6218: 9,-51 + 5975: 9,-51 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 16403: 84,1 - 17127: -87,-55 + 16136: 84,1 + 16860: -87,-55 - node: zIndex: 1 color: '#999999FF' id: ConcreteTrimCornerSe decals: - 18285: -18.498297,63.501404 + 18018: -18.498297,63.501404 - node: color: '#CA7EF2FF' id: ConcreteTrimCornerSe decals: - 17698: -47,99 - 17701: -51,95 + 17431: -47,99 + 17434: -51,95 - node: zIndex: 1 color: '#CCCCCCFF' id: ConcreteTrimCornerSe decals: - 18278: -18.250906,63.24773 + 18011: -18.250906,63.24773 - node: color: '#DAA58BFF' id: ConcreteTrimCornerSe decals: - 6213: 13,-52 + 5970: 13,-52 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 16405: 85,0 - 17129: -85,-56 + 16138: 85,0 + 16862: -85,-56 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 18275: -18,63 + 18008: -18,63 - node: color: '#CA7EF2FF' id: ConcreteTrimCornerSw decals: - 17699: -53,95 + 17432: -53,95 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 16292: 69,-7 - 16406: 84,0 - 16498: 83,-16 - 17126: -87,-56 + 16025: 69,-7 + 16139: 84,0 + 16231: 83,-16 + 16859: -87,-56 - node: cleanable: True color: '#FFFFFFFF' id: ConcreteTrimEndN decals: - 5769: 17,33 - 5770: 12,33 - 5771: 15,33 + 5572: 17,33 + 5573: 12,33 + 5574: 15,33 - node: color: '#00000026' id: ConcreteTrimInnerNe decals: - 3221: 5,52 + 3174: 5,52 - node: color: '#DAA58BFF' id: ConcreteTrimInnerNe decals: - 6209: 10,-51 + 5966: 10,-51 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 1128: -58,47 - 1139: -53,47 - 16286: 81,-4 - 16409: 85,1 - 16410: 85,0 - 16415: 84,1 - 16500: 85,-14 + 1081: -58,47 + 1092: -53,47 + 16019: 81,-4 + 16142: 85,1 + 16143: 85,0 + 16148: 84,1 + 16233: 85,-14 - node: cleanable: True color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 5820: 14,30 - 5821: 12,31 + 5623: 14,30 + 5624: 12,31 - node: color: '#00000026' id: ConcreteTrimInnerNw decals: - 3222: 11,52 + 3175: 11,52 - node: color: '#DAA58BFF' id: ConcreteTrimInnerNw decals: - 6208: 10,-51 - 6219: 9,-52 + 5965: 10,-51 + 5976: 9,-52 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 1122: -54,47 - 1123: -49,47 - 16407: 84,1 - 16408: 84,0 - 16416: 85,1 + 1075: -54,47 + 1076: -49,47 + 16140: 84,1 + 16141: 84,0 + 16149: 85,1 - node: color: '#639137FF' id: ConcreteTrimInnerSe decals: - 5898: -27,-45 + 5701: -27,-45 - node: zIndex: 1 color: '#999999FF' id: ConcreteTrimInnerSe decals: - 18290: -21.497608,63.500687 - 18291: -18.497768,66.50175 + 18023: -21.497608,63.500687 + 18024: -18.497768,66.50175 - node: color: '#CA7EF2FF' id: ConcreteTrimInnerSe decals: - 17723: -51,99 + 17456: -51,99 - node: zIndex: 1 color: '#CCCCCCFF' id: ConcreteTrimInnerSe decals: - 18281: -18.249325,66.24675 - 18284: -21.251848,63.249844 + 18014: -18.249325,66.24675 + 18017: -21.251848,63.249844 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 1124: -58,50 - 1125: -53,50 - 16290: 67,-6 - 16411: 85,0 - 16412: 84,0 - 16417: 85,1 + 1077: -58,50 + 1078: -53,50 + 16023: 67,-6 + 16144: 85,0 + 16145: 84,0 + 16150: 85,1 - node: cleanable: True color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 5822: 15,31 + 5625: 15,31 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 18272: -21,63 - 18273: -18,66 + 18005: -21,63 + 18006: -18,66 - node: color: '#639137FF' id: ConcreteTrimInnerSw decals: - 5899: -19,-45 + 5702: -19,-45 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 1126: -54,50 - 1127: -49,50 - 16288: 83,-7 - 16289: 69,-6 - 16413: 84,0 - 16414: 84,1 - 16418: 85,0 - 16499: 86,-16 + 1079: -54,50 + 1080: -49,50 + 16021: 83,-7 + 16022: 69,-6 + 16146: 84,0 + 16147: 84,1 + 16151: 85,0 + 16232: 86,-16 - node: cleanable: True color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 5819: 13,32 + 5622: 13,32 - node: color: '#00000026' id: ConcreteTrimLineE decals: - 3220: 5,53 + 3173: 5,53 - node: color: '#323232FF' id: ConcreteTrimLineE decals: - 10994: -45,-22 - 10995: -45,-23 - 10996: -45,-24 - 10997: -45,-25 - 10998: -45,-25 - 10999: -45,-26 - 11000: -45,-27 + 10727: -45,-22 + 10728: -45,-23 + 10729: -45,-24 + 10730: -45,-25 + 10731: -45,-25 + 10732: -45,-26 + 10733: -45,-27 - node: color: '#639137FF' id: ConcreteTrimLineE decals: - 5887: -27,-46 - 5888: -27,-47 + 5690: -27,-46 + 5691: -27,-47 - node: zIndex: 1 color: '#999999FF' id: ConcreteTrimLineE decals: - 18286: -18.498297,64.50146 - 18287: -18.498297,65.50146 + 18019: -18.498297,64.50146 + 18020: -18.498297,65.50146 - node: color: '#CA7EF2FF' id: ConcreteTrimLineE decals: - 17719: -51,98 - 17720: -51,98 - 17721: -51,97 - 17722: -51,96 + 17452: -51,98 + 17453: -51,98 + 17454: -51,97 + 17455: -51,96 - node: zIndex: 1 color: '#CCCCCCFF' id: ConcreteTrimLineE decals: - 18279: -18.249575,64.245834 - 18280: -18.249575,65.245834 + 18012: -18.249575,64.245834 + 18013: -18.249575,65.245834 - node: color: '#DAA58BFF' id: ConcreteTrimLineE decals: - 6206: 10,-50 - 6268: 18,-50 - 6284: 16,-50 + 5963: 10,-50 + 6025: 18,-50 + 6040: 16,-50 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 1118: -58,48 - 1119: -58,49 - 1120: -53,48 - 1121: -53,49 - 16274: 85,-13 - 16275: 85,-12 - 16276: 85,-11 - 16277: 85,-10 - 16278: 85,-9 - 16279: 85,-8 - 16280: 85,-7 - 16281: 85,-6 - 16282: 85,-5 - 16291: 67,-7 - 16293: 67,-8 + 1071: -58,48 + 1072: -58,49 + 1073: -53,48 + 1074: -53,49 + 16007: 85,-13 + 16008: 85,-12 + 16009: 85,-11 + 16010: 85,-10 + 16011: 85,-9 + 16012: 85,-8 + 16013: 85,-7 + 16014: 85,-6 + 16015: 85,-5 + 16024: 67,-7 + 16026: 67,-8 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 18274: -18,65 - 18277: -18,64 + 18007: -18,65 + 18010: -18,64 - node: color: '#00000026' id: ConcreteTrimLineN decals: - 3213: 10,52 - 3214: 9,52 - 3215: 8,52 - 3216: 7,52 - 3217: 6,52 - 3408: -4,57 - 3409: -3,57 - 3410: -2,57 + 3166: 10,52 + 3167: 9,52 + 3168: 8,52 + 3169: 7,52 + 3170: 6,52 + 3361: -4,57 + 3362: -3,57 + 3363: -2,57 - node: color: '#323232FF' id: ConcreteTrimLineN decals: - 11004: -46,-21 - 11005: -47,-21 - 11006: -48,-21 - 11008: -49,-21 - 11009: -49,-21 + 10737: -46,-21 + 10738: -47,-21 + 10739: -48,-21 + 10741: -49,-21 + 10742: -49,-21 - node: color: '#CA7EF2FF' id: ConcreteTrimLineN decals: - 17707: -52,100 - 17708: -51,100 - 17709: -51,100 - 17710: -50,100 - 17711: -49,100 - 17712: -49,100 - 17713: -48,100 - 17714: -48,100 + 17440: -52,100 + 17441: -51,100 + 17442: -51,100 + 17443: -50,100 + 17444: -49,100 + 17445: -49,100 + 17446: -48,100 + 17447: -48,100 - node: color: '#DAA58BFF' id: ConcreteTrimLineN decals: - 6210: 11,-51 - 6211: 12,-51 - 6223: 8,-52 - 6278: 8,-47 - 6281: 8,-40 + 5967: 11,-51 + 5968: 12,-51 + 5980: 8,-52 + 6034: 8,-47 + 6037: 8,-40 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 1112: -55,47 - 1113: -56,47 - 1114: -57,47 - 1133: -52,47 - 1134: -51,47 - 1135: -50,47 - 16283: 84,-4 - 16284: 83,-4 - 16285: 82,-4 + 1065: -55,47 + 1066: -56,47 + 1067: -57,47 + 1086: -52,47 + 1087: -51,47 + 1088: -50,47 + 16016: 84,-4 + 16017: 83,-4 + 16018: 82,-4 - node: color: '#323232FF' id: ConcreteTrimLineS decals: - 11026: -49,-27 - 11027: -48,-27 - 11028: -47,-27 - 11029: -46,-27 - 11030: -46,-27 - 11031: -45,-27 + 10759: -49,-27 + 10760: -48,-27 + 10761: -47,-27 + 10762: -46,-27 + 10763: -46,-27 + 10764: -45,-27 - node: color: '#639137FF' id: ConcreteTrimLineS decals: - 5889: -26,-45 - 5890: -25,-45 - 5891: -24,-45 - 5892: -23,-45 - 5893: -21,-45 - 5894: -21,-45 - 5895: -20,-45 - 5900: -22,-45 + 5692: -26,-45 + 5693: -25,-45 + 5694: -24,-45 + 5695: -23,-45 + 5696: -21,-45 + 5697: -21,-45 + 5698: -20,-45 + 5703: -22,-45 - node: zIndex: 1 color: '#999999FF' id: ConcreteTrimLineS decals: - 18288: -19.4967,63.500687 - 18289: -20.4967,63.500687 + 18021: -19.4967,63.500687 + 18022: -20.4967,63.500687 - node: color: '#CA7EF2FF' id: ConcreteTrimLineS decals: - 17706: -52,95 - 17715: -50,99 - 17716: -49,99 - 17717: -49,99 - 17718: -48,99 + 17439: -52,95 + 17448: -50,99 + 17449: -49,99 + 17450: -49,99 + 17451: -48,99 - node: zIndex: 1 color: '#CCCCCCFF' id: ConcreteTrimLineS decals: - 18282: -19.250671,63.249844 - 18283: -20.252539,63.249844 + 18015: -19.250671,63.249844 + 18016: -20.252539,63.249844 - node: color: '#DAA58BFF' id: ConcreteTrimLineS decals: - 6214: 12,-52 - 6215: 11,-52 - 6216: 10,-52 - 6217: 9,-52 - 6224: 8,-52 - 6279: 8,-41 + 5971: 12,-52 + 5972: 11,-52 + 5973: 10,-52 + 5974: 9,-52 + 5981: 8,-52 + 6035: 8,-41 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 1115: -57,50 - 1116: -56,50 - 1117: -55,50 - 1136: -52,50 - 1137: -51,50 - 1138: -50,50 - 16251: 70,-7 - 16252: 71,-7 - 16253: 72,-7 - 16254: 73,-7 - 16255: 74,-7 - 16256: 75,-7 - 16257: 76,-7 - 16258: 77,-7 - 16259: 78,-7 - 16260: 79,-7 - 16261: 80,-7 - 16262: 81,-7 - 16263: 82,-7 - 16272: 84,-16 - 16273: 85,-16 - 17130: -86,-56 + 1068: -57,50 + 1069: -56,50 + 1070: -55,50 + 1089: -52,50 + 1090: -51,50 + 1091: -50,50 + 15984: 70,-7 + 15985: 71,-7 + 15986: 72,-7 + 15987: 73,-7 + 15988: 74,-7 + 15989: 75,-7 + 15990: 76,-7 + 15991: 77,-7 + 15992: 78,-7 + 15993: 79,-7 + 15994: 80,-7 + 15995: 81,-7 + 15996: 82,-7 + 16005: 84,-16 + 16006: 85,-16 + 16863: -86,-56 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 18271: -20,63 - 18276: -19,63 + 18004: -20,63 + 18009: -19,63 - node: color: '#00000026' id: ConcreteTrimLineW decals: - 3218: 11,53 + 3171: 11,53 - node: color: '#323232FF' id: ConcreteTrimLineW decals: - 11012: -49,-22 - 11013: -49,-21 - 11014: -49,-23 - 11015: -49,-23 - 11016: -49,-25 - 11017: -49,-26 - 11018: -49,-26 - 11019: -49,-27 - 11020: -49,-24 - 11021: -49,-23 - 11022: -49,-23 - 11023: -49,-22 - 11024: -49,-22 + 10745: -49,-22 + 10746: -49,-21 + 10747: -49,-23 + 10748: -49,-23 + 10749: -49,-25 + 10750: -49,-26 + 10751: -49,-26 + 10752: -49,-27 + 10753: -49,-24 + 10754: -49,-23 + 10755: -49,-23 + 10756: -49,-22 + 10757: -49,-22 - node: color: '#639137FF' id: ConcreteTrimLineW decals: - 5883: -19,-46 - 5884: -19,-47 - 5896: -19,-46 - 5897: -19,-47 + 5686: -19,-46 + 5687: -19,-47 + 5699: -19,-46 + 5700: -19,-47 - node: color: '#9FED58FF' id: ConcreteTrimLineW decals: - 5885: -19,-46 - 5886: -19,-47 + 5688: -19,-46 + 5689: -19,-47 - node: color: '#CA7EF2FF' id: ConcreteTrimLineW decals: - 17702: -53,99 - 17703: -53,98 - 17704: -53,97 - 17705: -53,96 + 17435: -53,99 + 17436: -53,98 + 17437: -53,97 + 17438: -53,96 - node: color: '#DAA58BFF' id: ConcreteTrimLineW decals: - 6207: 10,-50 - 6269: 18,-50 - 6285: 16,-50 + 5964: 10,-50 + 6026: 18,-50 + 6041: 16,-50 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 1129: -54,48 - 1130: -54,49 - 1131: -49,49 - 1132: -49,48 - 16264: 83,-8 - 16265: 83,-9 - 16266: 83,-11 - 16267: 83,-10 - 16268: 83,-12 - 16269: 83,-13 - 16270: 83,-14 - 16271: 83,-15 + 1082: -54,48 + 1083: -54,49 + 1084: -49,49 + 1085: -49,48 + 15997: 83,-8 + 15998: 83,-9 + 15999: 83,-11 + 16000: 83,-10 + 16001: 83,-12 + 16002: 83,-13 + 16003: 83,-14 + 16004: 83,-15 - node: color: '#3B49473B' id: Damaged decals: - 19008: -56.972168,-50.612453 - 19009: -57.190918,-50.03433 - 19010: -56.128418,-50.487453 - 19011: -56.144043,-50.737453 - 19012: -57.831543,-50.59683 - 19013: -58.097168,-50.768703 - 19014: -57.956543,-50.924953 - 19015: -56.597168,-50.53433 - 19016: -56.081543,-50.581203 - 19017: -55.862793,-51.581203 - 19018: -55.612793,-51.78433 - 19019: -55.394043,-51.768703 - 19020: -56.128418,-50.643703 - 19021: -56.815918,-50.40933 - 19022: -57.440918,-50.831203 - 19023: -56.394043,-51.143703 - 19024: -56.065918,-51.87808 - 19025: -55.659668,-52.143703 - 19026: -55.003418,-52.518703 - 19027: -55.581543,-52.268703 - 19028: -56.784668,-51.06558 - 19029: -56.862793,-51.06558 - 19030: -56.769043,-51.34683 - 19031: -56.206543,-51.34683 - 19032: -56.253418,-50.456203 - 19033: -55.956543,-50.018703 - 19034: -55.612793,-50.143703 - 19035: -55.831543,-50.237453 - 19036: -57.019043,-50.612453 - 19037: -56.737793,-51.487453 + 18741: -56.972168,-50.612453 + 18742: -57.190918,-50.03433 + 18743: -56.128418,-50.487453 + 18744: -56.144043,-50.737453 + 18745: -57.831543,-50.59683 + 18746: -58.097168,-50.768703 + 18747: -57.956543,-50.924953 + 18748: -56.597168,-50.53433 + 18749: -56.081543,-50.581203 + 18750: -55.862793,-51.581203 + 18751: -55.612793,-51.78433 + 18752: -55.394043,-51.768703 + 18753: -56.128418,-50.643703 + 18754: -56.815918,-50.40933 + 18755: -57.440918,-50.831203 + 18756: -56.394043,-51.143703 + 18757: -56.065918,-51.87808 + 18758: -55.659668,-52.143703 + 18759: -55.003418,-52.518703 + 18760: -55.581543,-52.268703 + 18761: -56.784668,-51.06558 + 18762: -56.862793,-51.06558 + 18763: -56.769043,-51.34683 + 18764: -56.206543,-51.34683 + 18765: -56.253418,-50.456203 + 18766: -55.956543,-50.018703 + 18767: -55.612793,-50.143703 + 18768: -55.831543,-50.237453 + 18769: -57.019043,-50.612453 + 18770: -56.737793,-51.487453 - node: color: '#3B49475D' id: Damaged decals: - 19045: -53.237793,-53.15933 - 19046: -53.003418,-53.00308 - 19047: -52.862793,-53.06558 - 19048: -54.956543,-52.643703 - 19049: -55.925293,-53.09683 - 19050: -56.550293,-52.674953 - 19051: -56.597168,-52.674953 - 19052: -56.878418,-52.53433 - 19053: -57.362793,-52.84683 - 19054: -57.222168,-53.12808 - 19055: -57.644043,-53.40933 - 19056: -58.112793,-53.40933 - 19057: -57.925293,-53.40933 - 19058: -56.550293,-52.56558 - 19059: -56.237793,-52.768703 - 19060: -55.894043,-53.50308 - 19061: -55.175293,-53.59683 - 19062: -56.347168,-51.06558 - 19063: -56.878418,-51.53433 - 19064: -57.347168,-51.62808 - 19065: -57.815918,-51.15933 - 19066: -58.003418,-50.799953 - 19067: -58.237793,-50.59683 - 19068: -56.925293,-50.12808 - 19069: -56.394043,-50.456203 + 18778: -53.237793,-53.15933 + 18779: -53.003418,-53.00308 + 18780: -52.862793,-53.06558 + 18781: -54.956543,-52.643703 + 18782: -55.925293,-53.09683 + 18783: -56.550293,-52.674953 + 18784: -56.597168,-52.674953 + 18785: -56.878418,-52.53433 + 18786: -57.362793,-52.84683 + 18787: -57.222168,-53.12808 + 18788: -57.644043,-53.40933 + 18789: -58.112793,-53.40933 + 18790: -57.925293,-53.40933 + 18791: -56.550293,-52.56558 + 18792: -56.237793,-52.768703 + 18793: -55.894043,-53.50308 + 18794: -55.175293,-53.59683 + 18795: -56.347168,-51.06558 + 18796: -56.878418,-51.53433 + 18797: -57.347168,-51.62808 + 18798: -57.815918,-51.15933 + 18799: -58.003418,-50.799953 + 18800: -58.237793,-50.59683 + 18801: -56.925293,-50.12808 + 18802: -56.394043,-50.456203 - node: color: '#3B494773' id: Damaged decals: - 19038: -59.284668,-49.69058 - 19039: -59.284668,-49.75308 - 19040: -59.112793,-50.22183 - 19041: -58.659668,-50.37808 - 19042: -58.800293,-49.924953 - 19043: -58.331543,-49.893703 - 19044: -57.753418,-50.59683 + 18771: -59.284668,-49.69058 + 18772: -59.284668,-49.75308 + 18773: -59.112793,-50.22183 + 18774: -58.659668,-50.37808 + 18775: -58.800293,-49.924953 + 18776: -58.331543,-49.893703 + 18777: -57.753418,-50.59683 - node: color: '#3B4947FF' id: Damaged decals: - 19004: -56,-50 - 19005: -57,-51 - 19006: -55,-52 - 19007: -56,-51 + 18737: -56,-50 + 18738: -57,-51 + 18739: -55,-52 + 18740: -56,-51 - node: cleanable: True color: '#474F52FF' id: Damaged decals: - 2413: -76.09559,-0.23037928 + 2366: -76.09559,-0.23037928 - node: cleanable: True angle: 0.7853981633974483 rad color: '#474F52FF' id: Damaged decals: - 2411: -75.76746,-0.9491292 - 2412: -76.42371,0.58212066 + 2364: -75.76746,-0.9491292 + 2365: -76.42371,0.58212066 - node: color: '#FFFFFF03' id: Damaged decals: - 19793: -19.044971,-81.575905 - 19794: -18.732471,-81.044655 - 19795: -18.451221,-81.43528 - 19796: -18.716846,-82.02903 - 19797: -18.529346,-82.52903 - 19798: -18.466846,-83.18528 - 19799: -18.248096,-83.825905 - 19800: -18.013721,-84.388405 - 19801: -17.935596,-83.18528 - 19802: -18.013721,-82.49778 - 19803: -17.919971,-82.34153 - 19804: -17.841846,-83.18528 - 19805: -17.841846,-83.325905 - 19806: -17.919971,-83.74778 - 19807: -17.701221,-83.825905 - 19808: -17.826221,-83.56028 - 19809: -17.919971,-83.107155 - 19810: -17.826221,-82.77903 - 19811: -17.685596,-82.482155 - 19812: -17.544971,-81.794655 - 19813: -17.451221,-81.49778 - 19814: -17.482471,-82.90403 - 19815: -17.544971,-83.62278 - 19816: -17.701221,-84.02903 - 19817: -17.998096,-84.607155 + 19526: -19.044971,-81.575905 + 19527: -18.732471,-81.044655 + 19528: -18.451221,-81.43528 + 19529: -18.716846,-82.02903 + 19530: -18.529346,-82.52903 + 19531: -18.466846,-83.18528 + 19532: -18.248096,-83.825905 + 19533: -18.013721,-84.388405 + 19534: -17.935596,-83.18528 + 19535: -18.013721,-82.49778 + 19536: -17.919971,-82.34153 + 19537: -17.841846,-83.18528 + 19538: -17.841846,-83.325905 + 19539: -17.919971,-83.74778 + 19540: -17.701221,-83.825905 + 19541: -17.826221,-83.56028 + 19542: -17.919971,-83.107155 + 19543: -17.826221,-82.77903 + 19544: -17.685596,-82.482155 + 19545: -17.544971,-81.794655 + 19546: -17.451221,-81.49778 + 19547: -17.482471,-82.90403 + 19548: -17.544971,-83.62278 + 19549: -17.701221,-84.02903 + 19550: -17.998096,-84.607155 - node: color: '#C7CFD0FF' id: Delivery decals: - 18905: -73,-62 - 18906: -72,-62 - 18907: -71,-62 - 18908: -75,-64 - 18909: -73,-66 - 18910: -72,-66 + 18638: -73,-62 + 18639: -72,-62 + 18640: -71,-62 + 18641: -75,-64 + 18642: -73,-66 + 18643: -72,-66 - node: angle: 1.5707963267948966 rad color: '#FEFFFFFF' id: Delivery decals: - 2117: 73,5 - 2118: 72,6 + 2070: 73,5 + 2071: 72,6 - node: color: '#FFFFFFFF' id: Delivery @@ -8851,249 +8851,249 @@ entities: 391: 59,-21 392: 59,-20 393: 59,-19 - 1211: -58,43 - 1212: -56,43 - 1213: -58,41 - 1214: -56,41 - 1485: 40,44 - 1486: 40,45 - 1487: 40,46 - 1488: 44,44 - 1489: 44,45 - 1490: 44,46 - 2046: 65,-4 - 2047: 71,-4 - 2049: 65,-2 - 2050: 71,-2 - 2051: 65,0 - 2052: 71,0 - 2055: 73,-4 - 2056: 73,-2 - 2057: 73,0 - 2058: 79,0 - 2059: 79,-2 - 2060: 79,-4 - 2325: 71,5 - 2326: 71,7 - 2327: 73,7 - 2333: 86,4 - 2334: 85,8 - 2335: 77,4 - 2336: 79,4 - 2337: 81,4 - 2338: 83,4 - 2353: 52,-6 - 2354: 57,-9 - 2355: 58,-9 - 2400: 57,-4 - 2404: 56,-3 - 2405: 57,-2 - 2406: 58,-3 - 4306: -50,12 - 4359: -51,11 - 4360: -48,11 - 4361: -45,11 - 4856: -85,42 - 4857: -79,42 - 4858: -77,45 - 4859: -82,42 - 4860: -71,43 - 4861: -71,44 - 6078: -16,-41 - 7348: 36,-58 - 7564: 43,17 - 7565: 43,18 - 7928: 24,48 - 7929: 24,47 - 7932: 79,35 - 7933: 87,35 - 7934: 75,39 - 7935: 75,47 - 7936: 79,51 - 7937: 87,51 - 7938: 91,47 - 7939: 91,39 - 8448: 48,44 - 8449: 50,45 - 8450: 53,45 - 8451: 54,44 - 8452: 49,41 - 8554: 63,49 - 8555: 66,48 - 8597: 52,44 - 8598: 49,45 - 9261: 28,-52 - 9262: 26,-51 - 9263: 26,-52 - 9264: 26,-54 - 9265: 28,-54 - 9525: 113,-54 - 9526: 113,-50 - 9527: 123,-50 - 9529: 123,-54 - 9530: 123,-64 - 9531: 123,-60 - 9532: 113,-60 - 9534: 113,-64 - 9816: 46,10 - 9817: 46,9 - 9822: 43,12 - 9902: 7,-29 - 12651: -15,-20 - 12652: -13,-20 - 12653: -16,-22 - 15610: -27,13 - 15611: -26,13 - 15612: -25,13 + 1164: -58,43 + 1165: -56,43 + 1166: -58,41 + 1167: -56,41 + 1438: 40,44 + 1439: 40,45 + 1440: 40,46 + 1441: 44,44 + 1442: 44,45 + 1443: 44,46 + 1999: 65,-4 + 2000: 71,-4 + 2002: 65,-2 + 2003: 71,-2 + 2004: 65,0 + 2005: 71,0 + 2008: 73,-4 + 2009: 73,-2 + 2010: 73,0 + 2011: 79,0 + 2012: 79,-2 + 2013: 79,-4 + 2278: 71,5 + 2279: 71,7 + 2280: 73,7 + 2286: 86,4 + 2287: 85,8 + 2288: 77,4 + 2289: 79,4 + 2290: 81,4 + 2291: 83,4 + 2306: 52,-6 + 2307: 57,-9 + 2308: 58,-9 + 2353: 57,-4 + 2357: 56,-3 + 2358: 57,-2 + 2359: 58,-3 + 4109: -50,12 + 4162: -51,11 + 4163: -48,11 + 4164: -45,11 + 4659: -85,42 + 4660: -79,42 + 4661: -77,45 + 4662: -82,42 + 4663: -71,43 + 4664: -71,44 + 5881: -16,-41 + 7081: 36,-58 + 7297: 43,17 + 7298: 43,18 + 7661: 24,48 + 7662: 24,47 + 7665: 79,35 + 7666: 87,35 + 7667: 75,39 + 7668: 75,47 + 7669: 79,51 + 7670: 87,51 + 7671: 91,47 + 7672: 91,39 + 8181: 48,44 + 8182: 50,45 + 8183: 53,45 + 8184: 54,44 + 8185: 49,41 + 8287: 63,49 + 8288: 66,48 + 8330: 52,44 + 8331: 49,45 + 8994: 28,-52 + 8995: 26,-51 + 8996: 26,-52 + 8997: 26,-54 + 8998: 28,-54 + 9258: 113,-54 + 9259: 113,-50 + 9260: 123,-50 + 9262: 123,-54 + 9263: 123,-64 + 9264: 123,-60 + 9265: 113,-60 + 9267: 113,-64 + 9549: 46,10 + 9550: 46,9 + 9555: 43,12 + 9635: 7,-29 + 12384: -15,-20 + 12385: -13,-20 + 12386: -16,-22 + 15343: -27,13 + 15344: -26,13 + 15345: -25,13 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 20012: 47,-20 + 19745: 47,-20 - node: zIndex: 1 color: '#FFFFFFFF' id: Delivery decals: - 21334: 26,-53 - 21335: 28,-53 - 21336: 28,-51 + 20565: 26,-53 + 20566: 28,-53 + 20567: 28,-51 - node: color: '#222223FF' id: DeliveryGreyscale decals: - 4362: -43,5 - 4363: -43,4 - 4364: -51,4 - 4365: -43,9 - 4366: -51,15 - 4367: -50,15 - 4368: -50,15 - 4369: -49,15 - 4370: -48,8 - 4371: -47,8 + 4165: -43,5 + 4166: -43,4 + 4167: -51,4 + 4168: -43,9 + 4169: -51,15 + 4170: -50,15 + 4171: -50,15 + 4172: -49,15 + 4173: -48,8 + 4174: -47,8 - node: color: '#52B4E9FF' id: DeliveryGreyscale decals: - 9266: 26,-53 - 9267: 28,-53 - 9268: 28,-51 + 8999: 26,-53 + 9000: 28,-53 + 9001: 28,-51 - node: color: '#9FED58FF' id: DeliveryGreyscale decals: - 1171: -57,49 - 1172: -56,49 - 1173: -55,49 - 1174: -55,48 - 1175: -56,48 - 1176: -57,48 - 1177: -52,49 - 1178: -52,48 - 1179: -51,48 - 1180: -50,48 - 1181: -50,49 - 1182: -51,49 + 1124: -57,49 + 1125: -56,49 + 1126: -55,49 + 1127: -55,48 + 1128: -56,48 + 1129: -57,48 + 1130: -52,49 + 1131: -52,48 + 1132: -51,48 + 1133: -50,48 + 1134: -50,49 + 1135: -51,49 - node: cleanable: True angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 4747: -79,24 + 4550: -79,24 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 6079: -14,-43 - 7560: 43,21 - 7561: 44,21 - 7562: 44,21 - 7563: 49,19 - 7577: 48,21 - 7578: 49,21 + 5882: -14,-43 + 7293: 43,21 + 7294: 44,21 + 7295: 44,21 + 7296: 49,19 + 7310: 48,21 + 7311: 49,21 - node: color: '#37789BFF' id: DiagonalCheckerAOverlay decals: - 7331: 35,-60 - 7332: 36,-60 - 7333: 37,-60 + 7064: 35,-60 + 7065: 36,-60 + 7066: 37,-60 - node: color: '#52B4E9FF' id: DiagonalCheckerAOverlay decals: - 14359: -6,-60 - 14360: -6,-59 - 14361: -6,-58 - 14362: -6,-52 - 14363: -6,-51 - 14364: -6,-50 - 14365: -6,-49 - 14366: -6,-48 - 14370: 6,-48 - 14371: 6,-49 - 14372: 6,-50 - 14373: 6,-51 - 14374: 6,-52 - 14375: 6,-58 - 14376: 6,-59 - 14377: 6,-60 - 14389: -20,-58 - 14390: -20,-59 - 14391: -20,-60 - 14392: -20,-61 - 14393: -20,-62 - 14394: -20,-63 + 14092: -6,-60 + 14093: -6,-59 + 14094: -6,-58 + 14095: -6,-52 + 14096: -6,-51 + 14097: -6,-50 + 14098: -6,-49 + 14099: -6,-48 + 14103: 6,-48 + 14104: 6,-49 + 14105: 6,-50 + 14106: 6,-51 + 14107: 6,-52 + 14108: 6,-58 + 14109: 6,-59 + 14110: 6,-60 + 14122: -20,-58 + 14123: -20,-59 + 14124: -20,-60 + 14125: -20,-61 + 14126: -20,-62 + 14127: -20,-63 - node: color: '#96DAFFFF' id: DiagonalCheckerAOverlay decals: - 15650: -1,-35 - 15651: -1,-36 - 15652: 0,-36 - 15653: 0,-35 - 15654: 1,-35 - 15655: 1,-36 + 15383: -1,-35 + 15384: -1,-36 + 15385: 0,-36 + 15386: 0,-35 + 15387: 1,-35 + 15388: 1,-36 - node: color: '#00000031' id: DiagonalCheckerBOverlay decals: - 5391: -11,65 - 5392: -12,65 - 5393: -12,66 - 5394: -11,66 + 5194: -11,65 + 5195: -12,65 + 5196: -12,66 + 5197: -11,66 - node: color: '#52B4E9FF' id: DiagonalCheckerBOverlay decals: - 14367: -1,-45 - 14368: 0,-45 - 14369: 1,-45 - 14378: -17,-55 - 14379: -16,-55 - 14380: -15,-55 - 14381: -14,-55 - 14382: -13,-55 - 14383: -12,-55 - 14386: -11,-55 - 14387: -10,-55 - 14388: -9,-55 - 14395: -32,-66 - 14396: -31,-66 - 14397: -30,-66 - 14398: -28,-66 - 14399: -29,-66 - 14400: -27,-66 - 14401: -25,-66 - 14402: -26,-66 - 14403: -24,-66 - 14404: -23,-66 - 16419: -1,-55 - 16420: 0,-55 - 16421: 1,-55 + 14100: -1,-45 + 14101: 0,-45 + 14102: 1,-45 + 14111: -17,-55 + 14112: -16,-55 + 14113: -15,-55 + 14114: -14,-55 + 14115: -13,-55 + 14116: -12,-55 + 14119: -11,-55 + 14120: -10,-55 + 14121: -9,-55 + 14128: -32,-66 + 14129: -31,-66 + 14130: -30,-66 + 14131: -28,-66 + 14132: -29,-66 + 14133: -27,-66 + 14134: -25,-66 + 14135: -26,-66 + 14136: -24,-66 + 14137: -23,-66 + 16152: -1,-55 + 16153: 0,-55 + 16154: 1,-55 - node: color: '#792DA9FF' id: DiagonalCheckerBOverlay @@ -9105,18 +9105,18 @@ entities: color: '#96DAFFFF' id: DiagonalCheckerBOverlay decals: - 15638: -6,-35 - 15639: -6,-36 - 15640: -5,-36 - 15641: -5,-35 - 15642: -4,-35 - 15643: -4,-36 - 15644: 4,-36 - 15645: 4,-35 - 15646: 5,-35 - 15647: 5,-36 - 15648: 6,-36 - 15649: 6,-35 + 15371: -6,-35 + 15372: -6,-36 + 15373: -5,-36 + 15374: -5,-35 + 15375: -4,-35 + 15376: -4,-36 + 15377: 4,-36 + 15378: 4,-35 + 15379: 5,-35 + 15380: 5,-36 + 15381: 6,-36 + 15382: 6,-35 - node: color: '#D381C9CC' id: DiagonalCheckerBOverlay @@ -9138,417 +9138,417 @@ entities: color: '#D381C9FF' id: DiagonalCheckerBOverlay decals: - 1760: 36,-21 - 1761: 36,-20 - 1762: 37,-20 - 1763: 43,-20 - 1764: 44,-20 - 1765: 44,-21 - 2445: 76,-41 - 2446: 76,-40 - 2447: 75,-40 - 2448: 75,-41 - 2449: 71,-41 - 2450: 71,-40 - 2451: 72,-40 - 2452: 72,-41 - 2453: 73,-41 - 2454: 73,-40 - 2455: 75,-38 - 2456: 75,-37 - 2457: 75,-36 - 2458: 76,-36 - 2459: 76,-37 - 2460: 76,-38 - 2993: 60,-48 - 2994: 61,-48 - 2995: 62,-48 - 2996: 63,-48 - 3003: 69,-27 - 3004: 69,-26 - 3005: 70,-27 - 3006: 72,-27 - 3007: 73,-27 - 3008: 73,-26 - 3009: 71,-26 - 3010: 71,-25 - 3011: 71,-24 - 3012: 70,-25 - 3013: 72,-25 - 3014: 69,-24 - 3015: 69,-23 - 3016: 70,-23 - 3017: 72,-23 - 3018: 73,-23 - 3019: 73,-24 - 3128: 69,-32 - 3129: 69,-31 - 3130: 70,-31 - 3131: 70,-32 - 3132: 71,-32 - 3133: 71,-31 - 3134: 72,-31 - 3135: 72,-32 - 3136: 73,-32 - 3137: 73,-31 - 6780: 61,-31 - 6781: 62,-31 - 6782: 63,-31 + 1713: 36,-21 + 1714: 36,-20 + 1715: 37,-20 + 1716: 43,-20 + 1717: 44,-20 + 1718: 44,-21 + 2398: 76,-41 + 2399: 76,-40 + 2400: 75,-40 + 2401: 75,-41 + 2402: 71,-41 + 2403: 71,-40 + 2404: 72,-40 + 2405: 72,-41 + 2406: 73,-41 + 2407: 73,-40 + 2408: 75,-38 + 2409: 75,-37 + 2410: 75,-36 + 2411: 76,-36 + 2412: 76,-37 + 2413: 76,-38 + 2946: 60,-48 + 2947: 61,-48 + 2948: 62,-48 + 2949: 63,-48 + 2956: 69,-27 + 2957: 69,-26 + 2958: 70,-27 + 2959: 72,-27 + 2960: 73,-27 + 2961: 73,-26 + 2962: 71,-26 + 2963: 71,-25 + 2964: 71,-24 + 2965: 70,-25 + 2966: 72,-25 + 2967: 69,-24 + 2968: 69,-23 + 2969: 70,-23 + 2970: 72,-23 + 2971: 73,-23 + 2972: 73,-24 + 3081: 69,-32 + 3082: 69,-31 + 3083: 70,-31 + 3084: 70,-32 + 3085: 71,-32 + 3086: 71,-31 + 3087: 72,-31 + 3088: 72,-32 + 3089: 73,-32 + 3090: 73,-31 + 6531: 61,-31 + 6532: 62,-31 + 6533: 63,-31 - node: color: '#0000000A' id: DiagonalOverlay decals: - 16711: -26,-89 - 16712: -25,-89 - 16713: -25,-88 - 16716: -26,-90 - 16718: -27,-90 - 16720: -27,-91 - 16721: -24,-88 - 16726: -27,-88 - 16727: -24,-91 + 16444: -26,-89 + 16445: -25,-89 + 16446: -25,-88 + 16449: -26,-90 + 16451: -27,-90 + 16453: -27,-91 + 16454: -24,-88 + 16459: -27,-88 + 16460: -24,-91 - node: color: '#0000000C' id: DiagonalOverlay decals: - 7675: -16,-59 - 7676: -15,-58 - 7677: -14,-59 - 7678: -15,-60 + 7408: -16,-59 + 7409: -15,-58 + 7410: -14,-59 + 7411: -15,-60 - node: color: '#00000012' id: DiagonalOverlay decals: - 11807: -54,-4 - 11808: -53,-4 - 11809: -52,-4 - 11810: -51,-4 - 11811: -51,-5 - 11812: -51,-6 - 11813: -51,-7 - 11814: -52,-7 - 11815: -53,-7 - 11816: -54,-7 - 11817: -54,-6 - 11818: -54,-5 + 11540: -54,-4 + 11541: -53,-4 + 11542: -52,-4 + 11543: -51,-4 + 11544: -51,-5 + 11545: -51,-6 + 11546: -51,-7 + 11547: -52,-7 + 11548: -53,-7 + 11549: -54,-7 + 11550: -54,-6 + 11551: -54,-5 - node: color: '#00000022' id: DiagonalOverlay decals: - 17923: -40,97 - 17924: -40,94 - 17925: -38,105 - 17926: -38,108 - 17927: -53,107 - 17928: -50,107 + 17656: -40,97 + 17657: -40,94 + 17658: -38,105 + 17659: -38,108 + 17660: -53,107 + 17661: -50,107 - node: color: '#00000028' id: DiagonalOverlay decals: - 6995: 18,-67 - 6996: 19,-67 - 6997: 19,-68 - 6998: 18,-68 - 9156: 9,-81 - 9157: 9,-82 - 9158: 10,-82 - 9159: 10,-81 - 9160: 11,-81 - 9161: 11,-82 + 6728: 18,-67 + 6729: 19,-67 + 6730: 19,-68 + 6731: 18,-68 + 8889: 9,-81 + 8890: 9,-82 + 8891: 10,-82 + 8892: 10,-81 + 8893: 11,-81 + 8894: 11,-82 - node: color: '#0000002B' id: DiagonalOverlay decals: - 11819: -54,-4 - 11820: -51,-4 - 11821: -51,-7 - 11822: -54,-7 - 17911: -53,107 - 17912: -50,107 - 17913: -52,107 - 17914: -51,107 - 17915: -38,108 - 17916: -38,107 - 17917: -38,106 - 17918: -38,105 - 17919: -40,97 - 17920: -40,96 - 17921: -40,95 - 17922: -40,94 + 11552: -54,-4 + 11553: -51,-4 + 11554: -51,-7 + 11555: -54,-7 + 17644: -53,107 + 17645: -50,107 + 17646: -52,107 + 17647: -51,107 + 17648: -38,108 + 17649: -38,107 + 17650: -38,106 + 17651: -38,105 + 17652: -40,97 + 17653: -40,96 + 17654: -40,95 + 17655: -40,94 - node: color: '#00000031' id: DiagonalOverlay decals: - 5395: -13,66 - 5396: -13,66 - 7666: -16,-58 - 7667: -15,-58 - 7668: -14,-58 - 7669: -14,-59 - 7670: -15,-59 - 7671: -16,-59 - 7672: -16,-60 - 7673: -15,-60 - 7674: -14,-60 - 9002: -25,-60 - 9003: -24,-60 - 9004: -24,-61 - 9005: -25,-61 - 9006: -25,-63 - 9007: -24,-63 - 9008: -24,-62 - 9009: -25,-62 + 5198: -13,66 + 5199: -13,66 + 7399: -16,-58 + 7400: -15,-58 + 7401: -14,-58 + 7402: -14,-59 + 7403: -15,-59 + 7404: -16,-59 + 7405: -16,-60 + 7406: -15,-60 + 7407: -14,-60 + 8735: -25,-60 + 8736: -24,-60 + 8737: -24,-61 + 8738: -25,-61 + 8739: -25,-63 + 8740: -24,-63 + 8741: -24,-62 + 8742: -25,-62 - node: color: '#00000034' id: DiagonalOverlay decals: - 18051: -72,76 - 18052: -71,76 - 18053: -70,76 - 18054: -69,76 - 18055: -68,76 - 18056: -68,74 - 18057: -69,74 - 18058: -70,74 - 18059: -71,74 - 18060: -72,74 - 18061: -72,75 - 18062: -71,75 - 18063: -70,75 - 18064: -69,75 - 18065: -68,75 + 17784: -72,76 + 17785: -71,76 + 17786: -70,76 + 17787: -69,76 + 17788: -68,76 + 17789: -68,74 + 17790: -69,74 + 17791: -70,74 + 17792: -71,74 + 17793: -72,74 + 17794: -72,75 + 17795: -71,75 + 17796: -70,75 + 17797: -69,75 + 17798: -68,75 - node: color: '#0000003B' id: DiagonalOverlay decals: - 6833: 19,-60 - 6834: 20,-60 - 6835: 21,-60 - 6836: 22,-60 - 6837: 23,-60 - 6838: 23,-61 - 6839: 22,-61 - 6840: 21,-61 - 6841: 20,-61 - 6842: 19,-61 - 6843: 19,-62 - 6844: 20,-62 - 6845: 21,-62 - 6846: 22,-62 - 6847: 23,-62 - 11804: -52,-4 + 6584: 19,-60 + 6585: 20,-60 + 6586: 21,-60 + 6587: 22,-60 + 6588: 23,-60 + 6589: 23,-61 + 6590: 22,-61 + 6591: 21,-61 + 6592: 20,-61 + 6593: 19,-61 + 6594: 19,-62 + 6595: 20,-62 + 6596: 21,-62 + 6597: 22,-62 + 6598: 23,-62 + 11537: -52,-4 - node: color: '#0000003E' id: DiagonalOverlay decals: - 6198: 14,-56 - 6200: 13,-55 - 6201: 14,-55 - 6202: 14,-54 - 6203: 13,-54 + 5958: 14,-56 + 5959: 13,-55 + 5960: 14,-55 + 5961: 14,-54 + 5962: 13,-54 - node: zIndex: 1 color: '#0000003F' id: DiagonalOverlay decals: - 21333: 13,-56 + 20564: 13,-56 - node: color: '#00000041' id: DiagonalOverlay decals: - 11782: -54,-4 - 11783: -53,-4 - 11784: -51,-4 - 11786: -51,-5 - 11788: -52,-5 - 11789: -53,-5 - 11790: -54,-5 - 11791: -54,-6 - 11792: -53,-6 - 11793: -52,-6 - 11794: -51,-6 - 11795: -51,-7 - 11796: -52,-7 - 11797: -53,-7 - 11798: -54,-7 + 11515: -54,-4 + 11516: -53,-4 + 11517: -51,-4 + 11519: -51,-5 + 11521: -52,-5 + 11522: -53,-5 + 11523: -54,-5 + 11524: -54,-6 + 11525: -53,-6 + 11526: -52,-6 + 11527: -51,-6 + 11528: -51,-7 + 11529: -52,-7 + 11530: -53,-7 + 11531: -54,-7 - node: color: '#0000004A' id: DiagonalOverlay decals: - 9166: 6,-78 - 9167: 7,-78 - 9168: 7,-86 - 9169: 6,-86 - 9170: 13,-86 - 9171: 14,-86 - 9172: 14,-78 - 9173: 13,-78 + 8899: 6,-78 + 8900: 7,-78 + 8901: 7,-86 + 8902: 6,-86 + 8903: 13,-86 + 8904: 14,-86 + 8905: 14,-78 + 8906: 13,-78 - node: color: '#00000050' id: DiagonalOverlay decals: - 6818: 13,-60 - 6819: 14,-60 - 6820: 15,-60 - 6821: 16,-60 - 6822: 17,-60 - 6823: 17,-61 - 6824: 16,-61 - 6825: 15,-61 - 6826: 14,-61 - 6827: 13,-61 - 6828: 13,-62 - 6829: 14,-62 - 6830: 15,-62 - 6831: 16,-62 - 6832: 17,-62 + 6569: 13,-60 + 6570: 14,-60 + 6571: 15,-60 + 6572: 16,-60 + 6573: 17,-60 + 6574: 17,-61 + 6575: 16,-61 + 6576: 15,-61 + 6577: 14,-61 + 6578: 13,-61 + 6579: 13,-62 + 6580: 14,-62 + 6581: 15,-62 + 6582: 16,-62 + 6583: 17,-62 - node: color: '#00000057' id: DiagonalOverlay decals: - 5387: -12,66 - 5388: -11,66 - 5389: -11,65 - 5390: -12,65 + 5190: -12,66 + 5191: -11,66 + 5192: -11,65 + 5193: -12,65 - node: color: '#00004A2E' id: DiagonalOverlay decals: - 16655: -27,-88 - 16656: -26,-88 - 16657: -25,-88 - 16658: -26,-89 - 16659: -27,-89 - 16660: -27,-90 + 16388: -27,-88 + 16389: -26,-88 + 16390: -25,-88 + 16391: -26,-89 + 16392: -27,-89 + 16393: -27,-90 - node: color: '#2E005719' id: DiagonalOverlay decals: - 16695: -27,-89 - 16697: -27,-88 - 16699: -26,-88 + 16428: -27,-89 + 16430: -27,-88 + 16432: -26,-88 - node: color: '#4A00004A' id: DiagonalOverlay decals: - 16664: -24,-91 - 16665: -24,-90 - 16666: -24,-89 - 16667: -25,-91 - 16668: -25,-90 - 16669: -26,-91 + 16397: -24,-91 + 16398: -24,-90 + 16399: -24,-89 + 16400: -25,-91 + 16401: -25,-90 + 16402: -26,-91 - node: color: '#4A00441B' id: DiagonalOverlay decals: - 16689: -24,-90 - 16690: -24,-91 - 16691: -25,-91 + 16422: -24,-90 + 16423: -24,-91 + 16424: -25,-91 - node: color: '#4A005A2B' id: DiagonalOverlay decals: - 16677: -27,-91 - 16678: -26,-90 - 16679: -25,-89 - 16680: -24,-88 + 16410: -27,-91 + 16411: -26,-90 + 16412: -25,-89 + 16413: -24,-88 - node: cleanable: True color: '#000000FF' id: Dirt decals: - 5932: -26,-46 - 5933: -24,-46 + 5735: -26,-46 + 5736: -24,-46 - node: cleanable: True color: '#00FF00FF' id: Dirt decals: - 5926: -26,-46 - 5927: -26,-48 - 5928: -25,-48 - 5929: -24,-48 - 5930: -20,-47 - 5931: -23,-47 + 5729: -26,-46 + 5730: -26,-48 + 5731: -25,-48 + 5732: -24,-48 + 5733: -20,-47 + 5734: -23,-47 - node: color: '#472318B5' id: Dirt decals: - 17234: -57,81 - 17235: -56,83 - 17236: -60,84 - 17237: -63,84 - 17238: -63,84 - 17239: -62,83 + 16967: -57,81 + 16968: -56,83 + 16969: -60,84 + 16970: -63,84 + 16971: -63,84 + 16972: -62,83 - node: cleanable: True angle: -0.7853981633974483 rad color: '#474F52FF' id: Dirt decals: - 2416: -76.25184,-0.83975434 - 2417: -75.82996,0.19149578 - 2418: -76.97059,1.9414957 - 2419: -76.89246,2.5352457 - 2420: -77.48621,1.5508704 - 2421: -77.45496,1.8633704 + 2369: -76.25184,-0.83975434 + 2370: -75.82996,0.19149578 + 2371: -76.97059,1.9414957 + 2372: -76.89246,2.5352457 + 2373: -77.48621,1.5508704 + 2374: -77.45496,1.8633704 - node: cleanable: True color: '#474F52FF' id: Dirt decals: - 2414: -75.68934,0.36337078 - 2415: -76.39246,-0.82412934 + 2367: -75.68934,0.36337078 + 2368: -76.39246,-0.82412934 - node: cleanable: True color: '#AEBCB789' id: Dirt decals: - 12991: -44,-61 - 12992: -47,-59 - 12993: -44,-58 - 12994: -45,-58 - 12995: -45,-57 - 13000: -46,-62 - 13001: -47,-60 - 13002: -42,-58 - 13003: -43,-57 - 13004: -41,-58 - 13005: -42,-60 - 13006: -43,-62 + 12724: -44,-61 + 12725: -47,-59 + 12726: -44,-58 + 12727: -45,-58 + 12728: -45,-57 + 12733: -46,-62 + 12734: -47,-60 + 12735: -42,-58 + 12736: -43,-57 + 12737: -41,-58 + 12738: -42,-60 + 12739: -43,-62 - node: cleanable: True color: '#AEBCB78F' id: Dirt decals: - 13009: -45,-56 - 13010: -42,-57 - 13011: -44,-58 - 13025: -74,-27 - 13056: -71,-57 - 13057: -70,-56 - 13058: -68,-58 + 12742: -45,-56 + 12743: -42,-57 + 12744: -44,-58 + 12758: -74,-27 + 12789: -71,-57 + 12790: -70,-56 + 12791: -68,-58 - node: cleanable: True color: '#AEBCB7D6' id: Dirt decals: - 13064: -72,-58 - 13065: -68,-57 - 13066: -68,-56 - 13076: -71,-58 - 13077: -71,-58 - 13078: -69,-56 - 13079: -75,-55 - 13080: -74,-55 - 13081: -77,-54 + 12797: -72,-58 + 12798: -68,-57 + 12799: -68,-56 + 12809: -71,-58 + 12810: -71,-58 + 12811: -69,-56 + 12812: -75,-55 + 12813: -74,-55 + 12814: -77,-54 - node: cleanable: True color: '#AEBCB7FF' id: Dirt decals: - 13086: -76,-55 - 13087: -74,-54 + 12819: -76,-55 + 12820: -74,-54 - node: color: '#AF936980' id: Dirt @@ -9738,1917 +9738,1917 @@ entities: color: '#C7CFD0FF' id: Dirt decals: - 18814: -76,-65 - 18815: -78,-59 - 18816: -79,-57 - 18817: -80,-54 - 18818: -74,-55 - 18819: -68,-62 - 18820: -67,-69 - 18821: -67,-69 - 18822: -70,-71 - 18823: -70,-71 - 18824: -67,-72 - 18825: -67,-72 - 18826: -65,-75 - 18827: -65,-75 - 18828: -66,-76 - 18829: -66,-76 - 18830: -68,-67 - 18831: -68,-67 - 18832: -67,-65 - 18833: -67,-64 - 18834: -70,-63 - 18835: -74,-64 - 18836: -81,-52 - 18837: -81,-52 - 18838: -81,-46 - 18839: -81,-45 - 18840: -76,-43 - 18841: -76,-43 - 18842: -75,-43 - 18843: -75,-43 - 18844: -75,-39 - 18845: -69,-37 - 18846: -65,-37 - 18847: -59,-40 - 18848: -59,-40 - 18849: -58,-47 - 18850: -58,-47 - 18851: -57,-48 - 18852: -57,-47 - 18853: -54,-46 - 18854: -53,-47 - 18855: -51,-47 - 18856: -51,-47 - 18911: -69,-64 - 18945: -54,-52 - 18946: -48,-51 - 18947: -50,-52 - 18948: -49,-52 - 18949: -50,-53 - 18950: -44,-54 - 18951: -43,-54 - 18952: -45,-54 - 18953: -45,-53 - 18954: -58,-54 - 18955: -58,-54 - 18956: -59,-55 - 18957: -59,-55 + 18547: -76,-65 + 18548: -78,-59 + 18549: -79,-57 + 18550: -80,-54 + 18551: -74,-55 + 18552: -68,-62 + 18553: -67,-69 + 18554: -67,-69 + 18555: -70,-71 + 18556: -70,-71 + 18557: -67,-72 + 18558: -67,-72 + 18559: -65,-75 + 18560: -65,-75 + 18561: -66,-76 + 18562: -66,-76 + 18563: -68,-67 + 18564: -68,-67 + 18565: -67,-65 + 18566: -67,-64 + 18567: -70,-63 + 18568: -74,-64 + 18569: -81,-52 + 18570: -81,-52 + 18571: -81,-46 + 18572: -81,-45 + 18573: -76,-43 + 18574: -76,-43 + 18575: -75,-43 + 18576: -75,-43 + 18577: -75,-39 + 18578: -69,-37 + 18579: -65,-37 + 18580: -59,-40 + 18581: -59,-40 + 18582: -58,-47 + 18583: -58,-47 + 18584: -57,-48 + 18585: -57,-47 + 18586: -54,-46 + 18587: -53,-47 + 18588: -51,-47 + 18589: -51,-47 + 18644: -69,-64 + 18678: -54,-52 + 18679: -48,-51 + 18680: -50,-52 + 18681: -49,-52 + 18682: -50,-53 + 18683: -44,-54 + 18684: -43,-54 + 18685: -45,-54 + 18686: -45,-53 + 18687: -58,-54 + 18688: -58,-54 + 18689: -59,-55 + 18690: -59,-55 - node: color: '#D9A7BAFF' id: Dirt decals: - 16775: 25,-89 - 16776: 25,-89 - 16777: 25,-89 - 16778: 25,-89 - 16779: 25,-89 - 16780: 25,-89 - 16781: 25,-89 - 16782: 25,-89 + 16508: 25,-89 + 16509: 25,-89 + 16510: 25,-89 + 16511: 25,-89 + 16512: 25,-89 + 16513: 25,-89 + 16514: 25,-89 + 16515: 25,-89 - node: color: '#E0D9DDE6' id: Dirt decals: - 19566: -34,-83 - 19567: -32,-82 - 19568: -32,-82 - 19569: -41,-80 - 19570: -41,-80 - 19571: -40,-80 - 19572: -40,-80 - 19573: -49,-79 - 19574: -49,-79 - 19575: -51,-79 - 19576: -52,-79 - 19577: -52,-79 - 19578: -54,-78 - 19579: -59,-85 - 19580: -58,-85 - 19581: -57,-85 - 19582: -52,-82 - 19583: -51,-82 - 19584: -48,-84 - 19585: -49,-84 - 19586: -55,-83 - 19587: -62,-83 - 19588: -62,-83 - 19589: -62,-84 - 19590: -61,-84 + 19299: -34,-83 + 19300: -32,-82 + 19301: -32,-82 + 19302: -41,-80 + 19303: -41,-80 + 19304: -40,-80 + 19305: -40,-80 + 19306: -49,-79 + 19307: -49,-79 + 19308: -51,-79 + 19309: -52,-79 + 19310: -52,-79 + 19311: -54,-78 + 19312: -59,-85 + 19313: -58,-85 + 19314: -57,-85 + 19315: -52,-82 + 19316: -51,-82 + 19317: -48,-84 + 19318: -49,-84 + 19319: -55,-83 + 19320: -62,-83 + 19321: -62,-83 + 19322: -62,-84 + 19323: -61,-84 - node: cleanable: True color: '#FFFFFF69' id: Dirt decals: - 10220: 12,-22 - 10221: 11,-20 - 10222: 13,-23 - 10223: 11,-24 - 10224: 11,-24 + 9953: 12,-22 + 9954: 11,-20 + 9955: 13,-23 + 9956: 11,-24 + 9957: 11,-24 - node: cleanable: True color: '#FFFFFFA1' id: Dirt decals: - 10218: 10,-23 - 10219: 9,-21 + 9951: 10,-23 + 9952: 9,-21 - node: cleanable: True angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 4744: -81,23 - 4745: -82,24 - 4746: -82,22 + 4547: -81,23 + 4548: -82,24 + 4549: -82,22 - node: color: '#FFFFFFFF' id: Dirt decals: - 2091: -55.0161,8.298229 - 2092: -55.000477,8.282604 - 2093: -55.250477,8.235729 - 2094: -55.17235,8.220104 - 2095: -54.98485,8.220104 - 2096: -55.156727,8.157604 - 2097: -55.2036,8.266979 - 2098: -55.094227,8.157604 - 2115: -54.937977,9.157604 - 2116: -55.0786,9.016979 - 7012: 41,-41 - 7013: 38,-42 - 7014: 37,-41 - 7015: 35,-40 - 7016: 34,-41 - 7017: 35,-41 - 7018: 36,-41 - 7019: 35,-45 - 7020: 34,-44 - 7021: 35,-43 - 7022: 36,-45 - 7023: 36,-47 - 7024: 35,-47 - 7025: 39,-49 - 7026: 39,-51 - 7027: 38,-51 - 7028: 38,-50 - 7029: 40,-49 - 7030: 36,-51 - 7031: 40,-46 - 7032: 41,-45 - 7033: 42,-41 - 7034: 40,-40 - 7035: 38,-41 - 7036: 37,-40 - 7037: 34,-40 - 7038: 34,-41 - 7039: 40,-37 - 7040: 39,-37 - 7041: 38,-36 - 7042: 40,-35 - 7043: 41,-38 - 7044: 39,-35 - 7045: 42,-37 - 7046: 38,-35 - 7047: 45,-46 - 7048: 45,-45 - 7049: 46,-45 - 7050: 47,-46 - 7051: 45,-43 - 7052: 45,-42 - 7053: 44,-43 - 7054: 46,-41 - 7055: 49,-43 - 7056: 49,-42 - 7057: 50,-42 - 7058: 45,-50 - 7059: 44,-49 - 7060: 45,-49 - 7061: 46,-48 - 7062: 42,-51 - 7063: 40,-50 - 7064: 41,-49 - 7065: 38,-51 - 7066: 39,-52 - 7067: 38,-52 - 7068: 36,-52 - 7069: 34,-52 - 7070: 40,-52 - 7071: 41,-50 - 7072: 39,-49 - 7073: 39,-48 - 7074: 38,-48 - 7097: 34,-47 - 7098: 35,-47 - 7099: 39,-50 - 7100: 34,-50 - 7102: 40,-48 - 7106: 41,-47 - 7107: 42,-50 - 7108: 34,-51 - 7109: 41,-44 - 7110: 39,-44 - 7111: 40,-44 - 7112: 39,-40 - 7116: 41,-36 - 7118: 44,-45 - 7119: 47,-41 - 7120: 44,-46 - 7161: 34,-48 - 7196: 46,-38 - 7197: 45,-38 - 7198: 46,-37 - 7199: 44,-48 - 7200: 45,-49 - 7201: 46,-49 - 7202: 46,-50 - 7203: 45,-50 - 7204: 44,-50 - 7205: 45,-48 - 7206: 46,-48 - 7207: 47,-45 - 7208: 47,-46 - 7209: 46,-46 - 7210: 44,-44 - 7211: 44,-43 - 7212: 45,-43 - 7213: 45,-44 - 7214: 46,-44 - 7215: 46,-45 - 7216: 47,-44 - 7217: 46,-42 - 7218: 46,-41 - 12951: 75,-16 - 12952: 75,-14 - 12953: 75,-18 - 12962: 78,-28 - 12963: 78,-27 - 12964: 78,-26 - 12965: 79,-26 - 12966: 80,-26 - 12967: 80,-27 - 12968: 80,-28 - 12969: 79,-28 - 12970: 79,-27 - 16792: 28,-92 - 16793: 28,-92 - 16794: 28,-92 - 16795: 28,-92 - 16800: 18,-91 - 16801: 18,-91 - 16802: 13,-90 - 16804: 13,-90 - 16806: 13,-89 - 16807: 13,-89 - 16808: 12,-90 - 16809: 7,-91 - 16810: 7,-91 - 16811: 5,-90 - 16812: 5,-90 - 16813: 4,-91 - 16814: 4,-91 - 16815: 4,-91 - 16816: -1,-88 - 16817: -1,-88 - 16818: -1,-89 - 16819: -1,-89 - 16820: -1,-89 - 16821: -1,-86 - 16822: -1,-86 - 16823: 0,-85 - 16824: 0,-85 - 16825: -1,-81 - 16826: -1,-81 - 16827: -1,-81 - 16828: -1,-76 - 16830: -1,-76 - 16834: 2,-79 - 16835: 2,-79 - 16836: 2,-79 - 16837: 4,-75 - 16838: 4,-75 - 16839: 5,-73 - 16840: 5,-73 - 16841: 13,-74 - 16842: 13,-74 - 16843: 13,-72 - 16844: 13,-72 + 2044: -55.0161,8.298229 + 2045: -55.000477,8.282604 + 2046: -55.250477,8.235729 + 2047: -55.17235,8.220104 + 2048: -54.98485,8.220104 + 2049: -55.156727,8.157604 + 2050: -55.2036,8.266979 + 2051: -55.094227,8.157604 + 2068: -54.937977,9.157604 + 2069: -55.0786,9.016979 + 6745: 41,-41 + 6746: 38,-42 + 6747: 37,-41 + 6748: 35,-40 + 6749: 34,-41 + 6750: 35,-41 + 6751: 36,-41 + 6752: 35,-45 + 6753: 34,-44 + 6754: 35,-43 + 6755: 36,-45 + 6756: 36,-47 + 6757: 35,-47 + 6758: 39,-49 + 6759: 39,-51 + 6760: 38,-51 + 6761: 38,-50 + 6762: 40,-49 + 6763: 36,-51 + 6764: 40,-46 + 6765: 41,-45 + 6766: 42,-41 + 6767: 40,-40 + 6768: 38,-41 + 6769: 37,-40 + 6770: 34,-40 + 6771: 34,-41 + 6772: 40,-37 + 6773: 39,-37 + 6774: 38,-36 + 6775: 40,-35 + 6776: 41,-38 + 6777: 39,-35 + 6778: 42,-37 + 6779: 38,-35 + 6780: 45,-46 + 6781: 45,-45 + 6782: 46,-45 + 6783: 47,-46 + 6784: 45,-43 + 6785: 45,-42 + 6786: 44,-43 + 6787: 46,-41 + 6788: 49,-43 + 6789: 49,-42 + 6790: 50,-42 + 6791: 45,-50 + 6792: 44,-49 + 6793: 45,-49 + 6794: 46,-48 + 6795: 42,-51 + 6796: 40,-50 + 6797: 41,-49 + 6798: 38,-51 + 6799: 39,-52 + 6800: 38,-52 + 6801: 36,-52 + 6802: 34,-52 + 6803: 40,-52 + 6804: 41,-50 + 6805: 39,-49 + 6806: 39,-48 + 6807: 38,-48 + 6830: 34,-47 + 6831: 35,-47 + 6832: 39,-50 + 6833: 34,-50 + 6835: 40,-48 + 6839: 41,-47 + 6840: 42,-50 + 6841: 34,-51 + 6842: 41,-44 + 6843: 39,-44 + 6844: 40,-44 + 6845: 39,-40 + 6849: 41,-36 + 6851: 44,-45 + 6852: 47,-41 + 6853: 44,-46 + 6894: 34,-48 + 6929: 46,-38 + 6930: 45,-38 + 6931: 46,-37 + 6932: 44,-48 + 6933: 45,-49 + 6934: 46,-49 + 6935: 46,-50 + 6936: 45,-50 + 6937: 44,-50 + 6938: 45,-48 + 6939: 46,-48 + 6940: 47,-45 + 6941: 47,-46 + 6942: 46,-46 + 6943: 44,-44 + 6944: 44,-43 + 6945: 45,-43 + 6946: 45,-44 + 6947: 46,-44 + 6948: 46,-45 + 6949: 47,-44 + 6950: 46,-42 + 6951: 46,-41 + 12684: 75,-16 + 12685: 75,-14 + 12686: 75,-18 + 12695: 78,-28 + 12696: 78,-27 + 12697: 78,-26 + 12698: 79,-26 + 12699: 80,-26 + 12700: 80,-27 + 12701: 80,-28 + 12702: 79,-28 + 12703: 79,-27 + 16525: 28,-92 + 16526: 28,-92 + 16527: 28,-92 + 16528: 28,-92 + 16533: 18,-91 + 16534: 18,-91 + 16535: 13,-90 + 16537: 13,-90 + 16539: 13,-89 + 16540: 13,-89 + 16541: 12,-90 + 16542: 7,-91 + 16543: 7,-91 + 16544: 5,-90 + 16545: 5,-90 + 16546: 4,-91 + 16547: 4,-91 + 16548: 4,-91 + 16549: -1,-88 + 16550: -1,-88 + 16551: -1,-89 + 16552: -1,-89 + 16553: -1,-89 + 16554: -1,-86 + 16555: -1,-86 + 16556: 0,-85 + 16557: 0,-85 + 16558: -1,-81 + 16559: -1,-81 + 16560: -1,-81 + 16561: -1,-76 + 16563: -1,-76 + 16567: 2,-79 + 16568: 2,-79 + 16569: 2,-79 + 16570: 4,-75 + 16571: 4,-75 + 16572: 5,-73 + 16573: 5,-73 + 16574: 13,-74 + 16575: 13,-74 + 16576: 13,-72 + 16577: 13,-72 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 4742: -82,24 - 4743: -81,23 - 7231: -12,-52 - 7232: -10,-52 - 7233: -9,-52 - 7234: -9,-50 - 7235: -10,-50 - 7236: -10,-49 - 7237: -12,-49 - 7238: -12,-50 - 7239: -13,-50 - 7240: -13,-52 - 7251: -12,-53 - 7252: -10,-53 - 9794: 83,-26 - 9795: 82,-23 - 9796: 85,-27 - 9797: 85,-20 - 10214: 13,-21 - 10215: 9,-20 - 10216: 9,-23 - 10217: 12,-23 - 18138: -59,76 - 18139: -59,77 - 18144: -62,69 - 18147: -63,69 - 18158: -61,70 - 20134: -6,-75 + 4545: -82,24 + 4546: -81,23 + 6964: -12,-52 + 6965: -10,-52 + 6966: -9,-52 + 6967: -9,-50 + 6968: -10,-50 + 6969: -10,-49 + 6970: -12,-49 + 6971: -12,-50 + 6972: -13,-50 + 6973: -13,-52 + 6984: -12,-53 + 6985: -10,-53 + 9527: 83,-26 + 9528: 82,-23 + 9529: 85,-27 + 9530: 85,-20 + 9947: 13,-21 + 9948: 9,-20 + 9949: 9,-23 + 9950: 12,-23 + 17871: -59,76 + 17872: -59,77 + 17877: -62,69 + 17880: -63,69 + 17891: -61,70 + 19867: -6,-75 - node: zIndex: 60 color: '#FFFFFFFF' id: Dirt decals: - 15843: -83,36 - 15844: -84,30 - 15845: -83,26 - 15846: -84,26 - 15847: -86,24 - 15848: -87,23 - 15849: -85,20 - 15850: -79,26 - 15851: -77,27 - 15852: -76,27 - 15853: -73,28 - 15854: -74,27 - 15855: -70,29 - 15856: -69,28 - 15857: -68,28 - 15858: -66,27 - 15859: -65,30 - 15860: -66,30 - 15861: -63,32 - 15862: -60,34 - 15863: -61,35 - 15864: -61,36 - 15865: -60,38 - 15866: -61,40 - 15867: -62,43 - 15868: -65,46 - 15869: -65,48 - 15870: -69,46 - 15871: -68,42 - 15916: -91,15 - 15917: -91,15 - 15918: -91,17 - 15919: -90,20 - 15920: -90,21 + 15576: -83,36 + 15577: -84,30 + 15578: -83,26 + 15579: -84,26 + 15580: -86,24 + 15581: -87,23 + 15582: -85,20 + 15583: -79,26 + 15584: -77,27 + 15585: -76,27 + 15586: -73,28 + 15587: -74,27 + 15588: -70,29 + 15589: -69,28 + 15590: -68,28 + 15591: -66,27 + 15592: -65,30 + 15593: -66,30 + 15594: -63,32 + 15595: -60,34 + 15596: -61,35 + 15597: -61,36 + 15598: -60,38 + 15599: -61,40 + 15600: -62,43 + 15601: -65,46 + 15602: -65,48 + 15603: -69,46 + 15604: -68,42 + 15649: -91,15 + 15650: -91,15 + 15651: -91,17 + 15652: -90,20 + 15653: -90,21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 2099: -55.219227,8.313854 - 2100: -54.7661,8.204479 - 2101: -54.7036,8.220104 - 2102: -55.187977,8.173229 - 2103: -54.625477,7.938854 - 2104: -54.3911,8.438854 - 2105: -54.469227,8.298229 - 2106: -55.406727,8.438854 - 2107: -55.3911,8.438854 - 2108: -55.156727,9.063854 - 2109: -54.8911,9.048229 - 2110: -54.844227,8.360729 - 2111: -55.250477,9.595104 - 2112: -55.35985,8.751354 - 2113: -54.6411,9.251354 - 2114: -55.29735,9.141979 + 2052: -55.219227,8.313854 + 2053: -54.7661,8.204479 + 2054: -54.7036,8.220104 + 2055: -55.187977,8.173229 + 2056: -54.625477,7.938854 + 2057: -54.3911,8.438854 + 2058: -54.469227,8.298229 + 2059: -55.406727,8.438854 + 2060: -55.3911,8.438854 + 2061: -55.156727,9.063854 + 2062: -54.8911,9.048229 + 2063: -54.844227,8.360729 + 2064: -55.250477,9.595104 + 2065: -55.35985,8.751354 + 2066: -54.6411,9.251354 + 2067: -55.29735,9.141979 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 18145: -62,69 - 18146: -66,69 + 17878: -62,69 + 17879: -66,69 - node: color: '#000000FF' id: DirtHeavy decals: - 12979: 79,-28 - 12980: 80,-27 - 12981: 80,-26 + 12712: 79,-28 + 12713: 80,-27 + 12714: 80,-26 - node: color: '#472318B5' id: DirtHeavy decals: - 17232: -58,79 + 16965: -58,79 - node: cleanable: True color: '#474F52FF' id: DirtHeavy decals: - 2407: -75,0 + 2360: -75,0 - node: cleanable: True color: '#AEBCB7C0' id: DirtHeavy decals: - 13007: -46,-62 - 13008: -47,-57 + 12740: -46,-62 + 12741: -47,-57 - node: cleanable: True color: '#AEBCB7D6' id: DirtHeavy decals: - 13060: -70,-58 - 13061: -72,-56 - 13062: -68,-56 + 12793: -70,-58 + 12794: -72,-56 + 12795: -68,-56 - node: color: '#C7CFD0E9' id: DirtHeavy decals: - 18743: -70,-23 + 18476: -70,-23 - node: color: '#C7CFD0FF' id: DirtHeavy decals: - 18751: -67,-32 - 18752: -67,-33 - 18763: -81,-49 - 18767: -80,-56 - 18768: -80,-56 - 18769: -81,-55 - 18789: -70,-69 - 18790: -69,-68 - 18791: -75,-67 - 18792: -76,-67 - 18793: -77,-64 - 18867: -58,-47 - 18868: -56,-46 - 18869: -57,-48 - 18881: -70,-37 - 18882: -70,-37 - 18887: -80,-54 - 18895: -71,-69 - 18896: -71,-69 - 18912: -53,-48 - 18913: -53,-48 - 18938: -59,-54 - 18939: -58,-54 - 18940: -53,-53 - 18941: -53,-52 - 18942: -52,-52 - 18943: -49,-53 - 18944: -46,-53 - 18958: -63,-57 - 18959: -62,-56 - 18960: -60,-56 - 18961: -61,-56 - 18962: -63,-57 - 18963: -63,-58 - 18964: -65,-59 - 18965: -64,-61 - 18966: -64,-61 - 18967: -63,-60 + 18484: -67,-32 + 18485: -67,-33 + 18496: -81,-49 + 18500: -80,-56 + 18501: -80,-56 + 18502: -81,-55 + 18522: -70,-69 + 18523: -69,-68 + 18524: -75,-67 + 18525: -76,-67 + 18526: -77,-64 + 18600: -58,-47 + 18601: -56,-46 + 18602: -57,-48 + 18614: -70,-37 + 18615: -70,-37 + 18620: -80,-54 + 18628: -71,-69 + 18629: -71,-69 + 18645: -53,-48 + 18646: -53,-48 + 18671: -59,-54 + 18672: -58,-54 + 18673: -53,-53 + 18674: -53,-52 + 18675: -52,-52 + 18676: -49,-53 + 18677: -46,-53 + 18691: -63,-57 + 18692: -62,-56 + 18693: -60,-56 + 18694: -61,-56 + 18695: -63,-57 + 18696: -63,-58 + 18697: -65,-59 + 18698: -64,-61 + 18699: -64,-61 + 18700: -63,-60 - node: color: '#E0D9DDE6' id: DirtHeavy decals: - 19505: -54,-78 - 19506: -52,-79 - 19507: -49,-79 - 19508: -49,-79 - 19509: -42,-80 - 19510: -42,-79 - 19511: -41,-79 - 19512: -38,-80 - 19513: -37,-80 - 19514: -42,-76 - 19515: -42,-74 - 19516: -41,-72 - 19517: -42,-71 - 19564: -32,-81 - 19565: -33,-82 + 19238: -54,-78 + 19239: -52,-79 + 19240: -49,-79 + 19241: -49,-79 + 19242: -42,-80 + 19243: -42,-79 + 19244: -41,-79 + 19245: -38,-80 + 19246: -37,-80 + 19247: -42,-76 + 19248: -42,-74 + 19249: -41,-72 + 19250: -42,-71 + 19297: -32,-81 + 19298: -33,-82 - node: color: '#FFBE00FF' id: DirtHeavy decals: - 7567: 43,15 - 7568: 44,16 + 7300: 43,15 + 7301: 44,16 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 6049: -21,-44 - 6050: -21,-44 - 6051: -16,-44 - 6052: -15,-44 - 6053: -15,-43 - 6062: -20.000654,-42.506775 - 6063: -20.000654,-42.506775 - 6064: -18.001959,-42.482758 - 6065: -18.001959,-42.482758 - 7506: 36,19 - 7507: 37,23 - 7508: 36,21 - 7509: 33,22 - 7510: 34,24 - 7511: 37,20 - 7566: 48,17 - 12949: 76,-17 - 12950: 74,-18 - 12961: 76,-14 - 19427: -61,-84 - 19428: -61,-84 - 19429: -62,-83 - 19430: -57,-84 - 19431: -58,-84 - 19432: -54,-82 - 19433: -54,-82 - 19434: -53,-83 - 19435: -53,-83 - 19436: -49,-84 - 19437: -49,-83 - 19438: -49,-82 - 19619: -30,-81 - 19620: -30,-81 - 19621: -24,-81 - 19622: -24,-81 - 19623: -29,-82 - 19624: -23,-83 + 5852: -21,-44 + 5853: -21,-44 + 5854: -16,-44 + 5855: -15,-44 + 5856: -15,-43 + 5865: -20.000654,-42.506775 + 5866: -20.000654,-42.506775 + 5867: -18.001959,-42.482758 + 5868: -18.001959,-42.482758 + 7239: 36,19 + 7240: 37,23 + 7241: 36,21 + 7242: 33,22 + 7243: 34,24 + 7244: 37,20 + 7299: 48,17 + 12682: 76,-17 + 12683: 74,-18 + 12694: 76,-14 + 19160: -61,-84 + 19161: -61,-84 + 19162: -62,-83 + 19163: -57,-84 + 19164: -58,-84 + 19165: -54,-82 + 19166: -54,-82 + 19167: -53,-83 + 19168: -53,-83 + 19169: -49,-84 + 19170: -49,-83 + 19171: -49,-82 + 19352: -30,-81 + 19353: -30,-81 + 19354: -24,-81 + 19355: -24,-81 + 19356: -29,-82 + 19357: -23,-83 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 4376: -44,8 - 4381: -45,10 - 4394: -57,31 - 4396: -56,33 - 4419: -48,38 - 4423: -51,31 - 4425: -50,34 - 4426: -51,33 - 4428: -54,38 - 5513: -73,-50 - 5517: -72,-46 - 5518: -72,-46 - 5519: -67,-42 - 5520: -66,-40 - 5521: -65,-42 - 5522: -64,-43 - 5523: -64,-44 - 5524: -66,-45 - 5525: -67,-44 - 5526: -61,-44 - 5527: -61,-44 - 5528: -61,-45 - 5529: -61,-45 - 5905: -20,-46 - 5906: -20,-48 - 5918: -22,-46 - 5919: -22,-46 - 5925: -23.523897,-46.50596 - 7241: -12,-52 - 7242: -13,-52 - 7243: -13,-50 - 7244: -12,-50 - 7245: -12,-49 - 7246: -10,-49 - 7247: -10,-50 - 7248: -9,-50 - 7249: -9,-52 - 7250: -10,-52 - 9798: 84,-28 - 9799: 86,-24 - 9808: 83,-23 - 9809: 87,-23 - 9810: 87,-23 - 9811: 83,-20 - 9812: 84,-27 - 9813: 84,-27 - 17929: -53,100 - 17930: -53,100 - 17947: -37,100 - 17948: -41,99 - 17949: -46,100 - 17958: -47,108 - 17959: -46,108 - 17960: -45,107 - 17971: -45,104 - 17972: -48,102 - 17974: -57,99 - 17975: -56,99 - 17976: -55,96 - 17977: -55,97 - 17978: -57,95 - 17979: -56,95 - 17987: -53,93 - 18148: -60,77 - 18152: -62,69 - 20123: -18,-76 - 20129: -10,-75 - 20132: -6,-78 - 20135: -6,-75 - 20136: -6,-75 + 4179: -44,8 + 4184: -45,10 + 4197: -57,31 + 4199: -56,33 + 4222: -48,38 + 4226: -51,31 + 4228: -50,34 + 4229: -51,33 + 4231: -54,38 + 5316: -73,-50 + 5320: -72,-46 + 5321: -72,-46 + 5322: -67,-42 + 5323: -66,-40 + 5324: -65,-42 + 5325: -64,-43 + 5326: -64,-44 + 5327: -66,-45 + 5328: -67,-44 + 5329: -61,-44 + 5330: -61,-44 + 5331: -61,-45 + 5332: -61,-45 + 5708: -20,-46 + 5709: -20,-48 + 5721: -22,-46 + 5722: -22,-46 + 5728: -23.523897,-46.50596 + 6974: -12,-52 + 6975: -13,-52 + 6976: -13,-50 + 6977: -12,-50 + 6978: -12,-49 + 6979: -10,-49 + 6980: -10,-50 + 6981: -9,-50 + 6982: -9,-52 + 6983: -10,-52 + 9531: 84,-28 + 9532: 86,-24 + 9541: 83,-23 + 9542: 87,-23 + 9543: 87,-23 + 9544: 83,-20 + 9545: 84,-27 + 9546: 84,-27 + 17662: -53,100 + 17663: -53,100 + 17680: -37,100 + 17681: -41,99 + 17682: -46,100 + 17691: -47,108 + 17692: -46,108 + 17693: -45,107 + 17704: -45,104 + 17705: -48,102 + 17707: -57,99 + 17708: -56,99 + 17709: -55,96 + 17710: -55,97 + 17711: -57,95 + 17712: -56,95 + 17720: -53,93 + 17881: -60,77 + 17885: -62,69 + 19856: -18,-76 + 19862: -10,-75 + 19865: -6,-78 + 19868: -6,-75 + 19869: -6,-75 - node: zIndex: 60 color: '#FFFFFFFF' id: DirtHeavy decals: - 15872: -71,39 - 15877: -89,40 - 15878: -89,41 - 15879: -90,41 - 15880: -88,39 - 15881: -88,39 - 15899: -81,26 - 15900: -84,26 - 15901: -87,23 + 15605: -71,39 + 15610: -89,40 + 15611: -89,41 + 15612: -90,41 + 15613: -88,39 + 15614: -88,39 + 15632: -81,26 + 15633: -84,26 + 15634: -87,23 - node: color: '#472318B5' id: DirtHeavyMonotile decals: - 17230: -64,80 - 17231: -58,80 - 17240: -63,84 - 17241: -63,84 - 17247: -50,84 - 17248: -50,84 - 17249: -50,84 - 17250: -45,84 - 17251: -45,84 - 17252: -44,80 - 17253: -41,81 - 17254: -41,81 - 17255: -41,81 + 16963: -64,80 + 16964: -58,80 + 16973: -63,84 + 16974: -63,84 + 16980: -50,84 + 16981: -50,84 + 16982: -50,84 + 16983: -45,84 + 16984: -45,84 + 16985: -44,80 + 16986: -41,81 + 16987: -41,81 + 16988: -41,81 - node: cleanable: True color: '#AEBCB789' id: DirtHeavyMonotile decals: - 12996: -43,-58 - 12997: -44,-61 - 12998: -42,-62 - 12999: -42,-61 + 12729: -43,-58 + 12730: -44,-61 + 12731: -42,-62 + 12732: -42,-61 - node: color: '#C7CFD0E9' id: DirtHeavyMonotile decals: - 18744: -70,-22 - 18745: -70,-22 + 18477: -70,-22 + 18478: -70,-22 - node: color: '#C7CFD0FF' id: DirtHeavyMonotile decals: - 18753: -69,-37 - 18754: -62,-38 - 18755: -62,-38 - 18756: -69,-37 - 18757: -76,-43 - 18758: -79,-44 - 18759: -81,-46 - 18760: -81,-50 - 18761: -81,-50 - 18762: -81,-52 - 18770: -80,-55 - 18781: -77,-64 - 18782: -73,-60 - 18783: -67,-67 - 18784: -67,-65 - 18785: -68,-68 - 18786: -69,-69 - 18787: -68,-69 - 18788: -67,-69 - 18812: -74,-69 - 18813: -74,-69 - 18857: -51,-47 - 18862: -48,-48 - 18863: -48,-47 - 18864: -48,-49 - 18870: -58,-47 - 18871: -59,-48 - 18879: -70,-37 - 18880: -70,-37 - 18888: -73,-61 - 18889: -74,-61 - 18890: -76,-61 - 18891: -76,-61 - 18894: -77,-67 - 18901: -73,-71 - 18902: -72,-71 - 18903: -68,-72 - 18914: -53,-48 - 18929: -51,-51 - 18930: -51,-52 - 18931: -51,-53 - 18932: -49,-52 - 18933: -46,-52 - 18934: -44,-54 - 18935: -43,-54 - 18936: -49,-53 - 18937: -53,-53 - 18968: -65,-61 - 18969: -64,-61 - 18970: -64,-58 - 18971: -63,-57 - 18972: -61,-56 - 18973: -60,-55 - 18974: -59,-55 - 18975: -62,-58 - 18976: -64,-60 + 18486: -69,-37 + 18487: -62,-38 + 18488: -62,-38 + 18489: -69,-37 + 18490: -76,-43 + 18491: -79,-44 + 18492: -81,-46 + 18493: -81,-50 + 18494: -81,-50 + 18495: -81,-52 + 18503: -80,-55 + 18514: -77,-64 + 18515: -73,-60 + 18516: -67,-67 + 18517: -67,-65 + 18518: -68,-68 + 18519: -69,-69 + 18520: -68,-69 + 18521: -67,-69 + 18545: -74,-69 + 18546: -74,-69 + 18590: -51,-47 + 18595: -48,-48 + 18596: -48,-47 + 18597: -48,-49 + 18603: -58,-47 + 18604: -59,-48 + 18612: -70,-37 + 18613: -70,-37 + 18621: -73,-61 + 18622: -74,-61 + 18623: -76,-61 + 18624: -76,-61 + 18627: -77,-67 + 18634: -73,-71 + 18635: -72,-71 + 18636: -68,-72 + 18647: -53,-48 + 18662: -51,-51 + 18663: -51,-52 + 18664: -51,-53 + 18665: -49,-52 + 18666: -46,-52 + 18667: -44,-54 + 18668: -43,-54 + 18669: -49,-53 + 18670: -53,-53 + 18701: -65,-61 + 18702: -64,-61 + 18703: -64,-58 + 18704: -63,-57 + 18705: -61,-56 + 18706: -60,-55 + 18707: -59,-55 + 18708: -62,-58 + 18709: -64,-60 - node: color: '#E0D9DDE6' id: DirtHeavyMonotile decals: - 19518: -42,-71 - 19519: -42,-73 - 19520: -42,-75 - 19521: -42,-77 - 19522: -42,-79 - 19523: -41,-79 - 19524: -40,-79 - 19525: -38,-80 - 19526: -36,-79 - 19527: -35,-80 - 19528: -33,-81 - 19529: -33,-82 - 19530: -42,-79 - 19531: -44,-79 - 19532: -47,-80 - 19533: -48,-79 - 19534: -50,-79 - 19535: -50,-79 - 19536: -52,-80 + 19251: -42,-71 + 19252: -42,-73 + 19253: -42,-75 + 19254: -42,-77 + 19255: -42,-79 + 19256: -41,-79 + 19257: -40,-79 + 19258: -38,-80 + 19259: -36,-79 + 19260: -35,-80 + 19261: -33,-81 + 19262: -33,-82 + 19263: -42,-79 + 19264: -44,-79 + 19265: -47,-80 + 19266: -48,-79 + 19267: -50,-79 + 19268: -50,-79 + 19269: -52,-80 - node: zIndex: 90 color: '#FF0000FF' id: DirtHeavyMonotile decals: - 12893: 79,-52 - 12894: 79,-52 + 12626: 79,-52 + 12627: 79,-52 - node: color: '#FFBE00FF' id: DirtHeavyMonotile decals: - 7571: 43,20 - 7572: 49,20 - 7573: 48,19 - 7574: 45,18 + 7304: 43,20 + 7305: 49,20 + 7306: 48,19 + 7307: 45,18 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 6046: -17,-43 - 6047: -20,-41 - 6048: -20,-41 - 6061: -20.016281,-43.99115 - 6066: -17.970709,-43.451508 - 6067: -18.001959,-43.435883 - 7997: 44,30 - 12954: 77,-18 - 12956: 75,-17 - 12957: 76,-16 - 12958: 74,-15 - 19439: -50,-84 - 19440: -49,-83 - 19441: -49,-83 - 19442: -60,-84 - 19443: -63,-84 - 19444: -63,-84 - 19452: -58,-82 - 19453: -57,-82 - 19454: -57,-82 - 19455: -57,-85 - 19456: -58,-86 - 19457: -58,-86 - 19458: -54,-83 - 19641: -21,-87 - 19642: -20,-88 - 19643: -18,-86 - 19644: -19,-86 - 19645: -22,-85 - 19646: -21,-87 - 19647: -20,-88 - 19648: -18,-88 - 19649: -17,-88 - 19650: -17,-86 - 19651: -19,-87 - 19652: -21,-88 - 19653: -21,-88 + 5849: -17,-43 + 5850: -20,-41 + 5851: -20,-41 + 5864: -20.016281,-43.99115 + 5869: -17.970709,-43.451508 + 5870: -18.001959,-43.435883 + 7730: 44,30 + 12687: 77,-18 + 12689: 75,-17 + 12690: 76,-16 + 12691: 74,-15 + 19172: -50,-84 + 19173: -49,-83 + 19174: -49,-83 + 19175: -60,-84 + 19176: -63,-84 + 19177: -63,-84 + 19185: -58,-82 + 19186: -57,-82 + 19187: -57,-82 + 19188: -57,-85 + 19189: -58,-86 + 19190: -58,-86 + 19191: -54,-83 + 19374: -21,-87 + 19375: -20,-88 + 19376: -18,-86 + 19377: -19,-86 + 19378: -22,-85 + 19379: -21,-87 + 19380: -20,-88 + 19381: -18,-88 + 19382: -17,-88 + 19383: -17,-86 + 19384: -19,-87 + 19385: -21,-88 + 19386: -21,-88 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2408: -75,2 - 4377: -46,7 - 4422: -48,34 - 4424: -48,30 - 4427: -51,39 - 5514: -74,-51 - 5530: -61,-45 - 5903: -26,-46 - 5904: -25,-46 - 5913: -20,-46 - 5914: -25,-48 - 5915: -24,-47 - 5916: -25,-47 - 5917: -25,-47 - 5924: -23.992647,-46.50596 - 9800: 84,-20 - 9801: 83,-24 - 9804: 86,-21 - 9805: 83,-25 - 9806: 83,-23 - 9807: 83,-23 - 17935: -52,96 - 17936: -51,97 - 17939: -47,100 - 17940: -46,100 - 17941: -44,100 - 17942: -42,99 - 17943: -41,99 - 17944: -38,102 - 17945: -38,101 - 17946: -37,100 - 17955: -48,103 - 17956: -47,102 - 17957: -45,105 - 17968: -48,103 - 17969: -46,102 - 17970: -44,103 - 17980: -57,95 - 17981: -55,97 - 17984: -52,91 - 17985: -53,91 - 17986: -51,92 - 17991: -46,99 - 17992: -37,103 - 18149: -59,77 - 18150: -62,70 - 18151: -66,69 + 2361: -75,2 + 4180: -46,7 + 4225: -48,34 + 4227: -48,30 + 4230: -51,39 + 5317: -74,-51 + 5333: -61,-45 + 5706: -26,-46 + 5707: -25,-46 + 5716: -20,-46 + 5717: -25,-48 + 5718: -24,-47 + 5719: -25,-47 + 5720: -25,-47 + 5727: -23.992647,-46.50596 + 9533: 84,-20 + 9534: 83,-24 + 9537: 86,-21 + 9538: 83,-25 + 9539: 83,-23 + 9540: 83,-23 + 17668: -52,96 + 17669: -51,97 + 17672: -47,100 + 17673: -46,100 + 17674: -44,100 + 17675: -42,99 + 17676: -41,99 + 17677: -38,102 + 17678: -38,101 + 17679: -37,100 + 17688: -48,103 + 17689: -47,102 + 17690: -45,105 + 17701: -48,103 + 17702: -46,102 + 17703: -44,103 + 17713: -57,95 + 17714: -55,97 + 17717: -52,91 + 17718: -53,91 + 17719: -51,92 + 17724: -46,99 + 17725: -37,103 + 17882: -59,77 + 17883: -62,70 + 17884: -66,69 - node: zIndex: 60 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 15873: -73,38 - 15874: -72,38 - 15884: -89,44 - 15885: -89,45 - 15893: -87,23 - 15894: -85,24 - 15895: -85,25 - 15896: -84,26 - 15897: -81,26 - 15898: -80,26 - 15914: -90,17 - 15915: -90,17 + 15606: -73,38 + 15607: -72,38 + 15617: -89,44 + 15618: -89,45 + 15626: -87,23 + 15627: -85,24 + 15628: -85,25 + 15629: -84,26 + 15630: -81,26 + 15631: -80,26 + 15647: -90,17 + 15648: -90,17 - node: color: '#000000FF' id: DirtLight decals: - 12975: 78,-27 - 12976: 80,-27 - 12977: 79,-26 - 12978: 80,-28 + 12708: 78,-27 + 12709: 80,-27 + 12710: 79,-26 + 12711: 80,-28 - node: color: '#472318B5' id: DirtLight decals: - 17233: -58,79 - 17242: -63,84 - 17243: -62,85 - 17244: -62,85 + 16966: -58,79 + 16975: -63,84 + 16976: -62,85 + 16977: -62,85 - node: cleanable: True color: '#AEBCB7D6' id: DirtLight decals: - 13082: -74,-56 - 13083: -76,-54 + 12815: -74,-56 + 12816: -76,-54 - node: cleanable: True color: '#AEBCB7FF' id: DirtLight decals: - 13084: -77,-54 - 13085: -75,-56 + 12817: -77,-54 + 12818: -75,-56 - node: color: '#C7CFD0FF' id: DirtLight decals: - 18746: -70,-26 - 18747: -70,-28 - 18748: -67,-31 - 18749: -67,-31 - 18750: -67,-32 - 18764: -81,-50 - 18765: -81,-51 - 18766: -81,-51 - 18794: -77,-65 - 18795: -77,-65 - 18796: -78,-61 - 18797: -77,-60 - 18798: -78,-59 - 18799: -79,-60 - 18800: -78,-60 - 18801: -71,-61 - 18802: -70,-60 - 18803: -67,-62 - 18804: -67,-66 - 18805: -69,-69 - 18806: -67,-69 - 18807: -68,-69 - 18808: -74,-69 - 18809: -73,-69 - 18810: -73,-69 - 18811: -74,-69 - 18865: -47,-48 - 18866: -47,-48 - 18872: -59,-48 - 18873: -59,-48 - 18874: -56,-47 - 18875: -56,-47 - 18876: -58,-46 - 18877: -59,-40 - 18878: -59,-40 - 18885: -75,-39 - 18886: -75,-39 - 18899: -72,-70 - 18900: -72,-70 - 18915: -51,-51 - 18916: -51,-51 - 18917: -50,-53 - 18918: -53,-54 - 18919: -48,-52 - 18920: -46,-53 - 18921: -45,-54 - 18922: -44,-54 - 18923: -46,-53 - 18924: -49,-53 - 18925: -51,-54 - 18926: -50,-53 - 18927: -50,-52 - 18928: -52,-52 - 18985: -61,-55 - 18986: -62,-55 - 18987: -63,-57 - 18988: -65,-58 - 18989: -57,-53 - 18990: -58,-51 - 18991: -53,-52 - 18992: -49,-52 - 18993: -49,-53 - 18994: -52,-53 - 18995: -55,-53 - 18996: -52,-54 - 18997: -49,-53 - 18998: -49,-52 - 18999: -52,-53 - 19000: -49,-52 - 19001: -46,-52 - 19002: -46,-53 - 19003: -44,-54 + 18479: -70,-26 + 18480: -70,-28 + 18481: -67,-31 + 18482: -67,-31 + 18483: -67,-32 + 18497: -81,-50 + 18498: -81,-51 + 18499: -81,-51 + 18527: -77,-65 + 18528: -77,-65 + 18529: -78,-61 + 18530: -77,-60 + 18531: -78,-59 + 18532: -79,-60 + 18533: -78,-60 + 18534: -71,-61 + 18535: -70,-60 + 18536: -67,-62 + 18537: -67,-66 + 18538: -69,-69 + 18539: -67,-69 + 18540: -68,-69 + 18541: -74,-69 + 18542: -73,-69 + 18543: -73,-69 + 18544: -74,-69 + 18598: -47,-48 + 18599: -47,-48 + 18605: -59,-48 + 18606: -59,-48 + 18607: -56,-47 + 18608: -56,-47 + 18609: -58,-46 + 18610: -59,-40 + 18611: -59,-40 + 18618: -75,-39 + 18619: -75,-39 + 18632: -72,-70 + 18633: -72,-70 + 18648: -51,-51 + 18649: -51,-51 + 18650: -50,-53 + 18651: -53,-54 + 18652: -48,-52 + 18653: -46,-53 + 18654: -45,-54 + 18655: -44,-54 + 18656: -46,-53 + 18657: -49,-53 + 18658: -51,-54 + 18659: -50,-53 + 18660: -50,-52 + 18661: -52,-52 + 18718: -61,-55 + 18719: -62,-55 + 18720: -63,-57 + 18721: -65,-58 + 18722: -57,-53 + 18723: -58,-51 + 18724: -53,-52 + 18725: -49,-52 + 18726: -49,-53 + 18727: -52,-53 + 18728: -55,-53 + 18729: -52,-54 + 18730: -49,-53 + 18731: -49,-52 + 18732: -52,-53 + 18733: -49,-52 + 18734: -46,-52 + 18735: -46,-53 + 18736: -44,-54 - node: color: '#D9A7BAFF' id: DirtLight decals: - 16661: 1,-83 - 16662: 1,-83 - 16663: 1,-83 - 16728: 15,-92 - 16729: 15,-92 - 16730: 15,-92 - 16731: 15,-92 - 16732: 15,-92 - 16733: 16,-91 - 16734: 16,-91 - 16735: 16,-91 - 16736: 23,-92 - 16737: 23,-92 - 16738: 23,-92 - 16739: 23,-92 - 16740: 14,-90 - 16741: 14,-90 - 16742: 14,-90 - 16743: 29,-91 - 16744: 29,-91 - 16745: 29,-91 - 16746: 29,-91 - 16747: 30,-92 - 16748: 30,-92 - 16749: 30,-92 - 16750: 30,-92 - 16751: 30,-91 - 16752: 30,-91 - 16753: 30,-91 - 16754: 34,-89 - 16755: 34,-89 - 16756: 32,-90 - 16757: 34,-84 - 16758: 32,-83 - 16759: 34,-86 - 16760: 33,-81 - 16762: 35,-80 - 16764: 34,-78 + 16394: 1,-83 + 16395: 1,-83 + 16396: 1,-83 + 16461: 15,-92 + 16462: 15,-92 + 16463: 15,-92 + 16464: 15,-92 + 16465: 15,-92 + 16466: 16,-91 + 16467: 16,-91 + 16468: 16,-91 + 16469: 23,-92 + 16470: 23,-92 + 16471: 23,-92 + 16472: 23,-92 + 16473: 14,-90 + 16474: 14,-90 + 16475: 14,-90 + 16476: 29,-91 + 16477: 29,-91 + 16478: 29,-91 + 16479: 29,-91 + 16480: 30,-92 + 16481: 30,-92 + 16482: 30,-92 + 16483: 30,-92 + 16484: 30,-91 + 16485: 30,-91 + 16486: 30,-91 + 16487: 34,-89 + 16488: 34,-89 + 16489: 32,-90 + 16490: 34,-84 + 16491: 32,-83 + 16492: 34,-86 + 16493: 33,-81 + 16495: 35,-80 + 16497: 34,-78 - node: angle: 1.5707963267948966 rad color: '#D9A7BAFF' id: DirtLight decals: - 16670: 0,-83 - 16671: 0,-83 - 16672: 0,-83 - 16673: -2,-81 - 16674: -1,-82 - 16675: -2,-82 - 16676: -2,-82 - 16685: -1,-79 - 16686: -1,-79 - 16687: -1,-79 - 16688: -1,-79 - 16692: 2,-91 - 16693: 2,-91 - 16694: 1,-90 - 16696: 1,-91 - 16698: 1,-91 - 16700: 1,-91 - 16701: 0,-90 - 16702: 0,-90 - 16703: 1,-91 - 16704: 1,-91 - 16705: 0,-89 - 16706: 0,-89 - 16707: 0,-89 - 16708: 8,-91 - 16709: 8,-91 - 16710: 8,-91 + 16403: 0,-83 + 16404: 0,-83 + 16405: 0,-83 + 16406: -2,-81 + 16407: -1,-82 + 16408: -2,-82 + 16409: -2,-82 + 16418: -1,-79 + 16419: -1,-79 + 16420: -1,-79 + 16421: -1,-79 + 16425: 2,-91 + 16426: 2,-91 + 16427: 1,-90 + 16429: 1,-91 + 16431: 1,-91 + 16433: 1,-91 + 16434: 0,-90 + 16435: 0,-90 + 16436: 1,-91 + 16437: 1,-91 + 16438: 0,-89 + 16439: 0,-89 + 16440: 0,-89 + 16441: 8,-91 + 16442: 8,-91 + 16443: 8,-91 - node: color: '#E0D9DDE6' id: DirtLight decals: - 19537: -53,-79 - 19538: -53,-79 - 19539: -53,-81 - 19540: -50,-79 - 19541: -51,-79 - 19542: -48,-79 - 19543: -48,-80 - 19544: -46,-80 - 19545: -45,-80 - 19546: -42,-79 - 19547: -43,-80 - 19548: -42,-80 - 19549: -38,-80 - 19550: -38,-80 - 19551: -42,-79 - 19552: -42,-77 - 19553: -42,-76 - 19554: -41,-75 - 19555: -42,-73 - 19556: -41,-72 - 19557: -42,-70 - 19558: -41,-70 + 19270: -53,-79 + 19271: -53,-79 + 19272: -53,-81 + 19273: -50,-79 + 19274: -51,-79 + 19275: -48,-79 + 19276: -48,-80 + 19277: -46,-80 + 19278: -45,-80 + 19279: -42,-79 + 19280: -43,-80 + 19281: -42,-80 + 19282: -38,-80 + 19283: -38,-80 + 19284: -42,-79 + 19285: -42,-77 + 19286: -42,-76 + 19287: -41,-75 + 19288: -42,-73 + 19289: -41,-72 + 19290: -42,-70 + 19291: -41,-70 - node: zIndex: 90 color: '#FF0000FF' id: DirtLight decals: - 12887: 71,-53 - 12888: 71,-53 - 12889: 71,-53 - 12890: 79,-53 - 12891: 79,-53 - 12892: 79,-53 - 12895: 79,-51 - 12896: 70,-51 - 12897: 70,-51 - 12898: 80,-54 + 12620: 71,-53 + 12621: 71,-53 + 12622: 71,-53 + 12623: 79,-53 + 12624: 79,-53 + 12625: 79,-53 + 12628: 79,-51 + 12629: 70,-51 + 12630: 70,-51 + 12631: 80,-54 - node: color: '#FFBE00FF' id: DirtLight decals: - 7569: 44,18 - 7570: 45,16 + 7302: 44,18 + 7303: 45,16 - node: zIndex: 90 angle: -3.141592653589793 rad color: '#FFFFFFFF' id: DirtLight decals: - 12852: 89,-58 + 12585: 89,-58 - node: zIndex: 90 angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 12838: 88,-59 - 12839: 88,-59 - 12840: 88,-59 - 12841: 88,-59 - 12842: 88,-59 + 12571: 88,-59 + 12572: 88,-59 + 12573: 88,-59 + 12574: 88,-59 + 12575: 88,-59 - node: color: '#FFFFFFFF' id: DirtLight decals: - 6058: -15,-41 - 6059: -21.000656,-43.5224 - 6060: -20.485031,-43.506775 - 6069: -16.508854,-41.514008 - 6070: -16.508854,-41.514008 - 8103: 47,38 - 8104: 47,38 - 8105: 47,38 - 8106: 47,38 - 8107: 47,38 - 8108: 47,38 - 8109: 47,38 - 12955: 77,-15 - 12959: 74,-16 - 12960: 75,-15 - 17151: -85,-53 - 17152: -85,-53 - 17153: -85,-53 - 17154: -85,-51 - 17155: -85,-51 - 17156: -91,-53 - 17157: -91,-53 - 17158: -91,-53 - 17159: -91,-53 - 17160: -85,-47 - 17161: -85,-47 - 17162: -85,-47 - 17163: -85,-47 - 17164: -84,-46 - 17165: -84,-46 - 17166: -84,-46 - 17167: -84,-46 - 17168: -87,-48 - 17169: -87,-48 - 17170: -87,-48 - 17171: -87,-48 - 17172: -88,-50 - 17173: -88,-50 - 17174: -88,-50 - 17175: -88,-50 - 17176: -88,-50 - 17177: -87,-56 - 17178: -87,-56 - 17179: -87,-56 - 17180: -87,-56 - 17181: -87,-56 - 17182: -86,-56 - 17183: -86,-56 - 17184: -86,-56 - 17185: -86,-56 - 17186: -87,-53 - 17187: -87,-53 - 17188: -87,-53 - 17189: -87,-48 - 17190: -87,-48 - 17191: -87,-48 - 17192: -87,-48 - 17193: -86,-48 - 17194: -86,-48 - 17195: -86,-48 - 17196: -86,-48 - 17197: -92,-50 - 17198: -92,-50 - 17199: -92,-50 - 17200: -92,-50 - 17201: -91,-48 - 17202: -91,-48 - 17203: -91,-48 - 17204: -91,-48 - 17205: -94,-50 - 17206: -94,-50 - 17207: -94,-50 - 17208: -94,-50 - 19445: -63,-84 - 19459: -54,-83 - 19460: -51,-82 - 19461: -50,-82 - 19462: -50,-84 - 19463: -50,-84 - 19464: -59,-84 - 19465: -59,-84 - 19625: -23,-83 - 19626: -23,-83 - 19627: -25,-81 - 19628: -27,-81 - 19629: -28,-82 - 19630: -24,-85 - 19631: -24,-85 - 19632: -21,-85 - 19633: -21,-85 - 19634: -21,-86 - 19635: -22,-87 - 19636: -22,-88 - 19637: -22,-88 - 19638: -21,-88 - 19639: -17,-85 - 19640: -17,-86 + 5861: -15,-41 + 5862: -21.000656,-43.5224 + 5863: -20.485031,-43.506775 + 5872: -16.508854,-41.514008 + 5873: -16.508854,-41.514008 + 7836: 47,38 + 7837: 47,38 + 7838: 47,38 + 7839: 47,38 + 7840: 47,38 + 7841: 47,38 + 7842: 47,38 + 12688: 77,-15 + 12692: 74,-16 + 12693: 75,-15 + 16884: -85,-53 + 16885: -85,-53 + 16886: -85,-53 + 16887: -85,-51 + 16888: -85,-51 + 16889: -91,-53 + 16890: -91,-53 + 16891: -91,-53 + 16892: -91,-53 + 16893: -85,-47 + 16894: -85,-47 + 16895: -85,-47 + 16896: -85,-47 + 16897: -84,-46 + 16898: -84,-46 + 16899: -84,-46 + 16900: -84,-46 + 16901: -87,-48 + 16902: -87,-48 + 16903: -87,-48 + 16904: -87,-48 + 16905: -88,-50 + 16906: -88,-50 + 16907: -88,-50 + 16908: -88,-50 + 16909: -88,-50 + 16910: -87,-56 + 16911: -87,-56 + 16912: -87,-56 + 16913: -87,-56 + 16914: -87,-56 + 16915: -86,-56 + 16916: -86,-56 + 16917: -86,-56 + 16918: -86,-56 + 16919: -87,-53 + 16920: -87,-53 + 16921: -87,-53 + 16922: -87,-48 + 16923: -87,-48 + 16924: -87,-48 + 16925: -87,-48 + 16926: -86,-48 + 16927: -86,-48 + 16928: -86,-48 + 16929: -86,-48 + 16930: -92,-50 + 16931: -92,-50 + 16932: -92,-50 + 16933: -92,-50 + 16934: -91,-48 + 16935: -91,-48 + 16936: -91,-48 + 16937: -91,-48 + 16938: -94,-50 + 16939: -94,-50 + 16940: -94,-50 + 16941: -94,-50 + 19178: -63,-84 + 19192: -54,-83 + 19193: -51,-82 + 19194: -50,-82 + 19195: -50,-84 + 19196: -50,-84 + 19197: -59,-84 + 19198: -59,-84 + 19358: -23,-83 + 19359: -23,-83 + 19360: -25,-81 + 19361: -27,-81 + 19362: -28,-82 + 19363: -24,-85 + 19364: -24,-85 + 19365: -21,-85 + 19366: -21,-85 + 19367: -21,-86 + 19368: -22,-87 + 19369: -22,-88 + 19370: -22,-88 + 19371: -21,-88 + 19372: -17,-85 + 19373: -17,-86 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 2410: -74,-1 - 4375: -44,4 - 4378: -45,4 - 4382: -45,10 - 4420: -54,38 - 4429: -54,38 - 5515: -66,-47 - 5516: -66,-47 - 5909: -23,-47 - 5910: -26,-48 - 5911: -20,-46 - 5912: -20,-46 - 5922: -22.977022,-46.00596 - 5923: -22.992647,-46.00596 - 9802: 85,-26 - 9803: 82,-28 - 17937: -53,99 - 17938: -53,99 - 17961: -48,105 - 17962: -45,107 - 17963: -46,108 - 17964: -48,107 - 17965: -48,107 - 17982: -57,99 - 17983: -55,96 - 17988: -52,91 - 17989: -51,90 - 17990: -51,90 - 20126: -13,-76 - 20127: -13,-76 - 20131: -18,-76 + 2363: -74,-1 + 4178: -44,4 + 4181: -45,4 + 4185: -45,10 + 4223: -54,38 + 4232: -54,38 + 5318: -66,-47 + 5319: -66,-47 + 5712: -23,-47 + 5713: -26,-48 + 5714: -20,-46 + 5715: -20,-46 + 5725: -22.977022,-46.00596 + 5726: -22.992647,-46.00596 + 9535: 85,-26 + 9536: 82,-28 + 17670: -53,99 + 17671: -53,99 + 17694: -48,105 + 17695: -45,107 + 17696: -46,108 + 17697: -48,107 + 17698: -48,107 + 17715: -57,99 + 17716: -55,96 + 17721: -52,91 + 17722: -51,90 + 17723: -51,90 + 19859: -13,-76 + 19860: -13,-76 + 19864: -18,-76 - node: zIndex: 60 color: '#FFFFFFFF' id: DirtLight decals: - 15882: -89,40 - 15883: -89,40 - 15890: -85,34 - 15891: -85,34 - 15892: -84,30 - 15907: -85,18 - 15908: -85,18 - 15909: -91,16 - 15910: -90,17 - 15911: -90,16 - 15912: -90,16 - 15913: -90,17 + 15615: -89,40 + 15616: -89,40 + 15623: -85,34 + 15624: -85,34 + 15625: -84,30 + 15640: -85,18 + 15641: -85,18 + 15642: -91,16 + 15643: -90,17 + 15644: -90,16 + 15645: -90,16 + 15646: -90,17 - node: zIndex: 90 color: '#FFFFFFFF' id: DirtLight decals: - 12848: 89,-55 - 12849: 89,-55 - 12850: 89,-55 - 12851: 89,-55 + 12581: 89,-55 + 12582: 89,-55 + 12583: 89,-55 + 12584: 89,-55 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 8018: 44,31 + 7751: 44,31 - node: zIndex: 90 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 12843: 88,-55 - 12844: 88,-55 - 12845: 88,-55 - 12846: 89,-55 - 12847: 89,-55 + 12576: 88,-55 + 12577: 88,-55 + 12578: 88,-55 + 12579: 89,-55 + 12580: 89,-55 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtLight decals: - 8019: 47,30 + 7752: 47,30 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtLight decals: - 8020: 46,30 - 8110: 43,35 - 8111: 43,35 - 8112: 43,35 - 8113: 46,33 - 8114: 46,33 - 8115: 46,33 - 8116: 46,33 + 7753: 46,30 + 7843: 43,35 + 7844: 43,35 + 7845: 43,35 + 7846: 46,33 + 7847: 46,33 + 7848: 46,33 + 7849: 46,33 - node: color: '#000000FF' id: DirtMedium decals: - 12971: 78,-26 - 12972: 79,-27 - 12973: 79,-28 - 12974: 78,-28 + 12704: 78,-26 + 12705: 79,-27 + 12706: 79,-28 + 12707: 78,-28 - node: color: '#472318B5' id: DirtMedium decals: - 17228: -64,80 - 17229: -64,80 - 17245: -50,84 - 17246: -50,84 - 17256: -41,81 - 17257: -41,81 - 17258: -38,83 - 17259: -38,83 - 17260: -38,83 + 16961: -64,80 + 16962: -64,80 + 16978: -50,84 + 16979: -50,84 + 16989: -41,81 + 16990: -41,81 + 16991: -38,83 + 16992: -38,83 + 16993: -38,83 - node: zIndex: 90 color: '#700000FF' id: DirtMedium decals: - 12880: 77,-52 - 12881: 77,-52 - 12882: 77,-52 - 12883: 77,-52 - 12884: 77,-52 + 12613: 77,-52 + 12614: 77,-52 + 12615: 77,-52 + 12616: 77,-52 + 12617: 77,-52 - node: zIndex: 90 color: '#B10000FF' id: DirtMedium decals: - 12857: 75,-52 - 12858: 75,-52 - 12859: 75,-52 - 12860: 75,-52 - 12861: 75,-52 + 12590: 75,-52 + 12591: 75,-52 + 12592: 75,-52 + 12593: 75,-52 + 12594: 75,-52 - node: color: '#C7CFD0FF' id: DirtMedium decals: - 18771: -75,-60 - 18772: -77,-63 - 18773: -73,-61 - 18774: -71,-61 - 18775: -67,-61 - 18776: -73,-68 - 18777: -69,-69 - 18778: -68,-68 - 18779: -67,-66 - 18780: -68,-66 - 18858: -51,-47 - 18859: -49,-48 - 18860: -49,-48 - 18861: -48,-48 - 18883: -75,-39 - 18884: -75,-39 - 18892: -76,-61 - 18893: -76,-61 - 18897: -70,-70 - 18898: -70,-70 - 18904: -66,-70 - 18977: -64,-60 - 18978: -63,-58 - 18979: -60,-56 - 18980: -58,-55 - 18981: -59,-55 - 18982: -61,-57 - 18983: -59,-58 - 18984: -59,-58 + 18504: -75,-60 + 18505: -77,-63 + 18506: -73,-61 + 18507: -71,-61 + 18508: -67,-61 + 18509: -73,-68 + 18510: -69,-69 + 18511: -68,-68 + 18512: -67,-66 + 18513: -68,-66 + 18591: -51,-47 + 18592: -49,-48 + 18593: -49,-48 + 18594: -48,-48 + 18616: -75,-39 + 18617: -75,-39 + 18625: -76,-61 + 18626: -76,-61 + 18630: -70,-70 + 18631: -70,-70 + 18637: -66,-70 + 18710: -64,-60 + 18711: -63,-58 + 18712: -60,-56 + 18713: -58,-55 + 18714: -59,-55 + 18715: -61,-57 + 18716: -59,-58 + 18717: -59,-58 - node: angle: -1.5707963267948966 rad color: '#D9A7BAFF' id: DirtMedium decals: - 16714: 9,-91 - 16715: 9,-91 - 16717: 9,-91 - 16719: 9,-91 + 16447: 9,-91 + 16448: 9,-91 + 16450: 9,-91 + 16452: 9,-91 - node: angle: 1.5707963267948966 rad color: '#D9A7BAFF' id: DirtMedium decals: - 16681: -2,-79 - 16682: -2,-79 - 16683: -2,-79 - 16684: -2,-79 - 16722: 16,-92 - 16723: 16,-92 - 16724: 16,-92 - 16725: 16,-92 + 16414: -2,-79 + 16415: -2,-79 + 16416: -2,-79 + 16417: -2,-79 + 16455: 16,-92 + 16456: 16,-92 + 16457: 16,-92 + 16458: 16,-92 - node: color: '#E0D9DDE6' id: DirtMedium decals: - 19559: -38,-79 - 19560: -33,-80 - 19561: -33,-80 - 19562: -34,-82 - 19563: -32,-81 + 19292: -38,-79 + 19293: -33,-80 + 19294: -33,-80 + 19295: -34,-82 + 19296: -32,-81 - node: zIndex: 90 color: '#FF0000FF' id: DirtMedium decals: - 12862: 75,-53 - 12863: 75,-53 - 12864: 75,-53 - 12865: 74,-52 - 12866: 73,-52 - 12867: 75,-51 - 12885: 71,-52 - 12886: 71,-52 + 12595: 75,-53 + 12596: 75,-53 + 12597: 75,-53 + 12598: 74,-52 + 12599: 73,-52 + 12600: 75,-51 + 12618: 71,-52 + 12619: 71,-52 - node: zIndex: 90 angle: -3.141592653589793 rad color: '#FFFFFFFF' id: DirtMedium decals: - 12853: 88,-58 - 12854: 88,-58 - 12855: 88,-58 - 12856: 88,-58 + 12586: 88,-58 + 12587: 88,-58 + 12588: 88,-58 + 12589: 88,-58 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 6054: -14,-41 - 6055: -15,-41 - 6056: -14,-42 - 6057: -15,-41 - 6068: -19.501959,-42.998383 - 8100: 43,38 - 8101: 43,38 - 8102: 43,38 - 19446: -63,-84 - 19447: -62,-83 - 19448: -59,-84 - 19449: -59,-85 - 19450: -60,-84 - 19451: -58,-83 + 5857: -14,-41 + 5858: -15,-41 + 5859: -14,-42 + 5860: -15,-41 + 5871: -19.501959,-42.998383 + 7833: 43,38 + 7834: 43,38 + 7835: 43,38 + 19179: -63,-84 + 19180: -62,-83 + 19181: -59,-84 + 19182: -59,-85 + 19183: -60,-84 + 19184: -58,-83 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 2409: -76,-2 - 4379: -44,4 - 4380: -48,5 - 4395: -58,35 - 4421: -52,35 - 5531: -61,-50 - 5532: -61,-50 - 5907: -26,-46 - 5908: -21,-48 - 5920: -22.492647,-46.53721 - 5921: -22.492647,-46.53721 - 17931: -53,99 - 17932: -52,99 - 17933: -52,97 - 17934: -51,97 - 17950: -48,103 - 17951: -45,104 - 17952: -43,102 - 17953: -42,102 - 17954: -41,103 - 17966: -48,106 - 17967: -48,106 - 17973: -46,100 - 17993: -37,103 - 20124: -15,-78 - 20125: -15,-78 - 20128: -13,-76 - 20130: -10,-75 - 20133: -6,-78 + 2362: -76,-2 + 4182: -44,4 + 4183: -48,5 + 4198: -58,35 + 4224: -52,35 + 5334: -61,-50 + 5335: -61,-50 + 5710: -26,-46 + 5711: -21,-48 + 5723: -22.492647,-46.53721 + 5724: -22.492647,-46.53721 + 17664: -53,99 + 17665: -52,99 + 17666: -52,97 + 17667: -51,97 + 17683: -48,103 + 17684: -45,104 + 17685: -43,102 + 17686: -42,102 + 17687: -41,103 + 17699: -48,106 + 17700: -48,106 + 17706: -46,100 + 17726: -37,103 + 19857: -15,-78 + 19858: -15,-78 + 19861: -13,-76 + 19863: -10,-75 + 19866: -6,-78 - node: zIndex: 60 color: '#FFFFFFFF' id: DirtMedium decals: - 15875: -73,38 - 15876: -73,38 - 15886: -89,44 - 15887: -86,35 - 15888: -85,30 - 15889: -84,30 - 15902: -86,24 - 15903: -86,24 - 15904: -83,26 - 15905: -85,19 - 15906: -85,19 + 15608: -73,38 + 15609: -73,38 + 15619: -89,44 + 15620: -86,35 + 15621: -85,30 + 15622: -84,30 + 15635: -86,24 + 15636: -86,24 + 15637: -83,26 + 15638: -85,19 + 15639: -85,19 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtMedium decals: - 8096: 48,38 - 8097: 48,38 - 8098: 48,38 - 8099: 48,38 + 7829: 48,38 + 7830: 48,38 + 7831: 48,38 + 7832: 48,38 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtMedium decals: - 8093: 43,34 - 8094: 43,34 - 8095: 43,34 + 7826: 43,34 + 7827: 43,34 + 7828: 43,34 - node: color: '#FFFFFF6B' id: FlowersBROne decals: - 19878: -20.929132,-86.22231 - 19879: -20.351007,-85.50356 - 19880: -18.272882,-86.89419 - 19881: -17.632257,-86.59731 - 19882: -17.507257,-88.08169 + 19611: -20.929132,-86.22231 + 19612: -20.351007,-85.50356 + 19613: -18.272882,-86.89419 + 19614: -17.632257,-86.59731 + 19615: -17.507257,-88.08169 - node: color: '#FFFFFFFF' id: FlowersBROne decals: 3: -24.112602,-2.9593968 - 979: -102.56544,-1.2520137 - 3950: -103,53 - 4558: -93,41 - 13573: -16.166363,-4.223278 - 13592: -16.45884,4.7594748 - 13598: -16.27134,12.24385 - 13739: -12,29 - 13744: -90,9 - 13752: -63,23 - 13774: -67,-2 - 13778: -62,2 - 13779: -65,2 - 13862: 21.978891,2.02199 - 14205: 5.134237,-40.81522 - 17226: -47,2 - 17999: -63,25 - 20462: -109,58 - 20469: -105,69 + 932: -102.56544,-1.2520137 + 3825: -103,53 + 4361: -93,41 + 13306: -16.166363,-4.223278 + 13325: -16.45884,4.7594748 + 13331: -16.27134,12.24385 + 13472: -12,29 + 13477: -90,9 + 13485: -63,23 + 13507: -67,-2 + 13511: -62,2 + 13512: -65,2 + 13595: 21.978891,2.02199 + 13938: 5.134237,-40.81522 + 16959: -47,2 + 17732: -63,25 + 20021: -109,58 + 20028: -105,69 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 1015: -20.209776,-9.96015 - 1347: -53.00699,42.48617 - 3954: -103,46 - 4160: -30.667995,32.913303 - 13741: -7,67 - 13878: 52,1 - 20489: -108.890114,41.38544 - 20493: -108.991035,41.989594 + 968: -20.209776,-9.96015 + 1300: -53.00699,42.48617 + 3828: -103,46 + 3967: -30.667995,32.913303 + 13474: -7,67 + 13611: 52,1 + 20048: -108.890114,41.38544 + 20052: -108.991035,41.989594 - node: color: '#E0D9DDE6' id: FlowersBRTwo decals: - 19592: -61,-82 + 19325: -61,-82 - node: color: '#FFFFFF6B' id: FlowersBRTwo decals: - 19883: -16.085382,-85.84731 - 19884: -17.757257,-87.36294 - 19885: -18.569757,-86.86294 - 19886: -18.241632,-86.45669 + 19616: -16.085382,-85.84731 + 19617: -17.757257,-87.36294 + 19618: -18.569757,-86.86294 + 19619: -18.241632,-86.45669 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: 705: -104.169,19.654562 - 1234: -88,-15 - 6596: -102.19308,20.676249 - 8669: -49,-71 - 8670: -46,-71 - 13570: -16.947613,-13.332653 - 13595: -16.786964,13.1501 - 13608: 16.160503,-12.403377 - 13640: 16.62636,13.038975 - 13735: -12,29 - 13757: -56,23 - 13759: -56,16 - 17225: -42,7 - 19655: -24,-82 - 20119: 28.115833,36.809345 - 20471: -105,69 + 1187: -88,-15 + 6347: -102.19308,20.676249 + 8402: -49,-71 + 8403: -46,-71 + 13303: -16.947613,-13.332653 + 13328: -16.786964,13.1501 + 13341: 16.160503,-12.403377 + 13373: 16.62636,13.038975 + 13468: -12,29 + 13490: -56,23 + 13492: -56,16 + 16958: -42,7 + 19388: -24,-82 + 19852: 28.115833,36.809345 + 20030: -105,69 - node: color: '#E0D9DDE6' id: Flowersbr1 decals: - 19591: -62,-84 + 19324: -62,-84 - node: color: '#FFFFFF6B' id: Flowersbr1 decals: - 19887: -19.990715,-86.78481 + 19620: -19.990715,-86.78481 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: 667: -112.786835,15.006317 668: -104.627884,10.727407 - 3603: -0.14119387,6.959076 - 3604: -0.18806887,3.802826 - 6486: -3.5266738,75.8135 - 6487: 0.3952012,73.0027 - 8515: -3.7022119,-22.288898 - 8664: -56,-59 - 13649: 16.048235,5.77335 - 13863: 22.77056,2.0567122 - 14680: 49.701633,-54.88158 - 14687: 50.077374,-55.243942 - 19654: -26,-80 - 20435: -104,62 + 3556: -0.14119387,6.959076 + 3557: -0.18806887,3.802826 + 6237: -3.5266738,75.8135 + 6238: 0.3952012,73.0027 + 8248: -3.7022119,-22.288898 + 8397: -56,-59 + 13382: 16.048235,5.77335 + 13596: 22.77056,2.0567122 + 14413: 49.701633,-54.88158 + 14420: 50.077374,-55.243942 + 19387: -26,-80 + 19994: -104,62 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 1371: -50.08662,51.920113 - 4161: -29.605495,32.89768 - 6671: 3.5109367,74.09762 - 8673: -47,-70 - 8674: -45,-71 - 13610: 16.941753,-13.247127 + 1324: -50.08662,51.920113 + 3968: -29.605495,32.89768 + 6422: 3.5109367,74.09762 + 8406: -47,-70 + 8407: -45,-71 + 13343: 16.941753,-13.247127 - node: cleanable: True color: '#FFFFFFFF' id: Flowersbr2 decals: - 18116: -65,74 + 17849: -65,74 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1236: -88,-17 - 5293: -7.5754366,87.71924 - 5294: -7.3410606,87.06299 - 5295: -6.3723116,87.89111 - 6484: -4.839174,72.94199 - 6485: -4.151674,73.00449 - 8665: -50,-59 - 8671: -47,-71 - 8672: -48,-70 - 13747: -76,9 - 17996: -62,29 + 1189: -88,-17 + 5096: -7.5754366,87.71924 + 5097: -7.3410606,87.06299 + 5098: -6.3723116,87.89111 + 6235: -4.839174,72.94199 + 6236: -4.151674,73.00449 + 8398: -50,-59 + 8404: -47,-71 + 8405: -48,-70 + 13480: -76,9 + 17729: -62,29 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: 706: -102.54379,19.807339 - 1235: -88,-16 - 3951: -103,56 - 6594: -102.42745,20.629374 - 8666: -49,-59 - 8667: -49,-70 - 8668: -48,-71 - 13572: -17.103863,-4.942028 - 13596: -16.27134,12.74385 - 13611: 16.629253,-13.590877 - 13622: 16.269878,-5.6361756 - 13623: 16.582378,-5.7455506 - 13624: 16.801128,-5.3080506 - 13650: 16.56386,4.96085 - 13736: -15,29 - 13737: -12,29 - 13753: -56,23 - 13755: -63,16 - 13773: -64,-2 - 13777: -67,-2 - 13780: -65,2 - 13866: 22.610836,2.02199 - 14207: 5.431112,-40.799595 - 17227: -42,7 - 20457: -103.57098,46.436047 - 20464: -109,57 - 20465: -109,57 + 1188: -88,-16 + 3826: -103,56 + 6345: -102.42745,20.629374 + 8399: -49,-59 + 8400: -49,-70 + 8401: -48,-71 + 13305: -17.103863,-4.942028 + 13329: -16.27134,12.74385 + 13344: 16.629253,-13.590877 + 13355: 16.269878,-5.6361756 + 13356: 16.582378,-5.7455506 + 13357: 16.801128,-5.3080506 + 13383: 16.56386,4.96085 + 13469: -15,29 + 13470: -12,29 + 13486: -56,23 + 13488: -63,16 + 13506: -64,-2 + 13510: -67,-2 + 13513: -65,2 + 13599: 22.610836,2.02199 + 13940: 5.431112,-40.799595 + 16960: -42,7 + 20016: -103.57098,46.436047 + 20023: -109,57 + 20024: -109,57 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv1 decals: - 18115: -60,74 - 18159: -65,69 + 17848: -60,74 + 17892: -65,69 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 707: -100.07547,18.879877 - 1373: -54.820995,51.982613 - 3948: -103,44 - 3953: -103,64 - 13590: -16.33384,5.1969748 - 13738: -12,29 - 13743: -7,67 - 13746: -76,9 - 13841: 20.116045,-2.125054 - 13879: 52,1 - 13880: 52,-3 - 18246: 40.001354,-9.213992 - 19660: -24,-85 + 1326: -54.820995,51.982613 + 3823: -103,44 + 3827: -103,64 + 13323: -16.33384,5.1969748 + 13471: -12,29 + 13476: -7,67 + 13479: -76,9 + 13574: 20.116045,-2.125054 + 13612: 52,1 + 13613: 52,-3 + 17979: 40.001354,-9.213992 + 19393: -24,-85 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 665: -113.0021,4.074559 - 905: -27,-3 - 977: -103.64356,-1.8613887 - 978: -101.50294,-1.0957637 - 1251: -42.942074,47.838802 - 1340: -45.01228,38.882465 - 1370: -55.99287,51.982613 - 3608: -0.18806887,4.896576 - 3609: 0.18693113,6.287201 - 6480: -8.857239,75.7129 - 6481: -11.091614,76.0879 - 8516: -5.702212,-22.570148 - 9042: -23.016924,-68.52395 - 13593: -16.99009,13.759475 - 13639: 16.798235,13.288975 - 13641: 16.985735,12.570225 - 13749: -71,15 - 13750: -71,3 - 17997: -57,29 - 17998: -62,29 - 18000: -57,25 - 18245: 39.98649,-9.8086405 - 19657: -20,-80 - 19658: -21,-80 - 19659: -22,-83 - 20120: 29.053333,36.82497 - 20485: -101.6707,39.018383 - 20490: -108.84605,42.006386 - 20491: -108.83042,42.70951 - 20497: -108.90037,50.65308 + 858: -27,-3 + 930: -103.64356,-1.8613887 + 931: -101.50294,-1.0957637 + 1204: -42.942074,47.838802 + 1293: -45.01228,38.882465 + 1323: -55.99287,51.982613 + 3561: -0.18806887,4.896576 + 3562: 0.18693113,6.287201 + 6231: -8.857239,75.7129 + 6232: -11.091614,76.0879 + 8249: -5.702212,-22.570148 + 8775: -23.016924,-68.52395 + 13326: -16.99009,13.759475 + 13372: 16.798235,13.288975 + 13374: 16.985735,12.570225 + 13482: -71,15 + 13483: -71,3 + 17730: -57,29 + 17731: -62,29 + 17733: -57,25 + 17978: 39.98649,-9.8086405 + 19390: -20,-80 + 19391: -21,-80 + 19392: -22,-83 + 19853: 29.053333,36.82497 + 20044: -101.6707,39.018383 + 20049: -108.84605,42.006386 + 20050: -108.83042,42.70951 + 20056: -108.90037,50.65308 - node: color: '#FFFFFFFF' id: Flowersy1 decals: 704: -101.21761,19.876783 - 3949: -103,48 - 3955: -103,62 - 4157: -39.987946,28.940845 - 6482: -13.154114,73.00977 - 6483: -15.060364,74.1504 - 6593: -103.3962,20.629374 - 6672: 3.0109367,77.23824 - 8675: -46,-70 - 13742: -7,67 - 13745: -90,9 - 13748: -71,15 - 13758: -63,23 - 13775: -62,2 - 13839: 19.709795,-2.156304 - 13864: 22.14556,1.9803233 - 20470: -105,69 - 20487: -108.91754,41.07294 - 20492: -108.8773,42.55326 + 3824: -103,48 + 3829: -103,62 + 3964: -39.987946,28.940845 + 6233: -13.154114,73.00977 + 6234: -15.060364,74.1504 + 6344: -103.3962,20.629374 + 6423: 3.0109367,77.23824 + 8408: -46,-70 + 13475: -7,67 + 13478: -90,9 + 13481: -71,15 + 13491: -63,23 + 13508: -62,2 + 13572: 19.709795,-2.156304 + 13597: 22.14556,1.9803233 + 20029: -105,69 + 20046: -108.91754,41.07294 + 20051: -108.8773,42.55326 - node: color: '#FFFFFFFF' id: Flowersy2 decals: 664: -101.87306,9.554807 666: -114.128044,12.706805 - 976: -104.58106,-1.1582637 - 980: -100.48731,-1.7520137 - 1233: -88,-17 - 1237: -88,-15 - 3607: 0.21818113,6.693451 - 4557: -95,41 - 4565: -94,67 - 6601: -103.26756,-2.7686312 - 6602: -101.48631,-2.9405062 - 13591: -16.99009,4.2750998 - 13594: -16.36509,13.478225 - 13612: 16.957378,-13.965877 - 13635: 16.84511,13.7421 - 13636: 16.954485,13.4921 - 13637: 16.53261,13.195225 - 13638: 16.798235,12.788975 - 13646: 16.235735,5.132725 - 13734: -15,29 - 13751: -71,3 - 13754: -56,16 - 13865: 22.99278,2.0150456 - 13877: 52,-3 - 17224: -47,2 - 17994: -63,25 - 17995: -57,29 - 19656: -30,-82 - 20118: 28.506458,36.903095 - 20456: -103.82098,46.342297 - 20463: -109,58 - 20496: -108.94724,50.762455 + 929: -104.58106,-1.1582637 + 933: -100.48731,-1.7520137 + 1186: -88,-17 + 1190: -88,-15 + 3560: 0.21818113,6.693451 + 4360: -95,41 + 4368: -94,67 + 6352: -103.26756,-2.7686312 + 6353: -101.48631,-2.9405062 + 13324: -16.99009,4.2750998 + 13327: -16.36509,13.478225 + 13345: 16.957378,-13.965877 + 13368: 16.84511,13.7421 + 13369: 16.954485,13.4921 + 13370: 16.53261,13.195225 + 13371: 16.798235,12.788975 + 13379: 16.235735,5.132725 + 13467: -15,29 + 13484: -71,3 + 13487: -56,16 + 13598: 22.99278,2.0150456 + 13610: 52,-3 + 16957: -47,2 + 17727: -63,25 + 17728: -57,29 + 19389: -30,-82 + 19851: 28.506458,36.903095 + 20015: -103.82098,46.342297 + 20022: -109,58 + 20055: -108.94724,50.762455 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 4: -25.221977,-3.1000218 - 1250: -45.973324,46.120052 - 1341: -42.871655,38.819965 - 8514: -5.499087,-20.945148 - 13571: -16.385113,-5.754528 - 13597: -16.77134,12.540725 - 13609: 16.519878,-12.965877 - 13756: -63,16 - 13776: -64,-2 - 13840: 20.459795,-2.140679 - 18001: -57,25 - 20488: -108.91754,42.29169 + 1203: -45.973324,46.120052 + 1294: -42.871655,38.819965 + 8247: -5.499087,-20.945148 + 13304: -16.385113,-5.754528 + 13330: -16.77134,12.540725 + 13342: 16.519878,-12.965877 + 13489: -63,16 + 13509: -64,-2 + 13573: 20.459795,-2.140679 + 17734: -57,25 + 20047: -108.91754,42.29169 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy3 decals: - 18114: -65,72 + 17847: -65,72 - node: color: '#FFFFFF6B' id: Flowersy4 decals: - 19874: -17.101007,-89.12856 - 19875: -16.944757,-87.67544 - 19876: -20.007257,-86.76919 - 19877: -15.788507,-86.03481 + 19607: -17.101007,-89.12856 + 19608: -16.944757,-87.67544 + 19609: -20.007257,-86.76919 + 19610: -15.788507,-86.03481 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 1014: -20.834776,-10.007025 - 3605: 0.14005613,4.302826 - 3606: -0.23494387,6.084076 - 8616: -19.010744,-68.60793 - 8676: -45,-70 - 14208: 5.899862,-40.81522 + 967: -20.834776,-10.007025 + 3558: 0.14005613,4.302826 + 3559: -0.23494387,6.084076 + 8349: -19.010744,-68.60793 + 8409: -45,-70 + 13941: 5.899862,-40.81522 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy4 decals: - 18117: -60,72 + 17850: -60,72 - node: color: '#0000FF3F' id: FullTileOverlayGreyscale decals: - 19609: -28.733448,-79.995445 + 19342: -28.733448,-79.995445 - node: color: '#00FF003F' id: FullTileOverlayGreyscale decals: - 19608: -28.499073,-79.995445 + 19341: -28.499073,-79.995445 - node: zIndex: 60 color: '#6C131847' id: FullTileOverlayGreyscale decals: - 16164: -64,32 - 16165: -63,32 - 16166: -62,32 - 16167: -64,31 - 16168: -63,31 - 16169: -62,31 + 15897: -64,32 + 15898: -63,32 + 15899: -62,32 + 15900: -64,31 + 15901: -63,31 + 15902: -62,31 - node: color: '#808080FF' id: FullTileOverlayGreyscale decals: - 17694: -44,98 - 17695: -42,104 - 17696: -49,103 + 17427: -44,98 + 17428: -42,104 + 17429: -49,103 - node: color: '#FF00003F' id: FullTileOverlayGreyscale decals: - 19607: -28.999073,-79.995445 + 19340: -28.999073,-79.995445 - node: color: '#FFFFFF26' id: FullTileOverlayGreyscale decals: - 3223: 6,55 - 3224: 7,55 - 3225: 8,55 - 3226: 9,55 - 3227: 10,55 - 3228: 6,54 - 3229: 6,53 - 3230: 7,53 - 3231: 8,53 - 3232: 9,53 - 3233: 10,53 - 3234: 10,54 - 3235: 9,54 - 3236: 8,54 - 3237: 7,54 + 3176: 6,55 + 3177: 7,55 + 3178: 8,55 + 3179: 9,55 + 3180: 10,55 + 3181: 6,54 + 3182: 6,53 + 3183: 7,53 + 3184: 8,53 + 3185: 9,53 + 3186: 10,53 + 3187: 10,54 + 3188: 9,54 + 3189: 8,54 + 3190: 7,54 - node: color: '#FFFFFFFF' id: Grassa1 @@ -11660,199 +11660,199 @@ entities: 701: -103.39589,19.729078 702: -104.06255,18.822828 703: -104.87505,19.843662 - 972: -103,-2 - 975: -100,-1 - 3939: -103,45 - 3940: -103,47 - 3941: -103,52 - 3942: -103,55 - 3943: -103,61 - 3944: -103,63 - 4555: -95,41 - 4561: -93,67 - 5269: -9.171772,75.82089 - 5270: -9.968648,76.07089 - 5271: -9.374898,76.07089 - 5272: -9.828018,72.69589 - 5273: -10.249893,72.68027 - 5274: -10.968643,72.39902 - 5275: -11.234268,72.39902 - 5276: -4.0467687,72.649025 - 5277: -3.4217687,72.649025 - 5278: -3.2811444,73.086525 - 5279: -2.781144,72.66465 - 13070: -83.8914,-15.975268 - 13557: -17,-14 - 13558: -17,-4 - 13581: -16.276146,13.2126 - 13587: -16.318214,5.8063498 - 13603: 16.254253,-12.887752 - 13613: 16.144878,-5.8393006 - 13630: 16.06386,12.4296 - 13740: -7,67 - 13768: -67,2 - 13834: 20,-2 - 13876: 52,-3 - 14202: 5.837362,-40.080845 - 14673: 56.89372,-44.34356 - 17380: -41,82 - 20139: -13.42758,-77.003654 - 20454: -103.91473,47.248547 + 925: -103,-2 + 928: -100,-1 + 3814: -103,45 + 3815: -103,47 + 3816: -103,52 + 3817: -103,55 + 3818: -103,61 + 3819: -103,63 + 4358: -95,41 + 4364: -93,67 + 5072: -9.171772,75.82089 + 5073: -9.968648,76.07089 + 5074: -9.374898,76.07089 + 5075: -9.828018,72.69589 + 5076: -10.249893,72.68027 + 5077: -10.968643,72.39902 + 5078: -11.234268,72.39902 + 5079: -4.0467687,72.649025 + 5080: -3.4217687,72.649025 + 5081: -3.2811444,73.086525 + 5082: -2.781144,72.66465 + 12803: -83.8914,-15.975268 + 13290: -17,-14 + 13291: -17,-4 + 13314: -16.276146,13.2126 + 13320: -16.318214,5.8063498 + 13336: 16.254253,-12.887752 + 13346: 16.144878,-5.8393006 + 13363: 16.06386,12.4296 + 13473: -7,67 + 13501: -67,2 + 13567: 20,-2 + 13609: 52,-3 + 13935: 5.837362,-40.080845 + 14406: 56.89372,-44.34356 + 17113: -41,82 + 19872: -13.42758,-77.003654 + 20013: -103.91473,47.248547 - node: cleanable: True color: '#FFFFFFFF' id: Grassa1 decals: - 18194: 22.700066,-17.29323 - 18330: 3.9020472,29.82003 + 17927: 22.700066,-17.29323 + 18063: 3.9020472,29.82003 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 974: -101,-2 - 4197: -58.45347,30.454102 - 4339: -85,53 - 4560: -95,67 - 6577: -18.536121,76.36506 - 6578: -18.739246,75.349434 - 6579: -17.645496,74.318184 - 6659: 2.9015617,74.08199 - 6669: 3.7296867,74.17574 - 6670: 2.9953117,77.48824 - 7254: 71,-46 - 7255: 74,-45 - 7256: 72,-45 - 7257: 71,-45 - 7258: 72,-46 - 13074: -82.0789,-16.022144 - 13556: -16,-13 - 13580: -17.088646,12.321975 - 13585: -16.255714,4.7282248 - 13732: -15,29 - 13835: 20.647295,-2.078179 - 13858: 22.19417,2.046821 - 14200: 5.0404863,-40.924595 - 14203: 5.196737,-40.12772 - 14675: 50.09226,-55.22533 - 17370: -59,84 - 17378: -47,79 - 20468: -103,69 - 20494: -108.91678,49.134 + 927: -101,-2 + 4000: -58.45347,30.454102 + 4142: -85,53 + 4363: -95,67 + 6328: -18.536121,76.36506 + 6329: -18.739246,75.349434 + 6330: -17.645496,74.318184 + 6410: 2.9015617,74.08199 + 6420: 3.7296867,74.17574 + 6421: 2.9953117,77.48824 + 6987: 71,-46 + 6988: 74,-45 + 6989: 72,-45 + 6990: 71,-45 + 6991: 72,-46 + 12807: -82.0789,-16.022144 + 13289: -16,-13 + 13313: -17.088646,12.321975 + 13318: -16.255714,4.7282248 + 13465: -15,29 + 13568: 20.647295,-2.078179 + 13591: 22.19417,2.046821 + 13933: 5.0404863,-40.924595 + 13936: 5.196737,-40.12772 + 14408: 50.09226,-55.22533 + 17103: -59,84 + 17111: -47,79 + 20027: -103,69 + 20053: -108.91678,49.134 - node: cleanable: True color: '#FFFFFFFF' id: Grassa2 decals: - 17118: -37.650803,-91.32136 + 16851: -37.650803,-91.32136 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 971: -102,-1 - 1229: -88,-18 - 4340: -87,54 - 6589: -104,21 - 6597: -103.53683,-2.7217562 - 6658: 3.8859367,74.51949 - 13604: 17.035503,-13.919002 - 13645: 16.12636,5.27335 - 13859: 22.985836,2.02199 - 14201: 5.8061113,-40.97147 - 14676: 49.93601,-54.28783 - 17428: -79.72144,0.9879683 + 924: -102,-1 + 1182: -88,-18 + 4143: -87,54 + 6340: -104,21 + 6348: -103.53683,-2.7217562 + 6409: 3.8859367,74.51949 + 13337: 17.035503,-13.919002 + 13378: 16.12636,5.27335 + 13592: 22.985836,2.02199 + 13934: 5.8061113,-40.97147 + 14409: 49.93601,-54.28783 + 17161: -79.72144,0.9879683 - node: cleanable: True color: '#FFFFFFFF' id: Grassa3 decals: - 18176: -18.881723,-13.885196 - 18188: 34.751904,-15.085151 - 19984: -29.131947,14.800649 - 19995: -9.927556,55.417294 + 17909: -18.881723,-13.885196 + 17921: 34.751904,-15.085151 + 19717: -29.131947,14.800649 + 19728: -9.927556,55.417294 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 1368: -50.852245,51.982613 - 13617: 16.926128,-4.5424256 - 13631: 16.798235,13.27335 - 13769: -65,-2 - 13836: 19.28792,-2.093804 - 17107: -40.762135,-87.61317 - 17368: -62,83 - 17381: -35,82 - 17427: -59,88 + 1321: -50.852245,51.982613 + 13350: 16.926128,-4.5424256 + 13364: 16.798235,13.27335 + 13502: -65,-2 + 13569: 19.28792,-2.093804 + 16840: -40.762135,-87.61317 + 17101: -62,83 + 17114: -35,82 + 17160: -59,88 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 17124: -37.56776,-85.10408 - 18111: -64,74 - 19986: -18.803915,14.864887 - 19994: -11.615056,47.466057 - 19996: -24.977142,58.894238 - 20004: -32.878075,76.87768 + 16857: -37.56776,-85.10408 + 17844: -64,74 + 19719: -18.803915,14.864887 + 19727: -11.615056,47.466057 + 19729: -24.977142,58.894238 + 19737: -32.878075,76.87768 - node: color: '#FFFFFFFF' id: Grassa5 decals: 660: -113.03228,5.0045476 - 973: -105,-2 - 1230: -88,-16 - 9452: 84.88975,-18.7804 - 13559: -16,-6 - 13733: -12,29 - 13770: -61,2 - 13789: -66.29112,1.9994168 - 17371: -55,83 - 17377: -47,81 - 17382: -43,84 - 17426: -58,86 + 926: -105,-2 + 1183: -88,-16 + 9185: 84.88975,-18.7804 + 13292: -16,-6 + 13466: -12,29 + 13503: -61,2 + 13522: -66.29112,1.9994168 + 17104: -55,83 + 17110: -47,81 + 17115: -43,84 + 17159: -58,86 - node: cleanable: True color: '#FFFFFFFF' id: Grassa5 decals: - 17119: -38.260178,-91.58698 - 18112: -61,72 - 18317: 32.28518,13.770055 - 19989: -53.38967,15.6045685 - 19993: -15.306438,52.188778 - 19998: -34.252304,71.219444 + 16852: -38.260178,-91.58698 + 17845: -61,72 + 18050: 32.28518,13.770055 + 19722: -53.38967,15.6045685 + 19726: -15.306438,52.188778 + 19731: -34.252304,71.219444 - node: zIndex: 60 color: '#FFFFFFFF' id: Grassa5 decals: - 16107: -60.348488,36.33736 + 15840: -60.348488,36.33736 - node: color: '#FFFFFFFF' id: Grassb1 decals: 663: -94.02505,11.961729 - 1249: -44.05145,49.026302 - 1369: -56.77412,52.013863 - 3391: -3.4126067,40.859547 - 7261: 73,-46 - 9467: 81.70225,-27.32056 - 14674: 57.01872,-45.18731 + 1202: -44.05145,49.026302 + 1322: -56.77412,52.013863 + 3344: -3.4126067,40.859547 + 6994: 73,-46 + 9200: 81.70225,-27.32056 + 14407: 57.01872,-45.18731 - node: cleanable: True color: '#FFFFFFFF' id: Grassb1 decals: - 18191: 28.788076,-10.14834 - 18321: 33.856186,5.7237816 - 18322: 11.079984,61.14152 - 19990: -45.762356,13.050093 - 20005: -52.90718,76.67905 + 17924: 28.788076,-10.14834 + 18054: 33.856186,5.7237816 + 18055: 11.079984,61.14152 + 19723: -45.762356,13.050093 + 19738: -52.90718,76.67905 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Grassb1 decals: - 14672: 62.38234,-37.003357 + 14405: 62.38234,-37.003357 - node: color: '#FFFFFFFF' id: Grassb2 @@ -11864,98 +11864,98 @@ entities: 651: -110.413086,14.560749 652: -109.79851,13.925332 653: -112.05892,15.196166 - 1232: -88,-15 - 4341: -85,55 - 6436: -7.7349463,68.219315 - 6440: -8.078696,71.44438 - 6441: -5.6880713,75.56817 - 7260: 72,-48 - 9470: 81.62412,-27.617435 - 13861: 21.624725,2.0289345 - 17110: -40.21526,-89.64442 - 17372: -51,84 + 1185: -88,-15 + 4144: -85,55 + 6187: -7.7349463,68.219315 + 6191: -8.078696,71.44438 + 6192: -5.6880713,75.56817 + 6993: 72,-48 + 9203: 81.62412,-27.617435 + 13594: 21.624725,2.0289345 + 16843: -40.21526,-89.64442 + 17105: -51,84 - node: cleanable: True color: '#FFFFFFFF' id: Grassb2 decals: - 17121: -37.494553,-90.49323 - 18193: 19.47285,-14.931252 - 18327: 15.764519,42.647007 + 16854: -37.494553,-90.49323 + 17926: 19.47285,-14.931252 + 18060: 15.764519,42.647007 - node: color: '#FFFFFFFF' id: Grassb3 decals: 659: -112.928116,3.1191306 - 6423: -8.438071,72.55766 - 6424: -8.391196,72.26079 - 6425: -8.563071,72.07329 - 6426: -8.766196,72.63579 - 6427: -5.7036963,72.15141 - 6428: -5.6411963,71.88579 - 6429: -5.5786963,71.49516 - 6430: -5.5161963,71.83891 - 6431: -5.5005713,72.44829 - 6432: -8.594321,68.375565 - 6433: -8.781821,68.531815 - 6434: -8.688071,68.79744 - 6435: -8.250571,68.719315 - 13564: -16,-5 - 14677: 49.15476,-55.00658 - 14678: 49.71726,-55.25658 - 17109: -41.293385,-90.59754 + 6174: -8.438071,72.55766 + 6175: -8.391196,72.26079 + 6176: -8.563071,72.07329 + 6177: -8.766196,72.63579 + 6178: -5.7036963,72.15141 + 6179: -5.6411963,71.88579 + 6180: -5.5786963,71.49516 + 6181: -5.5161963,71.83891 + 6182: -5.5005713,72.44829 + 6183: -8.594321,68.375565 + 6184: -8.781821,68.531815 + 6185: -8.688071,68.79744 + 6186: -8.250571,68.719315 + 13297: -16,-5 + 14410: 49.15476,-55.00658 + 14411: 49.71726,-55.25658 + 16842: -41.293385,-90.59754 - node: cleanable: True color: '#FFFFFFFF' id: Grassb3 decals: - 18174: -26.608774,-15.4065695 - 18189: 34.58838,-14.208045 - 18320: 28.450989,17.715864 - 18326: 18.172808,46.891975 + 17907: -26.608774,-15.4065695 + 17922: 34.58838,-14.208045 + 18053: 28.450989,17.715864 + 18059: 18.172808,46.891975 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1231: -88,-17 - 1246: -42.848324,46.213802 - 3390: -2.6626067,46.43767 - 4199: -55.67221,34.750973 - 9450: 84.45225,-18.796024 - 13565: -16,-5 - 13634: 17.204485,12.9921 - 13668: -2.7607985,-21.650389 - 14670: 61.44484,-37.284607 - 17379: -48,79 + 1184: -88,-17 + 1199: -42.848324,46.213802 + 3343: -2.6626067,46.43767 + 4002: -55.67221,34.750973 + 9183: 84.45225,-18.796024 + 13298: -16,-5 + 13367: 17.204485,12.9921 + 13401: -2.7607985,-21.650389 + 14403: 61.44484,-37.284607 + 17112: -48,79 - node: cleanable: True color: '#FFFFFFFF' id: Grassb4 decals: - 18109: -64,73 - 18171: -37.315342,-8.19542 - 18173: -33.106667,-17.145916 - 18175: -20.427752,-18.222702 - 18187: 15.293071,-21.360712 - 18318: 17.419401,18.045368 - 18319: 23.613571,15.717243 - 18323: 8.441783,63.099915 - 18324: 17.8558,58.20264 - 18328: 9.245639,35.756454 - 18331: 16.493752,36.609947 - 19982: -34.820793,3.92634 - 19985: -35.56936,15.108647 - 19991: -52.06399,22.083025 - 19992: -22.556568,49.626278 - 19999: -31.663046,66.57979 - 20001: -30.73723,64.4091 - 20002: -31.7257,72.81331 + 17842: -64,73 + 17904: -37.315342,-8.19542 + 17906: -33.106667,-17.145916 + 17908: -20.427752,-18.222702 + 17920: 15.293071,-21.360712 + 18051: 17.419401,18.045368 + 18052: 23.613571,15.717243 + 18056: 8.441783,63.099915 + 18057: 17.8558,58.20264 + 18061: 9.245639,35.756454 + 18064: 16.493752,36.609947 + 19715: -34.820793,3.92634 + 19718: -35.56936,15.108647 + 19724: -52.06399,22.083025 + 19725: -22.556568,49.626278 + 19732: -31.663046,66.57979 + 19734: -30.73723,64.4091 + 19735: -31.7257,72.81331 - node: zIndex: 60 color: '#FFFFFFFF' id: Grassb4 decals: - 15924: -78.58614,25.809484 + 15657: -78.58614,25.809484 - node: color: '#FFFFFFFF' id: Grassb5 @@ -11969,291 +11969,291 @@ entities: 670: -105.46847,11.227407 671: -103.37472,10.96699 672: -104.81144,12.366351 - 1374: -54.758495,51.841988 - 1375: -49.664745,51.873238 - 4158: -30.87112,32.99143 - 4198: -56.062836,35.266598 - 6437: -5.5161963,69.125565 - 6438: -5.1411963,68.70369 - 6439: -5.6411963,68.45369 - 7259: 72,-47 - 7262: 74,-46 - 7263: 71,-47 - 8491: -6.940938,-20.257648 - 8492: -5.769063,-20.601398 - 8493: -6.753438,-21.210773 - 8494: -4.644063,-21.288898 - 8495: -6.519063,-22.335773 - 8496: -3.362813,-22.148273 - 8497: -3.315938,-21.117023 - 8498: -5.019063,-22.242023 - 8499: -3.472188,-22.992023 - 8500: -6.003438,-23.085773 - 8615: -19.166994,-68.49335 - 9041: -23,-68 - 9448: 81.81162,-23.236073 - 9458: 83.18662,-27.336185 - 13072: -83.04765,-16.03777 - 13860: 21.478891,2.112268 - 14671: 62.16359,-37.909607 - 17108: -41.27776,-88.26942 - 17111: -40.348305,-88.38433 - 17376: -51,84 - 17384: -48,81 - 17395: -60,79 - 17396: -58,79 - 17425: -56,89 + 1327: -54.758495,51.841988 + 1328: -49.664745,51.873238 + 3965: -30.87112,32.99143 + 4001: -56.062836,35.266598 + 6188: -5.5161963,69.125565 + 6189: -5.1411963,68.70369 + 6190: -5.6411963,68.45369 + 6992: 72,-47 + 6995: 74,-46 + 6996: 71,-47 + 8224: -6.940938,-20.257648 + 8225: -5.769063,-20.601398 + 8226: -6.753438,-21.210773 + 8227: -4.644063,-21.288898 + 8228: -6.519063,-22.335773 + 8229: -3.362813,-22.148273 + 8230: -3.315938,-21.117023 + 8231: -5.019063,-22.242023 + 8232: -3.472188,-22.992023 + 8233: -6.003438,-23.085773 + 8348: -19.166994,-68.49335 + 8774: -23,-68 + 9181: 81.81162,-23.236073 + 9191: 83.18662,-27.336185 + 12805: -83.04765,-16.03777 + 13593: 21.478891,2.112268 + 14404: 62.16359,-37.909607 + 16841: -41.27776,-88.26942 + 16844: -40.348305,-88.38433 + 17109: -51,84 + 17117: -48,81 + 17128: -60,79 + 17129: -58,79 + 17158: -56,89 - node: cleanable: True color: '#FFFFFFFF' id: Grassb5 decals: - 17120: -38.963303,-91.55573 - 17122: -37.588303,-90.21198 - 17123: -38.151947,-86.72908 - 18110: -63,74 - 18172: -34.83076,-13.297106 - 18177: -37.378498,-14.2835455 - 18186: 19.515478,-17.440159 - 18190: 32.43438,-7.843024 - 18192: 26.334488,-14.913355 - 18325: 15.969683,53.97578 - 18329: 12.469841,37.535053 - 19983: -37.039543,10.3868265 - 19987: -23.572107,16.534527 - 19988: -59.516308,12.6454735 - 19997: -25.597818,66.59855 - 20000: -30.02356,64.47664 - 20003: -50.337345,75.8259 + 16853: -38.963303,-91.55573 + 16855: -37.588303,-90.21198 + 16856: -38.151947,-86.72908 + 17843: -63,74 + 17905: -34.83076,-13.297106 + 17910: -37.378498,-14.2835455 + 17919: 19.515478,-17.440159 + 17923: 32.43438,-7.843024 + 17925: 26.334488,-14.913355 + 18058: 15.969683,53.97578 + 18062: 12.469841,37.535053 + 19716: -37.039543,10.3868265 + 19720: -23.572107,16.534527 + 19721: -59.516308,12.6454735 + 19730: -25.597818,66.59855 + 19733: -30.02356,64.47664 + 19736: -50.337345,75.8259 - node: zIndex: 60 color: '#FFFFFFFF' id: Grassb5 decals: - 15923: -78.91427,25.746984 + 15656: -78.91427,25.746984 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' id: Grassb5 decals: - 10481: -31.090748,-77.8942 + 10214: -31.090748,-77.8942 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 1339: -43.996655,38.86684 - 3387: -3.621306,47.172047 - 3722: -0.018994689,5.410658 - 4156: -40.03482,29.01897 - 4345: -87,53 - 4556: -93,41 - 6580: -17.067371,74.45881 - 6592: -102,21 - 13562: -16,-4 - 13606: 16.254253,-12.450252 - 13772: -61,2 + 1292: -43.996655,38.86684 + 3340: -3.621306,47.172047 + 3675: -0.018994689,5.410658 + 3963: -40.03482,29.01897 + 4148: -87,53 + 4359: -93,41 + 6331: -17.067371,74.45881 + 6343: -102,21 + 13295: -16,-4 + 13339: 16.254253,-12.450252 + 13505: -61,2 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 8663: -57,-59 - 13607: 16.863628,-13.747127 + 8396: -57,-59 + 13340: 16.863628,-13.747127 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 1010: -20.88165,-9.944525 - 3386: -9.621305,42.015797 - 4344: -85,54 - 13614: 17.066753,-5.8549256 + 963: -20.88165,-9.944525 + 3339: -9.621305,42.015797 + 4147: -85,54 + 13347: 17.066753,-5.8549256 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 1009: -20.1629,-9.913275 - 1338: -45.059155,38.92934 - 1372: -55.008495,51.998238 - 3601: -0.031818867,7.099701 - 3602: -0.09431887,3.865326 - 13560: -17,-5 - 13561: -16,-13 - 13584: -16.974464,5.1500998 - 13632: 17.048235,13.89835 + 962: -20.1629,-9.913275 + 1291: -45.059155,38.92934 + 1325: -55.008495,51.998238 + 3554: -0.031818867,7.099701 + 3555: -0.09431887,3.865326 + 13293: -17,-5 + 13294: -16,-13 + 13317: -16.974464,5.1500998 + 13365: 17.048235,13.89835 - node: zIndex: 60 color: '#FFFFFFFF' id: Grassc4 decals: - 16108: -60.207863,36.27486 + 15841: -60.207863,36.27486 - node: color: '#C3C5CDFF' id: Grassd1 decals: - 15742: -65.98499,34.11293 + 15475: -65.98499,34.11293 - node: cleanable: True color: '#FFDFFFB7' id: Grassd1 decals: - 18203: 38.45624,-22.299706 - 18205: 41.622623,-22.4335 - 18206: 39.154926,-22.269974 - 18207: 39.363045,-23.251143 - 18208: 40.21256,-23.262316 + 17936: 38.45624,-22.299706 + 17938: 41.622623,-22.4335 + 17939: 39.154926,-22.269974 + 17940: 39.363045,-23.251143 + 17941: 40.21256,-23.262316 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1247: -45.1452,49.057552 - 1345: -53.00414,42.990517 - 3383: -8.16818,47.547047 - 3392: -8.709482,42.984547 - 3598: -0.25056887,4.912201 - 3599: -0.20369387,5.912201 - 3715: -0.018994689,5.426283 - 3716: 0.18413055,5.082533 - 4159: -29.105495,32.975803 - 4342: -86,53 - 6581: -17.082996,76.880684 - 8479: 2.89104,-21.121916 - 8480: 6.099374,-19.89275 - 8481: 4.4743733,-22.215666 - 8482: 3.1202068,-23.246916 - 8483: 6.755624,-21.819834 - 8484: 5.0993733,-23.08025 - 8485: 6.9535403,-22.9865 - 8486: 7.036874,-19.934416 - 8487: 4.713957,-21.382334 - 8488: 4.2972903,-20.674 - 8612: -22.937826,-68.87876 - 8613: -18.98991,-67.99335 - 9455: 81.99912,-21.014774 - 13582: -16.16677,13.9626 - 13615: 16.191753,-4.9486756 - 17105: -40.585102,-83.20121 - 17397: -60,79 - 17431: -78.88289,-2.7766757 + 1200: -45.1452,49.057552 + 1298: -53.00414,42.990517 + 3336: -8.16818,47.547047 + 3345: -8.709482,42.984547 + 3551: -0.25056887,4.912201 + 3552: -0.20369387,5.912201 + 3668: -0.018994689,5.426283 + 3669: 0.18413055,5.082533 + 3966: -29.105495,32.975803 + 4145: -86,53 + 6332: -17.082996,76.880684 + 8212: 2.89104,-21.121916 + 8213: 6.099374,-19.89275 + 8214: 4.4743733,-22.215666 + 8215: 3.1202068,-23.246916 + 8216: 6.755624,-21.819834 + 8217: 5.0993733,-23.08025 + 8218: 6.9535403,-22.9865 + 8219: 7.036874,-19.934416 + 8220: 4.713957,-21.382334 + 8221: 4.2972903,-20.674 + 8345: -22.937826,-68.87876 + 8346: -18.98991,-67.99335 + 9188: 81.99912,-21.014774 + 13315: -16.16677,13.9626 + 13348: 16.191753,-4.9486756 + 16838: -40.585102,-83.20121 + 17130: -60,79 + 17164: -78.88289,-2.7766757 - node: zIndex: 60 color: '#FFFFFFFF' id: Grassd1 decals: - 16099: -79.61301,26.715706 - 16100: -79.62863,26.45008 + 15832: -79.61301,26.715706 + 15833: -79.62863,26.45008 - node: cleanable: True color: '#FFDFFFB7' id: Grassd2 decals: - 18202: 39.511703,-22.79029 - 18204: 40.56716,-23.043016 + 17935: 39.511703,-22.79029 + 17937: 40.56716,-23.043016 - node: color: '#FFFFFFA8' id: Grassd2 decals: - 19913: -6.310995,-88.90243 - 19914: -6.07662,-88.77743 - 19915: -4.967245,-88.99618 - 19916: -3.85787,-88.66805 - 19917: -3.967245,-87.90243 - 19918: -3.07662,-87.6993 - 19919: -2.810995,-88.3868 - 19920: -4.060995,-88.9493 - 19921: -3.82662,-89.35555 + 19646: -6.310995,-88.90243 + 19647: -6.07662,-88.77743 + 19648: -4.967245,-88.99618 + 19649: -3.85787,-88.66805 + 19650: -3.967245,-87.90243 + 19651: -3.07662,-87.6993 + 19652: -2.810995,-88.3868 + 19653: -4.060995,-88.9493 + 19654: -3.82662,-89.35555 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1012: -20.209776,-9.944525 - 3596: -0.17244387,3.599701 - 3597: -0.21931887,3.927826 - 4200: -55.984715,33.204098 - 17104: -38.835102,-83.10746 - 17391: -40,82 - 20432: -104,62 + 965: -20.209776,-9.944525 + 3549: -0.17244387,3.599701 + 3550: -0.21931887,3.927826 + 4003: -55.984715,33.204098 + 16837: -38.835102,-83.10746 + 17124: -40,82 + 19991: -104,62 - node: cleanable: True color: '#FFFFFFFF' id: Grassd2 decals: - 18108: -61,73 - 18131: -62,76 + 17841: -61,73 + 17864: -62,76 - node: zIndex: 60 color: '#FFFFFFFF' id: Grassd2 decals: - 15922: -83.74231,26.70265 - 16098: -87.054214,24.10971 - 16103: -74.46564,27.264336 + 15655: -83.74231,26.70265 + 15831: -87.054214,24.10971 + 15836: -74.46564,27.264336 - node: color: '#C3C5CDFF' id: Grassd3 decals: - 15741: -63.625618,37.722305 + 15474: -63.625618,37.722305 - node: color: '#FFFFFFA8' id: Grassd3 decals: - 19922: -4.185995,-89.0118 - 19923: -4.82662,-87.05868 + 19655: -4.185995,-89.0118 + 19656: -4.82662,-87.05868 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1011: -20.81915,-9.96015 - 1248: -44.92645,47.135677 - 3384: -9.51193,45.96892 - 3592: 0.046306133,7.209076 - 3593: -0.00056886673,6.271576 - 3600: -0.18806887,5.709076 - 3947: -103,54 - 5289: -5.2008862,88.839676 - 5290: -5.404011,88.339676 - 5291: -5.669636,88.5428 - 5292: -3.2093072,76.225655 - 8501: -5.800313,-21.304523 - 8502: -5.034688,-20.288898 - 8503: -6.940938,-21.788898 - 8504: -6.784688,-22.804523 - 8505: -5.847188,-22.210773 - 8506: -4.769063,-22.820148 - 8507: -4.128438,-21.804523 - 8508: -4.144063,-22.554523 - 8509: -4.034688,-20.679523 - 8510: -6.128438,-19.960773 - 8614: -18.906576,-68.94126 - 9447: 86.78612,-22.564198 - 9472: 86.62412,-27.117435 - 17103: -36.913227,-84.98246 - 17112: -40.660805,-88.056206 - 17392: -36,83 - 18244: 40,-10 - 19674: -18,-87 + 964: -20.81915,-9.96015 + 1201: -44.92645,47.135677 + 3337: -9.51193,45.96892 + 3545: 0.046306133,7.209076 + 3546: -0.00056886673,6.271576 + 3553: -0.18806887,5.709076 + 3822: -103,54 + 5092: -5.2008862,88.839676 + 5093: -5.404011,88.339676 + 5094: -5.669636,88.5428 + 5095: -3.2093072,76.225655 + 8234: -5.800313,-21.304523 + 8235: -5.034688,-20.288898 + 8236: -6.940938,-21.788898 + 8237: -6.784688,-22.804523 + 8238: -5.847188,-22.210773 + 8239: -4.769063,-22.820148 + 8240: -4.128438,-21.804523 + 8241: -4.144063,-22.554523 + 8242: -4.034688,-20.679523 + 8243: -6.128438,-19.960773 + 8347: -18.906576,-68.94126 + 9180: 86.78612,-22.564198 + 9205: 86.62412,-27.117435 + 16836: -36.913227,-84.98246 + 16845: -40.660805,-88.056206 + 17125: -36,83 + 17977: 40,-10 + 19407: -18,-87 - node: cleanable: True color: '#FFFFFFFF' id: Grassd3 decals: - 18107: -62,72 - 18130: -64,77 - 18137: -59,77 + 17840: -62,72 + 17863: -64,77 + 17870: -59,77 - node: zIndex: 60 color: '#FFFFFFFF' id: Grassd3 decals: - 15921: -83.570435,26.57765 - 16096: -87.19484,23.89096 - 16097: -86.94484,23.79721 - 16105: -69.0199,27.295586 - 16106: -70.12975,27.889336 + 15654: -83.570435,26.57765 + 15829: -87.19484,23.89096 + 15830: -86.94484,23.79721 + 15838: -69.0199,27.295586 + 15839: -70.12975,27.889336 - node: cleanable: True color: '#FFDFFFB7' id: Grasse1 decals: - 18201: 40.344177,-22.388903 + 17934: 40.344177,-22.388903 - node: color: '#FFFFFFFF' id: Grasse1 @@ -12265,308 +12265,308 @@ entities: 694: -103.354225,18.895744 695: -104.2188,19.458244 696: -104.760475,18.999912 - 1346: -52.97289,43.38114 - 4562: -95,67 - 6590: -103,21 - 6591: -101,21 - 13583: -16.83384,13.071975 - 18243: 40,-9 + 1299: -52.97289,43.38114 + 4365: -95,67 + 6341: -103,21 + 6342: -101,21 + 13316: -16.83384,13.071975 + 17976: 40,-9 - node: cleanable: True color: '#FFFFFFFF' id: Grasse1 decals: - 18106: -64,72 + 17839: -64,72 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 3385: -6.996306,40.56267 - 3594: 0.09318113,6.709076 - 3595: 0.21818113,3.505951 - 4343: -87,55 - 4346: -86,55 - 4554: -94,41 - 6574: -16.817371,77.568184 - 6575: -17.629871,77.95881 - 6576: -18.286121,77.099434 - 6598: -102.53683,-2.6905062 - 6635: 3.9087963,77.86572 - 6636: 3.3931713,77.9751 - 6637: 4.7681713,76.8501 - 6660: 2.8703117,74.05074 - 6661: 3.3703117,74.25387 - 6662: 3.5421867,74.09762 - 6663: 2.8703117,74.11324 - 6664: 2.8234367,77.72262 - 6665: 2.9953117,77.83199 - 6666: 2.9328117,77.92574 - 6667: 2.8390617,77.80074 - 6668: 3.0578117,77.87887 - 13563: -17,-6 - 13605: 17.098003,-13.122127 - 13616: 16.988628,-5.3549256 - 13771: -65,-2 - 13837: 19.553545,-2.031304 - 13850: 24.88167,-2.031304 - 13851: 25.13167,-2.093804 - 17102: -42.397602,-87.17838 - 17367: -63,81 - 17386: -49,82 - 17393: -58,81 - 17429: -79.02351,-2.3548007 - 19670: -17,-89 - 19671: -17,-88 - 19672: -21,-86 - 19673: -16,-86 - 20433: -104,62 - 20455: -103.72723,47.10792 - 20495: -108.91089,49.43433 + 3338: -6.996306,40.56267 + 3547: 0.09318113,6.709076 + 3548: 0.21818113,3.505951 + 4146: -87,55 + 4149: -86,55 + 4357: -94,41 + 6325: -16.817371,77.568184 + 6326: -17.629871,77.95881 + 6327: -18.286121,77.099434 + 6349: -102.53683,-2.6905062 + 6386: 3.9087963,77.86572 + 6387: 3.3931713,77.9751 + 6388: 4.7681713,76.8501 + 6411: 2.8703117,74.05074 + 6412: 3.3703117,74.25387 + 6413: 3.5421867,74.09762 + 6414: 2.8703117,74.11324 + 6415: 2.8234367,77.72262 + 6416: 2.9953117,77.83199 + 6417: 2.9328117,77.92574 + 6418: 2.8390617,77.80074 + 6419: 3.0578117,77.87887 + 13296: -17,-6 + 13338: 17.098003,-13.122127 + 13349: 16.988628,-5.3549256 + 13504: -65,-2 + 13570: 19.553545,-2.031304 + 13583: 24.88167,-2.031304 + 13584: 25.13167,-2.093804 + 16835: -42.397602,-87.17838 + 17100: -63,81 + 17119: -49,82 + 17126: -58,81 + 17162: -79.02351,-2.3548007 + 19403: -17,-89 + 19404: -17,-88 + 19405: -21,-86 + 19406: -16,-86 + 19992: -104,62 + 20014: -103.72723,47.10792 + 20054: -108.91089,49.43433 - node: cleanable: True color: '#FFFFFFFF' id: Grasse2 decals: - 18105: -63,72 - 18129: -64,76 + 17838: -63,72 + 17862: -64,76 - node: zIndex: 60 color: '#FFFFFFFF' id: Grasse2 decals: - 16104: -73.21564,27.514336 + 15837: -73.21564,27.514336 - node: color: '#FFFFFF6B' id: Grasse3 decals: - 19888: -22.240715,-88.22231 - 19889: -21.865715,-88.23794 + 19621: -22.240715,-88.22231 + 19622: -21.865715,-88.23794 - node: color: '#FFFFFFA8' id: Grasse3 decals: - 19890: -22.428215,-88.09731 - 19891: -18.20673,-91.45515 - 19892: -18.472355,-91.18952 - 19893: -18.097355,-91.14265 - 19894: -4.951234,-90.21486 - 19895: -5.060995,-89.8243 - 19896: -6.04537,-89.49618 - 19897: -4.85787,-89.10555 - 19898: -3.63912,-88.98055 - 19899: -2.842245,-88.6993 - 19900: -3.779745,-87.99618 - 19901: -4.748495,-87.73055 - 19902: -4.342245,-86.98055 - 19903: -4.217245,-87.87118 - 19904: -4.154745,-88.16805 - 19905: -2.654745,-87.87118 - 19906: -3.310995,-88.65243 - 19907: -4.92037,-88.55868 - 19908: -5.279745,-89.2618 - 19909: -3.63912,-89.4493 - 19910: -3.10787,-89.30868 - 19911: -3.435995,-89.2618 - 19912: -6.029745,-89.49618 + 19623: -22.428215,-88.09731 + 19624: -18.20673,-91.45515 + 19625: -18.472355,-91.18952 + 19626: -18.097355,-91.14265 + 19627: -4.951234,-90.21486 + 19628: -5.060995,-89.8243 + 19629: -6.04537,-89.49618 + 19630: -4.85787,-89.10555 + 19631: -3.63912,-88.98055 + 19632: -2.842245,-88.6993 + 19633: -3.779745,-87.99618 + 19634: -4.748495,-87.73055 + 19635: -4.342245,-86.98055 + 19636: -4.217245,-87.87118 + 19637: -4.154745,-88.16805 + 19638: -2.654745,-87.87118 + 19639: -3.310995,-88.65243 + 19640: -4.92037,-88.55868 + 19641: -5.279745,-89.2618 + 19642: -3.63912,-89.4493 + 19643: -3.10787,-89.30868 + 19644: -3.435995,-89.2618 + 19645: -6.029745,-89.49618 - node: color: '#FFFFFFFF' id: Grasse3 decals: 661: -94.19171,11.138813 669: -103.44763,11.81074 - 1344: -53.00414,42.178017 - 3382: -2.386931,42.078297 - 3587: 0.030681133,3.959076 - 3588: -0.047443867,4.209076 - 3589: -0.047443867,4.834076 - 3590: 0.10880613,5.849701 - 3591: 0.046306133,6.349701 - 3945: -103,62 - 3946: -103,46 - 4195: -53.312843,30.71972 - 4196: -53.60972,30.37597 - 4563: -94,67 - 5280: -14.032457,73.71152 - 5281: -13.673081,73.03964 - 5282: -14.938709,74.88339 - 5283: -14.126208,74.49277 - 5284: -8.904011,88.32405 - 5285: -8.71651,87.745926 - 5286: -8.56026,87.9178 - 5287: -8.46651,87.714676 - 5288: -8.15401,87.63655 - 5296: -14.671101,72.942604 - 5297: -15.030475,73.95823 - 6442: -5.7505713,76.03742 - 6443: -9.209789,73.17168 - 13586: -16.99009,4.2438498 - 13633: 16.25136,12.89835 - 13838: 20.334795,-2.062554 - 17100: -42.663227,-91.17838 - 17101: -44.225727,-90.13151 - 17106: -42.772602,-84.29496 - 17359: -65,79 - 17363: -64,79 - 17385: -53,82 - 17387: -45,83 - 17388: -44,80 - 17389: -41,82 - 17390: -39,82 - 17394: -58,79 - 17430: -79.47664,-2.6829257 - 19664: -20,-85 - 19665: -21,-86 - 19666: -17,-87 - 19667: -17,-88 - 19668: -18,-88 - 19669: -16,-86 + 1297: -53.00414,42.178017 + 3335: -2.386931,42.078297 + 3540: 0.030681133,3.959076 + 3541: -0.047443867,4.209076 + 3542: -0.047443867,4.834076 + 3543: 0.10880613,5.849701 + 3544: 0.046306133,6.349701 + 3820: -103,62 + 3821: -103,46 + 3998: -53.312843,30.71972 + 3999: -53.60972,30.37597 + 4366: -94,67 + 5083: -14.032457,73.71152 + 5084: -13.673081,73.03964 + 5085: -14.938709,74.88339 + 5086: -14.126208,74.49277 + 5087: -8.904011,88.32405 + 5088: -8.71651,87.745926 + 5089: -8.56026,87.9178 + 5090: -8.46651,87.714676 + 5091: -8.15401,87.63655 + 5099: -14.671101,72.942604 + 5100: -15.030475,73.95823 + 6193: -5.7505713,76.03742 + 6194: -9.209789,73.17168 + 13319: -16.99009,4.2438498 + 13366: 16.25136,12.89835 + 13571: 20.334795,-2.062554 + 16833: -42.663227,-91.17838 + 16834: -44.225727,-90.13151 + 16839: -42.772602,-84.29496 + 17092: -65,79 + 17096: -64,79 + 17118: -53,82 + 17120: -45,83 + 17121: -44,80 + 17122: -41,82 + 17123: -39,82 + 17127: -58,79 + 17163: -79.47664,-2.6829257 + 19397: -20,-85 + 19398: -21,-86 + 19399: -17,-87 + 19400: -17,-88 + 19401: -18,-88 + 19402: -16,-86 - node: cleanable: True color: '#FFFFFFFF' id: Grasse3 decals: - 18104: -63,73 - 18128: -65,77 + 17837: -63,73 + 17861: -65,77 - node: zIndex: 60 color: '#FFFFFFFF' id: Grasse3 decals: - 16101: -79.25363,26.57508 - 16102: -74.54376,27.670586 + 15834: -79.25363,26.57508 + 15835: -74.54376,27.670586 - node: color: '#FFFFFFFF' id: GrayConcreteTrimBox decals: - 4301: -45,11 - 4302: -48,11 - 6414: 0,-33 - 6415: 4,-43 - 6416: 4,-38 - 6417: 7,-38 - 6418: 7,-43 - 6419: 3,-42 - 6420: 3,-39 - 7356: 38,21 - 8489: -22,-59 - 8490: -22,-61 - 16395: 72,-3 - 16396: 72,-1 - 20311: -106,70 - 20312: -101,70 - 20331: -106,38 - 20332: -101,38 - 20333: -110,44 - 20334: -110,48 - 20335: -110,52 - 20336: -110,56 - 20337: -110,60 - 20338: -110,64 + 4104: -45,11 + 4105: -48,11 + 6165: 0,-33 + 6166: 4,-43 + 6167: 4,-38 + 6168: 7,-38 + 6169: 7,-43 + 6170: 3,-42 + 6171: 3,-39 + 7089: 38,21 + 8222: -22,-59 + 8223: -22,-61 + 16128: 72,-3 + 16129: 72,-1 + 19949: -106,70 + 19950: -101,70 + 19969: -106,38 + 19970: -101,38 + 19971: -110,44 + 19972: -110,48 + 19973: -110,52 + 19974: -110,56 + 19975: -110,60 + 19976: -110,64 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimBox decals: - 5761: 11,32 - 5762: 16,32 - 5763: 18,32 - 5764: 9,32 - 5765: 9,30 - 5766: 18,30 - 5767: 16,30 - 5768: 11,30 + 5564: 11,32 + 5565: 16,32 + 5566: 18,32 + 5567: 9,32 + 5568: 9,30 + 5569: 18,30 + 5570: 16,30 + 5571: 11,30 - node: color: '#898989FF' id: GrayConcreteTrimCornerNe decals: - 16544: -26,-86 + 16277: -26,-86 - node: color: '#ACACACFF' id: GrayConcreteTrimCornerNe decals: - 5360: -17,65 + 5163: -17,65 - node: color: '#DAD9E6FF' id: GrayConcreteTrimCornerNe decals: - 4275: -46,11 + 4078: -46,11 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: 11: -94,15 39: -98,15 - 1454: -17,34 - 3389: -3,47 - 4295: -43,11 - 5846: -19,-45 - 8144: 35,47 - 8259: 39,38 - 9037: -35,-63 - 12581: -30,-28 - 12591: -26,-28 - 12597: -22,-28 - 12603: -18,-28 - 13697: -2,-20 - 13698: -4,-19 - 13699: 4,21 - 14210: 6,-40 - 16511: 58,1 - 16528: -26,-86 + 1407: -17,34 + 3342: -3,47 + 4098: -43,11 + 5649: -19,-45 + 7877: 35,47 + 7992: 39,38 + 8770: -35,-63 + 12314: -30,-28 + 12324: -26,-28 + 12330: -22,-28 + 12336: -18,-28 + 13430: -2,-20 + 13431: -4,-19 + 13432: 4,21 + 13943: 6,-40 + 16244: 58,1 + 16261: -26,-86 - node: color: '#898989FF' id: GrayConcreteTrimCornerNw decals: - 16543: -30,-86 + 16276: -30,-86 - node: color: '#D381C9FF' id: GrayConcreteTrimCornerNw decals: - 7182: 44,-48 - 7189: 44,-37 + 6915: 44,-48 + 6922: 44,-37 - node: color: '#DAD9E6FF' id: GrayConcreteTrimCornerNw decals: - 4270: -51,11 + 4073: -51,11 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: 10: -97,15 41: -99,15 - 1452: -19,34 - 3380: -9,47 - 4297: -48,8 - 5845: -27,-45 - 8143: 34,47 - 8257: 22,38 - 12580: -32,-28 - 12590: -28,-28 - 12596: -24,-28 - 12602: -20,-28 - 13651: -4,21 - 13700: 2,-20 - 13701: 4,-19 - 14209: 5,-40 - 16502: 54,1 - 16522: -30,-86 + 1405: -19,34 + 3333: -9,47 + 4100: -48,8 + 5648: -27,-45 + 7876: 34,47 + 7990: 22,38 + 12313: -32,-28 + 12323: -28,-28 + 12329: -24,-28 + 12335: -20,-28 + 13384: -4,21 + 13433: 2,-20 + 13434: 4,-19 + 13942: 5,-40 + 16235: 54,1 + 16255: -30,-86 - node: color: '#ACACACFF' id: GrayConcreteTrimCornerSe decals: - 5362: -17,62 + 5165: -17,62 - node: color: '#D381C9FF' id: GrayConcreteTrimCornerSe decals: - 7193: 51,-43 + 6926: 51,-43 - node: color: '#DAD9E6FF' id: GrayConcreteTrimCornerSe decals: - 4251: -49,13 - 4264: -46,9 + 4054: -49,13 + 4067: -46,9 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe @@ -12574,136 +12574,136 @@ entities: 7: -95,12 8: -94,13 40: -98,14 - 3381: -3,41 - 4296: -43,3 - 8145: 35,42 - 8260: 50,28 - 9867: 12,-32 - 12583: -30,-30 - 12594: -26,-30 - 12599: -22,-30 - 13702: 4,-20 - 13703: -4,20 - 13704: -2,21 - 14211: 6,-41 - 16506: 55,-3 - 16510: 58,-1 + 3334: -3,41 + 4099: -43,3 + 7878: 35,42 + 7993: 50,28 + 9600: 12,-32 + 12316: -30,-30 + 12327: -26,-30 + 12332: -22,-30 + 13435: 4,-20 + 13436: -4,20 + 13437: -2,21 + 13944: 6,-41 + 16239: 55,-3 + 16243: 58,-1 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 9791: 12,-32 - 18102: -18,-30 + 9524: 12,-32 + 17835: -18,-30 - node: color: '#898989FF' id: GrayConcreteTrimCornerSw decals: - 16545: -30,-91 + 16278: -30,-91 - node: color: '#ACACACFF' id: GrayConcreteTrimCornerSw decals: - 5361: -20,62 + 5164: -20,62 - node: color: '#D381C9FF' id: GrayConcreteTrimCornerSw decals: - 7192: 49,-43 + 6925: 49,-43 - node: color: '#DAD9E6FF' id: GrayConcreteTrimCornerSw decals: - 4250: -51,13 + 4053: -51,13 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSw decals: 6: -97,13 34: -99,14 - 3379: -9,41 - 4278: -51,3 - 7831: 21,6 - 8146: 34,42 - 12585: -32,-30 - 12593: -28,-30 - 13705: 2,21 - 13706: 4,20 - 13707: -4,-20 - 14212: 5,-41 - 16501: 54,-3 - 16516: -30,-91 + 3332: -9,41 + 4081: -51,3 + 7564: 21,6 + 7879: 34,42 + 12318: -32,-30 + 12326: -28,-30 + 13438: 2,21 + 13439: 4,20 + 13440: -4,-20 + 13945: 5,-41 + 16234: 54,-3 + 16249: -30,-91 - node: color: '#FFFFFFFF' id: GrayConcreteTrimEndE decals: - 6297: -12,-57 - 6565: 30,25 - 13761: -70,20 - 13762: -84,11 - 13830: -48,25 - 13831: -48,21 - 14560: 18,-28 - 20316: -102,68 - 20326: -102,40 - 20339: -109,62 - 20340: -109,54 - 20341: -109,46 + 6053: -12,-57 + 6316: 30,25 + 13494: -70,20 + 13495: -84,11 + 13563: -48,25 + 13564: -48,21 + 14293: 18,-28 + 19954: -102,68 + 19964: -102,40 + 19977: -109,62 + 19978: -109,54 + 19979: -109,46 - node: color: '#FFFFFFFF' id: GrayConcreteTrimEndN decals: - 1359: -42,41 - 2720: 10,-5 - 6309: 12,-60 - 6310: 18,-60 - 13802: -73,2 - 13832: -42,49 - 18332: -8,-56 - 20270: -66,10 - 20301: -108,43 - 20308: -108,67 - 20309: -108,70 - 20310: -99,70 - 20329: -108,39 - 20330: -99,39 - 20347: -108,51 - 20348: -108,59 + 1312: -42,41 + 2673: 10,-5 + 6065: 12,-60 + 6066: 18,-60 + 13535: -73,2 + 13565: -42,49 + 18065: -8,-56 + 19908: -66,10 + 19939: -108,43 + 19946: -108,67 + 19947: -108,70 + 19948: -99,70 + 19967: -108,39 + 19968: -99,39 + 19985: -108,51 + 19986: -108,59 - node: color: '#FFFFFFFF' id: GrayConcreteTrimEndS decals: - 1357: -42,44 - 2719: 10,-7 - 6307: 12,-56 - 6308: 15,-56 - 13803: -73,-2 - 18333: -8,-54 - 20269: -66,8 - 20302: -108,41 - 20307: -108,65 - 20313: -108,69 - 20314: -99,69 - 20327: -108,38 - 20328: -99,38 - 20345: -108,57 - 20346: -108,49 + 1310: -42,44 + 2672: 10,-7 + 6063: 12,-56 + 6064: 15,-56 + 13536: -73,-2 + 18066: -8,-54 + 19907: -66,8 + 19940: -108,41 + 19945: -108,65 + 19951: -108,69 + 19952: -99,69 + 19965: -108,38 + 19966: -99,38 + 19983: -108,57 + 19984: -108,49 - node: color: '#FFFFFFFF' id: GrayConcreteTrimEndW decals: - 6298: -10,-57 - 13760: -72,20 - 13763: -88,11 - 13828: -50,25 - 13829: -50,21 - 13833: 30,-3 - 14561: 14,-28 - 20315: -105,68 - 20325: -105,40 - 20342: -110,46 - 20343: -110,54 - 20344: -110,62 + 6054: -10,-57 + 13493: -72,20 + 13496: -88,11 + 13561: -50,25 + 13562: -50,21 + 13566: 30,-3 + 14294: 14,-28 + 19953: -105,68 + 19963: -105,40 + 19980: -110,46 + 19981: -110,54 + 19982: -110,62 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe @@ -12711,138 +12711,138 @@ entities: 22: -98,11 35: -99,13 36: -100,14 - 2615: -91,8 - 4765: 9,26 - 8268: 20,36 - 8270: 37,38 - 8271: 39,36 - 8272: 48,26 - 9487: 31,26 - 9556: 50,30 - 9608: 20,20 - 9625: 39,9 - 9636: 39,13 - 9654: 39,18 - 9668: 39,30 - 13329: 20,30 - 13330: 24,26 - 13331: 43,26 - 13332: 50,35 - 13333: 31,38 - 13352: 24,38 - 13356: 30,26 - 13362: 30,38 - 13723: -4,-20 - 13724: 4,20 - 13725: 2,21 - 16335: 64,-5 + 2568: -91,8 + 4568: 9,26 + 8001: 20,36 + 8003: 37,38 + 8004: 39,36 + 8005: 48,26 + 9220: 31,26 + 9289: 50,30 + 9341: 20,20 + 9358: 39,9 + 9369: 39,13 + 9387: 39,18 + 9401: 39,30 + 13062: 20,30 + 13063: 24,26 + 13064: 43,26 + 13065: 50,35 + 13066: 31,38 + 13085: 24,38 + 13089: 30,26 + 13095: 30,38 + 13456: -4,-20 + 13457: 4,20 + 13458: 2,21 + 16068: 64,-5 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe decals: - 5788: 13,33 - 5789: 14,33 - 5804: 11,31 - 5805: 16,32 - 5806: 16,31 - 5807: 18,31 - 5809: 18,32 - 5810: 18,33 - 5811: 18,30 - 5812: 16,30 - 5813: 11,30 - 5814: 9,30 - 5815: 9,31 - 5816: 9,32 + 5591: 13,33 + 5592: 14,33 + 5607: 11,31 + 5608: 16,32 + 5609: 16,31 + 5610: 18,31 + 5612: 18,32 + 5613: 18,33 + 5614: 18,30 + 5615: 16,30 + 5616: 11,30 + 5617: 9,30 + 5618: 9,31 + 5619: 9,32 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: 17: -95,11 - 1462: -19,32 - 4764: 15,26 - 5359: -17,62 - 8266: 52,26 - 8267: 41,36 - 8269: 22,36 - 9449: 30,26 - 9523: 48,26 - 9559: 52,30 - 9567: 52,35 - 9616: 22,20 - 9624: 41,9 - 9653: 41,18 - 9667: 41,30 - 9689: 37,38 - 13334: 22,30 - 13335: 37,26 - 13336: 30,38 - 13337: 24,38 - 13720: -4,20 - 13721: -2,21 - 13722: 4,-20 - 15685: 41,13 - 16338: 80,-5 + 1415: -19,32 + 4567: 15,26 + 5162: -17,62 + 7999: 52,26 + 8000: 41,36 + 8002: 22,36 + 9182: 30,26 + 9256: 48,26 + 9292: 52,30 + 9300: 52,35 + 9349: 22,20 + 9357: 41,9 + 9386: 41,18 + 9400: 41,30 + 9422: 37,38 + 13067: 22,30 + 13068: 37,26 + 13069: 30,38 + 13070: 24,38 + 13453: -4,20 + 13454: -2,21 + 13455: 4,-20 + 15418: 41,13 + 16071: 80,-5 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 5786: 13,33 - 5787: 14,33 + 5589: 13,33 + 5590: 14,33 - node: color: '#DAD9E6FF' id: GrayConcreteTrimInnerSe decals: - 4263: -49,9 + 4066: -49,9 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: 15: -95,13 21: -98,13 - 2616: -91,10 - 4763: 9,28 - 8264: 37,40 - 8265: 50,30 - 8273: 48,28 - 9433: 20,36 - 9488: 31,28 - 9528: 43,28 - 9573: 50,39 - 9623: 39,13 - 9638: 39,18 - 9652: 39,24 - 9666: 39,36 - 9688: 24,40 - 13100: 20,40 - 13338: 24,28 - 13339: 20,24 - 13340: 50,35 - 13357: 30,28 - 13361: 30,40 - 13726: -4,21 - 13727: 2,-20 - 13728: 4,-19 - 16336: 64,1 - 16512: 55,-1 + 2569: -91,10 + 4566: 9,28 + 7997: 37,40 + 7998: 50,30 + 8006: 48,28 + 9166: 20,36 + 9221: 31,28 + 9261: 43,28 + 9306: 50,39 + 9356: 39,13 + 9371: 39,18 + 9385: 39,24 + 9399: 39,36 + 9421: 24,40 + 12833: 20,40 + 13071: 24,28 + 13072: 20,24 + 13073: 50,35 + 13090: 30,28 + 13094: 30,40 + 13459: -4,21 + 13460: 2,-20 + 13461: 4,-19 + 16069: 64,1 + 16245: 55,-1 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 5792: 14,33 - 5793: 16,31 - 5794: 18,31 - 5795: 18,33 - 5796: 9,31 - 5797: 11,31 - 5798: 11,30 - 5799: 9,30 - 5800: 16,30 - 5801: 18,30 - 5818: 9,33 + 5595: 14,33 + 5596: 16,31 + 5597: 18,31 + 5598: 18,33 + 5599: 9,31 + 5600: 11,31 + 5601: 11,30 + 5602: 9,30 + 5603: 16,30 + 5604: 18,30 + 5621: 9,33 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw @@ -12850,262 +12850,262 @@ entities: 16: -96,13 37: -99,15 38: -98,14 - 1461: -19,31 - 4766: 15,28 - 8262: 52,30 - 8263: 24,40 - 9432: 22,36 - 9446: 30,28 - 9492: 37,28 - 9533: 48,28 - 9558: 52,35 - 9572: 52,39 - 9637: 41,18 - 9651: 41,24 - 9669: 41,36 - 9687: 37,40 - 13341: 22,24 - 13342: 30,40 - 13729: -4,-19 - 13730: -2,-20 - 13731: 4,21 - 15684: 41,13 - 16337: 80,1 - 20026: 41,40 + 1414: -19,31 + 4569: 15,28 + 7995: 52,30 + 7996: 24,40 + 9165: 22,36 + 9179: 30,28 + 9225: 37,28 + 9266: 48,28 + 9291: 52,35 + 9305: 52,39 + 9370: 41,18 + 9384: 41,24 + 9402: 41,36 + 9420: 37,40 + 13074: 22,24 + 13075: 30,40 + 13462: -4,-19 + 13463: -2,-20 + 13464: 4,21 + 15417: 41,13 + 16070: 80,1 + 19759: 41,40 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw decals: - 5772: 9,31 - 5773: 9,30 - 5774: 9,32 - 5775: 11,32 - 5776: 11,31 - 5777: 11,30 - 5778: 16,30 - 5779: 16,31 - 5780: 16,32 - 5781: 18,32 - 5782: 18,31 - 5783: 18,30 - 5784: 18,33 - 5785: 16,33 - 5790: 13,33 - 5791: 14,33 - 5802: 16,30 - 5803: 18,30 + 5575: 9,31 + 5576: 9,30 + 5577: 9,32 + 5578: 11,32 + 5579: 11,31 + 5580: 11,30 + 5581: 16,30 + 5582: 16,31 + 5583: 16,32 + 5584: 18,32 + 5585: 18,31 + 5586: 18,30 + 5587: 18,33 + 5588: 16,33 + 5593: 13,33 + 5594: 14,33 + 5605: 16,30 + 5606: 18,30 - node: color: '#898989FF' id: GrayConcreteTrimLineE decals: - 16530: -26,-87 + 16263: -26,-87 - node: color: '#ACACACFF' id: GrayConcreteTrimLineE decals: - 5363: -17,63 - 5364: -17,64 + 5166: -17,63 + 5167: -17,64 - node: color: '#D381C9FF' id: GrayConcreteTrimLineE decals: - 7186: 47,-43 - 7191: 48,-38 - 7194: 51,-42 + 6919: 47,-43 + 6924: 48,-38 + 6927: 51,-42 - node: color: '#DAD9E6FF' id: GrayConcreteTrimLineE decals: - 4240: -49,15 - 4241: -49,14 - 4242: -49,13 - 4256: -46,9 - 4257: -46,10 - 4258: -46,11 - 4259: -49,8 - 4260: -49,7 - 4261: -49,6 + 4043: -49,15 + 4044: -49,14 + 4045: -49,13 + 4059: -46,9 + 4060: -46,10 + 4061: -46,11 + 4062: -49,8 + 4063: -49,7 + 4064: -49,6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: 14: -94,14 20: -98,12 - 1348: -47,47 - 1353: -42,46 - 1354: -42,47 - 1355: -42,48 - 1356: -47,49 - 1362: -38,42 - 1363: -38,43 - 1364: -38,44 - 1434: -47,46 - 1455: -17,33 - 1456: -17,32 - 1457: -17,31 - 1458: -17,30 - 1464: -17,29 - 2613: -91,9 - 2721: 10,-6 - 3370: -3,42 - 3371: -3,43 - 3372: -3,45 - 3373: -3,44 - 3388: -3,46 - 3745: -47,31 - 3746: -47,32 - 3747: -47,35 - 3748: -47,36 - 4172: -42,5 - 4173: -42,4 - 4174: -42,10 - 4236: -42,9 - 4286: -43,4 - 4287: -43,5 - 4288: -43,6 - 4289: -43,7 - 4290: -43,8 - 4291: -43,9 - 4292: -43,10 - 4761: 9,27 - 5847: -19,-46 - 5848: -19,-47 - 5870: -19,-47 - 6312: 12,-55 - 6313: 12,-54 - 6314: 15,-55 - 6315: 15,-54 - 6318: 18,-61 - 6319: 18,-62 - 6320: 12,-62 - 6321: 12,-61 - 8135: 35,43 - 8136: 35,44 - 8137: 35,45 - 8138: 35,46 - 8231: 20,38 - 8248: 20,37 - 8249: 39,37 - 8250: 37,39 - 8251: 50,29 - 8252: 48,27 - 9333: 20,35 - 9334: 20,34 - 9335: 20,33 - 9336: 20,32 - 9339: 20,31 - 9439: 24,27 - 9524: 43,27 - 9535: 50,32 - 9536: 50,33 - 9538: 50,34 - 9539: 50,31 - 9560: 50,38 - 9561: 50,36 - 9590: 20,23 - 9591: 20,22 - 9592: 20,21 - 9617: 39,12 - 9618: 39,11 - 9626: 39,14 - 9627: 39,15 - 9628: 39,16 - 9629: 39,17 - 9639: 39,19 - 9640: 39,20 - 9641: 39,21 - 9642: 39,22 - 9643: 39,23 - 9655: 39,31 - 9656: 39,32 - 9657: 39,33 - 9658: 39,34 - 9659: 39,35 - 9680: 24,39 - 9864: 12,-31 - 9865: 12,-30 - 9866: 12,-29 - 12582: -30,-29 - 12595: -26,-29 - 12598: -22,-29 - 13098: 20,39 - 13343: 50,37 - 13355: 30,27 - 13359: 30,39 - 13545: 9,-36 - 13546: 9,-35 - 13547: 9,-34 - 13685: -2,24 - 13686: -2,23 - 13687: -2,22 - 13688: 2,24 - 13689: 2,23 - 13690: 2,22 - 13691: 2,-23 - 13692: 2,-22 - 13693: 2,-21 - 13694: -2,-23 - 13695: -2,-22 - 13696: -2,-21 - 13804: -73,1 - 13814: -38,24 - 13815: -38,23 - 13816: -38,21 - 13817: -38,20 - 13818: -42,17 - 13819: -42,18 - 13820: -42,19 - 13821: -42,20 - 16211: 39,10 - 16330: 64,0 - 16331: 64,-1 - 16332: 64,-2 - 16333: 64,-3 - 16334: 64,-4 - 16400: 72,0 - 16401: 72,-2 - 16402: 72,-4 - 16509: 55,-2 - 16529: -26,-87 - 18163: -38,40 - 18164: -38,39 - 20303: -108,42 - 20306: -108,66 - 20349: -108,58 - 20350: -108,50 + 1301: -47,47 + 1306: -42,46 + 1307: -42,47 + 1308: -42,48 + 1309: -47,49 + 1315: -38,42 + 1316: -38,43 + 1317: -38,44 + 1387: -47,46 + 1408: -17,33 + 1409: -17,32 + 1410: -17,31 + 1411: -17,30 + 1417: -17,29 + 2566: -91,9 + 2674: 10,-6 + 3323: -3,42 + 3324: -3,43 + 3325: -3,45 + 3326: -3,44 + 3341: -3,46 + 3698: -47,31 + 3699: -47,32 + 3700: -47,35 + 3701: -47,36 + 3975: -42,5 + 3976: -42,4 + 3977: -42,10 + 4039: -42,9 + 4089: -43,4 + 4090: -43,5 + 4091: -43,6 + 4092: -43,7 + 4093: -43,8 + 4094: -43,9 + 4095: -43,10 + 4564: 9,27 + 5650: -19,-46 + 5651: -19,-47 + 5673: -19,-47 + 6067: 12,-55 + 6068: 12,-54 + 6069: 15,-55 + 6070: 15,-54 + 6071: 18,-61 + 6072: 18,-62 + 6073: 12,-62 + 6074: 12,-61 + 7868: 35,43 + 7869: 35,44 + 7870: 35,45 + 7871: 35,46 + 7964: 20,38 + 7981: 20,37 + 7982: 39,37 + 7983: 37,39 + 7984: 50,29 + 7985: 48,27 + 9066: 20,35 + 9067: 20,34 + 9068: 20,33 + 9069: 20,32 + 9072: 20,31 + 9172: 24,27 + 9257: 43,27 + 9268: 50,32 + 9269: 50,33 + 9271: 50,34 + 9272: 50,31 + 9293: 50,38 + 9294: 50,36 + 9323: 20,23 + 9324: 20,22 + 9325: 20,21 + 9350: 39,12 + 9351: 39,11 + 9359: 39,14 + 9360: 39,15 + 9361: 39,16 + 9362: 39,17 + 9372: 39,19 + 9373: 39,20 + 9374: 39,21 + 9375: 39,22 + 9376: 39,23 + 9388: 39,31 + 9389: 39,32 + 9390: 39,33 + 9391: 39,34 + 9392: 39,35 + 9413: 24,39 + 9597: 12,-31 + 9598: 12,-30 + 9599: 12,-29 + 12315: -30,-29 + 12328: -26,-29 + 12331: -22,-29 + 12831: 20,39 + 13076: 50,37 + 13088: 30,27 + 13092: 30,39 + 13278: 9,-36 + 13279: 9,-35 + 13280: 9,-34 + 13418: -2,24 + 13419: -2,23 + 13420: -2,22 + 13421: 2,24 + 13422: 2,23 + 13423: 2,22 + 13424: 2,-23 + 13425: 2,-22 + 13426: 2,-21 + 13427: -2,-23 + 13428: -2,-22 + 13429: -2,-21 + 13537: -73,1 + 13547: -38,24 + 13548: -38,23 + 13549: -38,21 + 13550: -38,20 + 13551: -42,17 + 13552: -42,18 + 13553: -42,19 + 13554: -42,20 + 15944: 39,10 + 16063: 64,0 + 16064: 64,-1 + 16065: 64,-2 + 16066: 64,-3 + 16067: 64,-4 + 16133: 72,0 + 16134: 72,-2 + 16135: 72,-4 + 16242: 55,-2 + 16262: -26,-87 + 17896: -38,40 + 17897: -38,39 + 19941: -108,42 + 19944: -108,66 + 19987: -108,58 + 19988: -108,50 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 9788: 12,-29 - 9789: 12,-30 - 9790: 12,-31 - 18103: -18,-29 + 9521: 12,-29 + 9522: 12,-30 + 9523: 12,-31 + 17836: -18,-29 - node: color: '#898989FF' id: GrayConcreteTrimLineN decals: - 16531: -27,-86 - 16532: -28,-86 - 16533: -28,-86 - 16534: -29,-86 + 16264: -27,-86 + 16265: -28,-86 + 16266: -28,-86 + 16267: -29,-86 - node: color: '#D381C9FF' id: GrayConcreteTrimLineN decals: - 7187: 45,-41 - 7188: 45,-37 + 6920: 45,-41 + 6921: 45,-37 - node: color: '#DAD9E6FF' id: GrayConcreteTrimLineN decals: - 4246: -50,12 - 4271: -50,11 - 4272: -49,11 - 4273: -48,11 - 4274: -47,11 + 4049: -50,12 + 4074: -50,11 + 4075: -49,11 + 4076: -48,11 + 4077: -47,11 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN @@ -13114,630 +13114,630 @@ entities: 13: -95,15 18: -96,11 19: -97,11 - 1453: -18,34 - 1668: -49,57 - 1669: -47,57 - 1672: -41,57 - 1673: -40,57 - 1674: -39,57 - 1678: -48,57 - 3508: -9,29 - 3509: -8,29 - 3510: -7,29 - 3511: -6,29 - 3512: -5,29 - 3513: -4,29 - 3552: -12,25 - 3553: -11,25 - 3554: -10,25 - 3555: -9,25 - 3640: -19,25 - 3641: -18,25 - 3642: -17,25 - 3878: -15,32 - 3879: -12,32 - 4133: -40,38 - 4178: -44,2 - 4179: -45,2 - 4180: -49,2 - 4181: -50,2 - 4239: -50,12 - 4252: -50,12 - 4293: -45,11 - 4294: -44,11 - 4299: -47,8 - 4300: -46,8 - 4548: -95,66 - 4549: -94,66 - 4550: -93,66 - 4551: -93,42 - 4552: -94,42 - 4553: -95,42 - 4756: 10,26 - 4757: 11,26 - 4758: 12,26 - 4759: 13,26 - 4760: 14,26 - 5356: -20,62 - 5357: -19,62 - 5358: -18,62 - 5849: -26,-45 - 5850: -25,-45 - 5851: -24,-45 - 5852: -23,-45 - 5853: -22,-45 - 5854: -20,-45 - 5855: -20,-45 - 5858: -21,-45 - 6566: 26,25 - 6567: 27,25 - 6568: 28,25 - 6569: 29,25 - 8232: 50,26 - 8233: 51,26 - 8245: 21,36 - 8246: 40,36 - 8247: 49,26 - 8258: 38,38 - 9365: 21,30 - 9434: 25,26 - 9435: 26,26 - 9436: 27,26 - 9437: 28,26 - 9438: 29,26 - 9456: 32,26 - 9457: 33,26 - 9460: 34,26 - 9462: 35,26 - 9463: 36,26 - 9517: 44,26 - 9519: 45,26 - 9521: 46,26 - 9522: 47,26 - 9545: 51,30 - 9566: 51,35 - 9594: 21,20 - 9619: 40,9 - 9635: 40,13 - 9650: 40,18 - 9665: 40,30 - 9670: 33,38 - 9671: 32,38 - 9672: 34,38 - 9673: 35,38 - 9674: 36,38 - 13346: 29,38 - 13347: 28,38 - 13348: 27,38 - 13349: 26,38 - 13350: 25,38 - 13351: 23,38 - 13353: 31,26 - 13358: 31,38 - 13652: -7,20 - 13653: -6,20 - 13654: -5,20 - 13655: -3,21 - 13656: 3,21 - 13657: 5,20 - 13658: 6,20 - 13659: 7,20 - 13660: 7,-19 - 13661: 6,-19 - 13662: 5,-19 - 13663: 3,-20 - 13664: -7,-19 - 13665: -6,-19 - 13666: -5,-19 - 13667: -3,-20 - 13764: -87,11 - 13765: -85,11 - 13822: -52,29 - 13823: -51,29 - 13824: -50,29 - 14562: 15,-28 - 14563: 16,-28 - 14564: 17,-28 - 16295: 65,-5 - 16296: 66,-5 - 16297: 67,-5 - 16298: 68,-5 - 16299: 69,-5 - 16300: 70,-5 - 16301: 71,-5 - 16302: 72,-5 - 16303: 73,-5 - 16304: 74,-5 - 16305: 75,-5 - 16306: 76,-5 - 16307: 77,-5 - 16308: 78,-5 - 16309: 79,-5 - 16367: 65,-1 - 16368: 66,-1 - 16369: 67,-1 - 16370: 68,-1 - 16371: 69,-1 - 16372: 70,-1 - 16373: 71,-1 - 16374: 73,-1 - 16375: 74,-1 - 16376: 75,-1 - 16377: 76,-1 - 16378: 77,-1 - 16379: 78,-1 - 16380: 79,-1 - 16381: 79,-3 - 16382: 78,-3 - 16383: 77,-3 - 16384: 76,-3 - 16385: 75,-3 - 16386: 74,-3 - 16387: 73,-3 - 16388: 65,-3 - 16389: 66,-3 - 16390: 67,-3 - 16391: 68,-3 - 16392: 69,-3 - 16393: 70,-3 - 16394: 71,-3 - 16503: 55,1 - 16504: 56,1 - 16505: 57,1 - 16523: -29,-86 - 16524: -28,-86 - 16525: -27,-86 - 16526: -27,-86 - 16527: -27,-86 - 20094: 4,-28 - 20319: -104,68 - 20320: -103,68 - 20321: -104,40 - 20322: -103,40 + 1406: -18,34 + 1621: -49,57 + 1622: -47,57 + 1625: -41,57 + 1626: -40,57 + 1627: -39,57 + 1631: -48,57 + 3461: -9,29 + 3462: -8,29 + 3463: -7,29 + 3464: -6,29 + 3465: -5,29 + 3466: -4,29 + 3505: -12,25 + 3506: -11,25 + 3507: -10,25 + 3508: -9,25 + 3593: -19,25 + 3594: -18,25 + 3595: -17,25 + 3753: -15,32 + 3754: -12,32 + 3943: -40,38 + 3981: -44,2 + 3982: -45,2 + 3983: -49,2 + 3984: -50,2 + 4042: -50,12 + 4055: -50,12 + 4096: -45,11 + 4097: -44,11 + 4102: -47,8 + 4103: -46,8 + 4351: -95,66 + 4352: -94,66 + 4353: -93,66 + 4354: -93,42 + 4355: -94,42 + 4356: -95,42 + 4559: 10,26 + 4560: 11,26 + 4561: 12,26 + 4562: 13,26 + 4563: 14,26 + 5159: -20,62 + 5160: -19,62 + 5161: -18,62 + 5652: -26,-45 + 5653: -25,-45 + 5654: -24,-45 + 5655: -23,-45 + 5656: -22,-45 + 5657: -20,-45 + 5658: -20,-45 + 5661: -21,-45 + 6317: 26,25 + 6318: 27,25 + 6319: 28,25 + 6320: 29,25 + 7965: 50,26 + 7966: 51,26 + 7978: 21,36 + 7979: 40,36 + 7980: 49,26 + 7991: 38,38 + 9098: 21,30 + 9167: 25,26 + 9168: 26,26 + 9169: 27,26 + 9170: 28,26 + 9171: 29,26 + 9189: 32,26 + 9190: 33,26 + 9193: 34,26 + 9195: 35,26 + 9196: 36,26 + 9250: 44,26 + 9252: 45,26 + 9254: 46,26 + 9255: 47,26 + 9278: 51,30 + 9299: 51,35 + 9327: 21,20 + 9352: 40,9 + 9368: 40,13 + 9383: 40,18 + 9398: 40,30 + 9403: 33,38 + 9404: 32,38 + 9405: 34,38 + 9406: 35,38 + 9407: 36,38 + 13079: 29,38 + 13080: 28,38 + 13081: 27,38 + 13082: 26,38 + 13083: 25,38 + 13084: 23,38 + 13086: 31,26 + 13091: 31,38 + 13385: -7,20 + 13386: -6,20 + 13387: -5,20 + 13388: -3,21 + 13389: 3,21 + 13390: 5,20 + 13391: 6,20 + 13392: 7,20 + 13393: 7,-19 + 13394: 6,-19 + 13395: 5,-19 + 13396: 3,-20 + 13397: -7,-19 + 13398: -6,-19 + 13399: -5,-19 + 13400: -3,-20 + 13497: -87,11 + 13498: -85,11 + 13555: -52,29 + 13556: -51,29 + 13557: -50,29 + 14295: 15,-28 + 14296: 16,-28 + 14297: 17,-28 + 16028: 65,-5 + 16029: 66,-5 + 16030: 67,-5 + 16031: 68,-5 + 16032: 69,-5 + 16033: 70,-5 + 16034: 71,-5 + 16035: 72,-5 + 16036: 73,-5 + 16037: 74,-5 + 16038: 75,-5 + 16039: 76,-5 + 16040: 77,-5 + 16041: 78,-5 + 16042: 79,-5 + 16100: 65,-1 + 16101: 66,-1 + 16102: 67,-1 + 16103: 68,-1 + 16104: 69,-1 + 16105: 70,-1 + 16106: 71,-1 + 16107: 73,-1 + 16108: 74,-1 + 16109: 75,-1 + 16110: 76,-1 + 16111: 77,-1 + 16112: 78,-1 + 16113: 79,-1 + 16114: 79,-3 + 16115: 78,-3 + 16116: 77,-3 + 16117: 76,-3 + 16118: 75,-3 + 16119: 74,-3 + 16120: 73,-3 + 16121: 65,-3 + 16122: 66,-3 + 16123: 67,-3 + 16124: 68,-3 + 16125: 69,-3 + 16126: 70,-3 + 16127: 71,-3 + 16236: 55,1 + 16237: 56,1 + 16238: 57,1 + 16256: -29,-86 + 16257: -28,-86 + 16258: -27,-86 + 16259: -27,-86 + 16260: -27,-86 + 19827: 4,-28 + 19957: -104,68 + 19958: -103,68 + 19959: -104,40 + 19960: -103,40 - node: color: '#898989FF' id: GrayConcreteTrimLineS decals: - 16540: -28,-91 - 16541: -29,-91 - 16542: -29,-91 + 16273: -28,-91 + 16274: -29,-91 + 16275: -29,-91 - node: color: '#ACACACFF' id: GrayConcreteTrimLineS decals: - 5365: -19,62 - 5366: -18,62 + 5168: -19,62 + 5169: -18,62 - node: color: '#D381C9FF' id: GrayConcreteTrimLineS decals: - 7183: 45,-50 - 7184: 45,-46 - 7185: 46,-46 - 7190: 47,-39 - 7195: 50,-43 + 6916: 45,-50 + 6917: 45,-46 + 6918: 46,-46 + 6923: 47,-39 + 6928: 50,-43 - node: color: '#DAD9E6FF' id: GrayConcreteTrimLineS decals: - 4247: -51,13 - 4248: -50,13 - 4249: -49,13 - 4253: -46,9 - 4254: -47,9 - 4255: -48,9 + 4050: -51,13 + 4051: -50,13 + 4052: -49,13 + 4056: -46,9 + 4057: -47,9 + 4058: -48,9 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 1670: -49,57 - 1671: -47,57 - 1675: -41,57 - 1676: -40,57 - 1677: -39,57 - 1679: -48,57 - 3517: -9,29 - 3518: -8,29 - 3519: -6,29 - 3520: -7,29 - 3521: -5,29 - 3522: -4,29 - 3548: -12,25 - 3549: -11,25 - 3550: -10,25 - 3551: -9,25 - 3637: -18,25 - 3638: -17,25 - 3639: -19,25 - 3876: -15,32 - 3877: -12,32 - 4134: -40,38 - 4182: -44,2 - 4183: -45,2 - 4184: -49,2 - 4185: -50,2 - 4238: -50,12 - 4279: -50,3 - 4280: -49,3 - 4281: -48,3 - 4282: -47,3 - 4283: -46,3 - 4284: -45,3 - 4285: -44,3 - 4542: -95,42 - 4543: -94,42 - 4544: -93,42 - 4545: -93,66 - 4546: -94,66 - 4547: -95,66 - 4750: 12,28 - 4751: 10,28 - 4752: 11,28 - 4753: 12,28 - 4754: 13,28 - 4755: 14,28 - 6570: 26,25 - 6571: 27,25 - 6572: 28,25 - 6573: 29,25 - 8238: 21,40 - 8239: 22,40 - 8240: 23,40 - 8241: 38,40 - 8242: 39,40 - 8243: 40,40 - 8244: 51,30 - 8261: 49,28 - 9401: 21,36 - 9440: 25,28 - 9441: 26,28 - 9442: 27,28 - 9443: 28,28 - 9444: 29,28 - 9495: 32,28 - 9496: 33,28 - 9497: 34,28 - 9498: 35,28 - 9499: 36,28 - 9506: 44,28 - 9507: 45,28 - 9508: 46,28 - 9510: 47,28 - 9542: 51,35 - 9565: 51,39 - 9605: 21,24 - 9622: 40,13 - 9630: 40,18 - 9644: 40,24 - 9660: 40,36 - 9675: 25,40 - 9676: 26,40 - 9677: 27,40 - 9678: 28,40 - 9679: 29,40 - 9681: 32,40 - 9682: 33,40 - 9683: 34,40 - 9684: 35,40 - 9685: 36,40 - 9862: 10,-32 - 9863: 11,-32 - 12584: -31,-30 - 12592: -27,-30 - 12600: -23,-30 - 12601: -19,-30 - 13354: 31,28 - 13360: 31,40 - 13669: -7,-19 - 13670: -6,-19 - 13671: -5,-19 - 13672: -3,-20 - 13673: 3,-20 - 13674: 5,-19 - 13675: 6,-19 - 13676: 7,-19 - 13677: 7,20 - 13678: 6,20 - 13679: 5,20 - 13680: 3,21 - 13681: -7,20 - 13682: -6,20 - 13683: -5,20 - 13684: -3,21 - 13766: -87,11 - 13767: -85,11 - 13825: -52,29 - 13826: -51,29 - 13827: -50,29 - 14565: 15,-28 - 14566: 16,-28 - 14567: 17,-28 - 16315: 79,1 - 16316: 78,1 - 16317: 77,1 - 16318: 76,1 - 16319: 75,1 - 16320: 74,1 - 16321: 73,1 - 16322: 72,1 - 16323: 71,1 - 16324: 70,1 - 16325: 69,1 - 16326: 68,1 - 16327: 67,1 - 16328: 66,1 - 16329: 65,1 - 16339: 65,-3 - 16340: 66,-3 - 16341: 67,-3 - 16342: 68,-3 - 16343: 69,-3 - 16344: 70,-3 - 16345: 71,-3 - 16346: 73,-3 - 16347: 74,-3 - 16348: 75,-3 - 16349: 76,-3 - 16350: 77,-3 - 16351: 78,-3 - 16352: 79,-3 - 16353: 79,-1 - 16354: 78,-1 - 16355: 77,-1 - 16356: 76,-1 - 16357: 75,-1 - 16358: 74,-1 - 16359: 73,-1 - 16360: 65,-1 - 16361: 66,-1 - 16362: 67,-1 - 16363: 68,-1 - 16364: 69,-1 - 16365: 70,-1 - 16366: 71,-1 - 16507: 56,-1 - 16508: 57,-1 - 16513: -30,-91 - 16514: -29,-91 - 16515: -28,-91 - 20095: 4,-28 - 20317: -104,68 - 20318: -103,68 - 20323: -104,40 - 20324: -103,40 + 1623: -49,57 + 1624: -47,57 + 1628: -41,57 + 1629: -40,57 + 1630: -39,57 + 1632: -48,57 + 3470: -9,29 + 3471: -8,29 + 3472: -6,29 + 3473: -7,29 + 3474: -5,29 + 3475: -4,29 + 3501: -12,25 + 3502: -11,25 + 3503: -10,25 + 3504: -9,25 + 3590: -18,25 + 3591: -17,25 + 3592: -19,25 + 3751: -15,32 + 3752: -12,32 + 3944: -40,38 + 3985: -44,2 + 3986: -45,2 + 3987: -49,2 + 3988: -50,2 + 4041: -50,12 + 4082: -50,3 + 4083: -49,3 + 4084: -48,3 + 4085: -47,3 + 4086: -46,3 + 4087: -45,3 + 4088: -44,3 + 4345: -95,42 + 4346: -94,42 + 4347: -93,42 + 4348: -93,66 + 4349: -94,66 + 4350: -95,66 + 4553: 12,28 + 4554: 10,28 + 4555: 11,28 + 4556: 12,28 + 4557: 13,28 + 4558: 14,28 + 6321: 26,25 + 6322: 27,25 + 6323: 28,25 + 6324: 29,25 + 7971: 21,40 + 7972: 22,40 + 7973: 23,40 + 7974: 38,40 + 7975: 39,40 + 7976: 40,40 + 7977: 51,30 + 7994: 49,28 + 9134: 21,36 + 9173: 25,28 + 9174: 26,28 + 9175: 27,28 + 9176: 28,28 + 9177: 29,28 + 9228: 32,28 + 9229: 33,28 + 9230: 34,28 + 9231: 35,28 + 9232: 36,28 + 9239: 44,28 + 9240: 45,28 + 9241: 46,28 + 9243: 47,28 + 9275: 51,35 + 9298: 51,39 + 9338: 21,24 + 9355: 40,13 + 9363: 40,18 + 9377: 40,24 + 9393: 40,36 + 9408: 25,40 + 9409: 26,40 + 9410: 27,40 + 9411: 28,40 + 9412: 29,40 + 9414: 32,40 + 9415: 33,40 + 9416: 34,40 + 9417: 35,40 + 9418: 36,40 + 9595: 10,-32 + 9596: 11,-32 + 12317: -31,-30 + 12325: -27,-30 + 12333: -23,-30 + 12334: -19,-30 + 13087: 31,28 + 13093: 31,40 + 13402: -7,-19 + 13403: -6,-19 + 13404: -5,-19 + 13405: -3,-20 + 13406: 3,-20 + 13407: 5,-19 + 13408: 6,-19 + 13409: 7,-19 + 13410: 7,20 + 13411: 6,20 + 13412: 5,20 + 13413: 3,21 + 13414: -7,20 + 13415: -6,20 + 13416: -5,20 + 13417: -3,21 + 13499: -87,11 + 13500: -85,11 + 13558: -52,29 + 13559: -51,29 + 13560: -50,29 + 14298: 15,-28 + 14299: 16,-28 + 14300: 17,-28 + 16048: 79,1 + 16049: 78,1 + 16050: 77,1 + 16051: 76,1 + 16052: 75,1 + 16053: 74,1 + 16054: 73,1 + 16055: 72,1 + 16056: 71,1 + 16057: 70,1 + 16058: 69,1 + 16059: 68,1 + 16060: 67,1 + 16061: 66,1 + 16062: 65,1 + 16072: 65,-3 + 16073: 66,-3 + 16074: 67,-3 + 16075: 68,-3 + 16076: 69,-3 + 16077: 70,-3 + 16078: 71,-3 + 16079: 73,-3 + 16080: 74,-3 + 16081: 75,-3 + 16082: 76,-3 + 16083: 77,-3 + 16084: 78,-3 + 16085: 79,-3 + 16086: 79,-1 + 16087: 78,-1 + 16088: 77,-1 + 16089: 76,-1 + 16090: 75,-1 + 16091: 74,-1 + 16092: 73,-1 + 16093: 65,-1 + 16094: 66,-1 + 16095: 67,-1 + 16096: 68,-1 + 16097: 69,-1 + 16098: 70,-1 + 16099: 71,-1 + 16240: 56,-1 + 16241: 57,-1 + 16246: -30,-91 + 16247: -29,-91 + 16248: -28,-91 + 19828: 4,-28 + 19955: -104,68 + 19956: -103,68 + 19961: -104,40 + 19962: -103,40 - node: cleanable: True color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 9792: 10,-32 - 9793: 11,-32 + 9525: 10,-32 + 9526: 11,-32 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 5353: -17,65 - 5354: -17,64 - 5355: -17,63 + 5156: -17,65 + 5157: -17,64 + 5158: -17,63 - node: color: '#898989FF' id: GrayConcreteTrimLineW decals: - 16535: -30,-87 - 16536: -30,-88 - 16537: -30,-89 - 16538: -30,-90 - 16539: -30,-90 + 16268: -30,-87 + 16269: -30,-88 + 16270: -30,-89 + 16271: -30,-90 + 16272: -30,-90 - node: color: '#DAD9E6FF' id: GrayConcreteTrimLineW decals: - 4243: -51,15 - 4244: -51,14 - 4245: -51,13 - 4262: -51,6 - 4265: -51,7 - 4266: -51,8 - 4267: -51,9 - 4268: -51,10 - 4269: -51,11 + 4046: -51,15 + 4047: -51,14 + 4048: -51,13 + 4065: -51,6 + 4068: -51,7 + 4069: -51,8 + 4070: -51,9 + 4071: -51,10 + 4072: -51,11 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: 9: -97,14 - 1349: -47,47 - 1350: -42,46 - 1351: -42,47 - 1352: -42,48 - 1358: -47,49 - 1365: -38,42 - 1366: -38,43 - 1367: -38,44 - 1435: -47,46 - 1459: -19,30 - 1460: -19,33 - 1463: -19,29 - 2722: 10,-6 - 3374: -9,42 - 3375: -9,43 - 3376: -9,44 - 3377: -9,46 - 3378: -9,45 - 3749: -47,35 - 3750: -47,36 - 3751: -47,32 - 3752: -47,31 - 4175: -42,10 - 4176: -42,5 - 4177: -42,4 - 4237: -42,9 - 4276: -51,5 - 4277: -51,4 - 4298: -48,7 - 4762: 15,27 - 5901: -27,-46 - 5902: -27,-47 - 6322: 12,-61 - 6323: 12,-62 - 6324: 12,-55 - 6325: 12,-54 - 6326: 15,-54 - 6327: 15,-55 - 6328: 18,-62 - 6329: 18,-61 - 8139: 34,43 - 8140: 34,44 - 8141: 34,45 - 8142: 34,46 - 8234: 52,27 - 8235: 52,28 - 8236: 41,38 - 8237: 41,39 - 8253: 52,29 - 8254: 41,37 - 8255: 24,39 - 8256: 22,37 - 9377: 22,31 - 9379: 22,32 - 9386: 22,33 - 9389: 22,34 - 9393: 22,35 - 9445: 30,27 - 9480: 37,27 - 9513: 48,27 - 9548: 52,31 - 9549: 52,32 - 9551: 52,33 - 9552: 52,34 - 9562: 52,38 - 9563: 52,37 - 9564: 52,36 - 9601: 22,21 - 9602: 22,22 - 9603: 22,23 - 9620: 41,10 - 9621: 41,11 - 9631: 41,17 - 9632: 41,16 - 9633: 41,15 - 9634: 41,14 - 9645: 41,23 - 9646: 41,21 - 9647: 41,22 - 9648: 41,19 - 9649: 41,20 - 9661: 41,34 - 9662: 41,33 - 9663: 41,32 - 9664: 41,31 - 9686: 37,39 - 12586: -32,-29 - 12587: -28,-29 - 12588: -24,-29 - 12589: -20,-29 - 13344: 30,39 - 13345: 41,35 - 13548: 9,-36 - 13549: 9,-35 - 13550: 9,-34 - 13708: -2,-23 - 13709: -2,-22 - 13710: -2,-21 - 13711: 2,-23 - 13712: 2,-22 - 13713: 2,-21 - 13714: 2,22 - 13715: 2,23 - 13716: 2,24 - 13717: -2,22 - 13718: -2,23 - 13719: -2,24 - 13805: -73,1 - 13806: -42,17 - 13807: -42,18 - 13808: -42,19 - 13809: -42,20 - 13810: -38,20 - 13811: -38,21 - 13812: -38,23 - 13813: -38,24 - 15686: 41,12 - 16310: 80,-4 - 16311: 80,-3 - 16312: 80,-2 - 16313: 80,-1 - 16314: 80,0 - 16397: 72,-2 - 16398: 72,-4 - 16399: 72,0 - 16517: -30,-90 - 16518: -30,-89 - 16519: -30,-88 - 16520: -30,-87 - 16521: -30,-87 - 18165: -38,40 - 18166: -38,39 - 20304: -108,42 - 20305: -108,66 - 20351: -108,50 - 20352: -108,58 + 1302: -47,47 + 1303: -42,46 + 1304: -42,47 + 1305: -42,48 + 1311: -47,49 + 1318: -38,42 + 1319: -38,43 + 1320: -38,44 + 1388: -47,46 + 1412: -19,30 + 1413: -19,33 + 1416: -19,29 + 2675: 10,-6 + 3327: -9,42 + 3328: -9,43 + 3329: -9,44 + 3330: -9,46 + 3331: -9,45 + 3702: -47,35 + 3703: -47,36 + 3704: -47,32 + 3705: -47,31 + 3978: -42,10 + 3979: -42,5 + 3980: -42,4 + 4040: -42,9 + 4079: -51,5 + 4080: -51,4 + 4101: -48,7 + 4565: 15,27 + 5704: -27,-46 + 5705: -27,-47 + 6075: 12,-61 + 6076: 12,-62 + 6077: 12,-55 + 6078: 12,-54 + 6079: 15,-54 + 6080: 15,-55 + 6081: 18,-62 + 6082: 18,-61 + 7872: 34,43 + 7873: 34,44 + 7874: 34,45 + 7875: 34,46 + 7967: 52,27 + 7968: 52,28 + 7969: 41,38 + 7970: 41,39 + 7986: 52,29 + 7987: 41,37 + 7988: 24,39 + 7989: 22,37 + 9110: 22,31 + 9112: 22,32 + 9119: 22,33 + 9122: 22,34 + 9126: 22,35 + 9178: 30,27 + 9213: 37,27 + 9246: 48,27 + 9281: 52,31 + 9282: 52,32 + 9284: 52,33 + 9285: 52,34 + 9295: 52,38 + 9296: 52,37 + 9297: 52,36 + 9334: 22,21 + 9335: 22,22 + 9336: 22,23 + 9353: 41,10 + 9354: 41,11 + 9364: 41,17 + 9365: 41,16 + 9366: 41,15 + 9367: 41,14 + 9378: 41,23 + 9379: 41,21 + 9380: 41,22 + 9381: 41,19 + 9382: 41,20 + 9394: 41,34 + 9395: 41,33 + 9396: 41,32 + 9397: 41,31 + 9419: 37,39 + 12319: -32,-29 + 12320: -28,-29 + 12321: -24,-29 + 12322: -20,-29 + 13077: 30,39 + 13078: 41,35 + 13281: 9,-36 + 13282: 9,-35 + 13283: 9,-34 + 13441: -2,-23 + 13442: -2,-22 + 13443: -2,-21 + 13444: 2,-23 + 13445: 2,-22 + 13446: 2,-21 + 13447: 2,22 + 13448: 2,23 + 13449: 2,24 + 13450: -2,22 + 13451: -2,23 + 13452: -2,24 + 13538: -73,1 + 13539: -42,17 + 13540: -42,18 + 13541: -42,19 + 13542: -42,20 + 13543: -38,20 + 13544: -38,21 + 13545: -38,23 + 13546: -38,24 + 15419: 41,12 + 16043: 80,-4 + 16044: 80,-3 + 16045: 80,-2 + 16046: 80,-1 + 16047: 80,0 + 16130: 72,-2 + 16131: 72,-4 + 16132: 72,0 + 16250: -30,-90 + 16251: -30,-89 + 16252: -30,-88 + 16253: -30,-87 + 16254: -30,-87 + 17898: -38,40 + 17899: -38,39 + 19942: -108,42 + 19943: -108,66 + 19989: -108,50 + 19990: -108,58 - node: color: '#4B709CFF' id: HalfTileOverlayGreyscale decals: - 16555: -31,-84 - 16556: -30,-84 - 16557: -29,-84 + 16288: -31,-84 + 16289: -30,-84 + 16290: -29,-84 - node: zIndex: 90 color: '#6E6E6EFF' id: HalfTileOverlayGreyscale decals: - 12917: 80,-64 + 12650: 80,-64 - node: color: '#808080FF' id: HalfTileOverlayGreyscale decals: - 17583: -42,104 + 17316: -42,104 - node: color: '#9FED58FF' id: HalfTileOverlayGreyscale decals: - 15682: 44,-3 - 15683: 45,-3 + 15415: 44,-3 + 15416: 45,-3 - node: color: '#CA8C1898' id: HalfTileOverlayGreyscale decals: - 18251: 49,2 + 17984: 49,2 - node: color: '#334E6DFF' id: HalfTileOverlayGreyscale180 decals: - 16558: -29,-84 - 16559: -30,-84 + 16291: -29,-84 + 16292: -30,-84 - node: color: '#808080FF' id: HalfTileOverlayGreyscale180 decals: - 17585: -44,98 + 17318: -44,98 - node: color: '#9FED58FF' id: HalfTileOverlayGreyscale180 decals: - 15664: 44,-5 - 15666: 45,-5 + 15397: 44,-5 + 15399: 45,-5 - node: color: '#CA8C1898' id: HalfTileOverlayGreyscale180 decals: - 18256: 49,1 - 18257: 50,1 - 18258: 50,0 - 18259: 49,-1 - 18260: 50,-1 + 17989: 49,1 + 17990: 50,1 + 17991: 50,0 + 17992: 49,-1 + 17993: 50,-1 - node: color: '#D381C9CC' id: HalfTileOverlayGreyscale180 @@ -13749,29 +13749,29 @@ entities: color: '#4B709CFF' id: HalfTileOverlayGreyscale270 decals: - 16546: -31,-91 - 16547: -31,-90 - 16548: -31,-88 - 16549: -31,-89 - 16550: -31,-87 - 16551: -31,-86 - 16552: -31,-85 - 16553: -31,-85 - 16554: -31,-84 + 16279: -31,-91 + 16280: -31,-90 + 16281: -31,-88 + 16282: -31,-89 + 16283: -31,-87 + 16284: -31,-86 + 16285: -31,-85 + 16286: -31,-85 + 16287: -31,-84 - node: color: '#808080FF' id: HalfTileOverlayGreyscale270 decals: - 17584: -49,103 + 17317: -49,103 - node: color: '#955922B2' id: HalfTileOverlayGreyscale270 decals: - 18265: 48,-2 - 18266: 48,-1 - 18267: 48,0 - 18268: 48,1 - 18269: 48,2 + 17998: 48,-2 + 17999: 48,-1 + 18000: 48,0 + 18001: 48,1 + 18002: 48,2 - node: color: '#D381C9CC' id: HalfTileOverlayGreyscale270 @@ -13782,27 +13782,27 @@ entities: color: '#334E6DFF' id: HalfTileOverlayGreyscale90 decals: - 16560: -31,-85 - 16561: -31,-86 - 16562: -31,-87 - 16563: -31,-88 - 16564: -31,-89 - 16565: -31,-90 - 16566: -31,-90 - 16567: -31,-91 - 16568: -31,-91 + 16293: -31,-85 + 16294: -31,-86 + 16295: -31,-87 + 16296: -31,-88 + 16297: -31,-89 + 16298: -31,-90 + 16299: -31,-90 + 16300: -31,-91 + 16301: -31,-91 - node: color: '#9FED58FF' id: HalfTileOverlayGreyscale90 decals: - 15670: 46,-4 + 15403: 46,-4 - node: color: '#CA8C1898' id: HalfTileOverlayGreyscale90 decals: - 18250: 48,2 - 18262: 48,-2 - 18264: 50,-2 + 17983: 48,2 + 17995: 48,-2 + 17997: 50,-2 - node: color: '#D381C9CC' id: HalfTileOverlayGreyscale90 @@ -13813,1413 +13813,1413 @@ entities: color: '#A43A3A4D' id: HerringboneOverlay decals: - 17770: -40,97 - 17771: -40,96 - 17772: -40,95 - 17773: -40,94 + 17503: -40,97 + 17504: -40,96 + 17505: -40,95 + 17506: -40,94 - node: color: '#A43A3A91' id: HerringboneOverlay decals: - 17766: -40,97 - 17767: -40,96 - 17768: -40,95 - 17769: -40,94 + 17499: -40,97 + 17500: -40,96 + 17501: -40,95 + 17502: -40,94 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 4303: -42,8 - 13553: -42,-33 - 13554: -42,-31 + 4106: -42,8 + 13286: -42,-33 + 13287: -42,-31 - node: zIndex: 90 angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 12837: 89,-57 + 12570: 89,-57 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 2388: 66,-46 - 2389: 67,-46 - 2390: 68,-46 + 2341: 66,-46 + 2342: 67,-46 + 2343: 68,-46 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 4304: -42,6 - 8089: 43,35 - 8090: 43,37 - 8433: 69,49 - 8434: 69,50 + 4107: -42,6 + 7822: 43,35 + 7823: 43,37 + 8166: 69,49 + 8167: 69,50 - node: zIndex: 90 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 12836: 91,-57 + 12569: 91,-57 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 4305: -46,2 + 4108: -46,2 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 8091: 48,35 - 8092: 48,37 + 7824: 48,35 + 7825: 48,37 - node: color: '#000000C3' id: LoadingAreaGreyscale decals: - 3992: -42,32 - 3993: -42,35 + 3849: -42,32 + 3850: -42,35 - node: color: '#FFFFFFFF' id: Max decals: - 19661: -28.758524,-79.93474 + 19394: -28.758524,-79.93474 - node: zIndex: 1 color: '#334E6DC8' id: MiniTileCheckerAOverlay decals: - 21300: 22,-56 + 20532: 22,-56 - node: color: '#52B4E9FF' id: MiniTileCheckerAOverlay decals: - 6709: 13,-65 - 6710: 15,-65 - 6711: 14,-64 - 6712: 16,-64 - 6713: 14,-66 - 6714: 16,-66 - 6715: 15,-67 - 6716: 13,-67 - 6717: 14,-68 - 6730: 16,-68 - 14405: -7,-55 - 14406: -6,-55 - 14407: -6,-56 - 14408: -6,-54 - 14409: 6,-56 - 14410: 6,-55 - 14411: 6,-54 - 14412: 6,-46 - 14413: 6,-45 - 14414: 5,-45 - 14415: -6,-46 - 14416: -6,-45 - 14417: -5,-45 - 14418: -20,-56 - 14419: -20,-55 - 14420: -19,-55 - 14421: -21,-66 - 14422: -20,-66 - 14423: -20,-65 - 14424: -34,-66 - 14425: -6,-66 - 14426: 6,-66 - 14552: 0,-41 - 14553: 0,-40 - 14554: 1,-40 - 14555: 1,-41 + 6460: 13,-65 + 6461: 15,-65 + 6462: 14,-64 + 6463: 16,-64 + 6464: 14,-66 + 6465: 16,-66 + 6466: 15,-67 + 6467: 13,-67 + 6468: 14,-68 + 6481: 16,-68 + 14138: -7,-55 + 14139: -6,-55 + 14140: -6,-56 + 14141: -6,-54 + 14142: 6,-56 + 14143: 6,-55 + 14144: 6,-54 + 14145: 6,-46 + 14146: 6,-45 + 14147: 5,-45 + 14148: -6,-46 + 14149: -6,-45 + 14150: -5,-45 + 14151: -20,-56 + 14152: -20,-55 + 14153: -19,-55 + 14154: -21,-66 + 14155: -20,-66 + 14156: -20,-65 + 14157: -34,-66 + 14158: -6,-66 + 14159: 6,-66 + 14285: 0,-41 + 14286: 0,-40 + 14287: 1,-40 + 14288: 1,-41 - node: color: '#52B4E9FF' id: MiniTileCheckerBOverlay decals: - 6700: 14,-65 - 6701: 15,-66 - 6702: 14,-67 - 6703: 16,-65 - 6704: 15,-64 - 6705: 13,-66 - 6706: 13,-68 - 6707: 15,-68 - 6708: 16,-67 + 6451: 14,-65 + 6452: 15,-66 + 6453: 14,-67 + 6454: 16,-65 + 6455: 15,-64 + 6456: 13,-66 + 6457: 13,-68 + 6458: 15,-68 + 6459: 16,-67 - node: color: '#00C06AFF' id: MiniTileCornerOverlayNE decals: - 1803: -84,14 + 1756: -84,14 - node: zIndex: 1 color: '#334E6DC8' id: MiniTileCornerOverlayNE decals: - 21302: 23,-54 + 20534: 23,-54 - node: color: '#00C06AFF' id: MiniTileCornerOverlayNW decals: - 1804: -88,14 + 1757: -88,14 - node: zIndex: 1 color: '#334E6DC8' id: MiniTileCornerOverlayNW decals: - 21301: 22,-54 + 20533: 22,-54 - node: color: '#00C06AFF' id: MiniTileCornerOverlaySE decals: - 1805: -84,12 + 1758: -84,12 - node: zIndex: 1 color: '#334E6DC8' id: MiniTileCornerOverlaySE decals: - 21304: 23,-55 + 20536: 23,-55 - node: color: '#00C06AFF' id: MiniTileCornerOverlaySW decals: - 1806: -88,12 + 1759: -88,12 - node: zIndex: 1 color: '#334E6DC8' id: MiniTileCornerOverlaySW decals: - 21303: 22,-55 + 20535: 22,-55 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 2946: 71,-63 - 2970: 53,-63 - 21299: 23,-54 + 2899: 71,-63 + 2923: 53,-63 + 20531: 23,-54 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: - 12802: 102,-56 - 12823: 89,-54 + 12535: 102,-56 + 12556: 89,-54 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 2928: 49,-63 - 2945: 67,-63 - 21298: 22,-54 + 2881: 49,-63 + 2898: 67,-63 + 20530: 22,-54 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: - 12799: 94,-56 - 12821: 87,-55 - 12822: 88,-54 + 12532: 94,-56 + 12554: 87,-55 + 12555: 88,-54 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 2925: 53,-67 - 2944: 71,-67 - 21296: 23,-55 + 2878: 53,-67 + 2897: 71,-67 + 20528: 23,-55 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: - 12800: 102,-58 - 12818: 89,-60 + 12533: 102,-58 + 12551: 89,-60 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 2932: 49,-67 - 2947: 67,-67 - 21297: 22,-55 + 2885: 49,-67 + 2900: 67,-67 + 20529: 22,-55 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: - 12801: 94,-58 - 12819: 88,-60 - 12820: 87,-59 + 12534: 94,-58 + 12552: 88,-60 + 12553: 87,-59 - node: color: '#FFFFFFFF' id: MiniTileDarkEndN decals: - 9269: 111,-55 - 9270: 125,-55 - 9284: 125,-55 + 9002: 111,-55 + 9003: 125,-55 + 9017: 125,-55 - node: color: '#FFFFFFFF' id: MiniTileDarkEndS decals: - 9289: 125,-59 - 9312: 111,-59 + 9022: 125,-59 + 9045: 111,-59 - node: color: '#413D32FF' id: MiniTileDarkInnerNe decals: - 7871: 21,10 - 7872: 21,8 - 7873: 21,6 + 7604: 21,10 + 7605: 21,8 + 7606: 21,6 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: - 2926: 53,-64 - 2927: 52,-63 - 2942: 71,-64 - 2943: 70,-63 - 8054: 41,28 - 9295: 111,-56 + 2879: 53,-64 + 2880: 52,-63 + 2895: 71,-64 + 2896: 70,-63 + 7787: 41,28 + 9028: 111,-56 - node: color: '#413D32FF' id: MiniTileDarkInnerNw decals: - 7868: 26,6 - 7869: 26,8 - 7870: 26,10 + 7601: 26,6 + 7602: 26,8 + 7603: 26,10 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 2929: 50,-63 - 2934: 49,-64 - 2937: 67,-64 - 2938: 68,-63 - 8055: 49,28 - 9285: 125,-56 + 2882: 50,-63 + 2887: 49,-64 + 2890: 67,-64 + 2891: 68,-63 + 7788: 49,28 + 9018: 125,-56 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 12830: 88,-55 - 12831: 88,-55 + 12563: 88,-55 + 12564: 88,-55 - node: color: '#413D32FF' id: MiniTileDarkInnerSe decals: - 7865: 21,12 - 7866: 21,10 - 7867: 21,8 + 7598: 21,12 + 7599: 21,10 + 7600: 21,8 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 2940: 70,-67 - 2941: 71,-66 - 8056: 41,32 - 9314: 111,-58 + 2893: 70,-67 + 2894: 71,-66 + 7789: 41,32 + 9047: 111,-58 - node: color: '#413D32FF' id: MiniTileDarkInnerSw decals: - 7862: 26,8 - 7863: 26,10 - 7864: 26,12 + 7595: 26,8 + 7596: 26,10 + 7597: 26,12 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 2933: 50,-67 - 2935: 49,-66 - 2936: 67,-66 - 2939: 68,-67 - 9291: 125,-58 + 2886: 50,-67 + 2888: 49,-66 + 2889: 67,-66 + 2892: 68,-67 + 9024: 125,-58 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 12833: 88,-59 + 12566: 88,-59 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 2949: 68,-65 - 2954: 50,-65 - 8046: 41,31 - 8047: 41,30 - 9286: 125,-56 - 9287: 125,-57 - 9288: 125,-58 - 17801: -38,108 - 17802: -38,107 - 17803: -38,106 - 17804: -38,105 - 17805: -38,105 + 2902: 68,-65 + 2907: 50,-65 + 7779: 41,31 + 7780: 41,30 + 9019: 125,-56 + 9020: 125,-57 + 9021: 125,-58 + 17534: -38,108 + 17535: -38,107 + 17536: -38,106 + 17537: -38,105 + 17538: -38,105 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 12824: 89,-55 - 12825: 89,-59 - 12826: 89,-58 - 12827: 89,-57 - 12834: 89,-56 - 12835: 89,-56 + 12557: 89,-55 + 12558: 89,-59 + 12559: 89,-58 + 12560: 89,-57 + 12567: 89,-56 + 12568: 89,-56 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 2948: 69,-66 - 2955: 51,-66 - 3556: -4,-1 - 3559: 4,-1 - 8048: 43,28 - 8049: 44,28 - 8050: 45,28 - 8051: 46,28 - 8052: 47,28 - 8053: 48,28 - 9271: 112,-56 - 9272: 113,-56 - 9273: 114,-56 - 9274: 116,-56 - 9275: 115,-56 - 9276: 117,-56 - 9277: 118,-56 - 9278: 119,-56 - 9279: 120,-56 - 9280: 121,-56 - 9281: 122,-56 - 9282: 123,-56 - 9283: 124,-56 - 17799: -38,108 + 2901: 69,-66 + 2908: 51,-66 + 3509: -4,-1 + 3512: 4,-1 + 7781: 43,28 + 7782: 44,28 + 7783: 45,28 + 7784: 46,28 + 7785: 47,28 + 7786: 48,28 + 9004: 112,-56 + 9005: 113,-56 + 9006: 114,-56 + 9007: 116,-56 + 9008: 115,-56 + 9009: 117,-56 + 9010: 118,-56 + 9011: 119,-56 + 9012: 120,-56 + 9013: 121,-56 + 9014: 122,-56 + 9015: 123,-56 + 9016: 124,-56 + 17532: -38,108 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 12803: 95,-56 - 12804: 96,-56 - 12805: 97,-56 - 12806: 98,-56 - 12807: 99,-56 - 12808: 100,-56 - 12809: 101,-56 + 12536: 95,-56 + 12537: 96,-56 + 12538: 97,-56 + 12539: 98,-56 + 12540: 99,-56 + 12541: 100,-56 + 12542: 101,-56 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 2950: 69,-64 - 2953: 51,-64 - 3557: -4,-2 - 3558: 4,-2 - 9290: 124,-58 - 9297: 123,-58 - 9298: 122,-58 - 9299: 121,-58 - 9300: 120,-58 - 9302: 119,-58 - 9303: 118,-58 - 9306: 117,-58 - 9307: 116,-58 - 9308: 115,-58 - 9309: 114,-58 - 9310: 113,-58 - 9311: 112,-58 - 17800: -38,105 + 2903: 69,-64 + 2906: 51,-64 + 3510: -4,-2 + 3511: 4,-2 + 9023: 124,-58 + 9030: 123,-58 + 9031: 122,-58 + 9032: 121,-58 + 9033: 120,-58 + 9035: 119,-58 + 9036: 118,-58 + 9039: 117,-58 + 9040: 116,-58 + 9041: 115,-58 + 9042: 114,-58 + 9043: 113,-58 + 9044: 112,-58 + 17533: -38,105 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 12810: 95,-58 - 12811: 96,-58 - 12812: 97,-58 - 12813: 98,-58 - 12814: 99,-58 - 12815: 99,-58 - 12816: 101,-58 - 12817: 100,-58 + 12543: 95,-58 + 12544: 96,-58 + 12545: 97,-58 + 12546: 98,-58 + 12547: 99,-58 + 12548: 99,-58 + 12549: 101,-58 + 12550: 100,-58 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 2951: 70,-65 - 2952: 52,-65 - 9315: 111,-58 - 9316: 111,-57 - 9318: 111,-56 - 17793: -38,108 - 17794: -38,107 - 17795: -38,107 - 17796: -38,106 - 17797: -38,105 - 17798: -38,105 + 2904: 70,-65 + 2905: 52,-65 + 9048: 111,-58 + 9049: 111,-57 + 9051: 111,-56 + 17526: -38,108 + 17527: -38,107 + 17528: -38,107 + 17529: -38,106 + 17530: -38,105 + 17531: -38,105 - node: zIndex: 90 color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 12828: 87,-58 - 12829: 87,-57 - 12832: 87,-56 + 12561: 87,-58 + 12562: 87,-57 + 12565: 87,-56 - node: color: '#00000018' id: MiniTileDiagonalOverlay decals: - 4143: -30,31 + 3953: -30,31 - node: color: '#00000057' id: MiniTileDiagonalOverlay decals: - 4127: -35,50 - 4128: -36,50 - 4129: -36,49 - 4130: -35,49 - 4131: -35,48 - 4132: -36,48 + 3937: -35,50 + 3938: -36,50 + 3939: -36,49 + 3940: -35,49 + 3941: -35,48 + 3942: -36,48 - node: color: '#4A3519FF' id: MiniTileInnerOverlayNE decals: - 2661: -57,22 - 2700: -72,14 - 2701: -77,8 + 2614: -57,22 + 2653: -72,14 + 2654: -77,8 - node: color: '#DA8929FF' id: MiniTileInnerOverlayNE decals: - 4338: -88,52 + 4141: -88,52 - node: color: '#4A3519FF' id: MiniTileInnerOverlayNW decals: - 2660: -62,22 - 2685: -89,8 - 2686: -75,8 - 2690: -70,14 + 2613: -62,22 + 2638: -89,8 + 2639: -75,8 + 2643: -70,14 - node: color: '#DA8929FF' id: MiniTileInnerOverlayNW decals: - 4335: -84,52 + 4138: -84,52 - node: color: '#00C06AFF' id: MiniTileInnerOverlaySE decals: - 1811: -86,12 + 1764: -86,12 - node: color: '#4A3519FF' id: MiniTileInnerOverlaySE decals: - 2664: -57,17 - 2666: -64,17 - 2691: -72,16 - 2692: -77,10 - 2694: -72,4 + 2617: -57,17 + 2619: -64,17 + 2644: -72,16 + 2645: -77,10 + 2647: -72,4 - node: color: '#DA8929FF' id: MiniTileInnerOverlaySE decals: - 4336: -88,56 + 4139: -88,56 - node: color: '#00C06AFF' id: MiniTileInnerOverlaySW decals: - 1812: -86,12 + 1765: -86,12 - node: color: '#4A3519FF' id: MiniTileInnerOverlaySW decals: - 2665: -62,17 - 2696: -75,10 - 2697: -70,4 - 2698: -70,16 - 2702: -89,10 + 2618: -62,17 + 2649: -75,10 + 2650: -70,4 + 2651: -70,16 + 2655: -89,10 - node: color: '#DA8929FF' id: MiniTileInnerOverlaySW decals: - 4337: -84,56 + 4140: -84,56 - node: color: '#00C06AFF' id: MiniTileLineOverlayE decals: - 1815: -87,13 - 1819: -84,13 + 1768: -87,13 + 1772: -84,13 - node: color: '#4A3519FF' id: MiniTileLineOverlayE decals: - 2662: -57,23 - 2663: -57,16 - 2681: -72,3 - 2682: -77,9 - 2683: -72,15 + 2615: -57,23 + 2616: -57,16 + 2634: -72,3 + 2635: -77,9 + 2636: -72,15 - node: color: '#DA8929FF' id: MiniTileLineOverlayE decals: - 4326: -88,53 - 4327: -88,54 - 4328: -88,55 + 4129: -88,53 + 4130: -88,54 + 4131: -88,55 - node: color: '#00C06AFF' id: MiniTileLineOverlayN decals: - 1807: -87,14 - 1808: -85,14 - 1813: -86,11 - 1814: -86,12 - 1818: -86,14 + 1760: -87,14 + 1761: -85,14 + 1766: -86,11 + 1767: -86,12 + 1771: -86,14 - node: color: '#4A3519FF' id: MiniTileLineOverlayN decals: - 2643: -56,22 - 2646: -63,22 - 2675: -72,24 - 2676: -71,24 - 2677: -70,24 - 2678: -90,8 - 2679: -76,8 - 2680: -71,14 + 2596: -56,22 + 2599: -63,22 + 2628: -72,24 + 2629: -71,24 + 2630: -70,24 + 2631: -90,8 + 2632: -76,8 + 2633: -71,14 - node: color: '#DA8929FF' id: MiniTileLineOverlayN decals: - 4323: -86,52 - 4324: -87,52 - 4325: -85,52 + 4126: -86,52 + 4127: -87,52 + 4128: -85,52 - node: color: '#00C06AFF' id: MiniTileLineOverlayS decals: - 1809: -87,12 - 1810: -85,12 - 1817: -86,14 + 1762: -87,12 + 1763: -85,12 + 1770: -86,14 - node: color: '#4A3519FF' id: MiniTileLineOverlayS decals: - 2647: -56,17 - 2659: -63,17 - 2667: -71,16 - 2668: -71,4 - 2669: -76,10 - 2670: -90,10 + 2600: -56,17 + 2612: -63,17 + 2620: -71,16 + 2621: -71,4 + 2622: -76,10 + 2623: -90,10 - node: color: '#DA8929FF' id: MiniTileLineOverlayS decals: - 4329: -87,56 - 4330: -86,56 - 4331: -85,56 + 4132: -87,56 + 4133: -86,56 + 4134: -85,56 - node: color: '#00C06AFF' id: MiniTileLineOverlayW decals: - 1816: -85,13 - 1820: -88,13 + 1769: -85,13 + 1773: -88,13 - node: color: '#4A3519FF' id: MiniTileLineOverlayW decals: - 2648: -62,23 - 2649: -62,16 - 2671: -89,9 - 2672: -75,9 - 2673: -70,3 - 2674: -70,15 + 2601: -62,23 + 2602: -62,16 + 2624: -89,9 + 2625: -75,9 + 2626: -70,3 + 2627: -70,15 - node: color: '#DA8929FF' id: MiniTileLineOverlayW decals: - 4332: -84,53 - 4333: -84,54 - 4334: -84,55 + 4135: -84,53 + 4136: -84,54 + 4137: -84,55 - node: color: '#00000022' id: MiniTileOverlay decals: - 7177: 23,-49 - 7178: 23,-50 - 7179: 23,-51 - 7180: 23,-52 - 7181: 22,-49 + 6910: 23,-49 + 6911: 23,-50 + 6912: 23,-51 + 6913: 23,-52 + 6914: 22,-49 - node: color: '#FFFFFFFF' id: MiniTileSteelBox decals: - 3665: -2,5 - 3666: 2,5 + 3618: -2,5 + 3619: 2,5 - node: color: '#334E6DC8' id: MiniTileSteelCornerNe decals: - 9459: 123,-60 - 9461: 124,-61 - 9464: 124,-51 - 9465: 123,-50 + 9192: 123,-60 + 9194: 124,-61 + 9197: 124,-51 + 9198: 123,-50 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelCornerNe decals: - 12918: 83,-62 - 12919: 85,-63 + 12651: 83,-62 + 12652: 85,-63 - node: color: '#96DAFFFF' id: MiniTileSteelCornerNe decals: - 6687: 11,-64 + 6438: 11,-64 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 1951: -62,10 - 9574: 108,-56 - 9575: 109,-52 - 9576: 109,-60 + 1904: -62,10 + 9307: 108,-56 + 9308: 109,-52 + 9309: 109,-60 - node: color: '#334E6DC8' id: MiniTileSteelCornerNw decals: - 9466: 113,-50 - 9468: 112,-51 - 9469: 112,-61 - 9471: 113,-60 + 9199: 113,-50 + 9201: 112,-51 + 9202: 112,-61 + 9204: 113,-60 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelCornerNw decals: - 12920: 79,-62 - 12921: 77,-63 + 12653: 79,-62 + 12654: 77,-63 - node: color: '#96DAFFFF' id: MiniTileSteelCornerNw decals: - 6686: 9,-64 + 6437: 9,-64 - node: color: '#D381C9FF' id: MiniTileSteelCornerNw decals: - 2370: 62,-40 + 2323: 62,-40 - node: color: '#FF9821FF' id: MiniTileSteelCornerNw decals: - 2316: 71,7 + 2269: 71,7 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 1953: -65,10 - 9577: 105,-52 - 9578: 106,-56 - 9579: 105,-60 + 1906: -65,10 + 9310: 105,-52 + 9311: 106,-56 + 9312: 105,-60 - node: color: '#334E6DC8' id: MiniTileSteelCornerSe decals: - 9473: 123,-64 - 9474: 124,-63 - 9475: 123,-54 - 9476: 124,-53 + 9206: 123,-64 + 9207: 124,-63 + 9208: 123,-54 + 9209: 124,-53 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelCornerSe decals: - 12922: 83,-67 - 12923: 83,-67 - 12924: 84,-66 - 12937: 85,-65 + 12655: 83,-67 + 12656: 83,-67 + 12657: 84,-66 + 12670: 85,-65 - node: color: '#96DAFFFF' id: MiniTileSteelCornerSe decals: - 6688: 11,-68 + 6439: 11,-68 - node: color: '#D381C9FF' id: MiniTileSteelCornerSe decals: - 2363: 68,-42 + 2316: 68,-42 - node: color: '#FF9821FF' id: MiniTileSteelCornerSe decals: - 2135: 83,4 + 2088: 83,4 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 1963: -62,8 - 9583: 109,-62 - 9584: 108,-58 - 9585: 109,-54 + 1916: -62,8 + 9316: 109,-62 + 9317: 108,-58 + 9318: 109,-54 - node: color: '#334E6DC8' id: MiniTileSteelCornerSw decals: - 9477: 113,-64 - 9478: 112,-63 - 9509: 112,-53 - 9511: 113,-54 + 9210: 113,-64 + 9211: 112,-63 + 9242: 112,-53 + 9244: 113,-54 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelCornerSw decals: - 12926: 79,-67 - 12927: 78,-66 - 12928: 77,-65 + 12659: 79,-67 + 12660: 78,-66 + 12661: 77,-65 - node: color: '#96DAFFFF' id: MiniTileSteelCornerSw decals: - 6689: 9,-68 + 6440: 9,-68 - node: color: '#D381C9FF' id: MiniTileSteelCornerSw decals: - 2375: 62,-45 + 2328: 62,-45 - node: color: '#FF9821FF' id: MiniTileSteelCornerSw decals: - 2146: 71,4 + 2099: 71,4 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 1962: -65,8 - 9580: 105,-62 - 9581: 105,-54 - 9582: 106,-58 + 1915: -65,8 + 9313: 105,-62 + 9314: 105,-54 + 9315: 106,-58 - node: color: '#334E6DC8' id: MiniTileSteelEndE decals: - 9426: 125,-62 - 9451: 125,-52 + 9159: 125,-62 + 9184: 125,-52 - node: color: '#8BDA8EFF' id: MiniTileSteelEndE decals: - 1224: -48,45 + 1177: -48,45 - node: color: '#FFFFFFFF' id: MiniTileSteelEndE decals: - 9570: 109,-57 + 9303: 109,-57 - node: color: '#8BDA8EFF' id: MiniTileSteelEndN decals: - 1360: -42,43 + 1313: -42,43 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelEndN decals: - 18242: 40,-9 + 17975: 40,-9 - node: color: '#8BDA8EFF' id: MiniTileSteelEndS decals: - 1361: -42,42 + 1314: -42,42 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileSteelEndS decals: - 18241: 40,-10 + 17974: 40,-10 - node: color: '#334E6DC8' id: MiniTileSteelEndW decals: - 9453: 111,-52 - 9454: 111,-62 + 9186: 111,-52 + 9187: 111,-62 - node: color: '#8BDA8EFF' id: MiniTileSteelEndW decals: - 1223: -49,45 + 1176: -49,45 - node: color: '#334E6DC8' id: MiniTileSteelInnerNe decals: - 9514: 123,-61 - 9515: 124,-62 - 9518: 123,-51 - 9520: 124,-52 + 9247: 123,-61 + 9248: 124,-62 + 9251: 123,-51 + 9253: 124,-52 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelInnerNe decals: - 12945: 83,-63 + 12678: 83,-63 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 1975: -65,8 - 2611: -72,14 - 2612: -77,8 - 2630: 77,-32 - 2656: -57,22 - 4322: -88,52 - 9587: 108,-57 + 1928: -65,8 + 2564: -72,14 + 2565: -77,8 + 2583: 77,-32 + 2609: -57,22 + 4125: -88,52 + 9320: 108,-57 - node: color: '#334E6DC8' id: MiniTileSteelInnerNw decals: - 9490: 112,-52 - 9491: 113,-51 - 9493: 112,-62 - 9494: 113,-61 + 9223: 112,-52 + 9224: 113,-51 + 9226: 112,-62 + 9227: 113,-61 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelInnerNw decals: - 12940: 79,-63 + 12673: 79,-63 - node: color: '#999999FF' id: MiniTileSteelInnerNw decals: - 14617: -37,1 + 14350: -37,1 - node: color: '#D381C9FF' id: MiniTileSteelInnerNw decals: - 2378: 66,-40 + 2331: 66,-40 - node: color: '#FF9821FF' id: MiniTileSteelInnerNw decals: - 2320: 76,7 + 2273: 76,7 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 1961: -65,9 - 1974: -62,8 - 2264: 53,-4 - 2265: 53,0 - 2266: 53,-2 - 2605: -89,8 - 2608: -75,8 - 2609: -70,14 - 2629: 81,-32 - 2654: -62,22 - 4321: -84,52 + 1914: -65,9 + 1927: -62,8 + 2217: 53,-4 + 2218: 53,0 + 2219: 53,-2 + 2558: -89,8 + 2561: -75,8 + 2562: -70,14 + 2582: 81,-32 + 2607: -62,22 + 4124: -84,52 - node: color: '#334E6DC8' id: MiniTileSteelInnerSe decals: - 9481: 123,-63 - 9483: 124,-62 - 9484: 123,-53 - 9486: 124,-52 + 9214: 123,-63 + 9216: 124,-62 + 9217: 123,-53 + 9219: 124,-52 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelInnerSe decals: - 12941: 83,-66 - 12942: 84,-65 + 12674: 83,-66 + 12675: 84,-65 - node: color: '#999999FF' id: MiniTileSteelInnerSe decals: - 14618: -71,53 + 14351: -71,53 - node: color: '#D381C9FF' id: MiniTileSteelInnerSe decals: - 2377: 64,-42 + 2330: 64,-42 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 1973: -65,10 - 2596: -77,10 - 2597: -72,16 - 2601: -72,4 - 2614: -64,17 - 2627: 77,-30 - 2655: -57,17 - 2658: -64,17 - 4319: -88,56 - 6017: -16,-44 - 9586: 108,-57 - 12379: 1,-32 + 1926: -65,10 + 2549: -77,10 + 2550: -72,16 + 2554: -72,4 + 2567: -64,17 + 2580: 77,-30 + 2608: -57,17 + 2611: -64,17 + 4122: -88,56 + 5820: -16,-44 + 9319: 108,-57 + 12112: 1,-32 - node: color: '#334E6DC8' id: MiniTileSteelInnerSw decals: - 9500: 113,-63 - 9501: 112,-62 - 9503: 112,-52 - 9504: 113,-53 + 9233: 113,-63 + 9234: 112,-62 + 9236: 112,-52 + 9237: 113,-53 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelInnerSw decals: - 12943: 79,-66 - 12944: 78,-65 + 12676: 79,-66 + 12677: 78,-65 - node: color: '#999999FF' id: MiniTileSteelInnerSw decals: - 14616: -37,-1 + 14349: -37,-1 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 1959: -65,9 - 1972: -62,10 - 2267: 53,-2 - 2268: 53,0 - 2269: 53,2 - 2598: -70,16 - 2599: -75,10 - 2600: -70,4 - 2604: -89,10 - 2628: 81,-30 - 2657: -62,17 - 4320: -84,56 - 6018: -17,-44 - 12380: -1,-32 + 1912: -65,9 + 1925: -62,10 + 2220: 53,-2 + 2221: 53,0 + 2222: 53,2 + 2551: -70,16 + 2552: -75,10 + 2553: -70,4 + 2557: -89,10 + 2581: 81,-30 + 2610: -62,17 + 4123: -84,56 + 5821: -17,-44 + 12113: -1,-32 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelLineE decals: - 12936: 85,-64 + 12669: 85,-64 - node: color: '#96DAFFFF' id: MiniTileSteelLineE decals: - 6695: 11,-65 - 6696: 11,-66 - 6697: 11,-67 + 6446: 11,-65 + 6447: 11,-66 + 6448: 11,-67 - node: color: '#D381C9FF' id: MiniTileSteelLineE decals: - 2357: 64,-45 - 2358: 64,-44 - 2359: 64,-43 - 2364: 68,-39 - 2365: 68,-40 - 2541: 68,-41 + 2310: 64,-45 + 2311: 64,-44 + 2312: 64,-43 + 2317: 68,-39 + 2318: 68,-40 + 2494: 68,-41 - node: color: '#FF9821FF' id: MiniTileSteelLineE decals: - 2133: 83,9 - 2134: 83,6 + 2086: 83,9 + 2087: 83,6 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 1958: -66,9 - 1965: -62,9 - 1976: -65,9 - 2589: -77,9 - 2591: -72,3 - 2593: -72,15 - 2626: 77,-31 - 2652: -57,16 - 2653: -57,23 - 4168: -42,5 - 4169: -42,4 - 4170: -42,10 - 4310: -88,53 - 4311: -88,54 - 4312: -88,55 - 6004: -14,-41 - 6005: -14,-42 - 6006: -14,-43 - 6007: -14,-44 - 6008: -14,-44 - 9606: 109,-61 - 9607: 109,-53 - 14020: 15,-11 - 14021: 15,-7 - 14032: 15,7 - 14033: 15,11 - 14213: -16,-7 - 14214: -16,-11 - 14242: -16,7 - 14243: -16,11 + 1911: -66,9 + 1918: -62,9 + 1929: -65,9 + 2542: -77,9 + 2544: -72,3 + 2546: -72,15 + 2579: 77,-31 + 2605: -57,16 + 2606: -57,23 + 3971: -42,5 + 3972: -42,4 + 3973: -42,10 + 4113: -88,53 + 4114: -88,54 + 4115: -88,55 + 5807: -14,-41 + 5808: -14,-42 + 5809: -14,-43 + 5810: -14,-44 + 5811: -14,-44 + 9339: 109,-61 + 9340: 109,-53 + 13753: 15,-11 + 13754: 15,-7 + 13765: 15,7 + 13766: 15,11 + 13946: -16,-7 + 13947: -16,-11 + 13975: -16,7 + 13976: -16,11 - node: color: '#334E6DC8' id: MiniTileSteelLineN decals: - 9337: 114,-50 - 9338: 115,-50 - 9340: 116,-50 - 9344: 117,-50 - 9348: 118,-50 - 9349: 119,-50 - 9350: 120,-50 - 9351: 121,-50 - 9354: 122,-50 - 9370: 114,-60 - 9371: 115,-60 - 9372: 116,-60 - 9373: 117,-60 - 9374: 118,-60 - 9378: 119,-60 - 9382: 120,-60 - 9384: 121,-60 - 9388: 122,-60 + 9070: 114,-50 + 9071: 115,-50 + 9073: 116,-50 + 9077: 117,-50 + 9081: 118,-50 + 9082: 119,-50 + 9083: 120,-50 + 9084: 121,-50 + 9087: 122,-50 + 9103: 114,-60 + 9104: 115,-60 + 9105: 116,-60 + 9106: 117,-60 + 9107: 118,-60 + 9111: 119,-60 + 9115: 120,-60 + 9117: 121,-60 + 9121: 122,-60 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelLineN decals: - 12929: 80,-62 - 12930: 81,-62 - 12931: 82,-62 - 12938: 78,-63 - 12939: 84,-63 + 12662: 80,-62 + 12663: 81,-62 + 12664: 82,-62 + 12671: 78,-63 + 12672: 84,-63 - node: color: '#96DAFFFF' id: MiniTileSteelLineN decals: - 6690: 10,-64 + 6441: 10,-64 - node: color: '#BC863FFF' id: MiniTileSteelLineN decals: - 2306: 72,7 + 2259: 72,7 - node: color: '#D381C9FF' id: MiniTileSteelLineN decals: - 2367: 65,-40 - 2368: 64,-40 - 2369: 63,-40 + 2320: 65,-40 + 2321: 64,-40 + 2322: 63,-40 - node: color: '#FF9821FF' id: MiniTileSteelLineN decals: - 2121: 74,7 - 2122: 75,7 - 2125: 76,9 - 2126: 77,9 - 2127: 78,9 - 2128: 79,9 - 2129: 80,9 - 2130: 81,9 - 2131: 82,9 - 2132: 83,9 - 2309: 73,7 - 2310: 72,7 + 2074: 74,7 + 2075: 75,7 + 2078: 76,9 + 2079: 77,9 + 2080: 78,9 + 2081: 79,9 + 2082: 80,9 + 2083: 81,9 + 2084: 82,9 + 2085: 83,9 + 2262: 73,7 + 2263: 72,7 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 1956: -64,10 - 1957: -63,10 - 1978: -64,8 - 1980: -63,8 - 2273: 52,0 - 2274: 52,-2 - 2578: -71,2 - 2579: -76,8 - 2580: -71,14 - 2581: -90,8 - 2582: -72,24 - 2583: -71,24 - 2584: -70,24 - 2602: -56,22 - 2603: -63,22 - 2619: 79,-32 - 2620: 78,-32 - 2621: 80,-32 - 4307: -87,52 - 4308: -86,52 - 4309: -85,52 - 5996: -21,-41 - 5997: -20,-41 - 5998: -19,-41 - 5999: -18,-41 - 6000: -17,-41 - 6001: -16,-41 - 6002: -15,-41 - 6003: -14,-41 - 8819: 119,-54 - 8820: 119,-54 - 8958: -28,-60 - 8959: -27,-60 - 9609: 106,-52 - 9610: 107,-52 - 9611: 108,-52 - 9612: 107,-56 - 9613: 106,-60 - 9614: 107,-60 - 9615: 108,-60 - 14349: -48,1 - 14350: -46,1 - 14357: -41,28 - 14358: -39,28 + 1909: -64,10 + 1910: -63,10 + 1931: -64,8 + 1933: -63,8 + 2226: 52,0 + 2227: 52,-2 + 2531: -71,2 + 2532: -76,8 + 2533: -71,14 + 2534: -90,8 + 2535: -72,24 + 2536: -71,24 + 2537: -70,24 + 2555: -56,22 + 2556: -63,22 + 2572: 79,-32 + 2573: 78,-32 + 2574: 80,-32 + 4110: -87,52 + 4111: -86,52 + 4112: -85,52 + 5799: -21,-41 + 5800: -20,-41 + 5801: -19,-41 + 5802: -18,-41 + 5803: -17,-41 + 5804: -16,-41 + 5805: -15,-41 + 5806: -14,-41 + 8552: 119,-54 + 8553: 119,-54 + 8691: -28,-60 + 8692: -27,-60 + 9342: 106,-52 + 9343: 107,-52 + 9344: 108,-52 + 9345: 107,-56 + 9346: 106,-60 + 9347: 107,-60 + 9348: 108,-60 + 14082: -48,1 + 14083: -46,1 + 14090: -41,28 + 14091: -39,28 - node: color: '#334E6DC8' id: MiniTileSteelLineS decals: - 9324: 117,-54 - 9325: 118,-54 - 9326: 119,-54 - 9327: 120,-54 - 9328: 121,-54 - 9329: 122,-54 - 9330: 116,-54 - 9331: 115,-54 - 9332: 114,-54 - 9396: 114,-64 - 9399: 115,-64 - 9400: 116,-64 - 9402: 117,-64 - 9403: 118,-64 - 9406: 122,-64 - 9410: 121,-64 - 9412: 120,-64 - 9413: 119,-64 + 9057: 117,-54 + 9058: 118,-54 + 9059: 119,-54 + 9060: 120,-54 + 9061: 121,-54 + 9062: 122,-54 + 9063: 116,-54 + 9064: 115,-54 + 9065: 114,-54 + 9129: 114,-64 + 9132: 115,-64 + 9133: 116,-64 + 9135: 117,-64 + 9136: 118,-64 + 9139: 122,-64 + 9143: 121,-64 + 9145: 120,-64 + 9146: 119,-64 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelLineS decals: - 12932: 80,-67 - 12933: 81,-67 - 12934: 82,-67 + 12665: 80,-67 + 12666: 81,-67 + 12667: 82,-67 - node: color: '#96DAFFFF' id: MiniTileSteelLineS decals: - 6691: 10,-68 + 6442: 10,-68 - node: color: '#D381C9FF' id: MiniTileSteelLineS decals: - 2360: 65,-42 - 2361: 66,-42 - 2362: 67,-42 - 2376: 63,-45 + 2313: 65,-42 + 2314: 66,-42 + 2315: 67,-42 + 2329: 63,-45 - node: color: '#FF9821FF' id: MiniTileSteelLineS decals: - 2136: 80,4 - 2137: 81,4 - 2138: 79,4 - 2139: 78,4 - 2140: 77,4 - 2141: 76,4 - 2142: 75,4 - 2143: 82,4 - 2144: 74,4 - 2145: 72,4 + 2089: 80,4 + 2090: 81,4 + 2091: 79,4 + 2092: 78,4 + 2093: 77,4 + 2094: 76,4 + 2095: 75,4 + 2096: 82,4 + 2097: 74,4 + 2098: 72,4 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 1966: -64,8 - 1967: -63,8 - 1981: -64,10 - 1982: -63,10 - 2275: 52,-2 - 2276: 52,0 - 2585: -71,4 - 2586: -76,10 - 2587: -71,16 - 2588: -90,10 - 2610: -56,17 - 2622: 78,-30 - 2623: 79,-30 - 2624: 80,-30 - 2651: -63,17 - 4313: -87,56 - 4314: -86,56 - 4315: -85,56 - 6009: -21,-44 - 6010: -20,-44 - 6011: -19,-44 - 6012: -18,-44 - 6013: -15,-44 - 6014: -15,-44 - 6015: -15,-44 - 6016: -14,-44 - 8824: 119,-52 - 8825: 119,-52 - 8960: -28,-63 - 8961: -27,-63 - 9595: 106,-54 - 9596: 107,-54 - 9597: 108,-54 - 9598: 106,-62 - 9599: 107,-62 - 9600: 108,-62 - 9604: 107,-58 - 14499: -25,26 + 1919: -64,8 + 1920: -63,8 + 1934: -64,10 + 1935: -63,10 + 2228: 52,-2 + 2229: 52,0 + 2538: -71,4 + 2539: -76,10 + 2540: -71,16 + 2541: -90,10 + 2563: -56,17 + 2575: 78,-30 + 2576: 79,-30 + 2577: 80,-30 + 2604: -63,17 + 4116: -87,56 + 4117: -86,56 + 4118: -85,56 + 5812: -21,-44 + 5813: -20,-44 + 5814: -19,-44 + 5815: -18,-44 + 5816: -15,-44 + 5817: -15,-44 + 5818: -15,-44 + 5819: -14,-44 + 8557: 119,-52 + 8558: 119,-52 + 8693: -28,-63 + 8694: -27,-63 + 9328: 106,-54 + 9329: 107,-54 + 9330: 108,-54 + 9331: 106,-62 + 9332: 107,-62 + 9333: 108,-62 + 9337: 107,-58 + 14232: -25,26 - node: zIndex: 90 color: '#34924EFF' id: MiniTileSteelLineW decals: - 12935: 77,-64 + 12668: 77,-64 - node: color: '#96DAFFFF' id: MiniTileSteelLineW decals: - 6692: 9,-67 - 6693: 9,-66 - 6694: 9,-65 + 6443: 9,-67 + 6444: 9,-66 + 6445: 9,-65 - node: color: '#D381C9FF' id: MiniTileSteelLineW decals: - 2366: 66,-39 - 2371: 62,-41 - 2372: 62,-42 - 2373: 62,-43 - 2374: 62,-44 + 2319: 66,-39 + 2324: 62,-41 + 2325: 62,-42 + 2326: 62,-43 + 2327: 62,-44 - node: color: '#FF9821FF' id: MiniTileSteelLineW decals: - 2123: 76,8 - 2124: 76,9 - 2311: 70,5 - 2312: 71,6 - 2313: 71,5 + 2076: 76,8 + 2077: 76,9 + 2264: 70,5 + 2265: 71,6 + 2266: 71,5 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1983: -62,9 - 2270: 53,-3 - 2271: 53,-1 - 2272: 53,1 - 2590: -89,9 - 2592: -70,15 - 2594: -75,9 - 2595: -70,3 - 2606: -62,23 - 2607: -62,16 - 2625: 81,-31 - 4171: -42,10 - 4316: -84,53 - 4317: -84,54 - 4318: -84,55 - 5992: -21,-44 - 5993: -21,-43 - 5994: -21,-42 - 5995: -21,-41 - 9588: 106,-57 - 9589: 105,-61 - 9593: 105,-53 - 14026: 16,-11 - 14029: 16,-7 - 14034: 16,7 - 14035: 16,11 - 14204: -15,-7 - 14206: -15,-11 - 14240: -15,11 - 14241: -15,7 - 14351: -41,6 - 14352: -41,8 - 17782: -38,108 - 17783: -38,107 - 17784: -38,107 - 17785: -38,106 - 17786: -38,105 - 17787: -38,105 + 1936: -62,9 + 2223: 53,-3 + 2224: 53,-1 + 2225: 53,1 + 2543: -89,9 + 2545: -70,15 + 2547: -75,9 + 2548: -70,3 + 2559: -62,23 + 2560: -62,16 + 2578: 81,-31 + 3974: -42,10 + 4119: -84,53 + 4120: -84,54 + 4121: -84,55 + 5795: -21,-44 + 5796: -21,-43 + 5797: -21,-42 + 5798: -21,-41 + 9321: 106,-57 + 9322: 105,-61 + 9326: 105,-53 + 13759: 16,-11 + 13762: 16,-7 + 13767: 16,7 + 13768: 16,11 + 13937: -15,-7 + 13939: -15,-11 + 13973: -15,11 + 13974: -15,7 + 14084: -41,6 + 14085: -41,8 + 17515: -38,108 + 17516: -38,107 + 17517: -38,107 + 17518: -38,106 + 17519: -38,105 + 17520: -38,105 - node: color: '#96DAFFFF' id: MiniTileWhiteBox decals: - 6673: 10,-67 - 6674: 11,-65 - 6675: 11,-66 - 6676: 11,-67 - 6677: 11,-68 - 6678: 10,-68 - 6679: 9,-68 - 6680: 9,-67 - 6681: 9,-66 - 6682: 9,-65 - 6683: 9,-64 - 6684: 10,-64 - 6685: 11,-64 - 6698: 10,-65 - 6699: 10,-66 + 6424: 10,-67 + 6425: 11,-65 + 6426: 11,-66 + 6427: 11,-67 + 6428: 11,-68 + 6429: 10,-68 + 6430: 9,-68 + 6431: 9,-67 + 6432: 9,-66 + 6433: 9,-65 + 6434: 9,-64 + 6435: 10,-64 + 6436: 11,-64 + 6449: 10,-65 + 6450: 10,-66 - node: color: '#FFFFFFFF' id: MiniTileWhiteBox decals: - 14488: -6,-66 - 14489: 6,-66 - 14492: -34,-66 + 14221: -6,-66 + 14222: 6,-66 + 14225: -34,-66 - node: color: '#3EB388FF' id: MiniTileWhiteCornerNe decals: - 7956: 31,44 - 7982: 22,53 - 7988: 23,45 + 7689: 31,44 + 7715: 22,53 + 7721: 23,45 - node: color: '#439909FF' id: MiniTileWhiteCornerNe decals: - 8619: -59,-60 - 8625: -57,-64 - 8644: -56,-60 - 8650: -49,-60 - 8656: -56,-56 - 8657: -49,-56 - 8688: -45,-64 - 8704: -41,-64 - 8713: -54,-67 - 8728: -51,-64 - 8745: -51,-70 - 8758: -52,-56 - 8787: -49,-74 - 8827: -61,-70 - 8828: -57,-70 - 8829: -57,-78 - 8830: -61,-78 - 8889: -44,-73 + 8352: -59,-60 + 8358: -57,-64 + 8377: -56,-60 + 8383: -49,-60 + 8389: -56,-56 + 8390: -49,-56 + 8421: -45,-64 + 8437: -41,-64 + 8446: -54,-67 + 8461: -51,-64 + 8478: -51,-70 + 8491: -52,-56 + 8520: -49,-74 + 8560: -61,-70 + 8561: -57,-70 + 8562: -57,-78 + 8563: -61,-78 + 8622: -44,-73 - node: color: '#4B709CFF' id: MiniTileWhiteCornerNe decals: - 10016: -12,2 - 10034: -10,-15 - 10090: 16,2 - 10127: 3,20 - 10237: 17,11 - 10262: 14,18 - 10263: 15,17 - 10264: 13,19 - 10490: -22,2 - 10491: -35,2 + 9749: -12,2 + 9767: -10,-15 + 9823: 16,2 + 9860: 3,20 + 9970: 17,11 + 9995: 14,18 + 9996: 15,17 + 9997: 13,19 + 10223: -22,2 + 10224: -35,2 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNe decals: - 12610: -13,-20 - 12622: -9,-20 + 12343: -13,-20 + 12355: -9,-20 - node: color: '#792DA9FF' id: MiniTileWhiteCornerNe @@ -15229,52 +15229,52 @@ entities: color: '#8C347F96' id: MiniTileWhiteCornerNe decals: - 1445: -20,34 + 1398: -20,34 - node: color: '#96DAFFFF' id: MiniTileWhiteCornerNe decals: - 11375: 8,-34 - 11433: 7,-44 - 14178: 7,-39 + 11108: 8,-34 + 11166: 7,-44 + 13911: 7,-39 - node: color: '#9D7400FF' id: MiniTileWhiteCornerNe decals: - 8071: 48,39 + 7804: 48,39 - node: color: '#9FED5896' id: MiniTileWhiteCornerNe decals: - 1158: -49,51 - 1159: -48,49 + 1111: -49,51 + 1112: -48,49 - node: color: '#BC863FFF' id: MiniTileWhiteCornerNe decals: - 1939: 63,7 - 2152: 86,8 - 2158: 86,5 - 2186: 59,9 - 2211: 86,2 - 2284: 59,2 + 1892: 63,7 + 2105: 86,8 + 2111: 86,5 + 2139: 59,9 + 2164: 86,2 + 2237: 59,2 - node: color: '#C6FF91FF' id: MiniTileWhiteCornerNe decals: - 10728: -38,15 - 11032: -58,29 - 11058: -25,38 - 11218: 2,38 - 11227: 2,33 - 11258: 2,46 - 11273: 2,51 - 11277: -12,31 - 11314: 14,42 - 11684: -39,56 - 11687: -47,56 - 11704: -75,58 - 13892: 37,2 + 10461: -38,15 + 10765: -58,29 + 10791: -25,38 + 10951: 2,38 + 10960: 2,33 + 10991: 2,46 + 11006: 2,51 + 11010: -12,31 + 11047: 14,42 + 11417: -39,56 + 11420: -47,56 + 11437: -75,58 + 13625: 37,2 - node: color: '#D381C9CC' id: MiniTileWhiteCornerNe @@ -15286,26 +15286,26 @@ entities: color: '#D381C9FF' id: MiniTileWhiteCornerNe decals: - 1705: 51,-21 - 1747: 45,-19 - 1826: 57,-30 - 2226: 48,-29 - 2527: 77,-35 - 2548: 72,-35 - 2638: 81,-30 - 2785: 61,-61 - 2843: 61,-55 - 2877: 68,-54 - 2968: 57,-54 - 2983: 64,-47 - 3072: 74,-22 - 3114: 75,-30 - 6765: 65,-30 + 1658: 51,-21 + 1700: 45,-19 + 1779: 57,-30 + 2179: 48,-29 + 2480: 77,-35 + 2501: 72,-35 + 2591: 81,-30 + 2738: 61,-61 + 2796: 61,-55 + 2830: 68,-54 + 2921: 57,-54 + 2936: 64,-47 + 3025: 74,-22 + 3067: 75,-30 + 6516: 65,-30 - node: color: '#D69949FF' id: MiniTileWhiteCornerNe decals: - 10636: 51,4 + 10369: 51,4 - node: color: '#DE3A3ACC' id: MiniTileWhiteCornerNe @@ -15315,111 +15315,111 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteCornerNe decals: - 4803: -75,48 - 4823: -71,48 - 4833: -71,44 - 9768: 46,12 + 4606: -75,48 + 4626: -71,48 + 4636: -71,44 + 9501: 46,12 - node: color: '#EFB341FF' id: MiniTileWhiteCornerNe decals: - 8132: 36,48 - 8152: 46,48 - 8300: 68,45 - 8540: 67,52 + 7865: 36,48 + 7885: 46,48 + 8033: 68,45 + 8273: 67,52 - node: color: '#FBB2FFFF' id: MiniTileWhiteCornerNe decals: - 13887: 42,-9 + 13620: 42,-9 - node: color: '#FF5C5CFF' id: MiniTileWhiteCornerNe decals: - 11910: -43,-10 - 12545: -10,-39 - 12674: -55,-33 - 13028: -72,-25 - 13041: -72,-30 - 13091: -56,-10 - 20285: -3,-39 + 11643: -43,-10 + 12278: -10,-39 + 12407: -55,-33 + 12761: -72,-25 + 12774: -72,-30 + 12824: -56,-10 + 19923: -3,-39 - node: color: '#FF9821FF' id: MiniTileWhiteCornerNe decals: - 13903: -30,-34 - 13910: -26,-34 - 13915: -22,-34 + 13636: -30,-34 + 13643: -26,-34 + 13648: -22,-34 - node: color: '#FFA647FF' id: MiniTileWhiteCornerNe decals: - 13156: 58,34 - 13311: 52,39 - 20027: 41,40 + 12889: 58,34 + 13044: 52,39 + 19760: 41,40 - node: color: '#FFBE00FF' id: MiniTileWhiteCornerNe decals: - 7473: 37,24 - 7540: 47,19 - 7575: 49,21 + 7206: 37,24 + 7273: 47,19 + 7308: 49,21 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNe decals: - 2246: 45,-29 - 14468: 6,-45 - 14558: 1,-40 + 2199: 45,-29 + 14201: 6,-45 + 14291: 1,-40 - node: color: '#3EB388FF' id: MiniTileWhiteCornerNw decals: - 7890: 24,53 - 7953: 25,44 - 7983: 20,53 - 7991: 20,45 + 7623: 24,53 + 7686: 25,44 + 7716: 20,53 + 7724: 20,45 - node: color: '#439909FF' id: MiniTileWhiteCornerNw decals: - 8645: -57,-60 - 8649: -50,-60 - 8654: -50,-56 - 8655: -57,-56 - 8687: -49,-64 - 8703: -43,-64 - 8716: -52,-67 - 8726: -55,-64 - 8747: -55,-70 - 8759: -54,-56 - 8795: -63,-74 - 8821: -59,-78 - 8822: -63,-78 - 8823: -63,-70 - 8826: -59,-70 - 8890: -47,-73 + 8378: -57,-60 + 8382: -50,-60 + 8387: -50,-56 + 8388: -57,-56 + 8420: -49,-64 + 8436: -43,-64 + 8449: -52,-67 + 8459: -55,-64 + 8480: -55,-70 + 8492: -54,-56 + 8528: -63,-74 + 8554: -59,-78 + 8555: -63,-78 + 8556: -63,-70 + 8559: -59,-70 + 8623: -47,-73 - node: color: '#4B709CFF' id: MiniTileWhiteCornerNw decals: - 10019: -16,2 - 10067: 10,-15 - 10087: 12,2 - 10126: -3,20 - 10231: -14,18 - 10232: -13,19 - 10233: -15,17 - 10307: -17,-7 - 10404: -17,11 - 10492: -37,2 - 10493: -30,2 + 9752: -16,2 + 9800: 10,-15 + 9820: 12,2 + 9859: -3,20 + 9964: -14,18 + 9965: -13,19 + 9966: -15,17 + 10040: -17,-7 + 10137: -17,11 + 10225: -37,2 + 10226: -30,2 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerNw decals: - 12608: -17,-20 - 12621: -11,-20 + 12341: -17,-20 + 12354: -11,-20 - node: color: '#792DA9FF' id: MiniTileWhiteCornerNw @@ -15430,49 +15430,49 @@ entities: color: '#8C347F96' id: MiniTileWhiteCornerNw decals: - 1442: -23,34 + 1395: -23,34 - node: color: '#96DAFFFF' id: MiniTileWhiteCornerNw decals: - 11346: -8,-34 - 11576: -35,-65 - 11584: -21,-54 - 14176: 4,-39 + 11079: -8,-34 + 11309: -35,-65 + 11317: -21,-54 + 13909: 4,-39 - node: color: '#9D7400FF' id: MiniTileWhiteCornerNw decals: - 8074: 43,39 + 7807: 43,39 - node: color: '#9FED5896' id: MiniTileWhiteCornerNw decals: - 1149: -58,51 + 1102: -58,51 - node: color: '#BC863FFF' id: MiniTileWhiteCornerNw decals: - 1942: 61,7 - 2151: 85,8 - 2157: 85,5 - 2179: 55,9 - 2283: 53,2 + 1895: 61,7 + 2104: 85,8 + 2110: 85,5 + 2132: 55,9 + 2236: 53,2 - node: color: '#C6FF91FF' id: MiniTileWhiteCornerNw decals: - 10732: -42,15 - 11025: -61,29 - 11048: -63,28 - 11059: -27,38 - 11276: -15,31 - 11289: -9,51 - 11304: 3,42 - 11685: -41,56 - 11686: -49,56 - 11705: -77,58 - 13891: 35,2 + 10465: -42,15 + 10758: -61,29 + 10781: -63,28 + 10792: -27,38 + 11009: -15,31 + 11022: -9,51 + 11037: 3,42 + 11418: -41,56 + 11419: -49,56 + 11438: -77,58 + 13624: 35,2 - node: color: '#D381C9CC' id: MiniTileWhiteCornerNw @@ -15484,23 +15484,23 @@ entities: color: '#D381C9FF' id: MiniTileWhiteCornerNw decals: - 1706: 49,-21 - 1728: 34,-19 - 1730: 31,-22 - 1748: 43,-17 - 1829: 50,-30 - 2236: 44,-34 - 2517: 70,-39 - 2547: 70,-35 - 2640: 77,-30 - 2784: 59,-61 - 2841: 59,-55 - 2869: 63,-54 - 2888: 52,-54 - 2982: 59,-47 - 3073: 68,-22 - 3120: 67,-30 - 6764: 59,-30 + 1659: 49,-21 + 1681: 34,-19 + 1683: 31,-22 + 1701: 43,-17 + 1782: 50,-30 + 2189: 44,-34 + 2470: 70,-39 + 2500: 70,-35 + 2593: 77,-30 + 2737: 59,-61 + 2794: 59,-55 + 2822: 63,-54 + 2841: 52,-54 + 2935: 59,-47 + 3026: 68,-22 + 3073: 67,-30 + 6515: 59,-30 - node: color: '#DE3A3ACC' id: MiniTileWhiteCornerNw @@ -15511,112 +15511,112 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteCornerNw decals: - 1999: 49,-6 - 4790: -85,45 - 4804: -77,48 - 4824: -73,48 - 4831: -73,44 - 9771: 43,12 + 1952: 49,-6 + 4593: -85,45 + 4607: -77,48 + 4627: -73,48 + 4634: -73,44 + 9504: 43,12 - node: color: '#EFB341FF' id: MiniTileWhiteCornerNw decals: - 8131: 33,48 - 8151: 38,48 - 8295: 62,45 - 8541: 62,52 - 8561: 56,44 + 7864: 33,48 + 7884: 38,48 + 8028: 62,45 + 8274: 62,52 + 8294: 56,44 - node: color: '#FBB2FFFF' id: MiniTileWhiteCornerNw decals: - 13882: 38,-12 + 13615: 38,-12 - node: color: '#FF5C5CFF' id: MiniTileWhiteCornerNw decals: - 11363: -8,-34 - 12544: -12,-39 - 12672: -53,-33 - 12673: -57,-33 - 13026: -76,-30 - 13027: -76,-25 - 13092: -54,-10 - 20284: -7,-39 + 11096: -8,-34 + 12277: -12,-39 + 12405: -53,-33 + 12406: -57,-33 + 12759: -76,-30 + 12760: -76,-25 + 12825: -54,-10 + 19922: -7,-39 - node: color: '#FF9821FF' id: MiniTileWhiteCornerNw decals: - 13904: -32,-34 + 13637: -32,-34 - node: color: '#FFA647FF' id: MiniTileWhiteCornerNw decals: - 10605: 39,7 - 13112: 17,28 - 13155: 54,34 - 13310: 50,39 + 10338: 39,7 + 12845: 17,28 + 12888: 54,34 + 13043: 50,39 - node: color: '#FFBE00FF' id: MiniTileWhiteCornerNw decals: - 7472: 32,24 - 7512: 43,21 - 7539: 45,19 + 7205: 32,24 + 7245: 43,21 + 7272: 45,19 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerNw decals: - 2245: 44,-29 - 14472: -6,-45 - 14502: -20,-55 - 14556: 0,-40 + 2198: 44,-29 + 14205: -6,-45 + 14235: -20,-55 + 14289: 0,-40 - node: color: '#3EB388FF' id: MiniTileWhiteCornerSe decals: - 7884: 31,46 - 7960: 31,42 - 7974: 22,47 - 7996: 23,42 + 7617: 31,46 + 7693: 31,42 + 7707: 22,47 + 7729: 23,42 - node: color: '#439909FF' id: MiniTileWhiteCornerSe decals: - 8617: -59,-62 - 8628: -57,-68 - 8643: -56,-62 - 8651: -49,-62 - 8658: -49,-58 - 8659: -56,-58 - 8680: -45,-68 - 8707: -41,-68 - 8714: -54,-65 - 8722: -51,-68 - 8746: -51,-72 - 8788: -49,-76 - 8839: -61,-80 - 8840: -57,-80 - 8841: -57,-72 - 8842: -61,-72 - 8895: -44,-77 + 8350: -59,-62 + 8361: -57,-68 + 8376: -56,-62 + 8384: -49,-62 + 8391: -49,-58 + 8392: -56,-58 + 8413: -45,-68 + 8440: -41,-68 + 8447: -54,-65 + 8455: -51,-68 + 8479: -51,-72 + 8521: -49,-76 + 8572: -61,-80 + 8573: -57,-80 + 8574: -57,-72 + 8575: -61,-72 + 8628: -44,-77 - node: color: '#4B709CFF' id: MiniTileWhiteCornerSe decals: - 10017: -12,-2 - 10094: 16,-2 - 10275: 15,-17 - 10276: 14,-18 - 10333: 3,-19 - 10483: -35,-2 - 10489: -22,-2 + 9750: -12,-2 + 9827: 16,-2 + 10008: 15,-17 + 10009: 14,-18 + 10066: 3,-19 + 10216: -35,-2 + 10222: -22,-2 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSe decals: - 12609: -13,-22 - 12623: -9,-23 + 12342: -13,-22 + 12356: -9,-23 - node: color: '#792DA9FF' id: MiniTileWhiteCornerSe @@ -15626,48 +15626,48 @@ entities: color: '#8C347F96' id: MiniTileWhiteCornerSe decals: - 1449: -20,30 + 1402: -20,30 - node: color: '#96DAFFFF' id: MiniTileWhiteCornerSe decals: - 11374: 8,-37 - 11452: 7,-67 - 11581: -19,-67 - 11607: -5,-67 - 14177: 7,-42 + 11107: 8,-37 + 11185: 7,-67 + 11314: -19,-67 + 11340: -5,-67 + 13910: 7,-42 - node: color: '#9D7400FF' id: MiniTileWhiteCornerSe decals: - 8072: 48,33 + 7805: 48,33 - node: color: '#9FED5896' id: MiniTileWhiteCornerSe decals: - 1160: -54,45 - 1166: -48,46 + 1113: -54,45 + 1119: -48,46 - node: color: '#BC863FFF' id: MiniTileWhiteCornerSe decals: - 2190: 59,4 + 2143: 59,4 - node: color: '#C6FF91FF' id: MiniTileWhiteCornerSe decals: - 10600: 37,-2 - 10733: -38,13 - 10927: -70,-2 - 11038: -58,25 - 11045: -52,25 - 11219: 2,36 - 11231: 2,31 - 11257: 2,44 - 11270: -12,30 - 11275: 2,49 - 11325: 14,40 - 11694: -62,52 + 10333: 37,-2 + 10466: -38,13 + 10660: -70,-2 + 10771: -58,25 + 10778: -52,25 + 10952: 2,36 + 10964: 2,31 + 10990: 2,44 + 11003: -12,30 + 11008: 2,49 + 11058: 14,40 + 11427: -62,52 - node: color: '#D381C9CC' id: MiniTileWhiteCornerSe @@ -15679,22 +15679,22 @@ entities: color: '#D381C9FF' id: MiniTileWhiteCornerSe decals: - 1707: 51,-22 - 1710: 48,-23 - 1827: 57,-32 - 2233: 48,-35 - 2532: 77,-42 - 2550: 72,-37 - 2639: 81,-32 - 2795: 61,-67 - 2809: 61,-59 - 2878: 68,-56 - 2881: 66,-57 - 2956: 57,-57 - 2981: 64,-49 - 3090: 74,-28 - 3115: 75,-33 - 6774: 65,-32 + 1660: 51,-22 + 1663: 48,-23 + 1780: 57,-32 + 2186: 48,-35 + 2485: 77,-42 + 2503: 72,-37 + 2592: 81,-32 + 2748: 61,-67 + 2762: 61,-59 + 2831: 68,-56 + 2834: 66,-57 + 2909: 57,-57 + 2934: 64,-49 + 3043: 74,-28 + 3068: 75,-33 + 6525: 65,-32 - node: color: '#DE3A3ACC' id: MiniTileWhiteCornerSe @@ -15704,165 +15704,165 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteCornerSe decals: - 2010: 58,-9 - 2011: 59,-8 - 4797: -79,42 - 4810: -75,42 - 4822: -71,46 - 4827: -75,50 - 4830: -71,50 - 4832: -71,41 - 9760: 46,3 + 1963: 58,-9 + 1964: 59,-8 + 4600: -79,42 + 4613: -75,42 + 4625: -71,46 + 4630: -75,50 + 4633: -71,50 + 4635: -71,41 + 9493: 46,3 - node: color: '#EFB341FF' id: MiniTileWhiteCornerSe decals: - 8125: 36,42 - 8153: 46,42 - 8304: 68,41 - 8547: 67,47 - 8594: 52,41 + 7858: 36,42 + 7886: 46,42 + 8037: 68,41 + 8280: 67,47 + 8327: 52,41 - node: color: '#FBB2FFFF' id: MiniTileWhiteCornerSe decals: - 10558: 41,-17 - 13888: 42,-11 + 10291: 41,-17 + 13621: 42,-11 - node: color: '#FF5C5CFF' id: MiniTileWhiteCornerSe decals: - 11911: -43,-12 - 12546: -10,-42 - 12676: -55,-35 - 13030: -72,-28 - 13047: -72,-37 - 20286: -3,-42 + 11644: -43,-12 + 12279: -10,-42 + 12409: -55,-35 + 12763: -72,-28 + 12780: -72,-37 + 19924: -3,-42 - node: color: '#FF9821FF' id: MiniTileWhiteCornerSe decals: - 13931: -14,-37 + 13664: -14,-37 - node: color: '#FFA647FF' id: MiniTileWhiteCornerSe decals: - 13123: 22,20 - 13157: 58,30 - 13291: 52,26 + 12856: 22,20 + 12890: 58,30 + 13024: 52,26 - node: color: '#FFBE00FF' id: MiniTileWhiteCornerSe decals: - 7470: 37,18 - 7513: 49,14 - 7559: 47,16 + 7203: 37,18 + 7246: 49,14 + 7292: 47,16 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSe decals: - 2247: 45,-30 - 14495: -20,-66 - 14557: 1,-41 + 2200: 45,-30 + 14228: -20,-66 + 14290: 1,-41 - node: color: '#3EB388FF' id: MiniTileWhiteCornerSw decals: - 7896: 24,47 - 7897: 25,46 - 7967: 25,42 - 7973: 20,47 - 7993: 20,42 - 13175: 17,26 - 13180: 20,20 + 7629: 24,47 + 7630: 25,46 + 7700: 25,42 + 7706: 20,47 + 7726: 20,42 + 12908: 17,26 + 12913: 20,20 - node: color: '#439909FF' id: MiniTileWhiteCornerSw decals: - 8629: -61,-68 - 8647: -57,-62 - 8648: -50,-62 - 8660: -57,-58 - 8661: -50,-58 - 8681: -49,-68 - 8708: -43,-68 - 8715: -52,-65 - 8723: -55,-68 - 8748: -55,-72 - 8796: -63,-76 - 8831: -63,-80 - 8833: -63,-72 - 8835: -59,-72 - 8836: -59,-80 - 8897: -47,-77 + 8362: -61,-68 + 8380: -57,-62 + 8381: -50,-62 + 8393: -57,-58 + 8394: -50,-58 + 8414: -49,-68 + 8441: -43,-68 + 8448: -52,-65 + 8456: -55,-68 + 8481: -55,-72 + 8529: -63,-76 + 8564: -63,-80 + 8566: -63,-72 + 8568: -59,-72 + 8569: -59,-80 + 8630: -47,-77 - node: color: '#4B709CFF' id: MiniTileWhiteCornerSw decals: - 10018: -16,-2 - 10099: 12,-2 - 10300: -17,-11 - 10308: -14,-18 - 10309: -15,-17 - 10320: -3,-19 - 10405: -17,7 - 10482: -37,-2 - 10488: -30,-2 + 9751: -16,-2 + 9832: 12,-2 + 10033: -17,-11 + 10041: -14,-18 + 10042: -15,-17 + 10053: -3,-19 + 10138: -17,7 + 10215: -37,-2 + 10221: -30,-2 - node: color: '#52B4E9FF' id: MiniTileWhiteCornerSw decals: - 12611: -17,-22 - 12624: -11,-23 + 12344: -17,-22 + 12357: -11,-23 - node: color: '#792DA9FF' id: MiniTileWhiteCornerSw decals: 793: 50,-28 - 2516: 46,-27 + 2469: 46,-27 - node: color: '#8C347F96' id: MiniTileWhiteCornerSw decals: - 1439: -23,30 + 1392: -23,30 - node: color: '#96DAFFFF' id: MiniTileWhiteCornerSw decals: - 11347: -8,-37 - 11453: 5,-67 - 11575: -35,-67 - 11606: -7,-67 - 14179: 4,-42 + 11080: -8,-37 + 11186: 5,-67 + 11308: -35,-67 + 11339: -7,-67 + 13912: 4,-42 - node: color: '#9D7400FF' id: MiniTileWhiteCornerSw decals: - 8073: 43,33 + 7806: 43,33 - node: color: '#9FED5896' id: MiniTileWhiteCornerSw decals: - 1143: -58,45 + 1096: -58,45 - node: color: '#BE6BC3FF' id: MiniTileWhiteCornerSw decals: - 20107: 59,-67 + 19840: 59,-67 - node: color: '#C6FF91FF' id: MiniTileWhiteCornerSw decals: - 10596: 30,-2 - 10734: -42,13 - 10926: -72,-2 - 11039: -61,25 - 11046: -54,25 - 11047: -63,26 - 11271: -15,30 - 11288: -9,49 - 11305: 3,40 - 11693: -66,52 + 10329: 30,-2 + 10467: -42,13 + 10659: -72,-2 + 10772: -61,25 + 10779: -54,25 + 10780: -63,26 + 11004: -15,30 + 11021: -9,49 + 11038: 3,40 + 11426: -66,52 - node: color: '#D381C9CC' id: MiniTileWhiteCornerSw @@ -15873,179 +15873,179 @@ entities: color: '#D381C9FF' id: MiniTileWhiteCornerSw decals: - 1731: 31,-23 - 1787: 50,-36 - 1832: 50,-32 - 2237: 44,-35 - 2539: 70,-42 - 2551: 70,-37 - 2641: 77,-32 - 2810: 59,-59 - 2884: 63,-57 - 2887: 52,-56 - 2957: 54,-57 - 2991: 59,-49 - 3093: 68,-28 - 3121: 67,-33 - 6775: 59,-32 + 1684: 31,-23 + 1740: 50,-36 + 1785: 50,-32 + 2190: 44,-35 + 2492: 70,-42 + 2504: 70,-37 + 2594: 77,-32 + 2763: 59,-59 + 2837: 63,-57 + 2840: 52,-56 + 2910: 54,-57 + 2944: 59,-49 + 3046: 68,-28 + 3074: 67,-33 + 6526: 59,-32 - node: color: '#D69949FF' id: MiniTileWhiteCornerSw decals: - 1866: 82,-17 + 1819: 82,-17 - node: color: '#DE3A3AFF' id: MiniTileWhiteCornerSw decals: - 2002: 49,-9 - 4793: -85,42 - 4809: -77,42 - 4821: -73,46 - 4828: -77,50 - 4829: -73,50 - 4834: -73,41 + 1955: 49,-9 + 4596: -85,42 + 4612: -77,42 + 4624: -73,46 + 4631: -77,50 + 4632: -73,50 + 4637: -73,41 - node: color: '#EFB341FF' id: MiniTileWhiteCornerSw decals: - 8124: 33,42 - 8154: 38,42 - 8310: 62,41 - 8546: 62,47 - 8562: 56,42 - 8595: 50,41 + 7857: 33,42 + 7887: 38,42 + 8043: 62,41 + 8279: 62,47 + 8295: 56,42 + 8328: 50,41 - node: color: '#FBB2FFFF' id: MiniTileWhiteCornerSw decals: - 13881: 38,-14 + 13614: 38,-14 - node: color: '#FF5C5CFF' id: MiniTileWhiteCornerSw decals: - 12547: -12,-42 - 12678: -57,-35 - 13029: -76,-28 - 13046: -76,-37 - 13093: -54,-12 - 20283: -7,-42 + 12280: -12,-42 + 12411: -57,-35 + 12762: -76,-28 + 12779: -76,-37 + 12826: -54,-12 + 19921: -7,-42 - node: color: '#FF9821FF' id: MiniTileWhiteCornerSw decals: - 13948: -32,-37 - 13949: -34,-35 + 13681: -32,-37 + 13682: -34,-35 - node: color: '#FFA647FF' id: MiniTileWhiteCornerSw decals: - 13158: 54,30 - 13271: 39,9 + 12891: 54,30 + 13004: 39,9 - node: color: '#FFBE00FF' id: MiniTileWhiteCornerSw decals: - 7471: 32,18 - 7514: 43,14 - 7538: 45,16 + 7204: 32,18 + 7247: 43,14 + 7271: 45,16 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: - 2248: 44,-30 - 14559: 0,-41 + 2201: 44,-30 + 14292: 0,-41 - node: color: '#4B709CFF' id: MiniTileWhiteEndE decals: - 10495: -22,-4 + 10228: -22,-4 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndE decals: - 14500: -19,-55 + 14233: -19,-55 - node: color: '#D381C9FF' id: MiniTileWhiteEndN decals: - 2712: 57,-64 - 2713: 63,-64 + 2665: 57,-64 + 2666: 63,-64 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndN decals: - 14478: 6,-54 - 14479: -6,-54 - 14497: -20,-65 + 14211: 6,-54 + 14212: -6,-54 + 14230: -20,-65 - node: color: '#D381C9FF' id: MiniTileWhiteEndS decals: - 2710: 63,-66 - 2711: 57,-66 + 2663: 63,-66 + 2664: 57,-66 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndS decals: - 14469: 6,-46 - 14476: -6,-46 - 14480: -6,-56 - 14481: 6,-56 - 14501: -20,-56 + 14202: 6,-46 + 14209: -6,-46 + 14213: -6,-56 + 14214: 6,-56 + 14234: -20,-56 - node: color: '#4B709CFF' id: MiniTileWhiteEndW decals: - 10494: -30,-4 + 10227: -30,-4 - node: color: '#EFB341FF' id: MiniTileWhiteEndW decals: - 8591: 48,43 + 8324: 48,43 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndW decals: - 14467: 5,-45 - 14482: -7,-55 - 14496: -21,-66 + 14200: 5,-45 + 14215: -7,-55 + 14229: -21,-66 - node: color: '#3EB388FF' id: MiniTileWhiteInnerNe decals: - 8070: 28,40 + 7803: 28,40 - node: color: '#439909FF' id: MiniTileWhiteInnerNe decals: - 8863: -62,-70 - 8864: -61,-71 - 8866: -58,-70 - 8868: -57,-72 - 8871: -57,-79 - 8877: -61,-79 + 8596: -62,-70 + 8597: -61,-71 + 8599: -58,-70 + 8601: -57,-72 + 8604: -57,-79 + 8610: -61,-79 - node: color: '#4B709CFF' id: MiniTileWhiteInnerNe decals: - 10248: 15,2 - 10249: 13,18 - 10250: 14,17 - 10252: 3,19 - 10253: 1,20 - 10257: -13,-15 - 10258: -10,-16 - 10269: 15,-15 - 10392: -11,16 - 10474: 16,1 - 10496: -35,1 - 10497: -22,1 - 11411: -29,-4 - 11412: -23,-4 - 13899: -13,2 - 14025: 15,-7 - 14050: 15,11 - 18200: -12,16 + 9981: 15,2 + 9982: 13,18 + 9983: 14,17 + 9985: 3,19 + 9986: 1,20 + 9990: -13,-15 + 9991: -10,-16 + 10002: 15,-15 + 10125: -11,16 + 10207: 16,1 + 10229: -35,1 + 10230: -22,1 + 11144: -29,-4 + 11145: -23,-4 + 13632: -13,2 + 13758: 15,-7 + 13783: 15,11 + 17933: -12,16 - node: color: '#792DA9FF' id: MiniTileWhiteInnerNe @@ -16055,117 +16055,117 @@ entities: color: '#808080FF' id: MiniTileWhiteInnerNe decals: - 14139: 1,28 + 13872: 1,28 - node: color: '#8C347F96' id: MiniTileWhiteInnerNe decals: - 1447: -20,32 + 1400: -20,32 - node: color: '#9FED5896' id: MiniTileWhiteInnerNe decals: - 1170: -49,49 + 1123: -49,49 - node: color: '#BC863FFF' id: MiniTileWhiteInnerNe decals: - 1898: 86,-13 - 1984: 69,2 - 1985: 63,4 - 2431: 81,-3 + 1851: 86,-13 + 1937: 69,2 + 1938: 63,4 + 2384: 81,-3 - node: color: '#C6FF91FF' id: MiniTileWhiteInnerNe decals: - 10726: 1,-25 - 10928: -72,2 - 10945: -70,1 - 11034: -58,28 - 11194: -25,28 - 11236: 1,33 - 11245: 1,38 - 11263: 1,46 - 11268: -13,28 - 11291: -6,51 - 11349: -39,1 - 11688: -47,55 - 14168: 37,1 - 14598: -71,55 + 10459: 1,-25 + 10661: -72,2 + 10678: -70,1 + 10767: -58,28 + 10927: -25,28 + 10969: 1,33 + 10978: 1,38 + 10996: 1,46 + 11001: -13,28 + 11024: -6,51 + 11082: -39,1 + 11421: -47,55 + 13901: 37,1 + 14331: -71,55 - node: color: '#D381C9FF' id: MiniTileWhiteInnerNe decals: - 1746: 45,-22 - 1751: 44,-19 - 2847: 61,-56 - 2871: 57,-56 + 1699: 45,-22 + 1704: 44,-19 + 2800: 61,-56 + 2824: 57,-56 - node: color: '#D69949FF' id: MiniTileWhiteInnerNe decals: - 10655: 51,0 - 10660: 51,-2 + 10388: 51,0 + 10393: 51,-2 - node: color: '#FBB2FFFF' id: MiniTileWhiteInnerNe decals: - 13889: 41,-9 + 13622: 41,-9 - node: color: '#FF5C5CFF' id: MiniTileWhiteInnerNe decals: - 10630: 41,1 - 12343: -13,-25 - 12346: -39,-24 + 10363: 41,1 + 12076: -13,-25 + 12079: -39,-24 - node: color: '#FF9821FF' id: MiniTileWhiteInnerNe decals: - 13952: -30,-35 - 13953: -26,-35 - 13954: -22,-35 - 13959: -18,-35 + 13685: -30,-35 + 13686: -26,-35 + 13687: -22,-35 + 13692: -18,-35 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: - 14197: 4,-42 + 13930: 4,-42 - node: color: '#3EB388FF' id: MiniTileWhiteInnerNw decals: - 8069: 26,40 + 7802: 26,40 - node: color: '#439909FF' id: MiniTileWhiteInnerNw decals: - 8855: -63,-79 - 8858: -59,-79 - 8859: -59,-71 - 8860: -58,-70 - 8861: -63,-71 - 8862: -62,-70 + 8588: -63,-79 + 8591: -59,-79 + 8592: -59,-71 + 8593: -58,-70 + 8594: -63,-71 + 8595: -62,-70 - node: color: '#4B709CFF' id: MiniTileWhiteInnerNw decals: - 10246: 13,2 - 10247: 11,1 - 10251: -3,19 - 10254: -1,20 - 10255: -13,18 - 10256: -14,17 - 10259: 10,-16 - 10260: 13,-15 - 10388: 11,16 - 10498: -30,1 - 11409: -29,-4 - 11410: -23,-4 - 13897: -16,1 - 13898: -15,2 - 14238: -15,-7 - 14258: -15,11 + 9979: 13,2 + 9980: 11,1 + 9984: -3,19 + 9987: -1,20 + 9988: -13,18 + 9989: -14,17 + 9992: 10,-16 + 9993: 13,-15 + 10121: 11,16 + 10231: -30,1 + 11142: -29,-4 + 11143: -23,-4 + 13630: -16,1 + 13631: -15,2 + 13971: -15,-7 + 13991: -15,11 - node: color: '#792DA9FF' id: MiniTileWhiteInnerNw @@ -16176,39 +16176,39 @@ entities: color: '#808080FF' id: MiniTileWhiteInnerNw decals: - 14028: 16,-11 - 14167: 39,1 + 13761: 16,-11 + 13900: 39,1 - node: color: '#8C347F96' id: MiniTileWhiteInnerNw decals: - 1450: -23,31 + 1403: -23,31 - node: color: '#96DAFFFF' id: MiniTileWhiteInnerNw decals: - 11582: -21,-65 - 11609: -7,-54 + 11315: -21,-65 + 11342: -7,-54 - node: color: '#BC863FFF' id: MiniTileWhiteInnerNw decals: - 2294: 53,-2 - 2295: 53,0 + 2247: 53,-2 + 2248: 53,0 - node: color: '#C6FF91FF' id: MiniTileWhiteInnerNw decals: - 10909: -41,1 - 10929: -70,2 - 11033: -61,28 - 11193: -27,28 - 11207: -1,28 - 11267: -14,28 - 11290: -8,51 - 11691: -49,55 - 13893: 35,1 - 14611: -41,55 + 10642: -41,1 + 10662: -70,2 + 10766: -61,28 + 10926: -27,28 + 10940: -1,28 + 11000: -14,28 + 11023: -8,51 + 11424: -49,55 + 13626: 35,1 + 14344: -41,55 - node: color: '#D381C9CC' id: MiniTileWhiteInnerNw @@ -16218,13 +16218,13 @@ entities: color: '#D381C9FF' id: MiniTileWhiteInnerNw decals: - 1739: 34,-22 - 1740: 49,-22 - 1749: 43,-19 - 2244: 47,-34 - 2521: 74,-39 - 2845: 59,-56 - 2872: 63,-56 + 1692: 34,-22 + 1693: 49,-22 + 1702: 43,-19 + 2197: 47,-34 + 2474: 74,-39 + 2798: 59,-56 + 2825: 63,-56 - node: color: '#DE3A3ACC' id: MiniTileWhiteInnerNw @@ -16234,76 +16234,76 @@ entities: color: '#FBB2FFFF' id: MiniTileWhiteInnerNw decals: - 13883: 39,-12 + 13616: 39,-12 - node: color: '#FF5C5CFF' id: MiniTileWhiteInnerNw decals: - 12349: -41,-21 - 12367: -58,-15 - 12514: -74,-21 + 12082: -41,-21 + 12100: -58,-15 + 12247: -74,-21 - node: color: '#FF9821FF' id: MiniTileWhiteInnerNw decals: - 13955: -24,-35 - 13956: -20,-35 - 13957: -16,-35 - 13958: -28,-35 + 13688: -24,-35 + 13689: -20,-35 + 13690: -16,-35 + 13691: -28,-35 - node: color: '#FFA647FF' id: MiniTileWhiteInnerNw decals: - 13292: 50,28 + 13025: 50,28 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 10810: -37,1 - 11195: -1,28 - 11483: -7,-44 - 14196: 7,-42 - 14487: -6,-55 - 14498: -20,-66 + 10543: -37,1 + 10928: -1,28 + 11216: -7,-44 + 13929: 7,-42 + 14220: -6,-55 + 14231: -20,-66 - node: color: '#3EB388FF' id: MiniTileWhiteInnerSe decals: - 8060: 28,42 + 7793: 28,42 - node: color: '#439909FF' id: MiniTileWhiteInnerSe decals: - 8872: -58,-80 - 8873: -62,-80 - 8874: -57,-79 - 8875: -57,-71 - 8876: -61,-71 + 8605: -58,-80 + 8606: -62,-80 + 8607: -57,-79 + 8608: -57,-71 + 8609: -61,-71 - node: color: '#4A3519FF' id: MiniTileWhiteInnerSe decals: - 2650: -64,17 + 2603: -64,17 - node: color: '#4B709CFF' id: MiniTileWhiteInnerSe decals: - 10277: 14,-17 - 10334: 3,-18 - 10390: 12,15 - 10391: -13,15 - 10393: -11,17 - 10423: 1,-19 - 10475: 16,-1 - 10499: -35,-1 - 10500: -22,-1 - 11406: -29,-2 - 11407: -23,-2 - 13900: -13,-2 - 13960: 15,-2 - 14024: 15,-11 - 18197: -13,16 - 18198: -12,17 + 10010: 14,-17 + 10067: 3,-18 + 10123: 12,15 + 10124: -13,15 + 10126: -11,17 + 10156: 1,-19 + 10208: 16,-1 + 10232: -35,-1 + 10233: -22,-1 + 11139: -29,-2 + 11140: -23,-2 + 13633: -13,-2 + 13693: 15,-2 + 13757: 15,-11 + 17930: -13,16 + 17931: -12,17 - node: color: '#792DA9FF' id: MiniTileWhiteInnerSe @@ -16313,55 +16313,55 @@ entities: color: '#808080FF' id: MiniTileWhiteInnerSe decals: - 14138: 1,26 - 14165: 41,-1 + 13871: 1,26 + 13898: 41,-1 - node: color: '#8C347F96' id: MiniTileWhiteInnerSe decals: - 1448: -20,31 + 1401: -20,31 - node: color: '#96DAFFFF' id: MiniTileWhiteInnerSe decals: - 11585: -19,-56 - 11611: -5,-46 + 11318: -19,-56 + 11344: -5,-46 - node: color: '#9FED5896' id: MiniTileWhiteInnerSe decals: - 1161: -54,46 + 1114: -54,46 - node: color: '#C6FF91FF' id: MiniTileWhiteInnerSe decals: - 10602: 37,-1 - 10727: 1,-27 - 10956: -70,-1 - 11041: -58,26 - 11044: -52,26 - 11054: -39,26 - 11240: 1,31 - 11251: 1,36 - 11262: 1,44 - 11274: -13,30 - 11285: 1,49 - 11690: -44,53 - 11699: -62,53 + 10335: 37,-1 + 10460: 1,-27 + 10689: -70,-1 + 10774: -58,26 + 10777: -52,26 + 10787: -39,26 + 10973: 1,31 + 10984: 1,36 + 10995: 1,44 + 11007: -13,30 + 11018: 1,49 + 11423: -44,53 + 11432: -62,53 - node: color: '#D381C9FF' id: MiniTileWhiteInnerSe decals: - 1715: 48,-22 - 1716: 37,-21 - 2833: 61,-56 - 2886: 57,-56 + 1668: 48,-22 + 1669: 37,-21 + 2786: 61,-56 + 2839: 57,-56 - node: color: '#D69949FF' id: MiniTileWhiteInnerSe decals: - 10662: 51,-2 - 10663: 51,0 + 10395: 51,-2 + 10396: 51,0 - node: color: '#DE3A3ACC' id: MiniTileWhiteInnerSe @@ -16371,71 +16371,71 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteInnerSe decals: - 2012: 58,-8 + 1965: 58,-8 - node: color: '#EFB341FF' id: MiniTileWhiteInnerSe decals: - 8593: 52,43 + 8326: 52,43 - node: color: '#FBB2FFFF' id: MiniTileWhiteInnerSe decals: - 13890: 41,-11 + 13623: 41,-11 - node: color: '#FF5C5CFF' id: MiniTileWhiteInnerSe decals: - 12344: -10,-27 - 12345: -34,-26 + 12077: -10,-27 + 12078: -34,-26 - node: color: '#FFA647FF' id: MiniTileWhiteInnerSe decals: - 13189: 22,38 + 12922: 22,38 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe decals: - 14198: 4,-39 - 14477: -6,-45 - 14503: -20,-55 - 14606: -71,53 + 13931: 4,-39 + 14210: -6,-45 + 14236: -20,-55 + 14339: -71,53 - node: color: '#3EB388FF' id: MiniTileWhiteInnerSw decals: - 7898: 25,47 - 8059: 26,42 + 7631: 25,47 + 7792: 26,42 - node: color: '#439909FF' id: MiniTileWhiteInnerSw decals: - 8847: -63,-71 - 8848: -59,-71 - 8849: -63,-79 - 8850: -62,-80 - 8851: -58,-80 - 8852: -59,-79 + 8580: -63,-71 + 8581: -59,-71 + 8582: -63,-79 + 8583: -62,-80 + 8584: -58,-80 + 8585: -59,-79 - node: color: '#4B709CFF' id: MiniTileWhiteInnerSw decals: - 10261: 13,-2 - 10310: -14,-17 - 10321: -3,-18 - 10366: 12.998371,14.999188 - 10387: 11,17 - 10400: -12,15 - 10422: -1,-19 - 10501: -30,-1 - 11401: -29,-2 - 11402: -23,-2 - 13895: -15,-2 - 13896: -16,-1 - 14239: -15,-11 - 14259: -15,7 - 18199: -12,16 + 9994: 13,-2 + 10043: -14,-17 + 10054: -3,-18 + 10099: 12.998371,14.999188 + 10120: 11,17 + 10133: -12,15 + 10155: -1,-19 + 10234: -30,-1 + 11134: -29,-2 + 11135: -23,-2 + 13628: -15,-2 + 13629: -16,-1 + 13972: -15,-11 + 13992: -15,7 + 17932: -12,16 - node: color: '#792DA9FF' id: MiniTileWhiteInnerSw @@ -16446,391 +16446,391 @@ entities: color: '#808080FF' id: MiniTileWhiteInnerSw decals: - 14140: -1,26 - 14166: 39,-1 + 13873: -1,26 + 13899: 39,-1 - node: color: '#8C347F96' id: MiniTileWhiteInnerSw decals: - 1451: -23,31 + 1404: -23,31 - node: color: '#96DAFFFF' id: MiniTileWhiteInnerSw decals: - 11610: -7,-56 - 11612: 5,-46 + 11343: -7,-56 + 11345: 5,-46 - node: color: '#BC863FFF' id: MiniTileWhiteInnerSw decals: - 2296: 53,-2 - 2297: 53,0 + 2249: 53,-2 + 2250: 53,0 - node: color: '#C6FF91FF' id: MiniTileWhiteInnerSw decals: - 10599: 30,-1 - 11040: -61,26 - 11043: -54,26 - 11053: -41,26 - 11272: -14,30 - 11293: -1,49 - 11689: -46,53 - 11698: -66,53 - 14609: -41,53 + 10332: 30,-1 + 10773: -61,26 + 10776: -54,26 + 10786: -41,26 + 11005: -14,30 + 11026: -1,49 + 11422: -46,53 + 11431: -66,53 + 14342: -41,53 - node: color: '#D381C9FF' id: MiniTileWhiteInnerSw decals: - 1717: 43,-21 - 2242: 47,-30 - 2835: 59,-56 - 2885: 63,-56 + 1670: 43,-21 + 2195: 47,-30 + 2788: 59,-56 + 2838: 63,-56 - node: color: '#EFB341FF' id: MiniTileWhiteInnerSw decals: - 8592: 50,43 + 8325: 50,43 - node: color: '#FBB2FFFF' id: MiniTileWhiteInnerSw decals: - 13884: 39,-14 + 13617: 39,-14 - node: color: '#FF5C5CFF' id: MiniTileWhiteInnerSw decals: - 12341: -12,-27 - 12342: -16,-26 - 12515: -74,-11 + 12074: -12,-27 + 12075: -16,-26 + 12248: -74,-11 - node: color: '#FFA647FF' id: MiniTileWhiteInnerSw decals: - 13205: 39,38 + 12938: 39,38 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 10806: -37,-1 - 14199: 7,-39 - 14470: 6,-45 - 14486: -6,-55 + 10539: -37,-1 + 13932: 7,-39 + 14203: 6,-45 + 14219: -6,-55 - node: color: '#3EB388FF' id: MiniTileWhiteLineE decals: - 7885: 31,47 - 7959: 31,43 - 7977: 22,48 - 7978: 22,49 - 7979: 22,50 - 7980: 22,51 - 7981: 22,52 - 7989: 23,44 - 8057: 28,41 + 7618: 31,47 + 7692: 31,43 + 7710: 22,48 + 7711: 22,49 + 7712: 22,50 + 7713: 22,51 + 7714: 22,52 + 7722: 23,44 + 7790: 28,41 - node: color: '#439909FF' id: MiniTileWhiteLineE decals: - 8618: -59,-61 - 8626: -57,-65 - 8627: -57,-67 - 8652: -49,-61 - 8653: -49,-57 - 8683: -45,-66 - 8699: -49,-66 - 8702: -41,-66 - 8717: -55,-66 - 8729: -51,-66 - 8744: -51,-71 - 8754: -52,-62 - 8755: -52,-60 - 8756: -52,-59 - 8757: -52,-58 - 8765: -54,-61 - 8766: -54,-60 - 8767: -54,-58 - 8768: -54,-57 - 8888: -44,-74 - 8896: -44,-76 + 8351: -59,-61 + 8359: -57,-65 + 8360: -57,-67 + 8385: -49,-61 + 8386: -49,-57 + 8416: -45,-66 + 8432: -49,-66 + 8435: -41,-66 + 8450: -55,-66 + 8462: -51,-66 + 8477: -51,-71 + 8487: -52,-62 + 8488: -52,-60 + 8489: -52,-59 + 8490: -52,-58 + 8498: -54,-61 + 8499: -54,-60 + 8500: -54,-58 + 8501: -54,-57 + 8621: -44,-74 + 8629: -44,-76 - node: color: '#4B709CFF' id: MiniTileWhiteLineE decals: - 10020: -13,-3 - 10021: -13,-4 - 10022: -13,-5 - 10023: -13,-6 - 10024: -13,-7 - 10025: -13,-8 - 10026: -13,-9 - 10027: -13,-10 - 10028: -13,-11 - 10029: -13,-12 - 10030: -13,-13 - 10031: -13,-14 - 10049: -13,3 - 10051: -13,4 - 10053: -13,5 - 10056: -13,6 - 10057: -13,7 - 10058: -13,8 - 10060: -13,9 - 10062: -13,10 - 10063: -13,11 - 10064: -13,12 - 10065: -13,13 - 10066: -13,14 - 10084: 15,3 - 10085: 15,-3 - 10121: 1,25 - 10122: 1,24 - 10123: 1,23 - 10124: 1,22 - 10125: 1,21 - 10234: 17,10 - 10235: 17,8 - 10236: 17,7 - 10238: 15,14 - 10239: 15,13 - 10240: 15,12 - 10241: 15,15 - 10243: 15,6 - 10244: 15,5 - 10245: 15,4 - 10265: 15,-4 - 10266: 15,-5 - 10267: 15,-6 - 10270: 15,-14 - 10271: 15,-13 - 10272: 15,-12 - 10274: 15,-15 - 10406: 17,-7 - 10407: 17,-11 - 10414: 1,-20 - 10415: 1,-21 - 10416: 1,-22 - 10417: 1,-23 - 11395: -29,-3 - 11396: -23,-3 - 12296: -45,-29 - 12315: -55,-29 - 12316: -55,-31 - 12334: -59,-32 - 12335: -59,-31 - 12336: -59,-28 - 12579: -45,-31 - 12757: -59,-29 - 13964: -12,0 - 13987: 17,-8 - 13988: 17,-10 - 18195: -13,15 + 9753: -13,-3 + 9754: -13,-4 + 9755: -13,-5 + 9756: -13,-6 + 9757: -13,-7 + 9758: -13,-8 + 9759: -13,-9 + 9760: -13,-10 + 9761: -13,-11 + 9762: -13,-12 + 9763: -13,-13 + 9764: -13,-14 + 9782: -13,3 + 9784: -13,4 + 9786: -13,5 + 9789: -13,6 + 9790: -13,7 + 9791: -13,8 + 9793: -13,9 + 9795: -13,10 + 9796: -13,11 + 9797: -13,12 + 9798: -13,13 + 9799: -13,14 + 9817: 15,3 + 9818: 15,-3 + 9854: 1,25 + 9855: 1,24 + 9856: 1,23 + 9857: 1,22 + 9858: 1,21 + 9967: 17,10 + 9968: 17,8 + 9969: 17,7 + 9971: 15,14 + 9972: 15,13 + 9973: 15,12 + 9974: 15,15 + 9976: 15,6 + 9977: 15,5 + 9978: 15,4 + 9998: 15,-4 + 9999: 15,-5 + 10000: 15,-6 + 10003: 15,-14 + 10004: 15,-13 + 10005: 15,-12 + 10007: 15,-15 + 10139: 17,-7 + 10140: 17,-11 + 10147: 1,-20 + 10148: 1,-21 + 10149: 1,-22 + 10150: 1,-23 + 11128: -29,-3 + 11129: -23,-3 + 12029: -45,-29 + 12048: -55,-29 + 12049: -55,-31 + 12067: -59,-32 + 12068: -59,-31 + 12069: -59,-28 + 12312: -45,-31 + 12490: -59,-29 + 13697: -12,0 + 13720: 17,-8 + 13721: 17,-10 + 17928: -13,15 - node: color: '#52B4E9FF' id: MiniTileWhiteLineE decals: - 12628: -9,-22 - 12629: -9,-21 + 12361: -9,-22 + 12362: -9,-21 - node: color: '#792DA9FF' id: MiniTileWhiteLineE decals: 764: 50,-27 807: 58,-26 - 2249: 58,-27 - 2250: 58,-25 + 2202: 58,-27 + 2203: 58,-25 - node: color: '#8C347F96' id: MiniTileWhiteLineE decals: - 1446: -20,33 + 1399: -20,33 - node: color: '#96DAFFFF' id: MiniTileWhiteLineE decals: - 11352: 8,-35 - 11353: 8,-36 - 11434: 7,-45 - 11435: 7,-46 - 11436: 7,-47 - 11437: 7,-48 - 11438: 7,-49 - 11439: 7,-50 - 11440: 7,-51 - 11441: 7,-53 - 11442: 7,-54 - 11443: 7,-55 - 11444: 7,-56 - 11445: 7,-60 - 11446: 7,-57 - 11447: 7,-58 - 11448: 7,-59 - 11449: 7,-61 - 11450: 7,-63 - 11451: 7,-65 - 11493: -5,-47 - 11494: -5,-48 - 11495: -5,-49 - 11496: -5,-53 - 11497: -5,-57 - 11498: -5,-58 - 11499: -5,-59 - 11500: -5,-60 - 11501: -5,-61 - 11502: -5,-63 - 11503: -5,-65 - 11521: -19,-57 - 11522: -19,-58 - 11523: -19,-59 - 11524: -19,-60 - 11525: -19,-61 - 11526: -19,-62 - 11527: -19,-63 - 11528: -19,-64 - 11529: -19,-65 - 11530: -19,-66 - 14182: 7,-41 - 14183: 7,-40 + 11085: 8,-35 + 11086: 8,-36 + 11167: 7,-45 + 11168: 7,-46 + 11169: 7,-47 + 11170: 7,-48 + 11171: 7,-49 + 11172: 7,-50 + 11173: 7,-51 + 11174: 7,-53 + 11175: 7,-54 + 11176: 7,-55 + 11177: 7,-56 + 11178: 7,-60 + 11179: 7,-57 + 11180: 7,-58 + 11181: 7,-59 + 11182: 7,-61 + 11183: 7,-63 + 11184: 7,-65 + 11226: -5,-47 + 11227: -5,-48 + 11228: -5,-49 + 11229: -5,-53 + 11230: -5,-57 + 11231: -5,-58 + 11232: -5,-59 + 11233: -5,-60 + 11234: -5,-61 + 11235: -5,-63 + 11236: -5,-65 + 11254: -19,-57 + 11255: -19,-58 + 11256: -19,-59 + 11257: -19,-60 + 11258: -19,-61 + 11259: -19,-62 + 11260: -19,-63 + 11261: -19,-64 + 11262: -19,-65 + 11263: -19,-66 + 13915: 7,-41 + 13916: 7,-40 - node: color: '#9D7400FF' id: MiniTileWhiteLineE decals: - 8086: 48,38 - 8087: 48,36 - 8088: 48,34 + 7819: 48,38 + 7820: 48,36 + 7821: 48,34 - node: color: '#9FED5896' id: MiniTileWhiteLineE decals: - 1167: -48,47 - 1168: -48,48 - 1169: -49,50 + 1120: -48,47 + 1121: -48,48 + 1122: -49,50 - node: color: '#AE6716FF' id: MiniTileWhiteLineE decals: - 16457: 83,8 + 16190: 83,8 - node: color: '#BC863FFF' id: MiniTileWhiteLineE decals: - 1880: 86,-12 - 1881: 86,-11 - 1882: 86,-10 - 1883: 86,-9 - 1884: 86,-8 - 1885: 86,-7 - 1886: 86,-6 - 1887: 86,-5 - 1888: 86,-4 - 1889: 86,-3 - 1899: 81,-2 - 1901: 81,0 - 1902: 81,1 - 1903: 81,2 - 1915: 69,3 - 1917: 69,4 - 1931: 63,5 - 1932: 63,6 - 2160: 86,4 - 2187: 59,8 - 2188: 59,7 - 2189: 59,6 - 2208: 86,-1 - 2209: 86,0 - 2210: 86,1 - 2252: 59,1 - 2253: 59,-1 - 2254: 59,-2 - 2255: 59,-3 - 2256: 59,-4 - 2302: 90,-15 + 1833: 86,-12 + 1834: 86,-11 + 1835: 86,-10 + 1836: 86,-9 + 1837: 86,-8 + 1838: 86,-7 + 1839: 86,-6 + 1840: 86,-5 + 1841: 86,-4 + 1842: 86,-3 + 1852: 81,-2 + 1854: 81,0 + 1855: 81,1 + 1856: 81,2 + 1868: 69,3 + 1870: 69,4 + 1884: 63,5 + 1885: 63,6 + 2113: 86,4 + 2140: 59,8 + 2141: 59,7 + 2142: 59,6 + 2161: 86,-1 + 2162: 86,0 + 2163: 86,1 + 2205: 59,1 + 2206: 59,-1 + 2207: 59,-2 + 2208: 59,-3 + 2209: 59,-4 + 2255: 90,-15 - node: color: '#C6FF91FF' id: MiniTileWhiteLineE decals: - 10700: 1,-32 - 10701: 1,-31 - 10702: 1,-30 - 10703: 1,-29 - 10706: 1,-28 - 10709: 1,-24 - 10717: -39,25 - 10718: -39,24 - 10719: -39,23 - 10720: -39,21 - 10721: -39,20 - 10722: -39,19 - 10723: -39,18 - 10724: -39,17 - 10725: -39,16 - 10912: -39,12 - 10913: -39,10 - 10914: -39,9 - 10915: -39,8 - 10916: -39,7 - 10917: -39,6 - 10918: -39,5 - 10919: -39,4 - 10920: -39,3 - 10921: -39,2 - 10931: -70,2 - 11060: -25,36 - 11061: -25,35 - 11062: -25,34 - 11063: -25,33 - 11064: -25,32 - 11065: -25,30 - 11066: -25,29 - 11129: -6,63 - 11130: -6,62 - 11131: -6,59 - 11132: -6,58 - 11133: -6,57 - 11134: -6,56 - 11135: -6,55 - 11136: -6,54 - 11137: -6,53 - 11138: -6,52 - 11145: 1,48 - 11146: 1,47 - 11147: 1,43 - 11148: 1,42 - 11149: 1,40 - 11150: 1,39 - 11151: 1,35 - 11152: 1,34 - 11153: 1,30 - 11154: 1,29 - 11181: -6,60 - 11222: 2,37 - 11224: 2,32 - 11261: 2,45 - 11269: -13,29 - 11278: 2,50 - 11626: -39,39 - 11627: -39,40 - 11628: -39,41 - 11629: -39,42 - 11630: -39,43 - 11631: -39,44 - 11632: -39,45 - 11633: -39,46 - 11634: -39,48 - 11635: -39,49 - 11636: -39,50 - 11637: -39,51 - 11641: -44,52 - 11642: -44,51 - 11700: -71,57 - 11707: -75,57 - 11708: -75,56 - 14597: -71,56 - 14612: -39,55 - 14613: -39,54 - 14614: -39,53 - 14615: -39,52 + 10433: 1,-32 + 10434: 1,-31 + 10435: 1,-30 + 10436: 1,-29 + 10439: 1,-28 + 10442: 1,-24 + 10450: -39,25 + 10451: -39,24 + 10452: -39,23 + 10453: -39,21 + 10454: -39,20 + 10455: -39,19 + 10456: -39,18 + 10457: -39,17 + 10458: -39,16 + 10645: -39,12 + 10646: -39,10 + 10647: -39,9 + 10648: -39,8 + 10649: -39,7 + 10650: -39,6 + 10651: -39,5 + 10652: -39,4 + 10653: -39,3 + 10654: -39,2 + 10664: -70,2 + 10793: -25,36 + 10794: -25,35 + 10795: -25,34 + 10796: -25,33 + 10797: -25,32 + 10798: -25,30 + 10799: -25,29 + 10862: -6,63 + 10863: -6,62 + 10864: -6,59 + 10865: -6,58 + 10866: -6,57 + 10867: -6,56 + 10868: -6,55 + 10869: -6,54 + 10870: -6,53 + 10871: -6,52 + 10878: 1,48 + 10879: 1,47 + 10880: 1,43 + 10881: 1,42 + 10882: 1,40 + 10883: 1,39 + 10884: 1,35 + 10885: 1,34 + 10886: 1,30 + 10887: 1,29 + 10914: -6,60 + 10955: 2,37 + 10957: 2,32 + 10994: 2,45 + 11002: -13,29 + 11011: 2,50 + 11359: -39,39 + 11360: -39,40 + 11361: -39,41 + 11362: -39,42 + 11363: -39,43 + 11364: -39,44 + 11365: -39,45 + 11366: -39,46 + 11367: -39,48 + 11368: -39,49 + 11369: -39,50 + 11370: -39,51 + 11374: -44,52 + 11375: -44,51 + 11433: -71,57 + 11440: -75,57 + 11441: -75,56 + 14330: -71,56 + 14345: -39,55 + 14346: -39,54 + 14347: -39,53 + 14348: -39,52 - node: color: '#D381C9CC' id: MiniTileWhiteLineE @@ -16842,49 +16842,49 @@ entities: color: '#D381C9FF' id: MiniTileWhiteLineE decals: - 1719: 37,-22 - 1744: 45,-21 - 1745: 45,-20 - 1752: 44,-18 - 1758: 37,-23 - 2229: 48,-30 - 2230: 48,-32 - 2231: 48,-33 - 2232: 48,-34 - 2528: 77,-36 - 2529: 77,-38 - 2530: 77,-39 - 2531: 77,-41 - 2553: 72,-36 - 2637: 81,-31 - 2714: 57,-65 - 2715: 63,-65 - 2786: 61,-62 - 2787: 61,-63 - 2788: 61,-64 - 2798: 61,-66 - 2815: 61,-58 - 2830: 61,-57 - 2880: 68,-55 - 2969: 57,-55 - 2984: 64,-48 - 3078: 74,-23 - 3079: 74,-24 - 3080: 74,-25 - 3081: 74,-26 - 3082: 74,-27 - 3116: 75,-32 - 6763: 44,-17 + 1672: 37,-22 + 1697: 45,-21 + 1698: 45,-20 + 1705: 44,-18 + 1711: 37,-23 + 2182: 48,-30 + 2183: 48,-32 + 2184: 48,-33 + 2185: 48,-34 + 2481: 77,-36 + 2482: 77,-38 + 2483: 77,-39 + 2484: 77,-41 + 2506: 72,-36 + 2590: 81,-31 + 2667: 57,-65 + 2668: 63,-65 + 2739: 61,-62 + 2740: 61,-63 + 2741: 61,-64 + 2751: 61,-66 + 2768: 61,-58 + 2783: 61,-57 + 2833: 68,-55 + 2922: 57,-55 + 2937: 64,-48 + 3031: 74,-23 + 3032: 74,-24 + 3033: 74,-25 + 3034: 74,-26 + 3035: 74,-27 + 3069: 75,-32 + 6514: 44,-17 - node: color: '#D69949FF' id: MiniTileWhiteLineE decals: - 10637: 51,3 - 10638: 51,2 - 10639: 51,1 - 10640: 51,-1 - 10641: 51,-3 - 10645: 51,-4 + 10370: 51,3 + 10371: 51,2 + 10372: 51,1 + 10373: 51,-1 + 10374: 51,-3 + 10378: 51,-4 - node: color: '#DE3A3ACC' id: MiniTileWhiteLineE @@ -16896,438 +16896,438 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteLineE decals: - 1990: 59,-6 - 4798: -79,43 - 4799: -75,43 - 4800: -75,44 - 4801: -75,45 - 4802: -75,46 - 4837: -71,43 - 4838: -71,42 - 4842: -75,51 - 4843: -75,52 - 4845: -71,51 - 9761: 46,4 - 9762: 46,5 - 9763: 46,6 - 9764: 46,8 - 9765: 46,9 - 9766: 46,10 - 9767: 46,11 - 14594: -71,52 - 15687: 41,13 - 15688: 41,12 - 15689: 41,11 - 15690: 41,9 + 1943: 59,-6 + 4601: -79,43 + 4602: -75,43 + 4603: -75,44 + 4604: -75,45 + 4605: -75,46 + 4640: -71,43 + 4641: -71,42 + 4645: -75,51 + 4646: -75,52 + 4648: -71,51 + 9494: 46,4 + 9495: 46,5 + 9496: 46,6 + 9497: 46,8 + 9498: 46,9 + 9499: 46,10 + 9500: 46,11 + 14327: -71,52 + 15420: 41,13 + 15421: 41,12 + 15422: 41,11 + 15423: 41,9 - node: color: '#EFB341FF' id: MiniTileWhiteLineE decals: - 8194: 46,43 - 8195: 46,44 - 8196: 46,45 - 8197: 46,47 - 8198: 46,46 - 8301: 68,44 - 8302: 68,43 - 8303: 68,42 - 8548: 67,48 - 8549: 67,51 - 8571: 60,43 - 8580: 52,42 + 7927: 46,43 + 7928: 46,44 + 7929: 46,45 + 7930: 46,47 + 7931: 46,46 + 8034: 68,44 + 8035: 68,43 + 8036: 68,42 + 8281: 67,48 + 8282: 67,51 + 8304: 60,43 + 8313: 52,42 - node: color: '#FBB2FFFF' id: MiniTileWhiteLineE decals: - 10573: 41,-2 - 10574: 41,-3 - 10575: 41,-5 - 10576: 41,-6 - 10577: 41,-7 - 10578: 41,-8 - 10579: 41,-12 - 10580: 41,-13 - 10581: 41,-14 - 10582: 41,-15 - 10583: 41,-16 - 10779: 22,-27 - 10780: 22,-25 + 10306: 41,-2 + 10307: 41,-3 + 10308: 41,-5 + 10309: 41,-6 + 10310: 41,-7 + 10311: 41,-8 + 10312: 41,-12 + 10313: 41,-13 + 10314: 41,-14 + 10315: 41,-15 + 10316: 41,-16 + 10512: 22,-27 + 10513: 22,-25 - node: color: '#FF5C5CFF' id: MiniTileWhiteLineE decals: - 10619: 41,7 - 10620: 41,6 - 10621: 41,5 - 10622: 41,4 - 10623: 41,2 - 11953: -34,-35 - 11954: -34,-34 - 11955: -34,-33 - 11956: -34,-32 - 11957: -34,-31 - 11958: -34,-30 - 11959: -34,-29 - 11960: -41,-35 - 11961: -41,-34 - 11962: -41,-32 - 11963: -41,-30 - 11964: -41,-29 - 11965: -45,-33 - 11966: -45,-35 - 11967: -59,-31 - 11968: -59,-32 - 11984: -59,-28 - 12002: -41,-45 - 12003: -41,-43 - 12004: -41,-42 - 12005: -41,-41 - 12006: -41,-39 - 12007: -41,-38 - 12008: -41,-37 - 12023: -45,-39 - 12024: -45,-38 - 12025: -45,-37 - 12026: -45,-41 - 12027: -45,-42 - 12028: -45,-43 - 12051: -34,-27 - 12071: -10,-34 - 12072: -10,-37 - 12086: -3,-29 - 12087: -3,-30 - 12088: -3,-31 - 12089: -3,-32 - 12096: -10,-32 - 12097: -10,-31 - 12098: -10,-29 - 12099: -10,-28 - 12105: -9,-26 - 12118: -3,-26 - 12159: -39,-3 - 12160: -39,-4 - 12161: -39,-5 - 12162: -39,-6 - 12163: -39,-7 - 12185: -43,-8 - 12187: -43,-7 - 12189: -43,-6 - 12193: -43,-5 - 12195: -43,-4 - 12197: -43,-4 - 12198: -43,-3 - 12199: -39,-9 - 12200: -39,-10 - 12201: -39,-11 - 12202: -39,-12 - 12203: -39,-13 - 12204: -39,-14 - 12205: -39,-15 - 12206: -39,-16 - 12207: -39,-17 - 12208: -39,-18 - 12209: -39,-19 - 12210: -39,-20 - 12211: -39,-21 - 12212: -39,-22 - 12213: -39,-23 - 12238: -13,-24 - 12264: -56,-13 - 12265: -56,-14 - 12266: -56,-15 - 12267: -56,-16 - 12268: -56,-17 - 12291: -55,-31 - 12292: -55,-29 - 12363: -33,-19 - 12364: -33,-20 - 12365: -33,-21 - 12366: -33,-22 - 12463: -78,-6 - 12464: -78,-7 - 12465: -78,-8 - 12466: -78,-9 - 12467: -78,-11 - 12468: -72,-9 - 12469: -72,-10 - 12470: -72,-11 - 12471: -72,-12 - 12472: -72,-13 - 12473: -72,-14 - 12474: -72,-15 - 12475: -72,-17 - 12476: -72,-18 - 12477: -72,-19 - 12478: -72,-20 - 12479: -72,-21 - 12480: -72,-21 - 12481: -72,-22 - 12482: -72,-23 - 12483: -78,-21 - 12484: -78,-23 - 12485: -78,-24 - 12486: -78,-25 - 12487: -78,-26 - 12488: -78,-27 - 12489: -78,-28 - 12490: -78,-29 - 12491: -78,-30 - 12522: -68,-14 - 12523: -68,-15 - 12524: -68,-17 - 12525: -68,-18 - 12548: -10,-40 - 12549: -10,-41 - 13031: -72,-27 - 13032: -72,-26 - 13048: -72,-36 - 13049: -72,-35 - 13050: -72,-31 - 13051: -72,-32 - 13052: -72,-33 - 13090: -56,-12 - 20287: -3,-41 - 20288: -3,-40 + 10352: 41,7 + 10353: 41,6 + 10354: 41,5 + 10355: 41,4 + 10356: 41,2 + 11686: -34,-35 + 11687: -34,-34 + 11688: -34,-33 + 11689: -34,-32 + 11690: -34,-31 + 11691: -34,-30 + 11692: -34,-29 + 11693: -41,-35 + 11694: -41,-34 + 11695: -41,-32 + 11696: -41,-30 + 11697: -41,-29 + 11698: -45,-33 + 11699: -45,-35 + 11700: -59,-31 + 11701: -59,-32 + 11717: -59,-28 + 11735: -41,-45 + 11736: -41,-43 + 11737: -41,-42 + 11738: -41,-41 + 11739: -41,-39 + 11740: -41,-38 + 11741: -41,-37 + 11756: -45,-39 + 11757: -45,-38 + 11758: -45,-37 + 11759: -45,-41 + 11760: -45,-42 + 11761: -45,-43 + 11784: -34,-27 + 11804: -10,-34 + 11805: -10,-37 + 11819: -3,-29 + 11820: -3,-30 + 11821: -3,-31 + 11822: -3,-32 + 11829: -10,-32 + 11830: -10,-31 + 11831: -10,-29 + 11832: -10,-28 + 11838: -9,-26 + 11851: -3,-26 + 11892: -39,-3 + 11893: -39,-4 + 11894: -39,-5 + 11895: -39,-6 + 11896: -39,-7 + 11918: -43,-8 + 11920: -43,-7 + 11922: -43,-6 + 11926: -43,-5 + 11928: -43,-4 + 11930: -43,-4 + 11931: -43,-3 + 11932: -39,-9 + 11933: -39,-10 + 11934: -39,-11 + 11935: -39,-12 + 11936: -39,-13 + 11937: -39,-14 + 11938: -39,-15 + 11939: -39,-16 + 11940: -39,-17 + 11941: -39,-18 + 11942: -39,-19 + 11943: -39,-20 + 11944: -39,-21 + 11945: -39,-22 + 11946: -39,-23 + 11971: -13,-24 + 11997: -56,-13 + 11998: -56,-14 + 11999: -56,-15 + 12000: -56,-16 + 12001: -56,-17 + 12024: -55,-31 + 12025: -55,-29 + 12096: -33,-19 + 12097: -33,-20 + 12098: -33,-21 + 12099: -33,-22 + 12196: -78,-6 + 12197: -78,-7 + 12198: -78,-8 + 12199: -78,-9 + 12200: -78,-11 + 12201: -72,-9 + 12202: -72,-10 + 12203: -72,-11 + 12204: -72,-12 + 12205: -72,-13 + 12206: -72,-14 + 12207: -72,-15 + 12208: -72,-17 + 12209: -72,-18 + 12210: -72,-19 + 12211: -72,-20 + 12212: -72,-21 + 12213: -72,-21 + 12214: -72,-22 + 12215: -72,-23 + 12216: -78,-21 + 12217: -78,-23 + 12218: -78,-24 + 12219: -78,-25 + 12220: -78,-26 + 12221: -78,-27 + 12222: -78,-28 + 12223: -78,-29 + 12224: -78,-30 + 12255: -68,-14 + 12256: -68,-15 + 12257: -68,-17 + 12258: -68,-18 + 12281: -10,-40 + 12282: -10,-41 + 12764: -72,-27 + 12765: -72,-26 + 12781: -72,-36 + 12782: -72,-35 + 12783: -72,-31 + 12784: -72,-32 + 12785: -72,-33 + 12823: -56,-12 + 19925: -3,-41 + 19926: -3,-40 - node: color: '#FF9821FF' id: MiniTileWhiteLineE decals: - 13921: -18,-34 - 13927: -14,-34 + 13654: -18,-34 + 13660: -14,-34 - node: color: '#FFA647FF' id: MiniTileWhiteLineE decals: - 11166: 7,28 - 11167: 7,26 - 13113: 22,30 - 13120: 22,24 - 13121: 22,23 - 13122: 22,22 - 13182: 22,31 - 13183: 22,32 - 13184: 22,33 - 13185: 22,34 - 13186: 22,35 - 13187: 22,36 - 13188: 22,37 - 13241: 41,39 - 13242: 41,38 - 13243: 41,36 - 13244: 41,34 - 13245: 41,33 - 13246: 41,32 - 13247: 41,31 - 13248: 41,30 - 13249: 41,29 - 13272: 41,14 - 13273: 41,15 - 13274: 41,16 - 13275: 41,19 - 13276: 41,20 - 13277: 41,21 - 13278: 41,22 - 13279: 41,23 - 13280: 41,24 - 13281: 41,25 - 13301: 52,27 - 13302: 52,28 - 13303: 52,29 - 13304: 52,30 - 13305: 52,34 - 13306: 52,35 - 13307: 52,36 - 13308: 52,37 - 13309: 52,38 + 10899: 7,28 + 10900: 7,26 + 12846: 22,30 + 12853: 22,24 + 12854: 22,23 + 12855: 22,22 + 12915: 22,31 + 12916: 22,32 + 12917: 22,33 + 12918: 22,34 + 12919: 22,35 + 12920: 22,36 + 12921: 22,37 + 12974: 41,39 + 12975: 41,38 + 12976: 41,36 + 12977: 41,34 + 12978: 41,33 + 12979: 41,32 + 12980: 41,31 + 12981: 41,30 + 12982: 41,29 + 13005: 41,14 + 13006: 41,15 + 13007: 41,16 + 13008: 41,19 + 13009: 41,20 + 13010: 41,21 + 13011: 41,22 + 13012: 41,23 + 13013: 41,24 + 13014: 41,25 + 13034: 52,27 + 13035: 52,28 + 13036: 52,29 + 13037: 52,30 + 13038: 52,34 + 13039: 52,35 + 13040: 52,36 + 13041: 52,37 + 13042: 52,38 - node: color: '#FFBE00FF' id: MiniTileWhiteLineE decals: - 7482: 37,19 - 7495: 37,23 - 7530: 49,15 - 7531: 49,16 - 7532: 49,17 - 7533: 49,18 - 7534: 49,19 - 7535: 49,20 - 7536: 47,18 - 7537: 47,17 + 7215: 37,19 + 7228: 37,23 + 7263: 49,15 + 7264: 49,16 + 7265: 49,17 + 7266: 49,18 + 7267: 49,19 + 7268: 49,20 + 7269: 47,18 + 7270: 47,17 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 14184: 4,-41 - 14185: 4,-40 - 14474: -5,-45 - 14483: -6,-55 - 14484: 6,-55 + 13917: 4,-41 + 13918: 4,-40 + 14207: -5,-45 + 14216: -6,-55 + 14217: 6,-55 - node: color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 8853: 115,-52 - 8854: 115,-52 + 8586: 115,-52 + 8587: 115,-52 - node: color: '#3EB388FF' id: MiniTileWhiteLineN decals: - 7886: 27,53 - 7887: 25,53 - 7954: 27,44 - 7955: 30,44 - 7990: 22,45 - 8029: 29,44 - 8061: 25,40 - 8062: 24,40 - 8063: 23,40 - 8064: 21,40 - 8065: 22,40 - 8066: 29,40 - 8067: 30,40 - 8068: 32,40 - 13101: 20,40 - 13363: 31,40 + 7619: 27,53 + 7620: 25,53 + 7687: 27,44 + 7688: 30,44 + 7723: 22,45 + 7762: 29,44 + 7794: 25,40 + 7795: 24,40 + 7796: 23,40 + 7797: 21,40 + 7798: 22,40 + 7799: 29,40 + 7800: 30,40 + 7801: 32,40 + 12834: 20,40 + 13096: 31,40 - node: color: '#439909FF' id: MiniTileWhiteLineN decals: - 8623: -59,-64 - 8624: -58,-64 - 8684: -48,-64 - 8685: -47,-64 - 8686: -46,-64 - 8693: -48,-67 - 8694: -47,-67 - 8695: -46,-67 - 8705: -42,-64 - 8718: -53,-68 - 8727: -53,-64 - 8741: -53,-70 - 8764: -53,-62 - 8775: -53,-59 - 8776: -55,-74 - 8777: -53,-74 - 8778: -60,-74 - 8785: -51,-74 - 8786: -50,-74 - 8802: -61,-74 - 8803: -59,-74 - 8804: -57,-74 - 8805: -56,-74 - 8891: -46,-73 - 8892: -45,-73 + 8356: -59,-64 + 8357: -58,-64 + 8417: -48,-64 + 8418: -47,-64 + 8419: -46,-64 + 8426: -48,-67 + 8427: -47,-67 + 8428: -46,-67 + 8438: -42,-64 + 8451: -53,-68 + 8460: -53,-64 + 8474: -53,-70 + 8497: -53,-62 + 8508: -53,-59 + 8509: -55,-74 + 8510: -53,-74 + 8511: -60,-74 + 8518: -51,-74 + 8519: -50,-74 + 8535: -61,-74 + 8536: -59,-74 + 8537: -57,-74 + 8538: -56,-74 + 8624: -46,-73 + 8625: -45,-73 - node: color: '#4B709CFF' id: MiniTileWhiteLineN decals: - 10032: -12,-15 - 10033: -11,-15 - 10035: -9,-16 - 10036: -8,-16 - 10037: -7,-16 - 10038: -6,-16 - 10039: -5,-16 - 10040: -4,-16 - 10041: -3,-16 - 10042: -2,-16 - 10043: -1,-16 - 10044: 1,-16 - 10045: 2,-16 - 10046: 3,-16 - 10047: 4,-16 - 10048: 5,-16 - 10050: 6,-16 - 10052: 7,-16 - 10054: 8,-16 - 10055: 9,-16 - 10059: 11,-15 - 10061: 12,-15 - 10128: -2,20 - 10129: 2,20 - 10130: -4,19 - 10131: -5,19 - 10132: -6,19 - 10133: -7,19 - 10134: -8,19 - 10135: -9,19 - 10136: -10,19 - 10137: -11,19 - 10138: -12,19 - 10139: 4,19 - 10140: 5,19 - 10141: 6,19 - 10142: 7,19 - 10143: 8,19 - 10144: 9,19 - 10145: 10,19 - 10146: 11,19 - 10147: 12,19 - 10268: 17,-7 - 10429: -17,1 - 10430: -18,1 - 10431: -19,1 - 10432: -20,1 - 10433: -21,1 - 10450: 18,1 - 10453: 19,1 - 10455: 20,1 - 10457: 21,1 - 10458: 22,1 - 10459: 23,1 - 10460: 24,1 - 10461: 25,1 - 10462: 26,1 - 10463: 27,1 - 10464: 28,1 - 10502: -34,1 - 10503: -33,1 - 10504: -32,1 - 10505: -31,1 - 10506: -29,2 - 10515: -28,2 - 10520: -24,2 - 10521: -23,2 - 11383: -28,-4 - 11384: -27,-4 - 11385: -26,-4 - 11386: -25,-4 - 11387: -24,-4 - 12297: -45,-29 - 12298: -46,-29 - 12299: -48,-29 - 12300: -49,-29 - 12301: -50,-29 - 12302: -51,-29 - 12303: -52,-29 - 12304: -53,-29 - 12312: -57,-29 - 12313: -56,-29 - 12314: -55,-29 - 12324: -63,-28 - 12325: -62,-28 - 12326: -61,-28 - 12327: -60,-28 - 12328: -59,-28 - 14030: 16,-7 - 14051: 16,11 - 14234: -16,-7 - 14256: -16,11 - 14633: 17,1 + 9765: -12,-15 + 9766: -11,-15 + 9768: -9,-16 + 9769: -8,-16 + 9770: -7,-16 + 9771: -6,-16 + 9772: -5,-16 + 9773: -4,-16 + 9774: -3,-16 + 9775: -2,-16 + 9776: -1,-16 + 9777: 1,-16 + 9778: 2,-16 + 9779: 3,-16 + 9780: 4,-16 + 9781: 5,-16 + 9783: 6,-16 + 9785: 7,-16 + 9787: 8,-16 + 9788: 9,-16 + 9792: 11,-15 + 9794: 12,-15 + 9861: -2,20 + 9862: 2,20 + 9863: -4,19 + 9864: -5,19 + 9865: -6,19 + 9866: -7,19 + 9867: -8,19 + 9868: -9,19 + 9869: -10,19 + 9870: -11,19 + 9871: -12,19 + 9872: 4,19 + 9873: 5,19 + 9874: 6,19 + 9875: 7,19 + 9876: 8,19 + 9877: 9,19 + 9878: 10,19 + 9879: 11,19 + 9880: 12,19 + 10001: 17,-7 + 10162: -17,1 + 10163: -18,1 + 10164: -19,1 + 10165: -20,1 + 10166: -21,1 + 10183: 18,1 + 10186: 19,1 + 10188: 20,1 + 10190: 21,1 + 10191: 22,1 + 10192: 23,1 + 10193: 24,1 + 10194: 25,1 + 10195: 26,1 + 10196: 27,1 + 10197: 28,1 + 10235: -34,1 + 10236: -33,1 + 10237: -32,1 + 10238: -31,1 + 10239: -29,2 + 10248: -28,2 + 10253: -24,2 + 10254: -23,2 + 11116: -28,-4 + 11117: -27,-4 + 11118: -26,-4 + 11119: -25,-4 + 11120: -24,-4 + 12030: -45,-29 + 12031: -46,-29 + 12032: -48,-29 + 12033: -49,-29 + 12034: -50,-29 + 12035: -51,-29 + 12036: -52,-29 + 12037: -53,-29 + 12045: -57,-29 + 12046: -56,-29 + 12047: -55,-29 + 12057: -63,-28 + 12058: -62,-28 + 12059: -61,-28 + 12060: -60,-28 + 12061: -59,-28 + 13763: 16,-7 + 13784: 16,11 + 13967: -16,-7 + 13989: -16,11 + 14366: 17,1 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 8843: 117,-52 - 8844: 117,-52 + 8576: 117,-52 + 8577: 117,-52 - node: color: '#52B4E9FF' id: MiniTileWhiteLineN decals: - 12612: -16,-20 - 12613: -15,-20 - 12614: -14,-20 - 12627: -10,-20 + 12345: -16,-20 + 12346: -15,-20 + 12347: -14,-20 + 12360: -10,-20 - node: color: '#792DA9FF' id: MiniTileWhiteLineN @@ -17352,267 +17352,267 @@ entities: color: '#8C347F96' id: MiniTileWhiteLineN decals: - 1443: -22,34 - 1444: -21,34 + 1396: -22,34 + 1397: -21,34 - node: color: '#96DAFFFF' id: MiniTileWhiteLineN decals: - 11328: 0,-34 - 11330: 2,-34 - 11331: 3,-34 - 11332: 4,-34 - 11334: 5,-34 - 11335: 6,-34 - 11336: 7,-34 - 11338: -2,-34 - 11339: -3,-34 - 11340: -4,-34 - 11341: -5,-34 - 11342: -6,-34 - 11343: -7,-34 - 11430: 2,-44 - 11431: 3,-44 - 11432: 4,-44 - 11475: 0,-44 - 11476: -1,-44 - 11477: -2,-44 - 11544: -34,-65 - 11545: -33,-65 - 11546: -32,-65 - 11547: -31,-65 - 11548: -30,-65 - 11549: -29,-65 - 11550: -28,-65 - 11551: -27,-65 - 11552: -26,-65 - 11553: -25,-65 - 11554: -24,-65 - 11555: -23,-65 - 11556: -22,-65 - 11565: -20,-54 - 11566: -19,-54 - 11567: -18,-54 - 11568: -17,-54 - 11569: -16,-54 - 11570: -15,-54 - 11571: -14,-54 - 11574: -9,-54 + 11061: 0,-34 + 11063: 2,-34 + 11064: 3,-34 + 11065: 4,-34 + 11067: 5,-34 + 11068: 6,-34 + 11069: 7,-34 + 11071: -2,-34 + 11072: -3,-34 + 11073: -4,-34 + 11074: -5,-34 + 11075: -6,-34 + 11076: -7,-34 + 11163: 2,-44 + 11164: 3,-44 + 11165: 4,-44 + 11208: 0,-44 + 11209: -1,-44 + 11210: -2,-44 + 11277: -34,-65 + 11278: -33,-65 + 11279: -32,-65 + 11280: -31,-65 + 11281: -30,-65 + 11282: -29,-65 + 11283: -28,-65 + 11284: -27,-65 + 11285: -26,-65 + 11286: -25,-65 + 11287: -24,-65 + 11288: -23,-65 + 11289: -22,-65 + 11298: -20,-54 + 11299: -19,-54 + 11300: -18,-54 + 11301: -17,-54 + 11302: -16,-54 + 11303: -15,-54 + 11304: -14,-54 + 11307: -9,-54 - node: color: '#9D7400FF' id: MiniTileWhiteLineN decals: - 8075: 44,39 - 8076: 45,39 - 8077: 46,39 - 8078: 47,39 + 7808: 44,39 + 7809: 45,39 + 7810: 46,39 + 7811: 47,39 - node: color: '#9FED5896' id: MiniTileWhiteLineN decals: - 1150: -57,51 - 1151: -56,51 - 1152: -55,51 - 1153: -54,51 - 1154: -53,51 - 1155: -52,51 - 1156: -51,51 - 1157: -50,51 - 8807: 121,-52 - 8808: 121,-52 + 1103: -57,51 + 1104: -56,51 + 1105: -55,51 + 1106: -54,51 + 1107: -53,51 + 1108: -52,51 + 1109: -51,51 + 1110: -50,51 + 8540: 121,-52 + 8541: 121,-52 - node: color: '#A4610696' id: MiniTileWhiteLineN decals: - 8832: 119,-52 - 8834: 119,-52 + 8565: 119,-52 + 8567: 119,-52 - node: color: '#BC863FFF' id: MiniTileWhiteLineN decals: - 1878: 87,-13 - 1890: 86,-3 - 1891: 85,-3 - 1892: 84,-3 - 1893: 83,-3 - 1894: 82,-3 - 1895: 88,-13 - 1896: 89,-13 - 1897: 90,-13 - 1904: 81,2 - 1905: 80,2 - 1906: 79,2 - 1907: 78,2 - 1908: 77,2 - 1909: 76,2 - 1910: 75,2 - 1911: 74,2 - 1912: 72,2 - 1913: 71,2 - 1914: 70,2 - 1922: 69,4 - 1925: 68,4 - 1926: 66,4 - 1927: 65,4 - 1928: 64,4 - 1941: 62,7 - 2181: 56,9 - 2182: 57,9 - 2185: 58,9 - 2212: 85,2 - 2213: 83,2 - 2214: 84,2 - 2278: 57,2 - 2279: 58,2 - 2280: 56,2 - 2281: 55,2 - 2282: 54,2 - 2298: 52,0 - 2299: 52,-2 + 1831: 87,-13 + 1843: 86,-3 + 1844: 85,-3 + 1845: 84,-3 + 1846: 83,-3 + 1847: 82,-3 + 1848: 88,-13 + 1849: 89,-13 + 1850: 90,-13 + 1857: 81,2 + 1858: 80,2 + 1859: 79,2 + 1860: 78,2 + 1861: 77,2 + 1862: 76,2 + 1863: 75,2 + 1864: 74,2 + 1865: 72,2 + 1866: 71,2 + 1867: 70,2 + 1875: 69,4 + 1878: 68,4 + 1879: 66,4 + 1880: 65,4 + 1881: 64,4 + 1894: 62,7 + 2134: 56,9 + 2135: 57,9 + 2138: 58,9 + 2165: 85,2 + 2166: 83,2 + 2167: 84,2 + 2231: 57,2 + 2232: 58,2 + 2233: 56,2 + 2234: 55,2 + 2235: 54,2 + 2251: 52,0 + 2252: 52,-2 - node: color: '#C6FF91FF' id: MiniTileWhiteLineN decals: - 10591: 34,1 - 10592: 33,1 - 10593: 32,1 - 10594: 31,1 - 10595: 30,1 - 10598: 29,1 - 10667: -40,28 - 10668: -42,28 - 10669: -43,28 - 10670: -44,28 - 10671: -45,28 - 10672: -46,28 - 10673: -47,28 - 10674: -49,28 - 10675: -50,28 - 10676: -51,28 - 10678: -52,28 - 10679: -53,28 - 10684: -54,28 - 10745: 15,-25 - 10746: 14,-25 - 10747: 13,-25 - 10748: 12,-25 - 10749: 10,-25 - 10750: 9,-25 - 10751: 8,-25 - 10752: 7,-25 - 10753: 6,-25 - 10754: 5,-25 - 10755: 4,-25 - 10756: 3,-25 - 10757: 2,-25 - 10815: -69,1 - 10816: -68,1 - 10817: -67,1 - 10818: -66,1 - 10820: -65,1 - 10822: -64,1 - 10823: -63,1 - 10825: -62,1 - 10827: -61,1 - 10828: -60,1 - 10829: -59,1 - 10856: -58,1 - 10857: -57,1 - 10860: -56,1 - 10864: -54,1 - 10866: -53,1 - 10869: -52,1 - 10871: -51,1 - 10873: -49,1 - 10877: -50,1 - 10881: -47,1 - 10886: -45,1 - 10891: -44,1 - 10892: -43,1 - 10894: -42,1 - 10922: -38,1 - 10923: -71,2 - 11001: -55,28 - 11002: -56,28 - 11003: -57,28 - 11007: -60,29 - 11010: -59,29 - 11011: -62,28 - 11076: -24,28 - 11077: -23,28 - 11078: -22,28 - 11079: -21,28 - 11080: -16,28 - 11081: -15,28 - 11082: -12,28 - 11083: -11,28 - 11084: -10,28 - 11085: -9,28 - 11086: -8,28 - 11087: -7,28 - 11088: -6,28 - 11089: -5,28 - 11090: -4,28 - 11091: -3,28 - 11092: -2,28 - 11139: -5,51 - 11140: -4,51 - 11141: -3,51 - 11142: -1,51 - 11143: 0,51 - 11144: 1,51 - 11297: -7,63 - 11316: 4,42 - 11317: 5,42 - 11318: 6,42 - 11319: 7,42 - 11320: 9,42 - 11321: 11,42 - 11322: 10,42 - 11323: 12,42 - 11324: 13,42 - 11639: -40,56 - 11666: -69,55 - 11667: -68,55 - 11668: -67,55 - 11669: -66,55 - 11670: -64,55 - 11671: -62,55 - 11672: -61,55 - 11673: -60,55 - 11674: -59,55 - 11675: -58,55 - 11676: -57,55 - 11677: -55,55 - 11678: -54,55 - 11679: -53,55 - 11680: -52,55 - 11681: -51,55 - 11682: -50,55 - 11683: -46,55 - 11692: -48,56 - 11701: -72,58 - 11706: -76,58 - 14169: 38,1 - 14596: -70,55 - 14610: -42,55 - 14818: -28,28 - 14819: -29,28 - 14820: -30,28 - 14821: -31,28 - 14822: -32,28 - 14823: -33,28 - 14824: -34,28 - 14825: -35,28 - 14826: -36,28 - 14827: -37,28 - 14828: -38,28 + 10324: 34,1 + 10325: 33,1 + 10326: 32,1 + 10327: 31,1 + 10328: 30,1 + 10331: 29,1 + 10400: -40,28 + 10401: -42,28 + 10402: -43,28 + 10403: -44,28 + 10404: -45,28 + 10405: -46,28 + 10406: -47,28 + 10407: -49,28 + 10408: -50,28 + 10409: -51,28 + 10411: -52,28 + 10412: -53,28 + 10417: -54,28 + 10478: 15,-25 + 10479: 14,-25 + 10480: 13,-25 + 10481: 12,-25 + 10482: 10,-25 + 10483: 9,-25 + 10484: 8,-25 + 10485: 7,-25 + 10486: 6,-25 + 10487: 5,-25 + 10488: 4,-25 + 10489: 3,-25 + 10490: 2,-25 + 10548: -69,1 + 10549: -68,1 + 10550: -67,1 + 10551: -66,1 + 10553: -65,1 + 10555: -64,1 + 10556: -63,1 + 10558: -62,1 + 10560: -61,1 + 10561: -60,1 + 10562: -59,1 + 10589: -58,1 + 10590: -57,1 + 10593: -56,1 + 10597: -54,1 + 10599: -53,1 + 10602: -52,1 + 10604: -51,1 + 10606: -49,1 + 10610: -50,1 + 10614: -47,1 + 10619: -45,1 + 10624: -44,1 + 10625: -43,1 + 10627: -42,1 + 10655: -38,1 + 10656: -71,2 + 10734: -55,28 + 10735: -56,28 + 10736: -57,28 + 10740: -60,29 + 10743: -59,29 + 10744: -62,28 + 10809: -24,28 + 10810: -23,28 + 10811: -22,28 + 10812: -21,28 + 10813: -16,28 + 10814: -15,28 + 10815: -12,28 + 10816: -11,28 + 10817: -10,28 + 10818: -9,28 + 10819: -8,28 + 10820: -7,28 + 10821: -6,28 + 10822: -5,28 + 10823: -4,28 + 10824: -3,28 + 10825: -2,28 + 10872: -5,51 + 10873: -4,51 + 10874: -3,51 + 10875: -1,51 + 10876: 0,51 + 10877: 1,51 + 11030: -7,63 + 11049: 4,42 + 11050: 5,42 + 11051: 6,42 + 11052: 7,42 + 11053: 9,42 + 11054: 11,42 + 11055: 10,42 + 11056: 12,42 + 11057: 13,42 + 11372: -40,56 + 11399: -69,55 + 11400: -68,55 + 11401: -67,55 + 11402: -66,55 + 11403: -64,55 + 11404: -62,55 + 11405: -61,55 + 11406: -60,55 + 11407: -59,55 + 11408: -58,55 + 11409: -57,55 + 11410: -55,55 + 11411: -54,55 + 11412: -53,55 + 11413: -52,55 + 11414: -51,55 + 11415: -50,55 + 11416: -46,55 + 11425: -48,56 + 11434: -72,58 + 11439: -76,58 + 13902: 38,1 + 14329: -70,55 + 14343: -42,55 + 14551: -28,28 + 14552: -29,28 + 14553: -30,28 + 14554: -31,28 + 14555: -32,28 + 14556: -33,28 + 14557: -34,28 + 14558: -35,28 + 14559: -36,28 + 14560: -37,28 + 14561: -38,28 - node: color: '#D381C996' id: MiniTileWhiteLineN decals: - 8878: 117,-54 - 8879: 117,-54 + 8611: 117,-54 + 8612: 117,-54 - node: color: '#D381C9CC' id: MiniTileWhiteLineN @@ -17641,74 +17641,74 @@ entities: color: '#D381C9FF' id: MiniTileWhiteLineN decals: - 1720: 38,-19 - 1721: 39,-19 - 1722: 40,-19 - 1723: 41,-19 - 1724: 42,-19 - 1725: 37,-19 - 1726: 36,-19 - 1727: 35,-19 - 1737: 32,-22 - 1738: 33,-22 - 1741: 48,-22 - 1742: 47,-22 - 1743: 46,-22 - 1753: 50,-21 - 1828: 54,-30 - 1830: 51,-30 - 1831: 52,-30 - 2227: 47,-29 - 2228: 46,-29 - 2238: 45,-34 - 2239: 46,-34 - 2518: 71,-39 - 2519: 72,-39 - 2520: 73,-39 - 2525: 75,-35 - 2526: 76,-35 - 2634: 78,-30 - 2635: 79,-30 - 2636: 80,-30 - 2838: 58,-56 - 2839: 62,-56 - 2873: 64,-54 - 2874: 65,-54 - 2875: 66,-54 - 2876: 67,-54 - 2889: 53,-54 - 2890: 54,-54 - 2891: 55,-54 - 2892: 56,-54 - 2988: 60,-47 - 2989: 61,-47 - 2990: 62,-47 - 3074: 69,-22 - 3075: 70,-22 - 3076: 72,-22 - 3077: 73,-22 - 3108: 68,-30 - 3109: 70,-30 - 3110: 69,-30 - 3111: 72,-30 - 3112: 73,-30 - 3113: 74,-30 - 6766: 60,-30 - 6767: 61,-30 - 6768: 63,-30 - 6769: 64,-30 + 1673: 38,-19 + 1674: 39,-19 + 1675: 40,-19 + 1676: 41,-19 + 1677: 42,-19 + 1678: 37,-19 + 1679: 36,-19 + 1680: 35,-19 + 1690: 32,-22 + 1691: 33,-22 + 1694: 48,-22 + 1695: 47,-22 + 1696: 46,-22 + 1706: 50,-21 + 1781: 54,-30 + 1783: 51,-30 + 1784: 52,-30 + 2180: 47,-29 + 2181: 46,-29 + 2191: 45,-34 + 2192: 46,-34 + 2471: 71,-39 + 2472: 72,-39 + 2473: 73,-39 + 2478: 75,-35 + 2479: 76,-35 + 2587: 78,-30 + 2588: 79,-30 + 2589: 80,-30 + 2791: 58,-56 + 2792: 62,-56 + 2826: 64,-54 + 2827: 65,-54 + 2828: 66,-54 + 2829: 67,-54 + 2842: 53,-54 + 2843: 54,-54 + 2844: 55,-54 + 2845: 56,-54 + 2941: 60,-47 + 2942: 61,-47 + 2943: 62,-47 + 3027: 69,-22 + 3028: 70,-22 + 3029: 72,-22 + 3030: 73,-22 + 3061: 68,-30 + 3062: 70,-30 + 3063: 69,-30 + 3064: 72,-30 + 3065: 73,-30 + 3066: 74,-30 + 6517: 60,-30 + 6518: 61,-30 + 6519: 63,-30 + 6520: 64,-30 - node: color: '#D69949FF' id: MiniTileWhiteLineN decals: - 10634: 48,4 - 10635: 49,4 + 10367: 48,4 + 10368: 49,4 - node: color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 8815: 121,-54 - 8816: 121,-54 + 8548: 121,-54 + 8549: 121,-54 - node: color: '#DE3A3ACC' id: MiniTileWhiteLineN @@ -17725,459 +17725,459 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteLineN decals: - 1991: 59,-6 - 1992: 58,-6 - 1993: 57,-6 - 1994: 56,-6 - 1995: 54,-6 - 1996: 53,-6 - 1997: 52,-6 - 1998: 51,-6 - 4786: -79,45 - 4787: -81,45 - 4788: -82,45 - 4789: -83,45 - 9769: 45,12 - 9770: 44,12 + 1944: 59,-6 + 1945: 58,-6 + 1946: 57,-6 + 1947: 56,-6 + 1948: 54,-6 + 1949: 53,-6 + 1950: 52,-6 + 1951: 51,-6 + 4589: -79,45 + 4590: -81,45 + 4591: -82,45 + 4592: -83,45 + 9502: 45,12 + 9503: 44,12 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 8869: 115,-54 - 8870: 115,-54 + 8602: 115,-54 + 8603: 115,-54 - node: color: '#EFB341FF' id: MiniTileWhiteLineN decals: - 8133: 34,48 - 8134: 35,48 - 8162: 39,48 - 8163: 40,48 - 8164: 41,48 - 8165: 42,48 - 8166: 44,48 - 8167: 43,48 - 8168: 45,48 - 8296: 64,45 - 8297: 65,45 - 8298: 66,45 - 8299: 67,45 - 8550: 63,52 - 8551: 64,52 - 8552: 65,52 - 8553: 66,52 - 8566: 57,44 - 8567: 58,44 - 8568: 59,44 - 8569: 60,44 - 8585: 49,43 - 8586: 50,43 - 8587: 51,43 - 8588: 52,43 - 8589: 53,43 - 8590: 54,43 + 7866: 34,48 + 7867: 35,48 + 7895: 39,48 + 7896: 40,48 + 7897: 41,48 + 7898: 42,48 + 7899: 44,48 + 7900: 43,48 + 7901: 45,48 + 8029: 64,45 + 8030: 65,45 + 8031: 66,45 + 8032: 67,45 + 8283: 63,52 + 8284: 64,52 + 8285: 65,52 + 8286: 66,52 + 8299: 57,44 + 8300: 58,44 + 8301: 59,44 + 8302: 60,44 + 8318: 49,43 + 8319: 50,43 + 8320: 51,43 + 8321: 52,43 + 8322: 53,43 + 8323: 54,43 - node: color: '#FF3C29FF' id: MiniTileWhiteLineN decals: - 12670: -52,-33 + 12403: -52,-33 - node: color: '#FF5C5CFF' id: MiniTileWhiteLineN decals: - 10624: 42,1 - 10625: 43,1 - 10626: 44,1 - 10627: 45,1 - 10628: 46,1 - 10629: 47,1 - 10767: 17,-25 - 10768: 19,-25 - 10769: 21,-25 - 10770: 22,-25 - 11364: -7,-34 - 11365: -6,-34 - 11366: -5,-34 - 11369: -4,-34 - 11478: -3,-44 - 11479: -4,-44 - 11480: -5,-44 - 11481: -7,-44 - 11572: -13,-54 - 11573: -11,-54 - 11979: -63,-28 - 11980: -62,-28 - 11981: -61,-28 - 11982: -60,-28 - 11983: -59,-28 - 11990: -43,-29 - 11991: -41,-29 - 11992: -41,-37 - 11993: -43,-37 - 12011: -39,-43 - 12012: -38,-43 - 12013: -36,-43 - 12019: -35,-43 - 12022: -37,-43 - 12031: -45,-37 - 12032: -46,-37 - 12033: -45,-33 - 12034: -47,-33 - 12035: -49,-33 - 12036: -50,-33 - 12037: -51,-33 - 12044: -39,-29 - 12045: -38,-29 - 12046: -35,-29 - 12047: -34,-29 - 12069: -12,-34 - 12070: -10,-34 - 12080: -8,-29 - 12081: -7,-29 - 12082: -6,-29 - 12083: -5,-29 - 12084: -4,-29 - 12085: -3,-29 - 12107: -9,-25 - 12108: -7,-25 - 12109: -6,-25 - 12110: -5,-25 - 12111: -4,-25 - 12112: -3,-25 - 12168: -40,-3 - 12170: -40,-9 - 12171: -43,-3 - 12172: -45,-3 - 12173: -46,-3 - 12174: -44,-3 - 12214: -38,-24 - 12215: -37,-24 - 12216: -36,-24 - 12217: -34,-24 - 12218: -33,-24 - 12219: -32,-24 - 12220: -31,-24 - 12221: -30,-24 - 12222: -28,-24 - 12223: -27,-24 - 12224: -26,-24 - 12225: -24,-24 - 12226: -23,-24 - 12227: -22,-24 - 12228: -20,-24 - 12229: -19,-24 - 12230: -18,-24 - 12231: -17,-24 - 12232: -16,-24 - 12233: -14,-24 - 12234: -13,-24 - 12235: -12,-25 - 12236: -11,-25 - 12237: -10,-25 - 12254: -45,-10 - 12255: -46,-10 - 12256: -47,-10 - 12257: -48,-10 - 12258: -49,-10 - 12259: -51,-10 - 12260: -52,-10 - 12261: -53,-10 - 12262: -57,-10 - 12263: -58,-10 - 12270: -66,-15 - 12271: -65,-15 - 12272: -64,-15 - 12273: -63,-15 - 12274: -62,-15 - 12275: -61,-15 - 12276: -60,-15 - 12277: -59,-15 - 12285: -57,-29 - 12286: -56,-29 - 12287: -55,-29 - 12347: -43,-21 - 12348: -42,-21 - 12350: -37,-19 - 12351: -36,-19 - 12352: -35,-19 - 12353: -34,-19 - 12354: -33,-19 - 12436: -80,-6 - 12437: -79,-6 - 12438: -78,-6 - 12439: -76,-9 - 12440: -75,-9 - 12441: -74,-9 - 12442: -73,-9 - 12443: -72,-9 - 12492: -78,-21 - 12493: -79,-21 - 12494: -80,-21 - 12495: -75,-21 - 12496: -76,-21 - 12526: -70,-14 - 12527: -68,-14 - 12671: -52,-33 - 12675: -56,-33 - 13035: -75,-25 - 13036: -73,-25 - 13039: -75,-30 - 13040: -73,-30 - 20291: -5,-39 + 10357: 42,1 + 10358: 43,1 + 10359: 44,1 + 10360: 45,1 + 10361: 46,1 + 10362: 47,1 + 10500: 17,-25 + 10501: 19,-25 + 10502: 21,-25 + 10503: 22,-25 + 11097: -7,-34 + 11098: -6,-34 + 11099: -5,-34 + 11102: -4,-34 + 11211: -3,-44 + 11212: -4,-44 + 11213: -5,-44 + 11214: -7,-44 + 11305: -13,-54 + 11306: -11,-54 + 11712: -63,-28 + 11713: -62,-28 + 11714: -61,-28 + 11715: -60,-28 + 11716: -59,-28 + 11723: -43,-29 + 11724: -41,-29 + 11725: -41,-37 + 11726: -43,-37 + 11744: -39,-43 + 11745: -38,-43 + 11746: -36,-43 + 11752: -35,-43 + 11755: -37,-43 + 11764: -45,-37 + 11765: -46,-37 + 11766: -45,-33 + 11767: -47,-33 + 11768: -49,-33 + 11769: -50,-33 + 11770: -51,-33 + 11777: -39,-29 + 11778: -38,-29 + 11779: -35,-29 + 11780: -34,-29 + 11802: -12,-34 + 11803: -10,-34 + 11813: -8,-29 + 11814: -7,-29 + 11815: -6,-29 + 11816: -5,-29 + 11817: -4,-29 + 11818: -3,-29 + 11840: -9,-25 + 11841: -7,-25 + 11842: -6,-25 + 11843: -5,-25 + 11844: -4,-25 + 11845: -3,-25 + 11901: -40,-3 + 11903: -40,-9 + 11904: -43,-3 + 11905: -45,-3 + 11906: -46,-3 + 11907: -44,-3 + 11947: -38,-24 + 11948: -37,-24 + 11949: -36,-24 + 11950: -34,-24 + 11951: -33,-24 + 11952: -32,-24 + 11953: -31,-24 + 11954: -30,-24 + 11955: -28,-24 + 11956: -27,-24 + 11957: -26,-24 + 11958: -24,-24 + 11959: -23,-24 + 11960: -22,-24 + 11961: -20,-24 + 11962: -19,-24 + 11963: -18,-24 + 11964: -17,-24 + 11965: -16,-24 + 11966: -14,-24 + 11967: -13,-24 + 11968: -12,-25 + 11969: -11,-25 + 11970: -10,-25 + 11987: -45,-10 + 11988: -46,-10 + 11989: -47,-10 + 11990: -48,-10 + 11991: -49,-10 + 11992: -51,-10 + 11993: -52,-10 + 11994: -53,-10 + 11995: -57,-10 + 11996: -58,-10 + 12003: -66,-15 + 12004: -65,-15 + 12005: -64,-15 + 12006: -63,-15 + 12007: -62,-15 + 12008: -61,-15 + 12009: -60,-15 + 12010: -59,-15 + 12018: -57,-29 + 12019: -56,-29 + 12020: -55,-29 + 12080: -43,-21 + 12081: -42,-21 + 12083: -37,-19 + 12084: -36,-19 + 12085: -35,-19 + 12086: -34,-19 + 12087: -33,-19 + 12169: -80,-6 + 12170: -79,-6 + 12171: -78,-6 + 12172: -76,-9 + 12173: -75,-9 + 12174: -74,-9 + 12175: -73,-9 + 12176: -72,-9 + 12225: -78,-21 + 12226: -79,-21 + 12227: -80,-21 + 12228: -75,-21 + 12229: -76,-21 + 12259: -70,-14 + 12260: -68,-14 + 12404: -52,-33 + 12408: -56,-33 + 12768: -75,-25 + 12769: -73,-25 + 12772: -75,-30 + 12773: -73,-30 + 19929: -5,-39 - node: color: '#FF9821FF' id: MiniTileWhiteLineN decals: - 13905: -31,-34 - 13906: -29,-35 - 13908: -28,-34 - 13909: -27,-34 - 13911: -25,-35 - 13913: -24,-34 - 13914: -23,-34 - 13916: -21,-35 - 13918: -20,-34 - 13919: -19,-34 - 13920: -18,-34 - 13922: -17,-35 - 13924: -16,-34 - 13925: -15,-34 - 13926: -14,-34 + 13638: -31,-34 + 13639: -29,-35 + 13641: -28,-34 + 13642: -27,-34 + 13644: -25,-35 + 13646: -24,-34 + 13647: -23,-34 + 13649: -21,-35 + 13651: -20,-34 + 13652: -19,-34 + 13653: -18,-34 + 13655: -17,-35 + 13657: -16,-34 + 13658: -15,-34 + 13659: -14,-34 - node: color: '#FFA647FF' id: MiniTileWhiteLineN decals: - 10604: 39,7 - 11155: 7,28 - 11156: 5,28 - 11157: 4,28 - 11158: 3,28 - 11159: 2,28 - 13111: 18,28 - 13114: 24,28 - 13115: 25,28 - 13116: 26,28 - 13162: 55,34 - 13163: 56,34 - 13164: 57,34 - 13213: 38,28 - 13214: 37,28 - 13215: 36,28 - 13216: 33,28 - 13217: 32,28 - 13218: 31,28 - 13219: 30,28 - 13220: 29,28 - 13221: 28,28 - 13235: 33,40 - 13236: 36,40 - 13237: 37,40 - 13238: 38,40 - 13239: 39,40 - 13240: 40,40 - 13250: 42,28 - 13251: 43,28 - 13252: 44,28 - 13253: 45,28 - 13254: 46,28 - 13255: 47,28 - 13256: 48,28 - 13257: 49,28 - 15694: 41,7 + 10337: 39,7 + 10888: 7,28 + 10889: 5,28 + 10890: 4,28 + 10891: 3,28 + 10892: 2,28 + 12844: 18,28 + 12847: 24,28 + 12848: 25,28 + 12849: 26,28 + 12895: 55,34 + 12896: 56,34 + 12897: 57,34 + 12946: 38,28 + 12947: 37,28 + 12948: 36,28 + 12949: 33,28 + 12950: 32,28 + 12951: 31,28 + 12952: 30,28 + 12953: 29,28 + 12954: 28,28 + 12968: 33,40 + 12969: 36,40 + 12970: 37,40 + 12971: 38,40 + 12972: 39,40 + 12973: 40,40 + 12983: 42,28 + 12984: 43,28 + 12985: 44,28 + 12986: 45,28 + 12987: 46,28 + 12988: 47,28 + 12989: 48,28 + 12990: 49,28 + 15427: 41,7 - node: color: '#FFBE00FF' id: MiniTileWhiteLineN decals: - 7474: 33,24 - 7475: 34,24 - 7476: 35,24 - 7477: 36,24 - 7489: 32,22 - 7490: 33,22 - 7491: 34,22 - 7492: 35,22 - 7493: 36,22 - 7494: 37,22 - 7515: 44,21 - 7516: 45,21 - 7517: 46,21 - 7518: 47,21 - 7541: 46,19 - 7576: 48,21 + 7207: 33,24 + 7208: 34,24 + 7209: 35,24 + 7210: 36,24 + 7222: 32,22 + 7223: 33,22 + 7224: 34,22 + 7225: 35,22 + 7226: 36,22 + 7227: 37,22 + 7248: 44,21 + 7249: 45,21 + 7250: 46,21 + 7251: 47,21 + 7274: 46,19 + 7309: 48,21 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 14191: 5,-42 - 14192: 6,-42 - 14473: -5,-45 + 13924: 5,-42 + 13925: 6,-42 + 14206: -5,-45 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 8856: 115,-50 - 8857: 115,-50 + 8589: 115,-50 + 8590: 115,-50 - node: color: '#3EB388FF' id: MiniTileWhiteLineS decals: - 7881: 27,46 - 7882: 29,46 - 7883: 30,46 - 7962: 30,42 - 7963: 29,42 - 7994: 21,42 - 7995: 22,42 - 13176: 18,26 + 7614: 27,46 + 7615: 29,46 + 7616: 30,46 + 7695: 30,42 + 7696: 29,42 + 7727: 21,42 + 7728: 22,42 + 12909: 18,26 - node: color: '#439909FF' id: MiniTileWhiteLineS decals: - 8622: -61,-62 - 8630: -60,-68 - 8631: -59,-68 - 8632: -58,-68 - 8677: -48,-68 - 8678: -47,-68 - 8679: -46,-68 - 8696: -48,-65 - 8697: -47,-65 - 8698: -46,-65 - 8706: -42,-68 - 8720: -53,-64 - 8721: -53,-68 - 8742: -53,-72 - 8750: -53,-62 - 8773: -53,-59 - 8774: -53,-56 - 8779: -55,-76 - 8780: -54,-76 - 8781: -53,-76 - 8782: -52,-76 - 8783: -51,-76 - 8784: -50,-76 - 8797: -56,-76 - 8798: -57,-76 - 8799: -59,-76 - 8800: -60,-76 - 8801: -61,-76 - 8898: -46,-77 - 8899: -45,-77 + 8355: -61,-62 + 8363: -60,-68 + 8364: -59,-68 + 8365: -58,-68 + 8410: -48,-68 + 8411: -47,-68 + 8412: -46,-68 + 8429: -48,-65 + 8430: -47,-65 + 8431: -46,-65 + 8439: -42,-68 + 8453: -53,-64 + 8454: -53,-68 + 8475: -53,-72 + 8483: -53,-62 + 8506: -53,-59 + 8507: -53,-56 + 8512: -55,-76 + 8513: -54,-76 + 8514: -53,-76 + 8515: -52,-76 + 8516: -51,-76 + 8517: -50,-76 + 8530: -56,-76 + 8531: -57,-76 + 8532: -59,-76 + 8533: -60,-76 + 8534: -61,-76 + 8631: -46,-77 + 8632: -45,-77 - node: color: '#4B709CFF' id: MiniTileWhiteLineS decals: - 10075: -10,17 - 10077: -9,17 - 10079: -8,17 - 10081: -7,17 - 10086: -6,17 - 10088: -5,17 - 10089: -4,17 - 10091: -1,17 - 10092: 0,17 - 10093: 1,17 - 10095: 2,17 - 10096: 3,17 - 10097: 4,17 - 10098: 5,17 - 10100: 6,17 - 10101: 7,17 - 10102: 8,17 - 10103: 9,17 - 10104: 10,17 - 10242: 17,7 - 10273: 17,-11 - 10278: 13,-18 - 10279: 12,-18 - 10280: 11,-18 - 10281: 10,-18 - 10282: 9,-18 - 10283: 8,-18 - 10284: 7,-18 - 10285: 6,-18 - 10286: 5,-18 - 10287: 4,-18 - 10288: 2,-19 - 10289: -2,-19 - 10290: -4,-18 - 10291: -5,-18 - 10292: -6,-18 - 10293: -7,-18 - 10294: -8,-18 - 10295: -9,-18 - 10296: -10,-18 - 10297: -11,-18 - 10298: -12,-18 - 10299: -13,-18 - 10424: -17,-1 - 10425: -18,-1 - 10426: -19,-1 - 10427: -20,-1 - 10428: -21,-1 - 10434: 17,-1 - 10435: 18,-1 - 10436: 19,-1 - 10437: 20,-1 - 10438: 21,-1 - 10439: 22,-1 - 10440: 23,-1 - 10441: 24,-1 - 10442: 25,-1 - 10443: 27,-1 - 10444: 26,-1 - 10445: 28,-1 - 10484: -34,-1 - 10485: -33,-1 - 10486: -32,-1 - 10487: -31,-1 - 11378: -28,-2 - 11379: -27,-2 - 11380: -26,-2 - 11381: -25,-2 - 11382: -24,-2 - 11388: -29,-4 - 11389: -28,-4 - 11390: -27,-4 - 11391: -26,-4 - 11392: -25,-4 - 11393: -24,-4 - 11394: -23,-4 - 12293: -49,-31 - 12294: -47,-31 - 12295: -45,-31 - 12305: -53,-31 - 12306: -52,-31 - 12307: -51,-31 - 12308: -50,-31 - 12309: -55,-31 - 12310: -56,-31 - 12311: -57,-31 - 12329: -63,-32 - 12330: -62,-32 - 12331: -61,-32 - 12332: -60,-32 - 12333: -59,-32 - 14027: 16,-11 - 14052: 16,7 - 14135: -3,17 - 14136: -2,17 - 14237: -16,-11 - 14257: -16,7 - 18196: -11,17 + 9808: -10,17 + 9810: -9,17 + 9812: -8,17 + 9814: -7,17 + 9819: -6,17 + 9821: -5,17 + 9822: -4,17 + 9824: -1,17 + 9825: 0,17 + 9826: 1,17 + 9828: 2,17 + 9829: 3,17 + 9830: 4,17 + 9831: 5,17 + 9833: 6,17 + 9834: 7,17 + 9835: 8,17 + 9836: 9,17 + 9837: 10,17 + 9975: 17,7 + 10006: 17,-11 + 10011: 13,-18 + 10012: 12,-18 + 10013: 11,-18 + 10014: 10,-18 + 10015: 9,-18 + 10016: 8,-18 + 10017: 7,-18 + 10018: 6,-18 + 10019: 5,-18 + 10020: 4,-18 + 10021: 2,-19 + 10022: -2,-19 + 10023: -4,-18 + 10024: -5,-18 + 10025: -6,-18 + 10026: -7,-18 + 10027: -8,-18 + 10028: -9,-18 + 10029: -10,-18 + 10030: -11,-18 + 10031: -12,-18 + 10032: -13,-18 + 10157: -17,-1 + 10158: -18,-1 + 10159: -19,-1 + 10160: -20,-1 + 10161: -21,-1 + 10167: 17,-1 + 10168: 18,-1 + 10169: 19,-1 + 10170: 20,-1 + 10171: 21,-1 + 10172: 22,-1 + 10173: 23,-1 + 10174: 24,-1 + 10175: 25,-1 + 10176: 27,-1 + 10177: 26,-1 + 10178: 28,-1 + 10217: -34,-1 + 10218: -33,-1 + 10219: -32,-1 + 10220: -31,-1 + 11111: -28,-2 + 11112: -27,-2 + 11113: -26,-2 + 11114: -25,-2 + 11115: -24,-2 + 11121: -29,-4 + 11122: -28,-4 + 11123: -27,-4 + 11124: -26,-4 + 11125: -25,-4 + 11126: -24,-4 + 11127: -23,-4 + 12026: -49,-31 + 12027: -47,-31 + 12028: -45,-31 + 12038: -53,-31 + 12039: -52,-31 + 12040: -51,-31 + 12041: -50,-31 + 12042: -55,-31 + 12043: -56,-31 + 12044: -57,-31 + 12062: -63,-32 + 12063: -62,-32 + 12064: -61,-32 + 12065: -60,-32 + 12066: -59,-32 + 13760: 16,-11 + 13785: 16,7 + 13868: -3,17 + 13869: -2,17 + 13970: -16,-11 + 13990: -16,7 + 17929: -11,17 - node: color: '#52B4E996' id: MiniTileWhiteLineS decals: - 8845: 117,-50 - 8846: 117,-50 + 8578: 117,-50 + 8579: 117,-50 - node: color: '#52B4E9FF' id: MiniTileWhiteLineS decals: - 12615: -16,-22 - 12616: -14,-22 - 12625: -10,-23 + 12348: -16,-22 + 12349: -14,-22 + 12358: -10,-23 - node: color: '#792DA9FF' id: MiniTileWhiteLineS @@ -18201,241 +18201,241 @@ entities: color: '#8C347F96' id: MiniTileWhiteLineS decals: - 1437: -21,30 - 1438: -22,30 + 1390: -21,30 + 1391: -22,30 - node: color: '#96DAFFFF' id: MiniTileWhiteLineS decals: - 10699: 0,-32 - 11348: -7,-37 - 11350: -6,-37 - 11351: 7,-37 - 11354: -1,-37 - 11367: -2,-37 - 11368: -3,-37 - 11370: 1,-37 - 11371: 2,-37 - 11372: 3,-37 - 11373: 4,-37 - 11465: 6,-67 - 11466: 4,-46 - 11467: 3,-46 - 11468: 2,-46 - 11469: 1,-46 - 11470: 0,-46 - 11471: -1,-46 - 11472: -2,-46 - 11473: -3,-46 - 11474: -4,-46 - 11512: -9,-56 - 11513: -10,-56 - 11514: -12,-56 - 11515: -13,-56 - 11516: -14,-56 - 11517: -15,-56 - 11518: -16,-56 - 11519: -17,-56 - 11520: -18,-56 - 11531: -20,-67 - 11532: -22,-67 - 11533: -23,-67 - 11534: -24,-67 - 11535: -25,-67 - 11537: -27,-67 - 11538: -28,-67 - 11539: -29,-67 - 11540: -30,-67 - 11541: -31,-67 - 11542: -33,-67 - 11543: -34,-67 + 10432: 0,-32 + 11081: -7,-37 + 11083: -6,-37 + 11084: 7,-37 + 11087: -1,-37 + 11100: -2,-37 + 11101: -3,-37 + 11103: 1,-37 + 11104: 2,-37 + 11105: 3,-37 + 11106: 4,-37 + 11198: 6,-67 + 11199: 4,-46 + 11200: 3,-46 + 11201: 2,-46 + 11202: 1,-46 + 11203: 0,-46 + 11204: -1,-46 + 11205: -2,-46 + 11206: -3,-46 + 11207: -4,-46 + 11245: -9,-56 + 11246: -10,-56 + 11247: -12,-56 + 11248: -13,-56 + 11249: -14,-56 + 11250: -15,-56 + 11251: -16,-56 + 11252: -17,-56 + 11253: -18,-56 + 11264: -20,-67 + 11265: -22,-67 + 11266: -23,-67 + 11267: -24,-67 + 11268: -25,-67 + 11270: -27,-67 + 11271: -28,-67 + 11272: -29,-67 + 11273: -30,-67 + 11274: -31,-67 + 11275: -33,-67 + 11276: -34,-67 - node: color: '#9D7400FF' id: MiniTileWhiteLineS decals: - 8079: 44,33 - 8080: 45,33 - 8081: 46,33 - 8082: 47,33 + 7812: 44,33 + 7813: 45,33 + 7814: 46,33 + 7815: 47,33 - node: color: '#9FED5896' id: MiniTileWhiteLineS decals: - 1140: -57,45 - 1141: -56,45 - 1142: -55,45 - 1162: -53,46 - 1163: -52,46 - 1164: -51,46 - 1165: -50,46 - 1436: -49,46 - 8809: 121,-50 - 8810: 121,-50 + 1093: -57,45 + 1094: -56,45 + 1095: -55,45 + 1115: -53,46 + 1116: -52,46 + 1117: -51,46 + 1118: -50,46 + 1389: -49,46 + 8542: 121,-50 + 8543: 121,-50 - node: color: '#A4610696' id: MiniTileWhiteLineS decals: - 8837: 119,-50 - 8838: 119,-50 + 8570: 119,-50 + 8571: 119,-50 - node: color: '#BC863FFF' id: MiniTileWhiteLineS decals: - 2153: 85,7 - 2154: 86,7 - 2155: 85,4 - 2156: 86,4 - 2191: 57,4 - 2192: 56,4 - 2194: 55,4 - 2205: 84,-1 - 2206: 85,-1 - 2207: 86,-1 - 2300: 52,-2 - 2301: 52,0 - 2443: 83,-1 + 2106: 85,7 + 2107: 86,7 + 2108: 85,4 + 2109: 86,4 + 2144: 57,4 + 2145: 56,4 + 2147: 55,4 + 2158: 84,-1 + 2159: 85,-1 + 2160: 86,-1 + 2253: 52,-2 + 2254: 52,0 + 2396: 83,-1 - node: color: '#C6FF91FF' id: MiniTileWhiteLineS decals: - 10557: 32,-2 - 10585: 33,-2 - 10586: 34,-2 - 10587: 35,-2 - 10588: 35,-2 - 10589: 36,-2 - 10597: 29,-1 - 10601: 38,-1 - 10689: -51,26 - 10690: -50,26 - 10691: -48,26 - 10692: -47,26 - 10693: -46,26 - 10694: -45,26 - 10695: -44,26 - 10696: -43,26 - 10697: -42,26 - 10729: 2,-27 - 10730: 3,-27 - 10731: 4,-27 - 10735: 6,-27 - 10736: 7,-27 - 10737: 8,-27 - 10738: 9,-27 - 10739: 11,-27 - 10740: 10,-27 - 10741: 12,-27 - 10742: 13,-27 - 10743: 14,-27 - 10744: 15,-27 - 10766: 16,-27 - 10773: 17,-27 - 10774: 18,-27 - 10775: 19,-27 - 10776: 20,-27 - 10777: 21,-27 - 10778: 22,-27 - 10946: -69,-1 - 10947: -68,-1 - 10948: -60,-1 - 10949: -61,-1 - 10950: -62,-1 - 10951: -63,-1 - 10952: -64,-1 - 10953: -65,-1 - 10954: -66,-1 - 10955: -67,-1 - 10957: -59,-1 - 10958: -57,-1 - 11035: -62,26 - 11036: -57,26 - 11037: -56,26 - 11042: -55,26 - 11113: -2,49 - 11114: -3,49 - 11115: -4,49 - 11116: -5,49 - 11117: -6,49 - 11118: -7,49 - 11119: -8,49 - 11168: -2,26 - 11169: -3,26 - 11170: -4,26 - 11171: -5,26 - 11172: -6,26 - 11173: -7,26 - 11174: -8,26 - 11175: -9,26 - 11176: -10,26 - 11178: -11,26 - 11179: -12,26 - 11180: -13,26 - 11182: -15,26 - 11183: -16,26 - 11184: -17,26 - 11185: -18,26 - 11186: -19,26 - 11187: -20,26 - 11188: -21,26 - 11189: -23,26 - 11190: -24,26 - 11191: -26,26 - 11192: -27,26 - 11306: 4,40 - 11307: 5,40 - 11308: 6,40 - 11309: 7,40 - 11310: 8,40 - 11311: 9,40 - 11312: 10,40 - 11313: 11,40 - 11315: 12,40 - 11326: 13,40 - 11614: -40,39 - 11640: -43,53 - 11643: -44,51 - 11644: -45,51 - 11645: -46,51 - 11648: -47,53 - 11649: -48,53 - 11650: -49,53 - 11651: -50,53 - 11652: -51,53 - 11653: -52,53 - 11654: -53,53 - 11655: -54,53 - 11656: -55,53 - 11657: -56,53 - 11658: -57,53 - 11659: -58,53 - 11660: -59,53 - 11661: -60,53 - 11662: -61,53 - 11663: -67,53 - 11664: -68,53 - 11665: -69,53 - 11695: -65,52 - 11696: -64,52 - 11697: -63,52 - 14595: -70,53 - 14608: -42,53 - 14807: -38,26 - 14808: -37,26 - 14809: -36,26 - 14810: -35,26 - 14811: -34,26 - 14812: -33,26 - 14813: -32,26 - 14814: -31,26 - 14815: -30,26 - 14816: -29,26 - 14817: -28,26 + 10290: 32,-2 + 10318: 33,-2 + 10319: 34,-2 + 10320: 35,-2 + 10321: 35,-2 + 10322: 36,-2 + 10330: 29,-1 + 10334: 38,-1 + 10422: -51,26 + 10423: -50,26 + 10424: -48,26 + 10425: -47,26 + 10426: -46,26 + 10427: -45,26 + 10428: -44,26 + 10429: -43,26 + 10430: -42,26 + 10462: 2,-27 + 10463: 3,-27 + 10464: 4,-27 + 10468: 6,-27 + 10469: 7,-27 + 10470: 8,-27 + 10471: 9,-27 + 10472: 11,-27 + 10473: 10,-27 + 10474: 12,-27 + 10475: 13,-27 + 10476: 14,-27 + 10477: 15,-27 + 10499: 16,-27 + 10506: 17,-27 + 10507: 18,-27 + 10508: 19,-27 + 10509: 20,-27 + 10510: 21,-27 + 10511: 22,-27 + 10679: -69,-1 + 10680: -68,-1 + 10681: -60,-1 + 10682: -61,-1 + 10683: -62,-1 + 10684: -63,-1 + 10685: -64,-1 + 10686: -65,-1 + 10687: -66,-1 + 10688: -67,-1 + 10690: -59,-1 + 10691: -57,-1 + 10768: -62,26 + 10769: -57,26 + 10770: -56,26 + 10775: -55,26 + 10846: -2,49 + 10847: -3,49 + 10848: -4,49 + 10849: -5,49 + 10850: -6,49 + 10851: -7,49 + 10852: -8,49 + 10901: -2,26 + 10902: -3,26 + 10903: -4,26 + 10904: -5,26 + 10905: -6,26 + 10906: -7,26 + 10907: -8,26 + 10908: -9,26 + 10909: -10,26 + 10911: -11,26 + 10912: -12,26 + 10913: -13,26 + 10915: -15,26 + 10916: -16,26 + 10917: -17,26 + 10918: -18,26 + 10919: -19,26 + 10920: -20,26 + 10921: -21,26 + 10922: -23,26 + 10923: -24,26 + 10924: -26,26 + 10925: -27,26 + 11039: 4,40 + 11040: 5,40 + 11041: 6,40 + 11042: 7,40 + 11043: 8,40 + 11044: 9,40 + 11045: 10,40 + 11046: 11,40 + 11048: 12,40 + 11059: 13,40 + 11347: -40,39 + 11373: -43,53 + 11376: -44,51 + 11377: -45,51 + 11378: -46,51 + 11381: -47,53 + 11382: -48,53 + 11383: -49,53 + 11384: -50,53 + 11385: -51,53 + 11386: -52,53 + 11387: -53,53 + 11388: -54,53 + 11389: -55,53 + 11390: -56,53 + 11391: -57,53 + 11392: -58,53 + 11393: -59,53 + 11394: -60,53 + 11395: -61,53 + 11396: -67,53 + 11397: -68,53 + 11398: -69,53 + 11428: -65,52 + 11429: -64,52 + 11430: -63,52 + 14328: -70,53 + 14341: -42,53 + 14540: -38,26 + 14541: -37,26 + 14542: -36,26 + 14543: -35,26 + 14544: -34,26 + 14545: -33,26 + 14546: -32,26 + 14547: -31,26 + 14548: -30,26 + 14549: -29,26 + 14550: -28,26 - node: color: '#D381C996' id: MiniTileWhiteLineS decals: - 8880: 117,-52 - 8881: 117,-52 + 8613: 117,-52 + 8614: 117,-52 - node: color: '#D381C9CC' id: MiniTileWhiteLineS @@ -18468,108 +18468,108 @@ entities: color: '#D381C9FF' id: MiniTileWhiteLineS decals: - 1700: 42,-21 - 1701: 41,-21 - 1702: 39,-21 - 1703: 40,-21 - 1704: 38,-21 - 1708: 50,-22 - 1709: 49,-22 - 1711: 47,-23 - 1712: 46,-23 - 1713: 45,-23 - 1714: 44,-23 - 1732: 32,-23 - 1733: 33,-23 - 1734: 34,-23 - 1735: 35,-23 - 1736: 36,-23 - 1821: 52,-32 - 1822: 53,-32 - 1823: 54,-32 - 1824: 55,-32 - 1825: 56,-32 - 2234: 47,-35 - 2235: 45,-35 - 2243: 46,-30 - 2533: 76,-42 - 2534: 75,-42 - 2535: 74,-42 - 2536: 73,-42 - 2537: 72,-42 - 2538: 71,-42 - 2552: 71,-37 - 2631: 78,-32 - 2632: 79,-32 - 2633: 80,-32 - 2796: 60,-67 - 2825: 58,-56 - 2828: 62,-56 - 2879: 67,-56 - 2882: 65,-57 - 2883: 64,-57 - 2894: 53,-56 - 2958: 55,-57 - 2959: 56,-57 - 2985: 61,-49 - 2986: 62,-49 - 2987: 63,-49 - 3100: 69,-28 - 3102: 70,-28 - 3104: 72,-28 - 3105: 73,-28 - 3106: 72,-33 - 3107: 73,-33 - 3117: 70,-33 - 3118: 69,-33 - 3119: 68,-33 - 6770: 60,-32 - 6771: 61,-32 - 6772: 63,-32 - 6773: 64,-32 + 1653: 42,-21 + 1654: 41,-21 + 1655: 39,-21 + 1656: 40,-21 + 1657: 38,-21 + 1661: 50,-22 + 1662: 49,-22 + 1664: 47,-23 + 1665: 46,-23 + 1666: 45,-23 + 1667: 44,-23 + 1685: 32,-23 + 1686: 33,-23 + 1687: 34,-23 + 1688: 35,-23 + 1689: 36,-23 + 1774: 52,-32 + 1775: 53,-32 + 1776: 54,-32 + 1777: 55,-32 + 1778: 56,-32 + 2187: 47,-35 + 2188: 45,-35 + 2196: 46,-30 + 2486: 76,-42 + 2487: 75,-42 + 2488: 74,-42 + 2489: 73,-42 + 2490: 72,-42 + 2491: 71,-42 + 2505: 71,-37 + 2584: 78,-32 + 2585: 79,-32 + 2586: 80,-32 + 2749: 60,-67 + 2778: 58,-56 + 2781: 62,-56 + 2832: 67,-56 + 2835: 65,-57 + 2836: 64,-57 + 2847: 53,-56 + 2911: 55,-57 + 2912: 56,-57 + 2938: 61,-49 + 2939: 62,-49 + 2940: 63,-49 + 3053: 69,-28 + 3055: 70,-28 + 3057: 72,-28 + 3058: 73,-28 + 3059: 72,-33 + 3060: 73,-33 + 3070: 70,-33 + 3071: 69,-33 + 3072: 68,-33 + 6521: 60,-32 + 6522: 61,-32 + 6523: 63,-32 + 6524: 64,-32 - node: color: '#D69949FF' id: MiniTileWhiteLineS decals: - 1838: 61,-8 - 1839: 62,-8 - 1840: 63,-8 - 1841: 64,-8 - 1842: 66,-8 - 1843: 68,-8 - 1844: 69,-8 - 1845: 70,-8 - 1846: 71,-8 - 1847: 72,-8 - 1848: 72,-8 - 1849: 73,-8 - 1850: 74,-8 - 1851: 75,-8 - 1852: 76,-8 - 1853: 77,-8 - 1854: 78,-8 - 1855: 79,-8 - 1856: 80,-8 - 1857: 81,-8 - 1867: 83,-17 - 1868: 84,-17 - 1869: 85,-17 - 1870: 86,-17 - 1871: 87,-17 - 10611: 42,-1 - 10612: 43,-1 - 10613: 44,-1 - 10614: 45,-1 - 10615: 46,-1 - 10616: 47,-1 - 16294: 67,-8 - 20006: 65,-8 + 1791: 61,-8 + 1792: 62,-8 + 1793: 63,-8 + 1794: 64,-8 + 1795: 66,-8 + 1796: 68,-8 + 1797: 69,-8 + 1798: 70,-8 + 1799: 71,-8 + 1800: 72,-8 + 1801: 72,-8 + 1802: 73,-8 + 1803: 74,-8 + 1804: 75,-8 + 1805: 76,-8 + 1806: 77,-8 + 1807: 78,-8 + 1808: 79,-8 + 1809: 80,-8 + 1810: 81,-8 + 1820: 83,-17 + 1821: 84,-17 + 1822: 85,-17 + 1823: 86,-17 + 1824: 87,-17 + 10344: 42,-1 + 10345: 43,-1 + 10346: 44,-1 + 10347: 45,-1 + 10348: 46,-1 + 10349: 47,-1 + 16027: 67,-8 + 19739: 65,-8 - node: color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 8811: 121,-52 - 8812: 121,-52 + 8544: 121,-52 + 8545: 121,-52 - node: color: '#DE3A3ACC' id: MiniTileWhiteLineS @@ -18584,611 +18584,611 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteLineS decals: - 2003: 50,-9 - 2004: 51,-9 - 2005: 52,-9 - 2006: 54,-9 - 2007: 55,-9 - 2008: 56,-9 - 2009: 57,-9 - 2257: 59,-4 - 2258: 58,-4 - 2259: 57,-4 - 2260: 56,-4 - 2261: 55,-4 - 2262: 54,-4 - 2263: 53,-4 - 4794: -84,42 - 4795: -82,42 - 4796: -80,42 - 4811: -76,42 - 4840: -72,41 - 9780: 44,3 - 9781: 45,3 - 9783: 43,3 + 1956: 50,-9 + 1957: 51,-9 + 1958: 52,-9 + 1959: 54,-9 + 1960: 55,-9 + 1961: 56,-9 + 1962: 57,-9 + 2210: 59,-4 + 2211: 58,-4 + 2212: 57,-4 + 2213: 56,-4 + 2214: 55,-4 + 2215: 54,-4 + 2216: 53,-4 + 4597: -84,42 + 4598: -82,42 + 4599: -80,42 + 4614: -76,42 + 4643: -72,41 + 9513: 44,3 + 9514: 45,3 + 9516: 43,3 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 8865: 115,-52 - 8867: 115,-52 + 8598: 115,-52 + 8600: 115,-52 - node: color: '#EFB341FF' id: MiniTileWhiteLineS decals: - 8155: 39,42 - 8156: 40,42 - 8157: 41,42 - 8158: 42,42 - 8159: 43,42 - 8160: 44,42 - 8161: 45,42 - 8305: 67,41 - 8306: 66,41 - 8307: 65,41 - 8308: 64,41 - 8309: 63,41 - 8537: 64,47 - 8538: 65,47 - 8539: 66,47 - 8563: 57,42 - 8564: 58,42 - 8565: 59,42 - 8570: 60,42 - 8582: 49,43 - 8583: 53,43 - 8584: 54,43 + 7888: 39,42 + 7889: 40,42 + 7890: 41,42 + 7891: 42,42 + 7892: 43,42 + 7893: 44,42 + 7894: 45,42 + 8038: 67,41 + 8039: 66,41 + 8040: 65,41 + 8041: 64,41 + 8042: 63,41 + 8270: 64,47 + 8271: 65,47 + 8272: 66,47 + 8296: 57,42 + 8297: 58,42 + 8298: 59,42 + 8303: 60,42 + 8315: 49,43 + 8316: 53,43 + 8317: 54,43 - node: color: '#FBB2FFFF' id: MiniTileWhiteLineS decals: - 10559: 40,-17 - 10560: 39,-17 + 10292: 40,-17 + 10293: 39,-17 - node: color: '#FF5C5CFF' id: MiniTileWhiteLineS decals: - 10617: 48,-4 - 10643: 49,-4 - 10644: 51,-4 - 10788: -40,-1 - 10789: -42,-1 - 10790: -43,-1 - 10791: -38,-1 - 10792: -45,-1 - 10793: -46,-1 - 10794: -47,-1 - 10795: -48,-1 - 10796: -49,-1 - 10797: -50,-1 - 10798: -51,-1 - 10799: -53,-1 - 10800: -54,-1 - 10801: -55,-1 - 10802: -56,-1 - 11355: -2,-37 - 11356: -3,-37 - 11357: -5,-37 - 11358: -6,-37 - 11359: -7,-37 - 11360: -8,-37 - 11912: -44,-12 - 11913: -45,-12 - 11914: -46,-12 - 11915: -47,-12 - 11916: -51,-12 - 11917: -51,-12 - 11918: -50,-12 - 11919: -52,-12 - 11920: -53,-12 - 11921: -56,-17 - 11922: -57,-17 - 11923: -58,-17 - 11924: -59,-17 - 11925: -61,-17 - 11926: -62,-17 - 11927: -63,-17 - 11928: -65,-17 - 11929: -66,-17 - 11930: -38,-27 - 11931: -39,-27 - 11932: -40,-27 - 11933: -41,-27 - 11934: -43,-27 - 11935: -41,-35 - 11936: -43,-35 - 11937: -41,-45 - 11938: -42,-45 - 11939: -43,-45 - 11940: -45,-35 - 11941: -46,-35 - 11942: -47,-35 - 11943: -48,-35 - 11944: -49,-35 - 11945: -50,-35 - 11946: -51,-35 - 11947: -52,-35 - 11948: -53,-35 - 11949: -38,-35 - 11950: -39,-35 - 11951: -35,-35 - 11952: -34,-35 - 11969: -59,-32 - 11970: -60,-32 - 11971: -61,-32 - 11972: -62,-32 - 11973: -63,-32 - 12014: -39,-45 - 12015: -38,-45 - 12016: -37,-45 - 12017: -36,-45 - 12018: -35,-45 - 12029: -45,-43 - 12030: -46,-43 - 12049: -35,-27 - 12050: -34,-27 - 12052: -33,-26 - 12053: -32,-26 - 12054: -30,-26 - 12055: -29,-26 - 12056: -28,-26 - 12057: -26,-26 - 12058: -25,-26 - 12059: -24,-26 - 12060: -22,-26 - 12061: -21,-26 - 12062: -20,-26 - 12063: -18,-26 - 12064: -17,-26 - 12065: -15,-27 - 12066: -13,-27 - 12067: -12,-32 - 12068: -10,-32 - 12073: -10,-37 - 12074: -12,-37 - 12090: -3,-32 - 12091: -4,-32 - 12092: -5,-32 - 12093: -6,-32 - 12094: -7,-32 - 12095: -8,-32 - 12106: -9,-27 - 12113: -7,-27 - 12114: -6,-27 - 12115: -5,-27 - 12116: -4,-27 - 12117: -3,-27 - 12169: -40,-7 - 12181: -46,-8 - 12182: -45,-8 - 12183: -43,-8 - 12288: -57,-31 - 12289: -56,-31 - 12290: -55,-31 - 12355: -36,-22 - 12356: -37,-22 - 12357: -34,-22 - 12358: -33,-22 - 12444: -80,-11 - 12445: -79,-11 - 12446: -78,-11 - 12447: -76,-11 - 12448: -75,-11 - 12497: -75,-23 - 12498: -76,-23 - 12499: -72,-23 - 12500: -73,-23 - 12501: -78,-30 - 12502: -79,-30 - 12503: -80,-30 - 12528: -70,-18 - 12529: -68,-18 - 12552: -11,-42 - 12677: -56,-35 - 13037: -75,-28 - 13038: -73,-28 - 13053: -73,-37 - 20282: -5,-42 + 10350: 48,-4 + 10376: 49,-4 + 10377: 51,-4 + 10521: -40,-1 + 10522: -42,-1 + 10523: -43,-1 + 10524: -38,-1 + 10525: -45,-1 + 10526: -46,-1 + 10527: -47,-1 + 10528: -48,-1 + 10529: -49,-1 + 10530: -50,-1 + 10531: -51,-1 + 10532: -53,-1 + 10533: -54,-1 + 10534: -55,-1 + 10535: -56,-1 + 11088: -2,-37 + 11089: -3,-37 + 11090: -5,-37 + 11091: -6,-37 + 11092: -7,-37 + 11093: -8,-37 + 11645: -44,-12 + 11646: -45,-12 + 11647: -46,-12 + 11648: -47,-12 + 11649: -51,-12 + 11650: -51,-12 + 11651: -50,-12 + 11652: -52,-12 + 11653: -53,-12 + 11654: -56,-17 + 11655: -57,-17 + 11656: -58,-17 + 11657: -59,-17 + 11658: -61,-17 + 11659: -62,-17 + 11660: -63,-17 + 11661: -65,-17 + 11662: -66,-17 + 11663: -38,-27 + 11664: -39,-27 + 11665: -40,-27 + 11666: -41,-27 + 11667: -43,-27 + 11668: -41,-35 + 11669: -43,-35 + 11670: -41,-45 + 11671: -42,-45 + 11672: -43,-45 + 11673: -45,-35 + 11674: -46,-35 + 11675: -47,-35 + 11676: -48,-35 + 11677: -49,-35 + 11678: -50,-35 + 11679: -51,-35 + 11680: -52,-35 + 11681: -53,-35 + 11682: -38,-35 + 11683: -39,-35 + 11684: -35,-35 + 11685: -34,-35 + 11702: -59,-32 + 11703: -60,-32 + 11704: -61,-32 + 11705: -62,-32 + 11706: -63,-32 + 11747: -39,-45 + 11748: -38,-45 + 11749: -37,-45 + 11750: -36,-45 + 11751: -35,-45 + 11762: -45,-43 + 11763: -46,-43 + 11782: -35,-27 + 11783: -34,-27 + 11785: -33,-26 + 11786: -32,-26 + 11787: -30,-26 + 11788: -29,-26 + 11789: -28,-26 + 11790: -26,-26 + 11791: -25,-26 + 11792: -24,-26 + 11793: -22,-26 + 11794: -21,-26 + 11795: -20,-26 + 11796: -18,-26 + 11797: -17,-26 + 11798: -15,-27 + 11799: -13,-27 + 11800: -12,-32 + 11801: -10,-32 + 11806: -10,-37 + 11807: -12,-37 + 11823: -3,-32 + 11824: -4,-32 + 11825: -5,-32 + 11826: -6,-32 + 11827: -7,-32 + 11828: -8,-32 + 11839: -9,-27 + 11846: -7,-27 + 11847: -6,-27 + 11848: -5,-27 + 11849: -4,-27 + 11850: -3,-27 + 11902: -40,-7 + 11914: -46,-8 + 11915: -45,-8 + 11916: -43,-8 + 12021: -57,-31 + 12022: -56,-31 + 12023: -55,-31 + 12088: -36,-22 + 12089: -37,-22 + 12090: -34,-22 + 12091: -33,-22 + 12177: -80,-11 + 12178: -79,-11 + 12179: -78,-11 + 12180: -76,-11 + 12181: -75,-11 + 12230: -75,-23 + 12231: -76,-23 + 12232: -72,-23 + 12233: -73,-23 + 12234: -78,-30 + 12235: -79,-30 + 12236: -80,-30 + 12261: -70,-18 + 12262: -68,-18 + 12285: -11,-42 + 12410: -56,-35 + 12770: -75,-28 + 12771: -73,-28 + 12786: -73,-37 + 19920: -5,-42 - node: color: '#FF9821FF' id: MiniTileWhiteLineS decals: - 13930: -15,-37 - 13932: -16,-37 - 13933: -17,-37 - 13934: -18,-37 - 13935: -19,-37 - 13936: -20,-37 - 13937: -21,-37 - 13938: -22,-37 - 13939: -23,-37 - 13940: -24,-37 - 13941: -25,-37 - 13942: -26,-37 - 13943: -27,-37 - 13944: -28,-37 - 13945: -29,-37 - 13946: -30,-37 - 13947: -31,-37 + 13663: -15,-37 + 13665: -16,-37 + 13666: -17,-37 + 13667: -18,-37 + 13668: -19,-37 + 13669: -20,-37 + 13670: -21,-37 + 13671: -22,-37 + 13672: -23,-37 + 13673: -24,-37 + 13674: -25,-37 + 13675: -26,-37 + 13676: -27,-37 + 13677: -28,-37 + 13678: -29,-37 + 13679: -30,-37 + 13680: -31,-37 - node: color: '#FFA647FF' id: MiniTileWhiteLineS decals: - 11160: 2,26 - 11161: 3,26 - 11162: 4,26 - 11163: 5,26 - 11164: 6,26 - 11165: 7,26 - 13117: 24,26 - 13118: 25,26 - 13119: 26,26 - 13159: 55,30 - 13160: 56,30 - 13161: 57,30 - 13190: 23,38 - 13191: 24,38 - 13192: 25,38 - 13193: 26,38 - 13194: 26,38 - 13195: 28,38 - 13196: 27,38 - 13197: 30,38 - 13198: 29,38 - 13199: 31,38 - 13200: 32,38 - 13201: 33,38 - 13202: 36,38 - 13203: 37,38 - 13204: 38,38 - 13222: 27,26 - 13223: 28,26 - 13224: 29,26 - 13225: 30,26 - 13226: 30,26 - 13227: 31,26 - 13228: 32,26 - 13229: 33,26 - 13230: 35,26 - 13231: 34,26 - 13232: 36,26 - 13233: 38,26 - 13234: 37,26 - 13282: 42,26 - 13283: 43,26 - 13284: 44,26 - 13285: 45,26 - 13286: 46,26 - 13287: 47,26 - 13288: 48,26 - 13289: 49,26 - 13290: 50,26 - 15692: 41,9 + 10893: 2,26 + 10894: 3,26 + 10895: 4,26 + 10896: 5,26 + 10897: 6,26 + 10898: 7,26 + 12850: 24,26 + 12851: 25,26 + 12852: 26,26 + 12892: 55,30 + 12893: 56,30 + 12894: 57,30 + 12923: 23,38 + 12924: 24,38 + 12925: 25,38 + 12926: 26,38 + 12927: 26,38 + 12928: 28,38 + 12929: 27,38 + 12930: 30,38 + 12931: 29,38 + 12932: 31,38 + 12933: 32,38 + 12934: 33,38 + 12935: 36,38 + 12936: 37,38 + 12937: 38,38 + 12955: 27,26 + 12956: 28,26 + 12957: 29,26 + 12958: 30,26 + 12959: 30,26 + 12960: 31,26 + 12961: 32,26 + 12962: 33,26 + 12963: 35,26 + 12964: 34,26 + 12965: 36,26 + 12966: 38,26 + 12967: 37,26 + 13015: 42,26 + 13016: 43,26 + 13017: 44,26 + 13018: 45,26 + 13019: 46,26 + 13020: 47,26 + 13021: 48,26 + 13022: 49,26 + 13023: 50,26 + 15425: 41,9 - node: color: '#FFBE00FF' id: MiniTileWhiteLineS decals: - 7478: 33,18 - 7479: 34,18 - 7480: 35,18 - 7481: 36,18 - 7483: 37,20 - 7484: 36,20 - 7485: 35,20 - 7486: 34,20 - 7487: 33,20 - 7488: 32,20 - 7519: 44,14 - 7520: 45,14 - 7521: 46,14 - 7522: 47,14 - 7523: 48,14 - 7542: 46,16 + 7211: 33,18 + 7212: 34,18 + 7213: 35,18 + 7214: 36,18 + 7216: 37,20 + 7217: 36,20 + 7218: 35,20 + 7219: 34,20 + 7220: 33,20 + 7221: 32,20 + 7252: 44,14 + 7253: 45,14 + 7254: 46,14 + 7255: 47,14 + 7256: 48,14 + 7275: 46,16 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 14188: 5,-39 - 14189: 6,-39 - 14475: -5,-45 + 13921: 5,-39 + 13922: 6,-39 + 14208: -5,-45 - node: color: '#3EB388FF' id: MiniTileWhiteLineW decals: - 7891: 24,52 - 7892: 24,51 - 7893: 24,50 - 7894: 24,49 - 7895: 24,48 - 7975: 20,48 - 7976: 20,52 - 7992: 20,43 - 8012: 20,49 - 8013: 20,50 - 8014: 20,51 - 8058: 26,41 - 13177: 20,24 - 13178: 20,22 - 13179: 20,21 + 7624: 24,52 + 7625: 24,51 + 7626: 24,50 + 7627: 24,49 + 7628: 24,48 + 7708: 20,48 + 7709: 20,52 + 7725: 20,43 + 7745: 20,49 + 7746: 20,50 + 7747: 20,51 + 7791: 26,41 + 12910: 20,24 + 12911: 20,22 + 12912: 20,21 - node: color: '#439909FF' id: MiniTileWhiteLineW decals: - 8633: -61,-67 - 8646: -57,-61 - 8662: -57,-57 - 8682: -49,-66 - 8700: -45,-66 - 8701: -43,-66 - 8719: -51,-66 - 8724: -55,-67 - 8725: -55,-65 - 8743: -55,-71 - 8760: -54,-58 - 8761: -54,-59 - 8762: -54,-60 - 8763: -54,-62 - 8769: -52,-61 - 8770: -52,-60 - 8771: -52,-58 - 8772: -52,-57 - 8893: -47,-74 - 8894: -47,-76 + 8366: -61,-67 + 8379: -57,-61 + 8395: -57,-57 + 8415: -49,-66 + 8433: -45,-66 + 8434: -43,-66 + 8452: -51,-66 + 8457: -55,-67 + 8458: -55,-65 + 8476: -55,-71 + 8493: -54,-58 + 8494: -54,-59 + 8495: -54,-60 + 8496: -54,-62 + 8502: -52,-61 + 8503: -52,-60 + 8504: -52,-58 + 8505: -52,-57 + 8626: -47,-74 + 8627: -47,-76 - node: color: '#4B709CFF' id: MiniTileWhiteLineW decals: - 10068: 13,-14 - 10069: 13,-13 - 10070: 13,-12 - 10071: 13,-11 - 10072: 13,-9 - 10073: 13,-8 - 10074: 13,-7 - 10076: 13,-6 - 10078: 13,-5 - 10080: 13,-4 - 10082: 13,-3 - 10083: 13,3 - 10105: 13,14 - 10106: 13,13 - 10107: 13,12 - 10108: 13,11 - 10109: 13,10 - 10110: 13,9 - 10111: 13,8 - 10112: 13,4 - 10113: 13,7 - 10114: 13,5 - 10115: 13,6 - 10116: -1,21 - 10117: -1,22 - 10118: -1,23 - 10119: -1,24 - 10120: -1,25 - 10225: -17,-8 - 10226: -17,-10 - 10227: -15,-15 - 10228: -15,-3 - 10229: -15,3 - 10230: -15,15 - 10301: -15,-12 - 10302: -15,-13 - 10303: -15,-14 - 10304: -15,-4 - 10305: -15,-5 - 10306: -15,-6 - 10408: -15,12 - 10409: -15,13 - 10410: -15,14 - 10411: -15,4 - 10412: -15,5 - 10413: -15,6 - 10418: -1,-20 - 10419: -1,-21 - 10420: -1,-22 - 10421: -1,-23 - 11397: -23,-3 - 11398: -29,-3 - 12317: -57,-29 - 12318: -57,-31 - 12319: -63,-28 - 12320: -63,-29 - 12321: -63,-30 - 12322: -63,-31 - 12323: -63,-32 - 13961: 12,0 - 13989: 13,-10 + 9801: 13,-14 + 9802: 13,-13 + 9803: 13,-12 + 9804: 13,-11 + 9805: 13,-9 + 9806: 13,-8 + 9807: 13,-7 + 9809: 13,-6 + 9811: 13,-5 + 9813: 13,-4 + 9815: 13,-3 + 9816: 13,3 + 9838: 13,14 + 9839: 13,13 + 9840: 13,12 + 9841: 13,11 + 9842: 13,10 + 9843: 13,9 + 9844: 13,8 + 9845: 13,4 + 9846: 13,7 + 9847: 13,5 + 9848: 13,6 + 9849: -1,21 + 9850: -1,22 + 9851: -1,23 + 9852: -1,24 + 9853: -1,25 + 9958: -17,-8 + 9959: -17,-10 + 9960: -15,-15 + 9961: -15,-3 + 9962: -15,3 + 9963: -15,15 + 10034: -15,-12 + 10035: -15,-13 + 10036: -15,-14 + 10037: -15,-4 + 10038: -15,-5 + 10039: -15,-6 + 10141: -15,12 + 10142: -15,13 + 10143: -15,14 + 10144: -15,4 + 10145: -15,5 + 10146: -15,6 + 10151: -1,-20 + 10152: -1,-21 + 10153: -1,-22 + 10154: -1,-23 + 11130: -23,-3 + 11131: -29,-3 + 12050: -57,-29 + 12051: -57,-31 + 12052: -63,-28 + 12053: -63,-29 + 12054: -63,-30 + 12055: -63,-31 + 12056: -63,-32 + 13694: 12,0 + 13722: 13,-10 - node: color: '#52B4E9FF' id: MiniTileWhiteLineW decals: - 12618: -17,-21 - 12626: -11,-22 + 12351: -17,-21 + 12359: -11,-22 - node: color: '#792DA9FF' id: MiniTileWhiteLineW decals: - 2251: 58,-27 + 2204: 58,-27 - node: color: '#8C347F96' id: MiniTileWhiteLineW decals: - 1440: -23,32 - 1441: -23,33 + 1393: -23,32 + 1394: -23,33 - node: color: '#96DAFFFF' id: MiniTileWhiteLineW decals: - 11454: 5,-65 - 11455: 5,-63 - 11456: 5,-61 - 11457: 5,-60 - 11458: 5,-59 - 11459: 5,-58 - 11460: 5,-57 - 11461: 5,-53 - 11462: 5,-49 - 11463: 5,-48 - 11464: 5,-47 - 11482: -7,-44 - 11484: -7,-45 - 11485: -7,-46 - 11486: -7,-47 - 11487: -7,-48 - 11488: -7,-49 - 11489: -7,-50 - 11490: -7,-51 - 11491: -7,-52 - 11492: -7,-53 - 11504: -7,-65 - 11505: -7,-66 - 11506: -7,-63 - 11507: -7,-61 - 11508: -7,-60 - 11509: -7,-59 - 11510: -7,-58 - 11511: -7,-57 - 11557: -21,-64 - 11558: -21,-63 - 11559: -21,-62 - 11560: -21,-61 - 11561: -21,-59 - 11562: -21,-58 - 11563: -21,-57 - 11564: -21,-56 - 14180: 4,-41 - 14181: 4,-40 + 11187: 5,-65 + 11188: 5,-63 + 11189: 5,-61 + 11190: 5,-60 + 11191: 5,-59 + 11192: 5,-58 + 11193: 5,-57 + 11194: 5,-53 + 11195: 5,-49 + 11196: 5,-48 + 11197: 5,-47 + 11215: -7,-44 + 11217: -7,-45 + 11218: -7,-46 + 11219: -7,-47 + 11220: -7,-48 + 11221: -7,-49 + 11222: -7,-50 + 11223: -7,-51 + 11224: -7,-52 + 11225: -7,-53 + 11237: -7,-65 + 11238: -7,-66 + 11239: -7,-63 + 11240: -7,-61 + 11241: -7,-60 + 11242: -7,-59 + 11243: -7,-58 + 11244: -7,-57 + 11290: -21,-64 + 11291: -21,-63 + 11292: -21,-62 + 11293: -21,-61 + 11294: -21,-59 + 11295: -21,-58 + 11296: -21,-57 + 11297: -21,-56 + 13913: 4,-41 + 13914: 4,-40 - node: color: '#9D7400FF' id: MiniTileWhiteLineW decals: - 8083: 43,34 - 8084: 43,38 - 8085: 43,36 + 7816: 43,34 + 7817: 43,38 + 7818: 43,36 - node: color: '#9FED5896' id: MiniTileWhiteLineW decals: - 1144: -58,46 - 1145: -58,47 - 1146: -58,48 - 1147: -58,49 - 1148: -58,50 + 1097: -58,46 + 1098: -58,47 + 1099: -58,48 + 1100: -58,49 + 1101: -58,50 - node: color: '#BC863FFF' id: MiniTileWhiteLineW decals: - 1943: 61,6 - 1944: 61,4 - 1945: 61,3 - 1946: 61,2 - 1947: 61,1 - 1948: 61,-1 - 1949: 61,-3 - 1950: 61,-4 - 1952: 61,-2 - 1954: 61,-5 - 1955: 61,-4 - 2159: 85,4 - 2174: 55,4 - 2175: 55,5 - 2176: 55,5 - 2177: 55,6 - 2178: 55,8 - 2201: 83,2 - 2202: 83,1 - 2203: 83,0 - 2277: 53,-4 - 2291: 53,1 - 2292: 53,-1 - 2293: 53,-3 - 2303: 89,-15 + 1896: 61,6 + 1897: 61,4 + 1898: 61,3 + 1899: 61,2 + 1900: 61,1 + 1901: 61,-1 + 1902: 61,-3 + 1903: 61,-4 + 1905: 61,-2 + 1907: 61,-5 + 1908: 61,-4 + 2112: 85,4 + 2127: 55,4 + 2128: 55,5 + 2129: 55,5 + 2130: 55,6 + 2131: 55,8 + 2154: 83,2 + 2155: 83,1 + 2156: 83,0 + 2230: 53,-4 + 2244: 53,1 + 2245: 53,-1 + 2246: 53,-3 + 2256: 89,-15 - node: color: '#C6FF91FF' id: MiniTileWhiteLineW decals: - 10704: -41,25 - 10705: -41,24 - 10707: -41,23 - 10708: -41,22 - 10710: -41,21 - 10711: -41,20 - 10712: -41,19 - 10713: -41,18 - 10714: -41,17 - 10715: -41,16 - 10760: -41,12 - 10761: -41,11 - 10762: -41,10 - 10763: -41,9 - 10764: -41,7 - 10904: -41,2 - 10905: -41,3 - 10907: -41,4 - 10908: -41,5 - 10924: -72,1 - 10925: -72,-1 - 10930: -72,2 - 11067: -27,29 - 11068: -27,30 - 11069: -27,31 - 11070: -27,32 - 11071: -27,33 - 11072: -27,34 - 11073: -27,35 - 11074: -27,36 - 11075: -27,37 - 11093: -1,29 - 11094: -1,30 - 11095: -1,31 - 11096: -1,32 - 11097: -1,33 - 11098: -1,34 - 11099: -1,35 - 11100: -1,36 - 11101: -1,37 - 11102: -1,38 - 11103: -1,39 - 11104: -1,40 - 11105: -1,41 - 11106: -1,42 - 11107: -1,43 - 11108: -1,44 - 11109: -1,45 - 11110: -1,46 - 11111: -1,47 - 11112: -1,48 - 11120: -9,50 - 11121: -8,52 - 11122: -8,53 - 11123: -8,54 - 11124: -8,55 - 11125: -8,56 - 11126: -8,58 - 11127: -8,59 - 11128: -8,63 - 11266: -14,29 - 11615: -41,39 - 11616: -41,41 - 11617: -41,42 - 11618: -41,43 - 11619: -41,44 - 11620: -41,45 - 11621: -41,46 - 11622: -41,47 - 11623: -41,48 - 11624: -41,49 - 11625: -41,50 - 11638: -41,51 - 11646: -46,51 - 11647: -46,52 - 11702: -73,57 - 11703: -73,57 - 11709: -77,57 - 11710: -77,56 - 14599: -73,56 - 14607: -41,52 + 10437: -41,25 + 10438: -41,24 + 10440: -41,23 + 10441: -41,22 + 10443: -41,21 + 10444: -41,20 + 10445: -41,19 + 10446: -41,18 + 10447: -41,17 + 10448: -41,16 + 10493: -41,12 + 10494: -41,11 + 10495: -41,10 + 10496: -41,9 + 10497: -41,7 + 10637: -41,2 + 10638: -41,3 + 10640: -41,4 + 10641: -41,5 + 10657: -72,1 + 10658: -72,-1 + 10663: -72,2 + 10800: -27,29 + 10801: -27,30 + 10802: -27,31 + 10803: -27,32 + 10804: -27,33 + 10805: -27,34 + 10806: -27,35 + 10807: -27,36 + 10808: -27,37 + 10826: -1,29 + 10827: -1,30 + 10828: -1,31 + 10829: -1,32 + 10830: -1,33 + 10831: -1,34 + 10832: -1,35 + 10833: -1,36 + 10834: -1,37 + 10835: -1,38 + 10836: -1,39 + 10837: -1,40 + 10838: -1,41 + 10839: -1,42 + 10840: -1,43 + 10841: -1,44 + 10842: -1,45 + 10843: -1,46 + 10844: -1,47 + 10845: -1,48 + 10853: -9,50 + 10854: -8,52 + 10855: -8,53 + 10856: -8,54 + 10857: -8,55 + 10858: -8,56 + 10859: -8,58 + 10860: -8,59 + 10861: -8,63 + 10999: -14,29 + 11348: -41,39 + 11349: -41,41 + 11350: -41,42 + 11351: -41,43 + 11352: -41,44 + 11353: -41,45 + 11354: -41,46 + 11355: -41,47 + 11356: -41,48 + 11357: -41,49 + 11358: -41,50 + 11371: -41,51 + 11379: -46,51 + 11380: -46,52 + 11435: -73,57 + 11436: -73,57 + 11442: -77,57 + 11443: -77,56 + 14332: -73,56 + 14340: -41,52 - node: color: '#D381C9CC' id: MiniTileWhiteLineW @@ -19200,50 +19200,50 @@ entities: color: '#D381C9FF' id: MiniTileWhiteLineW decals: - 1718: 43,-22 - 1729: 34,-21 - 1750: 43,-18 - 1759: 43,-23 - 1788: 50,-35 - 2240: 47,-33 - 2241: 47,-31 - 2522: 74,-38 - 2523: 74,-37 - 2524: 74,-36 - 2540: 70,-40 - 2546: 74,-35 - 2554: 70,-36 - 2716: 57,-65 - 2717: 63,-65 - 2789: 59,-64 - 2790: 59,-63 - 2791: 59,-62 - 2797: 59,-66 - 2819: 59,-58 - 2820: 59,-57 - 2870: 63,-55 - 2893: 52,-55 - 2992: 59,-48 - 3085: 68,-27 - 3086: 68,-26 - 3087: 68,-25 - 3088: 68,-24 - 3089: 68,-23 - 3122: 67,-32 + 1671: 43,-22 + 1682: 34,-21 + 1703: 43,-18 + 1712: 43,-23 + 1741: 50,-35 + 2193: 47,-33 + 2194: 47,-31 + 2475: 74,-38 + 2476: 74,-37 + 2477: 74,-36 + 2493: 70,-40 + 2499: 74,-35 + 2507: 70,-36 + 2669: 57,-65 + 2670: 63,-65 + 2742: 59,-64 + 2743: 59,-63 + 2744: 59,-62 + 2750: 59,-66 + 2772: 59,-58 + 2773: 59,-57 + 2823: 63,-55 + 2846: 52,-55 + 2945: 59,-48 + 3038: 68,-27 + 3039: 68,-26 + 3040: 68,-25 + 3041: 68,-24 + 3042: 68,-23 + 3075: 67,-32 - node: color: '#D69949FF' id: MiniTileWhiteLineW decals: - 1858: 82,-9 - 1859: 82,-10 - 1860: 82,-11 - 1861: 82,-12 - 1862: 82,-13 - 1863: 82,-14 - 1864: 82,-15 - 1865: 82,-16 - 10618: 48,-4 - 18270: 48,-3 + 1811: 82,-9 + 1812: 82,-10 + 1813: 82,-11 + 1814: 82,-12 + 1815: 82,-13 + 1816: 82,-14 + 1817: 82,-15 + 1818: 82,-16 + 10351: 48,-4 + 18003: 48,-3 - node: color: '#DE3A3ACC' id: MiniTileWhiteLineW @@ -19255,3511 +19255,3511 @@ entities: color: '#DE3A3AFF' id: MiniTileWhiteLineW decals: - 1986: 61,-6 - 1987: 61,-8 - 2000: 49,-7 - 2001: 49,-8 - 4791: -85,44 - 4792: -85,43 - 4805: -77,46 - 4806: -77,46 - 4807: -77,45 - 4808: -77,43 - 4835: -73,42 - 4836: -73,43 - 4841: -77,51 - 4844: -77,52 - 4846: -73,51 - 9772: 43,11 - 9773: 43,9 - 9774: 43,8 - 9775: 43,7 - 9776: 43,6 - 9777: 43,5 - 9778: 43,5 - 9779: 43,4 - 14593: -73,52 + 1939: 61,-6 + 1940: 61,-8 + 1953: 49,-7 + 1954: 49,-8 + 4594: -85,44 + 4595: -85,43 + 4608: -77,46 + 4609: -77,46 + 4610: -77,45 + 4611: -77,43 + 4638: -73,42 + 4639: -73,43 + 4644: -77,51 + 4647: -77,52 + 4649: -73,51 + 9505: 43,11 + 9506: 43,9 + 9507: 43,8 + 9508: 43,7 + 9509: 43,6 + 9510: 43,5 + 9511: 43,5 + 9512: 43,4 + 14326: -73,52 - node: color: '#EFB341FF' id: MiniTileWhiteLineW decals: - 8126: 33,43 - 8127: 33,44 - 8128: 33,45 - 8129: 33,46 - 8130: 33,47 - 8311: 62,43 - 8542: 62,51 - 8543: 62,50 - 8544: 62,49 - 8545: 62,48 - 8581: 50,42 + 7859: 33,43 + 7860: 33,44 + 7861: 33,45 + 7862: 33,46 + 7863: 33,47 + 8044: 62,43 + 8275: 62,51 + 8276: 62,50 + 8277: 62,49 + 8278: 62,48 + 8314: 50,42 - node: color: '#FBB2FFFF' id: MiniTileWhiteLineW decals: - 10561: 39,-16 - 10562: 39,-15 - 10563: 39,-11 - 10564: 39,-10 - 10565: 39,-9 - 10566: 39,-8 - 10567: 39,-7 - 10568: 39,-6 - 10569: 39,-5 - 10570: 39,-4 - 10571: 39,-3 - 10572: 39,-2 + 10294: 39,-16 + 10295: 39,-15 + 10296: 39,-11 + 10297: 39,-10 + 10298: 39,-9 + 10299: 39,-8 + 10300: 39,-7 + 10301: 39,-6 + 10302: 39,-5 + 10303: 39,-4 + 10304: 39,-3 + 10305: 39,-2 - node: color: '#FF5C5CFF' id: MiniTileWhiteLineW decals: - 10632: 48,3 - 10633: 48,4 - 10677: -1,-24 - 10680: -1,-26 - 10681: -1,-28 - 10682: -1,-29 - 10683: -1,-31 - 10685: -1,-32 - 11361: -8,-37 - 11362: -8,-34 - 11974: -63,-32 - 11975: -63,-31 - 11976: -63,-30 - 11977: -63,-29 - 11978: -63,-28 - 11985: -43,-35 - 11986: -43,-33 - 11987: -43,-32 - 11988: -43,-31 - 11989: -43,-29 - 11994: -43,-37 - 11995: -43,-38 - 11996: -43,-39 - 11997: -43,-41 - 11998: -43,-42 - 11999: -43,-43 - 12000: -43,-44 - 12001: -43,-45 - 12009: -39,-45 - 12010: -39,-43 - 12038: -53,-35 - 12039: -39,-30 - 12040: -39,-29 - 12041: -39,-34 - 12042: -39,-34 - 12043: -39,-35 - 12048: -39,-32 - 12075: -12,-37 - 12076: -12,-34 - 12077: -8,-32 - 12078: -8,-31 - 12079: -8,-29 - 12100: -12,-32 - 12101: -12,-31 - 12102: -12,-30 - 12103: -12,-29 - 12104: -12,-28 - 12119: -7,-26 - 12164: -41,-7 - 12165: -41,-5 - 12166: -41,-4 - 12167: -41,-3 - 12175: -46,-3 - 12176: -46,-4 - 12177: -46,-5 - 12178: -46,-6 - 12179: -46,-7 - 12180: -46,-8 - 12239: -16,-27 - 12240: -43,-27 - 12241: -43,-25 - 12242: -43,-24 - 12243: -43,-23 - 12244: -43,-21 - 12245: -41,-20 - 12246: -41,-19 - 12247: -41,-18 - 12248: -41,-15 - 12249: -41,-14 - 12250: -41,-13 - 12251: -41,-12 - 12252: -41,-10 - 12253: -41,-9 - 12269: -66,-15 - 12278: -58,-14 - 12279: -58,-13 - 12280: -58,-12 - 12281: -58,-10 - 12282: -66,-17 - 12283: -57,-31 - 12284: -57,-29 - 12359: -37,-22 - 12360: -37,-21 - 12361: -37,-20 - 12362: -37,-19 - 12449: -74,-12 - 12450: -74,-13 - 12451: -74,-14 - 12452: -74,-16 - 12453: -74,-18 - 12454: -74,-19 - 12455: -74,-20 - 12456: -76,-23 - 12457: -76,-21 - 12458: -80,-11 - 12459: -80,-10 - 12460: -80,-9 - 12461: -80,-8 - 12462: -80,-6 - 12504: -80,-30 - 12505: -80,-28 - 12506: -80,-27 - 12507: -80,-26 - 12508: -80,-25 - 12509: -80,-24 - 12510: -80,-23 - 12511: -80,-22 - 12512: -80,-22 - 12513: -80,-21 - 12516: -76,-9 - 12517: -76,-11 - 12518: -70,-14 - 12519: -70,-14 - 12520: -70,-17 - 12521: -70,-18 - 12532: -70,-15 - 12550: -12,-40 - 12551: -12,-41 - 13033: -76,-27 - 13034: -76,-26 - 13042: -76,-31 - 13043: -76,-33 - 13044: -76,-35 - 13045: -76,-36 - 14592: -73,52 - 20121: -76,-32 - 20289: -7,-41 - 20290: -7,-40 + 10365: 48,3 + 10366: 48,4 + 10410: -1,-24 + 10413: -1,-26 + 10414: -1,-28 + 10415: -1,-29 + 10416: -1,-31 + 10418: -1,-32 + 11094: -8,-37 + 11095: -8,-34 + 11707: -63,-32 + 11708: -63,-31 + 11709: -63,-30 + 11710: -63,-29 + 11711: -63,-28 + 11718: -43,-35 + 11719: -43,-33 + 11720: -43,-32 + 11721: -43,-31 + 11722: -43,-29 + 11727: -43,-37 + 11728: -43,-38 + 11729: -43,-39 + 11730: -43,-41 + 11731: -43,-42 + 11732: -43,-43 + 11733: -43,-44 + 11734: -43,-45 + 11742: -39,-45 + 11743: -39,-43 + 11771: -53,-35 + 11772: -39,-30 + 11773: -39,-29 + 11774: -39,-34 + 11775: -39,-34 + 11776: -39,-35 + 11781: -39,-32 + 11808: -12,-37 + 11809: -12,-34 + 11810: -8,-32 + 11811: -8,-31 + 11812: -8,-29 + 11833: -12,-32 + 11834: -12,-31 + 11835: -12,-30 + 11836: -12,-29 + 11837: -12,-28 + 11852: -7,-26 + 11897: -41,-7 + 11898: -41,-5 + 11899: -41,-4 + 11900: -41,-3 + 11908: -46,-3 + 11909: -46,-4 + 11910: -46,-5 + 11911: -46,-6 + 11912: -46,-7 + 11913: -46,-8 + 11972: -16,-27 + 11973: -43,-27 + 11974: -43,-25 + 11975: -43,-24 + 11976: -43,-23 + 11977: -43,-21 + 11978: -41,-20 + 11979: -41,-19 + 11980: -41,-18 + 11981: -41,-15 + 11982: -41,-14 + 11983: -41,-13 + 11984: -41,-12 + 11985: -41,-10 + 11986: -41,-9 + 12002: -66,-15 + 12011: -58,-14 + 12012: -58,-13 + 12013: -58,-12 + 12014: -58,-10 + 12015: -66,-17 + 12016: -57,-31 + 12017: -57,-29 + 12092: -37,-22 + 12093: -37,-21 + 12094: -37,-20 + 12095: -37,-19 + 12182: -74,-12 + 12183: -74,-13 + 12184: -74,-14 + 12185: -74,-16 + 12186: -74,-18 + 12187: -74,-19 + 12188: -74,-20 + 12189: -76,-23 + 12190: -76,-21 + 12191: -80,-11 + 12192: -80,-10 + 12193: -80,-9 + 12194: -80,-8 + 12195: -80,-6 + 12237: -80,-30 + 12238: -80,-28 + 12239: -80,-27 + 12240: -80,-26 + 12241: -80,-25 + 12242: -80,-24 + 12243: -80,-23 + 12244: -80,-22 + 12245: -80,-22 + 12246: -80,-21 + 12249: -76,-9 + 12250: -76,-11 + 12251: -70,-14 + 12252: -70,-14 + 12253: -70,-17 + 12254: -70,-18 + 12265: -70,-15 + 12283: -12,-40 + 12284: -12,-41 + 12766: -76,-27 + 12767: -76,-26 + 12775: -76,-31 + 12776: -76,-33 + 12777: -76,-35 + 12778: -76,-36 + 14325: -73,52 + 19854: -76,-32 + 19927: -7,-41 + 19928: -7,-40 - node: color: '#FF9821FF' id: MiniTileWhiteLineW decals: - 13907: -28,-34 - 13912: -24,-34 - 13917: -20,-34 - 13923: -16,-34 - 13950: -32,-36 - 13951: -32,-35 + 13640: -28,-34 + 13645: -24,-34 + 13650: -20,-34 + 13656: -16,-34 + 13683: -32,-36 + 13684: -32,-35 - node: color: '#FFA647FF' id: MiniTileWhiteLineW decals: - 10606: 39,6 - 10607: 39,5 - 10608: 39,4 - 10609: 39,3 - 10610: 39,2 - 13102: 20,40 - 13103: 20,38 - 13104: 20,37 - 13105: 20,36 - 13106: 20,35 - 13107: 20,34 - 13108: 20,33 - 13109: 20,32 - 13110: 20,30 - 13206: 39,37 - 13207: 39,36 - 13208: 39,35 - 13209: 39,33 - 13210: 39,31 - 13211: 39,30 - 13212: 39,29 - 13258: 39,25 - 13259: 39,24 - 13260: 39,23 - 13261: 39,21 - 13262: 39,19 - 13263: 39,18 - 13264: 39,17 - 13265: 39,16 - 13266: 39,15 - 13267: 39,14 - 13268: 39,13 - 13269: 39,12 - 13270: 39,11 - 13293: 50,29 - 13294: 50,30 - 13295: 50,31 - 13296: 50,32 - 13297: 50,33 - 13298: 50,34 - 13299: 50,36 - 13300: 50,38 + 10339: 39,6 + 10340: 39,5 + 10341: 39,4 + 10342: 39,3 + 10343: 39,2 + 12835: 20,40 + 12836: 20,38 + 12837: 20,37 + 12838: 20,36 + 12839: 20,35 + 12840: 20,34 + 12841: 20,33 + 12842: 20,32 + 12843: 20,30 + 12939: 39,37 + 12940: 39,36 + 12941: 39,35 + 12942: 39,33 + 12943: 39,31 + 12944: 39,30 + 12945: 39,29 + 12991: 39,25 + 12992: 39,24 + 12993: 39,23 + 12994: 39,21 + 12995: 39,19 + 12996: 39,18 + 12997: 39,17 + 12998: 39,16 + 12999: 39,15 + 13000: 39,14 + 13001: 39,13 + 13002: 39,12 + 13003: 39,11 + 13026: 50,29 + 13027: 50,30 + 13028: 50,31 + 13029: 50,32 + 13030: 50,33 + 13031: 50,34 + 13032: 50,36 + 13033: 50,38 - node: color: '#FFBE00FF' id: MiniTileWhiteLineW decals: - 7496: 32,19 - 7497: 32,23 - 7524: 43,15 - 7525: 43,16 - 7526: 43,17 - 7527: 43,18 - 7528: 43,19 - 7529: 43,20 - 7543: 45,17 - 7544: 45,18 - 7545: 45,17 - 7546: 45,18 + 7229: 32,19 + 7230: 32,23 + 7257: 43,15 + 7258: 43,16 + 7259: 43,17 + 7260: 43,18 + 7261: 43,19 + 7262: 43,20 + 7276: 45,17 + 7277: 45,18 + 7278: 45,17 + 7279: 45,18 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 14194: 7,-41 - 14195: 7,-40 - 14485: 6,-55 - 17788: -38,108 - 17789: -38,107 - 17790: -38,106 - 17791: -38,106 - 17792: -38,105 + 13927: 7,-41 + 13928: 7,-40 + 14218: 6,-55 + 17521: -38,108 + 17522: -38,107 + 17523: -38,106 + 17524: -38,106 + 17525: -38,105 - node: color: '#5A5A5AFF' id: OffsetCheckerAOverlay decals: - 14722: -68,0 - 14723: -67,0 - 14724: -61,0 - 14725: -60,0 - 14727: -51,0 - 14728: -50,0 - 14729: -44,0 - 14730: -43,0 - 14731: -37,0 - 14732: -36,0 - 14733: -30,0 - 14734: -29,0 - 14735: -23,0 - 14736: -22,0 - 14737: -40,8 - 14738: -40,13 - 14739: -40,14 - 14740: -40,19 - 14741: -56,27 - 14742: -49,27 - 14743: -33,27 - 14744: -26,34 - 14745: -18,27 - 14746: -17,27 - 14747: -8,27 - 14748: -9,27 - 14749: 0,36 - 14750: 0,41 - 14751: 8,41 - 14752: 9,41 - 14753: 10,41 - 14754: -3,50 - 14755: -4,50 - 14756: -7,59 - 14757: -7,58 - 14758: -8,18 - 14759: -14,16 - 14760: -14,8 - 14761: -14,9 - 14762: -14,10 - 14763: -14,-10 - 14764: -14,-9 - 14765: -14,-8 - 14766: -8,-17 - 14767: -14,-16 - 14768: 8,-17 - 14769: 14,-16 - 14770: 14,-10 - 14771: 14,-9 - 14772: 14,-8 - 14773: 14,8 - 14774: 14,9 - 14775: 14,10 - 14776: 14,16 - 14777: 8,18 - 14778: 7,-26 - 14779: 12,-26 - 14780: 17,-26 - 14781: 22,0 - 14782: 23,0 - 14783: 29,0 - 14784: 30,0 - 14785: 36,0 - 14786: 37,0 - 14787: 40,-7 - 14788: 40,-12 - 14789: -40,45 - 14790: -40,51 - 14791: -43,54 - 14792: -69,54 - 14793: -63,54 - 14794: -57,54 - 14795: -56,54 - 14796: -55,54 - 14797: -49,54 + 14455: -68,0 + 14456: -67,0 + 14457: -61,0 + 14458: -60,0 + 14460: -51,0 + 14461: -50,0 + 14462: -44,0 + 14463: -43,0 + 14464: -37,0 + 14465: -36,0 + 14466: -30,0 + 14467: -29,0 + 14468: -23,0 + 14469: -22,0 + 14470: -40,8 + 14471: -40,13 + 14472: -40,14 + 14473: -40,19 + 14474: -56,27 + 14475: -49,27 + 14476: -33,27 + 14477: -26,34 + 14478: -18,27 + 14479: -17,27 + 14480: -8,27 + 14481: -9,27 + 14482: 0,36 + 14483: 0,41 + 14484: 8,41 + 14485: 9,41 + 14486: 10,41 + 14487: -3,50 + 14488: -4,50 + 14489: -7,59 + 14490: -7,58 + 14491: -8,18 + 14492: -14,16 + 14493: -14,8 + 14494: -14,9 + 14495: -14,10 + 14496: -14,-10 + 14497: -14,-9 + 14498: -14,-8 + 14499: -8,-17 + 14500: -14,-16 + 14501: 8,-17 + 14502: 14,-16 + 14503: 14,-10 + 14504: 14,-9 + 14505: 14,-8 + 14506: 14,8 + 14507: 14,9 + 14508: 14,10 + 14509: 14,16 + 14510: 8,18 + 14511: 7,-26 + 14512: 12,-26 + 14513: 17,-26 + 14514: 22,0 + 14515: 23,0 + 14516: 29,0 + 14517: 30,0 + 14518: 36,0 + 14519: 37,0 + 14520: 40,-7 + 14521: 40,-12 + 14522: -40,45 + 14523: -40,51 + 14524: -43,54 + 14525: -69,54 + 14526: -63,54 + 14527: -57,54 + 14528: -56,54 + 14529: -55,54 + 14530: -49,54 - node: color: '#999999FF' id: OffsetCheckerBOverlay decals: - 14634: -30,0 - 14635: -29,0 - 14636: -23,0 - 14637: -22,0 - 14638: -14,8 - 14639: -14,9 - 14640: -14,10 - 14641: -8,18 - 14642: 8,18 - 14643: 14,10 - 14644: 14,9 - 14645: 14,8 - 14646: 22,0 - 14647: 23,0 - 14648: 29,0 - 14649: 30,0 - 14650: 36,0 - 14651: 37,0 - 14652: 40,-7 - 14653: 40,-12 - 14654: 14,-10 - 14655: 14,-9 - 14656: 14,-8 - 14657: -14,-10 - 14658: -14,-9 - 14659: -14,-8 - 14660: -8,-17 - 14661: 8,-17 - 14662: 7,-26 - 14663: 12,-26 - 14664: 17,-26 - 14682: -14,-16 - 14683: 14,-16 - 14684: 14,16 - 14685: -14,16 - 14688: -37,0 - 14689: -36,0 - 14690: 0,36 - 14691: 0,41 - 14692: -3,50 - 14693: -4,50 - 14694: -7,59 - 14695: -7,58 - 14696: 8,41 - 14697: 9,41 - 14698: 10,41 - 14699: -8,27 - 14700: -9,27 - 14701: -18,27 - 14702: -17,27 - 14703: -26,34 - 14704: -33,27 - 14705: -49,27 - 14706: -56,27 - 14707: -40,19 - 14708: -40,13 - 14709: -40,14 - 14710: -40,8 - 14711: -43,0 - 14712: -44,0 - 14713: -68,0 - 14714: -67,0 - 14716: -61,0 - 14717: -60,0 - 14718: -50,0 - 14719: -51,0 - 14798: -40,45 - 14799: -40,51 - 14800: -43,54 - 14801: -49,54 - 14802: -57,54 - 14803: -56,54 - 14804: -55,54 - 14805: -63,54 - 14806: -69,54 + 14367: -30,0 + 14368: -29,0 + 14369: -23,0 + 14370: -22,0 + 14371: -14,8 + 14372: -14,9 + 14373: -14,10 + 14374: -8,18 + 14375: 8,18 + 14376: 14,10 + 14377: 14,9 + 14378: 14,8 + 14379: 22,0 + 14380: 23,0 + 14381: 29,0 + 14382: 30,0 + 14383: 36,0 + 14384: 37,0 + 14385: 40,-7 + 14386: 40,-12 + 14387: 14,-10 + 14388: 14,-9 + 14389: 14,-8 + 14390: -14,-10 + 14391: -14,-9 + 14392: -14,-8 + 14393: -8,-17 + 14394: 8,-17 + 14395: 7,-26 + 14396: 12,-26 + 14397: 17,-26 + 14415: -14,-16 + 14416: 14,-16 + 14417: 14,16 + 14418: -14,16 + 14421: -37,0 + 14422: -36,0 + 14423: 0,36 + 14424: 0,41 + 14425: -3,50 + 14426: -4,50 + 14427: -7,59 + 14428: -7,58 + 14429: 8,41 + 14430: 9,41 + 14431: 10,41 + 14432: -8,27 + 14433: -9,27 + 14434: -18,27 + 14435: -17,27 + 14436: -26,34 + 14437: -33,27 + 14438: -49,27 + 14439: -56,27 + 14440: -40,19 + 14441: -40,13 + 14442: -40,14 + 14443: -40,8 + 14444: -43,0 + 14445: -44,0 + 14446: -68,0 + 14447: -67,0 + 14449: -61,0 + 14450: -60,0 + 14451: -50,0 + 14452: -51,0 + 14531: -40,45 + 14532: -40,51 + 14533: -43,54 + 14534: -49,54 + 14535: -57,54 + 14536: -56,54 + 14537: -55,54 + 14538: -63,54 + 14539: -69,54 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerNe decals: - 3723: -16,24 - 16429: 80,7 - 16469: 81,8 + 3676: -16,24 + 16162: 80,7 + 16202: 81,8 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerNw decals: - 3714: -22,24 - 6155: 15,-42 - 16426: 78,7 - 16470: 77,8 - 16490: 74,6 + 3667: -22,24 + 5918: 15,-42 + 16159: 78,7 + 16203: 77,8 + 16223: 74,6 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerSe decals: - 3728: -16,19 - 6166: 18,-44 - 16427: 80,6 + 3681: -16,19 + 5929: 18,-44 + 16160: 80,6 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerSw decals: - 3736: -22,19 - 6169: 15,-44 - 16428: 78,6 - 16491: 74,5 + 3689: -22,19 + 5932: 15,-44 + 16161: 78,6 + 16224: 74,5 - node: color: '#FFFFFFFF' id: OldConcreteTrimEndN decals: - 6161: 18,-39 + 5924: 18,-39 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNe decals: - 16444: 80,6 - 16445: 80,7 - 16446: 78,7 - 16447: 79,7 - 16496: 81,5 - 16497: 81,7 + 16177: 80,6 + 16178: 80,7 + 16179: 78,7 + 16180: 79,7 + 16229: 81,5 + 16230: 81,7 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNw decals: - 6158: 18,-42 - 16432: 78,7 - 16433: 79,7 - 16434: 80,7 - 16443: 78,6 - 16492: 77,6 + 5921: 18,-42 + 16165: 78,7 + 16166: 79,7 + 16167: 80,7 + 16176: 78,6 + 16225: 77,6 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerSe decals: - 16435: 80,6 - 16436: 79,6 - 16437: 78,6 - 16442: 80,7 - 16485: 76,6 - 16486: 75,6 - 16487: 74,6 - 16494: 77,8 - 16495: 81,7 + 16168: 80,6 + 16169: 79,6 + 16170: 78,6 + 16175: 80,7 + 16218: 76,6 + 16219: 75,6 + 16220: 74,6 + 16227: 77,8 + 16228: 81,7 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerSw decals: - 16438: 78,6 - 16439: 79,6 - 16440: 80,6 - 16441: 78,7 - 16488: 75,6 - 16489: 76,6 - 16493: 77,6 + 16171: 78,6 + 16172: 79,6 + 16173: 80,6 + 16174: 78,7 + 16221: 75,6 + 16222: 76,6 + 16226: 77,6 - node: color: '#413D32FF' id: OldConcreteTrimLineE decals: - 7859: 21,11 - 7860: 21,9 - 7861: 21,7 + 7592: 21,11 + 7593: 21,9 + 7594: 21,7 - node: color: '#D381C9FF' id: OldConcreteTrimLineE decals: - 7137: 42,-43 - 7138: 42,-47 - 7139: 42,-46 - 7140: 42,-45 - 7141: 42,-44 - 7152: 42,-50 - 7153: 42,-51 + 6870: 42,-43 + 6871: 42,-47 + 6872: 42,-46 + 6873: 42,-45 + 6874: 42,-44 + 6885: 42,-50 + 6886: 42,-51 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineE decals: - 3724: -16,23 - 3725: -16,22 - 3726: -16,21 - 3727: -16,20 - 6162: 18,-40 - 6163: 18,-41 - 6164: 18,-42 - 6165: 18,-43 - 16468: 81,6 - 16478: 77,7 - 16479: 77,6 + 3677: -16,23 + 3678: -16,22 + 3679: -16,21 + 3680: -16,20 + 5925: 18,-40 + 5926: 18,-41 + 5927: 18,-42 + 5928: 18,-43 + 16201: 81,6 + 16211: 77,7 + 16212: 77,6 - node: color: '#413D32FF' id: OldConcreteTrimLineN decals: - 7836: 22,10 - 7837: 23,10 - 7838: 24,10 - 7839: 25,10 - 7848: 22,6 - 7849: 23,6 - 7850: 24,6 - 7851: 25,6 - 7852: 25,8 - 7853: 24,8 - 7854: 23,8 - 7855: 22,8 + 7569: 22,10 + 7570: 23,10 + 7571: 24,10 + 7572: 25,10 + 7581: 22,6 + 7582: 23,6 + 7583: 24,6 + 7584: 25,6 + 7585: 25,8 + 7586: 24,8 + 7587: 23,8 + 7588: 22,8 - node: color: '#D381C9FF' id: OldConcreteTrimLineN decals: - 7134: 35,-40 - 7135: 39,-40 - 7136: 38,-40 - 7149: 41,-40 + 6867: 35,-40 + 6868: 39,-40 + 6869: 38,-40 + 6882: 41,-40 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineN decals: - 3717: -21,24 - 3718: -20,24 - 3719: -19,24 - 3720: -18,24 - 3721: -17,24 - 6156: 16,-42 - 6157: 17,-42 - 16431: 79,7 - 16462: 83,7 - 16463: 82,7 - 16464: 83,5 - 16465: 82,5 - 16471: 78,8 - 16472: 79,8 - 16473: 80,8 - 16480: 76,6 - 16481: 75,6 + 3670: -21,24 + 3671: -20,24 + 3672: -19,24 + 3673: -18,24 + 3674: -17,24 + 5919: 16,-42 + 5920: 17,-42 + 16164: 79,7 + 16195: 83,7 + 16196: 82,7 + 16197: 83,5 + 16198: 82,5 + 16204: 78,8 + 16205: 79,8 + 16206: 80,8 + 16213: 76,6 + 16214: 75,6 - node: color: '#413D32FF' id: OldConcreteTrimLineS decals: - 7832: 24,12 - 7833: 23,12 - 7834: 22,12 - 7835: 25,12 - 7840: 22,10 - 7841: 23,10 - 7842: 25,10 - 7843: 24,10 - 7844: 25,8 - 7845: 24,8 - 7846: 23,8 - 7847: 22,8 + 7565: 24,12 + 7566: 23,12 + 7567: 22,12 + 7568: 25,12 + 7573: 22,10 + 7574: 23,10 + 7575: 25,10 + 7576: 24,10 + 7577: 25,8 + 7578: 24,8 + 7579: 23,8 + 7580: 22,8 - node: color: '#D381C9FF' id: OldConcreteTrimLineS decals: - 7142: 40,-52 - 7143: 39,-52 - 7144: 37,-52 - 7145: 36,-52 - 7146: 38,-52 + 6875: 40,-52 + 6876: 39,-52 + 6877: 37,-52 + 6878: 36,-52 + 6879: 38,-52 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineS decals: - 3730: -17,19 - 3731: -18,19 - 3732: -19,19 - 3733: -20,19 - 3734: -21,19 - 6167: 17,-44 - 6168: 16,-44 - 16430: 79,6 - 16448: 75,5 - 16449: 76,5 - 16450: 77,5 - 16451: 78,5 - 16452: 79,5 - 16453: 80,5 - 16454: 81,5 - 16458: 83,5 - 16459: 82,5 - 16460: 82,7 - 16461: 83,7 - 16474: 78,8 - 16475: 79,8 - 16476: 80,8 - 16482: 74,6 - 16483: 75,6 - 16484: 76,6 + 3683: -17,19 + 3684: -18,19 + 3685: -19,19 + 3686: -20,19 + 3687: -21,19 + 5930: 17,-44 + 5931: 16,-44 + 16163: 79,6 + 16181: 75,5 + 16182: 76,5 + 16183: 77,5 + 16184: 78,5 + 16185: 79,5 + 16186: 80,5 + 16187: 81,5 + 16191: 83,5 + 16192: 82,5 + 16193: 82,7 + 16194: 83,7 + 16207: 78,8 + 16208: 79,8 + 16209: 80,8 + 16215: 74,6 + 16216: 75,6 + 16217: 76,6 - node: color: '#413D32FF' id: OldConcreteTrimLineW decals: - 7856: 26,9 - 7857: 26,7 - 7858: 26,11 + 7589: 26,9 + 7590: 26,7 + 7591: 26,11 - node: color: '#D381C9FF' id: OldConcreteTrimLineW decals: - 7147: 34,-50 + 6880: 34,-50 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineW decals: - 3737: -22,20 - 3738: -22,21 - 3739: -22,22 - 3740: -22,23 - 6159: 18,-41 - 6160: 18,-40 - 6170: 15,-43 - 16477: 77,7 + 3690: -22,20 + 3691: -22,21 + 3692: -22,22 + 3693: -22,23 + 5922: 18,-41 + 5923: 18,-40 + 5933: 15,-43 + 16210: 77,7 - node: color: '#0000000C' id: OriginStationSign4 decals: - 3502: -1,-13 - 3503: 0,-13 - 3504: 1,-13 + 3455: -1,-13 + 3456: 0,-13 + 3457: 1,-13 - node: color: '#0000000F' id: OriginStationSign4 decals: - 7635: -15,-61 - 7636: -15,-62 + 7368: -15,-61 + 7369: -15,-62 - node: color: '#00000012' id: OriginStationSign4 decals: - 18072: -71,76 - 18073: -69,76 - 18074: -69,74 - 18075: -71,74 + 17805: -71,76 + 17806: -69,76 + 17807: -69,74 + 17808: -71,74 - node: color: '#00000015' id: OriginStationSign4 decals: - 9162: 9,-81 - 9163: 9,-82 - 9164: 11,-81 - 9165: 11,-82 - 16790: -26,-91 - 16791: -24,-89 - 16803: -25,-89 - 16805: -26,-90 + 8895: 9,-81 + 8896: 9,-82 + 8897: 11,-81 + 8898: 11,-82 + 16523: -26,-91 + 16524: -24,-89 + 16536: -25,-89 + 16538: -26,-90 - node: zIndex: 30 color: '#00000015' id: OriginStationSign4 decals: - 13517: -80,32 - 13518: -80,31 - 13519: -80,30 - 13520: -80,29 - 13521: -76,32 - 13522: -76,31 - 13523: -76,30 - 13524: -74,31 - 13525: -74,32 - 13526: -73,33 - 13527: -73,32 - 13528: -73,31 - 13529: -72,33 - 13530: -71,33 - 13531: -71,32 - 13532: -71,31 - 13533: -72,31 - 13534: -70,31 - 13535: -70,32 - 13536: -70,33 - 13537: -69,33 - 13538: -69,32 - 13539: -68,32 - 13540: -74,31 - 13541: -73,31 - 13542: -72,31 - 13543: -71,31 - 13544: -70,31 + 13250: -80,32 + 13251: -80,31 + 13252: -80,30 + 13253: -80,29 + 13254: -76,32 + 13255: -76,31 + 13256: -76,30 + 13257: -74,31 + 13258: -74,32 + 13259: -73,33 + 13260: -73,32 + 13261: -73,31 + 13262: -72,33 + 13263: -71,33 + 13264: -71,32 + 13265: -71,31 + 13266: -72,31 + 13267: -70,31 + 13268: -70,32 + 13269: -70,33 + 13270: -69,33 + 13271: -69,32 + 13272: -68,32 + 13273: -74,31 + 13274: -73,31 + 13275: -72,31 + 13276: -71,31 + 13277: -70,31 - node: color: '#00000018' id: OriginStationSign4 decals: - 1618: -49,67 - 1619: -48,67 - 1620: -40,67 - 1621: -39,67 - 4135: -31,30 - 4136: -31,31 - 4137: -31,32 - 4138: -30,32 - 4139: -29,32 - 4140: -29,31 - 4141: -30,30 - 4142: -29,30 - 18080: -71,76 - 18081: -69,76 - 18082: -69,74 - 18083: -71,74 - 18084: -68,75 - 18085: -72,75 - 18086: -70,76 - 18087: -70,74 + 1571: -49,67 + 1572: -48,67 + 1573: -40,67 + 1574: -39,67 + 3945: -31,30 + 3946: -31,31 + 3947: -31,32 + 3948: -30,32 + 3949: -29,32 + 3950: -29,31 + 3951: -30,30 + 3952: -29,30 + 17813: -71,76 + 17814: -69,76 + 17815: -69,74 + 17816: -71,74 + 17817: -68,75 + 17818: -72,75 + 17819: -70,76 + 17820: -70,74 - node: color: '#0000001B' id: OriginStationSign4 decals: - 4066: -34,37 - 4067: -35,37 - 4068: -37,37 - 10858: -56,-21 - 10859: -56,-22 - 10861: -56,-23 - 10862: -55,-22 - 10863: -55,-23 - 10865: -56,-24 - 10867: -55,-24 - 10868: -55,-25 - 10870: -54,-24 - 10872: -54,-25 - 10874: -54,-23 - 10875: -54,-22 - 10876: -54,-21 - 10878: -53,-21 - 10879: -53,-22 - 10880: -53,-23 - 10882: -52,-21 - 10883: -52,-22 - 10884: -51,-22 - 10885: -51,-21 - 10887: -52,-21 - 10888: -52,-22 - 10889: -51,-22 - 10890: -51,-21 - 10893: -51,-21 - 10895: -53,-24 - 10896: -52,-24 - 10897: -51,-24 - 10898: -51,-25 - 10899: -52,-25 - 10900: -53,-25 - 10901: -50,-24 - 10902: -50,-24 - 10903: -50,-24 - 10906: -50,-24 - 16796: -26,-89 - 16797: -25,-89 - 16798: -25,-90 - 16799: -26,-90 - 16829: -26,-89 - 16831: -25,-89 - 16832: -25,-90 - 16833: -26,-90 - 17048: -42,-90 - 17049: -41,-90 - 17050: -41,-89 - 17051: -42,-89 - 17052: -42,-90 - 17053: -41,-90 - 17054: -42,-88 - 17055: -41,-88 - 17056: -42,-82 - 17057: -41,-82 - 17058: -41,-83 - 17059: -42,-83 - 17060: -42,-84 - 17061: -41,-84 - 17062: -42,-85 - 17063: -41,-85 - 17064: -42,-82 - 17065: -41,-83 - 17066: -42,-83 - 17067: -41,-82 - 17068: -42,-82 - 17069: -41,-82 - 17070: -42,-84 - 17071: -41,-84 - 17072: -42,-86 - 17073: -41,-86 + 3876: -34,37 + 3877: -35,37 + 3878: -37,37 + 10591: -56,-21 + 10592: -56,-22 + 10594: -56,-23 + 10595: -55,-22 + 10596: -55,-23 + 10598: -56,-24 + 10600: -55,-24 + 10601: -55,-25 + 10603: -54,-24 + 10605: -54,-25 + 10607: -54,-23 + 10608: -54,-22 + 10609: -54,-21 + 10611: -53,-21 + 10612: -53,-22 + 10613: -53,-23 + 10615: -52,-21 + 10616: -52,-22 + 10617: -51,-22 + 10618: -51,-21 + 10620: -52,-21 + 10621: -52,-22 + 10622: -51,-22 + 10623: -51,-21 + 10626: -51,-21 + 10628: -53,-24 + 10629: -52,-24 + 10630: -51,-24 + 10631: -51,-25 + 10632: -52,-25 + 10633: -53,-25 + 10634: -50,-24 + 10635: -50,-24 + 10636: -50,-24 + 10639: -50,-24 + 16529: -26,-89 + 16530: -25,-89 + 16531: -25,-90 + 16532: -26,-90 + 16562: -26,-89 + 16564: -25,-89 + 16565: -25,-90 + 16566: -26,-90 + 16781: -42,-90 + 16782: -41,-90 + 16783: -41,-89 + 16784: -42,-89 + 16785: -42,-90 + 16786: -41,-90 + 16787: -42,-88 + 16788: -41,-88 + 16789: -42,-82 + 16790: -41,-82 + 16791: -41,-83 + 16792: -42,-83 + 16793: -42,-84 + 16794: -41,-84 + 16795: -42,-85 + 16796: -41,-85 + 16797: -42,-82 + 16798: -41,-83 + 16799: -42,-83 + 16800: -41,-82 + 16801: -42,-82 + 16802: -41,-82 + 16803: -42,-84 + 16804: -41,-84 + 16805: -42,-86 + 16806: -41,-86 - node: color: '#0000001F' id: OriginStationSign4 decals: - 7553: -11,-57 - 7554: -11,-57 - 7555: -11,-57 - 7556: -11,-57 - 7637: -16,-58 - 7638: -15,-58 - 7639: -14,-58 - 7640: -14,-59 - 7641: -15,-59 - 7642: -16,-59 - 7643: -16,-60 - 7644: -15,-60 - 7645: -14,-60 - 7646: -12,-62 - 7647: -12,-61 - 7648: -11,-61 - 7649: -11,-62 - 7650: -10,-62 - 7651: -10,-61 - 7652: -9,-61 - 7653: -9,-62 - 7654: -12,-61 - 7655: -12,-62 - 7656: -12,-60 - 7657: -12,-59 - 7658: -12,-58 - 7659: -9,-58 - 7660: -10,-58 - 7661: -9,-58 - 7662: -16,-58 - 7663: -14,-58 - 7664: -14,-60 - 7665: -16,-60 + 7286: -11,-57 + 7287: -11,-57 + 7288: -11,-57 + 7289: -11,-57 + 7370: -16,-58 + 7371: -15,-58 + 7372: -14,-58 + 7373: -14,-59 + 7374: -15,-59 + 7375: -16,-59 + 7376: -16,-60 + 7377: -15,-60 + 7378: -14,-60 + 7379: -12,-62 + 7380: -12,-61 + 7381: -11,-61 + 7382: -11,-62 + 7383: -10,-62 + 7384: -10,-61 + 7385: -9,-61 + 7386: -9,-62 + 7387: -12,-61 + 7388: -12,-62 + 7389: -12,-60 + 7390: -12,-59 + 7391: -12,-58 + 7392: -9,-58 + 7393: -10,-58 + 7394: -9,-58 + 7395: -16,-58 + 7396: -14,-58 + 7397: -14,-60 + 7398: -16,-60 - node: color: '#00000021' id: OriginStationSign4 decals: - 4221: -56,32 - 4222: -55,31 - 4223: -55,32 - 4224: -58,31 - 4225: -57,31 - 4226: -58,35 - 4227: -57,35 - 4228: -58,34 - 4229: -58,33 - 4230: -57,34 - 4231: -58,35 - 4232: -58,34 + 4024: -56,32 + 4025: -55,31 + 4026: -55,32 + 4027: -58,31 + 4028: -57,31 + 4029: -58,35 + 4030: -57,35 + 4031: -58,34 + 4032: -58,33 + 4033: -57,34 + 4034: -58,35 + 4035: -58,34 - node: color: '#00000022' id: OriginStationSign4 decals: - 6878: 13,-57 - 6879: 13,-59 - 6880: 13,-58 - 6881: 14,-57 - 6882: 14,-58 - 6883: 14,-59 - 6884: 15,-57 - 6885: 15,-58 - 6886: 15,-59 - 6887: 16,-57 - 6888: 16,-58 - 6889: 16,-59 - 6890: 17,-57 - 6891: 17,-58 - 6892: 17,-59 - 6893: 18,-57 - 6894: 18,-58 - 6895: 18,-59 - 6896: 19,-57 - 6897: 19,-58 - 6898: 19,-59 - 6899: 19,-56 - 6900: 20,-57 - 6901: 20,-58 - 6902: 20,-59 - 6903: 21,-57 - 6904: 21,-58 - 6905: 21,-59 - 6906: 22,-57 - 6907: 22,-58 - 6908: 22,-59 - 6909: 23,-57 - 6910: 23,-58 - 6911: 23,-59 - 7169: 20,-49 - 7170: 21,-49 - 7171: 21,-50 - 7172: 20,-50 - 7173: 20,-51 - 7174: 21,-51 - 7175: 21,-52 - 7176: 20,-52 + 6629: 13,-57 + 6630: 13,-59 + 6631: 13,-58 + 6632: 14,-57 + 6633: 14,-58 + 6634: 14,-59 + 6635: 15,-57 + 6636: 15,-58 + 6637: 15,-59 + 6638: 16,-57 + 6639: 16,-58 + 6640: 16,-59 + 6641: 17,-57 + 6642: 17,-58 + 6643: 17,-59 + 6644: 18,-57 + 6645: 18,-58 + 6646: 18,-59 + 6647: 19,-57 + 6648: 19,-58 + 6649: 19,-59 + 6650: 19,-56 + 6651: 20,-57 + 6652: 20,-58 + 6653: 20,-59 + 6654: 21,-57 + 6655: 21,-58 + 6656: 21,-59 + 6657: 22,-57 + 6658: 22,-58 + 6659: 22,-59 + 6660: 23,-57 + 6661: 23,-58 + 6662: 23,-59 + 6902: 20,-49 + 6903: 21,-49 + 6904: 21,-50 + 6905: 20,-50 + 6906: 20,-51 + 6907: 21,-51 + 6908: 21,-52 + 6909: 20,-52 - node: color: '#00000025' id: OriginStationSign4 decals: - 4530: -1,-10 - 4531: 0,-10 - 4532: 1,-10 - 4533: -1,-6 - 4534: 0,-6 - 4535: 1,-6 - 4536: 1,-7 - 4537: 0,-7 - 4538: -1,-7 - 4539: -1,-8 - 4540: 0,-8 - 4541: 1,-8 - 9747: 31,-4 - 9748: 32,-3 - 9749: 32,-3 - 9750: 32,-3 - 9751: 33,-3 - 9752: 33,-3 - 9753: 33,-3 - 9754: 34,-3 - 9755: 34,-3 - 9756: 34,-3 - 10204: 11,-23 - 10205: 12,-22 - 10206: 12,-20 - 10207: 12,-21 - 10208: 11,-20 - 10209: 9,-20 - 10210: 9,-21 - 10211: 10,-20 - 10212: 9,-20 - 10213: 10,-21 - 11835: -55,-4 - 11836: -55,-3 - 11837: -54,-3 - 11839: -51,-3 - 11841: -50,-3 - 11842: -50,-4 - 11843: -50,-7 - 11844: -50,-8 - 11845: -49,-8 - 11846: -54,-8 - 11847: -55,-8 - 11848: -55,-7 - 11851: -48,-3 - 11852: -49,-3 - 11853: -48,-5 - 11854: -49,-5 - 18066: -72,76 - 18067: -72,75 - 18068: -72,74 - 18069: -68,76 - 18070: -68,75 - 18071: -68,74 - 18076: -72,74 - 18077: -72,76 - 18078: -68,76 - 18079: -68,74 + 4333: -1,-10 + 4334: 0,-10 + 4335: 1,-10 + 4336: -1,-6 + 4337: 0,-6 + 4338: 1,-6 + 4339: 1,-7 + 4340: 0,-7 + 4341: -1,-7 + 4342: -1,-8 + 4343: 0,-8 + 4344: 1,-8 + 9480: 31,-4 + 9481: 32,-3 + 9482: 32,-3 + 9483: 32,-3 + 9484: 33,-3 + 9485: 33,-3 + 9486: 33,-3 + 9487: 34,-3 + 9488: 34,-3 + 9489: 34,-3 + 9937: 11,-23 + 9938: 12,-22 + 9939: 12,-20 + 9940: 12,-21 + 9941: 11,-20 + 9942: 9,-20 + 9943: 9,-21 + 9944: 10,-20 + 9945: 9,-20 + 9946: 10,-21 + 11568: -55,-4 + 11569: -55,-3 + 11570: -54,-3 + 11572: -51,-3 + 11574: -50,-3 + 11575: -50,-4 + 11576: -50,-7 + 11577: -50,-8 + 11578: -49,-8 + 11579: -54,-8 + 11580: -55,-8 + 11581: -55,-7 + 11584: -48,-3 + 11585: -49,-3 + 11586: -48,-5 + 11587: -49,-5 + 17799: -72,76 + 17800: -72,75 + 17801: -72,74 + 17802: -68,76 + 17803: -68,75 + 17804: -68,74 + 17809: -72,74 + 17810: -72,76 + 17811: -68,76 + 17812: -68,74 - node: color: '#00000028' id: OriginStationSign4 decals: - 3189: 3,-9 - 3190: 3,-10 - 3191: 3,-11 - 3192: 4,-11 - 3193: 4,-10 - 3194: 4,-9 - 3195: 3,-9 - 3196: 3,-10 - 3197: 4,-10 - 3198: 4,-9 - 3199: 4,-9 - 3200: 3,-9 - 3201: 8,-13 - 3202: 9,-13 - 3203: 9,-12 - 3204: 8,-12 - 3205: 9,-12 - 3206: 9,-13 - 3207: 8,-14 - 3208: 8,-14 - 3209: 7,-12 - 3210: 7,-13 - 3211: 7,-12 - 3212: 7,-13 - 4069: -37,45 - 4070: -36,45 - 4071: -35,45 - 4072: -34,45 - 4073: -33,45 - 4074: -33,44 - 4075: -34,44 - 4076: -35,44 - 4077: -36,44 - 4078: -37,44 - 4079: -37,43 - 4080: -36,43 - 4081: -35,43 - 4082: -34,43 - 4083: -33,43 - 6999: 17,-67 - 7000: 17,-68 - 7001: 18,-66 - 7002: 19,-66 - 7003: 20,-66 - 7004: 20,-67 - 7005: 20,-68 - 7006: 17,-66 - 7007: 17,-66 - 7008: 17,-66 - 7009: 15,-63 - 7010: 15,-63 - 7011: 19,-64 - 16783: -27,-91 - 16784: -27,-90 - 16785: -27,-89 - 16786: -27,-88 - 16787: -26,-88 - 16788: -25,-88 - 16789: -24,-88 + 3142: 3,-9 + 3143: 3,-10 + 3144: 3,-11 + 3145: 4,-11 + 3146: 4,-10 + 3147: 4,-9 + 3148: 3,-9 + 3149: 3,-10 + 3150: 4,-10 + 3151: 4,-9 + 3152: 4,-9 + 3153: 3,-9 + 3154: 8,-13 + 3155: 9,-13 + 3156: 9,-12 + 3157: 8,-12 + 3158: 9,-12 + 3159: 9,-13 + 3160: 8,-14 + 3161: 8,-14 + 3162: 7,-12 + 3163: 7,-13 + 3164: 7,-12 + 3165: 7,-13 + 3879: -37,45 + 3880: -36,45 + 3881: -35,45 + 3882: -34,45 + 3883: -33,45 + 3884: -33,44 + 3885: -34,44 + 3886: -35,44 + 3887: -36,44 + 3888: -37,44 + 3889: -37,43 + 3890: -36,43 + 3891: -35,43 + 3892: -34,43 + 3893: -33,43 + 6732: 17,-67 + 6733: 17,-68 + 6734: 18,-66 + 6735: 19,-66 + 6736: 20,-66 + 6737: 20,-67 + 6738: 20,-68 + 6739: 17,-66 + 6740: 17,-66 + 6741: 17,-66 + 6742: 15,-63 + 6743: 15,-63 + 6744: 19,-64 + 16516: -27,-91 + 16517: -27,-90 + 16518: -27,-89 + 16519: -27,-88 + 16520: -26,-88 + 16521: -25,-88 + 16522: -24,-88 - node: color: '#0000002B' id: OriginStationSign4 decals: - 3462: -8,1 - 3463: -7,2 - 3464: -6,2 - 3465: -5,2 - 3466: -5,1 - 3467: -6,1 - 3468: -7,1 - 3469: -7,-1 - 3470: -6,0 - 3471: -7,0 - 3472: -6,-1 - 3473: -5,0 - 3474: -5,-1 - 3475: -5,-2 - 3476: -6,-2 - 3477: -7,-2 - 3478: 5,2 - 3479: 6,2 - 3480: 7,2 - 3481: 7,1 - 3482: 6,1 - 3483: 5,1 - 3484: 5,-1 - 3485: 6,0 - 3486: 7,0 - 3487: 7,-1 - 3488: 6,-1 - 3489: 5,0 - 3490: 8,1 - 3491: 8,-1 - 3492: 7,-2 - 3493: 6,-2 - 3494: 5,-2 - 9905: 3,-31 - 9906: 3,-32 - 9907: 4,-32 - 9908: 5,-32 - 9909: 6,-32 - 9910: 4,-29 - 9911: 4,-30 - 9912: 4,-31 - 9913: 5,-29 - 9914: 5,-30 - 9915: 5,-31 - 9916: 6,-31 - 9917: 7,-31 - 9918: 8,-31 - 9919: 4,-29 - 9920: 4,-30 - 9921: 4,-31 - 9922: 4,-32 - 9923: 5,-32 - 9924: 6,-32 - 9925: 3,-32 - 9926: 3,-31 - 9927: 3,-31 - 9928: 3,-32 - 9929: 9,-31 - 9930: 9,-31 - 9931: 9,-31 - 9932: 10,-29 - 9933: 10,-30 - 9934: 10,-31 - 9935: 10,-32 - 9936: 11,-29 - 9937: 11,-30 - 9938: 11,-31 - 9939: 11,-32 - 9940: 12,-29 - 9941: 12,-30 - 9942: 12,-31 - 9943: 12,-32 + 3415: -8,1 + 3416: -7,2 + 3417: -6,2 + 3418: -5,2 + 3419: -5,1 + 3420: -6,1 + 3421: -7,1 + 3422: -7,-1 + 3423: -6,0 + 3424: -7,0 + 3425: -6,-1 + 3426: -5,0 + 3427: -5,-1 + 3428: -5,-2 + 3429: -6,-2 + 3430: -7,-2 + 3431: 5,2 + 3432: 6,2 + 3433: 7,2 + 3434: 7,1 + 3435: 6,1 + 3436: 5,1 + 3437: 5,-1 + 3438: 6,0 + 3439: 7,0 + 3440: 7,-1 + 3441: 6,-1 + 3442: 5,0 + 3443: 8,1 + 3444: 8,-1 + 3445: 7,-2 + 3446: 6,-2 + 3447: 5,-2 + 9638: 3,-31 + 9639: 3,-32 + 9640: 4,-32 + 9641: 5,-32 + 9642: 6,-32 + 9643: 4,-29 + 9644: 4,-30 + 9645: 4,-31 + 9646: 5,-29 + 9647: 5,-30 + 9648: 5,-31 + 9649: 6,-31 + 9650: 7,-31 + 9651: 8,-31 + 9652: 4,-29 + 9653: 4,-30 + 9654: 4,-31 + 9655: 4,-32 + 9656: 5,-32 + 9657: 6,-32 + 9658: 3,-32 + 9659: 3,-31 + 9660: 3,-31 + 9661: 3,-32 + 9662: 9,-31 + 9663: 9,-31 + 9664: 9,-31 + 9665: 10,-29 + 9666: 10,-30 + 9667: 10,-31 + 9668: 10,-32 + 9669: 11,-29 + 9670: 11,-30 + 9671: 11,-31 + 9672: 11,-32 + 9673: 12,-29 + 9674: 12,-30 + 9675: 12,-31 + 9676: 12,-32 - node: color: '#0000002E' id: OriginStationSign4 decals: - 3499: -1,-12 - 3500: 0,-12 - 3501: 1,-12 - 6981: 13,-67 - 6982: 14,-67 - 6983: 15,-67 - 6984: 16,-67 - 6985: 13,-65 - 6986: 14,-65 - 6987: 15,-65 - 6988: 16,-65 - 6989: 16,-66 - 6990: 16,-65 - 6991: 16,-67 - 6992: 13,-67 - 6993: 13,-65 - 6994: 13,-66 - 9195: -1,-39 - 9196: -1,-41 - 9197: -1,-40 - 9198: -1,-42 - 9199: 0,-42 - 9200: 0,-39 - 9201: 2,-39 - 9202: 2,-42 - 9203: 1,-42 - 9204: -1,-39 - 9205: -1,-40 - 9206: -1,-41 - 9207: -1,-42 - 9208: 0,-39 - 9209: 0,-42 - 9727: 35,-6 - 9728: 36,-6 - 9729: 37,-6 - 9730: 37,-5 - 9731: 36,-5 - 9732: 35,-5 - 9733: 30,-5 - 9734: 31,-5 - 9735: 32,-5 - 9736: 33,-5 - 9737: 34,-5 - 9738: 35,-6 - 9739: 36,-6 - 9740: 37,-6 - 12407: -61,-19 - 12408: -60,-19 - 12409: -59,-19 - 12410: -58,-19 - 12411: -58,-20 - 12412: -58,-21 - 12413: -58,-22 - 12414: -59,-20 - 12415: -59,-21 - 12416: -59,-22 - 12417: -58,-19 - 12418: -58,-20 - 12419: -58,-21 - 12420: -58,-22 - 12421: -58,-23 - 12422: -58,-24 - 12423: -59,-24 - 12424: -60,-24 - 12425: -61,-23 - 12426: -61,-24 - 16845: -34,-90 - 16846: -33,-90 - 16847: -32,-90 - 16848: -32,-91 - 16849: -33,-91 - 16850: -34,-91 - 16858: -34,-86 - 16859: -34,-88 - 16860: -33,-86 - 16861: -33,-87 - 16862: -33,-88 - 16863: -35,-87 - 16864: -35,-87 - 16865: -36,-86 - 16866: -38,-86 - 16867: -37,-86 - 16868: -39,-86 - 16869: -39,-87 - 16870: -39,-88 - 16871: -39,-89 - 16872: -37,-89 - 16873: -36,-89 - 16875: -38,-89 - 16876: -38,-88 - 16877: -38,-87 - 16878: -37,-87 - 16879: -36,-87 - 16880: -36,-88 - 16881: -37,-88 - 16882: -36,-86 - 16883: -37,-86 - 16884: -38,-86 - 16885: -39,-86 - 16886: -39,-87 - 16887: -39,-88 - 16888: -39,-89 - 16890: -37,-89 - 16891: -36,-89 + 3452: -1,-12 + 3453: 0,-12 + 3454: 1,-12 + 6714: 13,-67 + 6715: 14,-67 + 6716: 15,-67 + 6717: 16,-67 + 6718: 13,-65 + 6719: 14,-65 + 6720: 15,-65 + 6721: 16,-65 + 6722: 16,-66 + 6723: 16,-65 + 6724: 16,-67 + 6725: 13,-67 + 6726: 13,-65 + 6727: 13,-66 + 8928: -1,-39 + 8929: -1,-41 + 8930: -1,-40 + 8931: -1,-42 + 8932: 0,-42 + 8933: 0,-39 + 8934: 2,-39 + 8935: 2,-42 + 8936: 1,-42 + 8937: -1,-39 + 8938: -1,-40 + 8939: -1,-41 + 8940: -1,-42 + 8941: 0,-39 + 8942: 0,-42 + 9460: 35,-6 + 9461: 36,-6 + 9462: 37,-6 + 9463: 37,-5 + 9464: 36,-5 + 9465: 35,-5 + 9466: 30,-5 + 9467: 31,-5 + 9468: 32,-5 + 9469: 33,-5 + 9470: 34,-5 + 9471: 35,-6 + 9472: 36,-6 + 9473: 37,-6 + 12140: -61,-19 + 12141: -60,-19 + 12142: -59,-19 + 12143: -58,-19 + 12144: -58,-20 + 12145: -58,-21 + 12146: -58,-22 + 12147: -59,-20 + 12148: -59,-21 + 12149: -59,-22 + 12150: -58,-19 + 12151: -58,-20 + 12152: -58,-21 + 12153: -58,-22 + 12154: -58,-23 + 12155: -58,-24 + 12156: -59,-24 + 12157: -60,-24 + 12158: -61,-23 + 12159: -61,-24 + 16578: -34,-90 + 16579: -33,-90 + 16580: -32,-90 + 16581: -32,-91 + 16582: -33,-91 + 16583: -34,-91 + 16591: -34,-86 + 16592: -34,-88 + 16593: -33,-86 + 16594: -33,-87 + 16595: -33,-88 + 16596: -35,-87 + 16597: -35,-87 + 16598: -36,-86 + 16599: -38,-86 + 16600: -37,-86 + 16601: -39,-86 + 16602: -39,-87 + 16603: -39,-88 + 16604: -39,-89 + 16605: -37,-89 + 16606: -36,-89 + 16608: -38,-89 + 16609: -38,-88 + 16610: -38,-87 + 16611: -37,-87 + 16612: -36,-87 + 16613: -36,-88 + 16614: -37,-88 + 16615: -36,-86 + 16616: -37,-86 + 16617: -38,-86 + 16618: -39,-86 + 16619: -39,-87 + 16620: -39,-88 + 16621: -39,-89 + 16623: -37,-89 + 16624: -36,-89 - node: color: '#00000031' id: OriginStationSign4 decals: - 5397: -13,66 - 5398: -12,66 - 5399: -11,66 - 5400: -11,65 - 5401: -12,65 - 5402: -15,66 - 5403: -14,66 - 5404: -15,66 - 5405: -14,66 - 5406: -15,63 - 5407: -14,63 - 5408: -15,63 - 5409: -14,63 - 5410: -14,64 - 5411: -15,64 - 5412: -15,65 - 5413: -14,65 - 7633: -16,-61 - 7634: -16,-62 - 8970: -27,-58 - 8971: -26,-58 - 8972: -26,-57 - 8973: -25,-58 - 8974: -28,-57 - 8975: -28,-58 - 8976: -26,-57 - 8977: -26,-58 - 8978: -25,-58 - 8979: -31,-61 - 8980: -30,-61 - 8981: -29,-61 - 8982: -29,-62 - 8983: -30,-62 - 8984: -31,-62 - 8985: -31,-63 - 8986: -30,-63 - 8987: -29,-63 - 8988: -28,-60 - 8989: -27,-60 - 8990: -27,-61 - 8991: -28,-61 - 8992: -28,-62 - 8993: -27,-62 - 8994: -27,-63 - 8995: -28,-63 - 8996: -26,-60 - 8997: -26,-61 - 8998: -26,-62 - 8999: -26,-63 - 9000: -23,-60 - 9001: -23,-61 + 5200: -13,66 + 5201: -12,66 + 5202: -11,66 + 5203: -11,65 + 5204: -12,65 + 5205: -15,66 + 5206: -14,66 + 5207: -15,66 + 5208: -14,66 + 5209: -15,63 + 5210: -14,63 + 5211: -15,63 + 5212: -14,63 + 5213: -14,64 + 5214: -15,64 + 5215: -15,65 + 5216: -14,65 + 7366: -16,-61 + 7367: -16,-62 + 8703: -27,-58 + 8704: -26,-58 + 8705: -26,-57 + 8706: -25,-58 + 8707: -28,-57 + 8708: -28,-58 + 8709: -26,-57 + 8710: -26,-58 + 8711: -25,-58 + 8712: -31,-61 + 8713: -30,-61 + 8714: -29,-61 + 8715: -29,-62 + 8716: -30,-62 + 8717: -31,-62 + 8718: -31,-63 + 8719: -30,-63 + 8720: -29,-63 + 8721: -28,-60 + 8722: -27,-60 + 8723: -27,-61 + 8724: -28,-61 + 8725: -28,-62 + 8726: -27,-62 + 8727: -27,-63 + 8728: -28,-63 + 8729: -26,-60 + 8730: -26,-61 + 8731: -26,-62 + 8732: -26,-63 + 8733: -23,-60 + 8734: -23,-61 - node: color: '#00000034' id: OriginStationSign4 decals: - 5246: -16,59 - 5247: -15,59 - 5248: -14,59 - 5249: -16,59 - 5250: -15,59 - 5251: -14,59 - 7156: 23,-49 - 7157: 23,-50 - 7158: 23,-51 - 7159: 23,-52 - 7160: 22,-49 - 7162: 22,-50 - 7163: 22,-51 - 7164: 22,-52 - 7165: 22,-49 - 7166: 22,-50 - 7167: 22,-51 - 7168: 22,-52 + 5049: -16,59 + 5050: -15,59 + 5051: -14,59 + 5052: -16,59 + 5053: -15,59 + 5054: -14,59 + 6889: 23,-49 + 6890: 23,-50 + 6891: 23,-51 + 6892: 23,-52 + 6893: 22,-49 + 6895: 22,-50 + 6896: 22,-51 + 6897: 22,-52 + 6898: 22,-49 + 6899: 22,-50 + 6900: 22,-51 + 6901: 22,-52 - node: color: '#00000037' id: OriginStationSign4 decals: - 2560: 6,-6 - 2561: 6,-5 - 2562: 6,-4 - 2563: 4,-4 - 2564: 3,-4 - 2565: 3,-5 - 2566: 4,-5 - 2567: 5,-5 - 2568: 5,-6 - 2569: 4,-6 - 2570: 3,-6 - 2571: 3,-7 - 2572: 4,-7 - 2573: 5,-7 - 3667: -2,5 - 3668: 2,5 - 3669: -2,5 - 3670: 2,5 - 4147: -32,37 - 7155: 20,-53 - 11825: -48,-7 - 11827: -48,-8 - 11829: -49,-7 - 11830: -49,-8 - 11831: -48,-7 - 11832: -48,-8 - 16893: -46,-89 - 16894: -45,-89 - 16895: -46,-87 - 16896: -45,-87 - 16897: -45,-86 - 16898: -46,-86 - 16899: -46,-85 - 16900: -45,-85 - 16901: -45,-84 - 16903: -46,-84 - 16904: -38,-83 - 16905: -38,-84 - 16906: -38,-85 - 16907: -37,-85 - 16908: -37,-84 - 16909: -37,-83 + 2513: 6,-6 + 2514: 6,-5 + 2515: 6,-4 + 2516: 4,-4 + 2517: 3,-4 + 2518: 3,-5 + 2519: 4,-5 + 2520: 5,-5 + 2521: 5,-6 + 2522: 4,-6 + 2523: 3,-6 + 2524: 3,-7 + 2525: 4,-7 + 2526: 5,-7 + 3620: -2,5 + 3621: 2,5 + 3622: -2,5 + 3623: 2,5 + 3956: -32,37 + 6888: 20,-53 + 11558: -48,-7 + 11560: -48,-8 + 11562: -49,-7 + 11563: -49,-8 + 11564: -48,-7 + 11565: -48,-8 + 16626: -46,-89 + 16627: -45,-89 + 16628: -46,-87 + 16629: -45,-87 + 16630: -45,-86 + 16631: -46,-86 + 16632: -46,-85 + 16633: -45,-85 + 16634: -45,-84 + 16636: -46,-84 + 16637: -38,-83 + 16638: -38,-84 + 16639: -38,-85 + 16640: -37,-85 + 16641: -37,-84 + 16642: -37,-83 - node: color: '#0000003B' id: OriginStationSign4 decals: - 3994: -42,37 - 3995: -42,30 - 6848: 13,-60 - 6849: 14,-60 - 6850: 15,-60 - 6851: 16,-60 - 6852: 17,-60 - 6853: 17,-61 - 6854: 16,-61 - 6855: 15,-61 - 6856: 14,-61 - 6857: 13,-61 - 6858: 13,-62 - 6859: 14,-62 - 6860: 15,-62 - 6861: 16,-62 - 6862: 17,-62 - 6863: 19,-60 - 6864: 20,-60 - 6865: 21,-60 - 6866: 22,-60 - 6867: 23,-60 - 6868: 23,-61 - 6869: 22,-61 - 6870: 21,-61 - 6871: 20,-61 - 6872: 19,-61 - 6873: 19,-62 - 6874: 20,-62 - 6875: 21,-62 - 6876: 22,-62 - 6877: 23,-62 - 10851: -56,-21 - 10852: -56,-22 - 10853: -55,-22 - 10854: -55,-23 - 10855: -56,-23 - 17074: -38,-83 - 17075: -37,-83 - 17076: -37,-84 - 17077: -38,-84 - 17078: -38,-85 - 17079: -37,-85 - 17080: -46,-85 - 17081: -45,-85 - 17082: -46,-88 - 17083: -45,-88 - 17084: -46,-88 - 17085: -45,-88 + 3851: -42,37 + 3852: -42,30 + 6599: 13,-60 + 6600: 14,-60 + 6601: 15,-60 + 6602: 16,-60 + 6603: 17,-60 + 6604: 17,-61 + 6605: 16,-61 + 6606: 15,-61 + 6607: 14,-61 + 6608: 13,-61 + 6609: 13,-62 + 6610: 14,-62 + 6611: 15,-62 + 6612: 16,-62 + 6613: 17,-62 + 6614: 19,-60 + 6615: 20,-60 + 6616: 21,-60 + 6617: 22,-60 + 6618: 23,-60 + 6619: 23,-61 + 6620: 22,-61 + 6621: 21,-61 + 6622: 20,-61 + 6623: 19,-61 + 6624: 19,-62 + 6625: 20,-62 + 6626: 21,-62 + 6627: 22,-62 + 6628: 23,-62 + 10584: -56,-21 + 10585: -56,-22 + 10586: -55,-22 + 10587: -55,-23 + 10588: -56,-23 + 16807: -38,-83 + 16808: -37,-83 + 16809: -37,-84 + 16810: -38,-84 + 16811: -38,-85 + 16812: -37,-85 + 16813: -46,-85 + 16814: -45,-85 + 16815: -46,-88 + 16816: -45,-88 + 16817: -46,-88 + 16818: -45,-88 - node: color: '#0000003E' id: OriginStationSign4 decals: - 4013: -34,37 - 4014: -35,37 - 4018: -37,37 - 4019: -38,37 - 4026: -41,37 - 4027: -42,36 - 4028: -42,35 - 4029: -42,34 - 4030: -42,33 - 4031: -42,32 - 4032: -42,31 - 4033: -41,30 - 4040: -38,30 - 4054: -32,32 - 4055: -33,32 - 4058: -33,31 - 4059: -32,30 - 4060: -33,30 - 6145: 9,-60 - 6146: 10,-60 - 6147: 11,-60 - 6150: 9,-56 - 6151: 10,-56 - 6152: 11,-56 - 6171: 13,-54 - 6172: 13,-55 - 6174: 14,-56 - 6175: 14,-55 - 6176: 14,-54 - 8962: -32,-62 - 8963: -32,-62 - 8964: -22,-60 - 8965: -22,-60 - 8966: -28,-57 - 8967: -28,-58 - 8968: -34,-60 - 8969: -34,-60 - 12399: -61,-23 - 12400: -61,-24 - 12401: -60,-24 - 12402: -60,-23 - 12403: -59,-23 - 12404: -59,-24 - 12405: -58,-24 - 12406: -58,-23 - 16761: -27,-88 - 16763: -26,-88 - 16765: -25,-88 - 16766: -24,-88 - 16767: -24,-89 - 16768: -24,-90 - 16769: -24,-91 - 16770: -25,-91 - 16771: -26,-91 - 16772: -27,-91 - 16773: -27,-90 - 16774: -27,-89 + 3858: -34,37 + 3859: -35,37 + 3860: -37,37 + 3861: -38,37 + 3862: -41,37 + 3863: -42,36 + 3864: -42,35 + 3865: -42,34 + 3866: -42,33 + 3867: -42,32 + 3868: -42,31 + 3869: -41,30 + 3870: -38,30 + 3871: -32,32 + 3872: -33,32 + 3873: -33,31 + 3874: -32,30 + 3875: -33,30 + 5912: 9,-60 + 5913: 10,-60 + 5914: 11,-60 + 5915: 9,-56 + 5916: 10,-56 + 5917: 11,-56 + 5934: 13,-54 + 5935: 13,-55 + 5936: 14,-56 + 5937: 14,-55 + 5938: 14,-54 + 8695: -32,-62 + 8696: -32,-62 + 8697: -22,-60 + 8698: -22,-60 + 8699: -28,-57 + 8700: -28,-58 + 8701: -34,-60 + 8702: -34,-60 + 12132: -61,-23 + 12133: -61,-24 + 12134: -60,-24 + 12135: -60,-23 + 12136: -59,-23 + 12137: -59,-24 + 12138: -58,-24 + 12139: -58,-23 + 16494: -27,-88 + 16496: -26,-88 + 16498: -25,-88 + 16499: -24,-88 + 16500: -24,-89 + 16501: -24,-90 + 16502: -24,-91 + 16503: -25,-91 + 16504: -26,-91 + 16505: -27,-91 + 16506: -27,-90 + 16507: -27,-89 - node: color: '#00000041' id: OriginStationSign4 decals: - 1592: -49,68 - 1593: -48,68 - 1594: -46,67 - 1595: -42,67 - 1596: -40,68 - 1597: -39,68 - 1598: -47,64 - 1599: -41,64 - 1600: -49,69 - 1601: -48,69 - 1602: -47,69 - 1603: -47,68 - 1604: -46,69 - 1605: -46,68 - 1606: -45,69 - 1607: -45,68 - 1608: -44,69 - 1609: -44,68 - 1610: -43,69 - 1611: -43,68 - 1612: -42,69 - 1613: -42,68 - 1614: -41,69 - 1615: -41,68 - 1616: -40,69 - 1617: -39,69 - 3580: -2,3 - 3581: 2,3 - 3582: 0,-11 - 3583: 0,-15 - 3584: 0,-15 - 10150: 11,-24 - 17022: -43,-82 - 17023: -43,-83 - 17024: -43,-84 - 17025: -43,-85 - 17026: -43,-86 - 17027: -43,-87 - 17028: -43,-88 - 17029: -43,-89 - 17030: -43,-90 - 17031: -43,-91 - 17032: -40,-89 - 17033: -40,-88 - 17034: -40,-87 - 17035: -40,-86 - 17036: -40,-85 - 17037: -40,-84 - 17038: -40,-83 - 17039: -40,-82 - 17040: -40,-90 - 17041: -39,-90 - 17042: -38,-90 - 17043: -38,-91 - 17044: -39,-91 - 17045: -40,-91 - 17046: -42,-91 - 17047: -41,-91 + 1545: -49,68 + 1546: -48,68 + 1547: -46,67 + 1548: -42,67 + 1549: -40,68 + 1550: -39,68 + 1551: -47,64 + 1552: -41,64 + 1553: -49,69 + 1554: -48,69 + 1555: -47,69 + 1556: -47,68 + 1557: -46,69 + 1558: -46,68 + 1559: -45,69 + 1560: -45,68 + 1561: -44,69 + 1562: -44,68 + 1563: -43,69 + 1564: -43,68 + 1565: -42,69 + 1566: -42,68 + 1567: -41,69 + 1568: -41,68 + 1569: -40,69 + 1570: -39,69 + 3533: -2,3 + 3534: 2,3 + 3535: 0,-11 + 3536: 0,-15 + 3537: 0,-15 + 9883: 11,-24 + 16755: -43,-82 + 16756: -43,-83 + 16757: -43,-84 + 16758: -43,-85 + 16759: -43,-86 + 16760: -43,-87 + 16761: -43,-88 + 16762: -43,-89 + 16763: -43,-90 + 16764: -43,-91 + 16765: -40,-89 + 16766: -40,-88 + 16767: -40,-87 + 16768: -40,-86 + 16769: -40,-85 + 16770: -40,-84 + 16771: -40,-83 + 16772: -40,-82 + 16773: -40,-90 + 16774: -39,-90 + 16775: -38,-90 + 16776: -38,-91 + 16777: -39,-91 + 16778: -40,-91 + 16779: -42,-91 + 16780: -41,-91 - node: zIndex: 30 color: '#00000041' id: OriginStationSign4 decals: - 13493: -79,33 - 13494: -78,28 - 13495: -75,31 - 13496: -75,31 - 13497: -75,31 - 13498: -80,32 - 13499: -79,32 - 13500: -78,32 - 13501: -77,32 - 13502: -76,32 - 13503: -76,31 - 13504: -76,30 - 13505: -77,29 - 13506: -78,29 - 13507: -79,29 - 13508: -80,29 - 13509: -80,30 - 13510: -80,31 - 13511: -79,31 - 13512: -78,31 - 13513: -77,31 - 13514: -77,30 - 13515: -78,30 - 13516: -79,30 + 13226: -79,33 + 13227: -78,28 + 13228: -75,31 + 13229: -75,31 + 13230: -75,31 + 13231: -80,32 + 13232: -79,32 + 13233: -78,32 + 13234: -77,32 + 13235: -76,32 + 13236: -76,31 + 13237: -76,30 + 13238: -77,29 + 13239: -78,29 + 13240: -79,29 + 13241: -80,29 + 13242: -80,30 + 13243: -80,31 + 13244: -79,31 + 13245: -78,31 + 13246: -77,31 + 13247: -77,30 + 13248: -78,30 + 13249: -79,30 - node: color: '#00000042' id: OriginStationSign4 decals: - 6378: -3,-58 - 6379: -2,-58 - 6380: -1,-58 - 6381: -1,-59 - 6382: -2,-59 - 6383: -3,-59 - 6384: -3,-60 - 6385: -2,-60 - 6386: -1,-60 - 6387: -1,-61 - 6388: -2,-61 - 6389: -3,-61 - 6390: -3,-63 - 6391: -2,-63 - 6392: -2,-62 - 6393: -2,-62 - 6394: 0,-70 - 6395: 0,-70 - 6396: 0,-70 + 6129: -3,-58 + 6130: -2,-58 + 6131: -1,-58 + 6132: -1,-59 + 6133: -2,-59 + 6134: -3,-59 + 6135: -3,-60 + 6136: -2,-60 + 6137: -1,-60 + 6138: -1,-61 + 6139: -2,-61 + 6140: -3,-61 + 6141: -3,-63 + 6142: -2,-63 + 6143: -2,-62 + 6144: -2,-62 + 6145: 0,-70 + 6146: 0,-70 + 6147: 0,-70 - node: color: '#00000044' id: OriginStationSign4 decals: - 4920: -11,62 - 4921: -11,61 - 4922: -11,60 - 4923: -9,62 - 4924: -9,61 - 4925: -9,60 - 4926: -9,62 - 4927: -9,61 - 4928: -9,60 - 4929: -19,59 - 4930: -19,59 - 4941: -21,62 - 5252: -21,58 - 5253: -20,58 - 5254: -19,58 - 5255: -19,57 - 5256: -18,57 - 5257: -20,57 - 5258: -21,57 - 5259: -16,58 - 5260: -15,58 - 5261: -14,58 - 5262: -14,57 - 5263: -15,57 - 5264: -16,57 - 5265: -16,56 - 5266: -15,56 - 5267: -15,55 - 5268: -16,55 - 6036: -32,-46 - 6037: -32,-47 - 6038: -31,-47 - 6039: -31,-46 - 6040: -30,-46 - 6041: -30,-47 - 6042: -29,-47 - 6043: -29,-46 - 6044: -28,-46 - 6045: -28,-47 - 6359: -4,-66 - 6360: -4,-66 - 6361: 4,-66 - 6362: 4,-66 - 6363: 0,-57 - 6364: 0,-57 - 6964: 13,-64 - 6965: 14,-64 - 6966: 15,-64 - 6967: 16,-64 - 6968: 13,-68 - 6969: 14,-68 - 6970: 15,-68 - 6971: 16,-68 - 6972: 13,-68 - 6973: 14,-68 - 6974: 15,-68 - 6975: 15,-68 - 6976: 16,-68 - 6977: 13,-64 - 6978: 14,-64 - 6979: 15,-64 - 6980: 16,-64 - 9191: 0,-38 - 9192: 0,-38 - 9193: 1,-43 - 9194: 1,-43 - 9741: 36,-7 - 9742: 36,-7 - 9743: 36,-7 - 9744: 36,-10 - 9745: 36,-10 - 9746: 36,-10 - 16851: -34,-86 - 16852: -33,-86 - 16853: -33,-87 - 16854: -34,-87 - 16855: -34,-88 - 16856: -33,-88 - 16857: -35,-87 - 17821: -45,97 - 17822: -45,96 - 17823: -45,95 - 17824: -45,94 - 17825: -44,97 - 17826: -43,97 - 17827: -43,96 - 17828: -43,95 - 17829: -43,94 - 17830: -42,97 - 17831: -41,97 - 17832: -41,96 - 17833: -41,95 - 17834: -41,94 - 17835: -43,97 - 17836: -43,96 - 17837: -43,95 - 17838: -43,94 - 17839: -42,97 - 17840: -41,97 - 17841: -41,96 - 17842: -41,95 - 17843: -41,94 - 17844: -41,97 - 17845: -41,96 - 17846: -41,95 - 17847: -41,94 - 17848: -43,108 - 17849: -43,107 - 17850: -43,106 - 17851: -43,105 - 17852: -42,105 - 17853: -41,105 - 17854: -41,106 - 17855: -41,107 - 17856: -41,108 - 17857: -39,108 - 17858: -39,107 - 17859: -39,106 - 17860: -39,105 - 17861: -40,105 - 17862: -41,108 - 17863: -41,107 - 17864: -41,106 - 17865: -41,105 - 17866: -40,105 - 17867: -39,105 - 17868: -39,106 - 17869: -39,107 - 17870: -39,108 - 17871: -39,108 - 17872: -39,107 - 17873: -39,106 - 17874: -39,105 - 17875: -53,106 - 17876: -52,106 - 17877: -51,106 - 17878: -50,106 - 17879: -50,105 - 17880: -51,104 - 17881: -52,104 - 17882: -53,104 - 17883: -53,102 - 17884: -51,102 - 17885: -50,102 - 17886: -50,103 - 17887: -50,104 - 17888: -53,104 - 17889: -52,104 - 17890: -51,104 - 17891: -50,104 - 17892: -50,105 - 17893: -52,102 - 17894: -53,106 - 17895: -51,106 - 17896: -50,106 - 17897: -52,106 - 17898: -53,106 - 17899: -52,106 - 17900: -51,106 - 17901: -50,106 - 17902: -49,103 - 17903: -49,103 - 17904: -49,103 - 17905: -42,104 - 17906: -42,104 - 17907: -42,104 - 17908: -44,98 - 17909: -44,98 - 17910: -44,98 + 4723: -11,62 + 4724: -11,61 + 4725: -11,60 + 4726: -9,62 + 4727: -9,61 + 4728: -9,60 + 4729: -9,62 + 4730: -9,61 + 4731: -9,60 + 4732: -19,59 + 4733: -19,59 + 4744: -21,62 + 5055: -21,58 + 5056: -20,58 + 5057: -19,58 + 5058: -19,57 + 5059: -18,57 + 5060: -20,57 + 5061: -21,57 + 5062: -16,58 + 5063: -15,58 + 5064: -14,58 + 5065: -14,57 + 5066: -15,57 + 5067: -16,57 + 5068: -16,56 + 5069: -15,56 + 5070: -15,55 + 5071: -16,55 + 5839: -32,-46 + 5840: -32,-47 + 5841: -31,-47 + 5842: -31,-46 + 5843: -30,-46 + 5844: -30,-47 + 5845: -29,-47 + 5846: -29,-46 + 5847: -28,-46 + 5848: -28,-47 + 6110: -4,-66 + 6111: -4,-66 + 6112: 4,-66 + 6113: 4,-66 + 6114: 0,-57 + 6115: 0,-57 + 6697: 13,-64 + 6698: 14,-64 + 6699: 15,-64 + 6700: 16,-64 + 6701: 13,-68 + 6702: 14,-68 + 6703: 15,-68 + 6704: 16,-68 + 6705: 13,-68 + 6706: 14,-68 + 6707: 15,-68 + 6708: 15,-68 + 6709: 16,-68 + 6710: 13,-64 + 6711: 14,-64 + 6712: 15,-64 + 6713: 16,-64 + 8924: 0,-38 + 8925: 0,-38 + 8926: 1,-43 + 8927: 1,-43 + 9474: 36,-7 + 9475: 36,-7 + 9476: 36,-7 + 9477: 36,-10 + 9478: 36,-10 + 9479: 36,-10 + 16584: -34,-86 + 16585: -33,-86 + 16586: -33,-87 + 16587: -34,-87 + 16588: -34,-88 + 16589: -33,-88 + 16590: -35,-87 + 17554: -45,97 + 17555: -45,96 + 17556: -45,95 + 17557: -45,94 + 17558: -44,97 + 17559: -43,97 + 17560: -43,96 + 17561: -43,95 + 17562: -43,94 + 17563: -42,97 + 17564: -41,97 + 17565: -41,96 + 17566: -41,95 + 17567: -41,94 + 17568: -43,97 + 17569: -43,96 + 17570: -43,95 + 17571: -43,94 + 17572: -42,97 + 17573: -41,97 + 17574: -41,96 + 17575: -41,95 + 17576: -41,94 + 17577: -41,97 + 17578: -41,96 + 17579: -41,95 + 17580: -41,94 + 17581: -43,108 + 17582: -43,107 + 17583: -43,106 + 17584: -43,105 + 17585: -42,105 + 17586: -41,105 + 17587: -41,106 + 17588: -41,107 + 17589: -41,108 + 17590: -39,108 + 17591: -39,107 + 17592: -39,106 + 17593: -39,105 + 17594: -40,105 + 17595: -41,108 + 17596: -41,107 + 17597: -41,106 + 17598: -41,105 + 17599: -40,105 + 17600: -39,105 + 17601: -39,106 + 17602: -39,107 + 17603: -39,108 + 17604: -39,108 + 17605: -39,107 + 17606: -39,106 + 17607: -39,105 + 17608: -53,106 + 17609: -52,106 + 17610: -51,106 + 17611: -50,106 + 17612: -50,105 + 17613: -51,104 + 17614: -52,104 + 17615: -53,104 + 17616: -53,102 + 17617: -51,102 + 17618: -50,102 + 17619: -50,103 + 17620: -50,104 + 17621: -53,104 + 17622: -52,104 + 17623: -51,104 + 17624: -50,104 + 17625: -50,105 + 17626: -52,102 + 17627: -53,106 + 17628: -51,106 + 17629: -50,106 + 17630: -52,106 + 17631: -53,106 + 17632: -52,106 + 17633: -51,106 + 17634: -50,106 + 17635: -49,103 + 17636: -49,103 + 17637: -49,103 + 17638: -42,104 + 17639: -42,104 + 17640: -42,104 + 17641: -44,98 + 17642: -44,98 + 17643: -44,98 - node: color: '#00000047' id: OriginStationSign4 decals: - 10151: 9,-20 - 10152: 9,-21 - 10153: 10,-21 - 10154: 10,-20 - 10155: 9,-23 - 10156: 10,-23 - 10157: 11,-23 - 10158: 12,-23 - 10159: 13,-23 - 10160: 13,-22 - 10161: 12,-22 - 10162: 11,-22 - 10163: 11,-21 - 10164: 11,-20 - 10165: 12,-20 - 10166: 12,-21 - 10167: 13,-21 - 10168: 13,-20 - 10169: 11,-20 - 10170: 11,-21 - 10171: 11,-22 - 10172: 12,-22 - 10173: 12,-21 - 10174: 12,-20 - 10175: 13,-20 - 10176: 13,-21 - 10177: 13,-22 - 10178: 13,-23 - 10179: 12,-23 - 10180: 11,-23 - 10181: 10,-23 - 10182: 9,-23 - 10183: 12,-20 - 10184: 13,-20 - 10185: 13,-21 - 10186: 13,-22 - 10187: 13,-23 - 10188: 12,-23 - 10189: 11,-23 - 10190: 10,-23 - 10191: 9,-23 - 10192: 11,-20 - 10193: 12,-21 - 10194: 12,-22 - 10195: 13,-20 - 10196: 13,-21 - 10197: 13,-22 - 10198: 13,-23 - 10199: 12,-23 - 10200: 11,-21 - 10201: 11,-22 - 10202: 10,-23 - 10203: 9,-23 + 9884: 9,-20 + 9885: 9,-21 + 9886: 10,-21 + 9887: 10,-20 + 9888: 9,-23 + 9889: 10,-23 + 9890: 11,-23 + 9891: 12,-23 + 9892: 13,-23 + 9893: 13,-22 + 9894: 12,-22 + 9895: 11,-22 + 9896: 11,-21 + 9897: 11,-20 + 9898: 12,-20 + 9899: 12,-21 + 9900: 13,-21 + 9901: 13,-20 + 9902: 11,-20 + 9903: 11,-21 + 9904: 11,-22 + 9905: 12,-22 + 9906: 12,-21 + 9907: 12,-20 + 9908: 13,-20 + 9909: 13,-21 + 9910: 13,-22 + 9911: 13,-23 + 9912: 12,-23 + 9913: 11,-23 + 9914: 10,-23 + 9915: 9,-23 + 9916: 12,-20 + 9917: 13,-20 + 9918: 13,-21 + 9919: 13,-22 + 9920: 13,-23 + 9921: 12,-23 + 9922: 11,-23 + 9923: 10,-23 + 9924: 9,-23 + 9925: 11,-20 + 9926: 12,-21 + 9927: 12,-22 + 9928: 13,-20 + 9929: 13,-21 + 9930: 13,-22 + 9931: 13,-23 + 9932: 12,-23 + 9933: 11,-21 + 9934: 11,-22 + 9935: 10,-23 + 9936: 9,-23 - node: color: '#0000004A' id: OriginStationSign4 decals: - 2574: 9,-9 - 2575: 8,-9 - 2576: 8,-10 - 2577: 9,-10 - 2617: 2,-7 - 2618: 2,-7 - 7623: -16,-61 - 7624: -16,-62 - 7625: -15,-61 - 7626: -15,-62 - 7627: -14,-61 - 7628: -14,-62 - 7629: -13,-61 - 7630: -13,-62 - 7631: -13,-63 - 7632: -13,-63 - 9718: 35,-4 - 9719: 36,-4 - 9720: 37,-4 - 9721: 35,-8 - 9722: 36,-8 - 9723: 37,-8 - 9724: 37,-9 - 9725: 36,-9 - 9726: 35,-9 + 2527: 9,-9 + 2528: 8,-9 + 2529: 8,-10 + 2530: 9,-10 + 2570: 2,-7 + 2571: 2,-7 + 7356: -16,-61 + 7357: -16,-62 + 7358: -15,-61 + 7359: -15,-62 + 7360: -14,-61 + 7361: -14,-62 + 7362: -13,-61 + 7363: -13,-62 + 7364: -13,-63 + 7365: -13,-63 + 9451: 35,-4 + 9452: 36,-4 + 9453: 37,-4 + 9454: 35,-8 + 9455: 36,-8 + 9456: 37,-8 + 9457: 37,-9 + 9458: 36,-9 + 9459: 35,-9 - node: color: '#0000004D' id: OriginStationSign4 decals: - 6235: 16,-54 - 6236: 17,-54 - 6237: 18,-54 - 6238: 18,-55 - 6239: 17,-55 - 6240: 16,-55 - 6241: 16,-56 - 6242: 17,-56 - 6243: 18,-56 - 6244: 15,-51 - 6245: 15,-52 - 6246: 16,-52 - 6247: 16,-51 - 6248: 17,-51 - 6249: 17,-52 - 6250: 18,-52 - 6251: 18,-51 - 6252: 17,-53 - 6253: 18,-52 - 6254: 18,-51 - 6255: 17,-51 - 6256: 17,-52 - 6257: 16,-52 - 6258: 16,-51 - 6259: 15,-51 - 6260: 15,-52 + 5992: 16,-54 + 5993: 17,-54 + 5994: 18,-54 + 5995: 18,-55 + 5996: 17,-55 + 5997: 16,-55 + 5998: 16,-56 + 5999: 17,-56 + 6000: 18,-56 + 6001: 15,-51 + 6002: 15,-52 + 6003: 16,-52 + 6004: 16,-51 + 6005: 17,-51 + 6006: 17,-52 + 6007: 18,-52 + 6008: 18,-51 + 6009: 17,-53 + 6010: 18,-52 + 6011: 18,-51 + 6012: 17,-51 + 6013: 17,-52 + 6014: 16,-52 + 6015: 16,-51 + 6016: 15,-51 + 6017: 15,-52 - node: cleanable: True color: '#0000004D' id: OriginStationSign4 decals: - 5837: -21,56 - 5838: -20,56 - 5839: -19,56 - 5840: -18,56 - 5841: -18,55 - 5842: -19,55 - 5843: -20,55 - 5844: -21,55 + 5640: -21,56 + 5641: -20,56 + 5642: -19,56 + 5643: -18,56 + 5644: -18,55 + 5645: -19,55 + 5646: -20,55 + 5647: -21,55 - node: color: '#00000050' id: OriginStationSign4 decals: - 10936: -48,-23 - 10937: -47,-23 - 10938: -46,-23 - 10939: -46,-24 - 10940: -47,-24 - 10941: -48,-24 - 10942: -48,-25 - 10943: -47,-25 - 10944: -46,-25 - 11279: -66,-12 - 11280: -65,-12 - 11281: -65,-13 - 11282: -66,-13 - 11283: -66,-13 - 11284: -65,-13 - 12389: -64,-23 - 12390: -64,-24 - 12391: -63,-24 - 12392: -63,-23 - 12393: -62,-23 - 12394: -62,-23 - 12395: -62,-24 - 12396: -62,-24 - 12397: -60,-18 - 12398: -60,-18 + 10669: -48,-23 + 10670: -47,-23 + 10671: -46,-23 + 10672: -46,-24 + 10673: -47,-24 + 10674: -48,-24 + 10675: -48,-25 + 10676: -47,-25 + 10677: -46,-25 + 11012: -66,-12 + 11013: -65,-12 + 11014: -65,-13 + 11015: -66,-13 + 11016: -66,-13 + 11017: -65,-13 + 12122: -64,-23 + 12123: -64,-24 + 12124: -63,-24 + 12125: -63,-23 + 12126: -62,-23 + 12127: -62,-23 + 12128: -62,-24 + 12129: -62,-24 + 12130: -60,-18 + 12131: -60,-18 - node: color: '#00000053' id: OriginStationSign4 decals: - 9903: 5,-28 - 9904: 5,-28 - 13399: -74,35 - 13400: -74,36 - 13401: -73,36 - 13402: -73,35 - 13403: -72,34 - 13404: -72,35 - 13405: -71,36 - 13406: -71,35 - 13407: -71,34 - 13408: -70,36 - 13409: -70,35 - 13410: -70,34 - 13411: -69,36 - 13412: -69,34 - 13413: -68,36 - 13414: -68,35 - 13415: -74,34 - 13416: -74,34 - 13417: -74,34 - 13418: -73,34 - 13419: -73,34 - 13420: -73,34 - 13421: -72,36 - 13422: -72,36 - 13423: -72,36 - 13424: -69,35 - 13425: -69,35 - 13426: -69,35 - 13427: -72,32 - 13428: -72,32 - 13429: -72,32 - 13430: -74,30 - 13431: -74,30 - 13432: -74,30 - 13433: -69,31 - 13434: -69,31 - 13435: -69,31 - 13436: -68,31 - 13437: -68,31 - 13438: -68,31 + 9636: 5,-28 + 9637: 5,-28 + 13132: -74,35 + 13133: -74,36 + 13134: -73,36 + 13135: -73,35 + 13136: -72,34 + 13137: -72,35 + 13138: -71,36 + 13139: -71,35 + 13140: -71,34 + 13141: -70,36 + 13142: -70,35 + 13143: -70,34 + 13144: -69,36 + 13145: -69,34 + 13146: -68,36 + 13147: -68,35 + 13148: -74,34 + 13149: -74,34 + 13150: -74,34 + 13151: -73,34 + 13152: -73,34 + 13153: -73,34 + 13154: -72,36 + 13155: -72,36 + 13156: -72,36 + 13157: -69,35 + 13158: -69,35 + 13159: -69,35 + 13160: -72,32 + 13161: -72,32 + 13162: -72,32 + 13163: -74,30 + 13164: -74,30 + 13165: -74,30 + 13166: -69,31 + 13167: -69,31 + 13168: -69,31 + 13169: -68,31 + 13170: -68,31 + 13171: -68,31 - node: color: '#00000057' id: OriginStationSign4 decals: - 3645: 1,7 - 3646: 1,6 - 3647: 1,5 - 3648: 1,4 - 3649: 2,4 - 3650: 3,4 - 3651: 3,5 - 3652: 2,5 - 3653: 2,6 - 3654: 3,6 - 3655: -1,7 - 3656: -1,6 - 3657: -2,6 - 3658: -3,6 - 3659: -3,5 - 3660: -2,5 - 3661: -1,5 - 3662: -1,4 - 3663: -2,4 - 3664: -3,4 - 4113: -37,51 - 4114: -36,51 - 4115: -35,51 - 4116: -34,51 - 4117: -34,50 - 4118: -34,49 - 4119: -34,48 - 4120: -34,47 - 4121: -35,47 - 4122: -36,47 - 4123: -37,47 - 4124: -37,48 - 4125: -37,49 - 4126: -37,50 - 9113: 6,-78 - 9114: 7,-78 - 9115: 8,-78 - 9116: 8,-79 - 9117: 7,-79 - 9118: 7,-80 - 9119: 8,-80 - 9120: 7,-81 - 9121: 8,-81 - 9122: 7,-82 - 9123: 8,-82 - 9124: 8,-83 - 9125: 7,-83 - 9126: 7,-84 - 9127: 8,-84 - 9128: 8,-85 - 9129: 7,-85 - 9130: 8,-86 - 9131: 9,-86 - 9132: 10,-86 - 9133: 11,-86 - 9134: 12,-86 - 9135: 7,-86 - 9136: 6,-86 - 9137: 13,-86 - 9138: 14,-86 - 9139: 12,-85 - 9140: 13,-85 - 9141: 13,-84 - 9142: 12,-84 - 9143: 12,-83 - 9144: 13,-83 - 9145: 13,-82 - 9146: 12,-82 - 9147: 12,-81 - 9148: 13,-81 - 9149: 13,-80 - 9150: 12,-80 - 9151: 12,-79 - 9152: 13,-79 - 9153: 12,-78 - 9154: 13,-78 - 9155: 14,-78 - 10646: -40,-40 - 10647: -40,-40 - 10648: -37,-36 - 10649: -36,-36 - 10650: -37,-36 - 10651: -36,-36 - 10652: -40,-33 - 10653: -40,-33 - 10654: -40,-31 - 10656: -40,-31 - 10657: -37,-28 - 10658: -37,-28 - 10659: -36,-28 - 10661: -36,-28 - 10664: -44,-40 - 10665: -44,-40 + 3598: 1,7 + 3599: 1,6 + 3600: 1,5 + 3601: 1,4 + 3602: 2,4 + 3603: 3,4 + 3604: 3,5 + 3605: 2,5 + 3606: 2,6 + 3607: 3,6 + 3608: -1,7 + 3609: -1,6 + 3610: -2,6 + 3611: -3,6 + 3612: -3,5 + 3613: -2,5 + 3614: -1,5 + 3615: -1,4 + 3616: -2,4 + 3617: -3,4 + 3923: -37,51 + 3924: -36,51 + 3925: -35,51 + 3926: -34,51 + 3927: -34,50 + 3928: -34,49 + 3929: -34,48 + 3930: -34,47 + 3931: -35,47 + 3932: -36,47 + 3933: -37,47 + 3934: -37,48 + 3935: -37,49 + 3936: -37,50 + 8846: 6,-78 + 8847: 7,-78 + 8848: 8,-78 + 8849: 8,-79 + 8850: 7,-79 + 8851: 7,-80 + 8852: 8,-80 + 8853: 7,-81 + 8854: 8,-81 + 8855: 7,-82 + 8856: 8,-82 + 8857: 8,-83 + 8858: 7,-83 + 8859: 7,-84 + 8860: 8,-84 + 8861: 8,-85 + 8862: 7,-85 + 8863: 8,-86 + 8864: 9,-86 + 8865: 10,-86 + 8866: 11,-86 + 8867: 12,-86 + 8868: 7,-86 + 8869: 6,-86 + 8870: 13,-86 + 8871: 14,-86 + 8872: 12,-85 + 8873: 13,-85 + 8874: 13,-84 + 8875: 12,-84 + 8876: 12,-83 + 8877: 13,-83 + 8878: 13,-82 + 8879: 12,-82 + 8880: 12,-81 + 8881: 13,-81 + 8882: 13,-80 + 8883: 12,-80 + 8884: 12,-79 + 8885: 13,-79 + 8886: 12,-78 + 8887: 13,-78 + 8888: 14,-78 + 10379: -40,-40 + 10380: -40,-40 + 10381: -37,-36 + 10382: -36,-36 + 10383: -37,-36 + 10384: -36,-36 + 10385: -40,-33 + 10386: -40,-33 + 10387: -40,-31 + 10389: -40,-31 + 10390: -37,-28 + 10391: -37,-28 + 10392: -36,-28 + 10394: -36,-28 + 10397: -44,-40 + 10398: -44,-40 - node: color: '#0000005A' id: OriginStationSign4 decals: - 3495: -1,-10 - 3496: 0,-10 - 3497: 1,-10 - 3498: 0,-11 - 16911: -44,-82 - 16912: -44,-83 - 16913: -44,-84 - 16914: -44,-85 - 16915: -44,-86 - 16916: -44,-87 - 16918: -44,-88 - 16919: -44,-89 - 16920: -44,-90 - 16921: -44,-91 - 16922: -39,-82 - 16923: -39,-83 - 16924: -39,-84 - 16925: -39,-85 - 16927: -42,-81 - 16928: -42,-81 - 16929: -41,-81 - 16930: -41,-81 + 3448: -1,-10 + 3449: 0,-10 + 3450: 1,-10 + 3451: 0,-11 + 16644: -44,-82 + 16645: -44,-83 + 16646: -44,-84 + 16647: -44,-85 + 16648: -44,-86 + 16649: -44,-87 + 16651: -44,-88 + 16652: -44,-89 + 16653: -44,-90 + 16654: -44,-91 + 16655: -39,-82 + 16656: -39,-83 + 16657: -39,-84 + 16658: -39,-85 + 16660: -42,-81 + 16661: -42,-81 + 16662: -41,-81 + 16663: -41,-81 - node: color: '#0000005C' id: OriginStationSign4 decals: - 4205: -56,35 - 4206: -55,35 - 4207: -54,35 - 4208: -54,34 - 4209: -55,34 - 4210: -56,34 - 4211: -56,33 - 4212: -55,33 - 4213: -54,33 - 4214: -54,32 - 4215: -55,32 - 4216: -56,32 - 4217: -56,31 - 4218: -56,31 - 4219: -54,31 - 4220: -55,31 + 4008: -56,35 + 4009: -55,35 + 4010: -54,35 + 4011: -54,34 + 4012: -55,34 + 4013: -56,34 + 4014: -56,33 + 4015: -55,33 + 4016: -54,33 + 4017: -54,32 + 4018: -55,32 + 4019: -56,32 + 4020: -56,31 + 4021: -56,31 + 4022: -54,31 + 4023: -55,31 - node: color: '#00000060' id: OriginStationSign4 decals: - 11774: -49,-3 - 11775: -49,-4 - 11776: -49,-5 - 11777: -48,-5 - 11778: -48,-4 - 11779: -48,-3 + 11507: -49,-3 + 11508: -49,-4 + 11509: -49,-5 + 11510: -48,-5 + 11511: -48,-4 + 11512: -48,-3 - node: zIndex: 30 color: '#00000060' id: OriginStationSign4 decals: - 13478: -79,33 - 13479: -79,33 - 13480: -78,28 - 13481: -78,28 - 13482: -78,28 - 13483: -79,33 - 13484: -70,30 - 13485: -70,30 - 13486: -70,30 - 13487: -62,35 - 13488: -62,35 - 13489: -62,35 - 13490: -73,37 - 13491: -73,37 - 13492: -73,37 + 13211: -79,33 + 13212: -79,33 + 13213: -78,28 + 13214: -78,28 + 13215: -78,28 + 13216: -79,33 + 13217: -70,30 + 13218: -70,30 + 13219: -70,30 + 13220: -62,35 + 13221: -62,35 + 13222: -62,35 + 13223: -73,37 + 13224: -73,37 + 13225: -73,37 - node: color: '#00000063' id: OriginStationSign4 decals: - 3450: -11,1 - 3451: -10,1 - 3452: -10,0 - 3453: -10,-1 - 3454: -11,-1 - 3455: 10,1 - 3456: 11,1 - 3457: 10,0 - 3458: 10,-1 - 3459: 11,-1 - 3460: 11,0 - 3461: -11,0 + 3403: -11,1 + 3404: -10,1 + 3405: -10,0 + 3406: -10,-1 + 3407: -11,-1 + 3408: 10,1 + 3409: 11,1 + 3410: 10,0 + 3411: 10,-1 + 3412: 11,-1 + 3413: 11,0 + 3414: -11,0 - node: color: '#00000069' id: OriginStationSign4 decals: - 15703: -67,35 - 15704: -67,35 - 15705: -67,35 + 15436: -67,35 + 15437: -67,35 + 15438: -67,35 - node: color: '#0000006C' id: OriginStationSign4 decals: - 10148: 11,-24 - 10149: 11,-24 + 9881: 11,-24 + 9882: 11,-24 - node: color: '#00000073' id: OriginStationSign4 decals: - 7154: 20,-53 + 6887: 20,-53 - node: color: '#0000007C' id: OriginStationSign4 decals: - 3578: -2,3 - 3579: 2,3 + 3531: -2,3 + 3532: 2,3 - node: color: '#0000008B' id: OriginStationSign4 decals: - 5346: -17,65 - 5347: -17,64 - 5348: -17,63 - 5349: -17,62 - 5350: -18,62 - 5351: -19,62 - 5352: -20,62 + 5149: -17,65 + 5150: -17,64 + 5151: -17,63 + 5152: -17,62 + 5153: -18,62 + 5154: -19,62 + 5155: -20,62 - node: color: '#00000095' id: OriginStationSign4 decals: - 11747: -55,-3 - 11748: -55,-4 - 11749: -55,-5 - 11750: -55,-6 - 11751: -55,-7 - 11752: -55,-8 - 11754: -54,-8 - 11755: -53,-8 - 11756: -52,-8 - 11758: -50,-8 - 11759: -50,-7 - 11760: -50,-6 - 11761: -49,-7 - 11762: -49,-8 - 11763: -48,-7 - 11764: -48,-8 - 11766: -50,-5 - 11767: -50,-4 - 11768: -50,-3 - 11769: -54,-3 - 11770: -53,-3 - 11771: -52,-3 - 11772: -51,-3 + 11480: -55,-3 + 11481: -55,-4 + 11482: -55,-5 + 11483: -55,-6 + 11484: -55,-7 + 11485: -55,-8 + 11487: -54,-8 + 11488: -53,-8 + 11489: -52,-8 + 11491: -50,-8 + 11492: -50,-7 + 11493: -50,-6 + 11494: -49,-7 + 11495: -49,-8 + 11496: -48,-7 + 11497: -48,-8 + 11499: -50,-5 + 11500: -50,-4 + 11501: -50,-3 + 11502: -54,-3 + 11503: -53,-3 + 11504: -52,-3 + 11505: -51,-3 - node: color: '#0000009E' id: OriginStationSign4 decals: - 10959: -48,-22 - 10960: -48,-21 - 10961: -49,-21 - 10962: -49,-22 - 10963: -49,-23 - 10964: -49,-24 - 10965: -49,-25 - 10966: -49,-26 - 10967: -49,-27 - 10968: -48,-26 - 10969: -48,-27 - 10970: -47,-26 - 10971: -47,-27 - 10972: -46,-26 - 10973: -46,-27 - 10974: -45,-26 - 10975: -45,-27 - 10976: -45,-25 - 10977: -45,-24 - 10978: -45,-23 - 10979: -45,-22 - 10980: -45,-21 - 10981: -46,-21 - 10982: -46,-22 - 10983: -47,-21 - 10984: -47,-22 + 10692: -48,-22 + 10693: -48,-21 + 10694: -49,-21 + 10695: -49,-22 + 10696: -49,-23 + 10697: -49,-24 + 10698: -49,-25 + 10699: -49,-26 + 10700: -49,-27 + 10701: -48,-26 + 10702: -48,-27 + 10703: -47,-26 + 10704: -47,-27 + 10705: -46,-26 + 10706: -46,-27 + 10707: -45,-26 + 10708: -45,-27 + 10709: -45,-25 + 10710: -45,-24 + 10711: -45,-23 + 10712: -45,-22 + 10713: -45,-21 + 10714: -46,-21 + 10715: -46,-22 + 10716: -47,-21 + 10717: -47,-22 - node: color: '#000000E6' id: OriginStationSign4 decals: - 18292: -18,63 - 18293: -19,63 - 18294: -20,63 - 18295: -21,63 - 18296: -22,63 - 18297: -18,64 - 18298: -18,65 - 18299: -18,66 - 18300: -18,67 - 18301: -19,67 - 18302: -20,67 - 18303: -21,67 - 18304: -22,67 - 18305: -22,66 - 18306: -21,66 - 18307: -20,66 - 18308: -19,66 - 18309: -19,65 - 18310: -20,65 - 18311: -21,65 - 18312: -22,65 - 18313: -22,64 - 18314: -21,64 - 18315: -20,64 - 18316: -19,64 + 18025: -18,63 + 18026: -19,63 + 18027: -20,63 + 18028: -21,63 + 18029: -22,63 + 18030: -18,64 + 18031: -18,65 + 18032: -18,66 + 18033: -18,67 + 18034: -19,67 + 18035: -20,67 + 18036: -21,67 + 18037: -22,67 + 18038: -22,66 + 18039: -21,66 + 18040: -20,66 + 18041: -19,66 + 18042: -19,65 + 18043: -20,65 + 18044: -21,65 + 18045: -22,65 + 18046: -22,64 + 18047: -21,64 + 18048: -20,64 + 18049: -19,64 - node: color: '#000000D0' id: QuarterTileOverlayGreyscale decals: - 9301: 84,-28 - 9304: 86,-27 - 9305: 83,-20 - 9320: 82,-21 - 9323: 87,-23 + 9034: 84,-28 + 9037: 86,-27 + 9038: 83,-20 + 9053: 82,-21 + 9056: 87,-23 - node: color: '#000000DC' id: QuarterTileOverlayGreyscale decals: - 16984: -42,-83 - 16987: -40,-90 - 16994: -38,-87 - 16998: -34,-87 - 17000: -41,-91 - 17005: -44,-89 - 17010: -39,-85 - 17013: -44,-84 - 17017: -30,-85 + 16717: -42,-83 + 16720: -40,-90 + 16727: -38,-87 + 16731: -34,-87 + 16733: -41,-91 + 16738: -44,-89 + 16743: -39,-85 + 16746: -44,-84 + 16750: -30,-85 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 9010: -33,-62 - 9011: -35,-62 - 9012: -34,-62 - 9013: -33,-63 - 9021: -35,-61 - 9022: -34,-61 - 9023: -33,-61 + 8743: -33,-62 + 8744: -35,-62 + 8745: -34,-62 + 8746: -33,-63 + 8754: -35,-61 + 8755: -34,-61 + 8756: -33,-61 - node: color: '#000000D0' id: QuarterTileOverlayGreyscale180 decals: - 9313: 84,-20 + 9046: 84,-20 - node: color: '#000000DC' id: QuarterTileOverlayGreyscale180 decals: - 16986: -43,-84 - 16988: -43,-90 - 16992: -41,-83 - 16993: -36,-88 - 17001: -38,-90 - 17006: -44,-90 - 17008: -39,-85 - 17012: -44,-82 + 16719: -43,-84 + 16721: -43,-90 + 16725: -41,-83 + 16726: -36,-88 + 16734: -38,-90 + 16739: -44,-90 + 16741: -39,-85 + 16745: -44,-82 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale180 decals: - 16569: -31,-84 + 16302: -31,-84 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 9014: -33,-63 - 9015: -33,-62 - 9016: -34,-62 - 9017: -35,-62 - 9018: -35,-61 - 9019: -33,-61 - 9020: -34,-61 + 8747: -33,-63 + 8748: -33,-62 + 8749: -34,-62 + 8750: -35,-62 + 8751: -35,-61 + 8752: -33,-61 + 8753: -34,-61 - node: color: '#CA8C1898' id: QuarterTileOverlayGreyscale180 decals: - 18253: 48,1 - 18254: 48,0 - 18261: 48,-1 + 17986: 48,1 + 17987: 48,0 + 17994: 48,-1 - node: color: '#000000D0' id: QuarterTileOverlayGreyscale270 decals: - 9294: 85,-21 - 9296: 82,-26 - 9317: 84,-19 - 9319: 82,-23 - 9322: 86,-19 + 9027: 85,-21 + 9029: 82,-26 + 9050: 84,-19 + 9052: 82,-23 + 9055: 86,-19 - node: color: '#000000DC' id: QuarterTileOverlayGreyscale270 decals: - 16985: -42,-87 - 16989: -41,-88 - 16991: -41,-82 - 16996: -37,-87 - 16999: -33,-88 - 17007: -44,-91 - 17011: -39,-82 - 17014: -44,-85 - 17015: -42,-85 - 17016: -26,-85 - 17018: -29,-85 + 16718: -42,-87 + 16722: -41,-88 + 16724: -41,-82 + 16729: -37,-87 + 16732: -33,-88 + 16740: -44,-91 + 16744: -39,-82 + 16747: -44,-85 + 16748: -42,-85 + 16749: -26,-85 + 16751: -29,-85 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 17272: 11,-49 - 17275: 10,-49 - 17278: 9,-48 - 17335: 11,-46 - 17336: 11,-45 - 17337: 11,-44 - 17338: 10,-44 - 17339: 9,-44 - 17340: 9,-43 - 17341: 9,-42 - 17373: 17,-49 - 17374: 16,-49 - 17375: 16,-48 + 17005: 11,-49 + 17008: 10,-49 + 17011: 9,-48 + 17068: 11,-46 + 17069: 11,-45 + 17070: 11,-44 + 17071: 10,-44 + 17072: 9,-44 + 17073: 9,-43 + 17074: 9,-42 + 17106: 17,-49 + 17107: 16,-49 + 17108: 16,-48 - node: color: '#000000D0' id: QuarterTileOverlayGreyscale90 decals: - 9292: 83,-23 - 9293: 86,-26 - 9321: 86,-19 + 9025: 83,-23 + 9026: 86,-26 + 9054: 86,-19 - node: color: '#000000DC' id: QuarterTileOverlayGreyscale90 decals: - 16990: -41,-88 - 16995: -38,-88 - 16997: -33,-86 - 17002: -39,-91 - 17003: -41,-86 - 17004: -44,-84 - 17009: -39,-84 + 16723: -41,-88 + 16728: -38,-88 + 16730: -33,-86 + 16735: -39,-91 + 16736: -41,-86 + 16737: -44,-84 + 16742: -39,-84 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 17334: 10,-47 - 17347: 10,-41 - 17348: 11,-41 - 17349: 11,-42 - 17355: 13,-45 - 17357: 13,-46 - 17358: 14,-46 - 17360: 15,-46 - 17361: 16,-46 - 17362: 17,-46 - 17364: 18,-46 - 17365: 18,-47 - 17366: 18,-48 + 17067: 10,-47 + 17080: 10,-41 + 17081: 11,-41 + 17082: 11,-42 + 17088: 13,-45 + 17090: 13,-46 + 17091: 14,-46 + 17093: 15,-46 + 17094: 16,-46 + 17095: 17,-46 + 17097: 18,-46 + 17098: 18,-47 + 17099: 18,-48 - node: zIndex: 60 color: '#A700DF59' id: Remains decals: - 16185: -62.0801,48.743877 + 15918: -62.0801,48.743877 - node: color: '#FFFFFFFF' id: Remains decals: - 17210: -86.402306,-55.93023 - 17443: 55.878654,17.299757 - 17749: -85.31261,-59.84957 - 17750: -81.15636,-60.91207 - 17751: -83.46886,-58.22457 + 16943: -86.402306,-55.93023 + 17176: 55.878654,17.299757 + 17482: -85.31261,-59.84957 + 17483: -81.15636,-60.91207 + 17484: -83.46886,-58.22457 - node: color: '#8B8CA4E2' id: Rock01 decals: - 19117: -67,-62 + 18850: -67,-62 - node: color: '#C7CFD0E9' id: Rock01 decals: - 18731: -65,-76 - 18736: -66,-82 + 18464: -65,-76 + 18469: -66,-82 - node: color: '#FFFFFFFF' id: Rock01 decals: - 4201: -54.219093,30.438473 - 6444: -5.2315726,73.496956 - 7253: 71,-48 - 8517: -6.733462,-21.585773 - 13059: -82.96953,-19.13152 - 13842: 21.553545,-2.078179 - 13867: 25.132044,2.0289345 - 14679: 49.920383,-55.06908 - 17419: -85.625206,1.0253956 - 20138: -15.318205,-76.17553 - 20434: -104,61 - 20466: -104,69 + 4004: -54.219093,30.438473 + 6195: -5.2315726,73.496956 + 6986: 71,-48 + 8250: -6.733462,-21.585773 + 12792: -82.96953,-19.13152 + 13575: 21.553545,-2.078179 + 13600: 25.132044,2.0289345 + 14412: 49.920383,-55.06908 + 17152: -85.625206,1.0253956 + 19871: -15.318205,-76.17553 + 19993: -104,61 + 20025: -104,69 - node: zIndex: 60 color: '#FFFFFFFF' id: Rock01 decals: - 15925: -69.97338,27.990063 + 15658: -69.97338,27.990063 - node: color: '#8B8CA4E2' id: Rock02 decals: - 19111: -58,-54 + 18844: -58,-54 - node: color: '#C7CFD0E9' id: Rock02 decals: - 18737: -68,-84 + 18470: -68,-84 - node: color: '#FFFFFFFF' id: Rock02 decals: - 4564: -93,67 - 6445: -10.668888,73.26258 - 6446: -10.153263,76.028206 - 6595: -101.34933,20.785624 - 13588: -17.036964,5.7750998 - 13868: 24.236212,2.0636568 + 4367: -93,67 + 6196: -10.668888,73.26258 + 6197: -10.153263,76.028206 + 6346: -101.34933,20.785624 + 13321: -17.036964,5.7750998 + 13601: 24.236212,2.0636568 - node: cleanable: True color: '#FFFFFFFF' id: Rock02 decals: - 18113: -61,74 + 17846: -61,74 - node: zIndex: 60 color: '#FFFFFFFF' id: Rock02 decals: - 15927: -84.01962,29.114332 + 15660: -84.01962,29.114332 - node: color: '#8B8CA4E2' id: Rock03 decals: - 19115: -68,-62 + 18848: -68,-62 - node: color: '#C7CFD0E9' id: Rock03 decals: - 18724: -58,-40 - 18730: -68,-70 - 18732: -68,-76 - 18735: -66,-81 + 18457: -58,-40 + 18463: -68,-70 + 18465: -68,-76 + 18468: -66,-81 - node: color: '#C7CFD0FF' id: Rock03 decals: - 18436: -75,-44 + 18169: -75,-44 - node: color: '#FFFFFFFF' id: Rock03 decals: - 17114: -43.9614,-85.45751 + 16847: -43.9614,-85.45751 - node: cleanable: True color: '#FFFFFFFF' id: Rock03 decals: - 18141: -59,76 + 17874: -59,76 - node: zIndex: 60 color: '#FFFFFFFF' id: Rock03 decals: - 15928: -84.47275,28.879957 - 15931: -85.020195,30.02361 + 15661: -84.47275,28.879957 + 15664: -85.020195,30.02361 - node: color: '#8B8CA4E2' id: Rock04 decals: - 19112: -64,-58 - 19116: -67,-61 + 18845: -64,-58 + 18849: -67,-61 - node: color: '#C7CFD0E9' id: Rock04 decals: - 18725: -63,-37 - 18728: -79,-63 - 18729: -69,-70 - 18733: -65,-74 - 18734: -68,-78 + 18458: -63,-37 + 18461: -79,-63 + 18462: -69,-70 + 18466: -65,-74 + 18467: -68,-78 - node: color: '#C7CFD0FF' id: Rock04 decals: - 18437: -76,-44 + 18170: -76,-44 - node: color: '#FFFFFFFF' id: Rock04 decals: - 1336: -45.94978,38.913715 - 7264: 74,-48 - 13055: -82.12578,-12.944018 - 13589: -16.17759,4.1032248 - 14681: 57.051895,-38.443962 - 17113: -35.94399,-88.01508 - 20467: -109,65 + 1289: -45.94978,38.913715 + 6997: 74,-48 + 12788: -82.12578,-12.944018 + 13322: -16.17759,4.1032248 + 14414: 57.051895,-38.443962 + 16846: -35.94399,-88.01508 + 20026: -109,65 - node: zIndex: 60 color: '#FFFFFFFF' id: Rock04 decals: - 15926: -69.41088,27.411938 - 15930: -84.004,32.84063 - 15933: -84.77964,23.413498 + 15659: -69.41088,27.411938 + 15663: -84.004,32.84063 + 15666: -84.77964,23.413498 - node: color: '#8B8CA4E2' id: Rock05 decals: - 19113: -63,-62 - 19114: -68,-65 + 18846: -63,-62 + 18847: -68,-65 - node: color: '#C7CFD0E9' id: Rock05 decals: - 18726: -68,-36 - 18727: -81,-56 + 18459: -68,-36 + 18460: -81,-56 - node: color: '#FFFFFFFF' id: Rock05 decals: - 7265: 73,-48 - 7266: 73,-45 - 8518: -4.608462,-23.117023 - 13054: -82.92265,-12.912768 - 13063: -82.11015,-19.10027 - 13618: 16.848003,-4.1361756 - 17422: -84.48458,-0.55272937 - 20137: -18.599455,-77.659904 + 6998: 73,-48 + 6999: 73,-45 + 8251: -4.608462,-23.117023 + 12787: -82.92265,-12.912768 + 12796: -82.11015,-19.10027 + 13351: 16.848003,-4.1361756 + 17155: -84.48458,-0.55272937 + 19870: -18.599455,-77.659904 - node: cleanable: True color: '#FFFFFFFF' id: Rock05 decals: - 18124: -61,76 + 17857: -61,76 - node: zIndex: 60 color: '#FFFFFFFF' id: Rock05 decals: - 15932: -85.09832,26.655596 + 15665: -85.09832,26.655596 - node: color: '#C7CFD0E9' id: Rock06 decals: - 18738: -65,-84 - 18739: -66,-78 + 18471: -65,-84 + 18472: -66,-78 - node: color: '#FFFFFFFF' id: Rock06 decals: - 1013: -20.678526,-10.0539 - 1337: -43.402905,38.851215 - 6447: -14.012638,74.23133 - 13843: 22.38167,-2.093804 + 966: -20.678526,-10.0539 + 1290: -43.402905,38.851215 + 6198: -14.012638,74.23133 + 13576: 22.38167,-2.093804 - node: zIndex: 60 color: '#FFFFFFFF' id: Rock06 decals: - 15929: -83.9415,28.754957 - 15935: -87.51095,22.654802 + 15662: -83.9415,28.754957 + 15668: -87.51095,22.654802 - node: color: '#00000041' id: Rust decals: - 20096: -50,-9 - 20097: -50,-9 - 20098: -50,-9 - 20099: -50,-9 - 20100: -50,-9 - 20101: -50,-9 - 20102: -50,-9 - 20103: -50,-9 - 20104: -50,-9 - 20105: -50,-9 - 20106: -50,-9 + 19829: -50,-9 + 19830: -50,-9 + 19831: -50,-9 + 19832: -50,-9 + 19833: -50,-9 + 19834: -50,-9 + 19835: -50,-9 + 19836: -50,-9 + 19837: -50,-9 + 19838: -50,-9 + 19839: -50,-9 - node: color: '#0000005D' id: Rust decals: - 20088: -51,-8 - 20089: -51,-8 - 20090: -51,-8 - 20091: -51,-8 - 20092: -51,-8 - 20093: -51,-8 + 19821: -51,-8 + 19822: -51,-8 + 19823: -51,-8 + 19824: -51,-8 + 19825: -51,-8 + 19826: -51,-8 - node: color: '#00000066' id: Rust decals: - 16597: -31,-84 - 16598: -30,-84 - 16599: -29,-84 - 16600: -31,-85 - 16601: -31,-86 - 16602: -31,-87 - 16603: -31,-88 - 16604: -31,-89 - 16605: -31,-90 - 16606: -31,-91 - 16607: -31,-85 - 16608: -31,-84 - 16609: -30,-84 - 16610: -29,-84 - 16611: -31,-85 - 16612: -31,-84 - 16613: -30,-84 - 16614: -29,-84 - 16615: -30,-85 - 16616: -29,-85 - 16617: -28,-85 - 16618: -27,-85 - 16619: -26,-85 - 16620: -26,-85 - 16621: -27,-85 - 16622: -28,-85 - 16623: -26,-86 - 16624: -26,-87 - 16625: -27,-87 - 16626: -27,-86 - 16627: -28,-86 - 16628: -28,-87 - 16629: -29,-86 - 16630: -29,-87 - 16631: -30,-87 - 16632: -30,-86 + 16330: -31,-84 + 16331: -30,-84 + 16332: -29,-84 + 16333: -31,-85 + 16334: -31,-86 + 16335: -31,-87 + 16336: -31,-88 + 16337: -31,-89 + 16338: -31,-90 + 16339: -31,-91 + 16340: -31,-85 + 16341: -31,-84 + 16342: -30,-84 + 16343: -29,-84 + 16344: -31,-85 + 16345: -31,-84 + 16346: -30,-84 + 16347: -29,-84 + 16348: -30,-85 + 16349: -29,-85 + 16350: -28,-85 + 16351: -27,-85 + 16352: -26,-85 + 16353: -26,-85 + 16354: -27,-85 + 16355: -28,-85 + 16356: -26,-86 + 16357: -26,-87 + 16358: -27,-87 + 16359: -27,-86 + 16360: -28,-86 + 16361: -28,-87 + 16362: -29,-86 + 16363: -29,-87 + 16364: -30,-87 + 16365: -30,-86 - node: color: '#00000088' id: Rust decals: - 16592: -30,-85 - 16593: -29,-85 - 16594: -28,-85 - 16595: -27,-85 - 16596: -26,-85 + 16325: -30,-85 + 16326: -29,-85 + 16327: -28,-85 + 16328: -27,-85 + 16329: -26,-85 - node: color: '#0000009E' id: Rust decals: - 16645: -30,-86 - 16646: -30,-87 - 16647: -29,-87 - 16648: -29,-86 - 16649: -28,-86 - 16650: -28,-87 - 16651: -27,-87 - 16652: -27,-86 - 16653: -26,-86 - 16654: -26,-87 + 16378: -30,-86 + 16379: -30,-87 + 16380: -29,-87 + 16381: -29,-86 + 16382: -28,-86 + 16383: -28,-87 + 16384: -27,-87 + 16385: -27,-86 + 16386: -26,-86 + 16387: -26,-87 - node: color: '#000000DF' id: Rust decals: - 16633: -30,-88 - 16634: -29,-88 - 16635: -28,-88 - 16636: -28,-89 - 16637: -29,-89 - 16638: -30,-89 - 16639: -30,-90 - 16640: -29,-90 - 16641: -28,-90 - 16642: -28,-91 - 16643: -29,-91 - 16644: -30,-91 + 16366: -30,-88 + 16367: -29,-88 + 16368: -28,-88 + 16369: -28,-89 + 16370: -29,-89 + 16371: -30,-89 + 16372: -30,-90 + 16373: -29,-90 + 16374: -28,-90 + 16375: -28,-91 + 16376: -29,-91 + 16377: -30,-91 - node: color: '#000000FF' id: Rust decals: - 4566: -97,53 - 4567: -97,53 - 4568: -97,54 - 4569: -97,54 - 4570: -97,55 - 4571: -97,55 - 4572: -96,55 - 4573: -96,55 - 4574: -96,54 - 4575: -96,54 - 4576: -96,53 - 4577: -96,53 - 4578: -95,53 - 4579: -95,53 - 4580: -95,54 - 4581: -95,54 - 4582: -95,55 - 4583: -95,55 - 4584: -94,55 - 4585: -94,55 - 4586: -94,54 - 4587: -94,54 - 4588: -94,53 - 4589: -94,53 - 4590: -92,56 - 4591: -92,56 - 4592: -91,56 - 4593: -91,56 - 4594: -90,56 - 4595: -90,56 - 4596: -89,56 - 4597: -89,56 - 4598: -89,57 - 4599: -89,57 - 4600: -88,57 - 4601: -88,57 - 4602: -88,58 - 4603: -88,58 - 4604: -88,59 - 4605: -88,59 - 4606: -88,60 - 4607: -88,60 - 4608: -87,60 - 4609: -87,60 - 4610: -86,60 - 4611: -86,60 - 4612: -85,60 - 4613: -85,60 - 4614: -84,60 - 4615: -84,60 - 4616: -84,59 - 4617: -84,59 - 4618: -84,58 - 4619: -84,58 - 4620: -84,57 - 4621: -84,57 - 4622: -83,57 - 4623: -83,57 - 4624: -83,56 - 4625: -83,56 - 4626: -82,56 - 4627: -82,56 - 4628: -81,56 - 4629: -81,56 - 4630: -80,56 - 4631: -80,56 - 4632: -80,55 - 4633: -80,55 - 4634: -80,54 - 4635: -80,54 - 4636: -80,53 - 4637: -80,53 - 4638: -80,52 - 4639: -80,52 - 4640: -81,52 - 4641: -81,52 - 4642: -82,52 - 4643: -82,52 - 4644: -83,52 - 4645: -83,52 - 4646: -83,51 - 4647: -83,51 - 4648: -84,51 - 4649: -84,51 - 4650: -84,50 - 4651: -84,50 - 4652: -84,49 - 4653: -84,49 - 4654: -84,48 - 4655: -84,48 - 4656: -85,48 - 4657: -85,48 - 4658: -86,48 - 4659: -86,48 - 4660: -87,48 - 4661: -87,48 - 4662: -88,48 - 4663: -88,48 - 4664: -88,49 - 4665: -88,49 - 4666: -88,50 - 4667: -88,50 - 4668: -88,51 - 4669: -88,51 - 4670: -89,51 - 4671: -89,51 - 4672: -89,52 - 4673: -89,52 - 4674: -90,52 - 4675: -90,52 - 4676: -91,52 - 4677: -91,52 - 4678: -92,52 - 4679: -92,52 - 4680: -92,53 - 4681: -92,53 - 4682: -92,54 - 4683: -92,54 - 4684: -92,55 - 4685: -92,55 - 4942: -94,3 - 4943: -95,5 - 4944: -94,5 - 4945: -94,5 - 4946: -95,5 - 4947: -95,4 - 4948: -95,4 - 4949: -95,4 - 4950: -95,3 - 4951: -94,3 - 4952: -94,3 - 4953: -94,3 - 4954: -97,3 - 4955: -98,2 - 4956: -99,1 - 4958: -99,1 - 4959: -98,2 - 4961: -97,3 - 4964: -96,3 - 4965: -95,3 - 4966: -94,4 - 4973: -100,1 - 4983: -99,2 - 4990: -96,3 - 4997: -94,4 - 5000: -94,4 - 5005: -95,3 - 5008: -96,3 - 5013: -97,3 - 5025: -95,3 - 5027: -94,3 - 5031: -94,4 - 5035: -96,3 - 5038: -95,4 - 5053: -97,3 - 5105: -96,4 - 5106: -96,4 - 5129: -96,5 - 5153: -98,3 - 5154: -97,4 - 5161: -96,4 - 5162: -94,4 - 5163: -95,3 - 5164: -94,3 - 6656: 3,75 - 7807: 22,11 - 7808: 22,11 - 7809: 23,11 - 7810: 23,11 - 7811: 24,11 - 7812: 24,11 - 7813: 25,11 - 7814: 25,11 - 7815: 25,9 - 7816: 25,9 - 7817: 24,9 - 7818: 24,9 - 7819: 23,9 - 7820: 23,9 - 7821: 22,9 - 7822: 22,9 - 7823: 22,7 - 7824: 22,7 - 7825: 23,7 - 7826: 23,7 - 7827: 24,7 - 7828: 24,7 - 7829: 25,7 - 7830: 25,7 - 8604: -21,-70 - 8605: -19,-72 - 8606: -21,-74 - 8607: -23,-72 - 8608: -22,-72 - 8609: -21,-73 - 8610: -20,-72 - 8611: -21,-71 - 9341: 85,-23 - 9342: 85,-24 - 9343: 86,-24 - 9345: 86,-23 - 9346: 87,-23 - 9347: 87,-24 - 9352: 84,-22 - 9353: 84,-23 - 9355: 84,-24 - 9356: 84,-22 - 9357: 84,-23 - 9358: 84,-24 - 9359: 84,-25 - 9360: 84,-25 - 9361: 85,-25 - 9362: 85,-25 - 9363: 86,-25 - 9364: 86,-25 - 9366: 87,-25 - 9367: 87,-25 - 9368: 88,-25 - 9369: 88,-25 - 9375: 87,-26 - 9376: 87,-27 - 9380: 86,-26 - 9381: 86,-27 - 9383: 85,-26 - 9385: 85,-27 - 9387: 85,-28 - 9390: 82,-28 - 9391: 82,-27 - 9392: 82,-26 - 9394: 83,-28 - 9395: 83,-27 - 9397: 84,-28 - 9398: 84,-27 - 9404: 82,-25 - 9405: 82,-24 - 9407: 82,-23 - 9408: 82,-22 - 9409: 82,-21 - 9411: 82,-20 - 9414: 82,-19 - 9415: 83,-19 - 9416: 84,-19 - 9417: 85,-19 - 9418: 86,-19 - 9419: 86,-20 - 9420: 85,-20 - 9421: 84,-20 - 9422: 83,-20 - 9423: 86,-19 - 9424: 85,-19 - 9425: 84,-19 - 9427: 83,-19 - 9428: 82,-19 - 9429: 86,-21 - 9430: 85,-21 - 9431: 86,-20 - 16570: -30,-86 - 16571: -29,-86 - 16572: -28,-86 - 16573: -27,-86 - 16574: -26,-86 - 16575: -26,-87 - 16576: -27,-87 - 16577: -28,-87 - 16578: -29,-87 - 16579: -30,-87 - 16580: -30,-88 - 16581: -29,-88 - 16582: -28,-88 - 16583: -28,-89 - 16584: -29,-89 - 16585: -30,-89 - 16586: -30,-90 - 16587: -29,-90 - 16588: -28,-90 - 16589: -28,-91 - 16590: -29,-91 - 16591: -30,-91 - 20271: 11,-85 - 20272: 10,-85 - 20273: 9,-85 - 20274: 9,-84 - 20275: 10,-84 - 20276: 11,-84 - 20277: 11,-83 - 20278: 10,-83 - 20279: 9,-83 + 4369: -97,53 + 4370: -97,53 + 4371: -97,54 + 4372: -97,54 + 4373: -97,55 + 4374: -97,55 + 4375: -96,55 + 4376: -96,55 + 4377: -96,54 + 4378: -96,54 + 4379: -96,53 + 4380: -96,53 + 4381: -95,53 + 4382: -95,53 + 4383: -95,54 + 4384: -95,54 + 4385: -95,55 + 4386: -95,55 + 4387: -94,55 + 4388: -94,55 + 4389: -94,54 + 4390: -94,54 + 4391: -94,53 + 4392: -94,53 + 4393: -92,56 + 4394: -92,56 + 4395: -91,56 + 4396: -91,56 + 4397: -90,56 + 4398: -90,56 + 4399: -89,56 + 4400: -89,56 + 4401: -89,57 + 4402: -89,57 + 4403: -88,57 + 4404: -88,57 + 4405: -88,58 + 4406: -88,58 + 4407: -88,59 + 4408: -88,59 + 4409: -88,60 + 4410: -88,60 + 4411: -87,60 + 4412: -87,60 + 4413: -86,60 + 4414: -86,60 + 4415: -85,60 + 4416: -85,60 + 4417: -84,60 + 4418: -84,60 + 4419: -84,59 + 4420: -84,59 + 4421: -84,58 + 4422: -84,58 + 4423: -84,57 + 4424: -84,57 + 4425: -83,57 + 4426: -83,57 + 4427: -83,56 + 4428: -83,56 + 4429: -82,56 + 4430: -82,56 + 4431: -81,56 + 4432: -81,56 + 4433: -80,56 + 4434: -80,56 + 4435: -80,55 + 4436: -80,55 + 4437: -80,54 + 4438: -80,54 + 4439: -80,53 + 4440: -80,53 + 4441: -80,52 + 4442: -80,52 + 4443: -81,52 + 4444: -81,52 + 4445: -82,52 + 4446: -82,52 + 4447: -83,52 + 4448: -83,52 + 4449: -83,51 + 4450: -83,51 + 4451: -84,51 + 4452: -84,51 + 4453: -84,50 + 4454: -84,50 + 4455: -84,49 + 4456: -84,49 + 4457: -84,48 + 4458: -84,48 + 4459: -85,48 + 4460: -85,48 + 4461: -86,48 + 4462: -86,48 + 4463: -87,48 + 4464: -87,48 + 4465: -88,48 + 4466: -88,48 + 4467: -88,49 + 4468: -88,49 + 4469: -88,50 + 4470: -88,50 + 4471: -88,51 + 4472: -88,51 + 4473: -89,51 + 4474: -89,51 + 4475: -89,52 + 4476: -89,52 + 4477: -90,52 + 4478: -90,52 + 4479: -91,52 + 4480: -91,52 + 4481: -92,52 + 4482: -92,52 + 4483: -92,53 + 4484: -92,53 + 4485: -92,54 + 4486: -92,54 + 4487: -92,55 + 4488: -92,55 + 4745: -94,3 + 4746: -95,5 + 4747: -94,5 + 4748: -94,5 + 4749: -95,5 + 4750: -95,4 + 4751: -95,4 + 4752: -95,4 + 4753: -95,3 + 4754: -94,3 + 4755: -94,3 + 4756: -94,3 + 4757: -97,3 + 4758: -98,2 + 4759: -99,1 + 4761: -99,1 + 4762: -98,2 + 4764: -97,3 + 4767: -96,3 + 4768: -95,3 + 4769: -94,4 + 4776: -100,1 + 4786: -99,2 + 4793: -96,3 + 4800: -94,4 + 4803: -94,4 + 4808: -95,3 + 4811: -96,3 + 4816: -97,3 + 4828: -95,3 + 4830: -94,3 + 4834: -94,4 + 4838: -96,3 + 4841: -95,4 + 4856: -97,3 + 4908: -96,4 + 4909: -96,4 + 4932: -96,5 + 4956: -98,3 + 4957: -97,4 + 4964: -96,4 + 4965: -94,4 + 4966: -95,3 + 4967: -94,3 + 6407: 3,75 + 7540: 22,11 + 7541: 22,11 + 7542: 23,11 + 7543: 23,11 + 7544: 24,11 + 7545: 24,11 + 7546: 25,11 + 7547: 25,11 + 7548: 25,9 + 7549: 25,9 + 7550: 24,9 + 7551: 24,9 + 7552: 23,9 + 7553: 23,9 + 7554: 22,9 + 7555: 22,9 + 7556: 22,7 + 7557: 22,7 + 7558: 23,7 + 7559: 23,7 + 7560: 24,7 + 7561: 24,7 + 7562: 25,7 + 7563: 25,7 + 8337: -21,-70 + 8338: -19,-72 + 8339: -21,-74 + 8340: -23,-72 + 8341: -22,-72 + 8342: -21,-73 + 8343: -20,-72 + 8344: -21,-71 + 9074: 85,-23 + 9075: 85,-24 + 9076: 86,-24 + 9078: 86,-23 + 9079: 87,-23 + 9080: 87,-24 + 9085: 84,-22 + 9086: 84,-23 + 9088: 84,-24 + 9089: 84,-22 + 9090: 84,-23 + 9091: 84,-24 + 9092: 84,-25 + 9093: 84,-25 + 9094: 85,-25 + 9095: 85,-25 + 9096: 86,-25 + 9097: 86,-25 + 9099: 87,-25 + 9100: 87,-25 + 9101: 88,-25 + 9102: 88,-25 + 9108: 87,-26 + 9109: 87,-27 + 9113: 86,-26 + 9114: 86,-27 + 9116: 85,-26 + 9118: 85,-27 + 9120: 85,-28 + 9123: 82,-28 + 9124: 82,-27 + 9125: 82,-26 + 9127: 83,-28 + 9128: 83,-27 + 9130: 84,-28 + 9131: 84,-27 + 9137: 82,-25 + 9138: 82,-24 + 9140: 82,-23 + 9141: 82,-22 + 9142: 82,-21 + 9144: 82,-20 + 9147: 82,-19 + 9148: 83,-19 + 9149: 84,-19 + 9150: 85,-19 + 9151: 86,-19 + 9152: 86,-20 + 9153: 85,-20 + 9154: 84,-20 + 9155: 83,-20 + 9156: 86,-19 + 9157: 85,-19 + 9158: 84,-19 + 9160: 83,-19 + 9161: 82,-19 + 9162: 86,-21 + 9163: 85,-21 + 9164: 86,-20 + 16303: -30,-86 + 16304: -29,-86 + 16305: -28,-86 + 16306: -27,-86 + 16307: -26,-86 + 16308: -26,-87 + 16309: -27,-87 + 16310: -28,-87 + 16311: -29,-87 + 16312: -30,-87 + 16313: -30,-88 + 16314: -29,-88 + 16315: -28,-88 + 16316: -28,-89 + 16317: -29,-89 + 16318: -30,-89 + 16319: -30,-90 + 16320: -29,-90 + 16321: -28,-90 + 16322: -28,-91 + 16323: -29,-91 + 16324: -30,-91 + 19909: 11,-85 + 19910: 10,-85 + 19911: 9,-85 + 19912: 9,-84 + 19913: 10,-84 + 19914: 11,-84 + 19915: 11,-83 + 19916: 10,-83 + 19917: 9,-83 - node: color: '#1F591BFF' id: Rust decals: - 8220: 36,44 + 7953: 36,44 - node: color: '#1F791BFF' id: Rust decals: - 8221: 33,43 - 8222: 41,46 - 8223: 43,44 + 7954: 33,43 + 7955: 41,46 + 7956: 43,44 - node: color: '#1FB51BFF' id: Rust decals: - 8224: 43,45 + 7957: 43,45 - node: color: '#1FD81BFF' id: Rust decals: - 8225: 41,43 + 7958: 41,43 - node: color: '#7FFF60FF' id: Rust decals: - 8208: 42,43 - 8209: 41,44 - 8210: 41,45 - 8211: 43,46 - 8212: 40,47 - 8213: 39,45 - 8214: 39,47 - 8215: 43,43 - 8216: 45,47 - 8217: 42,47 - 8218: 45,43 - 8219: 43,42 + 7941: 42,43 + 7942: 41,44 + 7943: 41,45 + 7944: 43,46 + 7945: 40,47 + 7946: 39,45 + 7947: 39,47 + 7948: 43,43 + 7949: 45,47 + 7950: 42,47 + 7951: 45,43 + 7952: 43,42 - node: color: '#C7CFD0E9' id: Rust decals: - 18740: -66,-79 - 18741: -68,-81 - 18742: -65,-83 + 18473: -66,-79 + 18474: -68,-81 + 18475: -65,-83 - node: color: '#FB0FE3FF' id: Rust decals: - 8226: 46,48 + 7959: 46,48 - node: color: '#FFFFFF34' id: Rust decals: - 17351: -59,79 - 17352: -58,79 - 17353: -58,79 - 17354: -60,79 - 17356: -64,80 + 17084: -59,79 + 17085: -58,79 + 17086: -58,79 + 17087: -60,79 + 17089: -64,80 - node: color: '#FFFFFF66' id: Rust decals: - 17350: -60,79 + 17083: -60,79 - node: color: '#FFFFFFFF' id: Rust decals: - 4957: -7,82 - 4960: -7,82 - 4962: -7,82 - 4963: -7,82 - 4967: -8,82 - 4968: -8,82 - 4969: -8,82 - 4970: -8,82 - 4971: -9,82 - 4972: -9,82 - 4974: -9,82 - 4975: -9,82 - 4976: -9,82 - 4977: -9,82 - 4978: -6,82 - 4979: -6,82 - 4980: -6,82 - 4981: -6,82 - 4982: -6,82 - 4984: -5,82 - 4985: -5,82 - 4986: -5,82 - 4987: -5,82 - 4988: -9,83 - 4989: -9,83 - 4991: -9,83 - 4992: -8,83 - 4993: -8,83 - 4994: -8,83 - 4995: -7,83 - 4996: -7,83 - 4998: -10,83 - 4999: -10,83 - 5001: -10,82 - 5002: -10,82 - 5003: -11,82 - 5004: -11,82 - 5006: -11,83 - 5007: -11,83 - 5009: -12,83 - 5010: -12,83 - 5011: -12,84 - 5012: -12,84 - 5014: -12,83 - 5015: -12,83 - 5016: -11,83 - 5017: -11,83 - 5018: -11,83 - 5019: -11,82 - 5020: -11,82 - 5021: -10,82 - 5022: -10,82 + 4760: -7,82 + 4763: -7,82 + 4765: -7,82 + 4766: -7,82 + 4770: -8,82 + 4771: -8,82 + 4772: -8,82 + 4773: -8,82 + 4774: -9,82 + 4775: -9,82 + 4777: -9,82 + 4778: -9,82 + 4779: -9,82 + 4780: -9,82 + 4781: -6,82 + 4782: -6,82 + 4783: -6,82 + 4784: -6,82 + 4785: -6,82 + 4787: -5,82 + 4788: -5,82 + 4789: -5,82 + 4790: -5,82 + 4791: -9,83 + 4792: -9,83 + 4794: -9,83 + 4795: -8,83 + 4796: -8,83 + 4797: -8,83 + 4798: -7,83 + 4799: -7,83 + 4801: -10,83 + 4802: -10,83 + 4804: -10,82 + 4805: -10,82 + 4806: -11,82 + 4807: -11,82 + 4809: -11,83 + 4810: -11,83 + 4812: -12,83 + 4813: -12,83 + 4814: -12,84 + 4815: -12,84 + 4817: -12,83 + 4818: -12,83 + 4819: -11,83 + 4820: -11,83 + 4821: -11,83 + 4822: -11,82 + 4823: -11,82 + 4824: -10,82 + 4825: -10,82 + 4826: -10,83 + 4827: -10,83 + 4829: -12,84 + 4831: -12,83 + 4832: -12,83 + 4833: -12,83 + 4835: -12,84 + 4836: -11,84 + 4837: -11,84 + 4839: -11,84 + 4840: -11,84 + 4842: -11,85 + 4843: -11,85 + 4844: -10,85 + 4845: -10,84 + 4846: -10,84 + 4847: -10,84 + 4848: -10,85 + 4849: -10,85 + 4850: -10,84 + 4851: -9,84 + 4852: -9,84 + 4853: -9,84 + 4854: -8,84 + 4855: -8,84 + 4857: -7,84 + 4858: -7,84 + 4859: -7,84 + 4860: -7,84 + 4861: -6,83 + 4862: -6,83 + 4863: -6,83 + 4864: -6,83 + 4865: -6,84 + 4866: -6,84 + 4867: -5,84 + 4868: -5,84 + 4869: -4,84 + 4870: -4,84 + 4871: -4,85 + 4872: -4,85 + 4873: -5,83 + 4874: -5,83 + 4875: -5,83 + 4876: -4,83 + 4877: -4,83 + 4878: -4,83 + 4879: -4,82 + 4880: -4,82 + 4881: -3,82 + 4882: -3,82 + 4883: -3,82 + 4884: -3,82 + 4885: -3,82 + 4886: -3,83 + 4887: -3,83 + 4888: -3,83 + 4889: -3,83 + 4890: -2,83 + 4891: -2,83 + 4892: -2,83 + 4893: -2,84 + 4894: -2,84 + 4895: -2,84 + 4896: -3,84 + 4897: -3,84 + 4898: -3,84 + 4899: -3,84 + 4900: -3,85 + 4901: -3,85 + 4902: -3,85 + 4903: -3,85 + 4904: -3,86 + 4905: -3,86 + 4906: -3,86 + 4907: -3,86 + 4910: -11,86 + 4911: -11,86 + 4912: -11,86 + 4913: -11,86 + 4914: -11,86 + 4915: -11,86 + 4916: -12,85 + 4917: -12,85 + 4918: -12,85 + 4919: -12,85 + 4920: -12,85 + 4921: -12,85 + 4922: -9,84 + 4923: -9,84 + 4924: -9,83 + 4925: -9,83 + 4926: -8,83 + 4927: -8,83 + 4928: -6,84 + 4929: -6,83 + 4930: -6,84 + 4931: -5,84 + 4933: -13,84 + 4934: -13,84 + 4935: -13,84 + 4936: -13,84 + 4937: -13,85 + 4938: -13,85 + 4939: -13,85 + 4940: -13,85 + 4941: -13,85 + 4942: -13,85 + 4943: -12,86 + 4944: -12,86 + 4945: -12,86 + 4946: -12,86 + 4947: -12,87 + 4948: -12,87 + 4949: -12,87 + 4950: -12,87 + 4951: -13,86 + 4952: -13,86 + 4953: -13,86 + 4954: -13,86 + 4955: -13,86 + 4958: -1,84 + 4959: -1,84 + 4960: -1,84 + 4961: -1,84 + 4962: -1,84 + 4963: -1,84 + 4968: -1,85 + 4969: -1,85 + 4970: -1,86 + 4971: -1,85 + 4972: -1,86 + 4973: -1,85 + 4974: -1,86 + 4975: -1,85 + 4976: -1,86 + 4977: -1,85 + 4978: -1,86 + 4979: -1,86 + 4980: -1,85 + 4981: -1,86 + 4982: -1,85 + 4983: -1,86 + 4984: -1,85 + 4985: -1,85 + 4986: -1,85 + 4987: -1,85 + 4988: -1,85 + 4989: -1,86 + 4990: -1,86 + 4991: -1,86 + 4992: -1,86 + 4993: -1,86 + 4994: -5,83 + 4995: -5,83 + 4996: -5,83 + 4997: -7,83 + 4998: -9,83 + 4999: -11,83 + 5000: -11,83 + 5001: -12,83 + 5002: -12,83 + 5003: -12,83 + 5004: -12,83 + 5005: -12,83 + 5006: -13,84 + 5007: -13,84 + 5008: -13,84 + 5009: -13,84 + 5010: -12,85 + 5011: -12,85 + 5012: -12,85 + 5013: -12,85 + 5014: -12,85 + 5015: -12,85 + 5016: -12,85 + 5017: -12,85 + 5018: -12,85 + 5019: -12,85 + 5020: -11,84 + 5021: -11,84 + 5022: -11,84 5023: -10,83 5024: -10,83 - 5026: -12,84 - 5028: -12,83 - 5029: -12,83 - 5030: -12,83 - 5032: -12,84 - 5033: -11,84 - 5034: -11,84 - 5036: -11,84 - 5037: -11,84 - 5039: -11,85 - 5040: -11,85 - 5041: -10,85 - 5042: -10,84 - 5043: -10,84 - 5044: -10,84 - 5045: -10,85 - 5046: -10,85 - 5047: -10,84 - 5048: -9,84 - 5049: -9,84 - 5050: -9,84 - 5051: -8,84 - 5052: -8,84 - 5054: -7,84 - 5055: -7,84 - 5056: -7,84 - 5057: -7,84 - 5058: -6,83 - 5059: -6,83 - 5060: -6,83 - 5061: -6,83 - 5062: -6,84 - 5063: -6,84 - 5064: -5,84 - 5065: -5,84 - 5066: -4,84 - 5067: -4,84 - 5068: -4,85 - 5069: -4,85 - 5070: -5,83 - 5071: -5,83 - 5072: -5,83 - 5073: -4,83 - 5074: -4,83 - 5075: -4,83 - 5076: -4,82 - 5077: -4,82 - 5078: -3,82 - 5079: -3,82 - 5080: -3,82 - 5081: -3,82 - 5082: -3,82 - 5083: -3,83 - 5084: -3,83 - 5085: -3,83 - 5086: -3,83 - 5087: -2,83 - 5088: -2,83 - 5089: -2,83 - 5090: -2,84 - 5091: -2,84 - 5092: -2,84 - 5093: -3,84 - 5094: -3,84 - 5095: -3,84 - 5096: -3,84 - 5097: -3,85 - 5098: -3,85 - 5099: -3,85 - 5100: -3,85 - 5101: -3,86 - 5102: -3,86 - 5103: -3,86 - 5104: -3,86 - 5107: -11,86 - 5108: -11,86 - 5109: -11,86 - 5110: -11,86 - 5111: -11,86 - 5112: -11,86 - 5113: -12,85 - 5114: -12,85 - 5115: -12,85 - 5116: -12,85 - 5117: -12,85 - 5118: -12,85 - 5119: -9,84 - 5120: -9,84 - 5121: -9,83 - 5122: -9,83 - 5123: -8,83 - 5124: -8,83 - 5125: -6,84 - 5126: -6,83 - 5127: -6,84 - 5128: -5,84 - 5130: -13,84 - 5131: -13,84 - 5132: -13,84 - 5133: -13,84 - 5134: -13,85 - 5135: -13,85 - 5136: -13,85 - 5137: -13,85 - 5138: -13,85 - 5139: -13,85 - 5140: -12,86 - 5141: -12,86 - 5142: -12,86 - 5143: -12,86 - 5144: -12,87 - 5145: -12,87 - 5146: -12,87 - 5147: -12,87 - 5148: -13,86 - 5149: -13,86 - 5150: -13,86 - 5151: -13,86 - 5152: -13,86 - 5155: -1,84 - 5156: -1,84 - 5157: -1,84 - 5158: -1,84 - 5159: -1,84 - 5160: -1,84 - 5165: -1,85 - 5166: -1,85 - 5167: -1,86 - 5168: -1,85 - 5169: -1,86 - 5170: -1,85 - 5171: -1,86 - 5172: -1,85 - 5173: -1,86 - 5174: -1,85 - 5175: -1,86 - 5176: -1,86 - 5177: -1,85 - 5178: -1,86 - 5179: -1,85 - 5180: -1,86 - 5181: -1,85 - 5182: -1,85 - 5183: -1,85 - 5184: -1,85 - 5185: -1,85 - 5186: -1,86 - 5187: -1,86 - 5188: -1,86 - 5189: -1,86 - 5190: -1,86 - 5191: -5,83 - 5192: -5,83 - 5193: -5,83 - 5194: -7,83 - 5195: -9,83 - 5196: -11,83 - 5197: -11,83 - 5198: -12,83 - 5199: -12,83 - 5200: -12,83 - 5201: -12,83 - 5202: -12,83 - 5203: -13,84 - 5204: -13,84 - 5205: -13,84 - 5206: -13,84 - 5207: -12,85 - 5208: -12,85 - 5209: -12,85 - 5210: -12,85 - 5211: -12,85 - 5212: -12,85 - 5213: -12,85 - 5214: -12,85 - 5215: -12,85 - 5216: -12,85 - 5217: -11,84 - 5218: -11,84 - 5219: -11,84 - 5220: -10,83 - 5221: -10,83 - 5222: -10,83 - 5223: -10,83 - 5224: -10,83 - 5225: -10,83 - 5226: -9,83 - 5227: -9,83 - 5228: -9,83 - 5229: -8,83 - 5230: -8,83 - 5231: -7,83 - 5232: -7,83 - 5233: -6,83 - 5234: -6,83 - 5235: -5,83 - 5236: -5,83 - 5237: -4,83 - 5238: -4,83 - 5239: -3,84 - 5240: -3,84 - 5241: -2,87 - 5242: -2,87 - 5243: -2,87 - 5244: -2,87 - 5245: -2,87 - 6492: -2.037553,84.91535 - 6494: -2,85 - 6495: -2,85 - 6496: -2,85 - 6497: -2,85 - 6498: -2,85 - 6499: -2,85 - 6500: -2,85 - 6501: -2,85 - 6502: -2,85 - 6503: -2,85 - 6504: -2,85 - 6505: -2,85 - 6506: -2,85 - 6507: -2,85 - 6508: -2,85 - 6509: -2,85 - 6510: -2,85 - 6511: -2,85 - 6512: -2,85 - 6513: -2,85 - 6514: -2,85 - 6515: -2,85 - 6516: -2,85 - 6517: -2,85 - 6518: -2,85 - 6519: -2,85 - 6520: -2,85 - 6521: -2,85 - 6522: -2,85 - 6523: -2,85 - 6524: -2,85 - 6525: -2,85 - 6526: -2,85 - 6527: -2,85 - 6528: -2,85 - 6529: -2,85 - 6530: -2,85 - 6531: -2,85 - 6532: -2,85 - 6533: -2,86 - 6534: -2,86 - 6535: -2,86 - 6536: -2,86 - 6537: -2,86 - 6538: -2,86 - 6539: -2,86 - 6540: -2,86 - 6541: -2,86 - 6542: -2,86 - 6543: -2,86 - 6544: -2,86 - 6545: -2,86 - 6546: -2,86 - 6547: -2,86 - 6548: -2,86 - 6549: -2,86 - 6550: -2,86 - 6551: -2,86 - 6552: -2,86 - 6553: -2,86 - 6554: -2,86 - 6555: -2,86 - 6556: -2,86 - 6557: -2,86 - 6558: -2,86 - 6559: -2,86 - 6560: -2,86 - 6561: -2,86 - 6562: -2,86 - 6563: -2,86 - 12778: -47,-73 + 5025: -10,83 + 5026: -10,83 + 5027: -10,83 + 5028: -10,83 + 5029: -9,83 + 5030: -9,83 + 5031: -9,83 + 5032: -8,83 + 5033: -8,83 + 5034: -7,83 + 5035: -7,83 + 5036: -6,83 + 5037: -6,83 + 5038: -5,83 + 5039: -5,83 + 5040: -4,83 + 5041: -4,83 + 5042: -3,84 + 5043: -3,84 + 5044: -2,87 + 5045: -2,87 + 5046: -2,87 + 5047: -2,87 + 5048: -2,87 + 6243: -2.037553,84.91535 + 6245: -2,85 + 6246: -2,85 + 6247: -2,85 + 6248: -2,85 + 6249: -2,85 + 6250: -2,85 + 6251: -2,85 + 6252: -2,85 + 6253: -2,85 + 6254: -2,85 + 6255: -2,85 + 6256: -2,85 + 6257: -2,85 + 6258: -2,85 + 6259: -2,85 + 6260: -2,85 + 6261: -2,85 + 6262: -2,85 + 6263: -2,85 + 6264: -2,85 + 6265: -2,85 + 6266: -2,85 + 6267: -2,85 + 6268: -2,85 + 6269: -2,85 + 6270: -2,85 + 6271: -2,85 + 6272: -2,85 + 6273: -2,85 + 6274: -2,85 + 6275: -2,85 + 6276: -2,85 + 6277: -2,85 + 6278: -2,85 + 6279: -2,85 + 6280: -2,85 + 6281: -2,85 + 6282: -2,85 + 6283: -2,85 + 6284: -2,86 + 6285: -2,86 + 6286: -2,86 + 6287: -2,86 + 6288: -2,86 + 6289: -2,86 + 6290: -2,86 + 6291: -2,86 + 6292: -2,86 + 6293: -2,86 + 6294: -2,86 + 6295: -2,86 + 6296: -2,86 + 6297: -2,86 + 6298: -2,86 + 6299: -2,86 + 6300: -2,86 + 6301: -2,86 + 6302: -2,86 + 6303: -2,86 + 6304: -2,86 + 6305: -2,86 + 6306: -2,86 + 6307: -2,86 + 6308: -2,86 + 6309: -2,86 + 6310: -2,86 + 6311: -2,86 + 6312: -2,86 + 6313: -2,86 + 6314: -2,86 + 12511: -47,-73 - node: cleanable: True color: '#FFFFFFFF' id: Rust decals: - 6493: -2,85 - 18134: -60,77 - 18135: -59,77 - 18136: -58,76 - 18140: -59,76 - 18153: -67,70 - 18154: -64,69 + 6244: -2,85 + 17867: -60,77 + 17868: -59,77 + 17869: -58,76 + 17873: -59,76 + 17886: -67,70 + 17887: -64,69 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Rust decals: - 18155: -64,69 + 17888: -64,69 - node: color: '#FFFFFFFF' id: StandClear decals: - 2558: 80,-41 - 2559: 80,-36 - 4358: -50,7 - 6086: 10,-40 - 6101: 16,-41 - 7075: 37,-51 - 7076: 37,-44 - 7949: 83,42 - 8813: -62,-77 - 8814: -62,-73 - 8817: -58,-73 - 8818: -58,-77 + 2511: 80,-41 + 2512: 80,-36 + 4161: -50,7 + 5889: 10,-40 + 5904: 16,-41 + 6808: 37,-51 + 6809: 37,-44 + 7682: 83,42 + 8546: -62,-77 + 8547: -62,-73 + 8550: -58,-73 + 8551: -58,-77 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 1335: -52,41 - 7950: 84,43 + 1288: -52,41 + 7683: 84,43 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 1215: -54,45 - 6102: 14,-48 - 7951: 83,44 + 1168: -54,45 + 5905: 14,-48 + 7684: 83,44 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 7952: 82,43 + 7685: 82,43 - node: color: '#9FED58FF' id: ThreeQuarterTileOverlayGreyscale decals: - 15679: 43,-3 + 15412: 43,-3 - node: color: '#9FED58FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 15678: 46,-5 + 15411: 46,-5 - node: color: '#CA8C1898' id: ThreeQuarterTileOverlayGreyscale180 decals: - 18255: 49,0 - 18263: 49,-2 + 17988: 49,0 + 17996: 49,-2 - node: color: '#D381C9CC' id: ThreeQuarterTileOverlayGreyscale180 @@ -22769,7 +22769,7 @@ entities: color: '#9FED58FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 15681: 43,-5 + 15414: 43,-5 - node: color: '#D381C9CC' id: ThreeQuarterTileOverlayGreyscale270 @@ -22779,43 +22779,43 @@ entities: color: '#9FED58FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 15677: 46,-3 + 15410: 46,-3 - node: color: '#CA8C1898' id: ThreeQuarterTileOverlayGreyscale90 decals: - 18252: 50,2 + 17985: 50,2 - node: color: '#FFFFFFFF' id: WarnBox decals: - 1220: -20,9 - 6299: 12,-45 + 1173: -20,9 + 6055: 12,-45 - node: color: '#FFFFFFFF' id: WarnBoxGreyscale decals: - 13012: -79.015495,-34.189613 + 12745: -79.015495,-34.189613 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 1778: -48,-18 + 1731: -48,-18 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 1779: -48,-15 + 1732: -48,-15 - node: color: '#0000003F' id: WarnCornerNE decals: - 18247: 10,-45 + 17980: 10,-45 - node: color: '#D9DFE950' id: WarnCornerNE decals: - 4875: -18,58 + 4678: -18,58 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -22823,24 +22823,24 @@ entities: 237: 29,34 405: 56,-18 437: 57,-34 - 1219: -58,41 - 2379: 68,-36 - 2435: 83,-35 - 2436: 83,-40 - 2859: 56,-55 - 2867: 66,-55 - 6081: 11,-39 - 6088: 15,-48 - 6098: 17,-39 - 7226: 41,-59 - 7945: 84,44 - 21327: 11,-54 - 21328: 11,-61 + 1172: -58,41 + 2332: 68,-36 + 2388: 83,-35 + 2389: 83,-40 + 2812: 56,-55 + 2820: 66,-55 + 5884: 11,-39 + 5891: 15,-48 + 5901: 17,-39 + 6959: 41,-59 + 7678: 84,44 + 20559: 11,-54 + 20560: 11,-61 - node: color: '#0000003F' id: WarnCornerNW decals: - 18248: 9,-45 + 17981: 9,-45 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -22848,18 +22848,18 @@ entities: 236: 25,34 403: 54,-18 436: 55,-34 - 2380: 66,-36 - 2433: 81,-35 - 2434: 81,-40 - 2854: 54,-55 - 2866: 64,-55 - 6080: 9,-39 - 6087: 13,-48 - 6097: 15,-39 - 7224: 39,-59 - 7944: 82,44 - 21325: 9,-61 - 21326: 9,-54 + 2333: 66,-36 + 2386: 81,-35 + 2387: 81,-40 + 2807: 54,-55 + 2819: 64,-55 + 5883: 9,-39 + 5890: 13,-48 + 5900: 15,-39 + 6957: 39,-59 + 7677: 82,44 + 20557: 9,-61 + 20558: 9,-54 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -22867,24 +22867,24 @@ entities: 235: 29,31 402: 56,-19 435: 57,-36 - 1216: -58,43 - 2381: 68,-38 - 2438: 83,-42 - 2439: 83,-37 - 2858: 56,-56 - 2868: 66,-56 - 6082: 11,-40 - 6090: 15,-49 - 6099: 17,-41 - 7223: 41,-61 - 7946: 84,42 - 21329: 11,-62 - 21330: 11,-55 + 1169: -58,43 + 2334: 68,-38 + 2391: 83,-42 + 2392: 83,-37 + 2811: 56,-56 + 2821: 66,-56 + 5885: 11,-40 + 5893: 15,-49 + 5902: 17,-41 + 6956: 41,-61 + 7679: 84,42 + 20561: 11,-62 + 20562: 11,-55 - node: color: '#0000003F' id: WarnCornerSW decals: - 18249: 9,-46 + 17982: 9,-46 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -22892,338 +22892,338 @@ entities: 238: 25,31 404: 54,-19 438: 55,-36 - 2382: 66,-38 - 2440: 81,-42 - 2441: 81,-37 - 2860: 54,-56 - 2865: 64,-56 - 6083: 9,-40 - 6089: 13,-49 - 6100: 15,-41 - 7222: 39,-61 - 7947: 82,42 - 21323: 9,-62 - 21324: 9,-55 + 2335: 66,-38 + 2393: 81,-42 + 2394: 81,-37 + 2813: 54,-56 + 2818: 64,-56 + 5886: 9,-40 + 5892: 13,-49 + 5903: 15,-41 + 6955: 39,-61 + 7680: 82,42 + 20555: 9,-62 + 20556: 9,-55 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNE decals: - 1775: -49,-18 - 12660: 81.86848,-50.318233 + 1728: -49,-18 + 12393: 81.86848,-50.318233 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 1772: -49,-15 + 1725: -49,-15 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 7880: 28,47 - 8204: 39,43 - 8205: 43,43 - 10523: -28,2 - 12645: -10,-21 - 12761: -61,-30 + 7613: 28,47 + 7937: 39,43 + 7938: 43,43 + 10256: -28,2 + 12378: -10,-21 + 12494: -61,-30 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 8206: 41,43 - 8207: 45,43 - 10522: -24,2 - 12643: -10,-21 + 7939: 41,43 + 7940: 45,43 + 10255: -24,2 + 12376: -10,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 8201: 43,47 - 8202: 39,47 - 12637: -10,-22 - 12738: -61,-31 - 15585: -28,4 + 7934: 43,47 + 7935: 39,47 + 12370: -10,-22 + 12471: -61,-31 + 15318: -28,4 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 8200: 45,47 - 8203: 41,47 - 12636: -10,-22 - 15584: -24,4 + 7933: 45,47 + 7936: 41,47 + 12369: -10,-22 + 15317: -24,4 - node: color: '#FF5C5CFF' id: WarnEndGreyscaleN decals: - 12654: -16,-20 + 12387: -16,-20 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 1218: -56,41 + 1171: -56,41 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 1217: -56,43 + 1170: -56,43 - node: zIndex: 1 color: '#0000000C' id: WarnFull decals: - 21283: -33,37 + 20515: -33,37 - node: color: '#00000022' id: WarnFull decals: - 7441: -3,-48 - 7442: -3,-49 - 7443: 3,-48 - 7444: 3,-49 - 7445: -4,-50 - 7446: -4,-51 - 7447: -4,-52 - 7448: 4,-50 - 7449: 4,-51 - 7450: 4,-52 - 7451: -4,-50 - 7452: -4,-51 - 7453: -4,-52 - 7454: 4,-50 - 7455: 4,-51 - 7456: 4,-52 + 7174: -3,-48 + 7175: -3,-49 + 7176: 3,-48 + 7177: 3,-49 + 7178: -4,-50 + 7179: -4,-51 + 7180: -4,-52 + 7181: 4,-50 + 7182: 4,-51 + 7183: 4,-52 + 7184: -4,-50 + 7185: -4,-51 + 7186: -4,-52 + 7187: 4,-50 + 7188: 4,-51 + 7189: 4,-52 - node: color: '#0000003F' id: WarnFull decals: - 21080: -101,53 - 21081: -101,52 - 21082: -101,51 - 21083: -101,54 - 21084: -101,55 - 21085: -101,56 - 21086: -101,57 - 21087: -106,51 - 21088: -106,52 - 21089: -106,53 - 21090: -106,54 - 21091: -106,55 - 21092: -106,56 - 21093: -106,57 - 21094: -104,50 - 21095: -103,50 - 21096: -106,49 - 21097: -106,48 - 21098: -106,47 - 21099: -106,46 - 21100: -106,45 - 21101: -106,44 - 21102: -106,43 - 21103: -101,43 - 21104: -101,44 - 21105: -101,45 - 21106: -101,46 - 21107: -101,47 - 21108: -101,48 - 21109: -101,49 - 21110: -103,42 - 21111: -104,42 - 21112: -104,58 - 21113: -103,58 - 21114: -106,59 - 21115: -106,60 - 21116: -106,61 - 21117: -106,62 - 21118: -106,63 - 21119: -106,64 - 21120: -106,65 - 21121: -104,66 - 21122: -103,66 - 21123: -101,65 - 21124: -101,64 - 21125: -101,63 - 21126: -101,62 - 21127: -101,61 - 21128: -101,60 - 21129: -101,59 + 20339: -101,53 + 20340: -101,52 + 20341: -101,51 + 20342: -101,54 + 20343: -101,55 + 20344: -101,56 + 20345: -101,57 + 20346: -106,51 + 20347: -106,52 + 20348: -106,53 + 20349: -106,54 + 20350: -106,55 + 20351: -106,56 + 20352: -106,57 + 20353: -104,50 + 20354: -103,50 + 20355: -106,49 + 20356: -106,48 + 20357: -106,47 + 20358: -106,46 + 20359: -106,45 + 20360: -106,44 + 20361: -106,43 + 20362: -101,43 + 20363: -101,44 + 20364: -101,45 + 20365: -101,46 + 20366: -101,47 + 20367: -101,48 + 20368: -101,49 + 20369: -103,42 + 20370: -104,42 + 20371: -104,58 + 20372: -103,58 + 20373: -106,59 + 20374: -106,60 + 20375: -106,61 + 20376: -106,62 + 20377: -106,63 + 20378: -106,64 + 20379: -106,65 + 20380: -104,66 + 20381: -103,66 + 20382: -101,65 + 20383: -101,64 + 20384: -101,63 + 20385: -101,62 + 20386: -101,61 + 20387: -101,60 + 20388: -101,59 - node: zIndex: 1 color: '#0000003F' id: WarnFull decals: - 21189: -41,36 - 21190: -41,35 - 21191: -41,34 - 21192: -41,33 - 21193: -41,32 - 21194: -41,31 - 21195: -40,31 - 21196: -40,32 - 21197: -40,33 - 21198: -40,34 - 21199: -40,35 - 21200: -40,36 - 21207: -38,31 - 21208: -38,32 - 21209: -38,34 - 21210: -38,33 - 21211: -38,35 - 21212: -38,36 - 21213: -37,36 - 21214: -37,35 - 21215: -37,34 - 21216: -37,33 - 21217: -37,32 - 21218: -37,31 - 21219: -36,31 - 21220: -36,32 - 21221: -36,33 - 21222: -36,34 - 21223: -36,35 - 21224: -36,36 - 21225: -35,36 - 21226: -35,35 - 21227: -35,34 - 21228: -35,33 - 21229: -35,32 - 21230: -35,31 - 21231: -34,30 - 21232: -34,31 - 21233: -34,32 - 21234: -34,33 - 21235: -33,33 - 21236: -32,33 - 21237: -34,34 - 21238: -33,34 - 21239: -32,34 - 21240: -32,35 - 21241: -33,35 - 21242: -34,35 - 21243: -32,36 - 21244: -33,36 - 21245: -34,36 - 21261: -39,30 - 21262: -39,31 - 21263: -39,32 - 21264: -39,33 - 21265: -39,34 - 21266: -39,35 - 21267: -39,36 - 21268: -39,37 - 21269: -40,37 - 21270: -40,30 - 21271: -37,30 - 21272: -36,30 - 21273: -35,30 - 21306: 19,-56 - 21307: 9,-55 - 21308: 10,-55 - 21309: 11,-55 - 21310: 11,-54 - 21311: 10,-54 - 21312: 9,-54 - 21313: 9,-61 - 21314: 9,-62 - 21315: 10,-62 - 21316: 10,-61 - 21317: 11,-61 - 21318: 11,-62 + 20437: -41,36 + 20438: -41,35 + 20439: -41,34 + 20440: -41,33 + 20441: -41,32 + 20442: -41,31 + 20443: -40,31 + 20444: -40,32 + 20445: -40,33 + 20446: -40,34 + 20447: -40,35 + 20448: -40,36 + 20449: -38,31 + 20450: -38,32 + 20451: -38,34 + 20452: -38,33 + 20453: -38,35 + 20454: -38,36 + 20455: -37,36 + 20456: -37,35 + 20457: -37,34 + 20458: -37,33 + 20459: -37,32 + 20460: -37,31 + 20461: -36,31 + 20462: -36,32 + 20463: -36,33 + 20464: -36,34 + 20465: -36,35 + 20466: -36,36 + 20467: -35,36 + 20468: -35,35 + 20469: -35,34 + 20470: -35,33 + 20471: -35,32 + 20472: -35,31 + 20473: -34,30 + 20474: -34,31 + 20475: -34,32 + 20476: -34,33 + 20477: -33,33 + 20478: -32,33 + 20479: -34,34 + 20480: -33,34 + 20481: -32,34 + 20482: -32,35 + 20483: -33,35 + 20484: -34,35 + 20485: -32,36 + 20486: -33,36 + 20487: -34,36 + 20496: -39,30 + 20497: -39,31 + 20498: -39,32 + 20499: -39,33 + 20500: -39,34 + 20501: -39,35 + 20502: -39,36 + 20503: -39,37 + 20504: -40,37 + 20505: -40,30 + 20506: -37,30 + 20507: -36,30 + 20508: -35,30 + 20538: 19,-56 + 20539: 9,-55 + 20540: 10,-55 + 20541: 11,-55 + 20542: 11,-54 + 20543: 10,-54 + 20544: 9,-54 + 20545: 9,-61 + 20546: 9,-62 + 20547: 10,-62 + 20548: 10,-61 + 20549: 11,-61 + 20550: 11,-62 - node: color: '#00000044' id: WarnFull decals: - 2779: -2,-7 + 2732: -2,-7 - node: color: '#0000004A' id: WarnFull decals: - 7427: -3,-48 - 7428: -3,-49 - 7429: -2,-48 - 7430: -2,-49 - 7431: -1,-48 - 7432: -1,-49 - 7433: 0,-48 - 7434: 0,-49 - 7435: 1,-48 - 7436: 1,-49 - 7437: 2,-48 - 7438: 2,-49 - 7439: 3,-48 - 7440: 3,-49 - 7457: 10,-50 - 7458: 8,-52 - 7459: 16,-50 - 7460: 16,-45 - 7461: 8,-41 - 7462: 8,-40 - 7463: 17,-53 - 7464: 24,-58 - 7465: 24,-58 - 7466: 26,-63 - 7467: 26,-63 - 7468: 15,-63 - 7469: 8,-66 + 7160: -3,-48 + 7161: -3,-49 + 7162: -2,-48 + 7163: -2,-49 + 7164: -1,-48 + 7165: -1,-49 + 7166: 0,-48 + 7167: 0,-49 + 7168: 1,-48 + 7169: 1,-49 + 7170: 2,-48 + 7171: 2,-49 + 7172: 3,-48 + 7173: 3,-49 + 7190: 10,-50 + 7191: 8,-52 + 7192: 16,-50 + 7193: 16,-45 + 7194: 8,-41 + 7195: 8,-40 + 7196: 17,-53 + 7197: 24,-58 + 7198: 24,-58 + 7199: 26,-63 + 7200: 26,-63 + 7201: 15,-63 + 7202: 8,-66 - node: color: '#1A394AFF' id: WarnFullGreyscale decals: - 9255: 27,-51 - 9256: 27,-52 - 9257: 27,-53 - 9258: 27,-54 + 8988: 27,-51 + 8989: 27,-52 + 8990: 27,-53 + 8991: 27,-54 - node: color: '#CDCDCDFF' id: WarnFullGreyscale decals: - 9898: 3,-31 - 9899: 3,-32 + 9631: 3,-31 + 9632: 3,-32 - node: color: '#DE3A3AFF' id: WarnFullGreyscale decals: - 10471: -47,-43 - 10472: -47,-41 - 10473: -47,-39 + 10204: -47,-43 + 10205: -47,-41 + 10206: -47,-39 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 10446: -47,-37 + 10179: -47,-37 - node: color: '#9C2020FF' id: WarnLineE decals: - 10447: -48,-43 - 10448: -48,-42 - 10449: -48,-41 - 10451: -48,-40 - 10452: -48,-39 - 10454: -48,-38 - 10456: -48,-37 + 10180: -48,-43 + 10181: -48,-42 + 10182: -48,-41 + 10184: -48,-40 + 10185: -48,-39 + 10187: -48,-38 + 10189: -48,-37 - node: color: '#BD0000FF' id: WarnLineE decals: - 5987: -35,-43 - 5988: -35,-45 + 5790: -35,-43 + 5791: -35,-45 - node: color: '#C80000FF' id: WarnLineE decals: - 5983: -35,-43 - 5984: -35,-45 + 5786: -35,-43 + 5787: -35,-45 - node: color: '#DE3A3AFF' id: WarnLineE decals: - 12020: -35,-43 - 12021: -35,-45 + 11753: -35,-43 + 11754: -35,-45 - node: color: '#FF0000FF' id: WarnLineE decals: - 5985: -35,-43 - 5986: -35,-45 + 5788: -35,-43 + 5789: -35,-45 - node: color: '#FFFFFFFF' id: WarnLineE @@ -23231,170 +23231,170 @@ entities: 245: 29,32 246: 29,33 441: 57,-35 - 1020: -30,6 - 1021: -30,7 - 1022: -30,8 - 1023: -30,9 - 1024: -30,10 - 1025: -30,11 - 1026: -28,11 - 1027: -28,10 - 1028: -28,9 - 1029: -28,8 - 1030: -28,7 - 1031: -28,6 - 1032: -26,6 - 1033: -26,7 - 1034: -26,8 - 1035: -26,9 - 1036: -26,10 - 1037: -26,11 - 1038: -24,11 - 1039: -24,10 - 1040: -24,9 - 1041: -24,8 - 1042: -24,7 - 1043: -24,6 - 1080: -20,11 - 1081: -20,12 - 1085: -20,6 - 1086: -20,7 - 1334: -53,41 - 1477: 39,44 - 1478: 39,45 - 1479: 39,46 - 1480: 43,46 - 1481: 43,45 - 1482: 43,44 - 2385: 68,-37 - 2428: 83,-36 - 2429: 83,-41 - 3406: -46,18 - 3407: -46,19 - 3505: -10,1 - 3506: -10,0 - 3507: -10,-1 - 5979: -35,-43 - 5980: -35,-45 - 5981: -33,-45 - 5982: -33,-43 - 6095: 17,-40 - 7230: 41,-60 - 7874: 28,48 - 7875: 28,50 - 7876: 28,51 - 7877: 28,52 - 7903: 28,53 - 7907: 28,49 - 8117: 36,43 - 8118: 36,45 - 8119: 36,47 - 8120: 36,44 - 8121: 36,46 - 8292: 63,44 - 8293: 63,43 - 8294: 63,42 - 8519: 67,49 - 8520: 67,50 - 8521: 62,50 - 8522: 62,49 - 8523: 62,48 - 8528: 65,48 - 8529: 65,49 - 8530: 65,50 - 12638: -10,-23 - 12641: -10,-20 - 12742: -61,-32 - 12752: -61,-29 - 12753: -61,-28 - 13146: 52,31 - 13147: 52,32 - 13148: 52,33 - 13149: 58,31 - 13150: 58,32 - 13151: 58,33 - 15592: -19,8 - 15593: -19,9 - 15594: -19,10 - 15606: -20,13 - 15607: -20,5 + 973: -30,6 + 974: -30,7 + 975: -30,8 + 976: -30,9 + 977: -30,10 + 978: -30,11 + 979: -28,11 + 980: -28,10 + 981: -28,9 + 982: -28,8 + 983: -28,7 + 984: -28,6 + 985: -26,6 + 986: -26,7 + 987: -26,8 + 988: -26,9 + 989: -26,10 + 990: -26,11 + 991: -24,11 + 992: -24,10 + 993: -24,9 + 994: -24,8 + 995: -24,7 + 996: -24,6 + 1033: -20,11 + 1034: -20,12 + 1038: -20,6 + 1039: -20,7 + 1287: -53,41 + 1430: 39,44 + 1431: 39,45 + 1432: 39,46 + 1433: 43,46 + 1434: 43,45 + 1435: 43,44 + 2338: 68,-37 + 2381: 83,-36 + 2382: 83,-41 + 3359: -46,18 + 3360: -46,19 + 3458: -10,1 + 3459: -10,0 + 3460: -10,-1 + 5782: -35,-43 + 5783: -35,-45 + 5784: -33,-45 + 5785: -33,-43 + 5898: 17,-40 + 6963: 41,-60 + 7607: 28,48 + 7608: 28,50 + 7609: 28,51 + 7610: 28,52 + 7636: 28,53 + 7640: 28,49 + 7850: 36,43 + 7851: 36,45 + 7852: 36,47 + 7853: 36,44 + 7854: 36,46 + 8025: 63,44 + 8026: 63,43 + 8027: 63,42 + 8252: 67,49 + 8253: 67,50 + 8254: 62,50 + 8255: 62,49 + 8256: 62,48 + 8261: 65,48 + 8262: 65,49 + 8263: 65,50 + 12371: -10,-23 + 12374: -10,-20 + 12475: -61,-32 + 12485: -61,-29 + 12486: -61,-28 + 12879: 52,31 + 12880: 52,32 + 12881: 52,33 + 12882: 58,31 + 12883: 58,32 + 12884: 58,33 + 15325: -19,8 + 15326: -19,9 + 15327: -19,10 + 15339: -20,13 + 15340: -20,5 - node: color: '#3EB388FF' id: WarnLineGreyscaleE decals: - 7987: 23,43 + 7720: 23,43 - node: color: '#439909FF' id: WarnLineGreyscaleE decals: - 8634: -57,-66 - 8635: -56,-61 - 8638: -56,-57 - 8639: -52,-57 - 8640: -52,-61 - 8691: -45,-65 - 8692: -45,-67 - 8711: -41,-65 - 8712: -41,-67 - 8734: -51,-65 - 8735: -51,-67 - 8886: -49,-75 - 8900: -44,-75 + 8367: -57,-66 + 8368: -56,-61 + 8371: -56,-57 + 8372: -52,-57 + 8373: -52,-61 + 8424: -45,-65 + 8425: -45,-67 + 8444: -41,-65 + 8445: -41,-67 + 8467: -51,-65 + 8468: -51,-67 + 8619: -49,-75 + 8633: -44,-75 - node: color: '#4B709CFF' id: WarnLineGreyscaleE decals: - 10396: 15,16 - 10397: 17,9 - 10403: 15,-16 - 11878: -45,-30 - 12339: -59,-30 - 12340: -55,-30 - 13901: -12,-1 - 13902: -12,1 - 13986: 17,-9 + 10129: 15,16 + 10130: 17,9 + 10136: 15,-16 + 11611: -45,-30 + 12072: -59,-30 + 12073: -55,-30 + 13634: -12,-1 + 13635: -12,1 + 13719: 17,-9 - node: color: '#52B4E9FF' id: WarnLineGreyscaleE decals: - 12619: -13,-21 + 12352: -13,-21 - node: color: '#96DAFFFF' id: WarnLineGreyscaleE decals: - 11593: -5,-54 - 11594: -5,-55 - 11595: -5,-56 - 11596: -5,-50 - 11597: -5,-51 - 11598: -5,-52 - 11604: 7,-66 - 11605: -5,-66 - 11613: 7,-52 + 11326: -5,-54 + 11327: -5,-55 + 11328: -5,-56 + 11329: -5,-50 + 11330: -5,-51 + 11331: -5,-52 + 11337: 7,-66 + 11338: -5,-66 + 11346: 7,-52 - node: color: '#BC863FFF' id: WarnLineGreyscaleE decals: - 1876: 90,-14 - 1877: 90,-16 - 1964: 59,0 - 1970: 81,-1 - 2147: 86,7 - 2148: 86,5 - 2197: 59,5 - 16455: 83,5 - 16456: 83,7 + 1829: 90,-14 + 1830: 90,-16 + 1917: 59,0 + 1923: 81,-1 + 2100: 86,7 + 2101: 86,5 + 2150: 59,5 + 16188: 83,5 + 16189: 83,7 - node: color: '#C6FF91FF' id: WarnLineGreyscaleE decals: - 11055: -39,22 - 11056: -38,14 - 11177: -6,61 - 11249: -25,31 - 11302: 1,41 - 11327: 14,41 - 11723: -39,47 + 10788: -39,22 + 10789: -38,14 + 10910: -6,61 + 10982: -25,31 + 11035: 1,41 + 11060: 14,41 + 11456: -39,47 - node: color: '#D381C9CC' id: WarnLineGreyscaleE @@ -23405,154 +23405,154 @@ entities: color: '#D381C9FF' id: WarnLineGreyscaleE decals: - 1836: 57,-31 - 2224: 48,-31 - 2543: 77,-40 - 2544: 77,-37 - 2794: 61,-65 - 3127: 75,-31 - 6778: 65,-31 + 1789: 57,-31 + 2177: 48,-31 + 2496: 77,-40 + 2497: 77,-37 + 2747: 61,-65 + 3080: 75,-31 + 6529: 65,-31 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 1801: -43,-16 - 1802: -43,-17 + 1754: -43,-16 + 1755: -43,-17 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleE decals: - 1989: 59,-7 - 4784: -79,44 - 4820: -75,47 - 4826: -71,47 - 9786: 46,7 - 10465: -47,-38 - 10466: -47,-39 - 10467: -47,-40 - 10468: -47,-41 - 10469: -47,-43 - 10470: -47,-42 - 15691: 41,10 + 1942: 59,-7 + 4587: -79,44 + 4623: -75,47 + 4629: -71,47 + 9519: 46,7 + 10198: -47,-38 + 10199: -47,-39 + 10200: -47,-40 + 10201: -47,-41 + 10202: -47,-43 + 10203: -47,-42 + 15424: 41,10 - node: color: '#EFB341FF' id: WarnLineGreyscaleE decals: - 8557: 60,42 - 8558: 60,44 - 8560: 54,43 + 8290: 60,42 + 8291: 60,44 + 8293: 54,43 - node: color: '#FBB2FFFF' id: WarnLineGreyscaleE decals: - 10590: 41,-4 - 10781: 22,-26 - 13886: 42,-10 + 10323: 41,-4 + 10514: 22,-26 + 13619: 42,-10 - node: color: '#FF5C5CFF' id: WarnLineGreyscaleE decals: - 10631: 41,3 - 11773: -43,-11 - 11799: -43,-16 - 11800: -43,-17 - 11838: -41,-31 - 11840: -41,-33 - 11849: -45,-30 - 11850: -45,-34 - 11864: -55,-30 - 11865: -59,-30 - 11866: -55,-34 - 11882: -41,-40 - 11884: -45,-40 - 11885: -41,-44 - 11891: -10,-30 - 11893: -9,-27 - 11894: -9,-25 - 11897: -3,-25 - 11898: -3,-27 - 12123: -9,-25 - 12124: -9,-27 - 12125: -3,-25 - 12126: -3,-27 - 12427: -68,-16 - 12429: -72,-16 - 12432: -78,-10 - 12435: -78,-22 - 12541: -10,-35 - 12542: -10,-36 - 13095: -56,-11 + 10364: 41,3 + 11506: -43,-11 + 11532: -43,-16 + 11533: -43,-17 + 11571: -41,-31 + 11573: -41,-33 + 11582: -45,-30 + 11583: -45,-34 + 11597: -55,-30 + 11598: -59,-30 + 11599: -55,-34 + 11615: -41,-40 + 11617: -45,-40 + 11618: -41,-44 + 11624: -10,-30 + 11626: -9,-27 + 11627: -9,-25 + 11630: -3,-25 + 11631: -3,-27 + 11856: -9,-25 + 11857: -9,-27 + 11858: -3,-25 + 11859: -3,-27 + 12160: -68,-16 + 12162: -72,-16 + 12165: -78,-10 + 12168: -78,-22 + 12274: -10,-35 + 12275: -10,-36 + 12828: -56,-11 - node: color: '#FF9821FF' id: WarnLineGreyscaleE decals: - 13928: -14,-35 - 13929: -14,-36 + 13661: -14,-35 + 13662: -14,-36 - node: color: '#FFA647FF' id: WarnLineGreyscaleE decals: - 11536: 7,27 - 13125: 22,21 - 13135: 41,35 - 13136: 41,37 - 13141: 41,18 - 13142: 41,17 + 11269: 7,27 + 12858: 22,21 + 12868: 41,35 + 12869: 41,37 + 12874: 41,18 + 12875: 41,17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 1768: -49,-16 - 1770: -49,-17 - 1780: -48,-14 - 1781: -48,-19 - 11711: -75,55 - 11712: -75,54 - 11713: -75,53 + 1721: -49,-16 + 1723: -49,-17 + 1733: -48,-14 + 1734: -48,-19 + 11444: -75,55 + 11445: -75,54 + 11446: -75,53 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 4749: -84,22 + 4552: -84,22 - node: color: '#37789BFF' id: WarnLineGreyscaleN decals: - 6300: 14,-57 - 6304: 16,-57 - 6305: 17,-57 - 6306: 18,-57 - 6759: 13,-57 + 6056: 14,-57 + 6060: 16,-57 + 6061: 17,-57 + 6062: 18,-57 + 6510: 13,-57 - node: color: '#3EB388FF' id: WarnLineGreyscaleN decals: - 7901: 26,53 - 7902: 28,53 - 7971: 26,44 - 7972: 28,44 - 7985: 21,53 - 7986: 21,45 + 7634: 26,53 + 7635: 28,53 + 7704: 26,44 + 7705: 28,44 + 7718: 21,53 + 7719: 21,45 - node: color: '#439909FF' id: WarnLineGreyscaleN decals: - 8732: -54,-64 - 8733: -52,-64 - 8739: -54,-70 - 8740: -52,-70 - 8753: -53,-56 - 8789: -54,-74 - 8806: -52,-74 + 8465: -54,-64 + 8466: -52,-64 + 8472: -54,-70 + 8473: -52,-70 + 8486: -53,-56 + 8522: -54,-74 + 8539: -52,-74 - node: color: '#4B709CFF' id: WarnLineGreyscaleN decals: - 10402: 0,-16 - 10787: -36,2 - 11879: -47,-29 - 20007: -31,13 + 10135: 0,-16 + 10520: -36,2 + 11612: -47,-29 + 19740: -31,13 - node: color: '#792DA9FF' id: WarnLineGreyscaleN @@ -23562,59 +23562,59 @@ entities: color: '#808080FF' id: WarnLineGreyscaleN decals: - 12604: -31,-28 - 12605: -27,-28 - 12606: -23,-28 - 12607: -19,-28 + 12337: -31,-28 + 12338: -27,-28 + 12339: -23,-28 + 12340: -19,-28 - node: color: '#96DAFFFF' id: WarnLineGreyscaleN decals: - 11403: -1,-34 - 11404: 1,-34 - 11426: 0,-39 - 11427: 6,-44 - 11428: 1,-44 - 11587: -10,-54 - 14190: 5,-39 - 14193: 6,-39 - 14471: 5,-44 + 11136: -1,-34 + 11137: 1,-34 + 11159: 0,-39 + 11160: 6,-44 + 11161: 1,-44 + 11320: -10,-54 + 13923: 5,-39 + 13926: 6,-39 + 14204: 5,-44 - node: color: '#BC863FFF' id: WarnLineGreyscaleN decals: - 1968: 67,4 - 1969: 73,2 + 1921: 67,4 + 1922: 73,2 - node: color: '#C6FF91FF' id: WarnLineGreyscaleN decals: - 10759: 11,-25 - 10765: 16,-25 - 10910: -55,1 - 10932: -72,2 - 10933: -70,2 - 11051: -48,28 - 11242: -19,28 - 11243: -18,28 - 11244: -17,28 - 11286: -14,31 - 11287: -13,31 - 11292: -2,51 - 11295: -8,63 - 11296: -6,63 - 11301: 8,42 - 11717: -65,55 - 11718: -63,55 - 11719: -56,55 - 11720: -45,55 - 11721: -44,55 - 11722: -43,55 - 13894: 36,2 - 14353: -48,1 - 14354: -46,1 - 14384: -41,28 - 14385: -39,28 + 10492: 11,-25 + 10498: 16,-25 + 10643: -55,1 + 10665: -72,2 + 10666: -70,2 + 10784: -48,28 + 10975: -19,28 + 10976: -18,28 + 10977: -17,28 + 11019: -14,31 + 11020: -13,31 + 11025: -2,51 + 11028: -8,63 + 11029: -6,63 + 11034: 8,42 + 11450: -65,55 + 11451: -63,55 + 11452: -56,55 + 11453: -45,55 + 11454: -44,55 + 11455: -43,55 + 13627: 36,2 + 14086: -48,1 + 14087: -46,1 + 14117: -41,28 + 14118: -39,28 - node: color: '#D381C9CC' id: WarnLineGreyscaleN @@ -23629,22 +23629,22 @@ entities: color: '#D381C9FF' id: WarnLineGreyscaleN decals: - 1756: 44,-17 - 1834: 53,-30 - 1835: 55,-30 - 2545: 74,-35 - 2549: 71,-35 - 2792: 60,-61 - 2850: 60,-55 - 2979: 63,-47 - 3070: 71,-22 - 3125: 71,-30 - 6777: 62,-30 + 1709: 44,-17 + 1787: 53,-30 + 1788: 55,-30 + 2498: 74,-35 + 2502: 71,-35 + 2745: 60,-61 + 2803: 60,-55 + 2932: 63,-47 + 3023: 71,-22 + 3078: 71,-30 + 6528: 62,-30 - node: color: '#D69949FF' id: WarnLineGreyscaleN decals: - 10666: 50,4 + 10399: 50,4 - node: color: '#DE3A3ACC' id: WarnLineGreyscaleN @@ -23655,101 +23655,101 @@ entities: color: '#DE3A3AFF' id: WarnLineGreyscaleN decals: - 2014: 55,-6 - 2015: 50,-6 - 4783: -84,45 - 4814: -80,45 - 4815: -76,48 - 4816: -72,48 - 4839: -72,44 + 1967: 55,-6 + 1968: 50,-6 + 4586: -84,45 + 4617: -80,45 + 4618: -76,48 + 4619: -72,48 + 4642: -72,44 - node: color: '#EFB341FF' id: WarnLineGreyscaleN decals: - 8314: 63,45 + 8047: 63,45 - node: color: '#FF5C5CFF' id: WarnLineGreyscaleN decals: - 10771: 18,-25 - 10772: 20,-25 - 11586: -12,-54 - 11602: -6,-44 - 11743: -41,-3 - 11744: -39,-3 - 11745: -41,-9 - 11746: -39,-9 - 11803: -42,-29 - 11823: -37,-29 - 11824: -36,-29 - 11859: -48,-33 - 11860: -46,-33 - 11880: -42,-37 - 11887: -29,-24 - 11888: -25,-24 - 11889: -21,-24 - 11890: -15,-24 - 11899: -35,-24 - 11903: -44,-10 - 11905: -50,-10 - 12531: -69,-14 - 12537: -11,-34 - 12543: -11,-39 - 20294: -6,-39 - 20295: -4,-39 + 10504: 18,-25 + 10505: 20,-25 + 11319: -12,-54 + 11335: -6,-44 + 11476: -41,-3 + 11477: -39,-3 + 11478: -41,-9 + 11479: -39,-9 + 11536: -42,-29 + 11556: -37,-29 + 11557: -36,-29 + 11592: -48,-33 + 11593: -46,-33 + 11613: -42,-37 + 11620: -29,-24 + 11621: -25,-24 + 11622: -21,-24 + 11623: -15,-24 + 11632: -35,-24 + 11636: -44,-10 + 11638: -50,-10 + 12264: -69,-14 + 12270: -11,-34 + 12276: -11,-39 + 19932: -6,-39 + 19933: -4,-39 - node: color: '#FFA647FF' id: WarnLineGreyscaleN decals: - 11329: 6,28 - 13128: 27,28 - 13129: 34,28 - 13130: 35,28 - 13145: 51,39 - 15693: 40,7 + 11062: 6,28 + 12861: 27,28 + 12862: 34,28 + 12863: 35,28 + 12878: 51,39 + 15426: 40,7 - node: color: '#37789BFF' id: WarnLineGreyscaleS decals: - 6301: 16,-56 - 6302: 17,-56 - 6303: 18,-56 + 6057: 16,-56 + 6058: 17,-56 + 6059: 18,-56 - node: color: '#3EB388FF' id: WarnLineGreyscaleS decals: - 7899: 26,46 - 7900: 28,46 - 7984: 21,47 + 7632: 26,46 + 7633: 28,46 + 7717: 21,47 - node: color: '#439909FF' id: WarnLineGreyscaleS decals: - 8620: -60,-62 - 8730: -54,-68 - 8731: -52,-68 - 8737: -54,-72 - 8738: -52,-72 - 8751: -52,-62 - 8752: -54,-62 + 8353: -60,-62 + 8463: -54,-68 + 8464: -52,-68 + 8470: -54,-72 + 8471: -52,-72 + 8484: -52,-62 + 8485: -54,-62 - node: color: '#4B709CFF' id: WarnLineGreyscaleS decals: - 10786: -36,-2 - 11876: -48,-31 - 11877: -46,-31 + 10519: -36,-2 + 11609: -48,-31 + 11610: -46,-31 - node: color: '#52B4E9FF' id: WarnLineGreyscaleS decals: - 12617: -15,-22 + 12350: -15,-22 - node: color: '#663C0DFF' id: WarnLineGreyscaleS decals: - 12377: -16,-27 - 12378: -14,-27 + 12110: -16,-27 + 12111: -14,-27 - node: color: '#792DA9FF' id: WarnLineGreyscaleS @@ -23760,57 +23760,57 @@ entities: color: '#96DAFFFF' id: WarnLineGreyscaleS decals: - 7420: -3,-49 - 7421: -2,-49 - 7422: 2,-49 - 7423: 3,-49 - 7424: -1,-49 - 7425: 0,-49 - 7426: 1,-49 - 10698: -1,-32 - 10716: 1,-32 - 11399: 5,-37 - 11400: 6,-37 - 11405: 0,-37 - 11429: 1,-42 - 11577: -32,-67 - 11579: -26,-67 - 11580: -21,-67 - 11588: -11,-56 - 11608: -6,-67 - 12381: 1,-32 - 12382: -1,-32 - 14186: 6,-42 - 14187: 5,-42 + 7153: -3,-49 + 7154: -2,-49 + 7155: 2,-49 + 7156: 3,-49 + 7157: -1,-49 + 7158: 0,-49 + 7159: 1,-49 + 10431: -1,-32 + 10449: 1,-32 + 11132: 5,-37 + 11133: 6,-37 + 11138: 0,-37 + 11162: 1,-42 + 11310: -32,-67 + 11312: -26,-67 + 11313: -21,-67 + 11321: -11,-56 + 11341: -6,-67 + 12114: 1,-32 + 12115: -1,-32 + 13919: 6,-42 + 13920: 5,-42 - node: color: '#AE6716FF' id: WarnLineGreyscaleS decals: - 12375: -16,-27 - 12376: -14,-27 + 12108: -16,-27 + 12109: -14,-27 - node: color: '#BC863FFF' id: WarnLineGreyscaleS decals: - 1971: 73,4 - 2195: 58,4 + 1924: 73,4 + 2148: 58,4 - node: color: '#C6FF91FF' id: WarnLineGreyscaleS decals: - 10603: 31,-2 - 10758: 5,-27 - 10911: -58,-1 - 10935: -71,-2 - 11049: -53,25 - 11052: -49,26 - 11233: -14,26 - 11238: -22,26 - 11259: -60,25 - 11260: -59,25 - 11724: -41,39 - 11725: -39,39 - 14506: -25,26 + 10336: 31,-2 + 10491: 5,-27 + 10644: -58,-1 + 10668: -71,-2 + 10782: -53,25 + 10785: -49,26 + 10966: -14,26 + 10971: -22,26 + 10992: -60,25 + 10993: -59,25 + 11457: -41,39 + 11458: -39,39 + 14239: -25,26 - node: color: '#D381C9CC' id: WarnLineGreyscaleS @@ -23824,16 +23824,16 @@ entities: color: '#D381C9FF' id: WarnLineGreyscaleS decals: - 1754: 43,-23 - 1755: 37,-23 - 1833: 51,-32 - 2225: 46,-35 - 2849: 60,-59 - 2980: 60,-49 - 3068: 71,-28 - 3123: 71,-33 - 3124: 74,-33 - 6776: 62,-32 + 1707: 43,-23 + 1708: 37,-23 + 1786: 51,-32 + 2178: 46,-35 + 2802: 60,-59 + 2933: 60,-49 + 3021: 71,-28 + 3076: 71,-33 + 3077: 74,-33 + 6527: 62,-32 - node: color: '#DE3A3ACC' id: WarnLineGreyscaleS @@ -23844,120 +23844,120 @@ entities: color: '#DE3A3AFF' id: WarnLineGreyscaleS decals: - 2013: 53,-9 - 4812: -83,42 - 4813: -81,42 - 4817: -76,50 - 4818: -72,50 - 4825: -72,46 + 1966: 53,-9 + 4615: -83,42 + 4616: -81,42 + 4620: -76,50 + 4621: -72,50 + 4628: -72,46 - node: color: '#EC3F3E7A' id: WarnLineGreyscaleS decals: - 1680: -49,67 - 1681: -48,67 - 1682: -40,67 - 1683: -39,67 + 1633: -49,67 + 1634: -48,67 + 1635: -40,67 + 1636: -39,67 - node: color: '#EFB341FF' id: WarnLineGreyscaleS decals: - 8536: 63,47 - 8596: 51,41 + 8269: 63,47 + 8329: 51,41 - node: color: '#FF5C5CFF' id: WarnLineGreyscaleS decals: - 10642: 50,-4 - 10782: -41,-1 - 10783: -39,-1 - 10784: -44,-1 - 10785: -52,-1 - 11408: -4,-37 - 11753: -41,-7 - 11757: -39,-7 - 11785: -49,-12 - 11787: -48,-12 - 11802: -42,-27 - 11805: -37,-27 - 11806: -36,-27 - 11826: -37,-35 - 11828: -36,-35 - 11857: -46,-31 - 11858: -48,-31 - 11881: -42,-35 - 11900: -35,-22 - 11902: -44,-8 - 11907: -64,-17 - 11908: -60,-17 - 12530: -69,-18 - 12535: -74,-23 - 12536: -11,-37 - 12538: -11,-32 - 20292: -6,-42 - 20293: -4,-42 + 10375: 50,-4 + 10515: -41,-1 + 10516: -39,-1 + 10517: -44,-1 + 10518: -52,-1 + 11141: -4,-37 + 11486: -41,-7 + 11490: -39,-7 + 11518: -49,-12 + 11520: -48,-12 + 11535: -42,-27 + 11538: -37,-27 + 11539: -36,-27 + 11559: -37,-35 + 11561: -36,-35 + 11590: -46,-31 + 11591: -48,-31 + 11614: -42,-35 + 11633: -35,-22 + 11635: -44,-8 + 11640: -64,-17 + 11641: -60,-17 + 12263: -69,-18 + 12268: -74,-23 + 12269: -11,-37 + 12271: -11,-32 + 19930: -6,-42 + 19931: -4,-42 - node: color: '#FFA647FF' id: WarnLineGreyscaleS decals: - 12369: -31,-26 - 12370: -27,-26 - 12371: -23,-26 - 12372: -19,-26 - 12373: -16,-27 - 12374: -14,-27 - 13124: 21,20 - 13137: 34,38 - 13138: 35,38 - 13143: 40,9 - 13144: 51,26 + 12102: -31,-26 + 12103: -27,-26 + 12104: -23,-26 + 12105: -19,-26 + 12106: -16,-27 + 12107: -14,-27 + 12857: 21,20 + 12870: 34,38 + 12871: 35,38 + 12876: 40,9 + 12877: 51,26 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 4748: -82,25 - 5511: 16,22 - 5512: 18,22 + 4551: -82,25 + 5314: 16,22 + 5315: 18,22 - node: color: '#3EB388FF' id: WarnLineGreyscaleW decals: - 7970: 25,43 - 13096: 20,44 - 13181: 20,23 + 7703: 25,43 + 12829: 20,44 + 12914: 20,23 - node: color: '#439909FF' id: WarnLineGreyscaleW decals: - 8621: -61,-62 - 8636: -50,-61 - 8637: -50,-57 - 8641: -54,-61 - 8642: -54,-57 - 8689: -49,-67 - 8690: -49,-65 - 8709: -43,-67 - 8710: -43,-65 - 8736: -55,-66 - 8794: -63,-75 - 8887: -47,-75 + 8354: -61,-62 + 8369: -50,-61 + 8370: -50,-57 + 8374: -54,-61 + 8375: -54,-57 + 8422: -49,-67 + 8423: -49,-65 + 8442: -43,-67 + 8443: -43,-65 + 8469: -55,-66 + 8527: -63,-75 + 8620: -47,-75 - node: color: '#4B709CFF' id: WarnLineGreyscaleW decals: - 10394: -15,16 - 10395: -17,-9 - 10398: 12,-1 - 10399: 12,1 - 10401: -15,-16 - 12337: -53,-30 - 12338: -57,-30 + 10127: -15,16 + 10128: -17,-9 + 10131: 12,-1 + 10132: 12,1 + 10134: -15,-16 + 12070: -53,-30 + 12071: -57,-30 - node: color: '#52B4E9FF' id: WarnLineGreyscaleW decals: - 12620: -11,-21 + 12353: -11,-21 - node: color: '#792DA9FF' id: WarnLineGreyscaleW @@ -23967,47 +23967,47 @@ entities: color: '#96DAFFFF' id: WarnLineGreyscaleW decals: - 11578: -35,-66 - 11583: -21,-60 - 11589: -21,-55 - 11590: 5,-54 - 11591: 5,-55 - 11592: 5,-56 - 11599: 5,-50 - 11600: 5,-51 - 11601: 5,-52 - 11603: 5,-66 + 11311: -35,-66 + 11316: -21,-60 + 11322: -21,-55 + 11323: 5,-54 + 11324: 5,-55 + 11325: 5,-56 + 11332: 5,-50 + 11333: 5,-51 + 11334: 5,-52 + 11336: 5,-66 - node: color: '#9FED58FF' id: WarnLineGreyscaleW decals: - 15680: 43,-4 + 15413: 43,-4 - node: color: '#BC863FFF' id: WarnLineGreyscaleW decals: - 1874: 89,-16 - 1875: 89,-14 - 1960: 61,0 - 2149: 85,5 - 2150: 85,7 - 2198: 55,7 - 2444: 83,-1 + 1827: 89,-16 + 1828: 89,-14 + 1913: 61,0 + 2102: 85,5 + 2103: 85,7 + 2151: 55,7 + 2397: 83,-1 - node: color: '#C6FF91FF' id: WarnLineGreyscaleW decals: - 10934: -72,0 - 11050: -63,27 - 11057: -42,14 - 11294: -8,57 - 11298: -8,60 - 11299: -8,61 - 11300: -8,62 - 11303: 3,41 - 11726: -41,40 - 14355: -41,6 - 14356: -41,8 + 10667: -72,0 + 10783: -63,27 + 10790: -42,14 + 11027: -8,57 + 11031: -8,60 + 11032: -8,61 + 11033: -8,62 + 11036: 3,41 + 11459: -41,40 + 14088: -41,6 + 14089: -41,8 - node: color: '#D381C9CC' id: WarnLineGreyscaleW @@ -24017,137 +24017,137 @@ entities: color: '#D381C9FF' id: WarnLineGreyscaleW decals: - 1757: 34,-20 - 1837: 50,-31 - 2223: 47,-32 - 2542: 70,-41 - 2642: 77,-31 - 2793: 59,-65 - 3126: 67,-31 - 6779: 59,-31 + 1710: 34,-20 + 1790: 50,-31 + 2176: 47,-32 + 2495: 70,-41 + 2595: 77,-31 + 2746: 59,-65 + 3079: 67,-31 + 6530: 59,-31 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 1799: -47,-16 - 1800: -47,-17 + 1752: -47,-16 + 1753: -47,-17 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleW decals: - 1988: 61,-7 - 4785: -77,44 - 4819: -73,47 - 9782: 43,3 - 9784: 43,3 - 9785: 43,3 - 9787: 43,10 + 1941: 61,-7 + 4588: -77,44 + 4622: -73,47 + 9515: 43,3 + 9517: 43,3 + 9518: 43,3 + 9520: 43,10 - node: color: '#E6E6E6FF' id: WarnLineGreyscaleW decals: - 14600: -73,53 - 14601: -73,54 - 14602: -73,55 + 14333: -73,53 + 14334: -73,54 + 14335: -73,55 - node: color: '#EFB341FF' id: WarnLineGreyscaleW decals: - 8312: 62,42 - 8313: 62,44 - 8559: 56,43 + 8045: 62,42 + 8046: 62,44 + 8292: 56,43 - node: color: '#FBB2FFFF' id: WarnLineGreyscaleW decals: - 10584: 39,-17 - 13885: 38,-13 + 10317: 39,-17 + 13618: 38,-13 - node: color: '#FF5C5CFF' id: WarnLineGreyscaleW decals: - 10686: -1,-30 - 10687: -1,-27 - 10688: -1,-25 - 11413: -8,-35 - 11414: -8,-36 - 11765: -41,-11 - 11780: -41,-16 - 11781: -41,-17 - 11833: -39,-33 - 11834: -39,-31 - 11855: -43,-34 - 11856: -43,-30 - 11861: -53,-30 - 11862: -53,-34 - 11863: -57,-30 - 11883: -43,-40 - 11886: -39,-44 - 11892: -8,-30 - 11895: -7,-25 - 11896: -7,-27 - 11901: -43,-22 - 11904: -41,-6 - 11906: -58,-11 - 11909: -66,-16 - 12120: -7,-25 - 12121: -7,-27 - 12122: -7,-27 - 12127: -1,-25 - 12128: -1,-27 - 12368: -43,-26 - 12428: -70,-16 - 12430: -74,-15 - 12431: -74,-17 - 12433: -76,-10 - 12434: -76,-22 - 12533: -80,-29 - 12534: -80,-7 - 12539: -12,-35 - 12540: -12,-36 - 13094: -54,-11 + 10419: -1,-30 + 10420: -1,-27 + 10421: -1,-25 + 11146: -8,-35 + 11147: -8,-36 + 11498: -41,-11 + 11513: -41,-16 + 11514: -41,-17 + 11566: -39,-33 + 11567: -39,-31 + 11588: -43,-34 + 11589: -43,-30 + 11594: -53,-30 + 11595: -53,-34 + 11596: -57,-30 + 11616: -43,-40 + 11619: -39,-44 + 11625: -8,-30 + 11628: -7,-25 + 11629: -7,-27 + 11634: -43,-22 + 11637: -41,-6 + 11639: -58,-11 + 11642: -66,-16 + 11853: -7,-25 + 11854: -7,-27 + 11855: -7,-27 + 11860: -1,-25 + 11861: -1,-27 + 12101: -43,-26 + 12161: -70,-16 + 12163: -74,-15 + 12164: -74,-17 + 12166: -76,-10 + 12167: -76,-22 + 12266: -80,-29 + 12267: -80,-7 + 12272: -12,-35 + 12273: -12,-36 + 12827: -54,-11 - node: color: '#FFA647FF' id: WarnLineGreyscaleW decals: - 13099: 20,39 - 13126: 17,27 - 13127: 20,31 - 13131: 39,32 - 13132: 39,34 - 13133: 50,35 - 13134: 50,37 - 13139: 39,22 - 13140: 39,20 - 16210: 39,10 + 12832: 20,39 + 12859: 17,27 + 12860: 20,31 + 12864: 39,32 + 12865: 39,34 + 12866: 50,35 + 12867: 50,37 + 12872: 39,22 + 12873: 39,20 + 15943: 39,10 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 11714: -76,55 - 11715: -76,54 - 11716: -76,53 - 14603: -73,53 - 14604: -73,54 - 14605: -73,55 + 11447: -76,55 + 11448: -76,54 + 11449: -76,53 + 14336: -73,53 + 14337: -73,54 + 14338: -73,55 - node: zIndex: 1 color: '#00000019' id: WarnLineN decals: - 21282: -33.000042,37.43738 + 20514: -33.000042,37.43738 - node: zIndex: 1 color: '#00000026' id: WarnLineN decals: - 21281: -33.000042,37.21863 + 20513: -33.000042,37.21863 - node: zIndex: 1 color: '#00000033' id: WarnLineN decals: - 21279: -33,37 + 20511: -33,37 - node: color: '#FFFFFFFF' id: WarnLineN @@ -24157,127 +24157,127 @@ entities: 244: 28,31 407: 55,-19 439: 56,-36 - 1071: -27,4 - 1072: -26,4 - 1073: -25,4 - 1198: -54,44 - 1221: -20,8 - 1470: 40,47 - 1471: 44,47 - 2383: 67,-38 - 2426: 82,-42 - 2427: 82,-37 - 2687: 68,-69 - 2688: 69,-69 - 2689: 70,-69 - 2693: 52,-69 - 2695: 50,-69 - 2699: 51,-69 - 2862: 55,-56 - 2863: 65,-56 - 3632: -2,3 - 3633: 2,3 - 3634: -1,-10 - 3635: 0,-10 - 3636: 1,-10 - 6084: 10,-40 - 6091: 14,-49 - 6094: 16,-41 - 7081: 35,-48 - 7082: 36,-48 - 7083: 37,-48 - 7089: 37,-41 - 7090: 35,-41 - 7091: 34,-41 - 7092: 36,-41 - 7227: 40,-61 - 8288: 67,45 - 8289: 66,45 - 8290: 65,45 - 8291: 64,45 - 8526: 63,51 - 8527: 66,51 - 8790: -58,-76 - 8791: -62,-76 - 8884: -62,-72 - 8885: -58,-72 - 12634: -11,-22 - 12635: -9,-22 - 12679: -57,-34 - 12680: -56,-34 - 12681: -55,-34 - 12687: -53,-34 - 12688: -51,-34 - 12689: -50,-34 - 12692: -52,-34 - 12722: -57,-30 - 12723: -56,-30 - 12724: -55,-30 - 12725: -53,-30 - 12726: -52,-30 - 12727: -51,-30 - 12728: -50,-30 - 12736: -59,-31 - 12737: -60,-31 - 21321: 10,-55 - 21322: 10,-62 + 1024: -27,4 + 1025: -26,4 + 1026: -25,4 + 1151: -54,44 + 1174: -20,8 + 1423: 40,47 + 1424: 44,47 + 2336: 67,-38 + 2379: 82,-42 + 2380: 82,-37 + 2640: 68,-69 + 2641: 69,-69 + 2642: 70,-69 + 2646: 52,-69 + 2648: 50,-69 + 2652: 51,-69 + 2815: 55,-56 + 2816: 65,-56 + 3585: -2,3 + 3586: 2,3 + 3587: -1,-10 + 3588: 0,-10 + 3589: 1,-10 + 5887: 10,-40 + 5894: 14,-49 + 5897: 16,-41 + 6814: 35,-48 + 6815: 36,-48 + 6816: 37,-48 + 6822: 37,-41 + 6823: 35,-41 + 6824: 34,-41 + 6825: 36,-41 + 6960: 40,-61 + 8021: 67,45 + 8022: 66,45 + 8023: 65,45 + 8024: 64,45 + 8259: 63,51 + 8260: 66,51 + 8523: -58,-76 + 8524: -62,-76 + 8617: -62,-72 + 8618: -58,-72 + 12367: -11,-22 + 12368: -9,-22 + 12412: -57,-34 + 12413: -56,-34 + 12414: -55,-34 + 12420: -53,-34 + 12421: -51,-34 + 12422: -50,-34 + 12425: -52,-34 + 12455: -57,-30 + 12456: -56,-30 + 12457: -55,-30 + 12458: -53,-30 + 12459: -52,-30 + 12460: -51,-30 + 12461: -50,-30 + 12469: -59,-31 + 12470: -60,-31 + 20553: 10,-55 + 20554: 10,-62 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineN decals: - 5507: 15,22 - 5508: 17,22 - 5509: 16,22 - 5510: 18,22 + 5310: 15,22 + 5311: 17,22 + 5312: 16,22 + 5313: 18,22 - node: color: '#FFFFFF5A' id: WarnLineS decals: - 10361: -53,-38 - 10362: -54,-41 - 10363: -54,-39 - 10364: -54,-40 - 10365: -54,-38 - 10367: -49,-41 - 10368: -49,-40 - 10369: -49,-41 - 10370: -49,-40 + 10094: -53,-38 + 10095: -54,-41 + 10096: -54,-39 + 10097: -54,-40 + 10098: -54,-38 + 10100: -49,-41 + 10101: -49,-40 + 10102: -49,-41 + 10103: -49,-40 - node: color: '#FFFFFF98' id: WarnLineS decals: - 10389: -53,-42 + 10122: -53,-42 - node: color: '#FFFFFF9B' id: WarnLineS decals: - 10335: -53,-38 - 10336: -53,-39 - 10337: -53,-40 - 10338: -53,-41 - 10339: -52,-38 - 10340: -52,-39 - 10341: -52,-40 - 10342: -52,-41 - 10343: -52,-42 - 10344: -51,-38 - 10345: -51,-39 - 10346: -51,-40 - 10347: -51,-41 - 10348: -51,-42 - 10349: -50,-38 - 10350: -50,-39 - 10351: -50,-40 - 10352: -50,-41 - 10353: -50,-42 - 10354: -49,-38 - 10355: -49,-39 - 10356: -49,-42 - 10357: -54,-38 - 10358: -54,-39 - 10359: -54,-40 - 10360: -54,-41 + 10068: -53,-38 + 10069: -53,-39 + 10070: -53,-40 + 10071: -53,-41 + 10072: -52,-38 + 10073: -52,-39 + 10074: -52,-40 + 10075: -52,-41 + 10076: -52,-42 + 10077: -51,-38 + 10078: -51,-39 + 10079: -51,-40 + 10080: -51,-41 + 10081: -51,-42 + 10082: -50,-38 + 10083: -50,-39 + 10084: -50,-40 + 10085: -50,-41 + 10086: -50,-42 + 10087: -49,-38 + 10088: -49,-39 + 10089: -49,-42 + 10090: -54,-38 + 10091: -54,-39 + 10092: -54,-40 + 10093: -54,-41 - node: color: '#FFFFFFFF' id: WarnLineS @@ -24285,127 +24285,127 @@ entities: 247: 25,32 248: 25,33 440: 55,-35 - 1044: -28,6 - 1045: -28,7 - 1046: -28,8 - 1047: -28,9 - 1048: -28,10 - 1049: -28,11 - 1050: -26,11 - 1051: -26,10 - 1052: -26,9 - 1053: -26,8 - 1054: -26,7 - 1055: -26,6 - 1056: -24,6 - 1057: -24,7 - 1058: -24,8 - 1059: -24,9 - 1060: -24,10 - 1061: -24,11 - 1062: -22,11 - 1063: -22,10 - 1064: -22,9 - 1065: -22,8 - 1066: -22,7 - 1067: -22,6 - 1074: -31,7 - 1075: -31,6 - 1076: -31,8 - 1077: -31,10 - 1078: -31,11 - 1079: -31,12 - 1082: -20,11 - 1083: -20,12 - 1084: -20,6 - 1087: -20,7 - 1225: -17,8 - 1226: -17,9 - 1227: -17,10 - 1333: -53,41 - 1472: 45,46 - 1473: 45,45 - 1474: 45,44 - 1475: 41,44 - 1476: 41,45 - 2386: 66,-37 - 2430: 81,-41 - 2432: 81,-36 - 3514: 10,1 - 3515: 10,0 - 3516: 10,-1 - 6096: 15,-40 - 7084: 38,-46 - 7085: 38,-45 - 7086: 38,-44 - 7087: 38,-43 - 7088: 38,-42 - 7093: 38,-52 - 7094: 38,-51 - 7095: 38,-50 - 7096: 38,-49 - 7228: 39,-60 - 8147: 38,44 - 8148: 38,45 - 8149: 38,46 - 8150: 38,47 - 8192: 41,46 - 8193: 38,43 - 8285: 68,42 - 8286: 68,43 - 8287: 68,44 - 8524: 64,48 - 8525: 64,50 - 8531: 67,48 - 8532: 67,49 - 8533: 67,50 - 8556: 64,49 - 10311: -55,-43 - 10312: -55,-41 - 10313: -55,-40 - 10314: -55,-39 - 10315: -55,-38 - 10316: -55,-37 - 10317: -54,-37 - 10318: -54,-43 - 10319: -54,-43 - 10322: -53,-37 - 10323: -53,-43 - 10324: -52,-43 - 10325: -51,-43 - 10326: -50,-43 - 10327: -49,-43 - 10328: -52,-37 - 10329: -51,-37 - 10330: -50,-37 - 10331: -50,-37 - 10332: -49,-37 - 12639: -10,-23 - 12640: -10,-20 - 12762: -61,-28 - 12763: -61,-29 - 12764: -61,-30 - 12765: -61,-31 - 12766: -61,-32 - 13013: -76,-34 - 13152: 54,31 - 13153: 54,32 - 13154: 54,33 - 15608: -20,5 - 15609: -20,13 + 997: -28,6 + 998: -28,7 + 999: -28,8 + 1000: -28,9 + 1001: -28,10 + 1002: -28,11 + 1003: -26,11 + 1004: -26,10 + 1005: -26,9 + 1006: -26,8 + 1007: -26,7 + 1008: -26,6 + 1009: -24,6 + 1010: -24,7 + 1011: -24,8 + 1012: -24,9 + 1013: -24,10 + 1014: -24,11 + 1015: -22,11 + 1016: -22,10 + 1017: -22,9 + 1018: -22,8 + 1019: -22,7 + 1020: -22,6 + 1027: -31,7 + 1028: -31,6 + 1029: -31,8 + 1030: -31,10 + 1031: -31,11 + 1032: -31,12 + 1035: -20,11 + 1036: -20,12 + 1037: -20,6 + 1040: -20,7 + 1178: -17,8 + 1179: -17,9 + 1180: -17,10 + 1286: -53,41 + 1425: 45,46 + 1426: 45,45 + 1427: 45,44 + 1428: 41,44 + 1429: 41,45 + 2339: 66,-37 + 2383: 81,-41 + 2385: 81,-36 + 3467: 10,1 + 3468: 10,0 + 3469: 10,-1 + 5899: 15,-40 + 6817: 38,-46 + 6818: 38,-45 + 6819: 38,-44 + 6820: 38,-43 + 6821: 38,-42 + 6826: 38,-52 + 6827: 38,-51 + 6828: 38,-50 + 6829: 38,-49 + 6961: 39,-60 + 7880: 38,44 + 7881: 38,45 + 7882: 38,46 + 7883: 38,47 + 7925: 41,46 + 7926: 38,43 + 8018: 68,42 + 8019: 68,43 + 8020: 68,44 + 8257: 64,48 + 8258: 64,50 + 8264: 67,48 + 8265: 67,49 + 8266: 67,50 + 8289: 64,49 + 10044: -55,-43 + 10045: -55,-41 + 10046: -55,-40 + 10047: -55,-39 + 10048: -55,-38 + 10049: -55,-37 + 10050: -54,-37 + 10051: -54,-43 + 10052: -54,-43 + 10055: -53,-37 + 10056: -53,-43 + 10057: -52,-43 + 10058: -51,-43 + 10059: -50,-43 + 10060: -49,-43 + 10061: -52,-37 + 10062: -51,-37 + 10063: -50,-37 + 10064: -50,-37 + 10065: -49,-37 + 12372: -10,-23 + 12373: -10,-20 + 12495: -61,-28 + 12496: -61,-29 + 12497: -61,-30 + 12498: -61,-31 + 12499: -61,-32 + 12746: -76,-34 + 12885: 54,31 + 12886: 54,32 + 12887: 54,33 + 15341: -20,5 + 15342: -20,13 - node: zIndex: 1 color: '#0000000C' id: WarnLineW decals: - 21280: -33,37 + 20512: -33,37 - node: angle: -4.71238898038469 rad color: '#FFFFFF98' id: WarnLineW decals: - 10385: -55,-42 - 10386: -55,-42 + 10118: -55,-42 + 10119: -55,-42 - node: color: '#FFFFFFFF' id: WarnLineW @@ -24415,276 +24415,276 @@ entities: 241: 28,34 406: 55,-18 442: 56,-34 - 1068: -27,2 - 1069: -26,2 - 1070: -25,2 - 1197: -54,44 - 1222: -20,10 - 1468: 40,43 - 1469: 44,43 - 2384: 67,-36 - 2424: 82,-40 - 2425: 82,-35 - 2861: 55,-55 - 2864: 65,-55 - 2971: -71,19 - 2972: -70,19 - 2975: -72,19 - 6085: 10,-39 - 6092: 14,-48 - 6093: 16,-39 - 7077: 34,-47 - 7078: 35,-47 - 7079: 36,-47 - 7080: 37,-47 - 7229: 40,-59 - 7878: 29,47 - 7879: 30,47 - 7905: 31,47 - 8122: 34,40 - 8123: 35,40 - 8281: 64,41 - 8282: 65,41 - 8283: 66,41 - 8284: 67,41 - 8534: 66,47 - 8535: 63,47 - 8792: -62,-74 - 8793: -58,-74 - 8882: -62,-78 - 8883: -58,-78 - 12648: -11,-21 - 12649: -9,-21 - 12682: -57,-34 - 12683: -56,-34 - 12684: -55,-34 - 12685: -53,-34 - 12686: -51,-34 - 12690: -50,-34 - 12691: -52,-34 - 12729: -50,-30 - 12730: -51,-30 - 12731: -52,-30 - 12732: -53,-30 - 12733: -55,-30 - 12734: -56,-30 - 12735: -57,-30 - 12759: -60,-30 - 12760: -59,-30 - 21319: 10,-61 - 21320: 10,-54 + 1021: -27,2 + 1022: -26,2 + 1023: -25,2 + 1150: -54,44 + 1175: -20,10 + 1421: 40,43 + 1422: 44,43 + 2337: 67,-36 + 2377: 82,-40 + 2378: 82,-35 + 2814: 55,-55 + 2817: 65,-55 + 2924: -71,19 + 2925: -70,19 + 2928: -72,19 + 5888: 10,-39 + 5895: 14,-48 + 5896: 16,-39 + 6810: 34,-47 + 6811: 35,-47 + 6812: 36,-47 + 6813: 37,-47 + 6962: 40,-59 + 7611: 29,47 + 7612: 30,47 + 7638: 31,47 + 7855: 34,40 + 7856: 35,40 + 8014: 64,41 + 8015: 65,41 + 8016: 66,41 + 8017: 67,41 + 8267: 66,47 + 8268: 63,47 + 8525: -62,-74 + 8526: -58,-74 + 8615: -62,-78 + 8616: -58,-78 + 12381: -11,-21 + 12382: -9,-21 + 12415: -57,-34 + 12416: -56,-34 + 12417: -55,-34 + 12418: -53,-34 + 12419: -51,-34 + 12423: -50,-34 + 12424: -52,-34 + 12462: -50,-30 + 12463: -51,-30 + 12464: -52,-30 + 12465: -53,-30 + 12466: -55,-30 + 12467: -56,-30 + 12468: -57,-30 + 12492: -60,-30 + 12493: -59,-30 + 20551: 10,-61 + 20552: 10,-54 - node: color: '#737273FF' id: WoodTrimThinBox decals: - 11875: -48,-8 + 11608: -48,-8 - node: color: '#A0A0A0FF' id: WoodTrimThinBox decals: - 11337: -66,-13 + 11070: -66,-13 - node: color: '#A1A29EFF' id: WoodTrimThinBox decals: - 11333: -66,-13 + 11066: -66,-13 - node: color: '#C7C5BDFF' id: WoodTrimThinBox decals: - 2780: -2,-7 + 2733: -2,-7 - node: color: '#CACCC3FF' id: WoodTrimThinBox decals: - 2708: 6,-5 + 2661: 6,-5 - node: color: '#CDCCD0FF' id: WoodTrimThinBox decals: - 6028: -32,-47 - 6029: -30,-47 - 6030: -28,-47 + 5831: -32,-47 + 5832: -30,-47 + 5833: -28,-47 - node: color: '#CDCDCDFF' id: WoodTrimThinBox decals: - 9896: 3,-31 - 9897: 3,-32 - 9900: 3,-31 - 9901: 3,-32 + 9629: 3,-31 + 9630: 3,-32 + 9633: 3,-31 + 9634: 3,-32 - node: color: '#D0D5D6FF' id: WoodTrimThinBox decals: - 11376: -66,-6 - 11377: -66,-6 + 11109: -66,-6 + 11110: -66,-6 - node: color: '#D6D2D9FF' id: WoodTrimThinBox decals: - 18027: -72,75 - 18028: -68,75 + 17760: -72,75 + 17761: -68,75 - node: color: '#DCDCDCFF' id: WoodTrimThinBox decals: - 8913: -27,-58 - 8914: -32,-62 - 8915: -22,-60 - 10804: -51,-21 - 10814: -55,-25 + 8646: -27,-58 + 8647: -32,-62 + 8648: -22,-60 + 10537: -51,-21 + 10547: -55,-25 - node: color: '#DFE2ECFF' id: WoodTrimThinBox decals: - 3999: -37,37 + 3855: -37,37 - node: color: '#E6E2E3FF' id: WoodTrimThinBox decals: - 4151: -11,34 - 4152: -9,34 + 3958: -11,34 + 3959: -9,34 - node: color: '#E6E2ECFF' id: WoodTrimThinBox decals: - 3981: -42,30 - 3982: -42,37 + 3839: -42,30 + 3840: -42,37 - node: color: '#E6E6E6FF' id: WoodTrimThinBox decals: - 17598: -49,94 - 17599: -56,94 + 17331: -49,94 + 17332: -56,94 - node: color: '#E9E5E9FF' id: WoodTrimThinBox decals: - 6332: -3,-63 + 6083: -3,-63 - node: color: '#ECEBE9FF' id: WoodTrimThinBox decals: - 18026: -72,75 + 17759: -72,75 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 983: -32,-7 - 3083: -87,9 - 3084: -79,9 - 3091: -83,10 - 3092: -82,10 - 3094: -84,10 - 3095: -84,9 - 3096: -85,9 - 3097: -84,8 - 3098: -83,8 - 3099: -82,8 - 3101: -82,9 - 3103: -81,9 - 4150: -11,36 - 4153: -11,34 - 4154: -9,34 - 4155: -11,36 - 20145: -27,-57 + 936: -32,-7 + 3036: -87,9 + 3037: -79,9 + 3044: -83,10 + 3045: -82,10 + 3047: -84,10 + 3048: -84,9 + 3049: -85,9 + 3050: -84,8 + 3051: -83,8 + 3052: -82,8 + 3054: -82,9 + 3056: -81,9 + 3957: -11,36 + 3960: -11,34 + 3961: -9,34 + 3962: -11,36 + 19878: -27,-57 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 5414: -71,62 - 5415: -71,64 - 5416: -61,67 - 5417: -71,60 - 5418: -72,62 - 5419: -72,60 - 5420: -75,62 - 5421: -74,62 - 5422: -73,62 - 5423: -73,61 - 5424: -73,60 - 5425: -74,60 - 5426: -74,61 - 5457: -77,60 - 5458: -77,61 - 5459: -77,62 - 5460: -76,62 - 5461: -76,61 - 5462: -75,61 - 5463: -75,60 - 5464: -76,60 - 20078: -62,-87 + 5217: -71,62 + 5218: -71,64 + 5219: -61,67 + 5220: -71,60 + 5221: -72,62 + 5222: -72,60 + 5223: -75,62 + 5224: -74,62 + 5225: -73,62 + 5226: -73,61 + 5227: -73,60 + 5228: -74,60 + 5229: -74,61 + 5260: -77,60 + 5261: -77,61 + 5262: -77,62 + 5263: -76,62 + 5264: -76,61 + 5265: -75,61 + 5266: -75,60 + 5267: -76,60 + 19811: -62,-87 - node: color: '#C7BFC3FF' id: WoodTrimThinCornerNe decals: - 5368: -14,66 + 5171: -14,66 - node: color: '#CDCCCDFF' id: WoodTrimThinCornerNe decals: - 13368: -69,33 + 13101: -69,33 - node: color: '#CDCCD3FF' id: WoodTrimThinCornerNe decals: - 11221: -65,-12 - 11223: -61,-6 - 11252: -64,-6 + 10954: -65,-12 + 10956: -61,-6 + 10985: -64,-6 - node: color: '#CDCDCDFF' id: WoodTrimThinCornerNe decals: - 5990: -14,-45 - 6936: 20,-64 + 5793: -14,-45 + 6669: 20,-64 - node: color: '#D0D5D6FF' id: WoodTrimThinCornerNe decals: - 11727: -51,-4 + 11460: -51,-4 - node: color: '#DCDCDCFF' id: WoodTrimThinCornerNe decals: - 10808: -51,-24 + 10541: -51,-24 - node: color: '#DFD2D3FF' id: WoodTrimThinCornerNe decals: - 1624: -39,74 - 1625: -36,73 + 1577: -39,74 + 1578: -36,73 - node: color: '#E1E1E1FF' id: WoodTrimThinCornerNe decals: - 21248: -39,37 + 20489: -39,37 - node: color: '#E6E2ECFF' id: WoodTrimThinCornerNe decals: - 3971: -32,30 + 3837: -32,30 - node: color: '#E6E6E6FF' id: WoodTrimThinCornerNe decals: - 17587: -47,98 + 17320: -47,98 - node: color: '#E6E8E9FF' id: WoodTrimThinCornerNe decals: - 4096: -29,40 + 3906: -29,40 - node: color: '#E9E5E9FF' id: WoodTrimThinCornerNe decals: - 6334: 3,-65 + 6085: 3,-65 - node: color: '#E9E8EFFF' id: WoodTrimThinCornerNe decals: - 15697: -64,40 + 15430: -64,40 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -24694,99 +24694,99 @@ entities: 424: 69,7 716: -33,24 826: -27,51 - 984: -31,-8 - 1342: -31,-7 - 3043: -85,8 - 3250: 1,57 - 3290: -4,39 - 3355: -4,47 - 4688: -79,50 - 4698: -79,61 - 4710: -92,46 - 4711: -93,47 - 4739: -93,65 - 4740: -92,64 - 6450: -1,71 - 6461: -10,71 - 6582: 25,20 - 6585: 25,24 - 6654: 30,24 - 12902: -77,-14 - 21284: -29,32 + 937: -31,-8 + 1295: -31,-7 + 2996: -85,8 + 3203: 1,57 + 3243: -4,39 + 3308: -4,47 + 4491: -79,50 + 4501: -79,61 + 4513: -92,46 + 4514: -93,47 + 4542: -93,65 + 4543: -92,64 + 6201: -1,71 + 6212: -10,71 + 6333: 25,20 + 6336: 25,24 + 6405: 30,24 + 12635: -77,-14 + 20516: -29,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 5452: -59,67 - 16216: -54,75 - 16217: -57,75 - 16223: -54,72 - 16227: -57,72 + 5255: -59,67 + 15949: -54,75 + 15950: -57,75 + 15956: -54,72 + 15960: -57,72 - node: color: '#C7BFC3FF' id: WoodTrimThinCornerNw decals: - 5367: -15,66 + 5170: -15,66 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerNw decals: - 5934: -32,-41 + 5737: -32,-41 - node: color: '#CDCCCDFF' id: WoodTrimThinCornerNw decals: - 13367: -73,33 + 13100: -73,33 - node: color: '#CDCCD3FF' id: WoodTrimThinCornerNw decals: - 11220: -66,-12 - 11253: -66,-6 + 10953: -66,-12 + 10986: -66,-6 - node: color: '#CDCDCDFF' id: WoodTrimThinCornerNw decals: - 5991: -15,-45 - 6937: 17,-64 + 5794: -15,-45 + 6670: 17,-64 - node: color: '#D0D5D6FF' id: WoodTrimThinCornerNw decals: - 11742: -54,-4 + 11475: -54,-4 - node: color: '#DCDCDCFF' id: WoodTrimThinCornerNw decals: - 10803: -52,-21 - 10807: -53,-24 + 10536: -52,-21 + 10540: -53,-24 - node: color: '#DFD2D3FF' id: WoodTrimThinCornerNw decals: - 1622: -52,73 - 1623: -49,74 + 1575: -52,73 + 1576: -49,74 - node: color: '#DFE2ECFF' id: WoodTrimThinCornerNw decals: - 4001: -41,37 + 3856: -41,37 - node: color: '#E6E6E6FF' id: WoodTrimThinCornerNw decals: - 17586: -50,98 + 17319: -50,98 - node: color: '#E6E8E9FF' id: WoodTrimThinCornerNw decals: - 4100: -37,39 + 3910: -37,39 - node: color: '#E9E8EFFF' id: WoodTrimThinCornerNw decals: - 15698: -66,40 + 15431: -66,40 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -24794,95 +24794,95 @@ entities: 24: 38,-29 299: 27,-29 828: -29,51 - 3036: -81,8 - 3249: -3,57 - 3262: -14,39 - 3359: -8,47 - 4687: -82,50 - 4699: -82,61 - 4713: -95,47 - 4714: -96,46 - 4736: -96,64 - 4737: -95,65 - 4776: -93,58 - 6451: -4,71 - 6462: -13,71 - 6657: 24,24 - 12899: -80,-14 - 21287: -31,32 + 2989: -81,8 + 3202: -3,57 + 3215: -14,39 + 3312: -8,47 + 4490: -82,50 + 4502: -82,61 + 4516: -95,47 + 4517: -96,46 + 4539: -96,64 + 4540: -95,65 + 4579: -93,58 + 6202: -4,71 + 6213: -13,71 + 6408: 24,24 + 12632: -80,-14 + 20519: -31,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 5453: -61,67 - 16215: -55,75 - 16218: -58,75 - 16226: -58,72 + 5256: -61,67 + 15948: -55,75 + 15951: -58,75 + 15959: -58,72 - node: color: '#C3C5CDFF' id: WoodTrimThinCornerSe decals: - 15716: -68,34 - 15717: -63,34 + 15449: -68,34 + 15450: -63,34 - node: color: '#C7BFC3FF' id: WoodTrimThinCornerSe decals: - 5369: -14,63 + 5172: -14,63 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerSe decals: - 5955: -14,-47 + 5758: -14,-47 - node: cleanable: True color: '#CACFD3FF' id: WoodTrimThinCornerSe decals: - 5831: -18,55 + 5634: -18,55 - node: color: '#CDCCD3FF' id: WoodTrimThinCornerSe decals: - 11209: -64,-10 - 11250: -64,-7 + 10942: -64,-10 + 10983: -64,-7 - node: color: '#CDCDCDFF' id: WoodTrimThinCornerSe decals: - 6939: 20,-65 + 6672: 20,-65 - node: color: '#DCDCDCFF' id: WoodTrimThinCornerSe decals: - 10811: -51,-25 + 10544: -51,-25 - node: color: '#DFD2D3FF' id: WoodTrimThinCornerSe decals: - 1628: -36,69 - 1629: -51,69 + 1581: -36,69 + 1582: -51,69 - node: color: '#E1E1E1FF' id: WoodTrimThinCornerSe decals: - 21247: -39,30 + 20488: -39,30 - node: color: '#E6E2ECFF' id: WoodTrimThinCornerSe decals: - 3972: -32,32 + 3838: -32,32 - node: color: '#E6E6E6FF' id: WoodTrimThinCornerSe decals: - 17588: -47,95 + 17321: -47,95 - node: color: '#E6E8E9FF' id: WoodTrimThinCornerSe decals: - 4098: -29,38 + 3908: -29,38 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -24892,94 +24892,94 @@ entities: 423: 69,6 713: -35,23 834: -27,47 - 1240: -33,20 - 1274: -31,-10 - 3037: -85,10 - 3251: 1,54 - 3292: -4,37 - 3353: -4,41 - 4686: -79,47 - 4702: -79,58 - 4716: -93,43 - 4717: -92,44 - 4730: -93,61 - 4731: -92,62 - 4781: -89,61 - 5829: -18,55 - 6449: -1,69 - 6460: -10,69 - 6655: 30,23 - 12900: -77,-18 - 21285: -29,30 + 1193: -33,20 + 1227: -31,-10 + 2990: -85,10 + 3204: 1,54 + 3245: -4,37 + 3306: -4,41 + 4489: -79,47 + 4505: -79,58 + 4519: -93,43 + 4520: -92,44 + 4533: -93,61 + 4534: -92,62 + 4584: -89,61 + 5632: -18,55 + 6200: -1,69 + 6211: -10,69 + 6406: 30,23 + 12633: -77,-18 + 20517: -29,30 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 5449: -59,66 - 16212: -57,74 - 16214: -54,74 - 16228: -57,71 + 5252: -59,66 + 15945: -57,74 + 15947: -54,74 + 15961: -57,71 - node: color: '#C7BFC3FF' id: WoodTrimThinCornerSw decals: - 5370: -15,63 + 5173: -15,63 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerSw decals: - 5956: -18,-47 + 5759: -18,-47 - node: cleanable: True color: '#CACFD3FF' id: WoodTrimThinCornerSw decals: - 5832: -21,55 + 5635: -21,55 - node: color: '#CDCCD3FF' id: WoodTrimThinCornerSw decals: - 11254: -66,-7 + 10987: -66,-7 - node: color: '#CDCDCDFF' id: WoodTrimThinCornerSw decals: - 6938: 17,-65 + 6671: 17,-65 - node: color: '#D9DFE9FF' id: WoodTrimThinCornerSw decals: - 4868: -18,58 - 4876: -18,58 + 4671: -18,58 + 4679: -18,58 - node: color: '#DCDCDCFF' id: WoodTrimThinCornerSw decals: - 8902: -26,-58 - 10805: -52,-22 - 10813: -53,-25 + 8635: -26,-58 + 10538: -52,-22 + 10546: -53,-25 - node: color: '#DFD2D3FF' id: WoodTrimThinCornerSw decals: - 1626: -52,69 - 1627: -37,69 + 1579: -52,69 + 1580: -37,69 - node: color: '#E6E2ECFF' id: WoodTrimThinCornerSw decals: - 3964: -41,30 + 3833: -41,30 - node: color: '#E6E6E6FF' id: WoodTrimThinCornerSw decals: - 17589: -50,95 + 17322: -50,95 - node: color: '#E6E8E9FF' id: WoodTrimThinCornerSw decals: - 4099: -37,38 + 3909: -37,38 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -24988,438 +24988,438 @@ entities: 312: 27,-33 721: -37,21 832: -29,47 - 1241: -34,20 - 3040: -81,10 - 3252: -3,54 - 4689: -82,47 - 4700: -82,59 - 4701: -81,58 - 4719: -95,43 - 4720: -96,44 - 4733: -95,61 - 4734: -96,62 - 4779: -93,57 - 4780: -91,61 - 5830: -21,55 - 6448: -4,69 - 6459: -13,69 - 6584: 24,20 - 6733: -3,-67 - 6738: 0,-69 - 12901: -80,-18 - 21286: -31,30 + 1194: -34,20 + 2993: -81,10 + 3205: -3,54 + 4492: -82,47 + 4503: -82,59 + 4504: -81,58 + 4522: -95,43 + 4523: -96,44 + 4536: -95,61 + 4537: -96,62 + 4582: -93,57 + 4583: -91,61 + 5633: -21,55 + 6199: -4,69 + 6210: -13,69 + 6335: 24,20 + 6484: -3,-67 + 6489: 0,-69 + 12634: -80,-18 + 20518: -31,30 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 5450: -61,66 - 16213: -55,74 - 16219: -58,74 - 16220: -58,71 - 20075: -63,-88 + 5253: -61,66 + 15946: -55,74 + 15952: -58,74 + 15953: -58,71 + 19808: -63,-88 - node: color: '#CDCCD3FF' id: WoodTrimThinEndE decals: - 11232: -60,-9 - 11265: -65,-13 + 10965: -60,-9 + 10998: -65,-13 - node: color: '#CDCDCDFF' id: WoodTrimThinEndE decals: - 6963: 20,-64 + 6696: 20,-64 - node: color: '#CDD2D6FF' id: WoodTrimThinEndE decals: - 12130: -63,-24 + 11863: -63,-24 - node: color: '#D0D8D3FF' id: WoodTrimThinEndE decals: - 17779: -50,107 + 17512: -50,107 - node: color: '#DCDCDCFF' id: WoodTrimThinEndE decals: - 8901: -25,-58 + 8634: -25,-58 - node: color: '#DFE2ECFF' id: WoodTrimThinEndE decals: - 3998: -34,37 + 3854: -34,37 - node: color: '#E9E5E9FF' id: WoodTrimThinEndE decals: - 6333: -2,-63 + 6084: -2,-63 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 3299: -3,35 - 3308: -3,33 - 21141: -36,33 - 21142: -36,31 - 21143: -36,36 + 3252: -3,35 + 3261: -3,33 + 20396: -36,33 + 20397: -36,31 + 20398: -36,36 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 20077: -62,-88 + 19810: -62,-88 - node: color: '#ABA8ABFF' id: WoodTrimThinEndN decals: - 1522: -47,64 - 1523: -41,64 - 1541: -47,64 - 1542: -41,64 + 1475: -47,64 + 1476: -41,64 + 1494: -47,64 + 1495: -41,64 - node: color: '#C7BFC3FF' id: WoodTrimThinEndN decals: - 5375: -15,65 + 5178: -15,65 - node: color: '#CDCDCDFF' id: WoodTrimThinEndN decals: - 5989: -18,-45 + 5792: -18,-45 - node: color: '#D9D8DFFF' id: WoodTrimThinEndN decals: - 2723: -8,-4 - 2724: -3,-4 + 2676: -8,-4 + 2677: -3,-4 - node: color: '#DCDCDCFF' id: WoodTrimThinEndN decals: - 8903: -26,-57 + 8636: -26,-57 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 20074: -63,-87 + 19807: -63,-87 - node: color: '#C7BFC3FF' id: WoodTrimThinEndS decals: - 5376: -15,64 + 5179: -15,64 - node: color: '#E6E8E9FF' id: WoodTrimThinEndS decals: - 4095: -30,40 + 3905: -30,40 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 16221: -54,70 + 15954: -54,70 - node: color: '#CDCCD3FF' id: WoodTrimThinEndW decals: - 11264: -66,-13 + 10997: -66,-13 - node: color: '#CDCDCDFF' id: WoodTrimThinEndW decals: - 6962: 19,-64 + 6695: 19,-64 - node: color: '#CDD2D6FF' id: WoodTrimThinEndW decals: - 12129: -64,-24 + 11862: -64,-24 - node: color: '#D0D8D3FF' id: WoodTrimThinEndW decals: - 17778: -53,107 + 17511: -53,107 - node: color: '#DCDCDCFF' id: WoodTrimThinEndW decals: - 10830: -56,-24 + 10563: -56,-24 - node: color: '#DFE2ECFF' id: WoodTrimThinEndW decals: - 3997: -35,37 + 3853: -35,37 - node: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: - 21144: -38,36 - 21145: -38,33 - 21146: -38,31 - 21182: -34,33 - 21183: -34,36 + 20399: -38,36 + 20400: -38,33 + 20401: -38,31 + 20431: -34,33 + 20432: -34,36 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinEndW decals: - 16222: -55,72 + 15955: -55,72 - node: color: '#ABA8ABFF' id: WoodTrimThinInnerNe decals: - 1529: -47,63 - 1530: -41,63 + 1482: -47,63 + 1483: -41,63 - node: color: '#CDCCCDFF' id: WoodTrimThinInnerNe decals: - 13373: -69,32 + 13106: -69,32 - node: color: '#CDCCD3FF' id: WoodTrimThinInnerNe decals: - 11237: -61,-9 + 10970: -61,-9 - node: color: '#D6CFD9FF' id: WoodTrimThinInnerNe decals: - 1584: -48,66 + 1537: -48,66 - node: color: '#DCDCDCFF' id: WoodTrimThinInnerNe decals: - 8909: -28,-58 - 10850: -56,-22 + 8642: -28,-58 + 10583: -56,-22 - node: color: '#DFD2D3FF' id: WoodTrimThinInnerNe decals: - 1650: -39,73 + 1603: -39,73 - node: color: '#E3E2E3FF' id: WoodTrimThinInnerNe decals: - 9101: 12,-86 - 9107: 8,-81 + 8834: 12,-86 + 8840: 8,-81 - node: color: '#ECE8ECFF' id: WoodTrimThinInnerNe decals: - 2778: -8,-13 + 2731: -8,-13 - node: color: '#EFE5E9FF' id: WoodTrimThinInnerNe decals: - 3183: 4,-12 + 3136: 4,-12 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: 32: 41,-29 301: 28,-29 - 900: -20,-11 - 901: -20,-10 - 986: -32,-8 - 1001: -19,-11 - 2848: -73,5 - 3064: -88,8 - 3065: -86,8 - 3066: -80,8 - 3284: -11,39 - 3294: -8,39 - 3302: -6,35 - 3325: -7.99741,31.849323 - 3368: -8,42 - 3428: -13,33 - 3438: -13,35 - 3523: -6,33 - 4712: -93,46 - 4741: -93,64 - 6477: -1,74 - 6479: 1,74 - 6588: 24,20 - 8038: 41,22 - 21136: -30,36 - 21292: -29,32 + 853: -20,-11 + 854: -20,-10 + 939: -32,-8 + 954: -19,-11 + 2801: -73,5 + 3017: -88,8 + 3018: -86,8 + 3019: -80,8 + 3237: -11,39 + 3247: -8,39 + 3255: -6,35 + 3278: -7.99741,31.849323 + 3321: -8,42 + 3381: -13,33 + 3391: -13,35 + 3476: -6,33 + 4515: -93,46 + 4544: -93,64 + 6228: -1,74 + 6230: 1,74 + 6339: 24,20 + 7771: 41,22 + 20395: -30,36 + 20524: -29,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 20076: -63,-88 + 19809: -63,-88 - node: color: '#ABA8ABFF' id: WoodTrimThinInnerNw decals: - 1531: -47,63 - 1532: -41,63 + 1484: -47,63 + 1485: -41,63 - node: color: '#CDCCCDFF' id: WoodTrimThinInnerNw decals: - 13372: -73,32 + 13105: -73,32 - node: color: '#CDCCD3FF' id: WoodTrimThinInnerNw decals: - 11241: -62,-9 + 10974: -62,-9 - node: color: '#D6CFD9FF' id: WoodTrimThinInnerNw decals: - 1585: -40,66 + 1538: -40,66 - node: color: '#DCDCDCFF' id: WoodTrimThinInnerNw decals: - 10833: -54,-24 + 10566: -54,-24 - node: color: '#DFD2D3FF' id: WoodTrimThinInnerNw decals: - 1649: -49,73 + 1602: -49,73 - node: color: '#E3E2E3FF' id: WoodTrimThinInnerNw decals: - 9100: 8,-86 - 9108: 12,-81 + 8833: 8,-86 + 8841: 12,-81 - node: color: '#E6E8E9FF' id: WoodTrimThinInnerNw decals: - 4094: -31,39 + 3904: -31,39 - node: color: '#E6E8ECFF' id: WoodTrimThinInnerNw decals: - 7622: -12,-61 + 7355: -12,-61 - node: color: '#ECE8ECFF' id: WoodTrimThinInnerNw decals: - 2777: -3,-13 + 2730: -3,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: 33: 41,-29 302: 28,-29 - 902: -21,-10 - 985: -32,-8 - 999: -21,-11 - 1000: -22,-11 - 2846: -69,5 - 3067: -86,8 - 3069: -80,8 - 3071: -78,8 - 3268: -11,39 - 3296: -8,39 - 3315: -5,32 - 3326: -5.016216,31.849323 - 3369: -4,42 - 3423: -7,33 - 3439: -7,35 - 4715: -95,46 - 4738: -95,64 - 4775: -92,48 - 6478: 1,74 - 21135: -30,36 - 21293: -31,32 + 855: -21,-10 + 938: -32,-8 + 952: -21,-11 + 953: -22,-11 + 2799: -69,5 + 3020: -86,8 + 3022: -80,8 + 3024: -78,8 + 3221: -11,39 + 3249: -8,39 + 3268: -5,32 + 3279: -5.016216,31.849323 + 3322: -4,42 + 3376: -7,33 + 3392: -7,35 + 4518: -95,46 + 4541: -95,64 + 4578: -92,48 + 6229: 1,74 + 20394: -30,36 + 20525: -31,32 - node: color: '#C8C8C8FF' id: WoodTrimThinInnerSe decals: - 5976: -28,-44 - 5978: -27,-44 + 5779: -28,-44 + 5781: -27,-44 - node: color: '#CDCCD3FF' id: WoodTrimThinInnerSe decals: - 11239: -64,-9 + 10972: -64,-9 - node: color: '#CDCDCDFF' id: WoodTrimThinInnerSe decals: - 9891: 6,-31 + 9624: 6,-31 - node: color: '#D2D2D2FF' id: WoodTrimThinInnerSe decals: - 10556: -38,-38 + 10289: -38,-38 - node: zIndex: 30 color: '#D9D2D0FF' id: WoodTrimThinInnerSe decals: - 13475: -77,30 + 13208: -77,30 - node: color: '#DFD2D3FF' id: WoodTrimThinInnerSe decals: - 1666: -51,71 + 1619: -51,71 - node: color: '#E3E2E3FF' id: WoodTrimThinInnerSe decals: - 9076: 12,-78 + 8809: 12,-78 - node: color: '#EFE5E9FF' id: WoodTrimThinInnerSe decals: - 3182: 8,-13 + 3135: 8,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: 304: 28,-33 - 1005: -24,-9 - 1979: 67,6 - 2844: -73,13 - 3061: -88,10 - 3062: -86,10 - 3063: -80,10 - 3295: -6,37 - 3305: -6,35 - 3349: -8,41 - 3360: -8,47 - 3411: -13,33 - 3424: -13,35 - 3425: -13,37 - 4718: -93,44 - 4732: -93,62 - 6476: -1,79 - 6647: 27,23 - 6653: 24,22 - 8039: 41,26 - 21295: -29,30 + 958: -24,-9 + 1932: 67,6 + 2797: -73,13 + 3014: -88,10 + 3015: -86,10 + 3016: -80,10 + 3248: -6,37 + 3258: -6,35 + 3302: -8,41 + 3313: -8,47 + 3364: -13,33 + 3377: -13,35 + 3378: -13,37 + 4521: -93,44 + 4535: -93,62 + 6227: -1,79 + 6398: 27,23 + 6404: 24,22 + 7772: 41,26 + 20527: -29,30 - node: color: '#DCDCDCFF' id: WoodTrimThinInnerSw decals: - 10834: -54,-24 + 10567: -54,-24 - node: color: '#DFD2D3FF' id: WoodTrimThinInnerSw decals: - 1667: -37,71 + 1620: -37,71 - node: color: '#DFD8DCFF' id: WoodTrimThinInnerSw decals: - 12388: -59,-19 + 12121: -59,-19 - node: color: '#E3E2E3FF' id: WoodTrimThinInnerSw decals: - 9075: 8,-78 + 8808: 8,-78 - node: color: '#EFE5E9FF' id: WoodTrimThinInnerSw decals: - 3181: 8,-13 + 3134: 8,-13 - node: angle: -0.3490658503988659 rad color: '#FFFFFFFF' @@ -25439,363 +25439,363 @@ entities: 431: -114.42469,9.961205 432: -114.49761,10.6903715 433: 68,6 - 1006: -22,-9 - 1242: -34,21 - 1977: 67,6 - 2842: -69,13 - 3057: -80,10 - 3058: -78,10 - 3059: -86,10 - 3361: -4,47 - 3426: -7,37 - 3427: -7,35 - 4703: -81,59 - 4721: -95,44 - 4735: -95,62 - 6736: 0,-67 - 8037: 49,26 - 8045: 45,25 - 21294: -31,30 + 959: -22,-9 + 1195: -34,21 + 1930: 67,6 + 2795: -69,13 + 3010: -80,10 + 3011: -78,10 + 3012: -86,10 + 3314: -4,47 + 3379: -7,37 + 3380: -7,35 + 4506: -81,59 + 4524: -95,44 + 4538: -95,62 + 6487: 0,-67 + 7770: 49,26 + 7778: 45,25 + 20526: -31,30 - node: color: '#737273FF' id: WoodTrimThinLineE decals: - 11867: -48,-8 - 11868: -48,-7 + 11600: -48,-8 + 11601: -48,-7 - node: color: '#ABAFA4FF' id: WoodTrimThinLineE decals: - 7557: -11,-57 + 7290: -11,-57 - node: color: '#C3C5CDFF' id: WoodTrimThinLineE decals: - 15718: -63,35 - 15719: -63,36 - 15720: -63,37 - 15721: -63,38 - 15722: -63,38 - 15723: -63,39 + 15451: -63,35 + 15452: -63,36 + 15453: -63,37 + 15454: -63,38 + 15455: -63,38 + 15456: -63,39 - node: color: '#C7BFC3FF' id: WoodTrimThinLineE decals: - 5371: -14,65 - 5372: -14,64 - 5380: -11,66 - 5381: -11,65 + 5174: -14,65 + 5175: -14,64 + 5183: -11,66 + 5184: -11,65 - node: color: '#C7C5CAFF' id: WoodTrimThinLineE decals: - 7585: -14,-58 - 7586: -14,-59 - 7587: -14,-60 + 7318: -14,-58 + 7319: -14,-59 + 7320: -14,-60 - node: color: '#C8C8C8FF' id: WoodTrimThinLineE decals: - 5952: -14,-45 - 5953: -14,-46 - 5954: -14,-47 - 5967: -28,-45 - 5974: -28,-45 + 5755: -14,-45 + 5756: -14,-46 + 5757: -14,-47 + 5770: -28,-45 + 5777: -28,-45 - node: color: '#CACCC3FF' id: WoodTrimThinLineE decals: - 2707: 5,-5 + 2660: 5,-5 - node: cleanable: True color: '#CACFD3FF' id: WoodTrimThinLineE decals: - 5833: -18,56 + 5636: -18,56 - node: color: '#CDCCCDFF' id: WoodTrimThinLineE decals: - 13374: -68,35 - 13375: -68,36 - 13376: -68,36 + 13107: -68,35 + 13108: -68,36 + 13109: -68,36 - node: color: '#CDCCD0FF' id: WoodTrimThinLineE decals: - 6031: -28,-46 + 5834: -28,-46 - node: color: '#CDCCD3FF' id: WoodTrimThinLineE decals: - 11234: -61,-7 - 11235: -61,-8 + 10967: -61,-7 + 10968: -61,-8 - node: color: '#CDCDCDFF' id: WoodTrimThinLineE decals: - 6019: -22,-41 - 6020: -22,-42 - 6021: -22,-43 - 6022: -22,-44 - 9873: 8,-29 - 9874: 8,-30 - 9875: 8,-31 - 9876: 8,-31 - 9877: 8,-32 - 9890: 6,-32 + 5822: -22,-41 + 5823: -22,-42 + 5824: -22,-43 + 5825: -22,-44 + 9606: 8,-29 + 9607: 8,-30 + 9608: 8,-31 + 9609: 8,-31 + 9610: 8,-32 + 9623: 6,-32 - node: color: '#CDD2D6FF' id: WoodTrimThinLineE decals: - 12131: -62,-24 - 12132: -62,-23 - 12143: -58,-19 - 12144: -58,-20 - 12145: -58,-21 - 12146: -58,-22 - 12157: -60,-18 + 11864: -62,-24 + 11865: -62,-23 + 11876: -58,-19 + 11877: -58,-20 + 11878: -58,-21 + 11879: -58,-22 + 11890: -60,-18 - node: color: '#D0C5CDFF' id: WoodTrimThinLineE decals: - 1684: -39,67 - 1686: -48,67 + 1637: -39,67 + 1639: -48,67 - node: color: '#D0D5D6FF' id: WoodTrimThinLineE decals: - 11734: -51,-5 - 11735: -51,-5 - 11736: -51,-6 - 11737: -51,-7 + 11467: -51,-5 + 11468: -51,-5 + 11469: -51,-6 + 11470: -51,-7 - node: color: '#D0D5D9FF' id: WoodTrimThinLineE decals: - 2054: -51,64 - 2483: 6,-4 - 2484: 6,-5 - 2485: 6,-6 + 2007: -51,64 + 2436: 6,-4 + 2437: 6,-5 + 2438: 6,-6 - node: color: '#D2D2D2FF' id: WoodTrimThinLineE decals: - 10539: -34,-37 - 10540: -34,-38 - 10548: -38,-41 - 10549: -38,-40 - 10550: -38,-39 + 10272: -34,-37 + 10273: -34,-38 + 10281: -38,-41 + 10282: -38,-40 + 10283: -38,-39 - node: color: '#D6CFD9FF' id: WoodTrimThinLineE decals: - 1550: -39,64 - 1551: -39,65 - 1552: -39,66 - 1553: -39,67 - 1554: -39,68 - 1555: -39,69 - 1581: -39,67 - 1582: -48,67 - 1586: -39,68 + 1503: -39,64 + 1504: -39,65 + 1505: -39,66 + 1506: -39,67 + 1507: -39,68 + 1508: -39,69 + 1534: -39,67 + 1535: -48,67 + 1539: -39,68 - node: color: '#D6D2D9FF' id: WoodTrimThinLineE decals: - 18042: -68,76 - 18043: -68,74 + 17775: -68,76 + 17776: -68,74 - node: zIndex: 30 color: '#D9D2D0FF' id: WoodTrimThinLineE decals: - 13458: -76,32 - 13459: -76,31 - 13460: -76,30 - 13461: -76,30 - 13462: -77,29 + 13191: -76,32 + 13192: -76,31 + 13193: -76,30 + 13194: -76,30 + 13195: -77,29 - node: color: '#D9D8DFFF' id: WoodTrimThinLineE decals: - 2725: -3,-5 - 2726: -3,-6 - 2727: -3,-7 - 2728: -3,-8 - 2729: -3,-9 - 2730: -3,-11 - 2731: -3,-12 - 2732: -3,-10 - 2751: -3,-13 + 2678: -3,-5 + 2679: -3,-6 + 2680: -3,-7 + 2681: -3,-8 + 2682: -3,-9 + 2683: -3,-11 + 2684: -3,-12 + 2685: -3,-10 + 2704: -3,-13 - node: color: '#D9DFE9FF' id: WoodTrimThinLineE decals: - 4871: -18,57 - 4899: -19,59 - 4904: -14,59 - 4905: -14,58 - 4906: -14,57 - 4907: -15,56 - 4908: -15,55 + 4674: -18,57 + 4702: -19,59 + 4707: -14,59 + 4708: -14,58 + 4709: -14,57 + 4710: -15,56 + 4711: -15,55 - node: color: '#DCDBDCFF' id: WoodTrimThinLineE decals: - 2024: -51,61 - 2025: -51,62 - 2026: -51,63 - 2027: -51,65 - 2028: -51,66 - 2029: -51,67 + 1977: -51,61 + 1978: -51,62 + 1979: -51,63 + 1980: -51,65 + 1981: -51,66 + 1982: -51,67 - node: color: '#DCDCDCFF' id: WoodTrimThinLineE decals: - 8907: -28,-57 - 8912: -28,-58 - 10841: -55,-22 - 10842: -55,-23 - 10849: -56,-21 + 8640: -28,-57 + 8645: -28,-58 + 10574: -55,-22 + 10575: -55,-23 + 10582: -56,-21 - node: color: '#DFD2D3FF' id: WoodTrimThinLineE decals: - 1630: -36,72 - 1631: -36,71 - 1632: -36,70 - 1651: -51,70 + 1583: -36,72 + 1584: -36,71 + 1585: -36,70 + 1604: -51,70 - node: color: '#E0E2E1FF' id: WoodTrimThinLineE decals: - 8919: -29,-57 - 8920: -29,-58 - 8921: -29,-59 - 8934: -29,-61 - 8935: -29,-62 - 8936: -29,-63 - 8944: -23,-63 - 8945: -23,-62 - 8946: -23,-61 - 8947: -23,-61 - 8948: -23,-60 + 8652: -29,-57 + 8653: -29,-58 + 8654: -29,-59 + 8667: -29,-61 + 8668: -29,-62 + 8669: -29,-63 + 8677: -23,-63 + 8678: -23,-62 + 8679: -23,-61 + 8680: -23,-61 + 8681: -23,-60 - node: color: '#E1E1E1FF' id: WoodTrimThinLineE decals: - 21161: -32,34 - 21162: -32,35 - 21180: -32,36 - 21181: -32,33 - 21249: -39,36 - 21254: -39,35 - 21255: -39,34 - 21258: -39,33 - 21259: -39,32 - 21260: -39,31 - 21278: -33,37 + 20413: -32,34 + 20414: -32,35 + 20429: -32,36 + 20430: -32,33 + 20490: -39,36 + 20491: -39,35 + 20492: -39,34 + 20493: -39,33 + 20494: -39,32 + 20495: -39,31 + 20510: -33,37 - node: color: '#E3DBDCFF' id: WoodTrimThinLineE decals: - 1688: -51,71 - 1689: -51,72 - 1690: -51,73 + 1641: -51,71 + 1642: -51,72 + 1643: -51,73 - node: color: '#E3E2E3FF' id: WoodTrimThinLineE decals: - 9049: 12,-79 - 9050: 12,-80 - 9051: 12,-81 - 9052: 12,-82 - 9053: 12,-82 - 9054: 12,-83 - 9055: 12,-84 - 9056: 12,-85 - 9077: 14,-78 - 9078: 14,-86 - 9102: 8,-78 - 9103: 8,-78 - 9104: 8,-79 - 9105: 8,-80 - 9111: 12,-78 - 9112: 12,-86 + 8782: 12,-79 + 8783: 12,-80 + 8784: 12,-81 + 8785: 12,-82 + 8786: 12,-82 + 8787: 12,-83 + 8788: 12,-84 + 8789: 12,-85 + 8810: 14,-78 + 8811: 14,-86 + 8835: 8,-78 + 8836: 8,-78 + 8837: 8,-79 + 8838: 8,-80 + 8844: 12,-78 + 8845: 12,-86 - node: color: '#E6E6E6FF' id: WoodTrimThinLineE decals: - 17592: -47,97 - 17593: -47,96 + 17325: -47,97 + 17326: -47,96 - node: color: '#E6E8E9FF' id: WoodTrimThinLineE decals: - 4097: -29,39 - 4111: -32,41 + 3907: -29,39 + 3921: -32,41 - node: color: '#E6E8ECFF' id: WoodTrimThinLineE decals: - 7599: -9,-58 - 7609: -9,-59 - 7610: -9,-60 - 7611: -9,-61 - 7612: -9,-61 - 7613: -9,-61 - 7614: -9,-62 + 7332: -9,-58 + 7342: -9,-59 + 7343: -9,-60 + 7344: -9,-61 + 7345: -9,-61 + 7346: -9,-61 + 7347: -9,-62 - node: color: '#E9E5E9FF' id: WoodTrimThinLineE decals: - 6347: 3,-65 - 6348: 3,-65 - 6349: 3,-66 - 6350: 3,-67 - 6351: 3,-67 - 6352: 3,-68 - 6353: 3,-68 - 6356: 3,-69 + 6098: 3,-65 + 6099: 3,-65 + 6100: 3,-66 + 6101: 3,-67 + 6102: 3,-67 + 6103: 3,-68 + 6104: 3,-68 + 6107: 3,-69 - node: color: '#ECE8ECFF' id: WoodTrimThinLineE decals: - 2765: -8,-5 - 2766: -8,-6 - 2767: -8,-7 - 2768: -8,-8 - 2769: -8,-9 - 2770: -8,-10 - 2771: -8,-11 - 2772: -8,-12 + 2718: -8,-5 + 2719: -8,-6 + 2720: -8,-7 + 2721: -8,-8 + 2722: -8,-9 + 2723: -8,-10 + 2724: -8,-11 + 2725: -8,-12 - node: color: '#EFE5E9FF' id: WoodTrimThinLineE decals: - 3148: 4,-9 - 3149: 4,-10 - 3150: 4,-11 - 3169: 6,-14 - 3170: 6,-13 - 3171: 6,-12 - 3172: 9,-12 - 3173: 9,-13 - 3177: 9,-12 - 3178: 9,-13 - 3179: 8,-14 + 3101: 4,-9 + 3102: 4,-10 + 3103: 4,-11 + 3122: 6,-14 + 3123: 6,-13 + 3124: 6,-12 + 3125: 9,-12 + 3126: 9,-13 + 3130: 9,-12 + 3131: 9,-13 + 3132: 8,-14 - node: color: '#FFF8F8FF' id: WoodTrimThinLineE decals: - 2492: 8,-4 - 2493: 9,-5 - 2494: 9,-6 - 2495: 9,-7 - 2496: 8,-5 - 2497: 8,-6 - 2498: 8,-7 + 2445: 8,-4 + 2446: 9,-5 + 2447: 9,-6 + 2448: 9,-7 + 2449: 8,-5 + 2450: 8,-6 + 2451: 8,-7 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -25809,627 +25809,627 @@ entities: 835: -27,48 836: -27,49 837: -27,50 - 889: -19,-11 - 890: -19,-12 - 896: -20,-10 - 945: -24,-10 - 946: -24,-11 - 947: -24,-12 - 967: -22,-7 - 968: -22,-6 - 993: -27,-6 - 994: -27,-7 - 1018: -20,-10 - 1243: -33,21 - 1277: -32,-8 - 1278: -32,-9 - 1279: -32,-10 - 1343: -31,-9 - 2172: -39,58 - 2183: -39,60 - 2184: -39,59 - 2193: -39.003128,62.84547 - 2811: -73,6 - 2812: -73,7 - 2813: -73,8 - 2814: -73,9 - 2816: -73,10 - 2817: -73,11 - 2818: -73,12 - 2913: -70,6 - 2914: -70,7 - 2915: -70,8 - 2916: -70,10 - 2917: -70,11 - 2919: -70,12 - 3045: -88,9 - 3046: -86,9 - 3047: -80,9 - 3245: -8,31 - 3246: -8,30 - 3258: 1,55 - 3260: 1,56 - 3279: -11,44 - 3280: -11,43 - 3281: -11,42 - 3282: -11,41 - 3283: -11,40 - 3291: -4,38 - 3297: -6,36 - 3298: -6,34 - 3312: -13,32 - 3334: -8,46 - 3335: -8,45 - 3336: -8,44 - 3337: -8,43 - 3338: -4,43 - 3339: -4,44 - 3340: -4,45 - 3341: -4,46 - 3346: -8,40 - 3354: -4,42 - 3429: -13,34 - 3430: -13,36 - 4145: -32,37 - 4690: -79,48 - 4691: -79,49 - 4704: -79,59 - 4705: -79,60 - 4722: -92,45 - 4728: -92,63 - 4773: -92,47 - 5826: -18,56 - 6452: -1,70 - 6467: -10,70 - 6471: -1,75 - 6472: -1,76 - 6473: -1,76 - 6474: -1,77 - 6475: -1,78 - 6586: 25,23 - 6587: 24,21 - 6613: 30,22 - 6614: 30,21 - 6615: 30,20 - 6639: 27,20 - 6640: 27,21 - 6641: 27,22 - 6651: 25,22 - 8030: 41,23 - 8031: 41,24 - 12906: -77,-17 - 12907: -77,-16 - 12908: -77,-15 - 16231: -69.017265,-3.9417996 - 16232: -69.142265,-3.9464293 - 21131: -30,37 - 21288: -29,31 + 842: -19,-11 + 843: -19,-12 + 849: -20,-10 + 898: -24,-10 + 899: -24,-11 + 900: -24,-12 + 920: -22,-7 + 921: -22,-6 + 946: -27,-6 + 947: -27,-7 + 971: -20,-10 + 1196: -33,21 + 1230: -32,-8 + 1231: -32,-9 + 1232: -32,-10 + 1296: -31,-9 + 2125: -39,58 + 2136: -39,60 + 2137: -39,59 + 2146: -39.003128,62.84547 + 2764: -73,6 + 2765: -73,7 + 2766: -73,8 + 2767: -73,9 + 2769: -73,10 + 2770: -73,11 + 2771: -73,12 + 2866: -70,6 + 2867: -70,7 + 2868: -70,8 + 2869: -70,10 + 2870: -70,11 + 2872: -70,12 + 2998: -88,9 + 2999: -86,9 + 3000: -80,9 + 3198: -8,31 + 3199: -8,30 + 3211: 1,55 + 3213: 1,56 + 3232: -11,44 + 3233: -11,43 + 3234: -11,42 + 3235: -11,41 + 3236: -11,40 + 3244: -4,38 + 3250: -6,36 + 3251: -6,34 + 3265: -13,32 + 3287: -8,46 + 3288: -8,45 + 3289: -8,44 + 3290: -8,43 + 3291: -4,43 + 3292: -4,44 + 3293: -4,45 + 3294: -4,46 + 3299: -8,40 + 3307: -4,42 + 3382: -13,34 + 3383: -13,36 + 3954: -32,37 + 4493: -79,48 + 4494: -79,49 + 4507: -79,59 + 4508: -79,60 + 4525: -92,45 + 4531: -92,63 + 4576: -92,47 + 5629: -18,56 + 6203: -1,70 + 6218: -10,70 + 6222: -1,75 + 6223: -1,76 + 6224: -1,76 + 6225: -1,77 + 6226: -1,78 + 6337: 25,23 + 6338: 24,21 + 6364: 30,22 + 6365: 30,21 + 6366: 30,20 + 6390: 27,20 + 6391: 27,21 + 6392: 27,22 + 6402: 25,22 + 7763: 41,23 + 7764: 41,24 + 12639: -77,-17 + 12640: -77,-16 + 12641: -77,-15 + 15964: -69.017265,-3.9417996 + 15965: -69.142265,-3.9464293 + 20390: -30,37 + 20520: -29,31 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 16224: -54,71 + 15957: -54,71 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2044: -54.423035,64.07721 + 1997: -54.423035,64.07721 - node: angle: 1.3962634015954636 rad color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2048: -51.892452,65.2019 + 2001: -51.892452,65.2019 - node: angle: 1.7453292519943295 rad color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2045: -51.9619,65.8755 + 1998: -51.9619,65.8755 - node: zIndex: 90 angle: 3.839724354387525 rad color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 12748: 85.08398,-53.900898 - 12749: 85.33398,-53.791523 - 12750: 85.52148,-53.635273 - 12751: 84.50585,-52.400898 + 12481: 85.08398,-53.900898 + 12482: 85.33398,-53.791523 + 12483: 85.52148,-53.635273 + 12484: 84.50585,-52.400898 - node: color: '#737273FF' id: WoodTrimThinLineN decals: - 11873: -49,-7 - 11874: -48,-7 + 11606: -49,-7 + 11607: -48,-7 - node: color: '#9E9C9DFF' id: WoodTrimThinLineN decals: - 15699: -62,35 + 15432: -62,35 - node: color: '#ABA8ABFF' id: WoodTrimThinLineN decals: - 1518: -49,63 - 1519: -48,63 - 1520: -40,63 - 1521: -39,63 - 1524: -46,63 - 1525: -45,63 - 1526: -44,63 - 1527: -43,63 - 1528: -42,63 - 1533: -47.023968,63.878128 - 1534: -47.00082,63.748505 - 1535: -47.00082,63.614243 - 1536: -47.005447,63.470722 - 1537: -40.981846,63.841095 - 1538: -40.991108,63.688316 - 1539: -41.000366,63.549423 - 1540: -40.991108,63.40128 + 1471: -49,63 + 1472: -48,63 + 1473: -40,63 + 1474: -39,63 + 1477: -46,63 + 1478: -45,63 + 1479: -44,63 + 1480: -43,63 + 1481: -42,63 + 1486: -47.023968,63.878128 + 1487: -47.00082,63.748505 + 1488: -47.00082,63.614243 + 1489: -47.005447,63.470722 + 1490: -40.981846,63.841095 + 1491: -40.991108,63.688316 + 1492: -41.000366,63.549423 + 1493: -40.991108,63.40128 - node: color: '#BA9F95FF' id: WoodTrimThinLineN decals: - 3323: 5,-4 + 3276: 5,-4 - node: color: '#C3C5BDFF' id: WoodTrimThinLineN decals: - 15701: -67,35 + 15434: -67,35 - node: color: '#C3C5CDFF' id: WoodTrimThinLineN decals: - 15724: -66,39 - 15725: -65,39 - 15726: -64,39 - 15727: -63,39 - 15728: -63,39 + 15457: -66,39 + 15458: -65,39 + 15459: -64,39 + 15460: -63,39 + 15461: -63,39 - node: color: '#C7BFC3FF' id: WoodTrimThinLineN decals: - 5377: -13,66 - 5378: -12,66 - 5379: -11,66 + 5180: -13,66 + 5181: -12,66 + 5182: -11,66 - node: color: '#C7C5CAFF' id: WoodTrimThinLineN decals: - 7579: -16,-58 - 7580: -15,-58 - 7581: -14,-58 + 7312: -16,-58 + 7313: -15,-58 + 7314: -14,-58 - node: color: '#C8C8C8FF' id: WoodTrimThinLineN decals: - 5935: -31,-41 - 5936: -30,-41 - 5937: -29,-41 - 5938: -28,-41 - 5939: -27,-41 - 5940: -26,-41 - 5941: -24,-41 - 5942: -24,-41 - 5943: -24,-41 - 5944: -23,-41 - 5945: -22,-41 - 5946: -22,-41 - 5947: -24,-41 - 5948: -24,-41 - 5949: -22,-41 - 5950: -25,-41 - 5951: -25,-41 + 5738: -31,-41 + 5739: -30,-41 + 5740: -29,-41 + 5741: -28,-41 + 5742: -27,-41 + 5743: -26,-41 + 5744: -24,-41 + 5745: -24,-41 + 5746: -24,-41 + 5747: -23,-41 + 5748: -22,-41 + 5749: -22,-41 + 5750: -24,-41 + 5751: -24,-41 + 5752: -22,-41 + 5753: -25,-41 + 5754: -25,-41 - node: color: '#CAC8CAFF' id: WoodTrimThinLineN decals: - 11801: -52,-4 + 11534: -52,-4 - node: color: '#CDCCCDFF' id: WoodTrimThinLineN decals: - 13364: -74,32 - 13365: -68,32 - 13366: -68,32 - 13369: -72,33 - 13370: -71,33 - 13371: -70,33 - 13382: -74,36 - 13383: -73,36 - 13384: -71,36 - 13385: -70,36 - 13386: -69,36 - 13387: -69,36 - 13388: -68,36 - 13389: -68,36 - 13390: -68,36 - 13398: -74,33 + 13097: -74,32 + 13098: -68,32 + 13099: -68,32 + 13102: -72,33 + 13103: -71,33 + 13104: -70,33 + 13115: -74,36 + 13116: -73,36 + 13117: -71,36 + 13118: -70,36 + 13119: -69,36 + 13120: -69,36 + 13121: -68,36 + 13122: -68,36 + 13123: -68,36 + 13131: -74,33 - node: color: '#CDCCD3FF' id: WoodTrimThinLineN decals: - 11210: -66,-9 - 11211: -65,-9 - 11212: -64,-9 - 11213: -63,-9 - 11225: -62,-6 - 11255: -65,-6 + 10943: -66,-9 + 10944: -65,-9 + 10945: -64,-9 + 10946: -63,-9 + 10958: -62,-6 + 10988: -65,-6 - node: color: '#CDCDCDFF' id: WoodTrimThinLineN decals: - 6940: 18,-64 - 6941: 19,-64 - 9868: 4,-29 - 9869: 5,-29 - 9870: 6,-29 - 9871: 7,-29 - 9872: 8,-29 + 6673: 18,-64 + 6674: 19,-64 + 9601: 4,-29 + 9602: 5,-29 + 9603: 6,-29 + 9604: 7,-29 + 9605: 8,-29 - node: color: '#CDD2D6FF' id: WoodTrimThinLineN decals: - 12134: -64,-23 - 12135: -63,-23 - 12136: -62,-23 - 12152: -61,-19 - 12153: -59,-19 - 12154: -59,-19 - 12155: -58,-19 - 12156: -60,-19 + 11867: -64,-23 + 11868: -63,-23 + 11869: -62,-23 + 11885: -61,-19 + 11886: -59,-19 + 11887: -59,-19 + 11888: -58,-19 + 11889: -60,-19 - node: color: '#D0D5D6FF' id: WoodTrimThinLineN decals: - 11728: -53,-4 + 11461: -53,-4 - node: color: '#D0D5D9FF' id: WoodTrimThinLineN decals: - 2480: 3,-4 - 2481: 4,-4 - 2482: 6,-4 + 2433: 3,-4 + 2434: 4,-4 + 2435: 6,-4 - node: color: '#D0D8D3FF' id: WoodTrimThinLineN decals: - 17774: -53,107 - 17775: -52,107 - 17776: -51,107 - 17777: -50,107 + 17507: -53,107 + 17508: -52,107 + 17509: -51,107 + 17510: -50,107 - node: color: '#D2D2D2FF' id: WoodTrimThinLineN decals: - 10532: -39,-37 - 10533: -38,-37 - 10534: -37,-37 - 10535: -36,-37 - 10536: -35,-37 - 10537: -35,-37 - 10538: -34,-37 + 10265: -39,-37 + 10266: -38,-37 + 10267: -37,-37 + 10268: -36,-37 + 10269: -35,-37 + 10270: -35,-37 + 10271: -34,-37 - node: color: '#D6CFD9FF' id: WoodTrimThinLineN decals: - 1556: -49,69 - 1557: -48,69 - 1558: -47,69 - 1559: -46,69 - 1560: -45,69 - 1561: -44,69 - 1562: -43,69 - 1563: -42,69 - 1564: -41,69 - 1565: -40,69 - 1566: -39,69 - 1567: -47,66 - 1568: -45,66 - 1569: -44,66 - 1570: -43,66 - 1571: -41,66 - 1572: -49,67 - 1573: -48,67 - 1574: -40,67 - 1575: -39,67 - 1576: -40.00982,66.85305 - 1577: -39.016766,66.85305 - 1578: -48.000355,66.8438 - 1579: -48.995724,66.8438 - 1588: -46,66 - 1589: -42,66 - 1590: -46,67 - 1591: -42,67 + 1509: -49,69 + 1510: -48,69 + 1511: -47,69 + 1512: -46,69 + 1513: -45,69 + 1514: -44,69 + 1515: -43,69 + 1516: -42,69 + 1517: -41,69 + 1518: -40,69 + 1519: -39,69 + 1520: -47,66 + 1521: -45,66 + 1522: -44,66 + 1523: -43,66 + 1524: -41,66 + 1525: -49,67 + 1526: -48,67 + 1527: -40,67 + 1528: -39,67 + 1529: -40.00982,66.85305 + 1530: -39.016766,66.85305 + 1531: -48.000355,66.8438 + 1532: -48.995724,66.8438 + 1541: -46,66 + 1542: -42,66 + 1543: -46,67 + 1544: -42,67 - node: color: '#D6D2D9FF' id: WoodTrimThinLineN decals: - 18036: -72,76 - 18037: -71,76 - 18038: -70,76 - 18039: -69,76 - 18040: -68,76 - 18041: -68,76 + 17769: -72,76 + 17770: -71,76 + 17771: -70,76 + 17772: -69,76 + 17773: -68,76 + 17774: -68,76 - node: zIndex: 30 angle: -0.10471975511965978 rad color: '#D9D2D0FF' id: WoodTrimThinLineN decals: - 13450: -72.7912,34.04801 + 13183: -72.7912,34.04801 - node: zIndex: 30 color: '#D9D2D0FF' id: WoodTrimThinLineN decals: - 13452: -80,32 - 13453: -79,32 - 13454: -78,32 - 13455: -77,32 - 13456: -76,32 - 13457: -76,32 - 13477: -75,31 + 13185: -80,32 + 13186: -79,32 + 13187: -78,32 + 13188: -77,32 + 13189: -76,32 + 13190: -76,32 + 13210: -75,31 - node: zIndex: 30 angle: 0.15707963267948966 rad color: '#D9D2D0FF' id: WoodTrimThinLineN decals: - 13451: -72.9162,34.61051 + 13184: -72.9162,34.61051 - node: zIndex: 30 angle: 0.5235987755982988 rad color: '#D9D2D0FF' id: WoodTrimThinLineN decals: - 13449: -69.82245,35.532387 + 13182: -69.82245,35.532387 - node: color: '#D9D8DFFF' id: WoodTrimThinLineN decals: - 2753: -7,-5 - 2754: -6,-5 - 2755: -5,-5 - 2756: -4,-5 + 2706: -7,-5 + 2707: -6,-5 + 2708: -5,-5 + 2709: -4,-5 - node: color: '#D9DFE9FF' id: WoodTrimThinLineN decals: - 4869: -19,58 - 4870: -21,58 - 4874: -20,58 - 4886: -13,62 - 4887: -11,62 - 4888: -9,62 - 4889: -14,62 - 4890: -15,62 - 4892: -16,61 - 4893: -17,61 - 4894: -22,61 - 4895: -21,61 - 4896: -20,61 - 4917: -16,58 - 4918: -15,58 - 4919: -14,58 + 4672: -19,58 + 4673: -21,58 + 4677: -20,58 + 4689: -13,62 + 4690: -11,62 + 4691: -9,62 + 4692: -14,62 + 4693: -15,62 + 4695: -16,61 + 4696: -17,61 + 4697: -22,61 + 4698: -21,61 + 4699: -20,61 + 4720: -16,58 + 4721: -15,58 + 4722: -14,58 - node: color: '#DCDBD9FF' id: WoodTrimThinLineN decals: - 4931: -19,61 - 4932: -18,61 + 4734: -19,61 + 4735: -18,61 - node: color: '#DCDBDCFF' id: WoodTrimThinLineN decals: - 2030: -54,67 - 2031: -53,67 - 2032: -52,67 - 2033: -51,67 + 1983: -54,67 + 1984: -53,67 + 1985: -52,67 + 1986: -51,67 - node: color: '#DCDCDCFF' id: WoodTrimThinLineN decals: - 8906: -28,-57 - 8908: -27,-58 - 10809: -52,-24 - 10824: -56,-24 - 10826: -55,-24 - 10835: -56,-21 - 10843: -55,-22 - 10844: -54,-21 - 10845: -53,-21 + 8639: -28,-57 + 8641: -27,-58 + 10542: -52,-24 + 10557: -56,-24 + 10559: -55,-24 + 10568: -56,-21 + 10576: -55,-22 + 10577: -54,-21 + 10578: -53,-21 - node: color: '#DFD2D3FF' id: WoodTrimThinLineN decals: - 1636: -51,73 - 1637: -50,73 - 1638: -37,73 - 1639: -38,73 - 1640: -40,74 - 1641: -48,74 - 1642: -47,74 - 1643: -46,74 - 1644: -45,74 - 1645: -44,74 - 1646: -43,74 - 1647: -42,74 - 1648: -41,74 + 1589: -51,73 + 1590: -50,73 + 1591: -37,73 + 1592: -38,73 + 1593: -40,74 + 1594: -48,74 + 1595: -47,74 + 1596: -46,74 + 1597: -45,74 + 1598: -44,74 + 1599: -43,74 + 1600: -42,74 + 1601: -41,74 - node: color: '#DFE2ECFF' id: WoodTrimThinLineN decals: - 4004: -38,37 + 3857: -38,37 - node: color: '#E0E2E1FF' id: WoodTrimThinLineN decals: - 8916: -31,-57 - 8917: -30,-57 - 8918: -29,-57 - 8931: -31,-61 - 8932: -30,-61 - 8933: -29,-61 - 8949: -26,-60 - 8950: -25,-60 - 8951: -24,-60 - 8952: -23,-60 + 8649: -31,-57 + 8650: -30,-57 + 8651: -29,-57 + 8664: -31,-61 + 8665: -30,-61 + 8666: -29,-61 + 8682: -26,-60 + 8683: -25,-60 + 8684: -24,-60 + 8685: -23,-60 - node: color: '#E3DFD9FF' id: WoodTrimThinLineN decals: - 2782: -2,-7 + 2735: -2,-7 - node: color: '#E3E2E3FF' id: WoodTrimThinLineN decals: - 9043: 6,-78 - 9044: 7,-78 - 9045: 8,-78 - 9046: 12,-78 - 9047: 13,-78 - 9048: 14,-78 - 9096: 6,-86 - 9097: 7,-86 - 9098: 13,-86 - 9099: 14,-86 + 8776: 6,-78 + 8777: 7,-78 + 8778: 8,-78 + 8779: 12,-78 + 8780: 13,-78 + 8781: 14,-78 + 8829: 6,-86 + 8830: 7,-86 + 8831: 13,-86 + 8832: 14,-86 - node: color: '#E6E6E6FF' id: WoodTrimThinLineN decals: - 17590: -49,98 - 17591: -48,98 + 17323: -49,98 + 17324: -48,98 - node: color: '#E6E8E9FF' id: WoodTrimThinLineN decals: - 4087: -37,39 - 4088: -36,39 - 4089: -35,39 - 4090: -34,39 - 4091: -33,39 - 4092: -32,39 - 4101: -30,39 - 4102: -31,40 + 3897: -37,39 + 3898: -36,39 + 3899: -35,39 + 3900: -34,39 + 3901: -33,39 + 3902: -32,39 + 3911: -30,39 + 3912: -31,40 - node: color: '#E6E8ECFF' id: WoodTrimThinLineN decals: - 7594: -12,-58 - 7595: -11,-58 - 7596: -10,-58 - 7597: -9,-58 - 7598: -9,-58 - 7617: -16,-61 - 7618: -15,-61 - 7619: -14,-61 - 7620: -13,-61 - 7621: -13,-61 + 7327: -12,-58 + 7328: -11,-58 + 7329: -10,-58 + 7330: -9,-58 + 7331: -9,-58 + 7350: -16,-61 + 7351: -15,-61 + 7352: -14,-61 + 7353: -13,-61 + 7354: -13,-61 - node: color: '#E9E5E9FF' id: WoodTrimThinLineN decals: - 6335: 2,-65 - 6336: 1,-65 - 6337: 0,-65 - 6338: -1,-65 - 6339: -2,-65 - 6340: -3,-65 - 6357: -4,-66 - 6358: 4,-66 + 6086: 2,-65 + 6087: 1,-65 + 6088: 0,-65 + 6089: -1,-65 + 6090: -2,-65 + 6091: -3,-65 + 6108: -4,-66 + 6109: 4,-66 - node: color: '#ECE8ECFF' id: WoodTrimThinLineN decals: - 2773: -7,-13 - 2774: -6,-13 - 2775: -5,-13 - 2776: -4,-13 + 2726: -7,-13 + 2727: -6,-13 + 2728: -5,-13 + 2729: -4,-13 - node: color: '#EFE5E9FF' id: WoodTrimThinLineN decals: - 3158: 5,-12 - 3159: 6,-12 - 3160: 7,-12 - 3161: 8,-12 - 3162: 9,-12 - 3174: 8,-12 - 3175: 9,-12 - 3176: 7,-12 - 3186: 4,-12 - 3187: 3,-12 + 3111: 5,-12 + 3112: 6,-12 + 3113: 7,-12 + 3114: 8,-12 + 3115: 9,-12 + 3127: 8,-12 + 3128: 9,-12 + 3129: 7,-12 + 3139: 4,-12 + 3140: 3,-12 - node: color: '#FFF8F8FF' id: WoodTrimThinLineN decals: - 2490: 7,-4 - 2491: 8,-4 + 2443: 7,-4 + 2444: 8,-4 - node: angle: -0.6108652381980153 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15714: -66.175575,33.44884 - 15715: -64.425575,33.651966 + 15447: -66.175575,33.44884 + 15448: -64.425575,33.651966 - node: angle: -0.5235987755982988 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2039: -52.194256,62.29929 + 1992: -52.194256,62.29929 - node: angle: -0.3490658503988659 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2040: -52.124813,62.55855 + 1993: -52.124813,62.55855 - node: zIndex: 30 angle: -0.3490658503988659 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 13441: -70.121544,32.544136 + 13174: -70.121544,32.544136 - node: angle: -0.17453292519943295 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 10477: -30.871998,-78.83211 - 10478: -27.028248,-71.46511 + 10210: -30.871998,-78.83211 + 10211: -27.028248,-71.46511 - node: zIndex: 30 angle: -0.17453292519943295 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 13446: -74.23092,29.188131 + 13179: -74.23092,29.188131 - node: angle: -0.13962634015954636 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15710: -64.02965,38.537975 + 15443: -64.02965,38.537975 - node: zIndex: 30 angle: -0.10471975511965978 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 13444: -72.79342,30.172506 - 13445: -72.35592,31.141256 + 13177: -72.79342,30.172506 + 13178: -72.35592,31.141256 - node: angle: -0.08726646259971647 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15707: -64.01402,33.58485 + 15440: -64.01402,33.58485 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -26443,611 +26443,611 @@ entities: 417: 65,7 715: -34,24 827: -28,51 - 887: -21,-10 - 888: -20,-10 - 898: -22,-11 - 899: -19,-11 - 938: -24,-10 - 939: -25,-10 - 940: -26,-10 - 941: -27,-10 - 962: -25,-6 - 963: -24,-6 - 965: -23,-6 - 966: -22,-6 - 981: -33,-8 - 990: -29,-6 - 991: -28,-6 - 992: -27,-6 - 2053: -52.0244,65.542175 - 2161: -49,58 - 2162: -48,58 - 2163: -47,58 - 2164: -46,58 - 2165: -45,58 - 2166: -44,58 - 2167: -43,58 - 2168: -42,58 - 2169: -41,58 - 2170: -40,58 - 2171: -39,58 - 2836: -72,5 - 2837: -70,5 - 2840: -71,5 - 2855: -72,8 - 2856: -71,8 - 2857: -70,8 - 2899: -72,12 - 2900: -71,12 - 2903: -70,12 - 3032: -87,8 - 3034: -79,8 - 3238: -9,32 - 3239: -10,31 - 3240: -9,31 - 3241: -8,31 - 3242: -5,31 - 3243: -3,31 - 3244: -4,31 - 3265: -13,39 - 3266: -12,39 - 3271: -2,57 - 3272: -1,57 - 3273: 0,57 - 3285: -10,39 - 3286: -9,39 - 3287: -7,39 - 3288: -6,39 - 3289: -5,39 - 3300: -4,35 - 3301: -5,35 - 3306: -5,33 - 3307: -4,33 - 3313: -7,32 - 3314: -6,32 - 3316: -7.0032015,31.851368 - 3317: -6.0032015,31.851368 - 3356: -5,47 - 3357: -6,47 - 3358: -7,47 - 3365: -7,42 - 3366: -6,42 - 3367: -5,42 - 3393: -15,39 - 3417: -12,33 - 3418: -11,33 - 3419: -10,33 - 3420: -9,33 - 3422: -8,33 - 3440: -12,35 - 3441: -11,35 - 3442: -10,35 - 3443: -9,35 - 3444: -8,35 - 4692: -80,50 - 4693: -81,50 - 4706: -80,61 - 4707: -81,61 - 4723: -94,47 - 4727: -94,65 - 4767: -93,48 - 4770: -93,50 - 4771: -90,47 - 4772: -91,47 - 6453: -2,71 - 6454: -3,71 - 6465: -12,71 - 6466: -11,71 - 6468: 0,74 - 6609: 26,24 - 6610: 27,24 - 6611: 28,24 - 6612: 29,24 - 12915: -79,-14 - 12916: -78,-14 - 16235: -69.0219,-3.9973552 - 16236: -69.03116,-4.136244 - 21132: -31,36 - 21133: -29,36 - 21147: -37,31 - 21148: -37,33 - 21149: -37,36 - 21176: -33,33 - 21177: -32,33 - 21178: -33,36 - 21179: -32,36 - 21291: -30,32 + 840: -21,-10 + 841: -20,-10 + 851: -22,-11 + 852: -19,-11 + 891: -24,-10 + 892: -25,-10 + 893: -26,-10 + 894: -27,-10 + 915: -25,-6 + 916: -24,-6 + 918: -23,-6 + 919: -22,-6 + 934: -33,-8 + 943: -29,-6 + 944: -28,-6 + 945: -27,-6 + 2006: -52.0244,65.542175 + 2114: -49,58 + 2115: -48,58 + 2116: -47,58 + 2117: -46,58 + 2118: -45,58 + 2119: -44,58 + 2120: -43,58 + 2121: -42,58 + 2122: -41,58 + 2123: -40,58 + 2124: -39,58 + 2789: -72,5 + 2790: -70,5 + 2793: -71,5 + 2808: -72,8 + 2809: -71,8 + 2810: -70,8 + 2852: -72,12 + 2853: -71,12 + 2856: -70,12 + 2985: -87,8 + 2987: -79,8 + 3191: -9,32 + 3192: -10,31 + 3193: -9,31 + 3194: -8,31 + 3195: -5,31 + 3196: -3,31 + 3197: -4,31 + 3218: -13,39 + 3219: -12,39 + 3224: -2,57 + 3225: -1,57 + 3226: 0,57 + 3238: -10,39 + 3239: -9,39 + 3240: -7,39 + 3241: -6,39 + 3242: -5,39 + 3253: -4,35 + 3254: -5,35 + 3259: -5,33 + 3260: -4,33 + 3266: -7,32 + 3267: -6,32 + 3269: -7.0032015,31.851368 + 3270: -6.0032015,31.851368 + 3309: -5,47 + 3310: -6,47 + 3311: -7,47 + 3318: -7,42 + 3319: -6,42 + 3320: -5,42 + 3346: -15,39 + 3370: -12,33 + 3371: -11,33 + 3372: -10,33 + 3373: -9,33 + 3375: -8,33 + 3393: -12,35 + 3394: -11,35 + 3395: -10,35 + 3396: -9,35 + 3397: -8,35 + 4495: -80,50 + 4496: -81,50 + 4509: -80,61 + 4510: -81,61 + 4526: -94,47 + 4530: -94,65 + 4570: -93,48 + 4573: -93,50 + 4574: -90,47 + 4575: -91,47 + 6204: -2,71 + 6205: -3,71 + 6216: -12,71 + 6217: -11,71 + 6219: 0,74 + 6360: 26,24 + 6361: 27,24 + 6362: 28,24 + 6363: 29,24 + 12648: -79,-14 + 12649: -78,-14 + 15968: -69.0219,-3.9973552 + 15969: -69.03116,-4.136244 + 20391: -31,36 + 20392: -29,36 + 20402: -37,31 + 20403: -37,33 + 20404: -37,36 + 20425: -33,33 + 20426: -32,33 + 20427: -33,36 + 20428: -32,36 + 20523: -30,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 5454: -60,67 + 5257: -60,67 - node: angle: 0.05235987755982989 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15706: -63.045273,34.5536 + 15439: -63.045273,34.5536 - node: zIndex: 30 angle: 0.08726646259971647 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 13442: -68.76217,31.216011 + 13175: -68.76217,31.216011 - node: angle: 0.12217304763960307 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15708: -65.82652,36.52235 + 15441: -65.82652,36.52235 - node: angle: 0.13962634015954636 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15709: -64.01402,36.256725 + 15442: -64.01402,36.256725 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2041: -51.958145,62.910404 - 2042: -53.670662,62.139282 - 10476: -30.903248,-78.41023 - 10480: -26.871998,-71.105736 + 1994: -51.958145,62.910404 + 1995: -53.670662,62.139282 + 10209: -30.903248,-78.41023 + 10213: -26.871998,-71.105736 - node: angle: 0.3141592653589793 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15711: -62.889023,37.5536 + 15444: -62.889023,37.5536 - node: angle: 0.3490658503988659 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2037: -53.709564,63.136314 - 10479: -26.606373,-71.80886 + 1990: -53.709564,63.136314 + 10212: -26.606373,-71.80886 - node: zIndex: 30 angle: 0.3490658503988659 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 13440: -68.777794,31.575386 - 13447: -73.85592,30.547506 + 13173: -68.777794,31.575386 + 13180: -73.85592,30.547506 - node: angle: 0.4014257279586958 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15712: -63.0037,34.48009 + 15445: -63.0037,34.48009 - node: angle: 0.4537856055185257 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2038: -53.658638,62.96039 + 1991: -53.658638,62.96039 - node: zIndex: 30 angle: 0.5235987755982988 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 13439: -71.79342,30.591011 - 13443: -72.69967,30.641256 + 13172: -71.79342,30.591011 + 13176: -72.69967,30.641256 - node: angle: 0.7853981633974483 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 15713: -65.706825,33.745716 + 15446: -65.706825,33.745716 - node: angle: 1.0471975511965976 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 2043: -53.696182,63.961464 + 1996: -53.696182,63.961464 - node: zIndex: 30 angle: 1.2217304763960306 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 13448: -72.444275,30.714373 + 13181: -72.444275,30.714373 - node: zIndex: 90 angle: 2.792526803190927 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 12739: 84.0996,-54.822773 - 12740: 84.17773,-54.572773 - 12741: 84.27148,-54.291523 + 12472: 84.0996,-54.822773 + 12473: 84.17773,-54.572773 + 12474: 84.27148,-54.291523 - node: zIndex: 90 angle: 3.839724354387525 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 12743: 83.58398,-54.541523 - 12744: 83.81835,-54.807148 - 12745: 84.0996,-52.338398 - 12746: 83.7246,-52.322773 + 12476: 83.58398,-54.541523 + 12477: 83.81835,-54.807148 + 12478: 84.0996,-52.338398 + 12479: 83.7246,-52.322773 - node: color: '#737273FF' id: WoodTrimThinLineS decals: - 11869: -49,-8 - 11870: -48,-8 + 11602: -49,-8 + 11603: -48,-8 - node: color: '#9E9C9DFF' id: WoodTrimThinLineS decals: - 15700: -62,35 + 15433: -62,35 - node: color: '#A5A5A5FF' id: WoodTrimThinLineS decals: - 11344: -66,-12 - 11345: -65,-12 + 11077: -66,-12 + 11078: -65,-12 - node: color: '#C3C5BDFF' id: WoodTrimThinLineS decals: - 15702: -67,35 + 15435: -67,35 - node: color: '#C3C5CDFF' id: WoodTrimThinLineS decals: - 15729: -66,34 - 15730: -65,34 - 15731: -64,34 - 15732: -63,34 + 15462: -66,34 + 15463: -65,34 + 15464: -64,34 + 15465: -63,34 - node: color: '#C7BFC3FF' id: WoodTrimThinLineS decals: - 5382: -13,66 - 5383: -12,65 - 5384: -11,65 + 5185: -13,66 + 5186: -12,65 + 5187: -11,65 - node: color: '#C7C5CAFF' id: WoodTrimThinLineS decals: - 7582: -16,-60 - 7583: -15,-60 - 7584: -14,-60 + 7315: -16,-60 + 7316: -15,-60 + 7317: -14,-60 - node: color: '#C8C8C8FF' id: WoodTrimThinLineS decals: - 5962: -17,-47 - 5963: -16,-47 - 5964: -15,-47 - 5968: -32,-45 - 5969: -31,-45 - 5970: -29,-45 - 5971: -29,-45 - 5972: -28,-45 - 5973: -30,-45 - 5977: -27,-44 + 5765: -17,-47 + 5766: -16,-47 + 5767: -15,-47 + 5771: -32,-45 + 5772: -31,-45 + 5773: -29,-45 + 5774: -29,-45 + 5775: -28,-45 + 5776: -30,-45 + 5780: -27,-44 - node: color: '#CACCC3FF' id: WoodTrimThinLineS decals: - 2704: 3,-5 - 2705: 4,-5 - 2706: 5,-5 + 2657: 3,-5 + 2658: 4,-5 + 2659: 5,-5 - node: cleanable: True color: '#CACFD3FF' id: WoodTrimThinLineS decals: - 5835: -20,55 - 5836: -19,55 + 5638: -20,55 + 5639: -19,55 - node: color: '#CDCCCDFF' id: WoodTrimThinLineS decals: - 13391: -72,34 - 13392: -72,34 - 13393: -71,34 - 13394: -70,34 - 13395: -69,34 - 13396: -69,34 - 13397: -69,34 + 13124: -72,34 + 13125: -72,34 + 13126: -71,34 + 13127: -70,34 + 13128: -69,34 + 13129: -69,34 + 13130: -69,34 - node: color: '#CDCCD0FF' id: WoodTrimThinLineS decals: - 6033: -31,-47 - 6034: -30,-47 - 6035: -29,-47 + 5836: -31,-47 + 5837: -30,-47 + 5838: -29,-47 - node: color: '#CDCCD3FF' id: WoodTrimThinLineS decals: - 11214: -65,-10 - 11215: -66,-10 - 11226: -63,-9 - 11228: -62,-9 - 11229: -61,-9 - 11230: -60,-9 - 11256: -65,-7 + 10947: -65,-10 + 10948: -66,-10 + 10959: -63,-9 + 10961: -62,-9 + 10962: -61,-9 + 10963: -60,-9 + 10989: -65,-7 - node: color: '#CDCDCDFF' id: WoodTrimThinLineS decals: - 6023: -26,-44 - 6024: -25,-44 - 6025: -24,-44 - 6026: -23,-44 - 6027: -22,-44 - 6959: 18,-65 - 6960: 19,-65 - 9878: 8,-32 - 9879: 8,-32 - 9880: 7,-32 - 9881: 6,-32 - 9882: 5,-32 - 9883: 4,-32 - 9884: 3,-32 - 9888: 8,-31 - 9889: 7,-31 + 5826: -26,-44 + 5827: -25,-44 + 5828: -24,-44 + 5829: -23,-44 + 5830: -22,-44 + 6692: 18,-65 + 6693: 19,-65 + 9611: 8,-32 + 9612: 8,-32 + 9613: 7,-32 + 9614: 6,-32 + 9615: 5,-32 + 9616: 4,-32 + 9617: 3,-32 + 9621: 8,-31 + 9622: 7,-31 - node: color: '#CDD2D6FF' id: WoodTrimThinLineS decals: - 12137: -62,-24 - 12138: -61,-22 - 12139: -60,-22 - 12140: -59,-22 - 12141: -58,-22 - 12142: -58,-22 + 11870: -62,-24 + 11871: -61,-22 + 11872: -60,-22 + 11873: -59,-22 + 11874: -58,-22 + 11875: -58,-22 - node: color: '#D0D5D6FF' id: WoodTrimThinLineS decals: - 11729: -54,-7 - 11730: -53,-7 - 11731: -52,-7 - 11732: -51,-7 - 11733: -51,-7 + 11462: -54,-7 + 11463: -53,-7 + 11464: -52,-7 + 11465: -51,-7 + 11466: -51,-7 - node: color: '#D0D5D9FF' id: WoodTrimThinLineS decals: - 2486: 6,-6 - 2488: 5,-7 - 2489: 6,-7 + 2439: 6,-6 + 2441: 5,-7 + 2442: 6,-7 - node: color: '#D0D8D3FF' id: WoodTrimThinLineS decals: - 17780: -52,107 - 17781: -51,107 + 17513: -52,107 + 17514: -51,107 - node: color: '#D2D2D2FF' id: WoodTrimThinLineS decals: - 10530: -39,-41 - 10531: -39,-41 - 10547: -38,-41 - 10551: -37,-38 - 10552: -36,-38 - 10553: -35,-38 - 10554: -34,-38 - 10555: -34,-38 + 10263: -39,-41 + 10264: -39,-41 + 10280: -38,-41 + 10284: -37,-38 + 10285: -36,-38 + 10286: -35,-38 + 10287: -34,-38 + 10288: -34,-38 - node: color: '#D6D2D9FF' id: WoodTrimThinLineS decals: - 18029: -72,74 - 18030: -71,74 - 18031: -70,74 - 18032: -69,74 - 18033: -69,74 - 18034: -68,74 - 18035: -68,74 + 17762: -72,74 + 17763: -71,74 + 17764: -70,74 + 17765: -69,74 + 17766: -69,74 + 17767: -68,74 + 17768: -68,74 - node: zIndex: 30 color: '#D9D2D0FF' id: WoodTrimThinLineS decals: - 13463: -76,30 - 13464: -77,29 - 13465: -78,29 - 13466: -79,29 - 13467: -79,29 - 13468: -80,29 - 13476: -75,31 + 13196: -76,30 + 13197: -77,29 + 13198: -78,29 + 13199: -79,29 + 13200: -79,29 + 13201: -80,29 + 13209: -75,31 - node: color: '#D9D8DFFF' id: WoodTrimThinLineS decals: - 2742: -7,-13 - 2743: -6,-13 - 2744: -4,-13 - 2745: -4,-13 - 2746: -6,-13 - 2747: -5,-13 - 2748: -8,-13 - 2749: -4,-13 - 2750: -3,-13 + 2695: -7,-13 + 2696: -6,-13 + 2697: -4,-13 + 2698: -4,-13 + 2699: -6,-13 + 2700: -5,-13 + 2701: -8,-13 + 2702: -4,-13 + 2703: -3,-13 - node: color: '#D9DFE9FF' id: WoodTrimThinLineS decals: - 4877: -22,60 - 4878: -21,60 - 4879: -20,60 - 4880: -19,60 - 4881: -18,60 - 4882: -17,60 - 4883: -13,60 - 4884: -11,60 - 4885: -9,60 - 4901: -16,60 - 4902: -15,60 - 4903: -14,60 - 4915: -16,55 - 4916: -15,55 + 4680: -22,60 + 4681: -21,60 + 4682: -20,60 + 4683: -19,60 + 4684: -18,60 + 4685: -17,60 + 4686: -13,60 + 4687: -11,60 + 4688: -9,60 + 4704: -16,60 + 4705: -15,60 + 4706: -14,60 + 4718: -16,55 + 4719: -15,55 - node: color: '#DCDBDCFF' id: WoodTrimThinLineS decals: - 2020: -54,61 - 2021: -53,61 - 2022: -52,61 - 2023: -51,61 + 1973: -54,61 + 1974: -53,61 + 1975: -52,61 + 1976: -51,61 - node: color: '#DCDCDCFF' id: WoodTrimThinLineS decals: - 8904: -27,-58 - 8905: -28,-58 - 10812: -52,-25 - 10831: -55,-24 - 10839: -56,-23 - 10840: -55,-23 + 8637: -27,-58 + 8638: -28,-58 + 10545: -52,-25 + 10564: -55,-24 + 10572: -56,-23 + 10573: -55,-23 - node: color: '#DFD2D3FF' id: WoodTrimThinLineS decals: - 1653: -38,71 - 1654: -39,71 - 1655: -40,71 - 1656: -50,71 - 1657: -49,71 - 1658: -48,71 - 1659: -46,71 - 1660: -45,71 - 1661: -44,71 - 1662: -43,71 - 1663: -42,71 - 1664: -41,71 - 1665: -47,71 + 1606: -38,71 + 1607: -39,71 + 1608: -40,71 + 1609: -50,71 + 1610: -49,71 + 1611: -48,71 + 1612: -46,71 + 1613: -45,71 + 1614: -44,71 + 1615: -43,71 + 1616: -42,71 + 1617: -41,71 + 1618: -47,71 - node: color: '#DFD8DCFF' id: WoodTrimThinLineS decals: - 12386: -61,-19 - 12387: -60,-19 + 12119: -61,-19 + 12120: -60,-19 - node: color: '#E0E2E1FF' id: WoodTrimThinLineS decals: - 8922: -29,-59 - 8923: -30,-59 - 8924: -31,-59 - 8937: -31,-63 - 8938: -30,-63 - 8939: -29,-63 - 8940: -26,-63 - 8941: -25,-63 - 8942: -24,-63 - 8943: -23,-63 + 8655: -29,-59 + 8656: -30,-59 + 8657: -31,-59 + 8670: -31,-63 + 8671: -30,-63 + 8672: -29,-63 + 8673: -26,-63 + 8674: -25,-63 + 8675: -24,-63 + 8676: -23,-63 - node: color: '#E1E1E1FF' id: WoodTrimThinLineS decals: - 21188: -34,30 + 20436: -34,30 - node: color: '#E3DFD9FF' id: WoodTrimThinLineS decals: - 2783: -2,-7 + 2736: -2,-7 - node: color: '#E3E2E3FF' id: WoodTrimThinLineS decals: - 9057: 6,-78 - 9058: 7,-78 - 9059: 14,-78 - 9060: 13,-78 - 9079: 6,-86 - 9080: 7,-86 - 9081: 8,-86 - 9082: 9,-86 - 9083: 10,-86 - 9084: 12,-86 - 9085: 13,-86 - 9086: 13,-86 - 9087: 13,-86 - 9088: 13,-86 - 9089: 14,-86 - 9090: 14,-86 - 9091: 10,-86 - 9092: 10,-86 - 9093: 11,-86 - 9094: 11,-86 + 8790: 6,-78 + 8791: 7,-78 + 8792: 14,-78 + 8793: 13,-78 + 8812: 6,-86 + 8813: 7,-86 + 8814: 8,-86 + 8815: 9,-86 + 8816: 10,-86 + 8817: 12,-86 + 8818: 13,-86 + 8819: 13,-86 + 8820: 13,-86 + 8821: 13,-86 + 8822: 14,-86 + 8823: 14,-86 + 8824: 10,-86 + 8825: 10,-86 + 8826: 11,-86 + 8827: 11,-86 - node: color: '#E6E2ECFF' id: WoodTrimThinLineS decals: - 3967: -38,30 - 3969: -33,30 - 3970: -32,30 + 3834: -38,30 + 3835: -33,30 + 3836: -32,30 - node: color: '#E6E6E6FF' id: WoodTrimThinLineS decals: - 17594: -49,95 - 17595: -48,95 + 17327: -49,95 + 17328: -48,95 - node: color: '#E6E8E9FF' id: WoodTrimThinLineS decals: - 4084: -35,38 - 4085: -37,38 - 4086: -29,38 - 4104: -37,41 - 4105: -36,41 - 4106: -35,41 - 4107: -34,41 - 4108: -33,41 - 4109: -33,41 - 4110: -32,41 + 3894: -35,38 + 3895: -37,38 + 3896: -29,38 + 3914: -37,41 + 3915: -36,41 + 3916: -35,41 + 3917: -34,41 + 3918: -33,41 + 3919: -33,41 + 3920: -32,41 - node: color: '#E6E8ECFF' id: WoodTrimThinLineS decals: - 7600: -9,-62 - 7601: -10,-62 - 7602: -12,-62 - 7603: -12,-62 - 7604: -13,-62 - 7605: -14,-62 - 7606: -15,-62 - 7607: -16,-62 - 7608: -11,-62 + 7333: -9,-62 + 7334: -10,-62 + 7335: -12,-62 + 7336: -12,-62 + 7337: -13,-62 + 7338: -14,-62 + 7339: -15,-62 + 7340: -16,-62 + 7341: -11,-62 - node: color: '#E9E5E9FF' id: WoodTrimThinLineS decals: - 6341: 1,-69 - 6342: 2,-69 - 6343: 3,-69 - 6354: -4,-66 - 6355: 4,-66 + 6092: 1,-69 + 6093: 2,-69 + 6094: 3,-69 + 6105: -4,-66 + 6106: 4,-66 - node: color: '#EFE5E9FF' id: WoodTrimThinLineS decals: - 3163: 9,-13 - 3164: 7,-13 - 3165: 6,-14 - 3166: 5,-14 - 3167: 4,-14 - 3168: 3,-14 + 3116: 9,-13 + 3117: 7,-13 + 3118: 6,-14 + 3119: 5,-14 + 3120: 4,-14 + 3121: 3,-14 - node: color: '#FFF8F8FF' id: WoodTrimThinLineS decals: - 2499: 8,-7 + 2452: 8,-7 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -27063,129 +27063,129 @@ entities: 719: -35,21 720: -36,21 833: -28,47 - 893: -22,-12 - 894: -20,-12 - 895: -19,-12 - 948: -27,-12 - 949: -26,-12 - 950: -25,-12 - 951: -24,-12 - 958: -25,-7 - 959: -24,-7 - 960: -23,-7 - 961: -22,-7 - 987: -29,-7 - 988: -28,-7 - 989: -27,-7 - 997: -21,-10 - 998: -20,-10 - 1002: -20,-7 - 1003: -19,-7 - 1004: -23,-9 - 1007: -21,-9 - 1008: -20,-9 - 1016: -21,-10 - 1017: -20,-10 - 1275: -33,-10 - 1276: -32,-10 - 2831: -72,13 - 2832: -71,13 - 2834: -70,13 - 2851: -72,10 - 2852: -71,10 - 2853: -70,10 - 2920: -72,6 - 2921: -71,6 - 2922: -70,6 - 2976: -72,19 - 2977: -71,19 - 2978: -70,19 - 3027: -79,10 - 3030: -87,10 - 3263: -2,54 - 3264: -1,54 - 3267: 0,54 - 3293: -5,37 - 3303: -4,35 - 3304: -5,35 - 3309: -4,33 - 3310: -5,33 - 3311: -6,33 - 3350: -7,41 - 3351: -6,41 - 3352: -5,41 - 3362: -7,47 - 3363: -6,47 - 3364: -5,47 - 3412: -12,33 - 3413: -11,33 - 3414: -10,33 - 3415: -8,33 - 3416: -7,33 - 3421: -9,33 - 3433: -12,35 - 3434: -10,35 - 3435: -11,35 - 3436: -9,35 - 3437: -8,35 - 3445: -12,37 - 3446: -11,37 - 3447: -10,37 - 3448: -9,37 - 3449: -8,37 - 4694: -81,47 - 4695: -80,47 - 4708: -80,58 - 4724: -94,43 - 4729: -94,61 - 4782: -90,61 - 5827: -20,55 - 5828: -19,55 - 6455: -3,69 - 6456: -2,69 - 6463: -12,69 - 6464: -11,69 - 6469: 1,79 - 6470: 0,79 - 6583: 25,20 - 6616: 30,20 - 6617: 29,20 - 6618: 28,20 - 6619: 27,20 - 6620: 26,20 - 6642: 28,23 - 6643: 29,23 - 6652: 25,22 - 6734: -2,-67 - 6735: -1,-67 - 6961: 20,-64 - 8032: 44,26 - 8033: 45,26 - 8034: 46,26 - 8035: 47,26 - 8036: 48,26 - 8040: 42,25 - 8041: 43,25 - 8042: 44,25 - 12910: -79,-18 - 12911: -78,-18 - 16229: -69.017845,-3.8225632 - 16230: -69.017845,-3.9475632 - 21134: -30,38 - 21150: -37,36 - 21151: -37,33 - 21152: -37,31 - 21172: -32,36 - 21173: -33,36 - 21174: -33,33 - 21175: -32,33 - 21290: -30,30 + 846: -22,-12 + 847: -20,-12 + 848: -19,-12 + 901: -27,-12 + 902: -26,-12 + 903: -25,-12 + 904: -24,-12 + 911: -25,-7 + 912: -24,-7 + 913: -23,-7 + 914: -22,-7 + 940: -29,-7 + 941: -28,-7 + 942: -27,-7 + 950: -21,-10 + 951: -20,-10 + 955: -20,-7 + 956: -19,-7 + 957: -23,-9 + 960: -21,-9 + 961: -20,-9 + 969: -21,-10 + 970: -20,-10 + 1228: -33,-10 + 1229: -32,-10 + 2784: -72,13 + 2785: -71,13 + 2787: -70,13 + 2804: -72,10 + 2805: -71,10 + 2806: -70,10 + 2873: -72,6 + 2874: -71,6 + 2875: -70,6 + 2929: -72,19 + 2930: -71,19 + 2931: -70,19 + 2980: -79,10 + 2983: -87,10 + 3216: -2,54 + 3217: -1,54 + 3220: 0,54 + 3246: -5,37 + 3256: -4,35 + 3257: -5,35 + 3262: -4,33 + 3263: -5,33 + 3264: -6,33 + 3303: -7,41 + 3304: -6,41 + 3305: -5,41 + 3315: -7,47 + 3316: -6,47 + 3317: -5,47 + 3365: -12,33 + 3366: -11,33 + 3367: -10,33 + 3368: -8,33 + 3369: -7,33 + 3374: -9,33 + 3386: -12,35 + 3387: -10,35 + 3388: -11,35 + 3389: -9,35 + 3390: -8,35 + 3398: -12,37 + 3399: -11,37 + 3400: -10,37 + 3401: -9,37 + 3402: -8,37 + 4497: -81,47 + 4498: -80,47 + 4511: -80,58 + 4527: -94,43 + 4532: -94,61 + 4585: -90,61 + 5630: -20,55 + 5631: -19,55 + 6206: -3,69 + 6207: -2,69 + 6214: -12,69 + 6215: -11,69 + 6220: 1,79 + 6221: 0,79 + 6334: 25,20 + 6367: 30,20 + 6368: 29,20 + 6369: 28,20 + 6370: 27,20 + 6371: 26,20 + 6393: 28,23 + 6394: 29,23 + 6403: 25,22 + 6485: -2,-67 + 6486: -1,-67 + 6694: 20,-64 + 7765: 44,26 + 7766: 45,26 + 7767: 46,26 + 7768: 47,26 + 7769: 48,26 + 7773: 42,25 + 7774: 43,25 + 7775: 44,25 + 12643: -79,-18 + 12644: -78,-18 + 15962: -69.017845,-3.8225632 + 15963: -69.017845,-3.9475632 + 20393: -30,38 + 20405: -37,36 + 20406: -37,33 + 20407: -37,31 + 20421: -32,36 + 20422: -33,36 + 20423: -33,33 + 20424: -32,33 + 20522: -30,30 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 5451: -60,66 + 5254: -60,66 - node: angle: 0.8726646259971648 rad color: '#FFFFFFFF' @@ -27214,361 +27214,361 @@ entities: color: '#737273FF' id: WoodTrimThinLineW decals: - 11871: -49,-7 - 11872: -49,-8 + 11604: -49,-7 + 11605: -49,-8 - node: color: '#ABAFA4FF' id: WoodTrimThinLineW decals: - 7558: -11,-57 + 7291: -11,-57 - node: color: '#B1A8A1FF' id: WoodTrimThinLineW decals: - 2781: -2,-7 + 2734: -2,-7 - node: color: '#C3C5CDFF' id: WoodTrimThinLineW decals: - 15733: -66,39 - 15734: -66,38 - 15735: -66,36 - 15736: -66,36 - 15737: -66,35 - 15738: -66,34 - 15739: -66,34 - 15740: -66,37 + 15466: -66,39 + 15467: -66,38 + 15468: -66,36 + 15469: -66,36 + 15470: -66,35 + 15471: -66,34 + 15472: -66,34 + 15473: -66,37 - node: color: '#C7BFC3FF' id: WoodTrimThinLineW decals: - 5373: -15,65 - 5374: -15,64 - 5385: -12,65 - 5386: -12,66 + 5176: -15,65 + 5177: -15,64 + 5188: -12,65 + 5189: -12,66 - node: color: '#C7C5CAFF' id: WoodTrimThinLineW decals: - 7588: -16,-58 - 7589: -16,-59 - 7590: -16,-60 + 7321: -16,-58 + 7322: -16,-59 + 7323: -16,-60 - node: color: '#C8C8C8FF' id: WoodTrimThinLineW decals: - 5957: -32,-42 - 5958: -32,-43 - 5959: -32,-43 - 5960: -32,-44 - 5961: -32,-45 - 5965: -18,-46 - 5966: -18,-45 - 5975: -32,-45 + 5760: -32,-42 + 5761: -32,-43 + 5762: -32,-43 + 5763: -32,-44 + 5764: -32,-45 + 5768: -18,-46 + 5769: -18,-45 + 5778: -32,-45 - node: cleanable: True color: '#CACFD3FF' id: WoodTrimThinLineW decals: - 5834: -21,56 + 5637: -21,56 - node: color: '#CDCCCDFF' id: WoodTrimThinLineW decals: - 13377: -74,33 - 13378: -74,35 - 13379: -74,35 - 13380: -74,36 - 13381: -74,36 + 13110: -74,33 + 13111: -74,35 + 13112: -74,35 + 13113: -74,36 + 13114: -74,36 - node: color: '#CDCCD0FF' id: WoodTrimThinLineW decals: - 6032: -32,-46 + 5835: -32,-46 - node: color: '#CDCCD3FF' id: WoodTrimThinLineW decals: - 11216: -66,-9 - 11217: -66,-10 - 11246: -62,-8 - 11247: -62,-7 - 11248: -62,-6 + 10949: -66,-9 + 10950: -66,-10 + 10979: -62,-8 + 10980: -62,-7 + 10981: -62,-6 - node: color: '#CDCDCDFF' id: WoodTrimThinLineW decals: - 9885: 3,-32 - 9886: 3,-31 - 9887: 3,-30 - 9892: 4,-29 - 9893: 4,-30 - 9894: 4,-31 - 9895: 4,-32 + 9618: 3,-32 + 9619: 3,-31 + 9620: 3,-30 + 9625: 4,-29 + 9626: 4,-30 + 9627: 4,-31 + 9628: 4,-32 - node: color: '#CDD2D6FF' id: WoodTrimThinLineW decals: - 12133: -64,-23 - 12147: -61,-19 - 12148: -61,-20 - 12149: -61,-21 - 12150: -61,-22 - 12151: -61,-22 - 12158: -60,-18 + 11866: -64,-23 + 11880: -61,-19 + 11881: -61,-20 + 11882: -61,-21 + 11883: -61,-22 + 11884: -61,-22 + 11891: -60,-18 - node: color: '#D0C5CDFF' id: WoodTrimThinLineW decals: - 1685: -49,67 - 1687: -40,67 + 1638: -49,67 + 1640: -40,67 - node: color: '#D0D5D6FF' id: WoodTrimThinLineW decals: - 11738: -54,-4 - 11739: -54,-5 - 11740: -54,-6 - 11741: -54,-7 + 11471: -54,-4 + 11472: -54,-5 + 11473: -54,-6 + 11474: -54,-7 - node: color: '#D0D5D9FF' id: WoodTrimThinLineW decals: - 2477: 3,-6 - 2478: 3,-5 - 2479: 3,-4 - 2487: 3,-7 + 2430: 3,-6 + 2431: 3,-5 + 2432: 3,-4 + 2440: 3,-7 - node: color: '#D2D2D2FF' id: WoodTrimThinLineW decals: - 10541: -39,-37 - 10542: -39,-38 - 10543: -39,-39 - 10544: -39,-40 - 10545: -39,-41 - 10546: -39,-41 + 10274: -39,-37 + 10275: -39,-38 + 10276: -39,-39 + 10277: -39,-40 + 10278: -39,-41 + 10279: -39,-41 - node: color: '#D6CFD9FF' id: WoodTrimThinLineW decals: - 1543: -49,64 - 1544: -49,65 - 1545: -49,66 - 1546: -49,67 - 1547: -49,68 - 1548: -49,68 - 1549: -49,69 - 1580: -49,67 - 1583: -40,67 - 1587: -49,68 + 1496: -49,64 + 1497: -49,65 + 1498: -49,66 + 1499: -49,67 + 1500: -49,68 + 1501: -49,68 + 1502: -49,69 + 1533: -49,67 + 1536: -40,67 + 1540: -49,68 - node: color: '#D6D2D9FF' id: WoodTrimThinLineW decals: - 18044: -72,76 - 18045: -72,74 + 17777: -72,76 + 17778: -72,74 - node: zIndex: 30 color: '#D9D2D0FF' id: WoodTrimThinLineW decals: - 13469: -80,32 - 13470: -80,31 - 13471: -80,30 - 13472: -80,30 - 13473: -80,29 - 13474: -80,29 + 13202: -80,32 + 13203: -80,31 + 13204: -80,30 + 13205: -80,30 + 13206: -80,29 + 13207: -80,29 - node: color: '#D9D8DFFF' id: WoodTrimThinLineW decals: - 2733: -8,-5 - 2734: -8,-6 - 2735: -8,-7 - 2736: -8,-8 - 2737: -8,-9 - 2738: -8,-10 - 2739: -8,-11 - 2740: -8,-11 - 2741: -8,-12 - 2752: -8,-13 + 2686: -8,-5 + 2687: -8,-6 + 2688: -8,-7 + 2689: -8,-8 + 2690: -8,-9 + 2691: -8,-10 + 2692: -8,-11 + 2693: -8,-11 + 2694: -8,-12 + 2705: -8,-13 - node: color: '#D9DFE9FF' id: WoodTrimThinLineW decals: - 4872: -21,57 - 4873: -21,58 - 4891: -15,62 - 4897: -22,61 - 4898: -22,60 - 4900: -19,59 - 4909: -16,55 - 4910: -16,56 - 4911: -16,57 - 4912: -16,58 - 4913: -16,58 - 4914: -16,59 + 4675: -21,57 + 4676: -21,58 + 4694: -15,62 + 4700: -22,61 + 4701: -22,60 + 4703: -19,59 + 4712: -16,55 + 4713: -16,56 + 4714: -16,57 + 4715: -16,58 + 4716: -16,58 + 4717: -16,59 - node: color: '#DCDBDCFF' id: WoodTrimThinLineW decals: - 2016: -54,64 - 2017: -54,63 - 2018: -54,62 - 2019: -54,61 - 2034: -54,67 - 2035: -54,66 - 2036: -54,65 + 1969: -54,64 + 1970: -54,63 + 1971: -54,62 + 1972: -54,61 + 1987: -54,67 + 1988: -54,66 + 1989: -54,65 - node: color: '#DCDCDCFF' id: WoodTrimThinLineW decals: - 8910: -28,-57 - 8911: -28,-58 - 10819: -54,-22 - 10821: -54,-23 - 10832: -54,-25 - 10836: -56,-21 - 10837: -56,-22 - 10838: -56,-23 - 10846: -54,-22 - 10847: -54,-23 - 10848: -54,-21 + 8643: -28,-57 + 8644: -28,-58 + 10552: -54,-22 + 10554: -54,-23 + 10565: -54,-25 + 10569: -56,-21 + 10570: -56,-22 + 10571: -56,-23 + 10579: -54,-22 + 10580: -54,-23 + 10581: -54,-21 - node: color: '#DFD2D3FF' id: WoodTrimThinLineW decals: - 1633: -52,72 - 1634: -52,71 - 1635: -52,70 - 1652: -37,70 + 1586: -52,72 + 1587: -52,71 + 1588: -52,70 + 1605: -37,70 - node: color: '#DFD8DCFF' id: WoodTrimThinLineW decals: - 12383: -59,-22 - 12384: -59,-21 - 12385: -59,-20 + 12116: -59,-22 + 12117: -59,-21 + 12118: -59,-20 - node: color: '#E0E2E1FF' id: WoodTrimThinLineW decals: - 8925: -31,-59 - 8926: -31,-58 - 8927: -31,-57 - 8928: -31,-61 - 8929: -31,-62 - 8930: -31,-63 - 8953: -26,-60 - 8954: -26,-61 - 8955: -26,-62 - 8956: -26,-63 - 8957: -26,-63 + 8658: -31,-59 + 8659: -31,-58 + 8660: -31,-57 + 8661: -31,-61 + 8662: -31,-62 + 8663: -31,-63 + 8686: -26,-60 + 8687: -26,-61 + 8688: -26,-62 + 8689: -26,-63 + 8690: -26,-63 - node: color: '#E1E1E1FF' id: WoodTrimThinLineW decals: - 21166: -41,31 - 21167: -41,32 - 21168: -41,33 - 21169: -41,34 - 21170: -41,35 - 21171: -41,36 - 21277: -33,37 + 20415: -41,31 + 20416: -41,32 + 20417: -41,33 + 20418: -41,34 + 20419: -41,35 + 20420: -41,36 + 20509: -33,37 - node: color: '#E3DBDCFF' id: WoodTrimThinLineW decals: - 1691: -37,73 - 1692: -37,72 - 1693: -37,72 - 1694: -37,71 + 1644: -37,73 + 1645: -37,72 + 1646: -37,72 + 1647: -37,71 - node: color: '#E3E2E3FF' id: WoodTrimThinLineW decals: - 9061: 6,-78 - 9062: 12,-78 - 9063: 12,-79 - 9064: 12,-80 - 9065: 12,-80 - 9066: 8,-79 - 9067: 8,-80 - 9068: 8,-80 - 9069: 8,-81 - 9070: 8,-82 - 9071: 8,-83 - 9072: 8,-84 - 9073: 8,-85 - 9074: 8,-85 - 9095: 6,-86 - 9106: 12,-78 - 9109: 8,-86 - 9110: 8,-78 + 8794: 6,-78 + 8795: 12,-78 + 8796: 12,-79 + 8797: 12,-80 + 8798: 12,-80 + 8799: 8,-79 + 8800: 8,-80 + 8801: 8,-80 + 8802: 8,-81 + 8803: 8,-82 + 8804: 8,-83 + 8805: 8,-84 + 8806: 8,-85 + 8807: 8,-85 + 8828: 6,-86 + 8839: 12,-78 + 8842: 8,-86 + 8843: 8,-78 - node: color: '#E6E6E6FF' id: WoodTrimThinLineW decals: - 17596: -50,97 - 17597: -50,96 + 17329: -50,97 + 17330: -50,96 - node: color: '#E6E8E9FF' id: WoodTrimThinLineW decals: - 4093: -31,40 - 4103: -37,40 - 4112: -37,41 + 3903: -31,40 + 3913: -37,40 + 3922: -37,41 - node: color: '#E6E8ECFF' id: WoodTrimThinLineW decals: - 7591: -12,-58 - 7592: -12,-59 - 7593: -12,-60 - 7615: -16,-61 - 7616: -16,-62 + 7324: -12,-58 + 7325: -12,-59 + 7326: -12,-60 + 7348: -16,-61 + 7349: -16,-62 - node: color: '#E9E5E9FF' id: WoodTrimThinLineW decals: - 6344: -3,-66 - 6345: -3,-65 - 6346: -3,-65 + 6095: -3,-66 + 6096: -3,-65 + 6097: -3,-65 - node: color: '#ECE8ECFF' id: WoodTrimThinLineW decals: - 2757: -3,-5 - 2758: -3,-6 - 2759: -3,-7 - 2760: -3,-8 - 2761: -3,-9 - 2762: -3,-10 - 2763: -3,-11 - 2764: -3,-12 + 2710: -3,-5 + 2711: -3,-6 + 2712: -3,-7 + 2713: -3,-8 + 2714: -3,-9 + 2715: -3,-10 + 2716: -3,-11 + 2717: -3,-12 - node: color: '#EFE5E9FF' id: WoodTrimThinLineW decals: - 3151: 3,-9 - 3152: 3,-10 - 3153: 3,-11 - 3154: 3,-12 - 3155: 3,-13 - 3156: 3,-14 - 3157: 8,-14 - 3180: 8,-14 - 3184: 8,-12 - 3185: 8,-13 - 3188: 3,-12 + 3104: 3,-9 + 3105: 3,-10 + 3106: 3,-11 + 3107: 3,-12 + 3108: 3,-13 + 3109: 3,-14 + 3110: 8,-14 + 3133: 8,-14 + 3137: 8,-12 + 3138: 8,-13 + 3141: 3,-12 - node: color: '#FFF8F8FF' id: WoodTrimThinLineW decals: - 2500: 7,-6 - 2501: 7,-5 - 2502: 7,-4 + 2453: 7,-6 + 2454: 7,-5 + 2455: 7,-4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -27582,338 +27582,338 @@ entities: 829: -29,50 830: -29,49 831: -29,48 - 891: -22,-11 - 892: -22,-12 - 897: -21,-10 - 942: -27,-10 - 943: -27,-11 - 944: -27,-12 - 969: -25,-6 - 970: -25,-7 - 982: -33,-8 - 995: -29,-6 - 996: -29,-7 - 1019: -21,-10 - 1272: -33,-9 - 1273: -33,-10 - 2173: -49,58 - 2180: -49,59 - 2196: -49.004066,62.861095 - 2200: -49,60 - 2821: -69,6 - 2822: -69,7 - 2823: -69,8 - 2824: -69,9 - 2826: -69,10 - 2827: -69,11 - 2829: -69,12 - 2906: -72,12 - 2907: -72,11 - 2908: -72,10 - 2909: -72,8 - 2910: -72,7 - 2911: -72,6 - 3050: -86,9 - 3051: -78,9 - 3054: -80,9 - 3247: -5,31 - 3248: -5,30 - 3253: -14,32 - 3254: -14,33 - 3255: -14,34 - 3256: -14,35 - 3257: -14,36 - 3259: -14,38 - 3261: -14,37 - 3269: -3,55 - 3270: -3,56 - 3274: -11,40 - 3275: -11,41 - 3276: -11,42 - 3277: -11,43 - 3278: -11,44 - 3329: -8,40 - 3330: -8,43 - 3331: -8,44 - 3332: -8,45 - 3333: -8,46 - 3342: -4,46 - 3343: -4,45 - 3344: -4,44 - 3345: -4,43 - 3347: -8,41 - 3348: -8,42 - 3431: -7,34 - 3432: -7,36 - 4146: -32,37 - 4696: -82,48 - 4697: -82,49 - 4709: -82,60 - 4725: -96,45 - 4726: -96,63 - 4768: -92,49 - 4769: -92,50 - 4774: -89,47 - 4777: -92,58 - 4778: -92,57 - 5825: -21,56 - 6457: -4,70 - 6458: -13,70 - 6648: 24,22 - 6649: 24,21 - 6650: 24,23 - 6737: 0,-68 - 8043: 45,23 - 8044: 45,24 - 12912: -80,-17 - 12913: -80,-16 - 12914: -80,-15 - 16233: -69.00338,-3.9464293 - 16234: -68.85523,-3.9464293 - 21130: -30,37 - 21156: -38,32 - 21157: -38,34 - 21158: -38,35 - 21159: -34,34 - 21160: -34,35 - 21184: -34,32 - 21185: -34,31 - 21187: -34,30 - 21289: -31,31 + 844: -22,-11 + 845: -22,-12 + 850: -21,-10 + 895: -27,-10 + 896: -27,-11 + 897: -27,-12 + 922: -25,-6 + 923: -25,-7 + 935: -33,-8 + 948: -29,-6 + 949: -29,-7 + 972: -21,-10 + 1225: -33,-9 + 1226: -33,-10 + 2126: -49,58 + 2133: -49,59 + 2149: -49.004066,62.861095 + 2153: -49,60 + 2774: -69,6 + 2775: -69,7 + 2776: -69,8 + 2777: -69,9 + 2779: -69,10 + 2780: -69,11 + 2782: -69,12 + 2859: -72,12 + 2860: -72,11 + 2861: -72,10 + 2862: -72,8 + 2863: -72,7 + 2864: -72,6 + 3003: -86,9 + 3004: -78,9 + 3007: -80,9 + 3200: -5,31 + 3201: -5,30 + 3206: -14,32 + 3207: -14,33 + 3208: -14,34 + 3209: -14,35 + 3210: -14,36 + 3212: -14,38 + 3214: -14,37 + 3222: -3,55 + 3223: -3,56 + 3227: -11,40 + 3228: -11,41 + 3229: -11,42 + 3230: -11,43 + 3231: -11,44 + 3282: -8,40 + 3283: -8,43 + 3284: -8,44 + 3285: -8,45 + 3286: -8,46 + 3295: -4,46 + 3296: -4,45 + 3297: -4,44 + 3298: -4,43 + 3300: -8,41 + 3301: -8,42 + 3384: -7,34 + 3385: -7,36 + 3955: -32,37 + 4499: -82,48 + 4500: -82,49 + 4512: -82,60 + 4528: -96,45 + 4529: -96,63 + 4571: -92,49 + 4572: -92,50 + 4577: -89,47 + 4580: -92,58 + 4581: -92,57 + 5628: -21,56 + 6208: -4,70 + 6209: -13,70 + 6399: 24,22 + 6400: 24,21 + 6401: 24,23 + 6488: 0,-68 + 7776: 45,23 + 7777: 45,24 + 12645: -80,-17 + 12646: -80,-16 + 12647: -80,-15 + 15966: -69.00338,-3.9464293 + 15967: -68.85523,-3.9464293 + 20389: -30,37 + 20408: -38,32 + 20409: -38,34 + 20410: -38,35 + 20411: -34,34 + 20412: -34,35 + 20433: -34,32 + 20434: -34,31 + 20435: -34,30 + 20521: -31,31 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 16225: -54,71 + 15958: -54,71 - node: cleanable: True color: '#B02E26FF' id: beepsky decals: - 18101: -18.834126,-28.814264 + 17834: -18.834126,-28.814264 - node: color: '#FFFFFFFF' id: beepsky decals: - 12946: 75.85743,-16.315752 - 12947: 74.48243,-17.378252 - 12948: 76.66993,-17.784502 + 12679: 75.85743,-16.315752 + 12680: 74.48243,-17.378252 + 12681: 76.66993,-17.784502 - node: zIndex: 60 color: '#34BF474A' id: biohazard decals: - 16063: -87.97806,21.07872 + 15796: -87.97806,21.07872 - node: color: '#FFFFFF56' id: biohazard decals: - 19603: -22.51035,-82.24092 + 19336: -22.51035,-82.24092 - node: zIndex: 60 angle: -3.141592653589793 rad color: '#34BF472B' id: body decals: - 16066: -86.686325,38.851242 - 16067: -86.6082,38.851242 - 16068: -86.561325,38.788742 - 16069: -86.63945,38.773117 + 15799: -86.686325,38.851242 + 15800: -86.6082,38.851242 + 15801: -86.561325,38.788742 + 15802: -86.63945,38.773117 - node: zIndex: 60 color: '#34BF472B' id: body decals: - 16070: -60.608826,49.70192 - 16071: -60.49945,49.67067 - 16072: -60.515076,49.780045 - 16073: -60.733826,49.70192 - 16074: -60.671326,49.655045 - 16075: -60.5932,49.655045 - 16076: -60.5307,49.623795 - 16077: -60.43695,49.70192 + 15803: -60.608826,49.70192 + 15804: -60.49945,49.67067 + 15805: -60.515076,49.780045 + 15806: -60.733826,49.70192 + 15807: -60.671326,49.655045 + 15808: -60.5932,49.655045 + 15809: -60.5307,49.623795 + 15810: -60.43695,49.70192 - node: zIndex: 60 color: '#34BF474A' id: body decals: - 16064: -90.43812,12.168778 - 16065: -90.43812,12.168778 + 15797: -90.43812,12.168778 + 15798: -90.43812,12.168778 - node: cleanable: True angle: 3.141592653589793 rad color: '#411C00FF' id: body decals: - 7785: -15.136648,-71.42611 + 7518: -15.136648,-71.42611 - node: cleanable: True color: '#FFFFFF50' id: body decals: - 4392: -49.205715,13.42932 + 4195: -49.205715,13.42932 - node: cleanable: True angle: 2.443460952792061 rad color: '#FFFFFF50' id: body decals: - 4393: -51.111965,13.476195 + 4196: -51.111965,13.476195 - node: cleanable: True angle: 0.8726646259971648 rad color: '#FFFFFF9B' id: body decals: - 5824: -63.042747,-44.2893 + 5627: -63.042747,-44.2893 - node: cleanable: True angle: 2.443460952792061 rad color: '#FFFFFF9B' id: body decals: - 5823: -67.54784,-44.121933 + 5626: -67.54784,-44.121933 - node: color: '#FFFFFFA8' id: body decals: - 19931: -3.5456028,-84.83058 - 19932: -13.139353,-87.78371 - 19933: -4.561228,-89.93996 + 19664: -3.5456028,-84.83058 + 19665: -13.139353,-87.78371 + 19666: -4.561228,-89.93996 - node: cleanable: True angle: -1.3264502315156905 rad color: '#FFFFFFFF' id: body decals: - 18088: -19.209126,-29.67364 + 17821: -19.209126,-29.67364 - node: cleanable: True angle: 0.3490658503988659 rad color: '#FFFFFFFF' id: body decals: - 5808: -65.01855,-51.33788 + 5611: -65.01855,-51.33788 - node: cleanable: True angle: 1.7453292519943295 rad color: '#FFFFFFFF' id: body decals: - 5817: -73.1123,-50.884754 + 5620: -73.1123,-50.884754 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: body decals: - 17223: -91.195076,-49.404034 + 16956: -91.195076,-49.404034 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: bottle decals: - 19980: -17.304878,-81.21729 + 19713: -17.304878,-81.21729 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: bottle decals: - 19979: -18.48388,-84.98109 + 19712: -18.48388,-84.98109 - node: color: '#FFFFFFFF' id: bottle decals: - 19981: -17.461128,-83.32667 + 19714: -17.461128,-83.32667 - node: color: '#0000FF23' id: brush decals: - 19601: -22.3541,-82.381546 + 19334: -22.3541,-82.381546 - node: color: '#0000FF3F' id: brush decals: - 19606: -23.988022,-86.015305 + 19339: -23.988022,-86.015305 - node: color: '#00FF0023' id: brush decals: - 19600: -22.682224,-82.381546 + 19333: -22.682224,-82.381546 - node: color: '#00FF003F' id: brush decals: - 19605: -24.081772,-86.390305 + 19338: -24.081772,-86.390305 - node: color: '#A4582F97' id: brush decals: - 8368: -7.2794094,22.480179 - 8369: -6.9356594,22.386429 - 8370: -6.5606594,22.527054 - 8371: -6.4669094,22.652054 - 8372: -6.4981594,23.277054 - 8373: -6.5294094,22.980179 - 8374: -7.2169094,22.558304 - 8375: -6.8731594,22.527054 - 8376: -6.9200344,22.917679 - 8377: -7.1544094,22.980179 - 8378: -6.9356594,23.620804 - 8379: -6.3731594,22.902054 - 8380: -6.3106594,22.917679 - 8381: -5.6856594,23.183304 - 8382: -5.5137844,23.198929 - 8383: -5.0137844,23.323929 - 8384: -4.7481594,23.402054 - 8385: -4.5919094,23.402054 - 8386: -4.5606594,24.105179 - 8387: -4.3419094,24.542679 - 8388: -4.3575344,24.245804 - 8389: -4.3262844,23.761429 - 8390: -4.4825344,23.620804 - 8391: -4.7481594,23.511429 - 8392: -5.1544094,23.433304 - 8393: -5.6700344,23.355179 - 8394: -5.8262844,23.245804 - 8395: -6.0294094,23.136429 - 8396: -6.2637844,23.105179 - 8397: -6.5450344,23.433304 - 8398: -6.2950344,23.464554 - 8399: -6.0294094,23.511429 - 8400: -5.2950344,23.761429 - 8401: -5.1231594,24.073929 - 8402: -5.1231594,24.386429 - 8403: -5.5294094,24.136429 - 8404: -5.8575344,24.120804 - 8405: -6.2794094,24.261429 - 8406: -6.8106594,24.214554 - 8407: -7.1231594,24.105179 - 8408: -7.1075344,23.667679 - 8409: -7.4356594,23.402054 - 8410: -7.2481594,23.636429 - 8411: -6.7169094,23.870804 - 8412: -6.1387844,24.042679 - 8413: -6.1544094,23.792679 - 8414: -6.3419094,23.386429 - 8415: -6.9356594,23.042679 - 8416: -7.3887844,24.339554 - 8417: -5.8731594,24.261429 - 8418: -7.3106594,22.433304 - 8419: -4.4981594,24.183304 - 8420: -6.1231594,22.948929 - 8421: -4.2012844,24.120804 - 8422: -4.0606594,24.323929 - 8423: -3.8575344,24.355179 - 8424: -3.7325344,24.417679 - 8425: -4.1700344,24.339554 - 8426: -7.3419094,22.386429 - 8427: -7.4512844,22.245804 - 8428: -7.5137844,22.136429 - 8429: -7.1856594,22.167679 - 8430: -7.4825344,21.933304 - 8431: -4.2169094,23.948929 - 8432: -3.8731594,24.089554 + 8101: -7.2794094,22.480179 + 8102: -6.9356594,22.386429 + 8103: -6.5606594,22.527054 + 8104: -6.4669094,22.652054 + 8105: -6.4981594,23.277054 + 8106: -6.5294094,22.980179 + 8107: -7.2169094,22.558304 + 8108: -6.8731594,22.527054 + 8109: -6.9200344,22.917679 + 8110: -7.1544094,22.980179 + 8111: -6.9356594,23.620804 + 8112: -6.3731594,22.902054 + 8113: -6.3106594,22.917679 + 8114: -5.6856594,23.183304 + 8115: -5.5137844,23.198929 + 8116: -5.0137844,23.323929 + 8117: -4.7481594,23.402054 + 8118: -4.5919094,23.402054 + 8119: -4.5606594,24.105179 + 8120: -4.3419094,24.542679 + 8121: -4.3575344,24.245804 + 8122: -4.3262844,23.761429 + 8123: -4.4825344,23.620804 + 8124: -4.7481594,23.511429 + 8125: -5.1544094,23.433304 + 8126: -5.6700344,23.355179 + 8127: -5.8262844,23.245804 + 8128: -6.0294094,23.136429 + 8129: -6.2637844,23.105179 + 8130: -6.5450344,23.433304 + 8131: -6.2950344,23.464554 + 8132: -6.0294094,23.511429 + 8133: -5.2950344,23.761429 + 8134: -5.1231594,24.073929 + 8135: -5.1231594,24.386429 + 8136: -5.5294094,24.136429 + 8137: -5.8575344,24.120804 + 8138: -6.2794094,24.261429 + 8139: -6.8106594,24.214554 + 8140: -7.1231594,24.105179 + 8141: -7.1075344,23.667679 + 8142: -7.4356594,23.402054 + 8143: -7.2481594,23.636429 + 8144: -6.7169094,23.870804 + 8145: -6.1387844,24.042679 + 8146: -6.1544094,23.792679 + 8147: -6.3419094,23.386429 + 8148: -6.9356594,23.042679 + 8149: -7.3887844,24.339554 + 8150: -5.8731594,24.261429 + 8151: -7.3106594,22.433304 + 8152: -4.4981594,24.183304 + 8153: -6.1231594,22.948929 + 8154: -4.2012844,24.120804 + 8155: -4.0606594,24.323929 + 8156: -3.8575344,24.355179 + 8157: -3.7325344,24.417679 + 8158: -4.1700344,24.339554 + 8159: -7.3419094,22.386429 + 8160: -7.4512844,22.245804 + 8161: -7.5137844,22.136429 + 8162: -7.1856594,22.167679 + 8163: -7.4825344,21.933304 + 8164: -4.2169094,23.948929 + 8165: -3.8731594,24.089554 - node: color: '#AF936980' id: brush @@ -28098,453 +28098,453 @@ entities: color: '#F9FFFE85' id: brush decals: - 8315: 4.363254,24.245804 - 8316: 4.425754,23.714554 - 8317: 4.332004,23.386429 - 8318: 4.425754,22.948929 - 8319: 4.457004,22.855179 - 8320: 4.503879,22.636429 - 8321: 4.503879,23.527054 - 8322: 4.347629,23.777054 - 8323: 4.316379,24.167679 - 8324: 4.707004,22.339554 - 8325: 4.832004,22.292679 - 8326: 5.019504,22.261429 - 8327: 5.175754,22.230179 - 8328: 5.363254,21.917679 - 8329: 5.347629,21.808304 - 8330: 5.472629,21.683304 - 8331: 5.550754,21.652054 - 8332: 5.785129,21.573929 - 8333: 6.082004,21.527054 - 8334: 6.332004,21.448929 - 8335: 6.628879,21.417679 - 8336: 7.035129,21.277054 - 8337: 5.003879,23.980179 - 8338: 5.050754,23.620804 - 8339: 5.285129,22.964554 - 8340: 5.613254,22.667679 - 8341: 5.894504,22.183304 - 8342: 6.316379,22.152054 - 8343: 6.910129,21.964554 - 8344: 5.519504,24.417679 - 8345: 5.644504,23.933304 - 8346: 5.941379,23.605179 - 8347: 6.207004,23.105179 - 8348: 6.613254,22.808304 - 8349: 6.863254,22.698929 - 8350: 7.128879,22.652054 - 8351: 6.519504,24.339554 - 8352: 6.566379,23.870804 - 8353: 6.707004,23.261429 - 8354: 7.050754,23.027054 - 8355: 7.097629,24.152054 - 8356: 7.144504,23.730179 - 8357: 7.207004,23.589554 - 8358: 5.066379,21.917679 - 8359: 7.316379,21.370804 + 8048: 4.363254,24.245804 + 8049: 4.425754,23.714554 + 8050: 4.332004,23.386429 + 8051: 4.425754,22.948929 + 8052: 4.457004,22.855179 + 8053: 4.503879,22.636429 + 8054: 4.503879,23.527054 + 8055: 4.347629,23.777054 + 8056: 4.316379,24.167679 + 8057: 4.707004,22.339554 + 8058: 4.832004,22.292679 + 8059: 5.019504,22.261429 + 8060: 5.175754,22.230179 + 8061: 5.363254,21.917679 + 8062: 5.347629,21.808304 + 8063: 5.472629,21.683304 + 8064: 5.550754,21.652054 + 8065: 5.785129,21.573929 + 8066: 6.082004,21.527054 + 8067: 6.332004,21.448929 + 8068: 6.628879,21.417679 + 8069: 7.035129,21.277054 + 8070: 5.003879,23.980179 + 8071: 5.050754,23.620804 + 8072: 5.285129,22.964554 + 8073: 5.613254,22.667679 + 8074: 5.894504,22.183304 + 8075: 6.316379,22.152054 + 8076: 6.910129,21.964554 + 8077: 5.519504,24.417679 + 8078: 5.644504,23.933304 + 8079: 5.941379,23.605179 + 8080: 6.207004,23.105179 + 8081: 6.613254,22.808304 + 8082: 6.863254,22.698929 + 8083: 7.128879,22.652054 + 8084: 6.519504,24.339554 + 8085: 6.566379,23.870804 + 8086: 6.707004,23.261429 + 8087: 7.050754,23.027054 + 8088: 7.097629,24.152054 + 8089: 7.144504,23.730179 + 8090: 7.207004,23.589554 + 8091: 5.066379,21.917679 + 8092: 7.316379,21.370804 - node: color: '#FF000023' id: brush decals: - 19599: -22.494724,-82.143654 + 19332: -22.494724,-82.143654 - node: color: '#FF000040' id: brush decals: - 19604: -24.331772,-86.24968 + 19337: -24.331772,-86.24968 - node: color: '#FFFFFF6B' id: carp decals: - 19844: -11.040372,-88.05044 - 19845: -6.805997,-89.98794 + 19577: -11.040372,-88.05044 + 19578: -6.805997,-89.98794 - node: cleanable: True color: '#FFFFFFFF' id: carp decals: - 18123: -65,73 + 17856: -65,73 - node: color: '#FFFFFF6B' id: cat decals: - 19846: -13.977872,-89.03481 - 19847: -7.571622,-85.89419 + 19579: -13.977872,-89.03481 + 19580: -7.571622,-85.89419 - node: cleanable: True color: '#FFFFFFFF' id: cat decals: - 18122: -60,72 + 17855: -60,72 - node: angle: 1.5707963267948966 rad color: '#FFFFFFA8' id: chevron decals: - 19946: -13.437054,-88.220924 - 19947: -4.8589287,-89.79905 - 19948: -3.8433037,-85.29905 + 19679: -13.437054,-88.220924 + 19680: -4.8589287,-89.79905 + 19681: -3.8433037,-85.29905 - node: color: '#0000FF6B' id: clown decals: - 19838: -12.868497,-89.01919 - 19839: -8.509122,-88.05044 - 19840: -6.446622,-85.84731 + 19571: -12.868497,-89.01919 + 19572: -8.509122,-88.05044 + 19573: -6.446622,-85.84731 - node: color: '#00FF006B' id: clown decals: - 19835: -12.696622,-89.08169 - 19836: -8.321622,-88.11294 - 19837: -6.290372,-85.90981 + 19568: -12.696622,-89.08169 + 19569: -8.321622,-88.11294 + 19570: -6.290372,-85.90981 - node: cleanable: True angle: 0.3490658503988659 rad color: '#411C00FF' id: clown decals: - 7780: -13.996023,-70.23861 + 7513: -13.996023,-70.23861 - node: cleanable: True angle: 1.9198621771937625 rad color: '#411C00FF' id: clown decals: - 7781: -16.136648,-70.11361 + 7514: -16.136648,-70.11361 - node: cleanable: True angle: 3.141592653589793 rad color: '#411C00FF' id: clown decals: - 7784: -14.230398,-71.92611 + 7517: -14.230398,-71.92611 - node: cleanable: True angle: 3.490658503988659 rad color: '#411C00FF' id: clown decals: - 7782: -15.964773,-71.76986 + 7515: -15.964773,-71.76986 - node: cleanable: True angle: 6.632251157578453 rad color: '#411C00FF' id: clown decals: - 7783: -16.417898,-70.92611 + 7516: -16.417898,-70.92611 - node: color: '#FF00006B' id: clown decals: - 19832: -8.493497,-88.19106 - 19833: -6.415372,-85.98794 - 19834: -12.821622,-89.15981 + 19565: -8.493497,-88.19106 + 19566: -6.415372,-85.98794 + 19567: -12.821622,-89.15981 - node: color: '#FFFFFF03' id: clown decals: - 19818: -17.998096,-82.919655 - 19819: -17.998096,-82.950905 - 19820: -17.998096,-82.950905 - 19821: -17.998096,-82.950905 - 19822: -19.107471,-81.18528 - 19823: -18.951221,-81.12278 - 19824: -18.951221,-81.15403 - 19825: -19.091846,-81.31028 - 19826: -19.044971,-81.24778 - 19827: -18.951221,-81.09153 - 19828: -18.888721,-81.15403 - 19829: -18.998096,-81.169655 - 19830: -19.138721,-81.12278 - 19831: -18.919971,-81.31028 + 19551: -17.998096,-82.919655 + 19552: -17.998096,-82.950905 + 19553: -17.998096,-82.950905 + 19554: -17.998096,-82.950905 + 19555: -19.107471,-81.18528 + 19556: -18.951221,-81.12278 + 19557: -18.951221,-81.15403 + 19558: -19.091846,-81.31028 + 19559: -19.044971,-81.24778 + 19560: -18.951221,-81.09153 + 19561: -18.888721,-81.15403 + 19562: -18.998096,-81.169655 + 19563: -19.138721,-81.12278 + 19564: -18.919971,-81.31028 - node: color: '#FFFFFF6B' id: clown decals: - 19841: -12.821622,-89.09731 - 19842: -8.462247,-88.11294 - 19843: -6.399747,-85.92544 + 19574: -12.821622,-89.09731 + 19575: -8.462247,-88.11294 + 19576: -6.399747,-85.92544 - node: angle: -1.5707963267948966 rad color: '#FFFFFFA8' id: clown decals: - 19949: -12.827679,-87.970924 + 19682: -12.827679,-87.970924 - node: zIndex: 60 color: '#A700DF59' id: comma decals: - 16187: -62.783226,50.322002 - 16188: -63.064476,50.337627 + 15920: -62.783226,50.322002 + 15921: -63.064476,50.337627 - node: angle: 1.5707963267948966 rad color: '#FFFFFFA8' id: comma decals: - 19940: -12.706896,-87.8882 - 19941: -12.706896,-88.04445 - 19942: -4.122224,-90.05475 - 19943: -4.122224,-90.17975 - 19944: -3.1268501,-84.8928 - 19945: -3.1424751,-85.095924 + 19673: -12.706896,-87.8882 + 19674: -12.706896,-88.04445 + 19675: -4.122224,-90.05475 + 19676: -4.122224,-90.17975 + 19677: -3.1268501,-84.8928 + 19678: -3.1424751,-85.095924 - node: color: '#FFFFFF6B' id: corgi decals: - 19848: -8.930997,-89.01919 - 19849: -11.790372,-85.70669 - 19850: -5.712247,-88.17544 + 19581: -8.930997,-89.01919 + 19582: -11.790372,-85.70669 + 19583: -5.712247,-88.17544 - node: cleanable: True color: '#FFFFFFFF' id: corgi decals: - 18121: -60,74 + 17854: -60,74 - node: cleanable: True color: '#AE0000B7' id: cyr_g decals: - 17116: -26.034424,-88.94636 + 16849: -26.034424,-88.94636 - node: cleanable: True angle: 3.141592653589793 rad color: '#AE0000B7' id: cyr_g decals: - 17117: -24.768799,-89.97761 + 16850: -24.768799,-89.97761 - node: color: '#E0D9DDE6' id: disk decals: - 19593: -55,-82 + 19326: -55,-82 - node: zIndex: 60 color: '#A700DF59' id: dot decals: - 16173: -61.982872,50.31314 - 16174: -61.951622,50.15689 - 16175: -60.951622,48.93814 - 16176: -60.889122,48.75064 - 16177: -60.107872,50.453766 - 16178: -60.029747,50.28189 + 15906: -61.982872,50.31314 + 15907: -61.951622,50.15689 + 15908: -60.951622,48.93814 + 15909: -60.889122,48.75064 + 15910: -60.107872,50.453766 + 15911: -60.029747,50.28189 - node: cleanable: True color: '#AE000063' id: dot decals: - 18184: 31.941109,-16.730091 - 18185: 31.947716,-17.086882 + 17917: 31.941109,-16.730091 + 17918: 31.947716,-17.086882 - node: cleanable: True color: '#AE0000AE' id: dot decals: - 18168: -21.352276,44.6285 - 18169: -21.173887,44.539307 - 18170: -21.188753,44.360912 + 17901: -21.352276,44.6285 + 17902: -21.173887,44.539307 + 17903: -21.188753,44.360912 - node: color: '#E0D9DD18' id: evac decals: - 19594: -53.15436,-82.102104 - 19595: -52.951237,-81.945854 - 19596: -52.90436,-82.195854 - 19597: -52.96686,-82.039604 + 19327: -53.15436,-82.102104 + 19328: -52.951237,-81.945854 + 19329: -52.90436,-82.195854 + 19330: -52.96686,-82.039604 - node: color: '#E0D9DD5C' id: evac decals: - 19598: -52.99811,-82.05523 + 19331: -52.99811,-82.05523 - node: color: '#0000FF6B' id: face decals: - 19865: -14.212247,-88.84731 - 19866: -12.087247,-85.48794 - 19867: -9.274747,-88.76919 - 19868: -11.274747,-87.94106 - 19869: -7.227872,-89.89419 - 19870: -5.930997,-87.81606 - 19871: -7.868497,-85.65981 + 19598: -14.212247,-88.84731 + 19599: -12.087247,-85.48794 + 19600: -9.274747,-88.76919 + 19601: -11.274747,-87.94106 + 19602: -7.227872,-89.89419 + 19603: -5.930997,-87.81606 + 19604: -7.868497,-85.65981 - node: color: '#00FF006B' id: face decals: - 19851: -14.180997,-88.84731 - 19852: -7.149747,-89.92544 - 19853: -9.243497,-88.80044 - 19854: -11.368497,-88.01919 - 19855: -12.040372,-85.47231 - 19856: -5.977872,-87.87856 - 19857: -7.899747,-85.69106 + 19584: -14.180997,-88.84731 + 19585: -7.149747,-89.92544 + 19586: -9.243497,-88.80044 + 19587: -11.368497,-88.01919 + 19588: -12.040372,-85.47231 + 19589: -5.977872,-87.87856 + 19590: -7.899747,-85.69106 - node: color: '#FF00006B' id: face decals: - 19858: -14.180997,-88.89419 - 19859: -12.055997,-85.51919 - 19860: -11.337247,-88.00356 - 19861: -7.087247,-89.87856 - 19862: -5.899747,-87.86294 - 19863: -9.212247,-88.89419 - 19864: -7.946622,-85.61294 + 19591: -14.180997,-88.89419 + 19592: -12.055997,-85.51919 + 19593: -11.337247,-88.00356 + 19594: -7.087247,-89.87856 + 19595: -5.899747,-87.86294 + 19596: -9.212247,-88.89419 + 19597: -7.946622,-85.61294 - node: cleanable: True angle: -3.141592653589793 rad color: '#FFFFFFFF' id: fireaxe decals: - 1388: -68.02301,24.169256 + 1341: -68.02301,24.169256 - node: color: '#FFFFFF6B' id: food decals: - 19872: -15.675079,-90.08169 - 19873: -14.393829,-90.06606 + 19605: -15.675079,-90.08169 + 19606: -14.393829,-90.06606 - node: cleanable: True angle: 0.17453292519943295 rad color: '#411C00D9' id: footprint decals: - 7796: -14.916783,-68.769066 - 7797: -14.893635,-68.86629 - 7798: -14.833449,-68.86629 - 7799: -14.879746,-68.8524 + 7529: -14.916783,-68.769066 + 7530: -14.893635,-68.86629 + 7531: -14.833449,-68.86629 + 7532: -14.879746,-68.8524 - node: cleanable: True angle: 0.3490658503988659 rad color: '#411C00D9' id: footprint decals: - 7792: -15.111228,-69.48203 - 7793: -15.07419,-69.48203 - 7794: -15.139006,-69.519066 - 7795: -15.055672,-69.53758 + 7525: -15.111228,-69.48203 + 7526: -15.07419,-69.48203 + 7527: -15.139006,-69.519066 + 7528: -15.055672,-69.53758 - node: cleanable: True angle: 0.5235987755982988 rad color: '#411C00D9' id: footprint decals: - 7786: -14.555672,-70.56073 - 7787: -14.564931,-70.62092 - 7788: -14.476969,-70.60703 - 7789: -14.676043,-69.954254 - 7790: -14.606598,-69.9774 - 7791: -14.583449,-70.00055 + 7519: -14.555672,-70.56073 + 7520: -14.564931,-70.62092 + 7521: -14.476969,-70.60703 + 7522: -14.676043,-69.954254 + 7523: -14.606598,-69.9774 + 7524: -14.583449,-70.00055 - node: cleanable: True angle: 1.2217304763960306 rad color: '#411C00D9' id: footprint decals: - 7800: -14.139006,-71.12092 - 7801: -14.194561,-71.046844 - 7802: -13.870487,-71.02833 - 7803: -13.764006,-71.06536 - 7804: -13.791783,-71.051476 - 7805: -14.208449,-71.144066 - 7806: -14.314931,-71.10703 + 7533: -14.139006,-71.12092 + 7534: -14.194561,-71.046844 + 7535: -13.870487,-71.02833 + 7536: -13.764006,-71.06536 + 7537: -13.791783,-71.051476 + 7538: -14.208449,-71.144066 + 7539: -14.314931,-71.10703 - node: cleanable: True color: '#4D13152B' id: footprint decals: - 5617: -72.19959,-45.739433 - 5618: -72.22043,-45.82971 - 5619: -72.144035,-45.822765 - 5620: -72.171814,-45.760265 - 5621: -71.91487,-46.01721 - 5622: -71.99821,-46.058876 - 5623: -71.90793,-46.100544 - 5624: -71.894035,-46.107487 - 5625: -71.87321,-46.135265 - 5626: -71.90793,-46.121376 + 5420: -72.19959,-45.739433 + 5421: -72.22043,-45.82971 + 5422: -72.144035,-45.822765 + 5423: -72.171814,-45.760265 + 5424: -71.91487,-46.01721 + 5425: -71.99821,-46.058876 + 5426: -71.90793,-46.100544 + 5427: -71.894035,-46.107487 + 5428: -71.87321,-46.135265 + 5429: -71.90793,-46.121376 - node: cleanable: True angle: 0.5235987755982988 rad color: '#4D13153E' id: footprint decals: - 5639: -70.51454,-47.08347 - 5640: -69.778435,-48.125137 - 5653: -72.15369,-45.790237 - 5654: -72.18841,-45.929127 - 5655: -71.82035,-46.130516 - 5656: -71.79257,-46.17218 - 5657: -71.896736,-46.28329 - 5658: -71.52869,-46.47962 - 5659: -71.50091,-46.625454 - 5660: -71.46619,-46.639343 - 5661: -71.612015,-46.500454 - 5662: -70.557625,-47.076843 + 5442: -70.51454,-47.08347 + 5443: -69.778435,-48.125137 + 5456: -72.15369,-45.790237 + 5457: -72.18841,-45.929127 + 5458: -71.82035,-46.130516 + 5459: -71.79257,-46.17218 + 5460: -71.896736,-46.28329 + 5461: -71.52869,-46.47962 + 5462: -71.50091,-46.625454 + 5463: -71.46619,-46.639343 + 5464: -71.612015,-46.500454 + 5465: -70.557625,-47.076843 - node: cleanable: True angle: 0.8726646259971648 rad color: '#4D13153E' id: footprint decals: - 5641: -69.07704,-48.201527 - 5642: -69.05621,-48.18069 - 5643: -68.68121,-47.937637 - 5644: -69.74371,-48.104305 - 5645: -71.20899,-47.20847 - 5646: -71.49371,-46.514027 - 5647: -71.85482,-46.201527 - 5648: -71.938156,-46.14597 - 5649: -71.965935,-46.27097 - 5650: -72.188156,-45.854305 - 5651: -72.20899,-45.965416 - 5652: -72.22288,-45.777916 + 5444: -69.07704,-48.201527 + 5445: -69.05621,-48.18069 + 5446: -68.68121,-47.937637 + 5447: -69.74371,-48.104305 + 5448: -71.20899,-47.20847 + 5449: -71.49371,-46.514027 + 5450: -71.85482,-46.201527 + 5451: -71.938156,-46.14597 + 5452: -71.965935,-46.27097 + 5453: -72.188156,-45.854305 + 5454: -72.20899,-45.965416 + 5455: -72.22288,-45.777916 - node: cleanable: True angle: 0.5235987755982988 rad color: '#4D131576' id: footprint decals: - 5632: -71.85482,-46.889027 - 5633: -71.53538,-46.465416 - 5634: -71.53538,-46.45847 - 5635: -71.53538,-46.45847 - 5636: -71.77149,-46.90986 - 5637: -71.84788,-46.916805 - 5638: -71.26454,-47.14597 + 5435: -71.85482,-46.889027 + 5436: -71.53538,-46.465416 + 5437: -71.53538,-46.45847 + 5438: -71.53538,-46.45847 + 5439: -71.77149,-46.90986 + 5440: -71.84788,-46.916805 + 5441: -71.26454,-47.14597 - node: cleanable: True angle: 0.8726646259971648 rad color: '#4D131576' id: footprint decals: - 5629: -69.74903,-48.078213 + 5432: -69.74903,-48.078213 - node: cleanable: True angle: 1.2217304763960306 rad color: '#4D131576' id: footprint decals: - 5630: -70.51454,-47.076527 - 5631: -71.28538,-47.104305 + 5433: -70.51454,-47.076527 + 5434: -71.28538,-47.104305 - node: cleanable: True angle: 1.5707963267948966 rad color: '#4D131576' id: footprint decals: - 5627: -68.6819,-47.89766 - 5628: -69.075424,-48.175434 + 5430: -68.6819,-47.89766 + 5431: -69.075424,-48.175434 - node: cleanable: True color: '#4D1315D0' id: footprint decals: - 5615: -72.206535,-45.816887 - 5616: -71.91487,-46.066887 + 5418: -72.206535,-45.816887 + 5419: -71.91487,-46.066887 - node: cleanable: True zIndex: 60 @@ -28552,13 +28552,13 @@ entities: color: '#791C1525' id: footprint decals: - 15807: -62.814613,34.983177 - 15808: -62.814613,34.983177 - 15809: -63.26774,34.717552 - 15810: -63.42399,34.717552 - 15811: -63.98649,34.873802 - 15812: -64.11149,34.951927 - 15813: -64.14274,35.014427 + 15540: -62.814613,34.983177 + 15541: -62.814613,34.983177 + 15542: -63.26774,34.717552 + 15543: -63.42399,34.717552 + 15544: -63.98649,34.873802 + 15545: -64.11149,34.951927 + 15546: -64.14274,35.014427 - node: cleanable: True zIndex: 60 @@ -28566,19 +28566,19 @@ entities: color: '#791C1525' id: footprint decals: - 15794: -65.61149,36.29777 - 15795: -65.48649,36.250896 - 15796: -65.86149,36.907146 - 15797: -65.90836,36.750896 - 15798: -65.56461,37.32902 - 15799: -65.61149,37.375896 - 15800: -65.51774,37.39152 - 15801: -65.81461,37.969646 - 15802: -65.81461,37.98527 - 15803: -65.86149,35.57902 - 15804: -65.86149,35.594646 - 15805: -65.48649,34.998802 - 15806: -65.48649,35.014427 + 15527: -65.61149,36.29777 + 15528: -65.48649,36.250896 + 15529: -65.86149,36.907146 + 15530: -65.90836,36.750896 + 15531: -65.56461,37.32902 + 15532: -65.61149,37.375896 + 15533: -65.51774,37.39152 + 15534: -65.81461,37.969646 + 15535: -65.81461,37.98527 + 15536: -65.86149,35.57902 + 15537: -65.86149,35.594646 + 15538: -65.48649,34.998802 + 15539: -65.48649,35.014427 - node: cleanable: True zIndex: 60 @@ -28586,23 +28586,23 @@ entities: color: '#791C1525' id: footprint decals: - 15814: -64.75211,38.951927 - 15815: -64.67399,38.733177 - 15816: -64.78336,38.905052 - 15817: -64.78336,38.436302 - 15818: -64.68961,38.389427 - 15819: -64.31461,38.264427 - 15820: -64.25211,38.233177 - 15821: -64.22086,38.061302 - 15822: -64.40836,37.764427 - 15823: -64.37711,37.686302 - 15824: -64.73649,38.780052 - 15825: -64.72086,38.795677 - 15826: -64.26774,38.201927 - 15827: -64.18961,38.201927 - 15828: -65.29899,38.998802 - 15829: -65.33024,38.889427 - 15830: -65.29899,38.733177 + 15547: -64.75211,38.951927 + 15548: -64.67399,38.733177 + 15549: -64.78336,38.905052 + 15550: -64.78336,38.436302 + 15551: -64.68961,38.389427 + 15552: -64.31461,38.264427 + 15553: -64.25211,38.233177 + 15554: -64.22086,38.061302 + 15555: -64.40836,37.764427 + 15556: -64.37711,37.686302 + 15557: -64.73649,38.780052 + 15558: -64.72086,38.795677 + 15559: -64.26774,38.201927 + 15560: -64.18961,38.201927 + 15561: -65.29899,38.998802 + 15562: -65.33024,38.889427 + 15563: -65.29899,38.733177 - node: cleanable: True zIndex: 60 @@ -28610,352 +28610,352 @@ entities: color: '#791C1598' id: footprint decals: - 15791: -65.56461,37.375896 - 15792: -65.90836,36.844646 - 15793: -65.53336,36.219646 + 15524: -65.56461,37.375896 + 15525: -65.90836,36.844646 + 15526: -65.53336,36.219646 - node: color: '#FFFFFFFF' id: ghost decals: - 17209: -84.79293,-45.789604 + 16942: -84.79293,-45.789604 - node: color: '#1E5026FF' id: grasssnow decals: - 8435: 4.372939,-23.127125 - 8436: 4.872939,-22.674 - 8437: 5.513564,-22.252125 - 8438: 5.747939,-21.689625 - 8439: 6.372939,-21.627125 - 8440: 7.247939,-21.424 - 8441: 7.294814,-21.924 - 8442: 6.451064,-22.45525 - 8443: 5.716689,-23.002125 - 8444: 5.091689,-23.408375 - 8445: 7.388564,-22.658375 - 8446: 6.669814,-23.220875 - 8447: 7.357314,-23.377125 + 8168: 4.372939,-23.127125 + 8169: 4.872939,-22.674 + 8170: 5.513564,-22.252125 + 8171: 5.747939,-21.689625 + 8172: 6.372939,-21.627125 + 8173: 7.247939,-21.424 + 8174: 7.294814,-21.924 + 8175: 6.451064,-22.45525 + 8176: 5.716689,-23.002125 + 8177: 5.091689,-23.408375 + 8178: 7.388564,-22.658375 + 8179: 6.669814,-23.220875 + 8180: 7.357314,-23.377125 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow01 decals: - 9855: 13,-31 + 9588: 13,-31 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow02 decals: - 9818: 21.406366,-36.956352 - 9819: 21.718866,-37.159477 - 9845: 13,-29 - 9852: 12,-37 + 9551: 21.406366,-36.956352 + 9552: 21.718866,-37.159477 + 9578: 13,-29 + 9585: 12,-37 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow03 decals: - 9826: 22.093868,-35.159477 - 9850: 10,-37 - 9854: 13,-29 + 9559: 22.093868,-35.159477 + 9583: 10,-37 + 9587: 13,-29 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow04 decals: - 9848: 11,-35 + 9581: 11,-35 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow05 decals: - 9847: 10,-34 - 9849: 11,-36 + 9580: 10,-34 + 9582: 11,-36 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow06 decals: - 9838: 25,-34 + 9571: 25,-34 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow07 decals: - 9827: 22,-36 - 9846: 13,-30 - 9853: 11,-33 + 9560: 22,-36 + 9579: 13,-30 + 9586: 11,-33 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow08 decals: - 9814: 25.21887,-33.987606 - 9815: 25.203245,-34.37823 - 9835: 25,-35 + 9547: 25.21887,-33.987606 + 9548: 25.203245,-34.37823 + 9568: 25,-35 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow09 decals: - 9825: 23.50012,-34.175102 - 9837: 22,-37 + 9558: 23.50012,-34.175102 + 9570: 22,-37 - node: color: '#E3AC00FF' id: grasssnow10 decals: - 6631: 3.1119213,76.19385 - 6632: 3.2681713,75.52197 - 6633: 3.8931713,75.7876 - 6634: 3.7525463,76.3501 + 6382: 3.1119213,76.19385 + 6383: 3.2681713,75.52197 + 6384: 3.8931713,75.7876 + 6385: 3.7525463,76.3501 - node: color: '#FFFFFFFF' id: grasssnow10 decals: - 8360: 4.925754,23.855179 - 8361: 5.925754,22.605179 - 8362: 6.769504,23.870804 + 8093: 4.925754,23.855179 + 8094: 5.925754,22.605179 + 8095: 6.769504,23.870804 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow10 decals: - 9820: 20.968866,-37.065723 - 9830: 23,-37 - 9840: 10,-33 - 9851: 11,-37 + 9553: 20.968866,-37.065723 + 9563: 23,-37 + 9573: 10,-33 + 9584: 11,-37 - node: color: '#FFFFFFFF' id: grasssnow11 decals: - 8365: 5.019504,22.839554 - 8366: 7.253879,23.058304 - 8367: 5.847629,24.230179 + 8098: 5.019504,22.839554 + 8099: 7.253879,23.058304 + 8100: 5.847629,24.230179 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow11 decals: - 9821: 21.421993,-35.487602 + 9554: 21.421993,-35.487602 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow12 decals: - 9824: 23.890745,-33.971977 - 9836: 25,-36 - 9842: 13,-34 - 9843: 14,-32 - 9844: 16,-29 + 9557: 23.890745,-33.971977 + 9569: 25,-36 + 9575: 13,-34 + 9576: 14,-32 + 9577: 16,-29 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow13 decals: - 9823: 21.156368,-36.065723 - 9832: 25,-37 - 9841: 10,-36 + 9556: 21.156368,-36.065723 + 9565: 25,-37 + 9574: 10,-36 - node: color: '#FFFFFFFF' id: grasssnowa1 decals: - 8363: 5.847629,23.698929 + 8096: 5.847629,23.698929 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa1 decals: - 9858: 13,-31 - 9861: 21,-37 + 9591: 13,-31 + 9594: 21,-37 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa2 decals: - 9860: 24,-37 + 9593: 24,-37 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowa3 decals: - 9859: 25,-35 + 9592: 25,-35 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowb3 decals: - 9857: 10,-35 + 9590: 10,-35 - node: color: '#FFFFFFFF' id: grasssnowc1 decals: - 8364: 6.941379,22.058304 + 8097: 6.941379,22.058304 - node: cleanable: True color: '#FFFFFFFF' id: grasssnowc1 decals: - 9856: 15,-29 + 9589: 15,-29 - node: color: '#00D579FF' id: guy decals: - 8749: 96.69625,-56.458748 + 8482: 96.69625,-56.458748 - node: color: '#FFFFFFFF' id: guy decals: - 19663: -28.020496,-80.59884 + 19396: -28.020496,-80.59884 - node: zIndex: 60 color: '#A700DF2B' id: heart decals: - 16189: -59.67385,51.290752 - 16190: -59.67385,51.181377 - 16191: -60.04885,50.697002 - 16192: -60.0176,50.743877 - 16193: -59.783226,49.618877 - 16194: -59.783226,49.618877 - 16195: -62.04885,48.900127 - 16196: -61.970726,48.868877 - 16197: -62.595726,49.962627 - 16198: -62.595726,49.978252 - 16199: -61.88265,49.63286 - 16200: -61.867023,49.617233 - 16201: -61.867023,49.648483 + 15922: -59.67385,51.290752 + 15923: -59.67385,51.181377 + 15924: -60.04885,50.697002 + 15925: -60.0176,50.743877 + 15926: -59.783226,49.618877 + 15927: -59.783226,49.618877 + 15928: -62.04885,48.900127 + 15929: -61.970726,48.868877 + 15930: -62.595726,49.962627 + 15931: -62.595726,49.978252 + 15932: -61.88265,49.63286 + 15933: -61.867023,49.617233 + 15934: -61.867023,49.648483 - node: color: '#FFFFFFFF' id: like decals: - 19662: -24.063505,-86.10933 + 19395: -24.063505,-86.10933 - node: cleanable: True angle: 0.3490658503988659 rad color: '#411C004A' id: line decals: - 7771: -16.535389,-70.46003 - 7772: -16.254139,-70.30378 - 7773: -16.066639,-70.08503 - 7774: -16.222889,-70.100655 - 7775: -14.582264,-72.422714 - 7776: -14.707264,-72.56334 - 7777: -14.707264,-72.25084 - 7778: -15.082264,-72.485214 - 7779: -15.176014,-72.860214 + 7504: -16.535389,-70.46003 + 7505: -16.254139,-70.30378 + 7506: -16.066639,-70.08503 + 7507: -16.222889,-70.100655 + 7508: -14.582264,-72.422714 + 7509: -14.707264,-72.56334 + 7510: -14.707264,-72.25084 + 7511: -15.082264,-72.485214 + 7512: -15.176014,-72.860214 - node: cleanable: True angle: 0.8726646259971648 rad color: '#411C004A' id: line decals: - 7768: -16.205656,-70.1346 - 7769: -16.096281,-70.46272 - 7770: -15.752531,-70.93147 + 7501: -16.205656,-70.1346 + 7502: -16.096281,-70.46272 + 7503: -15.752531,-70.93147 - node: cleanable: True angle: 1.0471975511965976 rad color: '#411C004A' id: line decals: - 7757: -16.440031,-70.47835 - 7758: -16.096281,-70.5721 - 7759: -15.690031,-70.5721 - 7760: -15.408781,-71.04085 - 7761: -15.736906,-70.8221 - 7762: -15.377531,-71.22835 - 7763: -16.455656,-70.6346 - 7764: -16.455656,-70.60335 - 7765: -16.533781,-70.52522 - 7766: -16.502531,-70.47835 - 7767: -16.518156,-70.11897 + 7490: -16.440031,-70.47835 + 7491: -16.096281,-70.5721 + 7492: -15.690031,-70.5721 + 7493: -15.408781,-71.04085 + 7494: -15.736906,-70.8221 + 7495: -15.377531,-71.22835 + 7496: -16.455656,-70.6346 + 7497: -16.455656,-70.60335 + 7498: -16.533781,-70.52522 + 7499: -16.502531,-70.47835 + 7500: -16.518156,-70.11897 - node: cleanable: True angle: 0.5235987755982988 rad color: '#411C009B' id: line decals: - 7749: -14.143156,-70.7596 - 7750: -13.861906,-71.21272 - 7751: -13.768156,-71.72835 - 7752: -13.908781,-71.04085 - 7753: -13.705656,-71.77522 + 7482: -14.143156,-70.7596 + 7483: -13.861906,-71.21272 + 7484: -13.768156,-71.72835 + 7485: -13.908781,-71.04085 + 7486: -13.705656,-71.77522 - node: cleanable: True color: '#411C00BA' id: line decals: - 7746: -15.174406,-72.35335 - 7747: -14.955656,-71.99397 + 7479: -15.174406,-72.35335 + 7480: -14.955656,-71.99397 - node: cleanable: True angle: 1.0471975511965976 rad color: '#411C00CD' id: line decals: - 7754: -16.440031,-70.33772 - 7755: -16.049406,-70.5096 - 7756: -15.783781,-70.90022 + 7487: -16.440031,-70.33772 + 7488: -16.049406,-70.5096 + 7489: -15.783781,-70.90022 - node: cleanable: True color: '#411C00F2' id: line decals: - 7748: -14.955656,-72.22835 + 7481: -14.955656,-72.22835 - node: cleanable: True angle: 1.5707963267948966 rad color: '#4D131522' id: line decals: - 5578: -71.71009,-51.492207 - 5579: -72.913216,-51.460957 - 5580: -72.49134,-51.47658 - 5581: -71.24134,-51.47658 - 5582: -70.225716,-51.35158 - 5583: -69.27259,-51.492207 - 5584: -67.850716,-51.41408 - 5585: -70.05384,-51.28908 - 5586: -68.850716,-51.398457 - 5587: -67.89759,-51.28908 - 5588: -67.24134,-51.28908 - 5589: -66.694466,-51.273457 - 5590: -66.819466,-51.679707 - 5591: -67.08509,-51.460957 - 5592: -66.39759,-51.429707 - 5593: -66.52259,-51.25783 - 5594: -66.49134,-51.210957 - 5595: -66.96009,-51.523457 - 5596: -66.86634,-51.50783 - 5597: -67.33509,-51.47658 - 5598: -67.89759,-51.50783 - 5599: -68.694466,-51.554707 - 5600: -69.64759,-51.47658 - 5601: -69.944466,-51.335957 - 5602: -69.86634,-51.50783 - 5603: -68.55384,-51.38283 - 5604: -68.36634,-51.273457 - 5605: -68.24134,-51.460957 - 5606: -67.569466,-51.304707 - 5607: -67.05384,-51.117207 - 5608: -70.4,-51.471653 - 5609: -71.29063,-51.752903 - 5610: -70.47813,-51.487278 - 5611: -69.61875,-51.612278 - 5612: -68.79063,-51.268528 - 5613: -68.05625,-51.456028 - 5614: -66.79063,-51.456028 + 5381: -71.71009,-51.492207 + 5382: -72.913216,-51.460957 + 5383: -72.49134,-51.47658 + 5384: -71.24134,-51.47658 + 5385: -70.225716,-51.35158 + 5386: -69.27259,-51.492207 + 5387: -67.850716,-51.41408 + 5388: -70.05384,-51.28908 + 5389: -68.850716,-51.398457 + 5390: -67.89759,-51.28908 + 5391: -67.24134,-51.28908 + 5392: -66.694466,-51.273457 + 5393: -66.819466,-51.679707 + 5394: -67.08509,-51.460957 + 5395: -66.39759,-51.429707 + 5396: -66.52259,-51.25783 + 5397: -66.49134,-51.210957 + 5398: -66.96009,-51.523457 + 5399: -66.86634,-51.50783 + 5400: -67.33509,-51.47658 + 5401: -67.89759,-51.50783 + 5402: -68.694466,-51.554707 + 5403: -69.64759,-51.47658 + 5404: -69.944466,-51.335957 + 5405: -69.86634,-51.50783 + 5406: -68.55384,-51.38283 + 5407: -68.36634,-51.273457 + 5408: -68.24134,-51.460957 + 5409: -67.569466,-51.304707 + 5410: -67.05384,-51.117207 + 5411: -70.4,-51.471653 + 5412: -71.29063,-51.752903 + 5413: -70.47813,-51.487278 + 5414: -69.61875,-51.612278 + 5415: -68.79063,-51.268528 + 5416: -68.05625,-51.456028 + 5417: -66.79063,-51.456028 - node: cleanable: True angle: 1.5707963267948966 rad color: '#4D131563' id: line decals: - 5574: -67.15148,-51.66408 - 5575: -67.88586,-51.38283 - 5576: -69.19836,-51.50783 - 5577: -70.66471,-51.32033 + 5377: -67.15148,-51.66408 + 5378: -67.88586,-51.38283 + 5379: -69.19836,-51.50783 + 5380: -70.66471,-51.32033 - node: cleanable: True zIndex: 60 @@ -28963,23 +28963,23 @@ entities: color: '#791C1525' id: line decals: - 15768: -66.07874,36.01918 - 15769: -65.89124,38.159805 - 15770: -65.82874,37.80043 - 15771: -65.67249,38.409805 - 15772: -65.84437,38.42543 - 15773: -65.65687,38.284805 + 15501: -66.07874,36.01918 + 15502: -65.89124,38.159805 + 15503: -65.82874,37.80043 + 15504: -65.67249,38.409805 + 15505: -65.84437,38.42543 + 15506: -65.65687,38.284805 - node: cleanable: True zIndex: 60 color: '#791C1525' id: line decals: - 15774: -66.03336,35.907146 - 15775: -66.04899,36.500896 - 15776: -65.90836,37.23527 - 15777: -65.62711,38.20402 - 15778: -65.53336,38.42277 + 15507: -66.03336,35.907146 + 15508: -66.04899,36.500896 + 15509: -65.90836,37.23527 + 15510: -65.62711,38.20402 + 15511: -65.53336,38.42277 - node: cleanable: True zIndex: 60 @@ -28987,2117 +28987,2117 @@ entities: color: '#791C152B' id: line decals: - 15764: -65.76624,38.11293 - 15765: -65.84437,37.691055 - 15766: -66.03187,37.222305 - 15767: -66.00062,36.597305 + 15497: -65.76624,38.11293 + 15498: -65.84437,37.691055 + 15499: -66.03187,37.222305 + 15500: -66.00062,36.597305 - node: color: '#FFFFFF03' id: line decals: - 19691: -17.841846,-79.950905 - 19692: -17.951221,-80.65403 - 19693: -18.013721,-81.763405 - 19694: -18.123096,-84.575905 - 19695: -18.107471,-85.013405 - 19696: -18.076221,-85.388405 - 19697: -18.123096,-85.12278 - 19698: -18.013721,-84.138405 - 19699: -18.107471,-81.49778 - 19700: -18.154346,-80.669655 - 19701: -18.107471,-79.950905 - 19702: -18.169971,-79.669655 - 19703: -18.060596,-81.294655 - 19704: -18.076221,-84.357155 + 19424: -17.841846,-79.950905 + 19425: -17.951221,-80.65403 + 19426: -18.013721,-81.763405 + 19427: -18.123096,-84.575905 + 19428: -18.107471,-85.013405 + 19429: -18.076221,-85.388405 + 19430: -18.123096,-85.12278 + 19431: -18.013721,-84.138405 + 19432: -18.107471,-81.49778 + 19433: -18.154346,-80.669655 + 19434: -18.107471,-79.950905 + 19435: -18.169971,-79.669655 + 19436: -18.060596,-81.294655 + 19437: -18.076221,-84.357155 - node: color: '#FFFFFF09' id: line decals: - 19675: -17.904346,-79.857155 - 19676: -17.966846,-80.12278 - 19677: -18.060596,-80.65403 - 19678: -18.060596,-81.06028 - 19679: -17.998096,-81.794655 - 19680: -18.013721,-83.93528 - 19681: -18.029346,-84.450905 - 19682: -18.294971,-79.74778 - 19683: -18.138721,-79.732155 - 19684: -18.013721,-80.56028 - 19685: -18.029346,-81.40403 - 19686: -18.169971,-84.044655 - 19687: -17.904346,-79.669655 - 19688: -17.951221,-80.857155 - 19689: -17.919971,-81.90403 - 19690: -17.935596,-84.09153 + 19408: -17.904346,-79.857155 + 19409: -17.966846,-80.12278 + 19410: -18.060596,-80.65403 + 19411: -18.060596,-81.06028 + 19412: -17.998096,-81.794655 + 19413: -18.013721,-83.93528 + 19414: -18.029346,-84.450905 + 19415: -18.294971,-79.74778 + 19416: -18.138721,-79.732155 + 19417: -18.013721,-80.56028 + 19418: -18.029346,-81.40403 + 19419: -18.169971,-84.044655 + 19420: -17.904346,-79.669655 + 19421: -17.951221,-80.857155 + 19422: -17.919971,-81.90403 + 19423: -17.935596,-84.09153 - node: color: '#FFFFFFFF' id: line decals: - 9944: 25.405735,-33.16206 - 9945: 25.468235,-33.06831 - 9946: 25.42136,-32.896435 - 9947: 25.374485,-32.646435 - 9948: 25.51511,-32.19331 - 9949: 25.640112,-31.880812 - 9950: 25.561987,-31.708937 - 9951: 25.499487,-31.50581 - 9952: 25.499487,-31.31831 - 9953: 25.515112,-31.021437 - 9954: 25.546364,-30.677685 - 9955: 25.468239,-30.47456 - 9956: 25.468239,-30.208935 - 9957: 25.577614,-29.78706 - 9958: 25.593239,-29.56831 - 9959: 25.468239,-29.365185 - 9960: 25.327614,-29.208935 - 9961: 25.468239,-28.927685 - 9962: 25.59324,-28.63081 + 9677: 25.405735,-33.16206 + 9678: 25.468235,-33.06831 + 9679: 25.42136,-32.896435 + 9680: 25.374485,-32.646435 + 9681: 25.51511,-32.19331 + 9682: 25.640112,-31.880812 + 9683: 25.561987,-31.708937 + 9684: 25.499487,-31.50581 + 9685: 25.499487,-31.31831 + 9686: 25.515112,-31.021437 + 9687: 25.546364,-30.677685 + 9688: 25.468239,-30.47456 + 9689: 25.468239,-30.208935 + 9690: 25.577614,-29.78706 + 9691: 25.593239,-29.56831 + 9692: 25.468239,-29.365185 + 9693: 25.327614,-29.208935 + 9694: 25.468239,-28.927685 + 9695: 25.59324,-28.63081 - node: angle: 0.3490658503988659 rad color: '#FFFFFFFF' id: line decals: - 10009: 25.031898,-29.45996 - 10010: 25.188148,-29.631836 - 10011: 25.172523,-30.006836 - 10012: 25.188147,-30.61621 - 10013: 25.453772,-31.256836 + 9742: 25.031898,-29.45996 + 9743: 25.188148,-29.631836 + 9744: 25.172523,-30.006836 + 9745: 25.188147,-30.61621 + 9746: 25.453772,-31.256836 - node: angle: 0.6981317007977318 rad color: '#FFFFFFFF' id: line decals: - 9998: 24.750648,-29.038086 - 9999: 25.344398,-29.17871 - 10000: 25.219398,-29.850586 - 10001: 25.266273,-30.100586 - 10002: 25.266273,-29.36621 - 10003: 25.219398,-29.86621 - 10004: 25.516272,-30.52246 - 10005: 25.516273,-30.256836 - 10006: 25.516272,-30.881836 - 10007: 25.625645,-31.89746 - 10008: 25.281898,-29.475586 + 9731: 24.750648,-29.038086 + 9732: 25.344398,-29.17871 + 9733: 25.219398,-29.850586 + 9734: 25.266273,-30.100586 + 9735: 25.266273,-29.36621 + 9736: 25.219398,-29.86621 + 9737: 25.516272,-30.52246 + 9738: 25.516273,-30.256836 + 9739: 25.516272,-30.881836 + 9740: 25.625645,-31.89746 + 9741: 25.281898,-29.475586 - node: angle: 1.0471975511965976 rad color: '#FFFFFFFF' id: line decals: - 10014: 24.469398,-28.975586 + 9747: 24.469398,-28.975586 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: line decals: - 9963: 16.515114,-28.771452 - 9964: 17.015114,-28.537079 - 9965: 17.186989,-28.630829 - 9966: 17.436989,-28.755829 - 9967: 17.921364,-28.615204 - 9968: 18.265114,-28.583954 - 9969: 18.718239,-28.755829 - 9970: 18.936989,-28.662079 - 9971: 19.280739,-28.490206 - 9972: 19.843239,-28.583956 - 9973: 20.405739,-28.599583 - 9974: 20.921364,-28.630833 - 9975: 21.483864,-28.583958 - 9976: 21.858864,-28.568333 - 9977: 22.140114,-28.677708 - 9978: 22.702614,-28.61521 - 9979: 23.030739,-28.83396 - 9980: 23.343239,-28.662085 - 9981: 23.780739,-28.630836 - 9982: 24.296364,-28.896461 - 9983: 24.624489,-28.677711 - 9984: 24.890114,-28.505836 - 9985: 24.108864,-28.693336 - 9986: 24.343239,-28.552711 - 9987: 25.280739,-28.740211 - 9988: 25.374489,-28.896461 - 9989: 16.495716,-28.880829 - 9990: 16.776966,-28.818329 - 9991: 17.448841,-28.72458 - 9992: 18.105091,-28.615206 - 9993: 23.620718,-28.78049 - 9994: 24.464468,-28.858618 - 9995: 24.58494,-28.811739 - 9996: 25.288063,-29.139866 - 9997: 25.444315,-28.46799 + 9696: 16.515114,-28.771452 + 9697: 17.015114,-28.537079 + 9698: 17.186989,-28.630829 + 9699: 17.436989,-28.755829 + 9700: 17.921364,-28.615204 + 9701: 18.265114,-28.583954 + 9702: 18.718239,-28.755829 + 9703: 18.936989,-28.662079 + 9704: 19.280739,-28.490206 + 9705: 19.843239,-28.583956 + 9706: 20.405739,-28.599583 + 9707: 20.921364,-28.630833 + 9708: 21.483864,-28.583958 + 9709: 21.858864,-28.568333 + 9710: 22.140114,-28.677708 + 9711: 22.702614,-28.61521 + 9712: 23.030739,-28.83396 + 9713: 23.343239,-28.662085 + 9714: 23.780739,-28.630836 + 9715: 24.296364,-28.896461 + 9716: 24.624489,-28.677711 + 9717: 24.890114,-28.505836 + 9718: 24.108864,-28.693336 + 9719: 24.343239,-28.552711 + 9720: 25.280739,-28.740211 + 9721: 25.374489,-28.896461 + 9722: 16.495716,-28.880829 + 9723: 16.776966,-28.818329 + 9724: 17.448841,-28.72458 + 9725: 18.105091,-28.615206 + 9726: 23.620718,-28.78049 + 9727: 24.464468,-28.858618 + 9728: 24.58494,-28.811739 + 9729: 25.288063,-29.139866 + 9730: 25.444315,-28.46799 - node: angle: 4.1887902047863905 rad color: '#FFFFFFFF' id: line decals: - 10015: 22.391273,-28.663082 + 9748: 22.391273,-28.663082 - node: cleanable: True color: '#4A4542FF' id: pawprint decals: - 3741: -22.009523,21.310154 - 3742: -21.743898,21.591404 - 3743: -22.040773,21.919529 - 3744: -21.728273,22.372654 + 3694: -22.009523,21.310154 + 3695: -21.743898,21.591404 + 3696: -22.040773,21.919529 + 3697: -21.728273,22.372654 - node: zIndex: 60 color: '#6C131831' id: pawprint decals: - 16154: -66.206406,26.986692 - 16155: -66.00328,26.642942 - 16156: -65.94078,27.455442 - 16157: -66.081406,28.049192 - 16158: -66.06578,28.439817 - 16159: -66.112656,28.986692 - 16160: -65.893906,29.330442 - 16161: -66.237656,29.752317 - 16162: -66.03453,30.033567 - 16163: -66.31578,30.408567 + 15887: -66.206406,26.986692 + 15888: -66.00328,26.642942 + 15889: -65.94078,27.455442 + 15890: -66.081406,28.049192 + 15891: -66.06578,28.439817 + 15892: -66.112656,28.986692 + 15893: -65.893906,29.330442 + 15894: -66.237656,29.752317 + 15895: -66.03453,30.033567 + 15896: -66.31578,30.408567 - node: zIndex: 60 color: '#AE131822' id: pawprint decals: - 16111: -66.19078,28.111692 - 16112: -66.175156,28.127317 - 16113: -66.15953,28.158567 - 16114: -65.97203,28.346067 - 16115: -65.94078,28.517942 - 16116: -65.925156,28.517942 - 16117: -65.893906,28.408567 - 16118: -66.06578,28.736692 - 16119: -66.112656,28.908567 - 16120: -66.112656,28.908567 - 16121: -66.112656,28.861692 - 16122: -65.87828,29.049192 - 16123: -65.97203,29.221067 - 16124: -65.90953,29.189817 - 16125: -66.237656,29.549192 - 16126: -66.112656,29.611692 - 16127: -66.112656,29.611692 - 16128: -66.300156,29.627317 - 16129: -66.050156,29.955442 - 16130: -65.97203,30.096067 - 16131: -65.94078,30.064817 - 16132: -66.018906,30.096067 - 16133: -66.25328,30.439817 - 16134: -66.25328,30.392942 - 16135: -65.956406,27.580442 - 16136: -65.925156,27.533567 - 16137: -65.925156,27.580442 - 16138: -65.925156,27.596067 - 16139: -65.69078,27.330442 - 16140: -66.12828,27.127317 - 16141: -66.206406,27.111692 - 16142: -66.206406,26.892942 - 16143: -66.175156,26.877317 - 16144: -66.22203,26.908567 - 16145: -65.768906,26.705442 - 16146: -65.862656,26.627317 - 16147: -65.862656,26.611692 - 16148: -65.831406,26.627317 - 16149: -66.175156,27.017942 - 16150: -66.175156,27.080442 - 16151: -66.175156,27.080442 - 16152: -65.90953,26.642942 - 16153: -65.87828,26.627317 + 15844: -66.19078,28.111692 + 15845: -66.175156,28.127317 + 15846: -66.15953,28.158567 + 15847: -65.97203,28.346067 + 15848: -65.94078,28.517942 + 15849: -65.925156,28.517942 + 15850: -65.893906,28.408567 + 15851: -66.06578,28.736692 + 15852: -66.112656,28.908567 + 15853: -66.112656,28.908567 + 15854: -66.112656,28.861692 + 15855: -65.87828,29.049192 + 15856: -65.97203,29.221067 + 15857: -65.90953,29.189817 + 15858: -66.237656,29.549192 + 15859: -66.112656,29.611692 + 15860: -66.112656,29.611692 + 15861: -66.300156,29.627317 + 15862: -66.050156,29.955442 + 15863: -65.97203,30.096067 + 15864: -65.94078,30.064817 + 15865: -66.018906,30.096067 + 15866: -66.25328,30.439817 + 15867: -66.25328,30.392942 + 15868: -65.956406,27.580442 + 15869: -65.925156,27.533567 + 15870: -65.925156,27.580442 + 15871: -65.925156,27.596067 + 15872: -65.69078,27.330442 + 15873: -66.12828,27.127317 + 15874: -66.206406,27.111692 + 15875: -66.206406,26.892942 + 15876: -66.175156,26.877317 + 15877: -66.22203,26.908567 + 15878: -65.768906,26.705442 + 15879: -65.862656,26.627317 + 15880: -65.862656,26.611692 + 15881: -65.831406,26.627317 + 15882: -66.175156,27.017942 + 15883: -66.175156,27.080442 + 15884: -66.175156,27.080442 + 15885: -65.90953,26.642942 + 15886: -65.87828,26.627317 - node: angle: 1.5707963267948966 rad color: '#FFFFFFA8' id: pawprint decals: - 19934: -13.233103,-87.70751 - 19935: -13.233103,-88.16064 - 19936: -4.669463,-89.84814 - 19937: -4.638213,-90.34814 - 19938: -3.6552572,-84.716324 - 19939: -3.6396322,-85.23195 + 19667: -13.233103,-87.70751 + 19668: -13.233103,-88.16064 + 19669: -4.669463,-89.84814 + 19670: -4.638213,-90.34814 + 19671: -3.6552572,-84.716324 + 19672: -3.6396322,-85.23195 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: pawprint decals: - 12661: 82.13489,-50.14636 + 12394: 82.13489,-50.14636 - node: angle: 1.7453292519943295 rad color: '#FFFFFFFF' id: pawprint decals: - 12662: 81.87162,-49.86511 + 12395: 81.87162,-49.86511 - node: zIndex: 90 angle: 1.7453292519943295 rad color: '#FFFFFFFF' id: pawprint decals: - 12663: 81.59037,-50.224483 + 12396: 81.59037,-50.224483 - node: zIndex: 90 angle: 2.2689280275926285 rad color: '#FFFFFFFF' id: pawprint decals: - 12664: 81.324745,-49.83386 + 12397: 81.324745,-49.83386 - node: zIndex: 90 angle: 2.6179938779914944 rad color: '#FFFFFFFF' id: pawprint decals: - 12665: 80.918495,-50.14636 - 12666: 81.230995,-50.36511 + 12398: 80.918495,-50.14636 + 12399: 81.230995,-50.36511 - node: zIndex: 90 angle: 2.792526803190927 rad color: '#FFFFFFFF' id: pawprint decals: - 12667: 80.65287,-50.61511 - 12668: 81.012245,-50.83386 - 12669: 80.62162,-51.099483 + 12400: 80.65287,-50.61511 + 12401: 81.012245,-50.83386 + 12402: 80.62162,-51.099483 - node: zIndex: 90 angle: 2.9670597283903604 rad color: '#FFFFFFFF' id: pawprint decals: - 12782: 80.96229,-51.33355 - 12783: 80.60291,-51.5523 - 12784: 80.91541,-51.83355 - 12785: 80.60291,-52.0523 + 12515: 80.96229,-51.33355 + 12516: 80.60291,-51.5523 + 12517: 80.91541,-51.83355 + 12518: 80.60291,-52.0523 - node: zIndex: 90 angle: 3.490658503988659 rad color: '#FFFFFFFF' id: pawprint decals: - 12786: 80.64979,-52.4898 - 12787: 80.94666,-52.317924 + 12519: 80.64979,-52.4898 + 12520: 80.94666,-52.317924 - node: zIndex: 90 angle: 3.839724354387525 rad color: '#FFFFFFFF' id: pawprint decals: - 12788: 80.77479,-52.89605 - 12789: 81.11854,-52.786674 + 12521: 80.77479,-52.89605 + 12522: 81.11854,-52.786674 - node: zIndex: 90 angle: 4.014257279586958 rad color: '#FFFFFFFF' id: pawprint decals: - 12790: 81.07166,-53.255424 + 12523: 81.07166,-53.255424 - node: zIndex: 90 angle: 4.363323129985824 rad color: '#FFFFFFFF' id: pawprint decals: - 12791: 81.54041,-53.3648 - 12792: 81.60291,-52.974174 - 12793: 81.99354,-53.380424 - 12794: 82.08729,-52.9898 + 12524: 81.54041,-53.3648 + 12525: 81.60291,-52.974174 + 12526: 81.99354,-53.380424 + 12527: 82.08729,-52.9898 - node: zIndex: 90 angle: 4.71238898038469 rad color: '#FFFFFFFF' id: pawprint decals: - 12795: 82.55604,-52.9898 - 12796: 82.54041,-53.33355 - 12797: 83.073235,-52.99592 - 12798: 83.073235,-53.37092 + 12528: 82.55604,-52.9898 + 12529: 82.54041,-53.33355 + 12530: 83.073235,-52.99592 + 12531: 83.073235,-53.37092 - node: color: '#FFFFFFFF' id: radiation decals: - 17752: -79.14073,-59.052696 + 17485: -79.14073,-59.052696 - node: cleanable: True color: '#AE0000C3' id: revolution decals: - 17115: -25.476048,-89.46198 + 16848: -25.476048,-89.46198 - node: color: '#DE3A3AD0' id: rune1 decals: - 17432: 59,17 + 17165: 59,17 - node: color: '#DE3A3AD0' id: rune2 decals: - 17433: 59,19 + 17166: 59,19 - node: color: '#DE3A3AD0' id: rune3 decals: - 17434: 61,19 + 17167: 61,19 - node: color: '#DE3A3AD0' id: rune4 decals: - 17435: 61,17 + 17168: 61,17 - node: color: '#4A896F15' id: s decals: - 19229: -62.840034,-57.91909 - 19230: -63.10566,-57.934715 - 19231: -63.07441,-58.122215 - 19232: -63.10566,-57.903465 - 19233: -62.911194,-57.819492 - 19234: -62.911148,-57.8819 - 19235: -62.911148,-57.991276 - 19236: -63.254898,-60.928776 - 19237: -63.254898,-60.928776 - 19238: -62.958023,-60.991276 - 19239: -62.958023,-60.991276 + 18962: -62.840034,-57.91909 + 18963: -63.10566,-57.934715 + 18964: -63.07441,-58.122215 + 18965: -63.10566,-57.903465 + 18966: -62.911194,-57.819492 + 18967: -62.911148,-57.8819 + 18968: -62.911148,-57.991276 + 18969: -63.254898,-60.928776 + 18970: -63.254898,-60.928776 + 18971: -62.958023,-60.991276 + 18972: -62.958023,-60.991276 - node: color: '#4A896F15' id: scroll decals: - 19240: -63.051773,-60.866276 - 19241: -63.051773,-60.866276 - 19242: -63.036148,-60.897526 + 18973: -63.051773,-60.866276 + 18974: -63.051773,-60.866276 + 18975: -63.036148,-60.897526 - node: zIndex: 60 angle: 0.5235987755982988 rad color: '#CABF5A0C' id: shortline decals: - 16035: -87.914024,20.858967 - 16036: -88.039024,21.062092 - 16037: -87.789024,20.687092 - 16038: -87.6484,20.405842 - 16039: -88.007774,20.827717 - 16040: -88.320274,20.577717 - 16041: -87.99215,20.655842 - 16042: -87.8359,20.890217 - 16043: -87.820274,20.640217 - 16044: -87.914024,20.202717 + 15768: -87.914024,20.858967 + 15769: -88.039024,21.062092 + 15770: -87.789024,20.687092 + 15771: -87.6484,20.405842 + 15772: -88.007774,20.827717 + 15773: -88.320274,20.577717 + 15774: -87.99215,20.655842 + 15775: -87.8359,20.890217 + 15776: -87.820274,20.640217 + 15777: -87.914024,20.202717 - node: color: '#FFFFFF03' id: shortline decals: - 19744: -18.044971,-80.49778 - 19745: -17.951221,-81.294655 - 19746: -17.966846,-82.044655 - 19747: -18.076221,-84.21653 - 19748: -17.919971,-84.87278 - 19749: -17.591846,-82.24778 - 19750: -17.794971,-81.21653 - 19751: -17.841846,-80.24778 - 19752: -17.966846,-80.27903 - 19753: -18.107471,-81.919655 - 19754: -18.060596,-82.24778 - 19755: -18.326221,-80.950905 - 19756: -18.482471,-80.232155 - 19757: -18.373096,-80.77903 - 19758: -18.169971,-81.763405 - 19759: -18.201221,-80.575905 - 19760: -18.294971,-79.81028 - 19761: -18.201221,-80.982155 - 19762: -18.341846,-80.27903 - 19763: -18.623096,-79.52903 - 19764: -18.013721,-81.02903 - 19765: -18.294971,-80.06028 - 19766: -17.419971,-80.15403 - 19767: -17.451221,-79.62278 - 19768: -18.013721,-81.12278 - 19769: -17.513721,-79.950905 - 19770: -17.685596,-80.46653 - 19771: -17.638721,-80.43528 - 19772: -17.498096,-79.71653 - 19773: -17.966846,-80.669655 - 19774: -18.107471,-82.18528 - 19775: -18.060596,-82.732155 - 19776: -18.013721,-83.15403 - 19777: -18.060596,-83.982155 - 19778: -18.076221,-83.93528 - 19779: -18.201221,-82.90403 - 19780: -18.154346,-82.27903 - 19781: -18.029346,-81.825905 - 19782: -17.919971,-82.71653 - 19783: -17.966846,-83.74778 - 19784: -17.966846,-84.138405 - 19785: -18.076221,-82.982155 + 19477: -18.044971,-80.49778 + 19478: -17.951221,-81.294655 + 19479: -17.966846,-82.044655 + 19480: -18.076221,-84.21653 + 19481: -17.919971,-84.87278 + 19482: -17.591846,-82.24778 + 19483: -17.794971,-81.21653 + 19484: -17.841846,-80.24778 + 19485: -17.966846,-80.27903 + 19486: -18.107471,-81.919655 + 19487: -18.060596,-82.24778 + 19488: -18.326221,-80.950905 + 19489: -18.482471,-80.232155 + 19490: -18.373096,-80.77903 + 19491: -18.169971,-81.763405 + 19492: -18.201221,-80.575905 + 19493: -18.294971,-79.81028 + 19494: -18.201221,-80.982155 + 19495: -18.341846,-80.27903 + 19496: -18.623096,-79.52903 + 19497: -18.013721,-81.02903 + 19498: -18.294971,-80.06028 + 19499: -17.419971,-80.15403 + 19500: -17.451221,-79.62278 + 19501: -18.013721,-81.12278 + 19502: -17.513721,-79.950905 + 19503: -17.685596,-80.46653 + 19504: -17.638721,-80.43528 + 19505: -17.498096,-79.71653 + 19506: -17.966846,-80.669655 + 19507: -18.107471,-82.18528 + 19508: -18.060596,-82.732155 + 19509: -18.013721,-83.15403 + 19510: -18.060596,-83.982155 + 19511: -18.076221,-83.93528 + 19512: -18.201221,-82.90403 + 19513: -18.154346,-82.27903 + 19514: -18.029346,-81.825905 + 19515: -17.919971,-82.71653 + 19516: -17.966846,-83.74778 + 19517: -17.966846,-84.138405 + 19518: -18.076221,-82.982155 - node: color: '#4A896F15' id: skull decals: - 19218: -48.1949,-52.008205 - 19219: -47.960526,-52.008205 - 19220: -47.960526,-52.008205 - 19221: -47.97615,-52.226955 - 19222: -47.85115,-52.289455 - 19223: -61.12482,-55.95888 - 19224: -61.265446,-55.943256 - 19225: -60.90607,-55.95888 - 19226: -61.15607,-55.86513 - 19227: -61.09357,-56.037006 - 19228: -61.171696,-56.14638 + 18951: -48.1949,-52.008205 + 18952: -47.960526,-52.008205 + 18953: -47.960526,-52.008205 + 18954: -47.97615,-52.226955 + 18955: -47.85115,-52.289455 + 18956: -61.12482,-55.95888 + 18957: -61.265446,-55.943256 + 18958: -60.90607,-55.95888 + 18959: -61.15607,-55.86513 + 18960: -61.09357,-56.037006 + 18961: -61.171696,-56.14638 - node: angle: 0.5235987755982988 rad color: '#88929BFF' id: skull decals: - 18089: -72.08759,74.216 + 17822: -72.08759,74.216 - node: angle: -0.5235987755982988 rad color: '#989C9EFF' id: skull decals: - 18091: -67.79072,75.99725 + 17824: -67.79072,75.99725 - node: zIndex: 60 color: '#A700DF59' id: skull decals: - 16186: -62.908226,50.040752 + 15919: -62.908226,50.040752 - node: angle: -0.17453292519943295 rad color: '#C0C2C3FF' id: skull decals: - 18092: -68.04072,75.98163 + 17825: -68.04072,75.98163 - node: angle: 1.0471975511965976 rad color: '#C7CCD3FF' id: skull decals: - 18090: -72.07197,73.87225 + 17823: -72.07197,73.87225 - node: cleanable: True color: '#FFFFFF6C' id: skull decals: - 4413: -55.019886,34.995995 + 4216: -55.019886,34.995995 - node: color: '#FFFFFFFF' id: skull decals: - 14686: 49.19542,-54.650192 + 14419: 49.19542,-54.650192 - node: cleanable: True color: '#791C1542' id: slash decals: - 15752: -65.87562,38.159805 - 15753: -65.89124,38.01918 - 15754: -65.95374,37.73793 - 15755: -65.68812,38.191055 - 15756: -65.71937,37.95668 - 15757: -65.70374,37.48793 - 15758: -65.75062,38.11293 - 15759: -65.70374,37.55043 - 15760: -65.87562,37.05043 - 15761: -65.70374,38.066055 - 15762: -65.75062,37.659805 - 15763: -65.75062,37.45668 + 15485: -65.87562,38.159805 + 15486: -65.89124,38.01918 + 15487: -65.95374,37.73793 + 15488: -65.68812,38.191055 + 15489: -65.71937,37.95668 + 15490: -65.70374,37.48793 + 15491: -65.75062,38.11293 + 15492: -65.70374,37.55043 + 15493: -65.87562,37.05043 + 15494: -65.70374,38.066055 + 15495: -65.75062,37.659805 + 15496: -65.75062,37.45668 - node: zIndex: 60 angle: -2.9670597283903604 rad color: '#CABF5A0C' id: slash decals: - 16027: -87.912186,20.964798 + 15760: -87.912186,20.964798 - node: zIndex: 60 angle: -1.5707963267948966 rad color: '#CABF5A0C' id: slash decals: - 16019: -88.36531,20.839798 - 16020: -88.255936,20.855423 - 16021: -88.099686,20.683548 - 16022: -88.24031,20.902298 - 16023: -88.55281,20.949173 + 15752: -88.36531,20.839798 + 15753: -88.255936,20.855423 + 15754: -88.099686,20.683548 + 15755: -88.24031,20.902298 + 15756: -88.55281,20.949173 - node: zIndex: 60 angle: -0.5235987755982988 rad color: '#CABF5A0C' id: slash decals: - 16024: -87.974686,20.996048 - 16025: -87.943436,20.824173 - 16026: -87.849686,20.761673 + 15757: -87.974686,20.996048 + 15758: -87.943436,20.824173 + 15759: -87.849686,20.761673 - node: zIndex: 60 color: '#CABF5A0C' id: slash decals: - 16013: -87.662186,21.324173 - 16014: -87.880936,20.949173 - 16015: -87.89656,20.527298 - 16016: -87.70906,21.246048 - 16017: -87.724686,20.949173 - 16018: -87.818436,20.652298 + 15746: -87.662186,21.324173 + 15747: -87.880936,20.949173 + 15748: -87.89656,20.527298 + 15749: -87.70906,21.246048 + 15750: -87.724686,20.949173 + 15751: -87.818436,20.652298 - node: zIndex: 60 angle: 0.5235987755982988 rad color: '#CABF5A0C' id: slash decals: - 16028: -88.14656,20.996048 - 16029: -87.95906,20.792923 - 16030: -88.099686,20.886673 + 15761: -88.14656,20.996048 + 15762: -87.95906,20.792923 + 15763: -88.099686,20.886673 - node: color: '#D0D0D0FF' id: slash decals: - 3713: 0.04350543,5.270033 - 3735: 0.04350543,5.301283 + 3666: 0.04350543,5.270033 + 3688: 0.04350543,5.301283 - node: color: '#FFFFFFFF' id: slash decals: - 3729: 0.04350543,5.301283 - 14669: 43.85416,-49.193798 + 3682: 0.04350543,5.301283 + 14402: 43.85416,-49.193798 - node: color: '#9B0000FF' id: smallbrush decals: - 20245: 32.016468,-75.35878 - 20246: 31.489044,-75.65175 - 20247: 31.899261,-75.98378 - 20248: 31.684387,-76.00331 - 20261: 31.114439,-74.7139 - 20262: 31.270712,-74.7139 - 20263: 30.626083,-74.77249 - 20264: 30.60655,-76.13968 - 20265: 31.114439,-76.51077 - 20266: 32.169285,-75.88577 - 20267: 32.325558,-75.70999 - 20268: 32.24742,-75.57327 + 19883: 32.016468,-75.35878 + 19884: 31.489044,-75.65175 + 19885: 31.899261,-75.98378 + 19886: 31.684387,-76.00331 + 19899: 31.114439,-74.7139 + 19900: 31.270712,-74.7139 + 19901: 30.626083,-74.77249 + 19902: 30.60655,-76.13968 + 19903: 31.114439,-76.51077 + 19904: 32.169285,-75.88577 + 19905: 32.325558,-75.70999 + 19906: 32.24742,-75.57327 - node: cleanable: True color: '#AE000063' id: smallbrush decals: - 18183: 31.66362,-17.192596 + 17916: 31.66362,-17.192596 - node: cleanable: True color: '#AE0000AE' id: smallbrush decals: - 18167: -21.203617,44.806896 + 17900: -21.203617,44.806896 - node: cleanable: True color: '#FFFFFF6C' id: snake decals: - 4414: -57.082386,31.01162 + 4217: -57.082386,31.01162 - node: color: '#BC863FFF' id: space decals: - 1879: 87,-14 + 1832: 87,-14 - node: color: '#FF9821FF' id: space decals: - 16466: 83,7 - 16467: 83,5 + 16199: 83,7 + 16200: 83,5 - node: color: '#FFA647FF' id: space decals: - 1872: 87,-16 - 1873: 87,-16 + 1825: 87,-16 + 1826: 87,-16 - node: cleanable: True color: '#37160041' id: splatter decals: - 4383: -43.37381,7.669285 - 4384: -48.9228,8.444115 - 4385: -48.2978,9.287865 - 4386: -47.907173,9.069115 - 4387: -46.188423,10.566183 - 4388: -46.6728,10.847433 - 4389: -50.500675,8.244999 - 4390: -50.6413,8.088749 - 4391: -49.40102,2.5729976 + 4186: -43.37381,7.669285 + 4187: -48.9228,8.444115 + 4188: -48.2978,9.287865 + 4189: -47.907173,9.069115 + 4190: -46.188423,10.566183 + 4191: -46.6728,10.847433 + 4192: -50.500675,8.244999 + 4193: -50.6413,8.088749 + 4194: -49.40102,2.5729976 - node: angle: -0.17453292519943295 rad color: '#37261F50' id: splatter decals: - 16249: -67.44104,-3.635048 - 16250: -67.38086,-3.8387516 + 15982: -67.44104,-3.635048 + 15983: -67.38086,-3.8387516 - node: angle: -0.6981317007977318 rad color: '#37261F7F' id: splatter decals: - 16247: -67.640114,-3.6026404 - 16248: -67.52901,-3.7507887 + 15980: -67.640114,-3.6026404 + 15981: -67.52901,-3.7507887 - node: cleanable: True color: '#3AB3D84D' id: splatter decals: - 1467: -22.97315,35.893066 + 1420: -22.97315,35.893066 - node: cleanable: True color: '#411C008F' id: splatter decals: - 7708: -16.627531,-70.52522 - 7709: -16.440031,-70.33772 - 7710: -16.361906,-69.72835 - 7711: -16.158781,-69.58772 - 7712: -16.549406,-70.0096 - 7713: -16.533781,-70.49397 - 7714: -16.471281,-71.0096 - 7715: -16.768156,-71.6346 - 7716: -16.533781,-72.0096 - 7717: -15.971281,-72.1971 - 7718: -15.830656,-72.5096 - 7719: -15.330656,-72.58772 - 7720: -14.627531,-72.35335 - 7721: -14.049406,-69.68147 - 7722: -13.986906,-70.05647 - 7723: -13.861906,-70.5721 - 7724: -13.674406,-70.93147 - 7725: -13.408781,-71.35335 - 7726: -13.518156,-72.02522 - 7727: -13.877531,-70.61897 - 7728: -14.049406,-69.52522 - 7729: -13.830656,-70.02522 - 7730: -13.424406,-70.58772 - 7731: -13.549406,-71.08772 - 7732: -13.908781,-72.11897 - 7733: -14.205656,-72.36897 - 7734: -14.752531,-72.5721 - 7735: -14.143156,-72.47835 - 7736: -13.674406,-72.16585 - 7737: -13.830656,-71.60335 - 7738: -13.768156,-71.58772 - 7739: -13.721281,-71.96272 - 7740: -13.455656,-72.4471 - 7741: -16.346281,-71.55647 - 7742: -16.408781,-71.22835 - 7743: -16.908781,-71.16585 - 7744: -16.486906,-71.85335 - 7745: -16.111906,-72.40022 + 7441: -16.627531,-70.52522 + 7442: -16.440031,-70.33772 + 7443: -16.361906,-69.72835 + 7444: -16.158781,-69.58772 + 7445: -16.549406,-70.0096 + 7446: -16.533781,-70.49397 + 7447: -16.471281,-71.0096 + 7448: -16.768156,-71.6346 + 7449: -16.533781,-72.0096 + 7450: -15.971281,-72.1971 + 7451: -15.830656,-72.5096 + 7452: -15.330656,-72.58772 + 7453: -14.627531,-72.35335 + 7454: -14.049406,-69.68147 + 7455: -13.986906,-70.05647 + 7456: -13.861906,-70.5721 + 7457: -13.674406,-70.93147 + 7458: -13.408781,-71.35335 + 7459: -13.518156,-72.02522 + 7460: -13.877531,-70.61897 + 7461: -14.049406,-69.52522 + 7462: -13.830656,-70.02522 + 7463: -13.424406,-70.58772 + 7464: -13.549406,-71.08772 + 7465: -13.908781,-72.11897 + 7466: -14.205656,-72.36897 + 7467: -14.752531,-72.5721 + 7468: -14.143156,-72.47835 + 7469: -13.674406,-72.16585 + 7470: -13.830656,-71.60335 + 7471: -13.768156,-71.58772 + 7472: -13.721281,-71.96272 + 7473: -13.455656,-72.4471 + 7474: -16.346281,-71.55647 + 7475: -16.408781,-71.22835 + 7476: -16.908781,-71.16585 + 7477: -16.486906,-71.85335 + 7478: -16.111906,-72.40022 - node: cleanable: True color: '#411C00FF' id: splatter decals: - 7682: -16.299406,-69.55647 - 7683: -16.674406,-69.77522 - 7684: -16.752531,-70.29085 - 7685: -13.815031,-69.77522 - 7686: -13.424406,-70.08772 - 7687: -13.471281,-70.85335 - 7688: -13.502531,-71.46272 - 7689: -13.627531,-69.60335 - 7690: -13.643156,-69.6346 - 7691: -13.533781,-70.24397 - 7692: -13.471281,-70.71272 - 7693: -16.533781,-72.16585 - 7694: -16.158781,-72.5721 - 7695: -15.658781,-72.54085 - 7696: -15.205656,-72.54085 - 7697: -14.440031,-72.72835 - 7698: -13.674406,-72.3221 - 7699: -13.408781,-72.11897 - 7700: -13.299406,-72.47835 - 7701: -13.924406,-72.47835 - 7702: -13.971281,-72.58772 - 7703: -14.377531,-72.60335 - 7704: -15.080656,-72.58772 - 7705: -16.205656,-72.68147 - 7706: -16.346281,-72.27522 - 7707: -16.627531,-71.7596 + 7415: -16.299406,-69.55647 + 7416: -16.674406,-69.77522 + 7417: -16.752531,-70.29085 + 7418: -13.815031,-69.77522 + 7419: -13.424406,-70.08772 + 7420: -13.471281,-70.85335 + 7421: -13.502531,-71.46272 + 7422: -13.627531,-69.60335 + 7423: -13.643156,-69.6346 + 7424: -13.533781,-70.24397 + 7425: -13.471281,-70.71272 + 7426: -16.533781,-72.16585 + 7427: -16.158781,-72.5721 + 7428: -15.658781,-72.54085 + 7429: -15.205656,-72.54085 + 7430: -14.440031,-72.72835 + 7431: -13.674406,-72.3221 + 7432: -13.408781,-72.11897 + 7433: -13.299406,-72.47835 + 7434: -13.924406,-72.47835 + 7435: -13.971281,-72.58772 + 7436: -14.377531,-72.60335 + 7437: -15.080656,-72.58772 + 7438: -16.205656,-72.68147 + 7439: -16.346281,-72.27522 + 7440: -16.627531,-71.7596 - node: cleanable: True color: '#41391B56' id: splatter decals: - 4406: -58.47791,33.526634 - 4407: -53.524784,31.94912 - 4408: -55.04041,34.683495 - 4409: -55.22791,34.402245 - 4410: -54.85291,34.57412 + 4209: -58.47791,33.526634 + 4210: -53.524784,31.94912 + 4211: -55.04041,34.683495 + 4212: -55.22791,34.402245 + 4213: -54.85291,34.57412 - node: zIndex: 60 color: '#441F1528' id: splatter decals: - 15942: -78.12123,40.00033 - 15943: -78.230606,40.140957 - 15944: -77.71498,40.328457 - 15945: -77.93373,39.828457 - 15946: -74.869606,37.78158 - 15947: -75.182106,38.078457 - 15948: -74.963356,37.859707 - 15949: -74.619606,37.797207 - 15950: -74.307106,37.90658 - 15951: -74.244606,37.140957 - 15952: -74.72898,37.68783 - 15953: -75.29148,37.703457 - 15954: -75.13523,37.328457 - 15955: -74.682106,37.422207 - 15956: -74.900856,37.75033 - 15957: -75.22898,37.87533 - 15958: -75.400856,37.922207 - 15959: -74.963356,37.578457 - 15960: -68.78406,44.909977 - 15961: -68.97156,44.941227 - 15962: -68.64343,45.050602 - 15963: -68.59656,45.144352 - 15964: -68.65906,44.769352 - 15965: -68.69031,44.722477 - 15966: -68.42468,44.675602 - 15967: -65.171036,48.25662 - 15968: -65.483536,47.97537 - 15969: -65.796036,48.365993 - 15970: -66.21791,48.272243 - 15971: -66.74916,48.00662 - 15972: -66.12416,47.740993 - 15973: -65.43666,47.959743 - 15974: -64.87416,48.06912 - 15975: -64.87416,47.41287 - 15976: -65.796036,47.678493 - 15977: -66.46791,47.75662 - 15978: -66.296036,47.47537 - 15979: -65.296036,47.75662 - 15980: -65.28041,47.78787 - 15981: -66.18666,48.022243 - 15982: -65.62416,47.865993 + 15675: -78.12123,40.00033 + 15676: -78.230606,40.140957 + 15677: -77.71498,40.328457 + 15678: -77.93373,39.828457 + 15679: -74.869606,37.78158 + 15680: -75.182106,38.078457 + 15681: -74.963356,37.859707 + 15682: -74.619606,37.797207 + 15683: -74.307106,37.90658 + 15684: -74.244606,37.140957 + 15685: -74.72898,37.68783 + 15686: -75.29148,37.703457 + 15687: -75.13523,37.328457 + 15688: -74.682106,37.422207 + 15689: -74.900856,37.75033 + 15690: -75.22898,37.87533 + 15691: -75.400856,37.922207 + 15692: -74.963356,37.578457 + 15693: -68.78406,44.909977 + 15694: -68.97156,44.941227 + 15695: -68.64343,45.050602 + 15696: -68.59656,45.144352 + 15697: -68.65906,44.769352 + 15698: -68.69031,44.722477 + 15699: -68.42468,44.675602 + 15700: -65.171036,48.25662 + 15701: -65.483536,47.97537 + 15702: -65.796036,48.365993 + 15703: -66.21791,48.272243 + 15704: -66.74916,48.00662 + 15705: -66.12416,47.740993 + 15706: -65.43666,47.959743 + 15707: -64.87416,48.06912 + 15708: -64.87416,47.41287 + 15709: -65.796036,47.678493 + 15710: -66.46791,47.75662 + 15711: -66.296036,47.47537 + 15712: -65.296036,47.75662 + 15713: -65.28041,47.78787 + 15714: -66.18666,48.022243 + 15715: -65.62416,47.865993 - node: zIndex: 60 color: '#441F154F' id: splatter decals: - 15937: -84.60142,34.452145 - 15938: -84.89829,34.59277 - 15939: -87.48247,40.444267 - 15940: -87.34184,40.350517 - 15941: -87.38872,40.069267 + 15670: -84.60142,34.452145 + 15671: -84.89829,34.59277 + 15672: -87.48247,40.444267 + 15673: -87.34184,40.350517 + 15674: -87.38872,40.069267 - node: zIndex: 60 color: '#472C827A' id: splatter decals: - 15936: -84.51847,25.382742 + 15669: -84.51847,25.382742 - node: color: '#4A524A4A' id: splatter decals: - 19121: -53.95585,-51.378597 - 19122: -53.7371,-51.378597 - 19123: -53.721474,-51.003597 - 19124: -53.783974,-50.816097 - 19125: -53.3621,-51.081722 - 19126: -53.627724,-51.753597 - 19127: -53.0496,-51.581722 - 19128: -53.408974,-51.456722 - 19129: -56.2996,-53.621624 - 19130: -56.502724,-53.496624 - 19131: -56.20585,-53.481 - 19132: -55.89335,-53.44975 - 19133: -55.752724,-53.356 - 19134: -56.596474,-53.38725 - 19135: -56.690224,-53.481 - 19136: -56.1121,-53.19975 - 19137: -58.615543,-55.027874 - 19138: -58.72492,-55.4185 - 19139: -59.240543,-55.621624 - 19140: -59.303043,-56.01225 - 19141: -58.63117,-55.856 - 19142: -58.865543,-55.9185 - 19143: -58.771793,-55.777874 - 19144: -58.63117,-55.590374 - 19145: -58.38117,-56.19975 - 19146: -62.53202,-57.432407 - 19147: -62.71955,-57.463932 - 19148: -62.11013,-56.93227 - 19149: -62.344505,-57.02602 - 19150: -62.20388,-57.30727 - 19151: -62.313255,-57.80727 - 19152: -62.563255,-57.71352 - 19153: -62.250755,-57.447895 + 18854: -53.95585,-51.378597 + 18855: -53.7371,-51.378597 + 18856: -53.721474,-51.003597 + 18857: -53.783974,-50.816097 + 18858: -53.3621,-51.081722 + 18859: -53.627724,-51.753597 + 18860: -53.0496,-51.581722 + 18861: -53.408974,-51.456722 + 18862: -56.2996,-53.621624 + 18863: -56.502724,-53.496624 + 18864: -56.20585,-53.481 + 18865: -55.89335,-53.44975 + 18866: -55.752724,-53.356 + 18867: -56.596474,-53.38725 + 18868: -56.690224,-53.481 + 18869: -56.1121,-53.19975 + 18870: -58.615543,-55.027874 + 18871: -58.72492,-55.4185 + 18872: -59.240543,-55.621624 + 18873: -59.303043,-56.01225 + 18874: -58.63117,-55.856 + 18875: -58.865543,-55.9185 + 18876: -58.771793,-55.777874 + 18877: -58.63117,-55.590374 + 18878: -58.38117,-56.19975 + 18879: -62.53202,-57.432407 + 18880: -62.71955,-57.463932 + 18881: -62.11013,-56.93227 + 18882: -62.344505,-57.02602 + 18883: -62.20388,-57.30727 + 18884: -62.313255,-57.80727 + 18885: -62.563255,-57.71352 + 18886: -62.250755,-57.447895 - node: color: '#4A524A9B' id: splatter decals: - 19118: -59.55104,-51.23265 - 19119: -59.410416,-51.748276 - 19120: -59.535416,-51.935776 + 18851: -59.55104,-51.23265 + 18852: -59.410416,-51.748276 + 18853: -59.535416,-51.935776 - node: color: '#4A896F15' id: splatter decals: - 19181: -51.31652,-52.55508 - 19182: -50.941143,-52.195705 - 19183: -50.691143,-52.05508 - 19184: -50.456768,-52.36758 - 19185: -45.221176,-53.14883 - 19186: -45.533676,-53.11758 - 19187: -45.127426,-52.664455 - 19188: -45.14305,-53.133205 - 19189: -45.64305,-53.164455 - 19190: -45.564926,-53.02383 - 19191: -45.3618,-53.55508 - 19192: -45.627426,-53.36758 - 19193: -44.471176,-53.24258 - 19194: -45.33055,-53.64883 - 19195: -45.5493,-53.14883 - 19196: -44.814926,-53.414455 - 19197: -45.08055,-53.195705 - 19198: -41.91209,-53.89883 - 19199: -42.517326,-53.83633 - 19200: -42.297604,-54.195705 - 19201: -42.68784,-54.14883 - 19202: -42.235428,-53.89883 - 19203: -42.641678,-53.96133 - 19204: -43.079178,-54.18008 - 19205: -42.610428,-54.164455 - 19206: -43.188553,-54.195705 - 19207: -43.672928,-54.18008 - 19208: -43.876053,-53.945705 - 19209: -44.204178,-54.351955 - 19210: -44.391678,-54.36758 - 19211: -43.172928,-54.11758 - 19212: -42.610428,-54.101955 - 19213: -42.141678,-53.976955 - 19214: -42.547928,-53.80508 - 19215: -42.751053,-53.77383 - 19216: -42.251053,-54.30508 - 19217: -43.172928,-54.070705 - 19243: -65.29618,-61.991276 - 19244: -65.35868,-62.116276 - 19245: -65.249306,-62.28815 - 19246: -65.249306,-62.4444 - 19247: -65.17118,-62.28815 - 19248: -65.186806,-62.053776 - 19249: -64.843056,-61.9444 + 18914: -51.31652,-52.55508 + 18915: -50.941143,-52.195705 + 18916: -50.691143,-52.05508 + 18917: -50.456768,-52.36758 + 18918: -45.221176,-53.14883 + 18919: -45.533676,-53.11758 + 18920: -45.127426,-52.664455 + 18921: -45.14305,-53.133205 + 18922: -45.64305,-53.164455 + 18923: -45.564926,-53.02383 + 18924: -45.3618,-53.55508 + 18925: -45.627426,-53.36758 + 18926: -44.471176,-53.24258 + 18927: -45.33055,-53.64883 + 18928: -45.5493,-53.14883 + 18929: -44.814926,-53.414455 + 18930: -45.08055,-53.195705 + 18931: -41.91209,-53.89883 + 18932: -42.517326,-53.83633 + 18933: -42.297604,-54.195705 + 18934: -42.68784,-54.14883 + 18935: -42.235428,-53.89883 + 18936: -42.641678,-53.96133 + 18937: -43.079178,-54.18008 + 18938: -42.610428,-54.164455 + 18939: -43.188553,-54.195705 + 18940: -43.672928,-54.18008 + 18941: -43.876053,-53.945705 + 18942: -44.204178,-54.351955 + 18943: -44.391678,-54.36758 + 18944: -43.172928,-54.11758 + 18945: -42.610428,-54.101955 + 18946: -42.141678,-53.976955 + 18947: -42.547928,-53.80508 + 18948: -42.751053,-53.77383 + 18949: -42.251053,-54.30508 + 18950: -43.172928,-54.070705 + 18976: -65.29618,-61.991276 + 18977: -65.35868,-62.116276 + 18978: -65.249306,-62.28815 + 18979: -65.249306,-62.4444 + 18980: -65.17118,-62.28815 + 18981: -65.186806,-62.053776 + 18982: -64.843056,-61.9444 - node: color: '#4A896F2E' id: splatter decals: - 19159: -62.474815,-55.337055 - 19160: -62.61544,-54.837055 - 19161: -62.224815,-54.587055 - 19162: -62.74044,-54.680805 - 19163: -62.45919,-55.055805 - 19164: -56.326412,-45.424538 - 19165: -55.998287,-45.846413 - 19166: -55.998287,-45.612038 - 19167: -62.44958,-37.981606 - 19168: -62.41833,-37.87223 - 19169: -62.54333,-37.62223 - 19170: -62.277706,-37.71598 - 19171: -62.027706,-37.30973 - 19172: -60.361897,-50.011074 - 19173: -51.49625,-52.601955 - 19174: -51.7775,-52.43008 - 19175: -51.37125,-52.27383 - 19176: -51.261875,-52.570705 - 19177: -51.965,-53.133205 - 19178: -52.37125,-52.64883 - 19179: -51.49625,-52.476955 - 19180: -51.355625,-53.21133 + 18892: -62.474815,-55.337055 + 18893: -62.61544,-54.837055 + 18894: -62.224815,-54.587055 + 18895: -62.74044,-54.680805 + 18896: -62.45919,-55.055805 + 18897: -56.326412,-45.424538 + 18898: -55.998287,-45.846413 + 18899: -55.998287,-45.612038 + 18900: -62.44958,-37.981606 + 18901: -62.41833,-37.87223 + 18902: -62.54333,-37.62223 + 18903: -62.277706,-37.71598 + 18904: -62.027706,-37.30973 + 18905: -60.361897,-50.011074 + 18906: -51.49625,-52.601955 + 18907: -51.7775,-52.43008 + 18908: -51.37125,-52.27383 + 18909: -51.261875,-52.570705 + 18910: -51.965,-53.133205 + 18911: -52.37125,-52.64883 + 18912: -51.49625,-52.476955 + 18913: -51.355625,-53.21133 - node: color: '#4A896F49' id: splatter decals: - 19154: -65.569145,-59.034107 - 19155: -65.100395,-58.877857 - 19156: -65.444145,-58.674732 - 19157: -65.52227,-59.080982 - 19158: -64.95977,-59.268482 + 18887: -65.569145,-59.034107 + 18888: -65.100395,-58.877857 + 18889: -65.444145,-58.674732 + 18890: -65.52227,-59.080982 + 18891: -64.95977,-59.268482 - node: cleanable: True color: '#4D131537' id: splatter decals: - 5567: -66.711716,-42.79279 - 5568: -66.63359,-41.724667 - 5569: -65.75859,-40.662167 - 5570: -71.40275,-45.6022 - 5571: -70.98087,-45.555325 - 5572: -71.02775,-45.82095 - 5573: -71.21525,-45.38345 + 5370: -66.711716,-42.79279 + 5371: -66.63359,-41.724667 + 5372: -65.75859,-40.662167 + 5373: -71.40275,-45.6022 + 5374: -70.98087,-45.555325 + 5375: -71.02775,-45.82095 + 5376: -71.21525,-45.38345 - node: cleanable: True color: '#4D13156C' id: splatter decals: - 5535: -72.47991,-49.2981 - 5536: -72.54241,-49.6106 - 5537: -73.452614,-46.44481 - 5538: -72.87449,-46.335434 - 5539: -73.233864,-46.710434 - 5540: -73.49949,-46.53856 - 5541: -68.62449,-46.616684 - 5542: -68.952614,-46.429184 - 5543: -68.733864,-46.272934 - 5544: -65.89037,-48.66356 - 5545: -65.6394,-48.44481 - 5546: -65.56182,-48.81981 - 5547: -66.31182,-48.585434 - 5548: -65.983696,-48.60106 - 5549: -66.07307,-51.770397 - 5550: -66.29182,-51.614147 - 5551: -66.61994,-51.754772 - 5552: -66.97932,-51.832897 - 5553: -66.65119,-51.989147 - 5554: -67.86712,-43.958504 - 5555: -67.632744,-43.91163 - 5556: -67.64837,-44.28663 - 5557: -68.195244,-44.13038 - 5558: -64.36712,-39.28221 - 5559: -64.726494,-39.25096 - 5560: -64.30462,-38.985336 - 5561: -64.39837,-39.454086 - 5562: -66.820244,-40.891586 - 5563: -66.663994,-40.922836 - 5564: -67.05462,-40.93846 - 5565: -63.36796,-42.393803 - 5566: -63.30546,-42.628178 + 5338: -72.47991,-49.2981 + 5339: -72.54241,-49.6106 + 5340: -73.452614,-46.44481 + 5341: -72.87449,-46.335434 + 5342: -73.233864,-46.710434 + 5343: -73.49949,-46.53856 + 5344: -68.62449,-46.616684 + 5345: -68.952614,-46.429184 + 5346: -68.733864,-46.272934 + 5347: -65.89037,-48.66356 + 5348: -65.6394,-48.44481 + 5349: -65.56182,-48.81981 + 5350: -66.31182,-48.585434 + 5351: -65.983696,-48.60106 + 5352: -66.07307,-51.770397 + 5353: -66.29182,-51.614147 + 5354: -66.61994,-51.754772 + 5355: -66.97932,-51.832897 + 5356: -66.65119,-51.989147 + 5357: -67.86712,-43.958504 + 5358: -67.632744,-43.91163 + 5359: -67.64837,-44.28663 + 5360: -68.195244,-44.13038 + 5361: -64.36712,-39.28221 + 5362: -64.726494,-39.25096 + 5363: -64.30462,-38.985336 + 5364: -64.39837,-39.454086 + 5365: -66.820244,-40.891586 + 5366: -66.663994,-40.922836 + 5367: -67.05462,-40.93846 + 5368: -63.36796,-42.393803 + 5369: -63.30546,-42.628178 - node: cleanable: True color: '#4D1315C0' id: splatter decals: - 5533: -72.43304,-49.532475 - 5534: -72.22991,-49.8606 + 5336: -72.43304,-49.532475 + 5337: -72.22991,-49.8606 - node: zIndex: 60 color: '#4D89B718' id: splatter decals: - 15983: -62.546764,40.56871 - 15984: -62.546764,41.053085 - 15985: -62.328014,40.896835 - 15986: -62.24989,40.396835 - 15987: -62.03114,40.34996 - 15988: -62.37489,40.63121 + 15716: -62.546764,40.56871 + 15717: -62.546764,41.053085 + 15718: -62.328014,40.896835 + 15719: -62.24989,40.396835 + 15720: -62.03114,40.34996 + 15721: -62.37489,40.63121 - node: color: '#50494128' id: splatter decals: - 18650: -48.668858,-47.950687 - 18651: -48.481358,-47.872562 - 18652: -48.231358,-47.950687 - 18653: -48.059483,-48.185062 - 18654: -47.871983,-47.794437 - 18655: -48.450108,-47.700687 - 18656: -48.293858,-47.731937 - 18657: -47.325108,-47.763187 - 18658: -47.028233,-48.216312 - 18659: -46.512608,-48.294437 - 18660: -47.356358,-47.966312 - 18661: -47.918858,-47.700687 - 18662: -48.325108,-48.106937 - 18663: -47.403233,-48.185062 - 18664: -47.731358,-48.200687 - 18665: -48.168858,-48.513187 - 18666: -47.762608,-48.466312 - 18667: -47.871983,-48.138187 - 18668: -48.012608,-47.810062 - 18669: -40.97385,-51.890133 - 18670: -40.9426,-51.858883 - 18671: -40.5051,-51.593258 - 18672: -40.270725,-51.718258 - 18673: -40.09885,-51.858883 - 18674: -39.59885,-51.827633 - 18675: -38.989475,-52.046383 - 18676: -39.083225,-51.812008 - 18677: -39.833225,-51.593258 - 18678: -41.09885,-51.905758 - 18679: -40.6926,-51.999508 - 18680: -39.84885,-51.905758 - 18681: -39.520725,-51.983883 - 18682: -39.66135,-51.905758 - 18683: -40.364475,-51.640133 - 18684: -40.739475,-51.968258 - 18685: -40.801975,-52.108883 - 18686: -40.53635,-51.843258 - 18687: -40.770725,-51.858883 - 18688: -40.8801,-52.187008 - 18689: -53.30618,-46.282352 - 18690: -53.259304,-46.157352 - 18691: -52.93118,-45.985477 + 18383: -48.668858,-47.950687 + 18384: -48.481358,-47.872562 + 18385: -48.231358,-47.950687 + 18386: -48.059483,-48.185062 + 18387: -47.871983,-47.794437 + 18388: -48.450108,-47.700687 + 18389: -48.293858,-47.731937 + 18390: -47.325108,-47.763187 + 18391: -47.028233,-48.216312 + 18392: -46.512608,-48.294437 + 18393: -47.356358,-47.966312 + 18394: -47.918858,-47.700687 + 18395: -48.325108,-48.106937 + 18396: -47.403233,-48.185062 + 18397: -47.731358,-48.200687 + 18398: -48.168858,-48.513187 + 18399: -47.762608,-48.466312 + 18400: -47.871983,-48.138187 + 18401: -48.012608,-47.810062 + 18402: -40.97385,-51.890133 + 18403: -40.9426,-51.858883 + 18404: -40.5051,-51.593258 + 18405: -40.270725,-51.718258 + 18406: -40.09885,-51.858883 + 18407: -39.59885,-51.827633 + 18408: -38.989475,-52.046383 + 18409: -39.083225,-51.812008 + 18410: -39.833225,-51.593258 + 18411: -41.09885,-51.905758 + 18412: -40.6926,-51.999508 + 18413: -39.84885,-51.905758 + 18414: -39.520725,-51.983883 + 18415: -39.66135,-51.905758 + 18416: -40.364475,-51.640133 + 18417: -40.739475,-51.968258 + 18418: -40.801975,-52.108883 + 18419: -40.53635,-51.843258 + 18420: -40.770725,-51.858883 + 18421: -40.8801,-52.187008 + 18422: -53.30618,-46.282352 + 18423: -53.259304,-46.157352 + 18424: -52.93118,-45.985477 - node: color: '#5049412E' id: splatter decals: - 18462: -76.545555,-59.17944 - 18463: -76.045555,-58.80444 - 18464: -75.81118,-58.80444 - 18465: -75.701805,-59.42944 - 18466: -75.68618,-59.882565 - 18467: -76.733055,-59.663815 - 18468: -75.889305,-59.28788 - 18469: -75.983055,-59.678665 - 18470: -75.701805,-59.70971 - 18471: -75.764305,-59.14721 - 18472: -76.21743,-59.569084 - 18473: -76.670555,-63.475334 - 18474: -77.264305,-63.412834 - 18475: -76.84243,-63.02221 - 18476: -76.87368,-63.319084 - 18477: -76.764305,-63.42846 - 18478: -77.201805,-63.662834 - 18479: -76.701805,-63.95971 - 18480: -76.920555,-64.24096 - 18481: -77.43618,-63.89721 - 18482: -77.295555,-63.631584 - 18483: -76.639305,-63.52221 - 18484: -76.87368,-64.287834 - 18485: -76.40493,-64.694084 - 18486: -76.608055,-64.86596 - 18487: -70.34051,-60.58471 - 18488: -70.387276,-60.74096 - 18489: -69.886635,-60.58471 - 18490: -69.97996,-60.350334 - 18491: -69.9181,-60.131584 - 18492: -69.08997,-60.14721 - 18493: -68.87122,-60.100334 - 18494: -69.46497,-59.725334 - 18495: -69.7931,-60.24096 - 18496: -69.93372,-60.70971 - 18497: -69.62122,-60.944084 - 18498: -70.1681,-61.162834 - 18499: -70.1681,-60.80346 - 18500: -69.94935,-60.194084 - 18501: -69.57435,-59.89721 - 18502: -70.48064,-70.47431 - 18503: -70.71501,-70.45869 - 18504: -70.30876,-70.11494 - 18505: -70.51189,-69.88056 - 18506: -70.59001,-69.59931 - 18507: -70.21501,-69.78681 - 18508: -70.55876,-70.64619 - 18509: -70.15251,-70.84931 - 18510: -69.85564,-70.81806 - 18511: -70.76189,-70.72431 - 18512: -70.46501,-70.70869 - 18513: -69.76189,-70.33369 - 18514: -70.24626,-69.88056 - 18515: -69.65251,-70.23994 - 18516: -69.05876,-70.64619 - 18517: -69.51189,-70.72431 - 18518: -70.51189,-70.63056 - 18519: -69.90251,-70.86494 - 18520: -69.34001,-70.84931 - 18521: -69.82439,-70.61494 - 18522: -70.44939,-70.13056 - 18523: -69.94939,-70.34931 - 18524: -69.69939,-70.36494 - 18525: -70.12126,-70.48994 - 18526: -69.48064,-70.72431 - 18527: -69.24626,-70.89619 - 18528: -66.097466,-70.64619 - 18529: -66.253716,-70.16181 - 18530: -65.95684,-70.53681 - 18531: -65.95684,-71.05244 - 18532: -65.45684,-70.69306 - 18533: -66.097466,-70.36494 - 18534: -65.92559,-70.44306 - 18535: -65.98809,-70.72431 - 18536: -66.472466,-71.08369 - 18537: -65.972466,-70.84931 - 18538: -65.89434,-70.67744 - 18539: -66.05059,-71.08369 - 18540: -66.14434,-70.56806 - 18541: -62.397026,-67.69633 - 18542: -62.584526,-67.5557 - 18543: -62.7564,-67.66508 - 18544: -62.53765,-67.8682 - 18545: -62.5064,-68.29008 - 18546: -64.131615,-67.72758 - 18547: -64.651855,-68.10258 - 18548: -64.464355,-67.71195 - 18549: -64.97998,-67.4932 - 18550: -64.120605,-67.77445 - 18551: -64.88623,-67.89945 - 18552: -64.933105,-67.94633 - 18553: -64.370605,-68.10258 - 18554: -64.558105,-67.77445 - 18555: -64.54248,-67.63383 + 18195: -76.545555,-59.17944 + 18196: -76.045555,-58.80444 + 18197: -75.81118,-58.80444 + 18198: -75.701805,-59.42944 + 18199: -75.68618,-59.882565 + 18200: -76.733055,-59.663815 + 18201: -75.889305,-59.28788 + 18202: -75.983055,-59.678665 + 18203: -75.701805,-59.70971 + 18204: -75.764305,-59.14721 + 18205: -76.21743,-59.569084 + 18206: -76.670555,-63.475334 + 18207: -77.264305,-63.412834 + 18208: -76.84243,-63.02221 + 18209: -76.87368,-63.319084 + 18210: -76.764305,-63.42846 + 18211: -77.201805,-63.662834 + 18212: -76.701805,-63.95971 + 18213: -76.920555,-64.24096 + 18214: -77.43618,-63.89721 + 18215: -77.295555,-63.631584 + 18216: -76.639305,-63.52221 + 18217: -76.87368,-64.287834 + 18218: -76.40493,-64.694084 + 18219: -76.608055,-64.86596 + 18220: -70.34051,-60.58471 + 18221: -70.387276,-60.74096 + 18222: -69.886635,-60.58471 + 18223: -69.97996,-60.350334 + 18224: -69.9181,-60.131584 + 18225: -69.08997,-60.14721 + 18226: -68.87122,-60.100334 + 18227: -69.46497,-59.725334 + 18228: -69.7931,-60.24096 + 18229: -69.93372,-60.70971 + 18230: -69.62122,-60.944084 + 18231: -70.1681,-61.162834 + 18232: -70.1681,-60.80346 + 18233: -69.94935,-60.194084 + 18234: -69.57435,-59.89721 + 18235: -70.48064,-70.47431 + 18236: -70.71501,-70.45869 + 18237: -70.30876,-70.11494 + 18238: -70.51189,-69.88056 + 18239: -70.59001,-69.59931 + 18240: -70.21501,-69.78681 + 18241: -70.55876,-70.64619 + 18242: -70.15251,-70.84931 + 18243: -69.85564,-70.81806 + 18244: -70.76189,-70.72431 + 18245: -70.46501,-70.70869 + 18246: -69.76189,-70.33369 + 18247: -70.24626,-69.88056 + 18248: -69.65251,-70.23994 + 18249: -69.05876,-70.64619 + 18250: -69.51189,-70.72431 + 18251: -70.51189,-70.63056 + 18252: -69.90251,-70.86494 + 18253: -69.34001,-70.84931 + 18254: -69.82439,-70.61494 + 18255: -70.44939,-70.13056 + 18256: -69.94939,-70.34931 + 18257: -69.69939,-70.36494 + 18258: -70.12126,-70.48994 + 18259: -69.48064,-70.72431 + 18260: -69.24626,-70.89619 + 18261: -66.097466,-70.64619 + 18262: -66.253716,-70.16181 + 18263: -65.95684,-70.53681 + 18264: -65.95684,-71.05244 + 18265: -65.45684,-70.69306 + 18266: -66.097466,-70.36494 + 18267: -65.92559,-70.44306 + 18268: -65.98809,-70.72431 + 18269: -66.472466,-71.08369 + 18270: -65.972466,-70.84931 + 18271: -65.89434,-70.67744 + 18272: -66.05059,-71.08369 + 18273: -66.14434,-70.56806 + 18274: -62.397026,-67.69633 + 18275: -62.584526,-67.5557 + 18276: -62.7564,-67.66508 + 18277: -62.53765,-67.8682 + 18278: -62.5064,-68.29008 + 18279: -64.131615,-67.72758 + 18280: -64.651855,-68.10258 + 18281: -64.464355,-67.71195 + 18282: -64.97998,-67.4932 + 18283: -64.120605,-67.77445 + 18284: -64.88623,-67.89945 + 18285: -64.933105,-67.94633 + 18286: -64.370605,-68.10258 + 18287: -64.558105,-67.77445 + 18288: -64.54248,-67.63383 - node: color: '#50494150' id: splatter decals: - 18556: -80.25462,-43.868786 - 18557: -79.72337,-44.118786 - 18558: -79.39525,-44.00941 - 18559: -79.3015,-44.19691 - 18560: -79.94212,-44.181286 - 18561: -71.59245,-39.528683 - 18562: -71.34245,-39.325558 - 18563: -70.85808,-38.809933 - 18564: -70.7487,-38.778683 - 18565: -70.73308,-39.388058 - 18566: -71.3737,-38.763058 - 18567: -71.5612,-38.684933 - 18568: -71.04558,-38.997433 - 18569: -65.444244,-36.507977 - 18570: -65.787994,-36.2736 - 18571: -65.17862,-36.039227 - 18572: -65.02237,-35.99235 - 18573: -65.631744,-36.570477 - 18574: -65.74112,-36.6486 - 18575: -65.39737,-36.80485 - 18576: -64.881744,-36.74235 - 18577: -64.944244,-37.05485 - 18578: -65.319244,-37.0861 - 18579: -66.02237,-36.976727 - 18580: -65.74112,-37.0236 - 18581: -65.58487,-36.55485 - 18582: -70.29793,-27.740211 - 18583: -70.18855,-27.537086 - 18584: -70.37605,-27.365211 - 18585: -70.0948,-27.083961 - 18586: -70.37605,-26.755836 - 18587: -70.42293,-26.458961 - 18588: -70.32918,-25.865211 - 18589: -70.51668,-26.427711 - 18590: -70.17293,-27.130836 - 18591: -70.14168,-27.552711 - 18592: -69.9073,-27.740211 - 18593: -70.61043,-27.693336 - 18594: -70.61043,-27.755836 - 18595: -70.1573,-27.255836 - 18596: -70.51668,-26.755836 - 18597: -69.4073,-22.149343 - 18598: -69.75105,-22.039968 - 18599: -69.32918,-21.586843 - 18600: -69.29793,-21.852468 - 18601: -69.67293,-22.227468 - 18602: -69.86043,-22.149343 - 18603: -69.29793,-22.196218 - 18604: -68.70418,-22.024343 - 18605: -68.5323,-22.071218 - 18606: -68.76668,-21.899343 - 18607: -69.37605,-21.961843 - 18608: -69.5323,-22.149343 - 18609: -69.45418,-22.524343 - 18610: -67.905174,-26.062904 - 18611: -68.061424,-25.92228 - 18612: -67.811424,-26.062904 - 18613: -67.88955,-26.031654 - 18614: -67.967674,-26.01603 - 18615: -67.905174,-25.92228 - 18616: -58.13662,-40.699005 - 18617: -58.027245,-40.917755 - 18618: -58.245995,-40.792755 - 18619: -58.714745,-40.699005 - 18620: -58.339745,-40.980255 - 18621: -57.723488,-46.82822 - 18622: -57.614113,-47.031345 - 18623: -57.129738,-47.23447 - 18624: -56.957863,-47.406345 - 18625: -56.926613,-48.23447 - 18626: -56.817238,-48.000095 - 18627: -56.723488,-47.32822 - 18628: -57.254738,-47.04697 - 18629: -56.723488,-47.031345 - 18630: -56.379738,-47.031345 - 18631: -56.207863,-46.70322 - 18632: -55.660988,-46.70322 - 18633: -55.395363,-46.89072 - 18634: -55.317238,-47.062595 - 18635: -55.364113,-47.07822 - 18636: -56.082863,-46.937595 - 18637: -56.598488,-47.250095 - 18638: -56.285988,-47.250095 - 18639: -55.098488,-47.20322 - 18640: -54.567238,-46.656345 - 18641: -54.426613,-46.906345 - 18642: -56.614113,-47.156345 - 18643: -57.426613,-46.968845 - 18644: -58.035988,-46.98447 - 18645: -56.989113,-47.54697 - 18646: -56.660988,-48.20322 - 18647: -56.910988,-46.95322 - 18648: -56.832863,-46.70322 - 18649: -56.551613,-46.51572 + 18289: -80.25462,-43.868786 + 18290: -79.72337,-44.118786 + 18291: -79.39525,-44.00941 + 18292: -79.3015,-44.19691 + 18293: -79.94212,-44.181286 + 18294: -71.59245,-39.528683 + 18295: -71.34245,-39.325558 + 18296: -70.85808,-38.809933 + 18297: -70.7487,-38.778683 + 18298: -70.73308,-39.388058 + 18299: -71.3737,-38.763058 + 18300: -71.5612,-38.684933 + 18301: -71.04558,-38.997433 + 18302: -65.444244,-36.507977 + 18303: -65.787994,-36.2736 + 18304: -65.17862,-36.039227 + 18305: -65.02237,-35.99235 + 18306: -65.631744,-36.570477 + 18307: -65.74112,-36.6486 + 18308: -65.39737,-36.80485 + 18309: -64.881744,-36.74235 + 18310: -64.944244,-37.05485 + 18311: -65.319244,-37.0861 + 18312: -66.02237,-36.976727 + 18313: -65.74112,-37.0236 + 18314: -65.58487,-36.55485 + 18315: -70.29793,-27.740211 + 18316: -70.18855,-27.537086 + 18317: -70.37605,-27.365211 + 18318: -70.0948,-27.083961 + 18319: -70.37605,-26.755836 + 18320: -70.42293,-26.458961 + 18321: -70.32918,-25.865211 + 18322: -70.51668,-26.427711 + 18323: -70.17293,-27.130836 + 18324: -70.14168,-27.552711 + 18325: -69.9073,-27.740211 + 18326: -70.61043,-27.693336 + 18327: -70.61043,-27.755836 + 18328: -70.1573,-27.255836 + 18329: -70.51668,-26.755836 + 18330: -69.4073,-22.149343 + 18331: -69.75105,-22.039968 + 18332: -69.32918,-21.586843 + 18333: -69.29793,-21.852468 + 18334: -69.67293,-22.227468 + 18335: -69.86043,-22.149343 + 18336: -69.29793,-22.196218 + 18337: -68.70418,-22.024343 + 18338: -68.5323,-22.071218 + 18339: -68.76668,-21.899343 + 18340: -69.37605,-21.961843 + 18341: -69.5323,-22.149343 + 18342: -69.45418,-22.524343 + 18343: -67.905174,-26.062904 + 18344: -68.061424,-25.92228 + 18345: -67.811424,-26.062904 + 18346: -67.88955,-26.031654 + 18347: -67.967674,-26.01603 + 18348: -67.905174,-25.92228 + 18349: -58.13662,-40.699005 + 18350: -58.027245,-40.917755 + 18351: -58.245995,-40.792755 + 18352: -58.714745,-40.699005 + 18353: -58.339745,-40.980255 + 18354: -57.723488,-46.82822 + 18355: -57.614113,-47.031345 + 18356: -57.129738,-47.23447 + 18357: -56.957863,-47.406345 + 18358: -56.926613,-48.23447 + 18359: -56.817238,-48.000095 + 18360: -56.723488,-47.32822 + 18361: -57.254738,-47.04697 + 18362: -56.723488,-47.031345 + 18363: -56.379738,-47.031345 + 18364: -56.207863,-46.70322 + 18365: -55.660988,-46.70322 + 18366: -55.395363,-46.89072 + 18367: -55.317238,-47.062595 + 18368: -55.364113,-47.07822 + 18369: -56.082863,-46.937595 + 18370: -56.598488,-47.250095 + 18371: -56.285988,-47.250095 + 18372: -55.098488,-47.20322 + 18373: -54.567238,-46.656345 + 18374: -54.426613,-46.906345 + 18375: -56.614113,-47.156345 + 18376: -57.426613,-46.968845 + 18377: -58.035988,-46.98447 + 18378: -56.989113,-47.54697 + 18379: -56.660988,-48.20322 + 18380: -56.910988,-46.95322 + 18381: -56.832863,-46.70322 + 18382: -56.551613,-46.51572 - node: color: '#5049417C' id: splatter decals: - 18438: -81.574524,-51.420177 - 18439: -81.574524,-51.107677 - 18440: -81.7464,-50.842052 - 18441: -80.543274,-50.998302 - 18442: -80.793274,-50.592052 - 18443: -80.418274,-50.092052 - 18444: -80.8089,-49.670177 - 18445: -80.90265,-49.326427 - 18446: -80.71515,-49.138927 - 18447: -80.7464,-49.482677 - 18448: -80.4964,-50.185802 - 18449: -80.449524,-49.763927 - 18450: -81.352844,-56.4145 - 18451: -81.18097,-56.148876 - 18452: -80.49347,-56.398876 - 18453: -80.290344,-56.680126 - 18454: -81.040344,-56.523876 - 18455: -80.61847,-56.648876 - 18456: -75.983055,-59.507565 - 18457: -76.295555,-59.570065 - 18458: -75.93618,-59.36694 - 18459: -75.764305,-59.132565 - 18460: -75.514305,-59.80444 - 18461: -75.826805,-59.757565 + 18171: -81.574524,-51.420177 + 18172: -81.574524,-51.107677 + 18173: -81.7464,-50.842052 + 18174: -80.543274,-50.998302 + 18175: -80.793274,-50.592052 + 18176: -80.418274,-50.092052 + 18177: -80.8089,-49.670177 + 18178: -80.90265,-49.326427 + 18179: -80.71515,-49.138927 + 18180: -80.7464,-49.482677 + 18181: -80.4964,-50.185802 + 18182: -80.449524,-49.763927 + 18183: -81.352844,-56.4145 + 18184: -81.18097,-56.148876 + 18185: -80.49347,-56.398876 + 18186: -80.290344,-56.680126 + 18187: -81.040344,-56.523876 + 18188: -80.61847,-56.648876 + 18189: -75.983055,-59.507565 + 18190: -76.295555,-59.570065 + 18191: -75.93618,-59.36694 + 18192: -75.764305,-59.132565 + 18193: -75.514305,-59.80444 + 18194: -75.826805,-59.757565 - node: cleanable: True color: '#5A332B73' id: splatter decals: - 4403: -57.485916,31.42519 - 4404: -57.048416,31.565815 - 4405: -56.93904,32.784565 + 4206: -57.485916,31.42519 + 4207: -57.048416,31.565815 + 4208: -56.93904,32.784565 - node: color: '#5DAC7914' id: splatter decals: - 19339: -63.498,-85.232216 - 19340: -63.357376,-84.77909 - 19341: -63.3105,-85.15409 - 19342: -62.951126,-85.200966 - 19343: -63.27925,-85.263466 - 19344: -63.40425,-85.482216 - 19345: -63.201126,-85.56034 - 19346: -55.45482,-85.294716 - 19347: -55.57982,-85.169716 - 19348: -55.23607,-84.62284 - 19349: -55.157944,-84.638466 - 19350: -54.39232,-84.607216 - 19351: -54.67357,-84.513466 - 19352: -55.70482,-84.37284 - 19353: -55.61107,-84.825966 - 19354: -55.70482,-85.513466 - 19355: -56.032944,-85.81034 - 19356: -55.61107,-85.107216 - 19357: -55.76732,-84.919716 - 19358: -55.32982,-85.200966 - 19359: -50.92524,-81.580864 - 19360: -50.815094,-81.98643 - 19361: -50.783844,-81.73643 - 19362: -49.502594,-81.87705 - 19363: -49.61197,-82.37705 - 19364: -49.64322,-81.9083 - 19365: -50.64322,-82.14268 - 19366: -50.065094,-81.9083 - 19367: -51.39322,-82.08018 - 19368: -50.127594,-81.9083 - 19369: -51.11197,-82.61143 - 19370: -50.815094,-81.92393 - 19371: -49.79947,-82.0958 - 19372: -48.043785,-78.53011 - 19373: -47.71566,-78.79574 - 19374: -47.575035,-79.21761 - 19375: -47.356285,-78.90511 - 19376: -47.731285,-78.40511 - 19377: -47.62191,-78.51449 - 19378: -47.075035,-78.65511 - 19379: -47.49691,-78.57699 - 19380: -47.887535,-78.60824 - 19381: -48.12191,-78.70199 - 19382: -47.96566,-78.88949 - 19383: -54.415054,-77.79574 - 19384: -54.165054,-77.82699 - 19385: -53.52443,-77.92074 - 19386: -53.633804,-77.60824 - 19387: -53.883804,-77.85824 - 19388: -53.196304,-77.81136 - 19389: -53.77443,-77.74886 - 19390: -53.165054,-77.56136 - 19391: -58.834072,-82.58818 - 19392: -57.78851,-82.55693 - 19393: -58.397884,-82.58818 - 19394: -59.13226,-83.08818 - 19395: -59.366634,-82.822556 - 19396: -58.28851,-82.510056 - 19397: -57.616634,-82.478806 - 19398: -58.491634,-82.96318 - 19399: -58.647884,-82.947556 - 19400: -58.03851,-82.697556 - 19401: -58.50726,-82.55693 - 19402: -59.756783,-85.635056 - 19403: -59.584908,-85.103806 - 19404: -59.303658,-85.49443 - 19405: -59.163033,-85.61943 - 19406: -59.569283,-85.46318 + 19072: -63.498,-85.232216 + 19073: -63.357376,-84.77909 + 19074: -63.3105,-85.15409 + 19075: -62.951126,-85.200966 + 19076: -63.27925,-85.263466 + 19077: -63.40425,-85.482216 + 19078: -63.201126,-85.56034 + 19079: -55.45482,-85.294716 + 19080: -55.57982,-85.169716 + 19081: -55.23607,-84.62284 + 19082: -55.157944,-84.638466 + 19083: -54.39232,-84.607216 + 19084: -54.67357,-84.513466 + 19085: -55.70482,-84.37284 + 19086: -55.61107,-84.825966 + 19087: -55.70482,-85.513466 + 19088: -56.032944,-85.81034 + 19089: -55.61107,-85.107216 + 19090: -55.76732,-84.919716 + 19091: -55.32982,-85.200966 + 19092: -50.92524,-81.580864 + 19093: -50.815094,-81.98643 + 19094: -50.783844,-81.73643 + 19095: -49.502594,-81.87705 + 19096: -49.61197,-82.37705 + 19097: -49.64322,-81.9083 + 19098: -50.64322,-82.14268 + 19099: -50.065094,-81.9083 + 19100: -51.39322,-82.08018 + 19101: -50.127594,-81.9083 + 19102: -51.11197,-82.61143 + 19103: -50.815094,-81.92393 + 19104: -49.79947,-82.0958 + 19105: -48.043785,-78.53011 + 19106: -47.71566,-78.79574 + 19107: -47.575035,-79.21761 + 19108: -47.356285,-78.90511 + 19109: -47.731285,-78.40511 + 19110: -47.62191,-78.51449 + 19111: -47.075035,-78.65511 + 19112: -47.49691,-78.57699 + 19113: -47.887535,-78.60824 + 19114: -48.12191,-78.70199 + 19115: -47.96566,-78.88949 + 19116: -54.415054,-77.79574 + 19117: -54.165054,-77.82699 + 19118: -53.52443,-77.92074 + 19119: -53.633804,-77.60824 + 19120: -53.883804,-77.85824 + 19121: -53.196304,-77.81136 + 19122: -53.77443,-77.74886 + 19123: -53.165054,-77.56136 + 19124: -58.834072,-82.58818 + 19125: -57.78851,-82.55693 + 19126: -58.397884,-82.58818 + 19127: -59.13226,-83.08818 + 19128: -59.366634,-82.822556 + 19129: -58.28851,-82.510056 + 19130: -57.616634,-82.478806 + 19131: -58.491634,-82.96318 + 19132: -58.647884,-82.947556 + 19133: -58.03851,-82.697556 + 19134: -58.50726,-82.55693 + 19135: -59.756783,-85.635056 + 19136: -59.584908,-85.103806 + 19137: -59.303658,-85.49443 + 19138: -59.163033,-85.61943 + 19139: -59.569283,-85.46318 - node: cleanable: True color: '#635033FF' id: splatter decals: - 18048: -48.23564,-86.93605 - 18049: -48.04814,-87.014175 - 18050: -47.82939,-87.2173 + 17781: -48.23564,-86.93605 + 17782: -48.04814,-87.014175 + 17783: -47.82939,-87.2173 - node: cleanable: True color: '#635618BF' id: splatter decals: - 1465: -19.0044,38.85528 + 1418: -19.0044,38.85528 - node: cleanable: True color: '#69131250' id: splatter decals: - 4398: -55.55945,30.512703 - 4399: -54.9032,30.872078 - 4400: -55.78279,32.690815 - 4401: -55.59529,33.315815 - 4402: -55.767166,32.972065 + 4201: -55.55945,30.512703 + 4202: -54.9032,30.872078 + 4203: -55.78279,32.690815 + 4204: -55.59529,33.315815 + 4205: -55.767166,32.972065 - node: cleanable: True color: '#69131291' id: splatter decals: - 4397: -55.168823,30.590828 + 4200: -55.168823,30.590828 - node: color: '#6E0000FF' id: splatter decals: - 17218: -91.36695,-53.1407 - 17219: -86.038826,-49.435284 - 17220: -90.476326,-45.54466 - 17221: -90.0232,-45.560284 - 17222: -91.101326,-49.435284 - 17753: -80.81261,-58.38082 - 17754: -83.70323,-59.458946 - 17755: -85.46886,-58.771446 - 17756: -83.35948,-61.458946 - 17757: -84.78136,-60.708946 - 17758: -74.3369,-64.48069 - 17759: -73.47752,-62.93381 - 17760: -73.2744,-64.621315 - 17761: -69.93065,-65.027565 - 17762: -70.88377,-63.793186 - 17763: -71.499855,-64.54487 - 17764: -72.70298,-63.841743 - 17765: -71.812355,-63.73237 + 16951: -91.36695,-53.1407 + 16952: -86.038826,-49.435284 + 16953: -90.476326,-45.54466 + 16954: -90.0232,-45.560284 + 16955: -91.101326,-49.435284 + 17486: -80.81261,-58.38082 + 17487: -83.70323,-59.458946 + 17488: -85.46886,-58.771446 + 17489: -83.35948,-61.458946 + 17490: -84.78136,-60.708946 + 17491: -74.3369,-64.48069 + 17492: -73.47752,-62.93381 + 17493: -73.2744,-64.621315 + 17494: -69.93065,-65.027565 + 17495: -70.88377,-63.793186 + 17496: -71.499855,-64.54487 + 17497: -72.70298,-63.841743 + 17498: -71.812355,-63.73237 - node: zIndex: 90 color: '#700000FF' id: splatter decals: - 12868: 75.4138,-51.505642 - 12869: 75.4138,-51.505642 - 12870: 74.50755,-51.474392 - 12871: 74.46068,-51.474392 - 12872: 74.46068,-51.474392 - 12873: 74.83568,-50.927517 - 12874: 74.86693,-50.865017 - 12875: 73.00755,-51.568142 - 12876: 73.00755,-51.568142 - 12877: 73.00755,-51.568142 - 12878: 76.89818,-51.255642 - 12879: 75.38255,-52.365017 - 12903: 83.47954,-54.58091 - 12904: 83.47954,-54.58091 - 12905: 83.40141,-54.83091 - 12909: 83.35454,-54.26841 + 12601: 75.4138,-51.505642 + 12602: 75.4138,-51.505642 + 12603: 74.50755,-51.474392 + 12604: 74.46068,-51.474392 + 12605: 74.46068,-51.474392 + 12606: 74.83568,-50.927517 + 12607: 74.86693,-50.865017 + 12608: 73.00755,-51.568142 + 12609: 73.00755,-51.568142 + 12610: 73.00755,-51.568142 + 12611: 76.89818,-51.255642 + 12612: 75.38255,-52.365017 + 12636: 83.47954,-54.58091 + 12637: 83.47954,-54.58091 + 12638: 83.40141,-54.83091 + 12642: 83.35454,-54.26841 - node: color: '#750000FF' id: splatter decals: - 17211: -93.889496,-48.508354 - 17212: -94.34262,-48.30523 - 17213: -84.78247,-43.830322 - 17214: -84.68872,-44.345947 + 16944: -93.889496,-48.508354 + 16945: -94.34262,-48.30523 + 16946: -84.78247,-43.830322 + 16947: -84.68872,-44.345947 - node: angle: -0.17453292519943295 rad color: '#76191822' id: splatter decals: - 18095: -68.11884,74.79413 - 18096: -72.27509,74.63788 - 18097: -71.96259,74.85663 - 18098: -72.08759,74.43475 - 18099: -71.74384,74.716 - 18100: -71.75947,74.51288 + 17828: -68.11884,74.79413 + 17829: -72.27509,74.63788 + 17830: -71.96259,74.85663 + 17831: -72.08759,74.43475 + 17832: -71.74384,74.716 + 17833: -71.75947,74.51288 - node: angle: -0.17453292519943295 rad color: '#7619183D' id: splatter decals: - 18093: -68.30634,74.6535 - 18094: -68.02509,74.591 + 17826: -68.30634,74.6535 + 17827: -68.02509,74.591 - node: cleanable: True zIndex: 60 color: '#791C1525' id: splatter decals: - 15779: -65.78336,38.250896 - 15780: -65.86149,37.32902 - 15781: -63.658363,36.11027 - 15782: -63.23649,35.92277 - 15783: -63.470863,35.875896 - 15784: -63.33024,36.26652 - 15785: -63.627113,35.79777 - 15786: -63.814613,35.54777 - 15787: -63.33024,34.70402 - 15788: -63.564613,35.125896 - 15789: -63.79899,34.500896 - 15790: -65.72086,35.73527 + 15512: -65.78336,38.250896 + 15513: -65.86149,37.32902 + 15514: -63.658363,36.11027 + 15515: -63.23649,35.92277 + 15516: -63.470863,35.875896 + 15517: -63.33024,36.26652 + 15518: -63.627113,35.79777 + 15519: -63.814613,35.54777 + 15520: -63.33024,34.70402 + 15521: -63.564613,35.125896 + 15522: -63.79899,34.500896 + 15523: -65.72086,35.73527 - node: cleanable: True color: '#791C1531' id: splatter decals: - 15745: -65.12562,34.378555 - 15746: -64.89124,34.534805 - 15747: -64.68812,34.01918 - 15748: -65.09437,34.503555 + 15478: -65.12562,34.378555 + 15479: -64.89124,34.534805 + 15480: -64.68812,34.01918 + 15481: -65.09437,34.503555 - node: cleanable: True color: '#791C1544' id: splatter decals: - 15749: -65.15687,34.597305 + 15482: -65.15687,34.597305 - node: cleanable: True color: '#791C1549' id: splatter decals: - 15744: -62.734993,39.26918 + 15477: -62.734993,39.26918 - node: color: '#7A8B6AFF' id: splatter decals: - 17215: -85.079346,-55.769096 - 17216: -85.53247,-56.206596 - 17217: -84.28247,-53.050346 + 16948: -85.079346,-55.769096 + 16949: -85.53247,-56.206596 + 16950: -84.28247,-53.050346 - node: cleanable: True color: '#7F6D1FBF' id: splatter decals: - 1466: -19.03565,38.73028 + 1419: -19.03565,38.73028 - node: color: '#824944FF' id: splatter decals: - 7219: 40,-36 - 7220: 42,-35 - 7221: 47,-42 - 7225: 34,-45 + 6952: 40,-36 + 6953: 42,-35 + 6954: 47,-42 + 6958: 34,-45 - node: cleanable: True color: '#9833314A' id: splatter decals: - 15743: -62.938118,39.191055 + 15476: -62.938118,39.191055 - node: color: '#9B0000FF' id: splatter decals: - 20241: 31.957863,-75.84706 - 20242: 31.586716,-76.00331 - 20243: 31.782059,-75.47597 - 20244: 32.094604,-75.63222 - 20249: 30.821426,-74.75296 - 20250: 30.46981,-74.45999 - 20251: 31.07537,-74.4014 - 20252: 31.153507,-74.499054 - 20253: 31.54419,-74.61624 - 20254: 30.762823,-74.77249 - 20255: 31.07537,-74.499054 - 20256: 32.28649,-74.53812 - 20257: 30.645618,-76.31546 - 20258: 30.762823,-76.706085 - 20259: 30.782358,-76.64749 - 20260: 30.9777,-76.51077 + 19879: 31.957863,-75.84706 + 19880: 31.586716,-76.00331 + 19881: 31.782059,-75.47597 + 19882: 32.094604,-75.63222 + 19887: 30.821426,-74.75296 + 19888: 30.46981,-74.45999 + 19889: 31.07537,-74.4014 + 19890: 31.153507,-74.499054 + 19891: 31.54419,-74.61624 + 19892: 30.762823,-74.77249 + 19893: 31.07537,-74.499054 + 19894: 32.28649,-74.53812 + 19895: 30.645618,-76.31546 + 19896: 30.762823,-76.706085 + 19897: 30.782358,-76.64749 + 19898: 30.9777,-76.51077 - node: cleanable: True color: '#9B0B074D' id: splatter decals: - 13014: -70.13151,-33.015682 - 13015: -69.95963,-33.015682 - 13016: -70.16276,-33.140682 - 13017: -69.94401,-33.203182 - 13018: -68.89713,-33.140682 - 13019: -68.86588,-32.875057 - 13020: -68.86588,-32.875057 - 13021: -68.522354,-34.293007 - 13022: -68.616104,-34.40238 - 13023: -68.66298,-34.37113 - 13024: -68.85413,-34.43363 + 12747: -70.13151,-33.015682 + 12748: -69.95963,-33.015682 + 12749: -70.16276,-33.140682 + 12750: -69.94401,-33.203182 + 12751: -68.89713,-33.140682 + 12752: -68.86588,-32.875057 + 12753: -68.86588,-32.875057 + 12754: -68.522354,-34.293007 + 12755: -68.616104,-34.40238 + 12756: -68.66298,-34.37113 + 12757: -68.85413,-34.43363 - node: cleanable: True color: '#A05200FF' id: splatter decals: - 16202: -55,-87 + 15935: -55,-87 - node: color: '#A1E5370A' id: splatter decals: - 17279: -39.83954,79.43883 - 17280: -40.542664,79.4232 - 17281: -39.698914,79.5482 - 17282: -40.167664,79.2357 - 17283: -39.886414,78.8607 - 17284: -40.05829,79.28258 - 17285: -51.95613,80.1732 - 17286: -51.39363,80.09508 - 17287: -51.23738,80.82945 - 17288: -50.659256,80.1107 - 17289: -51.39363,80.31383 - 17290: -51.534256,80.3607 - 17291: -57.2598,81.48591 - 17292: -57.6973,81.53278 - 17293: -57.16605,81.86091 - 17294: -57.494175,81.39216 - 17295: -57.29105,81.65778 - 17296: -59.566616,84.40179 - 17297: -59.92599,84.54241 - 17298: -59.45724,84.13616 - 17299: -59.910366,84.33929 - 17300: -60.30099,84.21429 - 17301: -63.42599,84.41741 - 17302: -62.89474,84.27679 - 17303: -63.254116,84.04241 - 17304: -63.14474,84.37054 + 17012: -39.83954,79.43883 + 17013: -40.542664,79.4232 + 17014: -39.698914,79.5482 + 17015: -40.167664,79.2357 + 17016: -39.886414,78.8607 + 17017: -40.05829,79.28258 + 17018: -51.95613,80.1732 + 17019: -51.39363,80.09508 + 17020: -51.23738,80.82945 + 17021: -50.659256,80.1107 + 17022: -51.39363,80.31383 + 17023: -51.534256,80.3607 + 17024: -57.2598,81.48591 + 17025: -57.6973,81.53278 + 17026: -57.16605,81.86091 + 17027: -57.494175,81.39216 + 17028: -57.29105,81.65778 + 17029: -59.566616,84.40179 + 17030: -59.92599,84.54241 + 17031: -59.45724,84.13616 + 17032: -59.910366,84.33929 + 17033: -60.30099,84.21429 + 17034: -63.42599,84.41741 + 17035: -62.89474,84.27679 + 17036: -63.254116,84.04241 + 17037: -63.14474,84.37054 - node: color: '#A74F6314' id: splatter decals: - 19250: -53.162395,-50.82222 - 19251: -52.599895,-51.13472 - 19252: -52.74052,-50.712845 - 19253: -52.599895,-50.88472 - 19254: -52.36552,-50.869095 - 19255: -52.64677,-51.025345 - 19256: -59.23748,-58.391727 - 19257: -59.096855,-58.172977 - 19258: -59.23748,-58.157352 - 19259: -58.971855,-58.188602 - 19260: -58.64373,-58.282352 - 19261: -59.17498,-58.532352 - 19262: -60.528267,-53.688602 - 19263: -60.10639,-54.001102 - 19264: -60.028267,-53.797977 - 19265: -60.41889,-53.626102 - 19266: -60.653267,-53.704227 - 19267: -60.41889,-53.797977 - 19268: -60.23139,-53.704227 - 19269: -57.279568,-48.353188 - 19270: -57.013943,-48.165688 - 19271: -57.013943,-48.634438 - 19272: -56.810818,-48.321938 - 19273: -57.060818,-48.306313 - 19274: -57.029568,-48.603188 - 19275: -59.63177,-40.585735 - 19276: -59.50677,-40.36685 - 19277: -59.366146,-40.554523 - 19278: -59.35052,-40.773273 - 19279: -59.69427,-40.804523 - 19280: -59.47552,-40.835773 - 19281: -59.897396,-40.367023 - 19282: -59.928646,-40.460773 - 19283: -59.56927,-40.7264 - 19284: -59.25677,-40.929523 - 19285: -59.344635,-46.258064 - 19286: -59.157135,-46.61744 - 19287: -59.07901,-46.164314 - 19288: -59.14151,-46.320564 - 19289: -58.969635,-46.539314 - 19290: -59.42276,-46.74244 - 19291: -59.625885,-47.195564 - 19292: -59.29776,-46.914314 - 19293: -59.250885,-46.21119 - 19294: -59.36026,-46.08619 - 19295: -51.386852,-47.5074 - 19296: -51.83991,-47.319866 - 19297: -51.449352,-47.53865 - 19298: -51.308727,-47.773026 - 19299: -51.824352,-47.773026 - 19300: -51.449352,-47.6949 - 19301: -51.261852,-47.16365 - 19302: -51.386852,-47.898026 - 19303: -53.73944,-54.43665 - 19304: -53.73944,-53.9679 - 19305: -53.348816,-53.8429 - 19306: -53.567566,-54.421024 - 19307: -53.45819,-54.43665 - 19308: -53.98944,-54.43665 - 19309: -53.52069,-54.358524 - 19310: -53.89569,-54.9054 - 19311: -53.473816,-54.264774 - 19312: -53.17694,-54.452274 - 19313: -62.92295,-56.248898 - 19314: -63.563576,-56.655148 - 19315: -62.938576,-57.061398 - 19316: -63.407326,-57.811398 - 19317: -62.907326,-56.373898 - 19318: -63.3292,-57.092648 - 19319: -63.094826,-57.405148 - 19320: -62.594826,-59.061398 - 19321: -62.4542,-60.264523 - 19322: -62.7042,-60.858273 - 19323: -63.282326,-60.623898 - 19324: -61.92295,-60.373898 - 19325: -62.907326,-61.202023 - 19326: -65.13866,-58.90043 - 19327: -65.546875,-59.31574 - 19328: -65.718994,-59.862854 - 19329: -65.59421,-59.972443 - 19330: -65.609535,-59.550274 - 19331: -65.40641,-59.34715 - 19332: -65.172035,-59.487774 - 19333: -65.18766,-59.644024 - 19334: -65.172035,-59.269024 - 19335: -65.34391,-59.3784 - 19336: -65.578285,-59.269024 - 19337: -65.25016,-59.40965 - 19338: -65.21891,-59.675274 + 18983: -53.162395,-50.82222 + 18984: -52.599895,-51.13472 + 18985: -52.74052,-50.712845 + 18986: -52.599895,-50.88472 + 18987: -52.36552,-50.869095 + 18988: -52.64677,-51.025345 + 18989: -59.23748,-58.391727 + 18990: -59.096855,-58.172977 + 18991: -59.23748,-58.157352 + 18992: -58.971855,-58.188602 + 18993: -58.64373,-58.282352 + 18994: -59.17498,-58.532352 + 18995: -60.528267,-53.688602 + 18996: -60.10639,-54.001102 + 18997: -60.028267,-53.797977 + 18998: -60.41889,-53.626102 + 18999: -60.653267,-53.704227 + 19000: -60.41889,-53.797977 + 19001: -60.23139,-53.704227 + 19002: -57.279568,-48.353188 + 19003: -57.013943,-48.165688 + 19004: -57.013943,-48.634438 + 19005: -56.810818,-48.321938 + 19006: -57.060818,-48.306313 + 19007: -57.029568,-48.603188 + 19008: -59.63177,-40.585735 + 19009: -59.50677,-40.36685 + 19010: -59.366146,-40.554523 + 19011: -59.35052,-40.773273 + 19012: -59.69427,-40.804523 + 19013: -59.47552,-40.835773 + 19014: -59.897396,-40.367023 + 19015: -59.928646,-40.460773 + 19016: -59.56927,-40.7264 + 19017: -59.25677,-40.929523 + 19018: -59.344635,-46.258064 + 19019: -59.157135,-46.61744 + 19020: -59.07901,-46.164314 + 19021: -59.14151,-46.320564 + 19022: -58.969635,-46.539314 + 19023: -59.42276,-46.74244 + 19024: -59.625885,-47.195564 + 19025: -59.29776,-46.914314 + 19026: -59.250885,-46.21119 + 19027: -59.36026,-46.08619 + 19028: -51.386852,-47.5074 + 19029: -51.83991,-47.319866 + 19030: -51.449352,-47.53865 + 19031: -51.308727,-47.773026 + 19032: -51.824352,-47.773026 + 19033: -51.449352,-47.6949 + 19034: -51.261852,-47.16365 + 19035: -51.386852,-47.898026 + 19036: -53.73944,-54.43665 + 19037: -53.73944,-53.9679 + 19038: -53.348816,-53.8429 + 19039: -53.567566,-54.421024 + 19040: -53.45819,-54.43665 + 19041: -53.98944,-54.43665 + 19042: -53.52069,-54.358524 + 19043: -53.89569,-54.9054 + 19044: -53.473816,-54.264774 + 19045: -53.17694,-54.452274 + 19046: -62.92295,-56.248898 + 19047: -63.563576,-56.655148 + 19048: -62.938576,-57.061398 + 19049: -63.407326,-57.811398 + 19050: -62.907326,-56.373898 + 19051: -63.3292,-57.092648 + 19052: -63.094826,-57.405148 + 19053: -62.594826,-59.061398 + 19054: -62.4542,-60.264523 + 19055: -62.7042,-60.858273 + 19056: -63.282326,-60.623898 + 19057: -61.92295,-60.373898 + 19058: -62.907326,-61.202023 + 19059: -65.13866,-58.90043 + 19060: -65.546875,-59.31574 + 19061: -65.718994,-59.862854 + 19062: -65.59421,-59.972443 + 19063: -65.609535,-59.550274 + 19064: -65.40641,-59.34715 + 19065: -65.172035,-59.487774 + 19066: -65.18766,-59.644024 + 19067: -65.172035,-59.269024 + 19068: -65.34391,-59.3784 + 19069: -65.578285,-59.269024 + 19070: -65.25016,-59.40965 + 19071: -65.21891,-59.675274 - node: color: '#A914093E' id: splatter decals: - 4933: -73.01908,65.00714 - 4934: -72.878456,64.835266 - 4935: -73.05033,64.772766 - 4936: -73.14408,64.50714 - 4937: -72.83158,64.41339 - 4938: -73.097206,64.13214 - 4939: -72.784706,64.10089 - 4940: -73.003456,64.16339 + 4736: -73.01908,65.00714 + 4737: -72.878456,64.835266 + 4738: -73.05033,64.772766 + 4739: -73.14408,64.50714 + 4740: -72.83158,64.41339 + 4741: -73.097206,64.13214 + 4742: -72.784706,64.10089 + 4743: -73.003456,64.16339 - node: cleanable: True color: '#AB19251B' id: splatter decals: - 9758: 36.171505,-8.818328 - 9759: 35.921505,-8.552703 + 9491: 36.171505,-8.818328 + 9492: 35.921505,-8.552703 - node: cleanable: True color: '#AB19255E' id: splatter decals: - 9757: 35.859005,-8.740203 + 9490: 35.859005,-8.740203 - node: cleanable: True color: '#AB1C1542' id: splatter decals: - 15750: -65.68812,38.58168 - 15751: -65.51624,38.73793 + 15483: -65.68812,38.58168 + 15484: -65.51624,38.73793 - node: color: '#C052C314' id: splatter decals: - 19407: -58.10039,-87.33818 - 19408: -58.41289,-87.21318 - 19409: -58.491016,-86.635056 - 19410: -58.31914,-86.61943 - 19411: -58.06914,-87.166306 - 19412: -57.897266,-87.353806 - 19413: -58.35039,-87.416306 - 19414: -48.711452,-84.61943 - 19415: -49.055008,-84.416306 - 19416: -48.788605,-84.197556 - 19417: -48.617054,-83.947556 - 19418: -48.554554,-83.68193 - 19419: -48.07018,-84.197556 - 19420: -47.88268,-84.21318 - 19421: -47.78893,-84.15068 - 19422: -48.82018,-84.46318 - 19423: -47.66393,-84.24443 - 19424: -47.78893,-84.18193 - 19425: -47.929554,-83.916306 - 19426: -47.66393,-84.30693 + 19140: -58.10039,-87.33818 + 19141: -58.41289,-87.21318 + 19142: -58.491016,-86.635056 + 19143: -58.31914,-86.61943 + 19144: -58.06914,-87.166306 + 19145: -57.897266,-87.353806 + 19146: -58.35039,-87.416306 + 19147: -48.711452,-84.61943 + 19148: -49.055008,-84.416306 + 19149: -48.788605,-84.197556 + 19150: -48.617054,-83.947556 + 19151: -48.554554,-83.68193 + 19152: -48.07018,-84.197556 + 19153: -47.88268,-84.21318 + 19154: -47.78893,-84.15068 + 19155: -48.82018,-84.46318 + 19156: -47.66393,-84.24443 + 19157: -47.78893,-84.18193 + 19158: -47.929554,-83.916306 + 19159: -47.66393,-84.30693 - node: zIndex: 60 color: '#CA425A16' id: splatter decals: - 15989: -60.624104,32.554077 - 15990: -60.592854,32.725952 - 15991: -60.38973,32.835327 - 15992: -60.38973,32.647827 - 15993: -60.57723,32.366577 + 15722: -60.624104,32.554077 + 15723: -60.592854,32.725952 + 15724: -60.38973,32.835327 + 15725: -60.38973,32.647827 + 15726: -60.57723,32.366577 - node: zIndex: 60 color: '#CABF5A0C' id: splatter decals: - 15998: -84.48872,25.109612 - 15999: -84.64497,24.906487 - 16000: -84.50435,24.672112 - 16001: -91.32035,17.99865 - 16002: -91.32035,18.31115 - 16003: -91.460976,18.264275 - 16004: -91.367226,18.076775 - 16005: -91.4141,17.99865 - 16006: -88.099434,20.498867 - 16007: -88.33381,20.670742 - 16008: -87.58381,21.061367 - 16009: -87.52131,21.030117 - 16010: -87.49006,20.311367 - 16011: -87.89631,20.483242 - 16012: -87.86506,20.670742 + 15731: -84.48872,25.109612 + 15732: -84.64497,24.906487 + 15733: -84.50435,24.672112 + 15734: -91.32035,17.99865 + 15735: -91.32035,18.31115 + 15736: -91.460976,18.264275 + 15737: -91.367226,18.076775 + 15738: -91.4141,17.99865 + 15739: -88.099434,20.498867 + 15740: -88.33381,20.670742 + 15741: -87.58381,21.061367 + 15742: -87.52131,21.030117 + 15743: -87.49006,20.311367 + 15744: -87.89631,20.483242 + 15745: -87.86506,20.670742 - node: zIndex: 60 angle: 0.5235987755982988 rad color: '#CABF5A0C' id: splatter decals: - 16031: -87.601524,21.233967 - 16032: -87.7734,20.702717 - 16033: -88.17965,20.905842 - 16034: -88.61715,20.483967 + 15764: -87.601524,21.233967 + 15765: -87.7734,20.702717 + 15766: -88.17965,20.905842 + 15767: -88.61715,20.483967 - node: zIndex: 60 color: '#CABF5A16' id: splatter decals: - 15994: -73.821106,25.655272 - 15995: -74.08673,25.639647 - 15996: -73.696106,25.795897 - 15997: -73.633606,26.155272 + 15727: -73.821106,25.655272 + 15728: -74.08673,25.639647 + 15729: -73.696106,25.795897 + 15730: -73.633606,26.155272 - node: angle: -0.6981317007977318 rad color: '#DC9C3403' id: splatter decals: - 16245: -69.002045,-3.9463391 - 16246: -68.98353,-3.9741168 + 15978: -69.002045,-3.9463391 + 15979: -68.98353,-3.9741168 - node: angle: 0.2617993877991494 rad color: '#DC9C3403' id: splatter decals: - 16242: -68.99279,-3.9648576 - 16243: -68.969635,-3.9741168 - 16244: -68.95575,-3.9880056 + 15975: -68.99279,-3.9648576 + 15976: -68.969635,-3.9741168 + 15977: -68.95575,-3.9880056 - node: color: '#DC9C3422' id: splatter decals: - 16241: -68.99144,-3.9857879 + 15974: -68.99144,-3.9857879 - node: color: '#DE3A3A37' id: splatter decals: - 17436: 59.753654,19.815382 - 17437: 59.909904,19.643507 - 17438: 60.128654,19.831007 - 17439: 59.51928,20.018507 - 17440: 59.878654,20.034132 - 17441: 60.14428,19.987257 - 17442: 60.347404,19.987257 + 17169: 59.753654,19.815382 + 17170: 59.909904,19.643507 + 17171: 60.128654,19.831007 + 17172: 59.51928,20.018507 + 17173: 59.878654,20.034132 + 17174: 60.14428,19.987257 + 17175: 60.347404,19.987257 - node: zIndex: 90 angle: 3.839724354387525 rad color: '#FF0026FF' id: splatter decals: - 12777: 83.33536,-54.61851 + 12510: 83.33536,-54.61851 - node: color: '#FFD2121B' id: splatter decals: - 18692: -83.266106,-54.799374 - 18693: -83.484856,-54.674374 - 18694: -83.53173,-54.674374 + 18425: -83.266106,-54.799374 + 18426: -83.484856,-54.674374 + 18427: -83.53173,-54.674374 - node: color: '#FFD8000F' id: splatter decals: - 18695: -77.48637,-66.73722 - 18696: -77.43949,-67.29956 - 18697: -77.06449,-67.315186 - 18698: -77.18949,-67.70581 - 18699: -77.59574,-67.36206 - 18700: -77.26762,-67.502686 - 18701: -70.70793,-66.66817 - 18702: -70.83293,-66.60567 - 18703: -70.30168,-66.55879 - 18704: -69.97356,-66.55879 - 18705: -70.19231,-67.02754 - 18706: -70.03606,-67.23067 - 18707: -62.950493,-67.46985 - 18708: -62.669243,-67.67297 - 18709: -62.575493,-68.11047 - 18710: -62.591118,-67.29797 - 18711: -62.497368,-67.70422 - 18712: -66.81978,-59.793472 - 18713: -66.72603,-59.512222 - 18714: -66.55415,-59.793472 - 18715: -71.84168,-39.250458 - 18716: -71.76356,-39.187958 - 18717: -72.04481,-39.406708 - 18718: -71.71668,-39.469208 - 18719: -66.8673,-29.557562 - 18720: -66.6173,-29.682562 - 18721: -66.44543,-29.916937 - 18722: -66.71105,-29.823187 - 18723: -66.96105,-29.666937 + 18428: -77.48637,-66.73722 + 18429: -77.43949,-67.29956 + 18430: -77.06449,-67.315186 + 18431: -77.18949,-67.70581 + 18432: -77.59574,-67.36206 + 18433: -77.26762,-67.502686 + 18434: -70.70793,-66.66817 + 18435: -70.83293,-66.60567 + 18436: -70.30168,-66.55879 + 18437: -69.97356,-66.55879 + 18438: -70.19231,-67.02754 + 18439: -70.03606,-67.23067 + 18440: -62.950493,-67.46985 + 18441: -62.669243,-67.67297 + 18442: -62.575493,-68.11047 + 18443: -62.591118,-67.29797 + 18444: -62.497368,-67.70422 + 18445: -66.81978,-59.793472 + 18446: -66.72603,-59.512222 + 18447: -66.55415,-59.793472 + 18448: -71.84168,-39.250458 + 18449: -71.76356,-39.187958 + 18450: -72.04481,-39.406708 + 18451: -71.71668,-39.469208 + 18452: -66.8673,-29.557562 + 18453: -66.6173,-29.682562 + 18454: -66.44543,-29.916937 + 18455: -66.71105,-29.823187 + 18456: -66.96105,-29.666937 - node: color: '#FFE5370C' id: splatter decals: - 17264: -51.559113,84.321434 - 17265: -51.324738,84.415184 - 17266: -51.527863,84.21206 - 17267: -51.199738,84.08706 - 17268: -46.737373,83.633934 - 17269: -46.612373,83.883934 - 17270: -46.378,83.633934 - 17271: -45.396133,79.72469 - 17273: -45.052383,79.55282 - 17274: -44.989883,79.50594 - 17276: -44.50551,79.38094 - 17277: -43.78676,79.45907 + 16997: -51.559113,84.321434 + 16998: -51.324738,84.415184 + 16999: -51.527863,84.21206 + 17000: -51.199738,84.08706 + 17001: -46.737373,83.633934 + 17002: -46.612373,83.883934 + 17003: -46.378,83.633934 + 17004: -45.396133,79.72469 + 17006: -45.052383,79.55282 + 17007: -44.989883,79.50594 + 17009: -44.50551,79.38094 + 17010: -43.78676,79.45907 - node: color: '#FFF497FF' id: splatter decals: - 12642: 114.08811,-61.283527 - 12644: 113.49436,-61.174152 - 12646: 113.80686,-60.877277 - 12647: 114.24436,-61.049152 + 12375: 114.08811,-61.283527 + 12377: 113.49436,-61.174152 + 12379: 113.80686,-60.877277 + 12380: 114.24436,-61.049152 - node: color: '#FFF4FFFF' id: splatter decals: - 12655: 82.603806,-48.80261 - 12656: 83.416306,-49.42761 - 12657: 82.90068,-50.443233 - 12658: 83.478806,-48.64636 - 12659: 82.43193,-49.55261 + 12388: 82.603806,-48.80261 + 12389: 83.416306,-49.42761 + 12390: 82.90068,-50.443233 + 12391: 83.478806,-48.64636 + 12392: 82.43193,-49.55261 - node: color: '#FFFFFF03' id: splatter decals: - 19705: -18.029346,-85.200905 - 19706: -18.091846,-85.044655 - 19707: -18.248096,-84.18528 - 19708: -18.123096,-82.27903 - 19709: -18.123096,-81.62278 - 19710: -18.169971,-80.794655 - 19711: -18.388721,-79.919655 - 19712: -18.357471,-79.450905 - 19713: -17.919971,-79.638405 - 19714: -18.013721,-80.513405 - 19715: -17.904346,-80.49778 - 19716: -17.873096,-79.52903 - 19717: -17.841846,-79.43528 - 19718: -18.091846,-80.982155 - 19719: -18.123096,-80.638405 - 19720: -18.279346,-79.669655 - 19721: -17.779346,-80.950905 - 19722: -17.529346,-81.357155 - 19723: -17.685596,-80.24778 - 19724: -17.732471,-79.56028 - 19725: -17.982471,-80.46653 - 19726: -18.060596,-81.87278 - 19727: -18.013721,-81.888405 - 19728: -18.232471,-80.982155 - 19729: -17.748096,-84.200905 - 19730: -17.904346,-84.669655 - 19731: -17.919971,-81.357155 - 19732: -18.185596,-80.294655 - 19733: -18.263721,-79.93528 - 19734: -17.966846,-79.90403 - 19735: -17.841846,-79.763405 - 19736: -18.357471,-79.763405 - 19737: -18.154346,-79.544655 - 19738: -17.732471,-79.700905 - 19739: -17.794971,-80.02903 - 19740: -18.013721,-81.669655 - 19741: -17.966846,-80.700905 - 19742: -18.123096,-80.34153 - 19743: -17.873096,-84.544655 - 19786: -18.279346,-82.43528 - 19787: -18.107471,-83.02903 - 19788: -18.138721,-83.87278 - 19789: -18.091846,-83.982155 - 19790: -18.060596,-82.52903 - 19791: -18.044971,-81.90403 - 19792: -18.013721,-82.37278 + 19438: -18.029346,-85.200905 + 19439: -18.091846,-85.044655 + 19440: -18.248096,-84.18528 + 19441: -18.123096,-82.27903 + 19442: -18.123096,-81.62278 + 19443: -18.169971,-80.794655 + 19444: -18.388721,-79.919655 + 19445: -18.357471,-79.450905 + 19446: -17.919971,-79.638405 + 19447: -18.013721,-80.513405 + 19448: -17.904346,-80.49778 + 19449: -17.873096,-79.52903 + 19450: -17.841846,-79.43528 + 19451: -18.091846,-80.982155 + 19452: -18.123096,-80.638405 + 19453: -18.279346,-79.669655 + 19454: -17.779346,-80.950905 + 19455: -17.529346,-81.357155 + 19456: -17.685596,-80.24778 + 19457: -17.732471,-79.56028 + 19458: -17.982471,-80.46653 + 19459: -18.060596,-81.87278 + 19460: -18.013721,-81.888405 + 19461: -18.232471,-80.982155 + 19462: -17.748096,-84.200905 + 19463: -17.904346,-84.669655 + 19464: -17.919971,-81.357155 + 19465: -18.185596,-80.294655 + 19466: -18.263721,-79.93528 + 19467: -17.966846,-79.90403 + 19468: -17.841846,-79.763405 + 19469: -18.357471,-79.763405 + 19470: -18.154346,-79.544655 + 19471: -17.732471,-79.700905 + 19472: -17.794971,-80.02903 + 19473: -18.013721,-81.669655 + 19474: -17.966846,-80.700905 + 19475: -18.123096,-80.34153 + 19476: -17.873096,-84.544655 + 19519: -18.279346,-82.43528 + 19520: -18.107471,-83.02903 + 19521: -18.138721,-83.87278 + 19522: -18.091846,-83.982155 + 19523: -18.060596,-82.52903 + 19524: -18.044971,-81.90403 + 19525: -18.013721,-82.37278 - node: angle: -1.5707963267948966 rad color: '#FFFFFF18' id: splatter decals: - 19950: -12.249554,-90.0178 - 19951: -12.124554,-89.8928 - 19952: -11.780804,-90.2678 - 19953: -4.0180507,-85.189674 - 19954: -2.8305507,-84.970924 - 19955: -2.7368007,-86.29905 - 19956: -2.620967,-90.25543 - 19957: -2.745967,-90.55231 - 19958: -2.620967,-90.88043 - 19959: -2.464717,-91.27106 - 19960: -22.39626,-87.90296 - 19961: -22.27126,-87.69984 - 19962: -22.67751,-87.43421 - 19963: -22.42751,-87.66859 - 19964: -19.02126,-91.38734 - 19965: -18.77126,-91.15296 - 19966: -18.411884,-91.46546 - 19967: -18.39626,-91.48109 - 19968: -19.536884,-91.69984 - 19969: -10.999503,-84.74671 - 19970: -10.468253,-84.65296 - 19971: -10.452628,-84.76234 - 19972: -10.733878,-84.85609 - 19973: -13.421378,-85.51234 - 19974: -13.999503,-85.19984 - 19975: -14.515128,-85.43421 - 19976: -13.937003,-85.48109 - 19977: -13.421378,-85.18421 - 19978: -13.843253,-85.29359 + 19683: -12.249554,-90.0178 + 19684: -12.124554,-89.8928 + 19685: -11.780804,-90.2678 + 19686: -4.0180507,-85.189674 + 19687: -2.8305507,-84.970924 + 19688: -2.7368007,-86.29905 + 19689: -2.620967,-90.25543 + 19690: -2.745967,-90.55231 + 19691: -2.620967,-90.88043 + 19692: -2.464717,-91.27106 + 19693: -22.39626,-87.90296 + 19694: -22.27126,-87.69984 + 19695: -22.67751,-87.43421 + 19696: -22.42751,-87.66859 + 19697: -19.02126,-91.38734 + 19698: -18.77126,-91.15296 + 19699: -18.411884,-91.46546 + 19700: -18.39626,-91.48109 + 19701: -19.536884,-91.69984 + 19702: -10.999503,-84.74671 + 19703: -10.468253,-84.65296 + 19704: -10.452628,-84.76234 + 19705: -10.733878,-84.85609 + 19706: -13.421378,-85.51234 + 19707: -13.999503,-85.19984 + 19708: -14.515128,-85.43421 + 19709: -13.937003,-85.48109 + 19710: -13.421378,-85.18421 + 19711: -13.843253,-85.29359 - node: cleanable: True color: '#FFFFFF1B' id: splatter decals: - 9569: 82.89025,-20.584833 - 9571: 83.280876,-20.944208 + 9302: 82.89025,-20.584833 + 9304: 83.280876,-20.944208 - node: color: '#FFFFFF22' id: splatter decals: - 17261: -65.377594,80.55999 - 17262: -65.17447,80.55999 - 17263: -65.11197,80.731865 + 16994: -65.377594,80.55999 + 16995: -65.17447,80.55999 + 16996: -65.11197,80.731865 - node: cleanable: True color: '#FFFFFF28' id: splatter decals: - 9568: 83.312126,-20.522333 + 9301: 83.312126,-20.522333 - node: cleanable: True color: '#FFFFFF2B' id: splatter decals: - 4411: -53.801136,34.245995 - 4412: -54.00426,34.60537 + 4214: -53.801136,34.245995 + 4215: -54.00426,34.60537 - node: color: '#FFFFFFFF' id: splatter decals: - 14665: 52.784985,-48.21509 - 14666: 56.472485,-46.574467 - 14667: 55.45686,-50.55884 - 14668: 55.45686,-50.55884 + 14398: 52.784985,-48.21509 + 14399: 56.472485,-46.574467 + 14400: 55.45686,-50.55884 + 14401: 55.45686,-50.55884 - node: cleanable: True color: '#FFFFFFFF' id: splatter decals: - 18046: -48.11064,-86.93605 - 18047: -47.876266,-87.107925 + 17779: -48.11064,-86.93605 + 17780: -47.876266,-87.107925 - node: zIndex: 90 angle: 3.839724354387525 rad color: '#FFFFFFFF' id: splatter decals: - 12779: 85.24354,-53.536674 - 12780: 84.55604,-53.2398 - 12781: 85.11854,-53.0523 + 12512: 85.24354,-53.536674 + 12513: 84.55604,-53.2398 + 12514: 85.11854,-53.0523 - node: zIndex: 90 angle: 3.839724354387525 rad color: '#000000FF' id: syndlogo16 decals: - 12747: 84.9746,-53.979023 + 12480: 84.9746,-53.979023 - node: angle: -1.7453292519943295 rad color: '#A1E53706' id: thinline decals: - 17327: -52.416527,80.09281 - 17328: -52.385277,79.81156 - 17329: -51.666527,79.95219 - 17330: -52.104027,79.93656 - 17331: -52.68215,80.04594 - 17332: -51.12828,80.541824 - 17333: -51.362656,80.43245 + 17060: -52.416527,80.09281 + 17061: -52.385277,79.81156 + 17062: -51.666527,79.95219 + 17063: -52.104027,79.93656 + 17064: -52.68215,80.04594 + 17065: -51.12828,80.541824 + 17066: -51.362656,80.43245 - node: angle: -0.5235987755982988 rad color: '#A1E53706' id: thinline decals: - 17318: -57.777893,80.84281 - 17319: -51.229027,80.99906 - 17320: -50.8384,81.57719 - 17321: -50.760277,81.84281 - 17322: -50.93215,81.07719 - 17323: -50.8384,81.48344 - 17324: -51.0259,80.81156 - 17325: -51.041527,81.21781 + 17051: -57.777893,80.84281 + 17052: -51.229027,80.99906 + 17053: -50.8384,81.57719 + 17054: -50.760277,81.84281 + 17055: -50.93215,81.07719 + 17056: -50.8384,81.48344 + 17057: -51.0259,80.81156 + 17058: -51.041527,81.21781 - node: angle: -0.17453292519943295 rad color: '#A1E53706' id: thinline decals: - 17309: -57.835938,80.87406 - 17310: -58.039062,80.37406 - 17311: -58.085938,79.87406 - 17312: -57.882812,80.54594 - 17313: -58.101562,79.68656 - 17314: -57.747276,80.85844 - 17315: -57.591026,81.04594 - 17316: -57.653526,80.21781 - 17317: -57.559776,80.79594 + 17042: -57.835938,80.87406 + 17043: -58.039062,80.37406 + 17044: -58.085938,79.87406 + 17045: -57.882812,80.54594 + 17046: -58.101562,79.68656 + 17047: -57.747276,80.85844 + 17048: -57.591026,81.04594 + 17049: -57.653526,80.21781 + 17050: -57.559776,80.79594 - node: color: '#A1E5370A' id: thinline decals: - 17305: -60.004116,83.72991 - 17306: -59.847866,83.63616 - 17307: -60.05099,83.71429 - 17308: -59.660366,83.16741 + 17038: -60.004116,83.72991 + 17039: -59.847866,83.63616 + 17040: -60.05099,83.71429 + 17041: -59.660366,83.16741 - node: cleanable: True color: '#FFFFFFFF' id: toilet decals: - 1433: -74.05983,20.911047 + 1386: -74.05983,20.911047 - node: zIndex: 60 color: '#AE1318AD' id: toolbox decals: - 16110: -65.018906,27.986692 + 15843: -65.018906,27.986692 - node: cleanable: True color: '#E6E2E3FF' id: toolbox decals: - 4163: -12,38 + 3970: -12,38 - node: color: '#FFFFFFFF' id: toolbox decals: - 17342: -50.025562,83.93197 - 17343: -43.037373,79.91634 - 17345: -41.084248,83.94759 - 17346: -60.012486,80.01009 + 17075: -50.025562,83.93197 + 17076: -43.037373,79.91634 + 17078: -41.084248,83.94759 + 17079: -60.012486,80.01009 - node: cleanable: True color: '#FF4C31FF' id: x decals: - 1280: -24.927753,-6.0113387 + 1233: -24.927753,-6.0113387 - type: GridAtmosphere version: 2 data: @@ -31931,7 +31931,7 @@ entities: 0: 65295 -8,8: 0: 4607 - 3: 60928 + 2: 60928 -7,5: 0: 48059 -7,6: @@ -32309,19 +32309,19 @@ entities: 0: 65395 -15,7: 0: 4223 - 2: 49152 + 3: 49152 -15,8: 0: 4401 - 2: 52428 + 3: 52428 -14,5: 0: 52701 -14,6: 0: 65480 -14,7: 0: 15 - 2: 28672 + 3: 28672 -14,8: - 2: 30583 + 3: 30583 0: 128 -13,8: 0: 65535 @@ -33122,7 +33122,7 @@ entities: 0: 30583 -8,9: 0: 65361 - 3: 174 + 2: 174 -8,10: 0: 65375 -8,11: @@ -33880,10 +33880,10 @@ entities: 1: 61064 12,14: 1: 4606 - 3: 49152 + 2: 49152 12,15: 1: 4369 - 3: 52428 + 2: 52428 8,-16: 0: 65293 8,-17: @@ -34673,7 +34673,7 @@ entities: 1: 3976 4,17: 1: 12835 - 3: 2184 + 2: 2184 4,18: 1: 3918 -4,18: @@ -34931,7 +34931,7 @@ entities: 1: 36067 8,17: 1: 4369 - 3: 3276 + 2: 3276 8,18: 1: 3871 7,18: @@ -34940,14 +34940,14 @@ entities: 1: 3919 9,17: 1: 8738 - 3: 2184 + 2: 2184 10,17: - 3: 273 + 2: 273 1: 17476 10,18: 1: 3855 11,17: - 3: 1911 + 2: 1911 11,18: 1: 3983 12,16: @@ -34957,17 +34957,17 @@ entities: 12,18: 1: 3909 5,17: - 3: 273 + 2: 273 1: 17476 5,18: 1: 3855 6,17: - 3: 819 + 2: 819 1: 34952 6,18: 1: 3919 7,17: - 3: 1638 + 2: 1638 4,-24: 1: 3948 3,-24: @@ -35091,7 +35091,7 @@ entities: 13,18: 1: 814 13,15: - 3: 4369 + 2: 4369 1: 17484 14,16: 1: 62815 @@ -35109,7 +35109,7 @@ entities: 1: 36863 13,14: 1: 17532 - 3: 4096 + 2: 4096 14,13: 1: 20293 14,14: @@ -36097,10 +36097,8 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 - 0 - 0 - 0 @@ -36111,11 +36109,13 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -42525,16 +42525,18 @@ entities: parent: 2 - type: DeviceList devices: - - 47510 - - 50754 - - 50756 - - 47496 - - 47738 - - 47498 - - 36110 - - 43173 - - 43159 - 50760 + - 43159 + - 55547 + - 36110 + - 47498 + - 47738 + - 47496 + - 50756 + - 50754 + - 47510 + - 47125 + - 18578 - uid: 50762 components: - type: Transform @@ -43956,14 +43958,14 @@ entities: parent: 2 - type: DeviceList devices: - - 51286 - - 51285 - - 51281 - - 51517 - - 11960 - - 55110 - - 55108 - 55109 + - 47231 + - 55110 + - 11960 + - 51517 + - 51281 + - 51285 + - 51286 - uid: 51289 components: - type: Transform @@ -46956,6 +46958,8 @@ entities: - type: Transform pos: -7.5,-92.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking581457 dockedWith: 56356 @@ -47130,6 +47134,8 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - type: Door + changeAirtight: False - uid: 53911 components: - type: Transform @@ -47143,6 +47149,8 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - type: Door + changeAirtight: False - uid: 54741 components: - type: Transform @@ -47155,6 +47163,8 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - type: Door + changeAirtight: False - uid: 54742 components: - type: Transform @@ -47167,6 +47177,8 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - type: Door + changeAirtight: False - uid: 55944 components: - type: Transform @@ -47495,6 +47507,8 @@ entities: rot: 1.5707963267948966 rad pos: 94.5,0.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking770303 dockedWith: 56430 @@ -47508,6 +47522,8 @@ entities: rot: 1.5707963267948966 rad pos: 94.5,-1.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking770304 dockedWith: 56431 @@ -47527,6 +47543,8 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-28.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking99580 dockedWith: 56010 @@ -47540,6 +47558,8 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-6.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking581534 dockedWith: 55145 @@ -47552,6 +47572,8 @@ entities: - type: Transform pos: 0.5,-4.5 parent: 55142 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking581534 dockedWith: 22115 @@ -47564,6 +47586,8 @@ entities: - type: Transform pos: 1.5,-9.5 parent: 56001 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking99580 dockedWith: 12987 @@ -47576,6 +47600,8 @@ entities: - type: Transform pos: -0.5,-4.5 parent: 56424 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking770303 dockedWith: 1179 @@ -47588,6 +47614,8 @@ entities: - type: Transform pos: 1.5,-4.5 parent: 56424 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking770304 dockedWith: 4115 @@ -47607,6 +47635,8 @@ entities: - type: Transform pos: 2.5,-2.5 parent: 56354 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking581457 dockedWith: 23961 @@ -95537,6 +95567,46 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 55142 + - uid: 55531 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 55532 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 55533 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 55534 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 55535 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 55536 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 55537 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 55538 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 - uid: 55947 components: - type: Transform @@ -148504,8 +148574,6 @@ entities: components: - type: Transform parent: 20107 - - type: Magboots - toggleActionEntity: 44964 - type: Physics canCollide: False - type: ActionsContainer @@ -148519,8 +148587,6 @@ entities: components: - type: Transform parent: 16057 - - type: Magboots - toggleActionEntity: 16058 - type: Physics canCollide: False - type: ActionsContainer @@ -148534,8 +148600,6 @@ entities: components: - type: Transform parent: 14015 - - type: Magboots - toggleActionEntity: 11455 - type: Physics canCollide: False - type: ActionsContainer @@ -148549,8 +148613,6 @@ entities: components: - type: Transform parent: 14010 - - type: Magboots - toggleActionEntity: 11454 - type: Physics canCollide: False - type: ActionsContainer @@ -149117,6 +149179,11 @@ entities: - type: Transform pos: -2.6258273,-62.38485 parent: 2 + - uid: 47276 + components: + - type: Transform + pos: 6.4383698,-83.523964 + parent: 2 - proto: ClothingUniformColorJumpskirtRainbow entities: - uid: 30192 @@ -149219,6 +149286,13 @@ entities: rot: -1.5707963267948966 rad pos: -42.443813,4.6148477 parent: 2 +- proto: ClothingUniformJumpskirtElegantMaid + entities: + - uid: 46314 + components: + - type: Transform + pos: 6.4406767,-83.17929 + parent: 2 - proto: ClothingUniformJumpskirtHoS entities: - uid: 19954 @@ -153651,16 +153725,6 @@ entities: ent: null - type: Label currentLabel: 'Поставка: Собаки Ke.' - - uid: 19275 - components: - - type: Transform - pos: 28.5,-54.5 - parent: 2 - - uid: 19276 - components: - - type: Transform - pos: 26.5,-54.5 - parent: 2 - uid: 20127 components: - type: Transform @@ -153884,6 +153948,16 @@ entities: showEnts: False occludes: True ent: null + - uid: 4185 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 2 - uid: 15825 components: - type: Transform @@ -155272,7 +155346,7 @@ entities: pos: -12.5,61.5 parent: 2 - type: Door - secondsUntilStateChange: -368777.38 + secondsUntilStateChange: -373247.8 state: Closing - proto: CurtainsPurple entities: @@ -158856,6 +158930,12 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,38.5 parent: 2 + - uid: 55273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 - proto: DisposalJunction entities: - uid: 22441 @@ -159114,6 +159194,12 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: + - uid: 6208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 - uid: 23242 components: - type: Transform @@ -162051,12 +162137,6 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,0.5 parent: 2 - - uid: 33475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 2 - uid: 33476 components: - type: Transform @@ -172097,6 +172177,48 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-5.5 parent: 53899 + - uid: 55274 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 55522 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 55523 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 55524 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 55525 + components: + - type: Transform + pos: -45.5,5.5 + parent: 2 + - uid: 55526 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 55527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + - uid: 55528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,7.5 + parent: 2 - proto: DisposalPipeBroken entities: - uid: 24197 @@ -172876,6 +172998,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 53899 + - uid: 55272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,7.5 + parent: 2 - proto: DisposalUnit entities: - uid: 1864 @@ -173358,6 +173486,11 @@ entities: - type: Transform pos: 0.5,-4.5 parent: 53899 + - uid: 55529 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 - proto: DisposalYJunction entities: - uid: 19686 @@ -178920,28 +179053,33 @@ entities: - type: Transform pos: 32.5,-27.5 parent: 2 - - uid: 4185 + - uid: 6209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 6466 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-15.5 + pos: 42.5,-12.5 parent: 2 - - uid: 5014 + - uid: 7642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,3.5 + pos: -32.5,-34.5 parent: 2 - uid: 7793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-22.5 + pos: -0.5,-42.5 parent: 2 - uid: 8451 components: - type: Transform - pos: 61.5,-40.5 + pos: 72.5,-20.5 parent: 2 - uid: 8615 components: @@ -178951,7 +179089,8 @@ entities: - uid: 8647 components: - type: Transform - pos: 49.5,-31.5 + rot: -1.5707963267948966 rad + pos: 85.5,-65.5 parent: 2 - uid: 8988 components: @@ -178964,16 +179103,11 @@ entities: - type: Transform pos: 61.5,-45.5 parent: 2 - - uid: 9280 - components: - - type: Transform - pos: 58.5,-62.5 - parent: 2 - uid: 9429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-20.5 + rot: 1.5707963267948966 rad + pos: -74.5,-13.5 parent: 2 - uid: 9460 components: @@ -178983,8 +179117,8 @@ entities: - uid: 9867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,21.5 + rot: 3.141592653589793 rad + pos: -52.5,-62.5 parent: 2 - uid: 12030 components: @@ -178999,27 +179133,30 @@ entities: - uid: 18263 components: - type: Transform - pos: -43.5,-65.5 + rot: 1.5707963267948966 rad + pos: -33.5,-71.5 parent: 2 - uid: 18569 components: - type: Transform - pos: -55.5,-76.5 + rot: 1.5707963267948966 rad + pos: -61.5,-66.5 parent: 2 - uid: 18571 components: - type: Transform - pos: -61.5,-66.5 + rot: 3.141592653589793 rad + pos: -55.5,-76.5 parent: 2 - uid: 18572 components: - type: Transform pos: -46.5,-62.5 parent: 2 - - uid: 18578 + - uid: 19275 components: - type: Transform - pos: -52.5,-62.5 + pos: -78.5,-11.5 parent: 2 - uid: 19375 components: @@ -179032,20 +179169,34 @@ entities: - type: Transform pos: 37.5,41.5 parent: 2 + - uid: 20539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-28.5 + parent: 2 - uid: 20996 components: - type: Transform - pos: 85.5,-65.5 + rot: -1.5707963267948966 rad + pos: 42.5,22.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + pos: -49.5,56.5 parent: 2 - uid: 22238 components: - type: Transform - pos: -74.5,-17.5 + rot: -1.5707963267948966 rad + pos: -98.5,66.5 parent: 2 - uid: 22240 components: - type: Transform - pos: -74.5,-13.5 + rot: 1.5707963267948966 rad + pos: 58.5,-62.5 parent: 2 - uid: 22265 components: @@ -179055,7 +179206,7 @@ entities: - uid: 22266 components: - type: Transform - pos: -41.5,-12.5 + pos: 44.5,-56.5 parent: 2 - uid: 22277 components: @@ -179065,7 +179216,13 @@ entities: - uid: 22278 components: - type: Transform - pos: -72.5,-28.5 + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + pos: -4.5,52.5 parent: 2 - uid: 22629 components: @@ -179075,20 +179232,19 @@ entities: - uid: 23237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,35.5 + rot: -1.5707963267948966 rad + pos: -37.5,3.5 parent: 2 - uid: 23271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,52.5 + pos: -6.5,-23.5 parent: 2 - uid: 23291 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,56.5 + pos: 26.5,-32.5 parent: 2 - uid: 23389 components: @@ -179099,19 +179255,14 @@ entities: - uid: 23400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-56.5 - parent: 2 - - uid: 23405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-62.5 + rot: 1.5707963267948966 rad + pos: 24.5,-52.5 parent: 2 - uid: 23556 components: - type: Transform - pos: -37.5,3.5 + rot: 1.5707963267948966 rad + pos: 8.5,-61.5 parent: 2 - uid: 23559 components: @@ -179127,8 +179278,8 @@ entities: - uid: 23648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 + rot: 1.5707963267948966 rad + pos: -21.5,-56.5 parent: 2 - uid: 23663 components: @@ -179149,13 +179300,31 @@ entities: - uid: 26434 components: - type: Transform - pos: -43.5,25.5 + rot: 1.5707963267948966 rad + pos: 4.5,-59.5 + parent: 2 + - uid: 27709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-62.5 parent: 2 - uid: 28900 components: - type: Transform pos: -74.5,-65.5 parent: 2 + - uid: 29520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-56.5 + parent: 2 + - uid: 29522 + components: + - type: Transform + pos: 76.5,3.5 + parent: 2 - uid: 29727 components: - type: Transform @@ -179166,17 +179335,48 @@ entities: - type: Transform pos: 70.5,-17.5 parent: 2 - - uid: 45869 + - uid: 33475 components: - type: Transform rot: -1.5707963267948966 rad + pos: 49.5,-33.5 + parent: 2 + - uid: 43160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-20.5 + parent: 2 + - uid: 43162 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 43163 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 43173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-62.5 + parent: 2 + - uid: 45869 + components: + - type: Transform pos: -6.5,-32.5 parent: 2 - uid: 45921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-23.5 + pos: -19.5,-68.5 + parent: 2 + - uid: 45939 + components: + - type: Transform + pos: -46.5,21.5 parent: 2 - uid: 45953 components: @@ -179186,14 +179386,14 @@ entities: - uid: 46130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-52.5 + rot: 1.5707963267948966 rad + pos: 64.5,7.5 parent: 2 - uid: 46138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-56.5 + rot: 3.141592653589793 rad + pos: 35.5,56.5 parent: 2 - uid: 46176 components: @@ -179204,8 +179404,8 @@ entities: - uid: 46187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-62.5 + rot: 3.141592653589793 rad + pos: -5.5,8.5 parent: 2 - uid: 46190 components: @@ -179219,12 +179419,6 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-51.5 parent: 2 - - uid: 46314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-56.5 - parent: 2 - uid: 46315 components: - type: Transform @@ -179234,14 +179428,8 @@ entities: - uid: 46320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-54.5 - parent: 2 - - uid: 46321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-61.5 + rot: 1.5707963267948966 rad + pos: -43.5,-65.5 parent: 2 - uid: 46343 components: @@ -179254,23 +179442,12 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-59.5 parent: 2 - - uid: 46391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-42.5 - parent: 2 - uid: 46425 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-39.5 parent: 2 - - uid: 47091 - components: - - type: Transform - pos: 64.5,7.5 - parent: 2 - uid: 47100 components: - type: Transform @@ -179281,56 +179458,27 @@ entities: - type: Transform pos: 31.5,-23.5 parent: 2 - - uid: 47125 - components: - - type: Transform - pos: 52.5,-20.5 - parent: 2 - uid: 47147 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 47171 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - uid: 47229 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-29.5 parent: 2 - - uid: 47231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-23.5 - parent: 2 - - uid: 47276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-71.5 - parent: 2 - uid: 47278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-68.5 + pos: -30.5,-22.5 parent: 2 - uid: 47280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 2 - - uid: 47286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-63.5 + rot: 1.5707963267948966 rad + pos: 61.5,-40.5 parent: 2 - uid: 47288 components: @@ -179360,25 +179508,22 @@ entities: - type: Transform pos: -78.5,11.5 parent: 2 - - uid: 52447 - components: - - type: Transform - pos: -5.5,8.5 - parent: 2 - - uid: 52448 + - uid: 55548 components: - type: Transform - pos: -1.5,-2.5 + rot: -1.5707963267948966 rad + pos: 2.5,35.5 parent: 2 - - uid: 71346 + - uid: 55549 components: - type: Transform - pos: 32.5,56.5 + rot: 1.5707963267948966 rad + pos: -52.5,32.5 parent: 2 - - uid: 71348 + - uid: 55550 components: - type: Transform - pos: 42.5,22.5 + pos: 47.5,2.5 parent: 2 - uid: 71349 components: @@ -179387,14 +179532,19 @@ entities: parent: 2 - proto: ExtinguisherCabinetFilledOpen entities: - - uid: 45939 + - uid: 10889 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: -68.5,-80.5 parent: 2 - proto: ExtinguisherCabinetOpen entities: + - uid: 23405 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 - uid: 25182 components: - type: Transform @@ -179405,12 +179555,6 @@ entities: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 46386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-58.5 - parent: 2 - proto: FaxMachineBase entities: - uid: 3285 @@ -181463,7 +181607,6 @@ entities: - 47738 - 47498 - 36110 - - 43173 - 43159 - 50760 - uid: 51978 @@ -191711,6 +191854,36 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 55539 + components: + - type: Transform + pos: 40.5,-59.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 55540 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 55541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-65.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 55551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 84.5,-23.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 67469 components: - type: Transform @@ -199349,6 +199522,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 47091 + components: + - type: Transform + pos: 84.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 47102 components: - type: Transform @@ -204074,14 +204254,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 43161 components: - type: Transform @@ -204090,22 +204262,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 43163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 43164 components: - type: Transform @@ -210707,6 +210863,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 46386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 46394 components: - type: Transform @@ -231361,6 +231525,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 55546 + components: + - type: Transform + pos: -51.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55552 + components: + - type: Transform + pos: -51.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55553 + components: + - type: Transform + pos: -51.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 55554 + components: + - type: Transform + pos: -57.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 56196 components: - type: Transform @@ -234571,6 +234763,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 46321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 46323 components: - type: Transform @@ -234632,6 +234832,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 46391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 46392 components: - type: Transform @@ -236648,14 +236856,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 55119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 55401 components: - type: Transform @@ -240803,6 +241003,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 18578 + components: + - type: Transform + pos: -51.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50759 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 19261 components: - type: Transform @@ -240890,17 +241100,6 @@ entities: - 51976 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 43173 - components: - - type: Transform - pos: -57.5,48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50759 - - 51977 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 43320 components: - type: Transform @@ -241481,6 +241680,16 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 47125 + components: + - type: Transform + pos: -57.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50759 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 47168 components: - type: Transform @@ -241578,6 +241787,17 @@ entities: - 50875 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 47231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 51284 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 47270 components: - type: Transform @@ -243777,21 +243997,6 @@ entities: - 50568 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 55108 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: 84.5,-22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51284 - - type: AtmosPipeColor - color: '#FF0000FF' - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 55109 components: - type: Transform @@ -243852,6 +244057,16 @@ entities: - 50346 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 55547 + components: + - type: Transform + pos: -54.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50759 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 56265 components: - type: Transform @@ -258222,6 +258437,8 @@ entities: - type: Transform pos: -0.5,4.5 parent: 55142 + - type: Thruster + thrust: 500 - uid: 56293 components: - type: Transform @@ -260839,6 +261056,11 @@ entities: rot: -1.5707963267948966 rad pos: 9.5109825,34.704643 parent: 2 + - uid: 55530 + components: + - type: Transform + pos: -44.508698,6.8135505 + parent: 2 - proto: LightTubeBroken entities: - uid: 15014 @@ -263929,7 +264151,7 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 -- proto: LogicGate +- proto: LogicGateOr entities: - uid: 54400 components: @@ -266821,10 +267043,22 @@ entities: parent: 2 - proto: MousetrapArmed entities: - - uid: 6466 + - uid: 55543 components: - type: Transform - pos: -101.008545,-0.5724379 + rot: 3.141592653589793 rad + pos: -100.959,-0.35075593 + parent: 2 + - uid: 55544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.49817,-0.64808035 + parent: 2 + - uid: 55545 + components: + - type: Transform + pos: -99.97787,-0.32102334 parent: 2 - proto: Multitool entities: @@ -272514,13 +272748,12 @@ entities: - type: InsideEntityStorage - proto: PlushieArachind entities: - - uid: 52435 + - uid: 9280 components: - type: MetaData - desc: Работа? А может лучше похлюпать в дормах? name: Ko4erga - type: Transform - pos: 6.4655232,-83.21667 + pos: 6.4406767,-83.01411 parent: 2 - proto: PlushieAtmosian entities: @@ -273885,6 +274118,13 @@ entities: - type: Transform pos: 32.5,53.5 parent: 2 +- proto: PosterLegitCleanliness + entities: + - uid: 55108 + components: + - type: Transform + pos: -74.5,-17.5 + parent: 2 - proto: PosterLegitDoNotQuestion entities: - uid: 11029 @@ -274085,11 +274325,6 @@ entities: - type: Transform pos: -41.5,75.5 parent: 2 - - uid: 7642 - components: - - type: Transform - pos: -49.5,-19.5 - parent: 2 - uid: 8077 components: - type: Transform @@ -274106,11 +274341,6 @@ entities: - type: Transform pos: -17.5,53.5 parent: 2 - - uid: 20539 - components: - - type: Transform - pos: 82.5,-53.5 - parent: 2 - proto: PosterLegitPDAAd entities: - uid: 11031 @@ -275992,6 +276222,11 @@ entities: - type: Transform pos: -85.5,68.5 parent: 2 + - uid: 55119 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 - uid: 56311 components: - type: Transform @@ -281309,19 +281544,6 @@ entities: - type: Transform pos: 0.5,-5.5 parent: 54730 -- proto: PoweredlightCyan - entities: - - uid: 27709 - components: - - type: Transform - pos: 21.5,-74.5 - parent: 2 - - uid: 29520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-79.5 - parent: 2 - proto: PoweredlightEmpty entities: - uid: 14458 @@ -281576,6 +281798,33 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,63.5 parent: 2 + - uid: 47286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-79.5 + parent: 2 + - type: RgbLightController + - uid: 52435 + components: + - type: Transform + pos: 21.5,-74.5 + parent: 2 + - type: RgbLightController + - uid: 52447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-75.5 + parent: 2 + - type: RgbLightController + - uid: 52448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-82.5 + parent: 2 + - type: RgbLightController - proto: PoweredlightOrange entities: - uid: 7947 @@ -282056,18 +282305,6 @@ entities: - type: Transform pos: -15.5,61.5 parent: 2 - - uid: 22112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-75.5 - parent: 2 - - uid: 29522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-82.5 - parent: 2 - uid: 30479 components: - type: Transform @@ -289920,6 +290157,12 @@ entities: - type: Transform pos: 60.5,-71.5 parent: 2 + - uid: 47171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,-22.5 + parent: 2 - uid: 52398 components: - type: Transform @@ -302176,6 +302419,11 @@ entities: - type: Transform pos: -26.69119,-16.451828 parent: 2 + - uid: 55262 + components: + - type: Transform + pos: 83.671486,-23.502651 + parent: 2 - proto: ShardGlassPlasma entities: - uid: 11351 @@ -306366,7 +306614,7 @@ entities: - type: Transform pos: 3.5,-8.5 parent: 53899 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 52023 components: @@ -306470,25 +306718,21 @@ entities: - type: Transform pos: 8.5,-52.5 parent: 2 - - uid: 54464 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 53899 -- proto: SignChemistry1 - entities: - uid: 13454 components: - type: Transform pos: 8.5,-41.5 parent: 2 -- proto: SignChemistry2 - entities: - uid: 13663 components: - type: Transform pos: 15.5,-44.5 parent: 2 + - uid: 54464 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 53899 - proto: SignCloning entities: - uid: 2668 @@ -306503,13 +306747,6 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 2 -- proto: SignCourt - entities: - - uid: 52057 - components: - - type: Transform - pos: 7.5,43.5 - parent: 2 - proto: SignCryogenicsMed entities: - uid: 20344 @@ -307175,19 +307412,6 @@ entities: - type: Transform pos: 81.5,-24.5 parent: 2 -- proto: SignDrones - entities: - - uid: 21244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-15.5 - parent: 2 - - uid: 30106 - components: - - type: Transform - pos: -82.5,68.5 - parent: 2 - proto: SignElectrical entities: - uid: 16980 @@ -307442,28 +307666,24 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-48.5 parent: 2 - - uid: 52359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,52.5 - parent: 2 -- proto: SignHydro2 - entities: - uid: 13350 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-48.5 parent: 2 -- proto: SignHydro3 - entities: - uid: 13351 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-48.5 parent: 2 + - uid: 52359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,52.5 + parent: 2 - uid: 52360 components: - type: Transform @@ -307531,6 +307751,11 @@ entities: - type: Transform pos: 1.5,52.5 parent: 2 + - uid: 52057 + components: + - type: Transform + pos: 7.5,43.5 + parent: 2 - proto: SignLibrary entities: - uid: 11343 @@ -307538,6 +307763,19 @@ entities: - type: Transform pos: -10.5,29.5 parent: 2 +- proto: SignMaterials + entities: + - uid: 21244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-15.5 + parent: 2 + - uid: 30106 + components: + - type: Transform + pos: -82.5,68.5 + parent: 2 - proto: SignMedical entities: - uid: 18869 @@ -308014,8 +308252,6 @@ entities: - type: Transform pos: 38.5,-14.5 parent: 2 -- proto: SignScience2 - entities: - uid: 4009 components: - type: Transform @@ -308359,7 +308595,7 @@ entities: - type: Transform pos: -41.5,11.5 parent: 2 -- proto: SignToxins2 +- proto: SignToxins entities: - uid: 26370 components: @@ -308385,8 +308621,6 @@ entities: - type: Transform pos: 47.5,-35.5 parent: 2 -- proto: SignXenolab - entities: - uid: 7796 components: - type: Transform @@ -308711,6 +308945,12 @@ entities: - type: Transform pos: 26.5,-74.5 parent: 2 + - uid: 55542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-61.5 + parent: 2 - uid: 67874 components: - type: Transform @@ -328330,14 +328570,14 @@ entities: pos: -1.5,6.5 parent: 55142 - type: Thruster - thrust: 1000 + thrust: 250 - uid: 55251 components: - type: Transform pos: 2.5,6.5 parent: 55142 - type: Thruster - thrust: 1000 + thrust: 250 - uid: 55252 components: - type: Transform @@ -328345,7 +328585,7 @@ entities: pos: 2.5,2.5 parent: 55142 - type: Thruster - thrust: 1000 + thrust: 250 - uid: 55253 components: - type: Transform @@ -328353,7 +328593,7 @@ entities: pos: -1.5,2.5 parent: 55142 - type: Thruster - thrust: 1000 + thrust: 250 - uid: 55254 components: - type: Transform @@ -328361,7 +328601,7 @@ entities: pos: -1.5,-4.5 parent: 55142 - type: Thruster - thrust: 1000 + thrust: 250 - uid: 55255 components: - type: Transform @@ -328369,7 +328609,7 @@ entities: pos: 2.5,-4.5 parent: 55142 - type: Thruster - thrust: 1000 + thrust: 250 - uid: 55979 components: - type: Transform @@ -331199,6 +331439,8 @@ entities: - type: Transform pos: 29.5,-74.5 parent: 2 + missingComponents: + - AccessReader - proto: VendingMachineCargoDrobe entities: - uid: 29777 @@ -332861,17 +333103,16 @@ entities: - type: Transform pos: -53.5,29.5 parent: 2 - - uid: 22602 + - uid: 19276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-37.5 + pos: -63.5,-13.5 parent: 2 - - uid: 22603 + - uid: 22602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-13.5 + rot: 1.5707963267948966 rad + pos: -39.5,-37.5 parent: 2 - uid: 24458 components: @@ -370865,6 +371106,34 @@ entities: - type: Transform pos: -0.5,3.5 parent: 55142 + - uid: 55556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 55142 + - uid: 55557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 55142 + - uid: 55558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 55142 + - type: Occluder + enabled: False + - uid: 55559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 55142 + - type: Occluder + enabled: False - uid: 55981 components: - type: Transform @@ -371487,23 +371756,12 @@ entities: - type: Transform pos: 5.5,2.5 parent: 54730 - - uid: 55262 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 55142 - uid: 55263 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 55142 - - uid: 55264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 55142 - uid: 55265 components: - type: Transform @@ -371544,24 +371802,6 @@ entities: - type: Transform pos: -1.5,5.5 parent: 55142 - - uid: 55272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 55142 - - uid: 55273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 55142 - - uid: 55274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 55142 - uid: 55275 components: - type: Transform @@ -390407,11 +390647,6 @@ entities: - type: Transform pos: 10.314877,24.600113 parent: 2 - - uid: 10889 - components: - - type: Transform - pos: -44.588474,3.6237416 - parent: 2 - uid: 20120 components: - type: Transform @@ -390436,6 +390671,11 @@ entities: rot: 3.141592653589793 rad pos: 35.691612,50.378666 parent: 2 + - uid: 55555 + components: + - type: Transform + pos: -42.757492,11.579634 + parent: 2 - proto: WelderIndustrialAdvanced entities: - uid: 9313 @@ -391837,7 +392077,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -129847.55 + secondsUntilStateChange: -134317.98 state: Opening - uid: 21930 components: @@ -394792,18 +395032,6 @@ entities: rot: 1.5707963267948966 rad pos: 83.5,-21.5 parent: 2 - - uid: 6208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-22.5 - parent: 2 - - uid: 6209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-23.5 - parent: 2 - uid: 6210 components: - type: Transform @@ -396187,6 +396415,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-13.5 parent: 2 + - uid: 55264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,-22.5 + parent: 2 - proto: WindowFrostedDirectional entities: - uid: 4546 diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml index f83e3fe985e..2d0bd062da9 100644 --- a/Resources/Maps/corvax_delta.yml +++ b/Resources/Maps/corvax_delta.yml @@ -694,42 +694,42 @@ entities: color: '#DE3A3A96' id: 1 decals: - 792: 59,19 + 687: 59,19 - node: color: '#DE3A3A96' id: 2 decals: - 793: 60,19 + 688: 60,19 - node: color: '#DE3A3A96' id: 3 decals: - 794: 61,19 + 689: 61,19 - node: color: '#DE3A3A96' id: 4 decals: - 795: 62,19 + 690: 62,19 - node: color: '#DE3A3A96' id: 5 decals: - 796: 63,19 + 691: 63,19 - node: color: '#DE3A3A96' id: 6 decals: - 797: 64,19 + 692: 64,19 - node: color: '#DE3A3A96' id: 7 decals: - 798: 65,19 + 693: 65,19 - node: color: '#DE3A3A96' id: 8 decals: - 799: 66,19 + 694: 66,19 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -740,8 +740,8 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 15739: 88,3 - 21247: -16.954817,20.099903 + 14788: 88,3 + 20253: -16.954817,20.099903 - node: color: '#FFFFFFFF' id: Bot @@ -778,66 +778,66 @@ entities: 56: 10,50 57: 10,49 93: -41,-38 - 126: -74,12 - 137: -27,15 - 138: -24,15 - 141: -37,14 - 142: -37,13 - 143: -35,14 - 144: -35,13 - 145: -35,11 - 146: -35,10 - 147: -37,10 - 148: -37,11 - 150: -36,23 - 165: 31,60 - 699: -41,-36 - 744: 63,13 - 745: 62,13 - 959: 29,32 - 982: -31,-54 - 1057: -32,-40 - 1058: -32,-47 - 1139: -95,-6 - 1140: -91,-6 - 1141: -91,-10 - 1142: -95,-10 - 1217: 61,9 - 1218: 61,8 - 1219: 61,7 - 1220: 63,7 - 1221: 63,8 - 1222: 63,9 - 6973: 4,29 - 6974: 5,29 - 6975: 6,29 - 6976: 7,29 - 6977: 8,29 - 6978: 8,28 - 6979: 7,28 - 6980: 7,28 - 6981: 6,28 - 6982: 5,28 - 6983: 4,28 - 18466: 12,-13 - 18467: 13,-13 - 18468: 14,-13 - 18469: 14,-14 - 18470: 13,-14 - 18471: 12,-14 + 109: -74,12 + 120: -27,15 + 121: -24,15 + 124: -37,14 + 125: -37,13 + 126: -35,14 + 127: -35,13 + 128: -35,11 + 129: -35,10 + 130: -37,10 + 131: -37,11 + 133: -36,23 + 148: 31,60 + 594: -41,-36 + 639: 63,13 + 640: 62,13 + 846: 29,32 + 865: -31,-54 + 939: -32,-40 + 940: -32,-47 + 1021: -95,-6 + 1022: -91,-6 + 1023: -91,-10 + 1024: -95,-10 + 1099: 61,9 + 1100: 61,8 + 1101: 61,7 + 1102: 63,7 + 1103: 63,8 + 1104: 63,9 + 6821: 4,29 + 6822: 5,29 + 6823: 6,29 + 6824: 7,29 + 6825: 8,29 + 6826: 8,28 + 6827: 7,28 + 6828: 7,28 + 6829: 6,28 + 6830: 5,28 + 6831: 4,28 + 17515: 12,-13 + 17516: 13,-13 + 17517: 14,-13 + 17518: 14,-14 + 17519: 13,-14 + 17520: 12,-14 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 625: -121,17 - 626: -123,17 - 933: 33,36 - 934: 34,36 - 935: 34,35 - 936: 33,35 - 937: 33,34 - 938: 34,34 + 520: -121,17 + 521: -123,17 + 820: 33,36 + 821: 34,36 + 822: 34,35 + 823: 33,35 + 824: 33,34 + 825: 34,34 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -852,19286 +852,19305 @@ entities: 90: -12,-31 91: -12,-32 92: -14,-31 - 156: -44,40 - 157: -44,41 + 139: -44,40 + 140: -44,41 - node: color: '#0096FFFF' id: BotGreyscale decals: - 1207: 59,7 - 1208: 59,8 - 1209: 59,9 - 1210: 57,9 - 1211: 57,8 - 1212: 57,7 + 1089: 59,7 + 1090: 59,8 + 1091: 59,9 + 1092: 57,9 + 1093: 57,8 + 1094: 57,7 - node: color: '#439909FF' id: BotGreyscale decals: - 24627: 27,-62 - 24628: 28,-62 + 23626: 27,-62 + 23627: 28,-62 - node: color: '#FF0000FF' id: BotGreyscale decals: - 1229: 65,7 - 1230: 65,8 - 1231: 65,9 - 1232: 67,9 - 1233: 67,8 - 1234: 67,7 - 1235: 68,8 - 1236: 68,10 - 1237: 69,10 - 1238: 70,10 - 1239: 70,8 + 1111: 65,7 + 1112: 65,8 + 1113: 65,9 + 1114: 67,9 + 1115: 67,8 + 1116: 67,7 + 1117: 68,8 + 1118: 68,10 + 1119: 69,10 + 1120: 70,10 + 1121: 70,8 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 1143: -95,-3 - 1144: -91,-3 - 1145: -91,-13 - 1146: -95,-13 - 19918: -16,4 - 19919: -16,3 - 19920: -16,2 - 19921: -16,1 - 19922: -16,0 - 19923: -16,-1 + 1025: -95,-3 + 1026: -91,-3 + 1027: -91,-13 + 1028: -95,-13 + 18924: -16,4 + 18925: -16,3 + 18926: -16,2 + 18927: -16,1 + 18928: -16,0 + 18929: -16,-1 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: BotGreyscale decals: - 131: -72,7 - 132: -72,5 - 133: -72,6 - 134: -71,6 - 135: -73,6 + 114: -72,7 + 115: -72,5 + 116: -72,6 + 117: -71,6 + 118: -73,6 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 127: -71,7 + 110: -71,7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 128: -73,7 + 111: -73,7 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 129: -73,5 + 112: -73,5 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 130: -71,5 + 113: -71,5 - node: color: '#FFFFFFFF' id: BotRight decals: - 553: -50,25 - 554: -49,25 - 555: -48,25 - 556: -47,25 - 892: -47,24 - 893: -48,24 - 894: -49,24 - 895: -50,24 + 448: -50,25 + 449: -49,25 + 450: -48,25 + 451: -47,25 + 779: -47,24 + 780: -48,24 + 781: -49,24 + 782: -50,24 - node: color: '#A9DA8BFF' id: Box decals: - 3010: -31,45 - 3011: -31,38 + 2887: -31,45 + 2888: -31,38 - node: color: '#FFFFFFFF' id: Box decals: - 548: -93,-8 - 700: 20,-53 - 736: 64,13 - 737: 65,13 - 738: 66,13 - 739: 66,11 - 740: 65,11 - 741: 64,11 - 748: 78,23 - 749: 77,23 - 980: -30,-53 - 981: -31,-53 - 983: -31,-52 - 1050: -35,-44 - 1051: -35,-46 - 1052: -35,-41 - 1053: -35,-39 + 443: -93,-8 + 595: 20,-53 + 631: 64,13 + 632: 65,13 + 633: 66,13 + 634: 66,11 + 635: 65,11 + 636: 64,11 + 643: 78,23 + 644: 77,23 + 863: -30,-53 + 864: -31,-53 + 866: -31,-52 + 932: -35,-44 + 933: -35,-46 + 934: -35,-41 + 935: -35,-39 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 948: 29,28 - 949: 29,27 - 950: 29,26 + 835: 29,28 + 836: 29,27 + 837: 29,26 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 19937: -16,3 - 19938: -16,2 - 19939: -16,1 - 19940: -16,0 - 19941: -16,-1 - 19942: -16,4 + 18943: -16,3 + 18944: -16,2 + 18945: -16,1 + 18946: -16,0 + 18947: -16,-1 + 18948: -16,4 - node: color: '#DA8B8BFF' id: BrickTileDarkBox decals: - 19239: 55,9 + 18283: 55,9 - node: color: '#EFB341FF' id: BrickTileDarkBox decals: - 17750: -61,57 - 17751: -63,53 - 17752: -61,50 - 17753: -61,48 - 17754: -59,55 - 17755: -54,43 - 17756: -56,43 - 17757: -51,41 - 17758: -55,39 - 17759: -48,43 - 17760: -46,41 + 16799: -61,57 + 16800: -63,53 + 16801: -61,50 + 16802: -61,48 + 16803: -59,55 + 16804: -54,43 + 16805: -56,43 + 16806: -51,41 + 16807: -55,39 + 16808: -48,43 + 16809: -46,41 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1970: -8,30 - 1971: -8,33 - 1972: -4,30 - 1973: -8,27 - 1990: -9,25 - 2248: -14,48 - 2249: -14,50 - 2271: -25,41 - 2324: -28,30 - 2387: -31,29 - 2408: -30,39 - 2512: -9,45 - 2602: -5,37 - 2603: -1,42 - 2605: -1,40 - 2635: -1,55 - 2636: -2,51 - 2692: 3,49 - 2694: -12,51 - 2710: -6,51 - 2765: -1,48 - 2787: -4,47 - 2833: -30,44 - 2834: -32,44 - 2984: -36,49 - 2985: -38,44 - 3432: -1,61 - 3435: 2,59 - 3561: -14,77 - 3562: -16,77 - 3563: -10,77 - 3564: -8,77 - 3640: 4,77 - 3641: 2,77 - 3642: 4,84 - 3643: 2,84 - 3644: 6,86 - 3680: 6,66 - 3686: 4,64 - 3689: 4,60 - 3692: 5,91 - 3705: 10,83 - 3706: 13,78 - 3707: 12,73 - 3712: 10,89 - 3713: 12,87 - 3717: 5,93 - 3718: 10,91 - 3722: -22,55 - 3724: -25,66 - 3726: -25,63 - 3727: -25,61 - 3728: -25,59 - 3729: -28,59 - 3730: -30,66 - 3772: 4,57 - 3819: 9,68 - 3823: 13,67 - 3890: 24,66 - 3891: 16,66 - 3920: 7,58 - 3964: -31,59 - 3965: -38,58 - 3966: -38,58 - 3967: -38,58 - 3968: -36,58 - 4121: -21,20 - 4159: -25,18 - 4160: -21,20 - 4161: -21,17 - 4196: -10,12 - 4381: 1,29 - 4384: 4,32 - 4385: 9,32 - 4386: 11,28 - 4387: 11,30 - 4388: 13,33 - 4475: 15,33 - 4511: 10,38 - 4512: 5,38 - 4513: 10,41 - 4588: 12,45 - 4589: 12,43 - 4652: 19,24 - 4653: 21,25 - 4662: 28,31 - 4663: 23,36 - 4789: 28,39 - 4859: 33,51 - 4860: 33,49 - 4861: 39,51 - 4899: 10,55 - 4900: 17,55 - 5060: 39,52 - 5061: 39,48 - 5062: 33,48 - 5063: 33,52 - 5064: 39,49 - 5089: 31,29 - 5090: 35,29 - 5091: 37,30 - 5092: 35,33 - 5523: -17,4 - 5524: -17,-1 - 5580: -35,26 - 5629: -1,-7 - 5630: 8,-7 - 5638: 15,-4 - 5641: -11,6 - 5642: -15,4 - 5643: -14,-5 - 5652: 8,12 - 5683: 13,3 - 5698: 8,4 - 5711: 10,-1 - 5770: 12,-3 - 5799: -10,-7 - 6239: -4,-13 - 6240: 2,-13 - 6241: -4,-18 - 6242: -3,-16 - 6347: 8,-18 - 6348: 11,-16 - 6437: -21,-20 - 6539: -24,-10 - 6680: -31,1 - 6692: -24,-1 - 6693: -23,3 - 6701: -28,-17 - 6767: -17,-1 - 6769: -31,7 - 6770: -36,7 - 6775: -26,16 - 6799: -42,2 - 6891: -36,17 - 6944: -24,-19 - 6945: -24,-19 - 7047: 22,7 - 7066: 22,3 - 7067: 19,-3 - 7068: 22,-9 - 7115: 24,-8 - 7166: 32,1 - 7167: 35,3 - 7168: 36,-3 - 7169: 24,-2 - 7172: 30,3 - 7278: 29,7 - 7339: 33,6 - 7340: 33,4 - 7341: 36,7 - 7342: 36,10 - 7343: 38,6 - 7344: 38,4 - 7365: 45,8 - 7366: 40,10 - 7367: 45,12 - 7368: 40,2 - 7369: 45,0 - 7370: 36,10 - 7465: 49,4 - 7468: 49,8 - 7471: 53,10 - 7483: 47,14 - 7484: 51,14 - 7496: 49,16 - 7509: 37,20 - 7510: 44,20 - 7511: 52,20 - 7512: 57,20 - 7513: 55,17 - 7514: 60,25 - 7545: 49,12 - 7551: 75,24 - 7552: 75,26 - 7553: 73,20 - 7554: 71,18 - 7555: 71,13 - 7556: 71,6 - 7557: 73,4 - 7558: 75,9 - 7559: 79,9 - 7560: 83,11 - 7561: 94,17 - 7562: 94,21 - 7563: 90,21 - 7564: 92,27 - 7565: 92,24 - 7566: 83,11 - 7567: 73,4 - 7568: 72,-4 - 7569: 72,-4 - 7570: 69,-2 - 7571: 69,-2 - 7572: 64,-4 - 7573: 64,-4 - 7574: 61,-2 - 7575: 65,-2 - 7576: 52,-2 - 7577: 47,-2 - 7578: 47,-2 - 7613: 58,2 - 7614: 62,2 - 7615: 66,2 - 7616: 62,10 - 7617: 61,12 - 7618: 71,6 - 7637: 71,18 - 7638: 71,13 - 7643: 73,20 - 7763: 68,-1 - 7764: 68,1 - 7765: 71,-1 - 7766: 71,1 - 7948: 64,-19 - 7949: 66,-19 - 7950: 66,-22 - 7951: 64,-22 - 7952: 76,-22 - 7953: 76,-19 - 7954: 78,-19 - 7955: 78,-22 - 7956: 82,-22 - 7957: 82,-19 - 8006: 54,-21 - 8007: 54,-19 - 8008: 54,-11 - 8073: 23,-15 - 8074: 25,-13 - 8075: 32,-16 - 8076: 27,-17 - 8077: 29,-17 - 8078: 31,-17 - 8133: 25,-19 - 8140: 32,-12 - 8141: 32,-10 - 8142: 32,-10 - 8201: 33,-6 - 8205: 42,-8 - 8206: 39,-18 - 8207: 41,-18 - 8208: 41,-18 - 8209: 42,-19 - 8210: 42,-21 - 8213: 44,-22 - 8214: 48,-22 - 8215: 52,-22 - 8266: 40,-17 - 8344: 46,-13 - 8385: 52,-18 - 8559: 54,-29 - 9512: 2,-35 - 9513: 5,-29 - 9514: 11,-29 - 9515: 15,-31 - 9578: 9,-36 - 9579: 9,-34 - 9580: 5,-37 - 9585: 1,-39 - 9658: 15,-35 - 9682: 21,-33 - 9683: 29,-33 - 9684: 36,-33 - 9685: 33,-23 - 9686: 29,-28 - 9687: 23,-29 - 9688: 29,-40 - 9689: 25,-44 - 9690: 29,-44 - 9691: 29,-50 - 9692: 19,-44 - 9693: 22,-50 - 9694: 17,-48 - 9697: 27,-54 - 9845: 15,-44 - 9887: 39,-35 - 9892: 37,-43 - 10020: 35,-26 - 10021: 37,-27 - 10022: 37,-25 - 10100: 31,-54 - 10239: 4,-42 - 10240: 1,-44 - 10241: 9,-42 - 10242: 4,-48 - 10243: 1,-51 - 10244: 10,-54 - 10245: 8,-56 - 10246: 2,-55 - 10247: 12,-56 - 10248: 10,-57 - 10249: 7,-57 - 10250: 13,-47 - 10251: 17,-54 - 10423: 25,-56 - 10424: 29,-56 - 10449: 2,-60 - 10450: 2,-60 - 10451: 5,-63 - 10452: 5,-63 - 10464: 5,-73 - 10465: 5,-73 - 10466: 7,-75 - 10467: 5,-79 - 10468: 4,-87 - 10469: 4,-83 - 10470: 7,-77 - 10471: 7,-65 - 10580: 76,-45 - 10581: 73,-41 - 10582: 68,-41 - 10583: 73,-48 - 10584: 71,-50 - 10829: 39,-72 - 10830: 41,-72 - 10831: 41,-72 - 11121: -61,-43 - 11122: -59,-33 - 11123: -59,-40 - 11124: -47,-46 - 11125: -47,-42 - 11237: -11,-83 - 11238: -11,-79 - 11239: -6,-83 - 11240: -4,-83 - 11241: -4,-83 - 11242: 2,-87 - 11243: -4,-87 - 11244: -6,-87 - 11248: 2,-83 - 11291: -24,-63 - 11292: -23,-71 - 11293: -23,-77 - 11294: -23,-79 - 11295: -21,-77 - 11296: -18,-78 - 11297: -12,-78 - 11298: -14,-77 - 11299: -19,-81 - 11300: -10,-63 - 11305: -34,-51 - 11306: -36,-53 - 11307: -34,-55 - 11308: -32,-53 - 11309: -3,-48 - 11317: -4,-35 - 11319: -6,-29 - 11323: -15,-29 - 11324: -13,-29 - 11559: -11,-35 - 11560: -11,-34 - 11561: -13,-33 - 11562: -15,-33 - 11612: -7,-37 - 11613: -6,-45 - 11614: -12,-50 - 11615: -20,-52 - 11616: -18,-51 - 11617: -6,-54 - 11618: -4,-56 - 11619: -16,-55 - 11624: -19,-45 - 11625: -19,-45 - 11626: -16,-40 - 11627: -34,-25 - 11628: -38,-25 - 11629: -42,-25 - 11631: -42,-31 - 11632: -38,-31 - 11633: -34,-31 - 11645: -46,-24 - 11646: -48,-23 - 11647: -48,-23 - 11648: -35,-37 - 11649: -35,-37 - 11650: -42,-37 - 11651: -42,-37 - 11652: -45,-35 - 11653: -29,-37 - 11654: -29,-37 - 11655: -31,-39 - 11656: -29,-43 - 11657: -29,-43 - 11658: -24,-37 - 11659: -12,-41 - 11735: -12,-59 - 11736: -24,-43 - 11737: -24,-49 - 11796: -36,-45 - 11797: -36,-40 - 11990: -25,-24 - 11991: -23,-23 - 11992: -21,-26 - 11993: -17,-24 - 11994: -21,-31 - 12283: -17,-64 - 12284: -4,-60 - 12618: -37,27 - 12660: -45,9 - 12662: -45,18 - 12776: -45,9 - 12778: -44,23 - 13212: 52,-37 - 13278: -37,-59 - 13279: -37,-64 - 13280: -35,-66 - 13281: -41,-64 - 13292: -30,-61 - 13487: -33,-72 - 14310: -46,12 - 14311: -46,14 - 15272: -49,9 - 15273: -48,7 - 15289: -42,2 - 15486: 75,1 - 15492: 92,8 - 15493: 94,10 - 15494: 78,3 - 15495: 81,-1 - 15496: 85,-1 - 15497: 89,-1 - 15503: 96,-3 - 15809: 94,13 - 16076: -61,-48 - 16600: -58,-11 - 16601: -56,-9 - 16602: -56,-7 - 16625: -58,-11 - 16631: -56,-19 - 16632: -54,-19 - 16635: -60,-17 - 16636: -62,-17 - 16682: -58,-5 - 16687: -48,1 - 16688: -49,3 - 16752: -56,-7 - 16753: -56,-9 - 16754: -62,-7 - 16844: -62,1 - 16845: -65,1 - 16905: -62,-7 - 16988: -51,-15 - 17019: -61,-18 - 17048: -60,14 - 17049: -67,15 - 17050: -72,13 - 17051: -72,9 - 17052: -79,14 - 17053: -77,8 - 17054: -83,14 - 17055: -77,2 - 17056: -75,0 - 17057: -73,3 - 17058: -65,1 - 17059: -71,-5 - 17060: -69,-5 - 17069: -60,14 - 17070: -58,16 - 17071: -67,15 - 17072: -72,13 - 17073: -77,12 - 17074: -79,14 - 17075: -77,8 - 17076: -72,9 - 17077: -73,3 - 17078: -77,2 - 17079: -75,0 - 17080: -80,0 - 17081: -80,-5 - 17082: -82,-3 - 17083: -62,-7 - 17084: -60,6 - 17085: -60,10 - 17086: -46,14 - 17087: -46,12 - 17161: -77,8 - 17162: -72,9 - 17163: -73,3 - 17164: -77,2 - 17165: -75,0 - 17166: -80,0 - 17359: 9,90 - 17360: 11,90 - 17749: -69,55 - 17761: -55,39 - 17762: -54,43 - 17763: -56,43 - 17764: -51,41 - 17765: -48,43 - 17766: -46,41 - 17767: -61,48 - 17768: -61,50 - 17769: -63,53 - 17770: -61,57 - 17771: -67,57 - 17772: -59,55 - 17773: -60,39 - 17774: -62,39 - 17775: -55,31 - 17776: -51,21 - 17976: -44,52 - 17977: -44,50 - 18010: -52,20 - 18400: -14,-11 - 18401: -10,-11 - 18437: 8,-11 - 18888: 57,3 - 18889: 59,3 - 18890: 61,3 - 18891: 63,3 - 18892: 65,3 - 18893: 67,3 - 18897: 57,6 - 18898: 59,6 - 18899: 61,6 - 18900: 63,6 - 18901: 65,6 - 18902: 67,6 - 18903: 68,7 - 18904: 70,7 - 18905: 70,8 - 18906: 68,8 - 19828: -48,-3 - 19913: -16,5 - 19914: -16,-2 - 19949: 37,39 - 19972: 71,26 - 20005: 62,27 - 20040: 40,-17 - 20041: 40,-17 - 21104: 75,-4 - 21134: 45,-8 - 21144: 51,-6 - 21163: 56,-2 - 21274: 21,23 - 24253: -29,-25 - 24259: -49,-28 - 24613: 33,-61 - 24614: 29,-61 - 24615: 27,-59 - 24616: 42,-62 - 24617: 37,-62 - 24618: 37,-70 - 24619: 40,-69 - 24620: 33,-68 - 24621: 41,-72 - 24622: 39,-72 + 1852: -8,30 + 1853: -8,33 + 1854: -4,30 + 1855: -8,27 + 1872: -9,25 + 2126: -14,48 + 2127: -14,50 + 2149: -25,41 + 2201: -28,30 + 2264: -31,29 + 2285: -30,39 + 2389: -9,45 + 2479: -5,37 + 2480: -1,42 + 2482: -1,40 + 2512: -1,55 + 2513: -2,51 + 2569: 3,49 + 2571: -12,51 + 2587: -6,51 + 2642: -1,48 + 2664: -4,47 + 2710: -30,44 + 2711: -32,44 + 2861: -36,49 + 2862: -38,44 + 3303: -1,61 + 3306: 2,59 + 3428: -14,77 + 3429: -16,77 + 3430: -10,77 + 3431: -8,77 + 3507: 4,77 + 3508: 2,77 + 3509: 4,84 + 3510: 2,84 + 3511: 6,86 + 3547: 6,66 + 3553: 4,64 + 3556: 4,60 + 3559: 5,91 + 3572: 10,83 + 3573: 13,78 + 3574: 12,73 + 3579: 10,89 + 3580: 12,87 + 3584: 5,93 + 3585: 10,91 + 3589: -22,55 + 3591: -25,66 + 3593: -25,63 + 3594: -25,61 + 3595: -25,59 + 3596: -28,59 + 3597: -30,66 + 3639: 4,57 + 3686: 9,68 + 3690: 13,67 + 3757: 24,66 + 3758: 16,66 + 3787: 7,58 + 3831: -31,59 + 3832: -38,58 + 3833: -38,58 + 3834: -38,58 + 3835: -36,58 + 3971: -21,20 + 4009: -25,18 + 4010: -21,20 + 4011: -21,17 + 4046: -10,12 + 4231: 1,29 + 4234: 4,32 + 4235: 9,32 + 4236: 11,28 + 4237: 11,30 + 4238: 13,33 + 4325: 15,33 + 4361: 10,38 + 4362: 5,38 + 4363: 10,41 + 4438: 12,45 + 4439: 12,43 + 4502: 19,24 + 4503: 21,25 + 4512: 28,31 + 4513: 23,36 + 4639: 28,39 + 4709: 33,51 + 4710: 33,49 + 4711: 39,51 + 4749: 10,55 + 4750: 17,55 + 4910: 39,52 + 4911: 39,48 + 4912: 33,48 + 4913: 33,52 + 4914: 39,49 + 4939: 31,29 + 4940: 35,29 + 4941: 37,30 + 4942: 35,33 + 5371: -17,4 + 5372: -17,-1 + 5428: -35,26 + 5477: -1,-7 + 5478: 8,-7 + 5486: 15,-4 + 5489: -11,6 + 5490: -15,4 + 5491: -14,-5 + 5500: 8,12 + 5531: 13,3 + 5546: 8,4 + 5559: 10,-1 + 5618: 12,-3 + 5647: -10,-7 + 6087: -4,-13 + 6088: 2,-13 + 6089: -4,-18 + 6090: -3,-16 + 6195: 8,-18 + 6196: 11,-16 + 6285: -21,-20 + 6387: -24,-10 + 6528: -31,1 + 6540: -24,-1 + 6541: -23,3 + 6549: -28,-17 + 6615: -17,-1 + 6617: -31,7 + 6618: -36,7 + 6623: -26,16 + 6647: -42,2 + 6739: -36,17 + 6792: -24,-19 + 6793: -24,-19 + 6895: 22,7 + 6914: 22,3 + 6915: 19,-3 + 6916: 22,-9 + 6963: 24,-8 + 7014: 32,1 + 7015: 35,3 + 7016: 36,-3 + 7017: 24,-2 + 7020: 30,3 + 7126: 29,7 + 7187: 33,6 + 7188: 33,4 + 7189: 36,7 + 7190: 36,10 + 7191: 38,6 + 7192: 38,4 + 7213: 45,8 + 7214: 40,10 + 7215: 45,12 + 7216: 40,2 + 7217: 45,0 + 7218: 36,10 + 7313: 49,4 + 7316: 49,8 + 7319: 53,10 + 7331: 47,14 + 7332: 51,14 + 7344: 49,16 + 7357: 37,20 + 7358: 44,20 + 7359: 52,20 + 7360: 57,20 + 7361: 55,17 + 7362: 60,25 + 7393: 49,12 + 7399: 75,24 + 7400: 75,26 + 7401: 73,20 + 7402: 71,18 + 7403: 71,13 + 7404: 71,6 + 7405: 73,4 + 7406: 75,9 + 7407: 79,9 + 7408: 83,11 + 7409: 94,17 + 7410: 94,21 + 7411: 90,21 + 7412: 92,27 + 7413: 92,24 + 7414: 83,11 + 7415: 73,4 + 7416: 72,-4 + 7417: 72,-4 + 7418: 69,-2 + 7419: 69,-2 + 7420: 64,-4 + 7421: 64,-4 + 7422: 61,-2 + 7423: 65,-2 + 7424: 52,-2 + 7425: 47,-2 + 7426: 47,-2 + 7461: 58,2 + 7462: 62,2 + 7463: 66,2 + 7464: 62,10 + 7465: 61,12 + 7466: 71,6 + 7485: 71,18 + 7486: 71,13 + 7491: 73,20 + 7611: 68,-1 + 7612: 68,1 + 7613: 71,-1 + 7614: 71,1 + 7796: 64,-19 + 7797: 66,-19 + 7798: 66,-22 + 7799: 64,-22 + 7800: 76,-22 + 7801: 76,-19 + 7802: 78,-19 + 7803: 78,-22 + 7804: 82,-22 + 7805: 82,-19 + 7854: 54,-21 + 7855: 54,-19 + 7856: 54,-11 + 7919: 23,-15 + 7920: 25,-13 + 7921: 32,-16 + 7922: 27,-17 + 7923: 29,-17 + 7924: 31,-17 + 7979: 25,-19 + 7986: 32,-12 + 7987: 32,-10 + 7988: 32,-10 + 8047: 33,-6 + 8051: 42,-8 + 8052: 39,-18 + 8053: 41,-18 + 8054: 41,-18 + 8055: 42,-19 + 8056: 42,-21 + 8059: 44,-22 + 8060: 48,-22 + 8061: 52,-22 + 8112: 40,-17 + 8190: 46,-13 + 8231: 52,-18 + 8401: 54,-29 + 9350: 2,-35 + 9351: 5,-29 + 9352: 11,-29 + 9353: 15,-31 + 9416: 9,-36 + 9417: 9,-34 + 9418: 5,-37 + 9423: 1,-39 + 9496: 15,-35 + 9520: 21,-33 + 9521: 29,-33 + 9522: 36,-33 + 9523: 33,-23 + 9524: 29,-28 + 9525: 23,-29 + 9526: 29,-40 + 9527: 25,-44 + 9528: 29,-44 + 9529: 29,-50 + 9530: 19,-44 + 9531: 22,-50 + 9532: 17,-48 + 9535: 27,-54 + 9683: 15,-44 + 9725: 39,-35 + 9730: 37,-43 + 9858: 35,-26 + 9859: 37,-27 + 9860: 37,-25 + 9938: 31,-54 + 10077: 4,-42 + 10078: 1,-44 + 10079: 9,-42 + 10080: 4,-48 + 10081: 1,-51 + 10082: 10,-54 + 10083: 8,-56 + 10084: 2,-55 + 10085: 12,-56 + 10086: 10,-57 + 10087: 7,-57 + 10088: 13,-47 + 10089: 17,-54 + 10261: 25,-56 + 10262: 29,-56 + 10287: 2,-60 + 10288: 2,-60 + 10289: 5,-63 + 10290: 5,-63 + 10302: 5,-73 + 10303: 5,-73 + 10304: 7,-75 + 10305: 5,-79 + 10306: 4,-87 + 10307: 4,-83 + 10308: 7,-77 + 10309: 7,-65 + 10418: 76,-45 + 10419: 73,-41 + 10420: 68,-41 + 10421: 73,-48 + 10422: 71,-50 + 10584: 39,-72 + 10585: 41,-72 + 10586: 41,-72 + 10618: -61,-43 + 10619: -59,-33 + 10620: -59,-40 + 10621: -47,-46 + 10622: -47,-42 + 10734: -11,-83 + 10735: -11,-79 + 10736: -6,-83 + 10737: -4,-83 + 10738: -4,-83 + 10739: 2,-87 + 10740: -4,-87 + 10741: -6,-87 + 10745: 2,-83 + 10788: -24,-63 + 10789: -23,-71 + 10790: -23,-77 + 10791: -23,-79 + 10792: -21,-77 + 10793: -18,-78 + 10794: -12,-78 + 10795: -14,-77 + 10796: -19,-81 + 10797: -10,-63 + 10802: -34,-51 + 10803: -36,-53 + 10804: -34,-55 + 10805: -32,-53 + 10806: -3,-48 + 10814: -4,-35 + 10816: -6,-29 + 10820: -15,-29 + 10821: -13,-29 + 11056: -11,-35 + 11057: -11,-34 + 11058: -13,-33 + 11059: -15,-33 + 11109: -7,-37 + 11110: -6,-45 + 11111: -12,-50 + 11112: -20,-52 + 11113: -18,-51 + 11114: -6,-54 + 11115: -4,-56 + 11116: -16,-55 + 11121: -19,-45 + 11122: -19,-45 + 11123: -16,-40 + 11124: -34,-25 + 11125: -38,-25 + 11126: -42,-25 + 11127: -42,-31 + 11128: -38,-31 + 11129: -34,-31 + 11130: -46,-24 + 11131: -48,-23 + 11132: -48,-23 + 11133: -35,-37 + 11134: -35,-37 + 11135: -42,-37 + 11136: -42,-37 + 11137: -45,-35 + 11138: -29,-37 + 11139: -29,-37 + 11140: -31,-39 + 11141: -29,-43 + 11142: -29,-43 + 11143: -24,-37 + 11144: -12,-41 + 11220: -12,-59 + 11221: -24,-43 + 11222: -24,-49 + 11281: -36,-45 + 11282: -36,-40 + 11328: -25,-24 + 11329: -23,-23 + 11330: -21,-26 + 11331: -17,-24 + 11332: -21,-31 + 11621: -17,-64 + 11622: -4,-60 + 11936: -37,27 + 11978: -45,9 + 11980: -45,18 + 12090: -45,9 + 12092: -44,23 + 12268: 52,-37 + 12334: -37,-59 + 12335: -37,-64 + 12336: -35,-66 + 12337: -41,-64 + 12348: -30,-61 + 12543: -33,-72 + 13366: -46,12 + 13367: -46,14 + 14328: -49,9 + 14329: -48,7 + 14338: -42,2 + 14535: 75,1 + 14541: 92,8 + 14542: 94,10 + 14543: 78,3 + 14544: 81,-1 + 14545: 85,-1 + 14546: 89,-1 + 14552: 96,-3 + 14858: 94,13 + 15125: -61,-48 + 15649: -58,-11 + 15650: -56,-9 + 15651: -56,-7 + 15674: -58,-11 + 15680: -56,-19 + 15681: -54,-19 + 15684: -60,-17 + 15685: -62,-17 + 15731: -58,-5 + 15736: -48,1 + 15737: -49,3 + 15801: -56,-7 + 15802: -56,-9 + 15803: -62,-7 + 15893: -62,1 + 15894: -65,1 + 15954: -62,-7 + 16037: -51,-15 + 16068: -61,-18 + 16097: -60,14 + 16098: -67,15 + 16099: -72,13 + 16100: -72,9 + 16101: -79,14 + 16102: -77,8 + 16103: -83,14 + 16104: -77,2 + 16105: -75,0 + 16106: -73,3 + 16107: -65,1 + 16108: -71,-5 + 16109: -69,-5 + 16118: -60,14 + 16119: -58,16 + 16120: -67,15 + 16121: -72,13 + 16122: -77,12 + 16123: -79,14 + 16124: -77,8 + 16125: -72,9 + 16126: -73,3 + 16127: -77,2 + 16128: -75,0 + 16129: -80,0 + 16130: -80,-5 + 16131: -82,-3 + 16132: -62,-7 + 16133: -60,6 + 16134: -60,10 + 16135: -46,14 + 16136: -46,12 + 16210: -77,8 + 16211: -72,9 + 16212: -73,3 + 16213: -77,2 + 16214: -75,0 + 16215: -80,0 + 16408: 9,90 + 16409: 11,90 + 16798: -69,55 + 16810: -55,39 + 16811: -54,43 + 16812: -56,43 + 16813: -51,41 + 16814: -48,43 + 16815: -46,41 + 16816: -61,48 + 16817: -61,50 + 16818: -63,53 + 16819: -61,57 + 16820: -67,57 + 16821: -59,55 + 16822: -60,39 + 16823: -62,39 + 16824: -55,31 + 16825: -51,21 + 17025: -44,52 + 17026: -44,50 + 17059: -52,20 + 17449: -14,-11 + 17450: -10,-11 + 17486: 8,-11 + 17932: 57,3 + 17933: 59,3 + 17934: 61,3 + 17935: 63,3 + 17936: 65,3 + 17937: 67,3 + 17941: 57,6 + 17942: 59,6 + 17943: 61,6 + 17944: 63,6 + 17945: 65,6 + 17946: 67,6 + 17947: 68,7 + 17948: 70,7 + 17949: 70,8 + 17950: 68,8 + 18834: -48,-3 + 18919: -16,5 + 18920: -16,-2 + 18955: 37,39 + 18978: 71,26 + 19011: 62,27 + 19046: 40,-17 + 19047: 40,-17 + 20110: 75,-4 + 20140: 45,-8 + 20150: 51,-6 + 20169: 56,-2 + 20280: 21,23 + 23257: -29,-25 + 23263: -49,-28 + 23613: 33,-61 + 23614: 29,-61 + 23615: 27,-59 + 23616: 42,-62 + 23617: 37,-62 + 23618: 37,-70 + 23619: 40,-69 + 23620: 33,-68 + 23621: 41,-72 + 23622: 39,-72 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 4100: 0,25 + 3950: 0,25 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNe decals: - 4189: -11,16 - 4208: 11,16 - 4272: 4,18 - 4273: 7,16 - 4304: 14,16 - 9880: 34,-44 + 4039: -11,16 + 4058: 11,16 + 4122: 4,18 + 4123: 7,16 + 4154: 14,16 + 9718: 34,-44 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerNe decals: - 2976: -26,54 - 2977: -25,53 + 2853: -26,54 + 2854: -25,53 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNe decals: - 11666: -5,-38 - 11667: -4,-39 + 11151: -5,-38 + 11152: -4,-39 - node: color: '#D381C9FF' id: BrickTileDarkCornerNe decals: - 24244: -45,-25 - 24245: -41,-26 - 24246: -37,-26 - 24247: -33,-26 - 24248: -26,-26 - 24294: -45,-22 + 23248: -45,-25 + 23249: -41,-26 + 23250: -37,-26 + 23251: -33,-26 + 23252: -26,-26 + 23298: -45,-22 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNe decals: - 7413: 37,9 - 7429: 37,12 - 7432: 48,-3 - 7598: 58,-3 - 7601: 53,-3 - 15476: 74,3 - 18950: 74,19 - 18976: 44,1 - 19019: 41,1 - 19035: 44,9 - 19036: 44,13 - 19037: 41,13 - 19073: 47,24 - 19077: 48,19 - 19107: 54,19 - 19122: 71,-3 - 19137: 76,23 - 19204: 60,13 - 19237: 55,9 - 19533: 55,29 - 19946: 58,32 - 19947: 59,31 + 7261: 37,9 + 7277: 37,12 + 7280: 48,-3 + 7446: 58,-3 + 7449: 53,-3 + 14525: 74,3 + 17994: 74,19 + 18020: 44,1 + 18063: 41,1 + 18079: 44,9 + 18080: 44,13 + 18081: 41,13 + 18117: 47,24 + 18121: 48,19 + 18151: 54,19 + 18166: 71,-3 + 18181: 76,23 + 18248: 60,13 + 18281: 55,9 + 18577: 55,29 + 18952: 58,32 + 18953: 59,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerNe decals: - 17488: -61,11 - 17568: -70,8 - 18155: -67,1 + 16537: -61,11 + 16617: -70,8 + 17204: -67,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1201: 13,-59 - 1241: 70,4 - 2020: -15,28 - 2339: -28,38 - 2411: -10,46 - 2469: -10,46 - 2542: -6,43 - 2543: -7,46 - 3207: -2,65 - 3946: 18,61 - 5705: 11,7 - 5719: 11,3 - 5765: 8,-2 - 5802: -15,-4 - 5812: -9,-3 - 5925: 1,14 - 6554: -22,-5 - 6555: -22,-5 - 7207: 23,2 - 7269: 36,1 - 7313: 33,11 - 7674: 43,22 - 7693: 36,21 - 8508: 53,-23 - 8586: 65,-10 - 8590: 65,-29 - 10182: 37,-29 - 10183: 37,-29 - 10340: 12,-49 - 10409: 14,-58 - 10510: 51,-54 - 10607: 82,-43 - 10622: 74,-37 - 10703: 45,-51 - 11236: -74,-34 - 12325: -15,-74 - 12346: -13,-65 - 12360: -13,-79 - 12372: -21,-80 - 12528: -23,-64 - 13285: -38,-66 - 13459: -29,-73 - 13491: -31,-77 - 15578: 93,7 - 15617: 100,-2 - 15651: 96,3 - 15947: 91,9 - 16697: -45,6 - 17026: -46,-12 - 17649: -78,11 - 17981: -44,48 - 17996: -53,38 - 18017: -52,25 - 18054: -57,7 - 18294: -50,-36 - 18460: 14,-13 - 18476: 14,-13 - 18477: 14,-13 - 19353: -9,34 - 19362: -12,34 - 19419: -12,34 - 19436: -9,34 - 20026: 68,30 - 21286: 26,17 - 21330: 25,16 + 1083: 13,-59 + 1123: 70,4 + 1901: -15,28 + 2216: -28,38 + 2288: -10,46 + 2346: -10,46 + 2419: -6,43 + 2420: -7,46 + 3081: -2,65 + 3813: 18,61 + 5553: 11,7 + 5567: 11,3 + 5613: 8,-2 + 5650: -15,-4 + 5660: -9,-3 + 5773: 1,14 + 6402: -22,-5 + 6403: -22,-5 + 7055: 23,2 + 7117: 36,1 + 7161: 33,11 + 7522: 43,22 + 7541: 36,21 + 8350: 53,-23 + 8431: 65,-29 + 10020: 37,-29 + 10021: 37,-29 + 10178: 12,-49 + 10247: 14,-58 + 10348: 51,-54 + 10445: 82,-43 + 10460: 74,-37 + 10541: 45,-51 + 10733: -74,-34 + 11663: -15,-74 + 11684: -13,-65 + 11698: -13,-79 + 11710: -21,-80 + 11866: -23,-64 + 12341: -38,-66 + 12515: -29,-73 + 12547: -31,-77 + 14627: 93,7 + 14666: 100,-2 + 14700: 96,3 + 14996: 91,9 + 15746: -45,6 + 16075: -46,-12 + 16698: -78,11 + 17030: -44,48 + 17045: -53,38 + 17066: -52,25 + 17103: -57,7 + 17343: -50,-36 + 17509: 14,-13 + 17525: 14,-13 + 17526: 14,-13 + 18397: -9,34 + 18406: -12,34 + 18463: -12,34 + 18480: -9,34 + 19032: 68,30 + 20292: 26,17 + 20336: 25,16 + 23798: 65,-10 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNw decals: - 4171: -16,16 - 4178: -13,16 - 4210: 9,16 - 4259: -9,16 - 4262: -6,18 - 21226: -16,16 + 4021: -16,16 + 4028: -13,16 + 4060: 9,16 + 4109: -9,16 + 4112: -6,18 + 20232: -16,16 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNw decals: - 11660: -10,-38 - 11661: -10,-38 - 11662: -11,-39 + 11145: -10,-38 + 11146: -10,-38 + 11147: -11,-39 - node: color: '#D381C9FF' id: BrickTileDarkCornerNw decals: - 24296: -47,-22 - 24320: -43,-26 - 24321: -39,-26 - 24322: -35,-26 - 24369: -31,-26 + 23300: -47,-22 + 23324: -43,-26 + 23325: -39,-26 + 23326: -35,-26 + 23373: -31,-26 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNw decals: - 7428: 35,12 - 7595: 50,-3 - 7596: 55,-3 - 7597: 55,-3 - 15477: 72,3 - 18951: 72,19 - 18977: 43,1 - 19016: 35,9 - 19018: 39,1 - 19032: 43,13 - 19033: 39,13 - 19034: 43,9 - 19057: 46,13 - 19071: 45,24 - 19106: 50,19 - 19120: 56,19 - 19121: 68,-3 - 19136: 72,23 - 19205: 50,13 - 19238: 50,9 - 19295: -20,-24 - 19532: 53,29 - 19943: 50,32 - 19944: 49,31 + 7276: 35,12 + 7443: 50,-3 + 7444: 55,-3 + 7445: 55,-3 + 14526: 72,3 + 17995: 72,19 + 18021: 43,1 + 18060: 35,9 + 18062: 39,1 + 18076: 43,13 + 18077: 39,13 + 18078: 43,9 + 18101: 46,13 + 18115: 45,24 + 18150: 50,19 + 18164: 56,19 + 18165: 68,-3 + 18180: 72,23 + 18249: 50,13 + 18282: 50,9 + 18339: -20,-24 + 18576: 53,29 + 18949: 50,32 + 18950: 49,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerNw decals: - 20216: -24,2 + 19222: -24,2 - node: color: '#EFB341FF' id: BrickTileDarkCornerNw decals: - 17487: -66,11 - 17569: -74,8 - 18154: -73,1 + 16536: -66,11 + 16618: -74,8 + 17203: -73,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1202: 11,-59 - 1240: 68,4 - 2009: -17,34 - 2532: -8,46 - 2611: -4,40 - 2717: -7,54 - 3932: 12,62 - 3980: -42,63 - 5695: 7,7 - 5707: 7,3 - 5764: 7,-2 - 5801: -16,-4 - 5810: -13,-3 - 5924: -3,14 - 6552: -26,-5 - 6553: -26,-5 - 7217: 20,2 - 7268: 34,1 - 7284: 26,9 - 7312: 29,11 - 7668: 39,22 - 7691: 34,21 - 7692: 34,21 - 8507: 51,-23 - 8584: 64,-29 - 8585: 64,-10 - 10181: 35,-29 - 10339: 2,-49 - 10374: 2,-49 - 10509: 49,-54 - 10606: 80,-43 - 10621: 72,-37 - 10702: 44,-51 - 11234: -75,-34 - 11235: -75,-34 - 12326: -19,-74 - 12345: -21,-65 - 12359: -16,-79 - 12371: -23,-80 - 12479: -18,-80 - 12514: -25,-64 - 12515: -24,-72 - 12529: -25,-64 - 12611: -39,26 - 13282: -41,-66 - 13490: -35,-77 - 15566: 89,10 - 15581: 91,7 - 15616: 99,-2 - 15644: 93,3 - 15762: 79,-2 - 15789: 83,-2 - 15790: 87,-2 - 15819: 95,14 - 15950: 93,9 - 16693: -49,6 - 17650: -79,11 - 17980: -45,48 - 18053: -58,7 - 18284: -53,-36 - 18461: 12,-13 - 18475: 12,-13 - 19352: -10,34 - 19376: -15,31 - 19418: -10,34 - 20017: 61,30 - 21285: 22,17 - 21329: 23,16 + 1084: 11,-59 + 1122: 68,4 + 1891: -17,34 + 2409: -8,46 + 2488: -4,40 + 2594: -7,54 + 3799: 12,62 + 3847: -42,63 + 5543: 7,7 + 5555: 7,3 + 5612: 7,-2 + 5649: -16,-4 + 5658: -13,-3 + 5772: -3,14 + 6400: -26,-5 + 6401: -26,-5 + 7065: 20,2 + 7116: 34,1 + 7132: 26,9 + 7160: 29,11 + 7516: 39,22 + 7539: 34,21 + 7540: 34,21 + 8349: 51,-23 + 8426: 64,-29 + 8427: 64,-10 + 10019: 35,-29 + 10177: 2,-49 + 10212: 2,-49 + 10347: 49,-54 + 10444: 80,-43 + 10459: 72,-37 + 10540: 44,-51 + 10731: -75,-34 + 10732: -75,-34 + 11664: -19,-74 + 11683: -21,-65 + 11697: -16,-79 + 11709: -23,-80 + 11817: -18,-80 + 11852: -25,-64 + 11853: -24,-72 + 11867: -25,-64 + 11929: -39,26 + 12338: -41,-66 + 12546: -35,-77 + 14615: 89,10 + 14630: 91,7 + 14665: 99,-2 + 14693: 93,3 + 14811: 79,-2 + 14838: 83,-2 + 14839: 87,-2 + 14868: 95,14 + 14999: 93,9 + 15742: -49,6 + 16699: -79,11 + 17029: -45,48 + 17102: -58,7 + 17333: -53,-36 + 17510: 12,-13 + 17524: 12,-13 + 18396: -10,34 + 18420: -15,31 + 18462: -10,34 + 19023: 61,30 + 20291: 22,17 + 20335: 23,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSe decals: - 4207: 11,13 - 4285: -4,13 - 4305: 14,13 - 9881: 34,-45 + 4057: 11,13 + 4135: -4,13 + 4155: 14,13 + 9719: 34,-45 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSe decals: - 2978: -25,52 + 2855: -25,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSe decals: - 11668: -4,-43 - 11669: -5,-44 - 12054: -23,-48 + 11153: -4,-43 + 11154: -5,-44 + 11392: -23,-48 - node: color: '#D381C9FF' id: BrickTileDarkCornerSe decals: - 24285: -45,-31 - 24293: -45,-23 - 24314: -33,-30 - 24315: -37,-30 - 24316: -41,-30 - 24359: -26,-32 + 23289: -45,-31 + 23297: -45,-23 + 23318: -33,-30 + 23319: -37,-30 + 23320: -41,-30 + 23363: -26,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSe decals: - 7427: 37,11 - 7434: 48,-5 - 7589: 58,-5 - 7590: 53,-5 - 15484: 74,-1 - 18953: 74,5 - 18973: 44,-1 - 19017: 41,-1 - 19029: 44,7 - 19030: 44,11 - 19031: 41,11 - 19055: 60,11 - 19060: 48,15 - 19091: 59,21 - 19108: 54,15 - 19118: 57,15 - 19124: 71,-5 - 19135: 76,21 - 19243: 55,3 - 19296: -18,-28 - 19548: 52,31 + 7275: 37,11 + 7282: 48,-5 + 7437: 58,-5 + 7438: 53,-5 + 14533: 74,-1 + 17997: 74,5 + 18017: 44,-1 + 18061: 41,-1 + 18073: 44,7 + 18074: 44,11 + 18075: 41,11 + 18099: 60,11 + 18104: 48,15 + 18135: 59,21 + 18152: 54,15 + 18162: 57,15 + 18168: 71,-5 + 18179: 76,21 + 18287: 55,3 + 18340: -18,-28 + 18592: 52,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerSe decals: - 20215: -22,0 + 19221: -22,0 - node: color: '#EFB341FF' id: BrickTileDarkCornerSe decals: - 17486: -61,4 - 17561: -70,4 - 18169: -67,-3 + 16535: -61,4 + 16610: -70,4 + 17218: -67,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1203: 13,-61 - 2017: -15,26 - 2021: -15,32 - 2415: -10,36 - 2478: -10,36 - 2530: -6,36 - 2614: -2,36 - 2665: 2,54 - 2713: -5,52 - 3204: -2,60 - 3885: 23,65 - 3985: -40,59 - 5703: 11,5 - 5714: 11,0 - 5763: 8,-3 - 5804: -15,-6 - 5813: -9,-6 - 5923: 1,12 - 6551: -22,-9 - 6819: -33,8 - 7263: 36,-1 - 7279: 27,8 - 7317: 33,8 - 7675: 43,18 - 7676: 43,18 - 7688: 36,19 - 8517: 53,-26 - 8582: 65,-12 - 8583: 65,-31 - 10180: 37,-31 - 10342: 12,-53 - 10403: 14,-62 - 10511: 51,-56 - 10605: 82,-47 - 10624: 74,-40 - 10701: 45,-55 - 11229: -74,-36 - 12332: -15,-76 - 12366: -13,-82 - 12369: -21,-82 - 12477: -17,-82 - 12613: -38,25 - 13290: -38,-68 - 13479: -36,-78 - 13497: -31,-80 - 15579: 93,6 - 15619: 100,-4 - 15650: 96,1 - 15768: 81,-5 - 15785: 89,-5 - 15786: 85,-5 - 15817: 96,12 - 16698: -45,4 - 17031: -46,-18 - 17651: -78,9 - 17979: -44,46 - 18058: -57,5 - 18465: 14,-14 - 18473: 14,-14 - 18894: 70,3 - 19364: -12,26 - 19424: -12,26 - 20027: 68,28 - 21284: 26,12 - 21325: 25,13 + 1085: 13,-61 + 1902: -15,32 + 2292: -10,36 + 2355: -10,36 + 2407: -6,36 + 2491: -2,36 + 2542: 2,54 + 2590: -5,52 + 3078: -2,60 + 3752: 23,65 + 3852: -40,59 + 5551: 11,5 + 5562: 11,0 + 5611: 8,-3 + 5652: -15,-6 + 5661: -9,-6 + 5771: 1,12 + 6399: -22,-9 + 6667: -33,8 + 7111: 36,-1 + 7127: 27,8 + 7165: 33,8 + 7523: 43,18 + 7524: 43,18 + 7536: 36,19 + 8359: 53,-26 + 8424: 65,-12 + 8425: 65,-31 + 10018: 37,-31 + 10180: 12,-53 + 10241: 14,-62 + 10349: 51,-56 + 10443: 82,-47 + 10462: 74,-40 + 10539: 45,-55 + 10726: -74,-36 + 11670: -15,-76 + 11704: -13,-82 + 11707: -21,-82 + 11815: -17,-82 + 11931: -38,25 + 12346: -38,-68 + 12535: -36,-78 + 12553: -31,-80 + 14628: 93,6 + 14668: 100,-4 + 14699: 96,1 + 14817: 81,-5 + 14834: 89,-5 + 14835: 85,-5 + 14866: 96,12 + 15747: -45,4 + 16080: -46,-18 + 16700: -78,9 + 17028: -44,46 + 17107: -57,5 + 17514: 14,-14 + 17522: 14,-14 + 17938: 70,3 + 18408: -12,26 + 18468: -12,26 + 19033: 68,28 + 20290: 26,12 + 20331: 25,13 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSw decals: - 4172: -16,13 - 4177: -13,13 - 4284: 2,13 - 9882: 30,-45 - 21222: -13,13 - 21223: -16,13 + 4022: -16,13 + 4027: -13,13 + 4134: 2,13 + 9720: 30,-45 + 20228: -13,13 + 20229: -16,13 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSw decals: - 2972: -27,52 + 2849: -27,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSw decals: - 11670: -11,-44 - 12055: -30,-48 + 11155: -11,-44 + 11393: -30,-48 - node: color: '#D381C9FF' id: BrickTileDarkCornerSw decals: - 24317: -43,-30 - 24318: -39,-30 - 24319: -35,-30 - 24356: -31,-32 + 23321: -43,-30 + 23322: -39,-30 + 23323: -35,-30 + 23360: -31,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSw decals: - 7430: 35,11 - 7587: 50,-5 - 7588: 55,-5 - 18952: 72,5 - 18970: 46,-1 - 18971: 39,-1 - 18972: 43,-1 - 19015: 35,8 - 19026: 39,11 - 19027: 43,11 - 19028: 43,7 - 19056: 50,11 - 19061: 45,15 - 19092: 49,21 - 19105: 50,15 - 19119: 56,15 - 19123: 68,-5 - 19138: 72,21 - 19244: 50,3 - 19297: -20,-28 - 19549: 56,31 + 7278: 35,11 + 7435: 50,-5 + 7436: 55,-5 + 17996: 72,5 + 18014: 46,-1 + 18015: 39,-1 + 18016: 43,-1 + 18059: 35,8 + 18070: 39,11 + 18071: 43,11 + 18072: 43,7 + 18100: 50,11 + 18105: 45,15 + 18136: 49,21 + 18149: 50,15 + 18163: 56,15 + 18167: 68,-5 + 18182: 72,21 + 18288: 50,3 + 18341: -20,-28 + 18593: 56,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerSw decals: - 17485: -66,4 - 17562: -74,4 - 18168: -73,-3 + 16534: -66,4 + 16611: -74,4 + 17217: -73,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1200: 11,-61 - 2016: -17,26 - 2529: -8,36 - 2612: -4,36 - 2666: 1,54 - 2681: -1,50 - 2712: -7,52 - 3889: 17,65 - 3983: -42,59 - 5697: 7,5 - 5710: 7,0 - 5766: 7,-3 - 5803: -16,-6 - 5814: -13,-6 - 5922: -3,12 - 6547: -26,-9 - 6818: -39,8 - 7216: 20,-8 - 7262: 34,-1 - 7285: 26,8 - 7680: 39,18 - 7689: 34,19 - 7690: 34,19 - 8518: 51,-26 - 8587: 64,-12 - 8588: 64,-31 - 8589: 64,-31 - 10179: 35,-31 - 10341: 2,-53 - 10402: 10,-62 - 10508: 49,-56 - 10625: 72,-40 - 10700: 44,-55 - 11230: -75,-36 - 12331: -19,-76 - 12365: -16,-82 - 12370: -23,-82 - 12478: -18,-82 - 12512: -24,-76 - 12513: -25,-70 - 12612: -39,25 - 13287: -41,-68 - 13463: -30,-80 - 13480: -30,-78 - 13485: -37,-80 - 13498: -35,-80 - 13499: -32,-80 - 15580: 91,6 - 15618: 99,-4 - 15649: 93,1 - 15769: 79,-5 - 15787: 83,-5 - 15788: 87,-5 - 15820: 95,12 - 17652: -79,9 - 17978: -45,46 - 18057: -58,5 - 18286: -53,-38 - 18463: 12,-14 - 18472: 12,-14 - 18895: 68,3 - 19354: -10,26 - 19367: -14,26 - 19375: -15,29 - 19423: -10,26 - 20028: 61,28 - 21283: 22,12 - 21324: 23,13 + 1082: 11,-61 + 1898: -17,26 + 2406: -8,36 + 2489: -4,36 + 2543: 1,54 + 2558: -1,50 + 2589: -7,52 + 3756: 17,65 + 3850: -42,59 + 5545: 7,5 + 5558: 7,0 + 5614: 7,-3 + 5651: -16,-6 + 5662: -13,-6 + 5770: -3,12 + 6395: -26,-9 + 6666: -39,8 + 7064: 20,-8 + 7110: 34,-1 + 7133: 26,8 + 7528: 39,18 + 7537: 34,19 + 7538: 34,19 + 8360: 51,-26 + 8428: 64,-12 + 8429: 64,-31 + 8430: 64,-31 + 10017: 35,-31 + 10179: 2,-53 + 10240: 10,-62 + 10346: 49,-56 + 10463: 72,-40 + 10538: 44,-55 + 10727: -75,-36 + 11669: -19,-76 + 11703: -16,-82 + 11708: -23,-82 + 11816: -18,-82 + 11850: -24,-76 + 11851: -25,-70 + 11930: -39,25 + 12343: -41,-68 + 12519: -30,-80 + 12536: -30,-78 + 12541: -37,-80 + 12554: -35,-80 + 12555: -32,-80 + 14629: 91,6 + 14667: 99,-4 + 14698: 93,1 + 14818: 79,-5 + 14836: 83,-5 + 14837: 87,-5 + 14869: 95,12 + 16701: -79,9 + 17027: -45,46 + 17106: -58,5 + 17335: -53,-38 + 17512: 12,-14 + 17521: 12,-14 + 17939: 68,3 + 18398: -10,26 + 18411: -14,26 + 18419: -15,29 + 18467: -10,26 + 19034: 61,28 + 20289: 22,12 + 20330: 23,13 - node: color: '#439909FF' id: BrickTileDarkEndE decals: - 24667: 45,-61 - 24668: 45,-64 - 24684: 41,-64 + 23666: 45,-61 + 23667: 45,-64 + 23683: 41,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndE decals: - 19139: 76,25 + 18183: 76,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 2214: -18,54 - 2661: 2,55 - 3846: 23,72 - 3858: 19,68 - 3859: 22,68 - 4318: 4,12 - 4319: -5,12 - 4444: 16,25 - 4590: 21,33 - 5513: -18,7 - 5529: -18,-7 - 5550: -33,30 - 5553: -31,25 - 5582: -10,66 - 5583: -10,59 - 5632: 11,-7 - 5963: 0,7 - 5964: 0,3 - 5965: 0,-1 - 5966: 0,-5 - 6073: -11,-18 - 6113: 18,-7 - 6123: 18,7 - 6168: -18,-22 - 6299: 18,-22 - 6371: 14,-18 - 6543: -32,3 - 6544: -32,-10 - 6771: -25,7 - 6811: -38,16 - 6812: -38,16 - 6816: -38,8 - 6817: -38,8 - 7451: 48,10 - 8169: 36,-17 - 8170: 36,-17 - 8196: 36,-7 - 8211: 47,-18 - 8710: 0,-22 - 8711: 0,-29 - 8712: -6,-22 - 8713: -13,-22 - 8714: 5,-22 - 8715: 12,-22 - 8716: 0,-37 - 8717: 0,-57 - 8718: 0,-63 - 9078: -4,-74 - 9088: -3,-68 - 9089: -3,-66 - 9125: 0,-82 - 9641: 18,-37 - 9642: 28,-37 - 11446: -18,-33 - 11454: -22,-33 - 11455: -22,-33 - 11464: -13,-37 - 11465: -13,-37 - 11620: -13,-45 - 12664: -17,59 - 12665: -3,59 - 12666: -3,66 - 12667: -17,66 - 12668: -11,70 - 12669: 7,70 - 12670: -29,70 - 13484: -36,-80 - 14316: -57,20 - 14341: -61,13 - 14383: -18,21 - 14388: 18,21 - 15287: -41,3 - 15301: -41,7 - 15802: 80,-1 - 15803: 84,-1 - 15804: 88,-1 - 15805: 84,-1 - 15806: 80,-1 - 15811: 98,14 - 15935: 93,15 - 16689: -52,3 - 16690: -52,7 - 16852: -56,3 - 17061: -69,-9 - 17306: -69,-9 - 17607: -80,13 - 17611: -80,15 - 17777: -53,19 - 17987: -56,38 - 18300: -48,-38 - 18456: 14,-11 - 18907: 70,10 - 19707: -6,-40 - 20007: 67,27 + 2093: -18,54 + 2538: 2,55 + 3713: 23,72 + 3725: 19,68 + 3726: 22,68 + 4168: 4,12 + 4169: -5,12 + 4294: 16,25 + 4440: 21,33 + 5361: -18,7 + 5377: -18,-7 + 5398: -33,30 + 5401: -31,25 + 5430: -10,66 + 5431: -10,59 + 5480: 11,-7 + 5811: 0,7 + 5812: 0,3 + 5813: 0,-1 + 5814: 0,-5 + 5921: -11,-18 + 5961: 18,-7 + 5971: 18,7 + 6016: -18,-22 + 6147: 18,-22 + 6219: 14,-18 + 6391: -32,3 + 6392: -32,-10 + 6619: -25,7 + 6659: -38,16 + 6660: -38,16 + 6664: -38,8 + 6665: -38,8 + 7299: 48,10 + 8015: 36,-17 + 8016: 36,-17 + 8042: 36,-7 + 8057: 47,-18 + 8548: 0,-22 + 8549: 0,-29 + 8550: -6,-22 + 8551: -13,-22 + 8552: 5,-22 + 8553: 12,-22 + 8554: 0,-37 + 8555: 0,-57 + 8556: 0,-63 + 8916: -4,-74 + 8926: -3,-68 + 8927: -3,-66 + 8963: 0,-82 + 9479: 18,-37 + 9480: 28,-37 + 10943: -18,-33 + 10951: -22,-33 + 10952: -22,-33 + 10961: -13,-37 + 10962: -13,-37 + 11117: -13,-45 + 11982: -17,59 + 11983: -3,59 + 11984: -3,66 + 11985: -17,66 + 11986: -11,70 + 11987: 7,70 + 11988: -29,70 + 12540: -36,-80 + 13372: -57,20 + 13397: -61,13 + 13439: -18,21 + 13444: 18,21 + 14336: -41,3 + 14350: -41,7 + 14851: 80,-1 + 14852: 84,-1 + 14853: 88,-1 + 14854: 84,-1 + 14855: 80,-1 + 14860: 98,14 + 14984: 93,15 + 15738: -52,3 + 15739: -52,7 + 15901: -56,3 + 16110: -69,-9 + 16355: -69,-9 + 16656: -80,13 + 16660: -80,15 + 16826: -53,19 + 17036: -56,38 + 17349: -48,-38 + 17505: 14,-11 + 17951: 70,10 + 18751: -6,-40 + 19013: 67,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 4042: -18,25 - 4109: 8,25 - 4110: 5,25 + 3892: -18,25 + 3959: 8,25 + 3960: 5,25 - node: color: '#A9DA8BFF' id: BrickTileDarkEndN decals: - 2975: -27,55 + 2852: -27,55 - node: color: '#B18BDAFF' id: BrickTileDarkEndN decals: - 12033: -30,-44 - 12034: -23,-44 + 11371: -30,-44 + 11372: -23,-44 - node: color: '#EFB341FF' id: BrickTileDarkEndN decals: - 17733: -59,7 - 17734: -56,7 - 18161: -68,0 + 16782: -59,7 + 16783: -56,7 + 17210: -68,0 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 2510: -9,43 - 2511: -9,43 - 2667: 4,54 - 2853: -24,48 - 2856: -24,51 - 3133: -16,65 - 3147: -8,65 - 3191: -22,65 - 3555: -22,58 - 3638: 9,81 - 3645: 9,76 - 3825: 16,71 - 4162: -14,15 - 4167: -17,15 - 4296: 12,15 - 4297: 15,15 - 4509: 12,36 - 4895: 14,53 - 4898: 14,50 - 5221: -32,82 - 5222: -28,82 - 5223: -28,92 - 5224: -32,92 - 5308: -14,92 - 5309: -10,92 - 5326: -10,82 - 5327: -14,82 - 5328: -14,82 - 5340: 4,82 - 5558: -29,28 - 5559: -29,28 - 5599: -17,-8 - 5600: 15,-8 - 5625: -17,-19 - 5644: -7,10 - 5648: 5,10 - 5962: -1,8 - 6152: -3,-19 - 6153: 1,-19 - 6154: -17,-19 - 6167: 15,-19 - 6540: -21,-2 - 6774: -21,12 - 6943: -22,-16 - 7032: 26,6 - 7039: 19,6 - 7069: 26,-10 - 7070: 19,-10 - 7375: 49,1 - 7532: 48,23 - 7620: 56,5 - 8178: 42,-14 - 8179: 42,-10 - 8180: 42,-10 - 8809: 1,-25 - 8810: -3,-25 - 9076: -2,-69 - 9077: -7,-69 - 9093: -1,-67 - 9094: -1,-67 - 9095: -8,-67 - 9096: -8,-72 - 9097: -1,-72 - 9098: -1,-72 - 9109: -6,-72 - 9110: -6,-72 - 9111: -3,-72 - 9112: -3,-72 - 9333: 1,-46 - 9334: 1,-55 - 9335: 1,-55 - 9338: -3,-55 - 9340: 1,-46 - 9500: 15,-25 - 9518: 19,-27 - 9637: 19,-39 - 9638: 25,-39 - 9695: 15,-39 - 10218: 20,-51 - 10458: 3,-66 - 10459: 3,-75 - 10460: 3,-75 - 10699: 53,-50 - 11287: -12,-66 - 11288: -22,-66 - 11311: -3,-40 - 11452: -21,-34 - 11453: -21,-34 - 12261: -21,-46 - 12486: -20,-80 - 12487: -24,-80 - 12608: -38,29 - 14371: -21,24 - 14372: -8,24 - 14373: 6,24 - 15286: -40,6 - 15418: 58,-26 - 15419: 60,-26 - 15428: 58,-13 - 15429: 60,-13 - 15773: 80,-3 - 15777: 84,-3 - 15778: 88,-3 - 16709: -54,6 - 16710: -51,6 - 16767: -55,-10 - 16768: -55,-5 - 17063: -74,-6 - 17231: -50,-7 - 17299: -74,-6 - 17617: -79,7 - 17618: -76,7 - 17648: -76,11 - 17780: -56,24 - 17984: -57,34 - 18006: -55,22 - 18091: -55,-5 - 18359: -16,-13 - 18362: -14,-13 - 18363: -12,-13 - 18364: -10,-13 - 18379: -8,-16 - 18911: 57,9 - 18912: 59,9 - 18913: 63,9 - 18914: 61,9 - 20044: -21,6 - 21257: 19,15 - 21266: 21,15 - 21281: 24,15 - 23103: 19,-34 - 24257: -44,-27 - 24258: -32,-27 + 2387: -9,43 + 2388: -9,43 + 2544: 4,54 + 2730: -24,48 + 2733: -24,51 + 3009: -16,65 + 3023: -8,65 + 3065: -22,65 + 3422: -22,58 + 3505: 9,81 + 3512: 9,76 + 3692: 16,71 + 4012: -14,15 + 4017: -17,15 + 4146: 12,15 + 4147: 15,15 + 4359: 12,36 + 4745: 14,53 + 4748: 14,50 + 5071: -32,82 + 5072: -28,82 + 5073: -28,92 + 5074: -32,92 + 5156: -14,92 + 5157: -10,92 + 5174: -10,82 + 5175: -14,82 + 5176: -14,82 + 5188: 4,82 + 5406: -29,28 + 5407: -29,28 + 5447: -17,-8 + 5448: 15,-8 + 5473: -17,-19 + 5492: -7,10 + 5496: 5,10 + 5810: -1,8 + 6000: -3,-19 + 6001: 1,-19 + 6002: -17,-19 + 6015: 15,-19 + 6388: -21,-2 + 6622: -21,12 + 6791: -22,-16 + 6880: 26,6 + 6887: 19,6 + 6917: 26,-10 + 6918: 19,-10 + 7223: 49,1 + 7380: 48,23 + 7468: 56,5 + 8024: 42,-14 + 8025: 42,-10 + 8026: 42,-10 + 8647: 1,-25 + 8648: -3,-25 + 8914: -2,-69 + 8915: -7,-69 + 8931: -1,-67 + 8932: -1,-67 + 8933: -8,-67 + 8934: -8,-72 + 8935: -1,-72 + 8936: -1,-72 + 8947: -6,-72 + 8948: -6,-72 + 8949: -3,-72 + 8950: -3,-72 + 9171: 1,-46 + 9172: 1,-55 + 9173: 1,-55 + 9176: -3,-55 + 9178: 1,-46 + 9338: 15,-25 + 9356: 19,-27 + 9475: 19,-39 + 9476: 25,-39 + 9533: 15,-39 + 10056: 20,-51 + 10296: 3,-66 + 10297: 3,-75 + 10298: 3,-75 + 10537: 53,-50 + 10784: -12,-66 + 10785: -22,-66 + 10808: -3,-40 + 10949: -21,-34 + 10950: -21,-34 + 11599: -21,-46 + 11824: -20,-80 + 11825: -24,-80 + 11926: -38,29 + 13427: -21,24 + 13428: -8,24 + 13429: 6,24 + 14335: -40,6 + 14467: 58,-26 + 14468: 60,-26 + 14477: 58,-13 + 14478: 60,-13 + 14822: 80,-3 + 14826: 84,-3 + 14827: 88,-3 + 15758: -54,6 + 15759: -51,6 + 15816: -55,-10 + 15817: -55,-5 + 16112: -74,-6 + 16280: -50,-7 + 16348: -74,-6 + 16666: -79,7 + 16667: -76,7 + 16697: -76,11 + 16829: -56,24 + 17033: -57,34 + 17055: -55,22 + 17140: -55,-5 + 17408: -16,-13 + 17411: -14,-13 + 17412: -12,-13 + 17413: -10,-13 + 17428: -8,-16 + 17955: 57,9 + 17956: 59,9 + 17957: 63,9 + 17958: 61,9 + 19050: -21,6 + 20263: 19,15 + 20272: 21,15 + 20287: 24,15 + 22109: 19,-34 + 23261: -44,-27 + 23262: -32,-27 - node: color: '#EFB341FF' id: BrickTileDarkEndS decals: - 17735: -59,5 - 17736: -56,5 + 16784: -59,5 + 16785: -56,5 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 2327: -28,32 - 2513: -9,39 - 2668: 4,50 - 2854: -24,47 - 2855: -24,50 - 3138: -16,60 - 3148: -8,60 - 3192: -22,60 - 3556: -22,57 - 3639: 9,80 - 3646: 9,75 - 3826: 16,70 - 4163: -14,14 - 4168: -17,14 - 4298: 12,14 - 4299: 15,14 - 4510: 12,35 - 4896: 14,52 - 4897: 14,49 - 5225: -32,88 - 5226: -28,88 - 5227: -28,88 - 5228: -28,79 - 5229: -32,79 - 5310: -14,88 - 5311: -10,88 - 5329: -14,79 - 5330: -10,79 - 5344: 4,79 - 5560: -29,27 - 5561: -29,27 - 5626: -17,-21 - 5645: -7,8 - 5649: 5,8 - 6016: -8,-17 - 6017: -8,-13 - 6035: -16,-16 - 6036: -14,-16 - 6037: -12,-16 - 6038: -10,-16 - 6158: -3,-21 - 6159: 1,-21 - 6166: 15,-21 - 6541: -21,-3 - 6773: -21,11 - 6946: -22,-17 - 7033: 26,4 - 7040: 19,4 - 7071: 19,-12 - 7072: 26,-12 - 7376: 49,-1 - 7533: 48,22 - 7619: 56,4 - 8181: 42,-16 - 8182: 42,-12 - 8811: -3,-26 - 8812: 1,-26 - 9081: -7,-71 - 9082: -2,-71 - 9099: -8,-74 - 9100: -1,-74 - 9101: -1,-74 - 9102: -3,-73 - 9103: -3,-73 - 9104: -6,-73 - 9105: -6,-73 - 9106: -8,-68 - 9107: -1,-68 - 9108: -1,-68 - 9336: -3,-56 - 9337: 1,-56 - 9339: 1,-47 - 9501: 15,-26 - 9519: 19,-28 - 9639: 19,-40 - 9640: 25,-40 - 9647: 19,-36 - 9696: 15,-40 - 10219: 20,-53 - 10461: 3,-76 - 10462: 3,-67 - 10463: 5,-73 - 10691: 53,-56 - 11289: -22,-67 - 11290: -12,-67 - 11312: -3,-41 - 11451: -21,-36 - 12262: -21,-48 - 12485: -20,-82 - 12488: -24,-82 - 14374: 6,22 - 14375: -8,22 - 14376: -21,22 - 15305: -40,4 - 15420: 58,-28 - 15421: 60,-28 - 15430: 58,-15 - 15431: 60,-15 - 15774: 80,-4 - 15775: 84,-4 - 15776: 88,-4 - 16711: -54,4 - 16712: -51,4 - 16769: -55,-11 - 16770: -55,-6 - 17064: -74,-8 - 17232: -50,-9 - 17300: -74,-8 - 17625: -76,3 - 17626: -79,3 - 17779: -56,23 - 17989: -57,32 - 17997: -53,32 - 18007: -55,20 - 18012: -52,22 - 18382: -17,-10 - 18411: 15,-10 - 18449: 15,-10 - 18915: 57,7 - 18916: 59,7 - 18917: 61,7 - 18918: 63,7 - 20045: -21,4 - 21258: 19,14 - 21267: 21,14 - 21282: 24,14 - 24260: -44,-29 - 24261: -32,-29 + 2204: -28,32 + 2390: -9,39 + 2545: 4,50 + 2731: -24,47 + 2732: -24,50 + 3014: -16,60 + 3024: -8,60 + 3066: -22,60 + 3423: -22,57 + 3506: 9,80 + 3513: 9,75 + 3693: 16,70 + 4013: -14,14 + 4018: -17,14 + 4148: 12,14 + 4149: 15,14 + 4360: 12,35 + 4746: 14,52 + 4747: 14,49 + 5075: -32,88 + 5076: -28,88 + 5077: -28,88 + 5078: -28,79 + 5079: -32,79 + 5158: -14,88 + 5159: -10,88 + 5177: -14,79 + 5178: -10,79 + 5192: 4,79 + 5408: -29,27 + 5409: -29,27 + 5474: -17,-21 + 5493: -7,8 + 5497: 5,8 + 5864: -8,-17 + 5865: -8,-13 + 5883: -16,-16 + 5884: -14,-16 + 5885: -12,-16 + 5886: -10,-16 + 6006: -3,-21 + 6007: 1,-21 + 6014: 15,-21 + 6389: -21,-3 + 6621: -21,11 + 6794: -22,-17 + 6881: 26,4 + 6888: 19,4 + 6919: 19,-12 + 6920: 26,-12 + 7224: 49,-1 + 7381: 48,22 + 7467: 56,4 + 8027: 42,-16 + 8028: 42,-12 + 8649: -3,-26 + 8650: 1,-26 + 8919: -7,-71 + 8920: -2,-71 + 8937: -8,-74 + 8938: -1,-74 + 8939: -1,-74 + 8940: -3,-73 + 8941: -3,-73 + 8942: -6,-73 + 8943: -6,-73 + 8944: -8,-68 + 8945: -1,-68 + 8946: -1,-68 + 9174: -3,-56 + 9175: 1,-56 + 9177: 1,-47 + 9339: 15,-26 + 9357: 19,-28 + 9477: 19,-40 + 9478: 25,-40 + 9485: 19,-36 + 9534: 15,-40 + 10057: 20,-53 + 10299: 3,-76 + 10300: 3,-67 + 10301: 5,-73 + 10529: 53,-56 + 10786: -22,-67 + 10787: -12,-67 + 10809: -3,-41 + 10948: -21,-36 + 11600: -21,-48 + 11823: -20,-82 + 11826: -24,-82 + 13430: 6,22 + 13431: -8,22 + 13432: -21,22 + 14354: -40,4 + 14469: 58,-28 + 14470: 60,-28 + 14479: 58,-15 + 14480: 60,-15 + 14823: 80,-4 + 14824: 84,-4 + 14825: 88,-4 + 15760: -54,4 + 15761: -51,4 + 15818: -55,-11 + 15819: -55,-6 + 16113: -74,-8 + 16281: -50,-9 + 16349: -74,-8 + 16674: -76,3 + 16675: -79,3 + 16828: -56,23 + 17038: -57,32 + 17046: -53,32 + 17056: -55,20 + 17061: -52,22 + 17431: -17,-10 + 17460: 15,-10 + 17498: 15,-10 + 17959: 57,7 + 17960: 59,7 + 17961: 61,7 + 17962: 63,7 + 19051: -21,4 + 20264: 19,14 + 20273: 21,14 + 20288: 24,14 + 23264: -44,-29 + 23265: -32,-29 - node: color: '#439909FF' id: BrickTileDarkEndW decals: - 24669: 43,-61 - 24685: 38,-64 + 23668: 43,-61 + 23684: 38,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndW decals: - 19140: 74,25 + 18184: 74,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 2215: -20,54 - 2326: -29,38 - 2662: 1,55 - 3847: 17,72 - 3860: 18,68 - 3861: 21,68 - 4320: -6,12 - 4321: 3,12 - 4445: 14,25 - 4591: 20,33 - 5514: -20,7 - 5530: -20,-7 - 5551: -34,30 - 5552: -34,25 - 5584: -14,59 - 5585: -14,66 - 5631: 10,-7 - 5967: -2,-5 - 5968: -2,-1 - 5969: -2,3 - 5970: -2,7 - 6074: -13,-18 - 6112: 16,-7 - 6124: 16,7 - 6169: -20,-22 - 6300: 16,-22 - 6372: 12,-18 - 6373: 12,-18 - 6542: -33,3 - 6545: -33,-10 - 6546: -17,-1 - 6772: -26,7 - 6813: -34,16 - 6814: -34,16 - 6815: -34,8 - 7452: 46,10 - 8171: 33,-17 - 8197: 34,-7 - 8212: 46,-18 - 8719: -2,-37 - 8720: -2,-29 - 8721: -2,-22 - 8722: -7,-22 - 8723: -14,-22 - 8724: 4,-22 - 8725: 11,-22 - 8726: -2,-57 - 8727: -2,-63 - 9079: -5,-74 - 9080: -2,-63 - 9090: -6,-66 - 9091: -6,-66 - 9092: -6,-68 - 9126: -2,-82 - 9127: -2,-82 - 9635: 16,-37 - 9636: 26,-37 - 11447: -20,-33 - 11456: -24,-33 - 11466: -15,-37 - 11621: -15,-45 - 12494: -24,-78 - 12671: -31,70 - 12672: -13,70 - 12673: -21,66 - 12674: -7,66 - 12675: 5,70 - 12711: -21,59 - 12718: -7,59 - 13483: -30,-80 - 14317: -61,20 - 14340: -66,13 - 14384: -20,21 - 14390: 16,21 - 15288: -43,3 - 15302: -43,7 - 15799: 79,-1 - 15800: 83,-1 - 15801: 87,-1 - 15936: 91,15 - 15942: 91,15 - 16691: -53,7 - 16692: -53,3 - 16853: -59,3 - 17020: -49,-12 - 17021: -49,-18 - 17062: -71,-9 - 17305: -71,-9 - 17608: -82,13 - 17609: -82,15 - 17610: -82,15 - 17778: -54,19 - 17985: -54,35 - 17986: -57,38 - 17988: -54,38 - 18011: -55,25 - 18457: 12,-11 - 18908: 68,10 - 19706: -9,-40 - 20006: 64,27 + 2094: -20,54 + 2203: -29,38 + 2539: 1,55 + 3714: 17,72 + 3727: 18,68 + 3728: 21,68 + 4170: -6,12 + 4171: 3,12 + 4295: 14,25 + 4441: 20,33 + 5362: -20,7 + 5378: -20,-7 + 5399: -34,30 + 5400: -34,25 + 5432: -14,59 + 5433: -14,66 + 5479: 10,-7 + 5815: -2,-5 + 5816: -2,-1 + 5817: -2,3 + 5818: -2,7 + 5922: -13,-18 + 5960: 16,-7 + 5972: 16,7 + 6017: -20,-22 + 6148: 16,-22 + 6220: 12,-18 + 6221: 12,-18 + 6390: -33,3 + 6393: -33,-10 + 6394: -17,-1 + 6620: -26,7 + 6661: -34,16 + 6662: -34,16 + 6663: -34,8 + 7300: 46,10 + 8017: 33,-17 + 8043: 34,-7 + 8058: 46,-18 + 8557: -2,-37 + 8558: -2,-29 + 8559: -2,-22 + 8560: -7,-22 + 8561: -14,-22 + 8562: 4,-22 + 8563: 11,-22 + 8564: -2,-57 + 8565: -2,-63 + 8917: -5,-74 + 8918: -2,-63 + 8928: -6,-66 + 8929: -6,-66 + 8930: -6,-68 + 8964: -2,-82 + 8965: -2,-82 + 9473: 16,-37 + 9474: 26,-37 + 10944: -20,-33 + 10953: -24,-33 + 10963: -15,-37 + 11118: -15,-45 + 11832: -24,-78 + 11989: -31,70 + 11990: -13,70 + 11991: -21,66 + 11992: -7,66 + 11993: 5,70 + 12029: -21,59 + 12035: -7,59 + 12539: -30,-80 + 13373: -61,20 + 13396: -66,13 + 13440: -20,21 + 13446: 16,21 + 14337: -43,3 + 14351: -43,7 + 14848: 79,-1 + 14849: 83,-1 + 14850: 87,-1 + 14985: 91,15 + 14991: 91,15 + 15740: -53,7 + 15741: -53,3 + 15902: -59,3 + 16069: -49,-12 + 16070: -49,-18 + 16111: -71,-9 + 16354: -71,-9 + 16657: -82,13 + 16658: -82,15 + 16659: -82,15 + 16827: -54,19 + 17034: -54,35 + 17035: -57,38 + 17037: -54,38 + 17060: -55,25 + 17506: 12,-11 + 17952: 68,10 + 18750: -9,-40 + 19012: 64,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 4043: -20,25 - 4111: 4,25 - 4112: 7,25 + 3893: -20,25 + 3961: 4,25 + 3962: 7,25 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNe decals: - 4191: -11,15 - 4278: 4,16 - 4281: 7,15 - 4295: 11,15 - 4307: 14,15 - 15154: -6,14 - 15155: -12,15 - 15156: 1,16 - 15157: 8,14 - 15158: 10,15 - 21235: -18,11 - 21246: -18,15 + 4041: -11,15 + 4128: 4,16 + 4131: 7,15 + 4145: 11,15 + 4157: 14,15 + 14210: -6,14 + 14211: -12,15 + 14212: 1,16 + 14213: 8,14 + 14214: 10,15 + 20241: -18,11 + 20252: -18,15 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNe decals: - 2981: -26,53 - 2982: -27,54 + 2858: -26,53 + 2859: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNe decals: - 11689: -7,-38 - 11690: -4,-40 - 11697: -7,-38 - 11698: -5,-39 - 12065: -30,-48 + 11174: -7,-38 + 11175: -4,-40 + 11182: -7,-38 + 11183: -5,-39 + 11403: -30,-48 - node: color: '#D381C9FF' id: BrickTileDarkInnerNe decals: - 24287: -46,-25 - 24303: -45,-27 - 24326: -42,-26 - 24327: -38,-26 - 24328: -34,-26 - 24338: -33,-27 - 24342: -41,-27 - 24348: -37,-27 - 24349: -29,-26 + 23291: -46,-25 + 23307: -45,-27 + 23330: -42,-26 + 23331: -38,-26 + 23332: -34,-26 + 23342: -33,-27 + 23346: -41,-27 + 23352: -37,-27 + 23353: -29,-26 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNe decals: - 7412: 36,9 - 7414: 37,8 - 7417: 40,1 - 7422: 48,12 - 7426: 47,13 - 7436: 47,-3 - 7444: 73,19 - 7446: 53,9 - 7450: 73,3 - 7477: 51,13 - 7478: 51,13 - 7492: 47,23 - 7495: 48,16 - 7503: 52,19 - 7504: 54,17 - 7517: 57,19 - 7543: 59,25 - 7600: 52,-3 - 7628: 60,12 - 7647: 75,23 - 7656: 76,22 - 7661: 75,25 - 7666: 74,9 - 15490: 74,1 - 18967: 67,-1 - 18974: 44,0 - 18988: 36,6 - 19007: 37,4 - 19039: 44,8 - 19040: 44,12 - 19076: 47,19 - 19127: 71,-4 - 19130: 69,-3 - 19256: 55,5 - 19277: 70,-1 - 19561: 51,21 - 19562: 54,21 - 19563: 50,28 - 19564: 55,28 - 19948: 58,31 + 7260: 36,9 + 7262: 37,8 + 7265: 40,1 + 7270: 48,12 + 7274: 47,13 + 7284: 47,-3 + 7292: 73,19 + 7294: 53,9 + 7298: 73,3 + 7325: 51,13 + 7326: 51,13 + 7340: 47,23 + 7343: 48,16 + 7351: 52,19 + 7352: 54,17 + 7365: 57,19 + 7391: 59,25 + 7448: 52,-3 + 7476: 60,12 + 7495: 75,23 + 7504: 76,22 + 7509: 75,25 + 7514: 74,9 + 14539: 74,1 + 18011: 67,-1 + 18018: 44,0 + 18032: 36,6 + 18051: 37,4 + 18083: 44,8 + 18084: 44,12 + 18120: 47,19 + 18171: 71,-4 + 18174: 69,-3 + 18300: 55,5 + 18321: 70,-1 + 18605: 51,21 + 18606: 54,21 + 18607: 50,28 + 18608: 55,28 + 18954: 58,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNe decals: - 17484: -66,4 - 17510: -61,6 - 17511: -61,10 - 17564: -72,8 + 16533: -66,4 + 16559: -61,6 + 16560: -61,10 + 16613: -72,8 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1974: -9,33 - 1980: -12,33 - 2029: -16,28 - 2402: -33,37 - 2404: -31,37 - 2405: -30,36 - 2416: -10,45 - 2419: -10,43 - 2420: -10,43 - 2547: -7,43 - 2548: -6,37 - 2619: -2,40 - 2624: -3,40 - 3214: -3,64 - 3215: -2,61 - 3446: -3,64 - 3879: 19,67 - 3882: 22,67 - 3883: 23,66 - 3944: 17,61 - 3949: 18,60 - 5716: 11,1 - 5722: 8,3 - 5806: -15,-5 - 5852: -10,-3 - 6570: -24,-5 - 6615: -24,-7 - 7230: 23,-8 - 7231: 23,-2 - 7234: 22,2 - 7281: 27,9 - 7388: 37,4 - 7694: 36,20 - 7695: 36,20 - 7701: 43,20 - 8498: 56,-24 - 8504: 56,-20 - 8505: 56,-20 - 8510: 52,-23 - 9001: -8,-28 - 9002: -8,-23 - 9008: -4,-23 - 9013: -4,-27 - 9014: -15,-23 - 9018: -16,-27 - 9039: 3,-23 - 9040: 10,-23 - 9041: 14,-23 - 9042: 14,-27 - 9043: 2,-27 - 9057: 10,-28 - 10368: 4,-49 - 10392: 13,-60 - 10393: 12,-59 - 10413: 10,-58 - 12337: -17,-74 - 12355: -17,-65 - 12468: -14,-78 - 12489: -20,-81 - 12524: -23,-66 - 12538: -24,-64 - 12617: -38,27 - 13478: -31,-79 - 13482: -37,-79 - 13486: -37,-80 - 15417: 60,-31 - 15558: 79,1 - 15559: 84,1 - 15560: 88,1 - 15577: 92,7 - 15656: 95,3 - 16707: -48,6 - 16773: -53,-1 - 16774: -56,1 - 16775: -53,-7 - 16776: -53,-12 - 16777: -55,-17 - 18266: -64,-7 - 18267: -69,-7 - 18268: -58,-8 - 18298: -50,-38 - 19358: -9,27 - 19359: -9,30 - 19417: -12,33 - 19427: -9,30 - 19431: -9,27 - 19435: -9,33 - 19833: 96,2 - 19971: -1,54 + 1856: -9,33 + 1862: -12,33 + 1910: -16,28 + 2279: -33,37 + 2281: -31,37 + 2282: -30,36 + 2293: -10,45 + 2296: -10,43 + 2297: -10,43 + 2424: -7,43 + 2425: -6,37 + 2496: -2,40 + 2501: -3,40 + 3088: -3,64 + 3089: -2,61 + 3317: -3,64 + 3746: 19,67 + 3749: 22,67 + 3750: 23,66 + 3811: 17,61 + 3816: 18,60 + 5564: 11,1 + 5570: 8,3 + 5654: -15,-5 + 5700: -10,-3 + 6418: -24,-5 + 6463: -24,-7 + 7078: 23,-8 + 7079: 23,-2 + 7082: 22,2 + 7129: 27,9 + 7236: 37,4 + 7542: 36,20 + 7543: 36,20 + 7549: 43,20 + 8341: 56,-24 + 8347: 56,-20 + 8348: 56,-20 + 8352: 52,-23 + 8839: -8,-28 + 8840: -8,-23 + 8846: -4,-23 + 8851: -4,-27 + 8852: -15,-23 + 8856: -16,-27 + 8877: 3,-23 + 8878: 10,-23 + 8879: 14,-23 + 8880: 14,-27 + 8881: 2,-27 + 8895: 10,-28 + 10206: 4,-49 + 10230: 13,-60 + 10231: 12,-59 + 10251: 10,-58 + 11675: -17,-74 + 11693: -17,-65 + 11806: -14,-78 + 11827: -20,-81 + 11862: -23,-66 + 11876: -24,-64 + 11935: -38,27 + 12534: -31,-79 + 12538: -37,-79 + 12542: -37,-80 + 14466: 60,-31 + 14607: 79,1 + 14608: 84,1 + 14609: 88,1 + 14626: 92,7 + 14705: 95,3 + 15756: -48,6 + 15822: -53,-1 + 15823: -56,1 + 15824: -53,-7 + 15825: -53,-12 + 15826: -55,-17 + 17315: -64,-7 + 17316: -69,-7 + 17317: -58,-8 + 17347: -50,-38 + 18402: -9,27 + 18403: -9,30 + 18461: -12,33 + 18471: -9,30 + 18475: -9,27 + 18479: -9,33 + 18839: 96,2 + 18977: -1,54 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNw decals: - 4175: -16,15 - 4181: -13,15 - 4192: -9,15 - 4280: 9,15 - 5510: -6,16 - 15151: -10,14 - 15153: -12,15 - 15159: 10,15 - 15170: 4,14 - 21225: -16,15 - 21238: 16,11 - 21243: 16,15 + 4025: -16,15 + 4031: -13,15 + 4042: -9,15 + 4130: 9,15 + 5358: -6,16 + 14207: -10,14 + 14209: -12,15 + 14215: 10,15 + 14226: 4,14 + 20231: -16,15 + 20244: 16,11 + 20249: 16,15 - node: color: '#96A4EBFF' id: BrickTileDarkInnerNw decals: - 15150: -10,14 - 19444: -3,16 + 14206: -10,14 + 18488: -3,16 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNw decals: - 2973: -27,53 + 2850: -27,53 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNw decals: - 11688: -7,-38 - 11693: -11,-41 - 11696: -7,-38 - 11699: -10,-39 - 12059: -30,-46 - 12064: -23,-48 + 11173: -7,-38 + 11178: -11,-41 + 11181: -7,-38 + 11184: -10,-39 + 11397: -30,-46 + 11402: -23,-48 - node: color: '#D381C9FF' id: BrickTileDarkInnerNw decals: - 24278: -48,-28 - 24280: -48,-31 - 24288: -46,-25 - 24297: -47,-23 - 24323: -42,-26 - 24324: -38,-26 - 24325: -34,-26 - 24337: -43,-27 - 24341: -39,-27 - 24347: -35,-27 - 24350: -29,-26 - 24370: -31,-27 + 23282: -48,-28 + 23284: -48,-31 + 23292: -46,-25 + 23301: -47,-23 + 23327: -42,-26 + 23328: -38,-26 + 23329: -34,-26 + 23341: -43,-27 + 23345: -39,-27 + 23351: -35,-27 + 23354: -29,-26 + 23374: -31,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNw decals: - 7374: 39,6 - 7385: 39,4 - 7405: 39,8 - 7407: 46,12 - 7410: 36,9 - 7411: 36,9 - 7416: 40,1 - 7419: 46,0 - 7425: 47,13 - 7435: 47,-3 - 7443: 73,19 - 7445: 53,9 - 7447: 72,1 - 7449: 73,3 - 7461: 50,8 - 7464: 50,4 - 7476: 51,13 - 7482: 50,12 - 7498: 45,20 - 7502: 52,19 - 7505: 50,16 - 7521: 57,19 - 7522: 56,17 - 7531: 49,23 - 7599: 52,-3 - 7632: 72,6 - 7633: 72,13 - 7635: 72,18 - 7646: 75,23 - 7662: 75,25 - 15481: 72,-1 - 18987: 36,6 - 19006: 34,4 - 19129: 69,-3 - 19279: 69,-1 - 19310: -20,-26 - 19557: 53,28 - 19558: 58,28 - 19559: 57,21 - 19560: 54,21 - 19945: 50,31 + 7222: 39,6 + 7233: 39,4 + 7253: 39,8 + 7255: 46,12 + 7258: 36,9 + 7259: 36,9 + 7264: 40,1 + 7267: 46,0 + 7273: 47,13 + 7283: 47,-3 + 7291: 73,19 + 7293: 53,9 + 7295: 72,1 + 7297: 73,3 + 7309: 50,8 + 7312: 50,4 + 7324: 51,13 + 7330: 50,12 + 7346: 45,20 + 7350: 52,19 + 7353: 50,16 + 7369: 57,19 + 7370: 56,17 + 7379: 49,23 + 7447: 52,-3 + 7480: 72,6 + 7481: 72,13 + 7483: 72,18 + 7494: 75,23 + 7510: 75,25 + 14530: 72,-1 + 18031: 36,6 + 18050: 34,4 + 18173: 69,-3 + 18323: 69,-1 + 18354: -20,-26 + 18601: 53,28 + 18602: 58,28 + 18603: 57,21 + 18604: 54,21 + 18951: 50,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNw decals: - 17483: -61,4 - 17563: -72,8 - 17741: -59,6 + 16532: -61,4 + 16612: -72,8 + 16790: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1981: -10,33 - 2031: -17,30 - 2036: -15,34 - 2383: -30,32 - 2384: -29,33 - 2403: -31,37 - 2533: -8,45 - 2535: -8,43 - 2622: -4,37 - 2623: -3,40 - 2689: -1,51 - 2725: -4,54 - 3222: -2,60 - 3880: 21,67 - 3950: 16,62 - 4658: 21,24 - 5723: 8,3 - 5816: -13,-5 - 5851: -10,-3 - 6568: -26,-6 - 6569: -24,-5 - 6614: -24,-7 - 7226: 20,-3 - 7233: 22,2 - 7357: 34,4 - 8499: 62,-24 - 8500: 62,-24 - 8509: 52,-23 - 9000: -12,-28 - 9004: -12,-23 - 9007: -5,-23 - 9012: -4,-27 - 9015: -16,-23 - 9019: -16,-27 - 9034: 2,-23 - 9035: 6,-23 - 9036: 13,-23 - 9037: 14,-27 - 9038: 14,-27 - 9044: 2,-27 - 9056: 6,-28 - 10369: 4,-49 - 10377: 2,-51 - 10390: 11,-60 - 10394: 12,-59 - 10618: 80,-47 - 10619: 80,-47 - 12336: -17,-74 - 12354: -17,-65 - 12467: -14,-78 - 12482: -17,-80 - 12495: -23,-78 - 12516: -23,-72 - 12539: -24,-64 - 12620: -38,26 - 12781: -18,-81 - 13494: -35,-79 - 15416: 58,-31 - 15555: 77,1 - 15556: 81,1 - 15557: 86,1 - 15576: 92,7 - 15654: 94,3 - 15655: 93,2 - 15764: 81,-2 - 15795: 85,-2 - 15796: 89,-2 - 15822: 95,13 - 16706: -48,6 - 16771: -53,-1 - 16772: -58,1 - 16778: -53,-12 - 16779: -57,-17 - 16780: -53,-7 - 17042: -46,-18 - 18004: -53,35 - 18263: -72,-7 - 18264: -67,-7 - 18265: -60,-8 - 19377: -14,31 - 19416: -10,33 - 21293: 22,15 + 1863: -10,33 + 1912: -17,30 + 1917: -15,34 + 2260: -30,32 + 2261: -29,33 + 2280: -31,37 + 2410: -8,45 + 2412: -8,43 + 2499: -4,37 + 2500: -3,40 + 2566: -1,51 + 2602: -4,54 + 3096: -2,60 + 3747: 21,67 + 3817: 16,62 + 4508: 21,24 + 5571: 8,3 + 5664: -13,-5 + 5699: -10,-3 + 6416: -26,-6 + 6417: -24,-5 + 6462: -24,-7 + 7074: 20,-3 + 7081: 22,2 + 7205: 34,4 + 8342: 62,-24 + 8343: 62,-24 + 8351: 52,-23 + 8838: -12,-28 + 8842: -12,-23 + 8845: -5,-23 + 8850: -4,-27 + 8853: -16,-23 + 8857: -16,-27 + 8872: 2,-23 + 8873: 6,-23 + 8874: 13,-23 + 8875: 14,-27 + 8876: 14,-27 + 8882: 2,-27 + 8894: 6,-28 + 10207: 4,-49 + 10215: 2,-51 + 10228: 11,-60 + 10232: 12,-59 + 10456: 80,-47 + 10457: 80,-47 + 11674: -17,-74 + 11692: -17,-65 + 11805: -14,-78 + 11820: -17,-80 + 11833: -23,-78 + 11854: -23,-72 + 11877: -24,-64 + 11938: -38,26 + 12095: -18,-81 + 12550: -35,-79 + 14465: 58,-31 + 14604: 77,1 + 14605: 81,1 + 14606: 86,1 + 14625: 92,7 + 14703: 94,3 + 14704: 93,2 + 14813: 81,-2 + 14844: 85,-2 + 14845: 89,-2 + 14871: 95,13 + 15755: -48,6 + 15820: -53,-1 + 15821: -58,1 + 15827: -53,-12 + 15828: -57,-17 + 15829: -53,-7 + 16091: -46,-18 + 17053: -53,35 + 17312: -72,-7 + 17313: -67,-7 + 17314: -60,-8 + 18421: -14,31 + 18460: -10,33 + 20299: 22,15 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSe decals: - 4195: -10,13 - 4283: 8,13 - 4293: -4,15 - 4294: 11,14 - 4306: 14,14 - 4316: -2,15 - 15160: -12,14 - 15161: -6,14 - 15162: 1,16 - 15163: 8,14 - 15164: 10,14 - 21236: -18,18 - 21245: -18,14 + 4045: -10,13 + 4133: 8,13 + 4143: -4,15 + 4144: 11,14 + 4156: 14,14 + 4166: -2,15 + 14216: -12,14 + 14217: -6,14 + 14218: 1,16 + 14219: 8,14 + 14220: 10,14 + 20242: -18,18 + 20251: -18,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSe decals: - 2980: -26,52 + 2857: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSe decals: - 11691: -4,-41 - 11694: -6,-44 - 11700: -5,-43 - 12062: -24,-48 + 11176: -4,-41 + 11179: -6,-44 + 11185: -5,-43 + 11400: -24,-48 - node: color: '#D381C9FF' id: BrickTileDarkInnerSe decals: - 24299: -46,-23 - 24304: -45,-29 - 24332: -42,-30 - 24333: -38,-30 - 24334: -34,-30 - 24335: -33,-29 - 24344: -41,-29 - 24345: -37,-29 - 24354: -29,-32 - 24373: -29,-32 + 23303: -46,-23 + 23308: -45,-29 + 23336: -42,-30 + 23337: -38,-30 + 23338: -34,-30 + 23339: -33,-29 + 23348: -41,-29 + 23349: -37,-29 + 23358: -29,-32 + 23377: -29,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSe decals: - 7408: 36,11 - 7420: 47,-1 - 7423: 48,12 - 7424: 48,12 - 7440: 61,-1 - 7441: 52,-1 - 7442: 65,-1 - 7479: 53,11 - 7490: 47,15 - 7493: 47,22 - 7494: 48,16 - 7501: 51,15 - 7506: 54,17 - 7520: 57,19 - 7528: 52,21 - 7541: 57,21 - 7542: 59,25 - 7627: 60,12 - 7653: 73,21 - 7657: 76,22 - 7664: 75,25 - 7665: 74,9 - 7836: 73,5 - 15491: 74,1 - 18975: 44,0 - 19005: 35,4 - 19008: 37,6 - 19013: 36,8 - 19041: 44,8 - 19042: 44,12 - 19043: 40,11 - 19128: 71,-4 - 19257: 55,4 - 19266: 69,-1 - 19276: 70,1 - 19306: -18,-24 - 19550: 51,28 - 19551: 54,28 - 19552: 50,31 - 19553: 52,32 + 7256: 36,11 + 7268: 47,-1 + 7271: 48,12 + 7272: 48,12 + 7288: 61,-1 + 7289: 52,-1 + 7290: 65,-1 + 7327: 53,11 + 7338: 47,15 + 7341: 47,22 + 7342: 48,16 + 7349: 51,15 + 7354: 54,17 + 7368: 57,19 + 7376: 52,21 + 7389: 57,21 + 7390: 59,25 + 7475: 60,12 + 7501: 73,21 + 7505: 76,22 + 7512: 75,25 + 7513: 74,9 + 7684: 73,5 + 14540: 74,1 + 18019: 44,0 + 18049: 35,4 + 18052: 37,6 + 18057: 36,8 + 18085: 44,8 + 18086: 44,12 + 18087: 40,11 + 18172: 71,-4 + 18301: 55,4 + 18310: 69,-1 + 18320: 70,1 + 18350: -18,-24 + 18594: 51,28 + 18595: 54,28 + 18596: 50,31 + 18597: 52,32 - node: color: '#EFB341FF' id: BrickTileDarkInnerSe decals: - 17481: -66,11 - 17512: -61,10 - 17513: -61,6 - 17580: -73,4 + 16530: -66,11 + 16561: -61,10 + 16562: -61,6 + 16629: -73,4 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1979: -9,33 - 2028: -16,32 - 2047: -18,35 - 2400: -33,33 - 2406: -31,33 - 2407: -30,34 - 2417: -10,45 - 2423: -10,39 - 2549: -6,37 - 2550: -6,37 - 2618: -2,40 - 2680: 3,50 - 2719: -5,54 - 2726: -6,52 - 3213: -3,61 - 3216: -2,61 - 3447: -3,61 - 3884: 23,66 - 3941: 17,58 - 5699: 8,5 - 5717: 11,1 - 5760: 10,0 - 5807: -15,-5 - 5821: -10,-6 - 6572: -24,-9 - 6617: -24,-7 - 7229: 22,-8 - 7232: 23,-2 - 7282: 27,9 - 7321: 29,8 - 7360: 35,4 - 7389: 37,6 - 7696: 36,20 - 7697: 36,20 - 7702: 43,20 - 8502: 56,-17 - 8503: 56,-17 - 8506: 56,-21 - 8998: -8,-28 - 9005: -8,-23 - 9009: -4,-23 - 9010: -4,-28 - 9017: -15,-23 - 9021: -16,-28 - 9027: 10,-23 - 9028: 14,-23 - 9029: 14,-28 - 9046: 2,-28 - 9047: 3,-23 - 9058: 10,-28 - 10380: 10,-53 - 10389: 13,-60 - 10396: 12,-61 - 10634: 73,-40 - 12339: -17,-67 - 12469: -13,-78 - 12490: -20,-81 - 12523: -23,-67 - 12616: -38,27 - 13481: -37,-79 - 13496: -31,-79 - 13501: -34,-79 - 15291: -42,3 - 15415: 60,-10 - 15561: 79,1 - 15562: 84,1 - 15563: 88,1 - 15571: 92,9 - 15609: 92,6 - 15658: 95,1 - 15674: 96,2 - 15808: 93,10 - 15814: 97,14 - 15816: 96,14 - 16708: -49,4 - 16786: -55,-17 - 16787: -53,-15 - 16788: -53,-9 - 16789: -53,-4 - 16790: -56,1 - 18272: -64,-7 - 18273: -69,-7 - 19357: -9,27 - 19360: -9,30 - 19366: -12,27 - 19421: -12,27 - 19426: -9,30 - 19428: -9,27 - 19434: -9,33 - 20030: 62,28 - 20031: 67,28 + 1861: -9,33 + 1909: -16,32 + 1928: -18,35 + 2277: -33,33 + 2283: -31,33 + 2284: -30,34 + 2294: -10,45 + 2300: -10,39 + 2426: -6,37 + 2427: -6,37 + 2495: -2,40 + 2557: 3,50 + 2596: -5,54 + 2603: -6,52 + 3087: -3,61 + 3090: -2,61 + 3318: -3,61 + 3751: 23,66 + 3808: 17,58 + 5547: 8,5 + 5565: 11,1 + 5608: 10,0 + 5655: -15,-5 + 5669: -10,-6 + 6420: -24,-9 + 6465: -24,-7 + 7077: 22,-8 + 7080: 23,-2 + 7130: 27,9 + 7169: 29,8 + 7208: 35,4 + 7237: 37,6 + 7544: 36,20 + 7545: 36,20 + 7550: 43,20 + 8345: 56,-17 + 8346: 56,-17 + 8836: -8,-28 + 8843: -8,-23 + 8847: -4,-23 + 8848: -4,-28 + 8855: -15,-23 + 8859: -16,-28 + 8865: 10,-23 + 8866: 14,-23 + 8867: 14,-28 + 8884: 2,-28 + 8885: 3,-23 + 8896: 10,-28 + 10218: 10,-53 + 10227: 13,-60 + 10234: 12,-61 + 10472: 73,-40 + 11677: -17,-67 + 11807: -13,-78 + 11828: -20,-81 + 11861: -23,-67 + 11934: -38,27 + 12537: -37,-79 + 12552: -31,-79 + 12557: -34,-79 + 14340: -42,3 + 14464: 60,-10 + 14610: 79,1 + 14611: 84,1 + 14612: 88,1 + 14620: 92,9 + 14658: 92,6 + 14707: 95,1 + 14723: 96,2 + 14857: 93,10 + 14863: 97,14 + 14865: 96,14 + 15757: -49,4 + 15835: -55,-17 + 15836: -53,-15 + 15837: -53,-9 + 15838: -53,-4 + 15839: -56,1 + 17321: -64,-7 + 17322: -69,-7 + 18401: -9,27 + 18404: -9,30 + 18410: -12,27 + 18465: -12,27 + 18470: -9,30 + 18472: -9,27 + 18478: -9,33 + 19036: 62,28 + 19037: 67,28 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSw decals: - 4176: -16,14 - 4182: -13,14 - 4194: -10,13 - 4282: 8,13 - 4292: 2,15 - 4315: -2,15 - 9883: 30,-44 - 15165: 4,14 - 15166: 10,14 - 15167: -3,16 - 15168: -10,14 - 15169: -12,14 - 21224: -16,14 - 21237: 16,18 - 21244: 16,14 + 4026: -16,14 + 4032: -13,14 + 4044: -10,13 + 4132: 8,13 + 4142: 2,15 + 4165: -2,15 + 9721: 30,-44 + 14221: 4,14 + 14222: 10,14 + 14223: -3,16 + 14224: -10,14 + 14225: -12,14 + 20230: -16,14 + 20243: 16,18 + 20250: 16,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSw decals: - 2974: -27,53 - 2979: -26,52 + 2851: -27,53 + 2856: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSw decals: - 11692: -11,-41 - 11695: -6,-44 - 12060: -30,-46 - 12061: -24,-48 + 11177: -11,-41 + 11180: -6,-44 + 11398: -30,-46 + 11399: -24,-48 - node: color: '#D381C9FF' id: BrickTileDarkInnerSw decals: - 24277: -48,-28 - 24279: -48,-25 - 24298: -46,-23 - 24329: -42,-30 - 24330: -38,-30 - 24331: -34,-30 - 24336: -43,-29 - 24343: -39,-29 - 24346: -35,-29 - 24355: -29,-32 - 24371: -31,-29 - 24372: -29,-32 + 23281: -48,-28 + 23283: -48,-25 + 23302: -46,-23 + 23333: -42,-30 + 23334: -38,-30 + 23335: -34,-30 + 23340: -43,-29 + 23347: -39,-29 + 23350: -35,-29 + 23359: -29,-32 + 23375: -31,-29 + 23376: -29,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSw decals: - 7373: 39,4 - 7386: 39,6 - 7404: 39,8 - 7406: 46,12 - 7409: 36,11 - 7418: 46,0 - 7421: 47,-1 - 7437: 52,-1 - 7438: 61,-1 - 7439: 65,-1 - 7448: 72,1 - 7462: 50,8 - 7463: 50,4 - 7480: 53,11 - 7481: 50,12 - 7491: 47,15 - 7499: 45,20 - 7500: 51,15 - 7507: 50,16 - 7523: 56,17 - 7524: 56,17 - 7529: 52,21 - 7530: 49,22 - 7540: 57,21 - 7631: 72,6 - 7634: 72,13 - 7636: 72,18 - 7652: 73,21 - 7663: 75,25 - 7837: 73,5 - 15480: 72,-1 - 19002: 34,6 - 19003: 35,4 - 19014: 36,8 - 19044: 40,11 - 19267: 69,-1 - 19278: 69,1 - 19309: -20,-26 - 19554: 56,32 - 19555: 58,31 - 19556: 57,28 - 19587: 54,28 + 7221: 39,4 + 7234: 39,6 + 7252: 39,8 + 7254: 46,12 + 7257: 36,11 + 7266: 46,0 + 7269: 47,-1 + 7285: 52,-1 + 7286: 61,-1 + 7287: 65,-1 + 7296: 72,1 + 7310: 50,8 + 7311: 50,4 + 7328: 53,11 + 7329: 50,12 + 7339: 47,15 + 7347: 45,20 + 7348: 51,15 + 7355: 50,16 + 7371: 56,17 + 7372: 56,17 + 7377: 52,21 + 7378: 49,22 + 7388: 57,21 + 7479: 72,6 + 7482: 72,13 + 7484: 72,18 + 7500: 73,21 + 7511: 75,25 + 7685: 73,5 + 14529: 72,-1 + 18046: 34,6 + 18047: 35,4 + 18058: 36,8 + 18088: 40,11 + 18311: 69,-1 + 18322: 69,1 + 18353: -20,-26 + 18598: 56,32 + 18599: 58,31 + 18600: 57,28 + 18631: 54,28 - node: color: '#EFB341FF' id: BrickTileDarkInnerSw decals: - 17482: -61,11 - 17579: -73,4 - 17740: -59,6 + 16531: -61,11 + 16628: -73,4 + 16789: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1991: -10,27 - 2030: -17,30 - 2340: -28,38 - 2385: -29,37 - 2386: -30,38 - 2401: -31,33 - 2534: -8,45 - 2536: -8,39 - 2621: -4,37 - 2679: 3,50 - 2688: -1,51 - 2727: -6,52 - 3940: 17,58 - 5700: 8,5 - 5759: 10,0 - 5817: -13,-5 - 5820: -10,-6 - 6567: -26,-6 - 6571: -24,-9 - 6616: -24,-7 - 7227: 20,-3 - 7228: 22,-8 - 7358: 34,6 - 7359: 35,4 - 8501: 62,-17 - 8999: -12,-28 - 9003: -12,-23 - 9006: -5,-23 - 9011: -4,-28 - 9016: -16,-23 - 9020: -16,-28 - 9030: 14,-28 - 9031: 2,-23 - 9032: 6,-23 - 9033: 13,-23 - 9045: 2,-28 - 9059: 6,-28 - 10375: 2,-51 - 10379: 10,-53 - 10391: 11,-60 - 10395: 12,-61 - 10633: 73,-40 - 12338: -17,-67 - 12481: -17,-78 - 12496: -23,-78 - 12522: -23,-76 - 12537: -23,-70 - 12780: -18,-81 - 13495: -35,-79 - 15292: -42,3 - 15414: 58,-10 - 15564: 81,1 - 15565: 77,1 - 15572: 92,9 - 15608: 92,6 - 15657: 94,1 - 15673: 93,2 - 15815: 97,14 - 15821: 95,13 - 16781: -58,1 - 16782: -53,-4 - 16783: -53,-9 - 16784: -53,-15 - 16785: -57,-17 - 17043: -46,-12 - 18002: -53,38 - 18003: -53,35 - 18018: -52,25 - 18269: -72,-7 - 18270: -67,-7 - 18271: -60,-8 - 19355: -9,26 - 19378: -14,34 - 19420: -10,27 - 19437: -14,29 - 19910: 86,1 - 20032: 64,28 - 20033: 62,28 - 21294: 22,14 + 1873: -10,27 + 1911: -17,30 + 2217: -28,38 + 2262: -29,37 + 2263: -30,38 + 2278: -31,33 + 2411: -8,45 + 2413: -8,39 + 2498: -4,37 + 2556: 3,50 + 2565: -1,51 + 2604: -6,52 + 3807: 17,58 + 5548: 8,5 + 5607: 10,0 + 5665: -13,-5 + 5668: -10,-6 + 6415: -26,-6 + 6419: -24,-9 + 6464: -24,-7 + 7075: 20,-3 + 7076: 22,-8 + 7206: 34,6 + 7207: 35,4 + 8344: 62,-17 + 8837: -12,-28 + 8841: -12,-23 + 8844: -5,-23 + 8849: -4,-28 + 8854: -16,-23 + 8858: -16,-28 + 8868: 14,-28 + 8869: 2,-23 + 8870: 6,-23 + 8871: 13,-23 + 8883: 2,-28 + 8897: 6,-28 + 10213: 2,-51 + 10217: 10,-53 + 10229: 11,-60 + 10233: 12,-61 + 10471: 73,-40 + 11676: -17,-67 + 11819: -17,-78 + 11834: -23,-78 + 11860: -23,-76 + 11875: -23,-70 + 12094: -18,-81 + 12551: -35,-79 + 14341: -42,3 + 14463: 58,-10 + 14613: 81,1 + 14614: 77,1 + 14621: 92,9 + 14657: 92,6 + 14706: 94,1 + 14722: 93,2 + 14864: 97,14 + 14870: 95,13 + 15830: -58,1 + 15831: -53,-4 + 15832: -53,-9 + 15833: -53,-15 + 15834: -57,-17 + 16092: -46,-12 + 17051: -53,38 + 17052: -53,35 + 17067: -52,25 + 17318: -72,-7 + 17319: -67,-7 + 17320: -60,-8 + 18399: -9,26 + 18422: -14,34 + 18464: -10,27 + 18481: -14,29 + 18916: 86,1 + 19038: 64,28 + 19039: 62,28 + 20300: 22,14 - node: color: '#8CB7E8FF' id: BrickTileDarkLineE decals: - 4173: -17,14 - 4174: -17,15 - 4179: -14,15 - 4180: -14,14 - 4250: -11,14 - 4251: -13,14 - 4252: -13,15 - 4253: -4,16 - 4254: 3,14 - 4255: 9,14 - 4256: 9,15 - 4275: 4,17 - 4286: -4,14 - 9875: 29,-44 - 21227: -18,16 - 21228: -18,17 - 21229: -18,13 - 21230: -18,12 + 4023: -17,14 + 4024: -17,15 + 4029: -14,15 + 4030: -14,14 + 4100: -11,14 + 4101: -13,14 + 4102: -13,15 + 4103: -4,16 + 4104: 3,14 + 4105: 9,14 + 4106: 9,15 + 4125: 4,17 + 4136: -4,14 + 9713: 29,-44 + 20233: -18,16 + 20234: -18,17 + 20235: -18,13 + 20236: -18,12 - node: color: '#96A4EBFF' id: BrickTileDarkLineE decals: - 21203: -18,13 - 21204: -18,12 - 21205: -18,16 - 21206: -18,17 + 20209: -18,13 + 20210: -18,12 + 20211: -18,16 + 20212: -18,17 - node: color: '#B18BDAFF' id: BrickTileDarkLineE decals: - 11681: -4,-42 - 11686: -12,-41 - 12035: -30,-45 - 12036: -30,-46 - 12037: -30,-47 - 12058: -31,-46 - 12183: -23,-47 - 12184: -23,-46 - 12185: -23,-45 + 11166: -4,-42 + 11171: -12,-41 + 11373: -30,-45 + 11374: -30,-46 + 11375: -30,-47 + 11396: -31,-46 + 11521: -23,-47 + 11522: -23,-46 + 11523: -23,-45 - node: color: '#D381C9FF' id: BrickTileDarkLineE decals: - 24276: -49,-28 - 24286: -45,-30 - 24291: -48,-23 - 24302: -45,-26 - 24305: -44,-29 - 24306: -44,-28 - 24307: -44,-27 - 24308: -32,-29 - 24309: -32,-28 - 24310: -32,-27 - 24361: -26,-31 - 24362: -26,-30 - 24363: -26,-29 - 24364: -26,-28 - 24365: -26,-27 + 23280: -49,-28 + 23290: -45,-30 + 23295: -48,-23 + 23306: -45,-26 + 23309: -44,-29 + 23310: -44,-28 + 23311: -44,-27 + 23312: -32,-29 + 23313: -32,-28 + 23314: -32,-27 + 23365: -26,-31 + 23366: -26,-30 + 23367: -26,-29 + 23368: -26,-28 + 23369: -26,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkLineE decals: - 3696: -1,61 - 3699: -1,61 - 4587: 11,30 - 7371: 38,4 - 7372: 38,6 - 7382: 49,-1 - 7383: 49,0 - 7384: 49,1 - 7391: 45,8 - 7394: 45,12 - 7403: 45,0 - 7433: 48,-4 - 7467: 49,4 - 7470: 49,8 - 7508: 49,16 - 7525: 55,17 - 7536: 48,22 - 7537: 48,23 - 7538: 48,23 - 7547: 49,12 - 7548: 44,20 - 7591: 53,-4 - 7592: 58,-4 - 7630: 71,6 - 7639: 71,13 - 7640: 71,18 - 7769: 71,-1 - 7770: 71,1 - 10453: 2,-60 - 10474: 3,-67 - 10475: 3,-66 - 10476: 3,-66 - 10477: 3,-75 - 10478: 3,-75 - 10479: 3,-76 - 10483: 7,-75 - 10484: 7,-77 - 10486: 7,-65 - 10487: 7,-65 - 15277: -49,9 - 15485: 74,0 - 15489: 74,2 - 18938: 74,6 - 18939: 74,7 - 18940: 74,8 - 18941: 74,10 - 18942: 74,11 - 18943: 74,13 - 18944: 74,12 - 18945: 74,14 - 18946: 74,15 - 18947: 74,17 - 18948: 74,16 - 18949: 74,18 - 18968: 67,0 - 18994: 33,6 - 18995: 33,4 - 19000: 37,5 - 19011: 38,4 - 19012: 38,6 - 19021: 41,0 - 19045: 48,11 - 19074: 47,21 - 19075: 47,20 - 19078: 48,17 - 19079: 48,18 - 19080: 59,22 - 19081: 59,23 - 19082: 59,24 - 19088: 59,28 - 19089: 59,27 - 19090: 59,26 - 19109: 54,16 - 19110: 54,18 - 19113: 57,17 - 19116: 57,18 - 19117: 57,16 - 19240: 55,6 - 19241: 55,7 - 19242: 55,8 - 19269: 68,-1 - 19270: 68,1 - 19275: 70,0 - 19303: -18,-25 - 19304: -18,-26 - 19305: -18,-27 - 19308: -21,-26 - 19497: 51,27 - 19498: 51,26 - 19499: 51,26 - 19500: 51,25 - 19501: 51,24 - 19502: 51,23 - 19503: 51,22 - 19512: 54,27 - 19513: 54,26 - 19514: 54,26 - 19515: 54,25 - 19516: 54,24 - 19517: 54,23 - 19518: 54,22 - 19526: 59,31 - 19527: 59,30 - 19528: 59,30 - 19529: 59,29 - 19541: 50,29 - 19542: 50,30 + 3563: -1,61 + 3566: -1,61 + 4437: 11,30 + 7219: 38,4 + 7220: 38,6 + 7230: 49,-1 + 7231: 49,0 + 7232: 49,1 + 7239: 45,8 + 7242: 45,12 + 7251: 45,0 + 7281: 48,-4 + 7315: 49,4 + 7318: 49,8 + 7356: 49,16 + 7373: 55,17 + 7384: 48,22 + 7385: 48,23 + 7386: 48,23 + 7395: 49,12 + 7396: 44,20 + 7439: 53,-4 + 7440: 58,-4 + 7478: 71,6 + 7487: 71,13 + 7488: 71,18 + 7617: 71,-1 + 7618: 71,1 + 10291: 2,-60 + 10312: 3,-67 + 10313: 3,-66 + 10314: 3,-66 + 10315: 3,-75 + 10316: 3,-75 + 10317: 3,-76 + 10321: 7,-75 + 10322: 7,-77 + 10324: 7,-65 + 10325: 7,-65 + 14333: -49,9 + 14534: 74,0 + 14538: 74,2 + 17982: 74,6 + 17983: 74,7 + 17984: 74,8 + 17985: 74,10 + 17986: 74,11 + 17987: 74,13 + 17988: 74,12 + 17989: 74,14 + 17990: 74,15 + 17991: 74,17 + 17992: 74,16 + 17993: 74,18 + 18012: 67,0 + 18038: 33,6 + 18039: 33,4 + 18044: 37,5 + 18055: 38,4 + 18056: 38,6 + 18065: 41,0 + 18089: 48,11 + 18118: 47,21 + 18119: 47,20 + 18122: 48,17 + 18123: 48,18 + 18124: 59,22 + 18125: 59,23 + 18126: 59,24 + 18132: 59,28 + 18133: 59,27 + 18134: 59,26 + 18153: 54,16 + 18154: 54,18 + 18157: 57,17 + 18160: 57,18 + 18161: 57,16 + 18284: 55,6 + 18285: 55,7 + 18286: 55,8 + 18313: 68,-1 + 18314: 68,1 + 18319: 70,0 + 18347: -18,-25 + 18348: -18,-26 + 18349: -18,-27 + 18352: -21,-26 + 18541: 51,27 + 18542: 51,26 + 18543: 51,26 + 18544: 51,25 + 18545: 51,24 + 18546: 51,23 + 18547: 51,22 + 18556: 54,27 + 18557: 54,26 + 18558: 54,26 + 18559: 54,25 + 18560: 54,24 + 18561: 54,23 + 18562: 54,22 + 18570: 59,31 + 18571: 59,30 + 18572: 59,30 + 18573: 59,29 + 18585: 50,29 + 18586: 50,30 - node: color: '#EFB341FF' id: BrickTileDarkLineE decals: - 17475: -66,5 - 17476: -66,6 - 17477: -66,7 - 17478: -66,8 - 17479: -66,9 - 17480: -66,10 - 17489: -61,9 - 17490: -61,8 - 17491: -61,7 - 17492: -61,5 - 17573: -70,5 - 17574: -70,6 - 17575: -70,7 - 17738: -56,6 - 17739: -59,6 - 17742: -60,6 - 18165: -67,0 - 18166: -67,-1 - 18167: -67,-2 + 16524: -66,5 + 16525: -66,6 + 16526: -66,7 + 16527: -66,8 + 16528: -66,9 + 16529: -66,10 + 16538: -61,9 + 16539: -61,8 + 16540: -61,7 + 16541: -61,5 + 16622: -70,5 + 16623: -70,6 + 16624: -70,7 + 16787: -56,6 + 16788: -59,6 + 16791: -60,6 + 17214: -67,0 + 17215: -67,-1 + 17216: -67,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1975: -9,28 - 1976: -9,29 - 1977: -9,31 - 1978: -9,32 - 2019: -15,27 - 2022: -16,31 - 2023: -15,33 - 2024: -16,30 - 2025: -16,29 - 2026: -16,30 - 2027: -16,31 - 2032: -18,26 - 2035: -15,34 - 2039: -18,34 - 2040: -18,33 - 2041: -18,32 - 2042: -18,31 - 2043: -18,29 - 2044: -18,28 - 2045: -18,27 - 2046: -18,30 - 2334: -28,33 - 2335: -28,34 - 2336: -28,35 - 2337: -28,36 - 2338: -28,37 - 2418: -10,44 - 2421: -10,37 - 2422: -10,38 - 2517: -9,40 - 2518: -9,41 - 2519: -9,42 - 2537: -9,39 - 2538: -9,40 - 2539: -9,41 - 2540: -9,42 - 2541: -9,43 - 2544: -7,45 - 2545: -7,44 - 2546: -7,44 - 2551: -6,38 - 2552: -6,39 - 2553: -6,40 - 2554: -6,41 - 2555: -6,42 - 2556: -9,45 - 2608: -5,37 - 2615: -2,37 - 2616: -2,38 - 2617: -2,39 - 2673: 4,53 - 2674: 4,52 - 2675: 4,51 - 2690: -2,51 - 2714: -5,53 - 3139: -16,61 - 3140: -16,62 - 3141: -16,63 - 3142: -16,64 - 3143: -8,64 - 3144: -8,63 - 3145: -8,62 - 3146: -8,61 - 3197: -22,61 - 3198: -22,62 - 3199: -22,63 - 3200: -22,64 - 3201: -2,64 - 3202: -2,63 - 3203: -2,62 - 3205: -3,60 - 3206: -3,65 - 3434: -1,61 - 3942: 17,62 - 3945: 18,61 - 3984: -40,62 - 4654: 19,24 - 5236: -28,91 - 5237: -28,90 - 5238: -28,90 - 5239: -28,89 - 5240: -28,81 - 5241: -28,80 - 5242: -32,80 - 5243: -32,81 - 5244: -32,89 - 5245: -32,90 - 5246: -32,90 - 5247: -32,91 - 5315: -14,91 - 5316: -14,90 - 5317: -14,89 - 5323: -10,91 - 5324: -10,90 - 5325: -10,89 - 5334: -14,80 - 5335: -14,81 - 5338: -10,80 - 5339: -10,81 - 5345: 4,80 - 5346: 4,81 - 5347: 4,81 - 5348: 4,82 - 5628: -17,-20 - 5647: -7,9 - 5651: 5,9 - 5704: 11,6 - 5718: 11,2 - 5815: -14,-5 - 5822: -9,-4 - 5823: -9,-5 - 5932: 1,13 - 5971: -1,6 - 5972: -1,5 - 5973: -1,4 - 5974: -1,2 - 5975: -1,1 - 5976: -1,1 - 5977: -1,0 - 5978: -1,-2 - 5979: -1,-3 - 5980: -1,-4 - 5981: -1,-4 - 5982: -1,-6 - 6014: -8,-12 - 6015: -8,-16 - 6051: -12,-15 - 6052: -12,-14 - 6053: -12,-13 - 6054: -10,-15 - 6055: -10,-14 - 6056: -10,-13 - 6057: -14,-15 - 6058: -14,-14 - 6059: -14,-13 - 6162: -3,-20 - 6163: 1,-20 - 6164: 15,-20 - 6562: -22,-8 - 6563: -22,-7 - 6564: -22,-7 - 6565: -22,-6 - 6566: -22,-6 - 6603: -27,-6 - 6611: -25,-7 - 6612: -25,-7 - 6820: -33,9 - 6821: -33,10 - 6822: -33,11 - 6823: -33,11 - 6824: -33,12 - 6825: -33,12 - 6826: -33,13 - 6827: -33,13 - 6828: -33,13 - 6829: -33,15 - 6830: -33,14 - 6831: -33,14 - 6839: -39,9 - 6840: -39,10 - 6841: -39,11 - 6842: -39,11 - 6843: -39,12 - 6844: -39,12 - 6845: -39,13 - 6846: -39,13 - 6847: -39,13 - 6848: -39,13 - 6849: -39,14 - 6850: -39,14 - 6851: -39,15 - 6852: -39,15 - 7021: 19,5 - 7035: 26,5 - 7075: 19,-11 - 7076: 26,-11 - 7208: 23,1 - 7209: 23,0 - 7210: 23,-1 - 7211: 23,-3 - 7212: 23,-4 - 7213: 23,-5 - 7214: 23,-6 - 7215: 23,-7 - 7236: 19,-3 - 7266: 36,0 - 7318: 33,9 - 7319: 33,10 - 7353: 33,4 - 7354: 33,6 - 7378: 49,0 - 7387: 37,5 - 7703: 43,19 - 7704: 43,21 - 8186: 42,-15 - 8187: 42,-15 - 8188: 42,-11 - 8492: 56,-18 - 8493: 56,-19 - 8494: 56,-22 - 8495: 56,-22 - 8496: 56,-23 - 8497: 56,-23 - 8514: 53,-24 - 8515: 53,-24 - 8516: 53,-25 - 8593: 65,-11 - 8594: 65,-30 - 8595: 60,-26 - 8982: 13,-27 - 8983: 12,-23 - 8984: 5,-23 - 8985: -13,-23 - 8987: -6,-23 - 8988: -5,-27 - 8989: -5,-28 - 8997: -13,-28 - 9055: 5,-28 - 9085: -7,-70 - 9086: -7,-70 - 9087: -2,-70 - 9116: -8,-73 - 9117: -1,-73 - 9118: -1,-73 - 9649: 19,-35 - 10186: 37,-30 - 10220: 20,-52 - 10355: 12,-52 - 10356: 12,-51 - 10357: 12,-50 - 10376: 1,-51 - 10386: 10,-60 - 10410: 14,-59 - 10411: 14,-60 - 10412: 14,-61 - 10415: 12,-59 - 10416: 12,-60 - 10417: 12,-61 - 10418: 12,-60 - 10419: 12,-61 - 10516: 51,-55 - 10608: 82,-44 - 10609: 82,-45 - 10610: 82,-46 - 10620: 79,-47 - 10629: 74,-39 - 10630: 74,-38 - 10696: 53,-55 - 10697: 53,-54 - 10698: 53,-53 - 10704: 45,-52 - 10705: 45,-53 - 10706: 45,-54 - 10719: 43,-56 - 10720: 43,-56 - 10721: 43,-55 - 10722: 43,-50 - 10723: 43,-50 - 11231: -74,-35 - 11232: -74,-35 - 11458: -21,-35 - 12264: -21,-47 - 12294: -17,-68 - 12295: -17,-69 - 12296: -17,-70 - 12297: -17,-71 - 12298: -17,-72 - 12299: -17,-73 - 12329: -15,-75 - 12330: -15,-76 - 12363: -13,-80 - 12364: -13,-81 - 12375: -21,-81 - 12379: -22,-67 - 12380: -22,-66 - 12460: -18,-78 - 12474: -17,-79 - 12475: -17,-80 - 12476: -17,-81 - 12483: -19,-81 - 12492: -24,-81 - 12493: -23,-78 - 12502: -23,-76 - 12503: -23,-75 - 12504: -23,-74 - 12505: -23,-73 - 12506: -23,-73 - 12507: -23,-72 - 12508: -23,-70 - 12509: -23,-69 - 12510: -23,-68 - 12511: -23,-65 - 12614: -38,26 - 12615: -38,28 - 12782: -19,-81 - 13291: -38,-67 - 13460: -29,-74 - 13461: -29,-77 - 13462: -29,-78 - 13472: -36,-78 - 13475: -31,-78 - 13476: -31,-77 - 13477: -31,-80 - 14380: -21,23 - 14381: -8,23 - 14382: 6,23 - 15307: -40,5 - 15410: 57,-31 - 15413: 57,-10 - 15424: 58,-27 - 15425: 60,-27 - 15426: 60,-14 - 15427: 58,-14 - 15538: 76,1 - 15539: 80,1 - 15554: 85,1 - 15621: 100,-3 - 15648: 92,2 - 15765: 81,-2 - 15766: 81,-3 - 15767: 81,-4 - 15779: 85,-2 - 15780: 85,-3 - 15781: 85,-4 - 15782: 89,-2 - 15783: 89,-3 - 15784: 89,-4 - 15810: 94,13 - 15818: 96,13 - 16658: -58,-17 - 16659: -54,-12 - 16660: -54,-13 - 16661: -54,-14 - 16662: -54,-15 - 16663: -54,-9 - 16664: -54,-8 - 16665: -54,-7 - 16666: -59,1 - 16705: -45,5 - 16715: -51,5 - 16716: -54,5 - 17032: -46,-17 - 17033: -46,-16 - 17034: -46,-15 - 17035: -46,-14 - 17036: -46,-13 - 17066: -74,-7 - 17234: -50,-8 - 17301: -74,-7 - 17622: -76,6 - 17623: -76,5 - 17624: -76,4 - 17627: -79,4 - 17628: -79,5 - 17629: -79,6 - 17653: -78,10 - 17654: -76,10 - 17983: -44,47 - 17990: -57,33 - 17991: -53,33 - 17992: -53,34 - 17993: -53,35 - 17994: -53,36 - 17995: -53,37 - 18009: -55,21 - 18021: -52,24 - 18022: -52,23 - 18056: -57,6 - 18093: -54,-4 - 18094: -54,-3 - 18095: -54,-2 - 18096: -54,-1 - 18257: -73,-7 - 18258: -68,-7 - 18259: -61,-8 - 18293: -50,-37 - 18360: -16,-14 - 18361: -16,-15 - 18383: -17,-9 - 18412: 15,-9 - 18923: 57,8 - 18924: 59,8 - 18925: 63,8 - 18926: 61,8 - 19356: -9,26 - 19425: -9,26 - 19429: -9,28 - 19430: -9,29 - 19432: -9,31 - 19433: -9,32 - 20046: -21,5 - 21272: 19,14 - 21273: 19,15 - 21277: 23,14 - 21278: 23,15 - 21298: 26,14 - 21299: 26,13 - 21300: 26,14 - 21301: 26,15 - 21302: 26,16 - 21327: 25,14 - 21328: 25,15 - 22572: -5,-28 - 22581: -13,-28 - 23066: 13,-28 - 24264: -44,-28 - 24265: -32,-28 + 1857: -9,28 + 1858: -9,29 + 1859: -9,31 + 1860: -9,32 + 1900: -15,27 + 1903: -16,31 + 1904: -15,33 + 1905: -16,30 + 1906: -16,29 + 1907: -16,30 + 1908: -16,31 + 1913: -18,26 + 1916: -15,34 + 1920: -18,34 + 1921: -18,33 + 1922: -18,32 + 1923: -18,31 + 1924: -18,29 + 1925: -18,28 + 1926: -18,27 + 1927: -18,30 + 2211: -28,33 + 2212: -28,34 + 2213: -28,35 + 2214: -28,36 + 2215: -28,37 + 2295: -10,44 + 2298: -10,37 + 2299: -10,38 + 2394: -9,40 + 2395: -9,41 + 2396: -9,42 + 2414: -9,39 + 2415: -9,40 + 2416: -9,41 + 2417: -9,42 + 2418: -9,43 + 2421: -7,45 + 2422: -7,44 + 2423: -7,44 + 2428: -6,38 + 2429: -6,39 + 2430: -6,40 + 2431: -6,41 + 2432: -6,42 + 2433: -9,45 + 2485: -5,37 + 2492: -2,37 + 2493: -2,38 + 2494: -2,39 + 2550: 4,53 + 2551: 4,52 + 2552: 4,51 + 2567: -2,51 + 2591: -5,53 + 3015: -16,61 + 3016: -16,62 + 3017: -16,63 + 3018: -16,64 + 3019: -8,64 + 3020: -8,63 + 3021: -8,62 + 3022: -8,61 + 3071: -22,61 + 3072: -22,62 + 3073: -22,63 + 3074: -22,64 + 3075: -2,64 + 3076: -2,63 + 3077: -2,62 + 3079: -3,60 + 3080: -3,65 + 3305: -1,61 + 3809: 17,62 + 3812: 18,61 + 3851: -40,62 + 4504: 19,24 + 5086: -28,91 + 5087: -28,90 + 5088: -28,90 + 5089: -28,89 + 5090: -28,81 + 5091: -28,80 + 5092: -32,80 + 5093: -32,81 + 5094: -32,89 + 5095: -32,90 + 5096: -32,90 + 5097: -32,91 + 5163: -14,91 + 5164: -14,90 + 5165: -14,89 + 5171: -10,91 + 5172: -10,90 + 5173: -10,89 + 5182: -14,80 + 5183: -14,81 + 5186: -10,80 + 5187: -10,81 + 5193: 4,80 + 5194: 4,81 + 5195: 4,81 + 5196: 4,82 + 5476: -17,-20 + 5495: -7,9 + 5499: 5,9 + 5552: 11,6 + 5566: 11,2 + 5663: -14,-5 + 5670: -9,-4 + 5671: -9,-5 + 5780: 1,13 + 5819: -1,6 + 5820: -1,5 + 5821: -1,4 + 5822: -1,2 + 5823: -1,1 + 5824: -1,1 + 5825: -1,0 + 5826: -1,-2 + 5827: -1,-3 + 5828: -1,-4 + 5829: -1,-4 + 5830: -1,-6 + 5862: -8,-12 + 5863: -8,-16 + 5899: -12,-15 + 5900: -12,-14 + 5901: -12,-13 + 5902: -10,-15 + 5903: -10,-14 + 5904: -10,-13 + 5905: -14,-15 + 5906: -14,-14 + 5907: -14,-13 + 6010: -3,-20 + 6011: 1,-20 + 6012: 15,-20 + 6410: -22,-8 + 6411: -22,-7 + 6412: -22,-7 + 6413: -22,-6 + 6414: -22,-6 + 6451: -27,-6 + 6459: -25,-7 + 6460: -25,-7 + 6668: -33,9 + 6669: -33,10 + 6670: -33,11 + 6671: -33,11 + 6672: -33,12 + 6673: -33,12 + 6674: -33,13 + 6675: -33,13 + 6676: -33,13 + 6677: -33,15 + 6678: -33,14 + 6679: -33,14 + 6687: -39,9 + 6688: -39,10 + 6689: -39,11 + 6690: -39,11 + 6691: -39,12 + 6692: -39,12 + 6693: -39,13 + 6694: -39,13 + 6695: -39,13 + 6696: -39,13 + 6697: -39,14 + 6698: -39,14 + 6699: -39,15 + 6700: -39,15 + 6869: 19,5 + 6883: 26,5 + 6923: 19,-11 + 6924: 26,-11 + 7056: 23,1 + 7057: 23,0 + 7058: 23,-1 + 7059: 23,-3 + 7060: 23,-4 + 7061: 23,-5 + 7062: 23,-6 + 7063: 23,-7 + 7084: 19,-3 + 7114: 36,0 + 7166: 33,9 + 7167: 33,10 + 7201: 33,4 + 7202: 33,6 + 7226: 49,0 + 7235: 37,5 + 7551: 43,19 + 7552: 43,21 + 8032: 42,-15 + 8033: 42,-15 + 8034: 42,-11 + 8335: 56,-18 + 8336: 56,-19 + 8337: 56,-22 + 8338: 56,-22 + 8339: 56,-23 + 8340: 56,-23 + 8356: 53,-24 + 8357: 53,-24 + 8358: 53,-25 + 8434: 65,-11 + 8435: 65,-30 + 8436: 60,-26 + 8820: 13,-27 + 8821: 12,-23 + 8822: 5,-23 + 8823: -13,-23 + 8825: -6,-23 + 8826: -5,-27 + 8827: -5,-28 + 8835: -13,-28 + 8893: 5,-28 + 8923: -7,-70 + 8924: -7,-70 + 8925: -2,-70 + 8954: -8,-73 + 8955: -1,-73 + 8956: -1,-73 + 9487: 19,-35 + 10024: 37,-30 + 10058: 20,-52 + 10193: 12,-52 + 10194: 12,-51 + 10195: 12,-50 + 10214: 1,-51 + 10224: 10,-60 + 10248: 14,-59 + 10249: 14,-60 + 10250: 14,-61 + 10253: 12,-59 + 10254: 12,-60 + 10255: 12,-61 + 10256: 12,-60 + 10257: 12,-61 + 10354: 51,-55 + 10446: 82,-44 + 10447: 82,-45 + 10448: 82,-46 + 10458: 79,-47 + 10467: 74,-39 + 10468: 74,-38 + 10534: 53,-55 + 10535: 53,-54 + 10536: 53,-53 + 10542: 45,-52 + 10543: 45,-53 + 10544: 45,-54 + 10557: 43,-56 + 10558: 43,-56 + 10559: 43,-55 + 10560: 43,-50 + 10561: 43,-50 + 10728: -74,-35 + 10729: -74,-35 + 10955: -21,-35 + 11602: -21,-47 + 11632: -17,-68 + 11633: -17,-69 + 11634: -17,-70 + 11635: -17,-71 + 11636: -17,-72 + 11637: -17,-73 + 11667: -15,-75 + 11668: -15,-76 + 11701: -13,-80 + 11702: -13,-81 + 11713: -21,-81 + 11717: -22,-67 + 11718: -22,-66 + 11798: -18,-78 + 11812: -17,-79 + 11813: -17,-80 + 11814: -17,-81 + 11821: -19,-81 + 11830: -24,-81 + 11831: -23,-78 + 11840: -23,-76 + 11841: -23,-75 + 11842: -23,-74 + 11843: -23,-73 + 11844: -23,-73 + 11845: -23,-72 + 11846: -23,-70 + 11847: -23,-69 + 11848: -23,-68 + 11849: -23,-65 + 11932: -38,26 + 11933: -38,28 + 12096: -19,-81 + 12347: -38,-67 + 12516: -29,-74 + 12517: -29,-77 + 12518: -29,-78 + 12528: -36,-78 + 12531: -31,-78 + 12532: -31,-77 + 12533: -31,-80 + 13436: -21,23 + 13437: -8,23 + 13438: 6,23 + 14356: -40,5 + 14459: 57,-31 + 14462: 57,-10 + 14473: 58,-27 + 14474: 60,-27 + 14475: 60,-14 + 14476: 58,-14 + 14587: 76,1 + 14588: 80,1 + 14603: 85,1 + 14670: 100,-3 + 14697: 92,2 + 14814: 81,-2 + 14815: 81,-3 + 14816: 81,-4 + 14828: 85,-2 + 14829: 85,-3 + 14830: 85,-4 + 14831: 89,-2 + 14832: 89,-3 + 14833: 89,-4 + 14859: 94,13 + 14867: 96,13 + 15707: -58,-17 + 15708: -54,-12 + 15709: -54,-13 + 15710: -54,-14 + 15711: -54,-15 + 15712: -54,-9 + 15713: -54,-8 + 15714: -54,-7 + 15715: -59,1 + 15754: -45,5 + 15764: -51,5 + 15765: -54,5 + 16081: -46,-17 + 16082: -46,-16 + 16083: -46,-15 + 16084: -46,-14 + 16085: -46,-13 + 16115: -74,-7 + 16283: -50,-8 + 16350: -74,-7 + 16671: -76,6 + 16672: -76,5 + 16673: -76,4 + 16676: -79,4 + 16677: -79,5 + 16678: -79,6 + 16702: -78,10 + 16703: -76,10 + 17032: -44,47 + 17039: -57,33 + 17040: -53,33 + 17041: -53,34 + 17042: -53,35 + 17043: -53,36 + 17044: -53,37 + 17058: -55,21 + 17070: -52,24 + 17071: -52,23 + 17105: -57,6 + 17142: -54,-4 + 17143: -54,-3 + 17144: -54,-2 + 17145: -54,-1 + 17306: -73,-7 + 17307: -68,-7 + 17308: -61,-8 + 17342: -50,-37 + 17409: -16,-14 + 17410: -16,-15 + 17432: -17,-9 + 17461: 15,-9 + 17967: 57,8 + 17968: 59,8 + 17969: 63,8 + 17970: 61,8 + 18400: -9,26 + 18469: -9,26 + 18473: -9,28 + 18474: -9,29 + 18476: -9,31 + 18477: -9,32 + 19052: -21,5 + 20278: 19,14 + 20279: 19,15 + 20283: 23,14 + 20284: 23,15 + 20304: 26,14 + 20305: 26,13 + 20306: 26,14 + 20307: 26,15 + 20308: 26,16 + 20333: 25,14 + 20334: 25,15 + 21578: -5,-28 + 21587: -13,-28 + 22072: 13,-28 + 23268: -44,-28 + 23269: -32,-28 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4041: -15,27 + 3891: -15,27 - node: color: '#439909FF' id: BrickTileDarkLineN decals: - 24671: 44,-64 - 24672: 44,-61 - 24688: 39,-64 - 24689: 40,-64 + 23670: 44,-64 + 23671: 44,-61 + 23687: 39,-64 + 23688: 40,-64 - node: color: '#8CB7E8FF' id: BrickTileDarkLineN decals: - 4188: -12,16 - 4190: -10,15 - 4197: -10,12 - 4209: 10,16 - 4228: -12,13 - 4229: -10,13 - 4230: -9,13 - 4231: -8,13 - 4232: -7,13 - 4233: -6,13 - 4234: -3,15 - 4235: -2,15 - 4236: -1,15 - 4237: 0,15 - 4238: 1,15 - 4239: 4,13 - 4240: 5,13 - 4241: 6,13 - 4242: 7,13 - 4243: 8,13 - 4244: 10,13 - 4260: -8,16 - 4261: -7,16 - 4263: -5,18 - 4264: -4,18 - 4265: -3,18 - 4266: -2,18 - 4267: -1,18 - 4268: 0,18 - 4269: 1,18 - 4270: 2,18 - 4271: 3,18 - 4276: 5,16 - 4277: 6,16 - 4279: 8,15 - 4317: -2,14 - 5512: -10,12 - 5653: 8,12 - 9876: 30,-44 - 9877: 31,-44 - 9878: 32,-44 - 9879: 33,-44 - 15152: -12,13 + 4038: -12,16 + 4040: -10,15 + 4047: -10,12 + 4059: 10,16 + 4078: -12,13 + 4079: -10,13 + 4080: -9,13 + 4081: -8,13 + 4082: -7,13 + 4083: -6,13 + 4084: -3,15 + 4085: -2,15 + 4086: -1,15 + 4087: 0,15 + 4088: 1,15 + 4089: 4,13 + 4090: 5,13 + 4091: 6,13 + 4092: 7,13 + 4093: 8,13 + 4094: 10,13 + 4110: -8,16 + 4111: -7,16 + 4113: -5,18 + 4114: -4,18 + 4115: -3,18 + 4116: -2,18 + 4117: -1,18 + 4118: 0,18 + 4119: 1,18 + 4120: 2,18 + 4121: 3,18 + 4126: 5,16 + 4127: 6,16 + 4129: 8,15 + 4167: -2,14 + 5360: -10,12 + 5501: 8,12 + 9714: 30,-44 + 9715: 31,-44 + 9716: 32,-44 + 9717: 33,-44 + 14208: -12,13 - node: color: '#96A4EBFF' id: BrickTileDarkLineN decals: - 5508: -12,13 - 5509: -10,12 + 5356: -12,13 + 5357: -10,12 - node: color: '#B18BDAFF' id: BrickTileDarkLineN decals: - 11663: -9,-38 - 11664: -8,-38 - 11665: -6,-38 - 11687: -6,-45 - 12047: -24,-49 - 12048: -29,-48 - 12049: -28,-48 - 12050: -27,-48 - 12051: -26,-48 - 12052: -25,-48 - 12053: -24,-48 + 11148: -9,-38 + 11149: -8,-38 + 11150: -6,-38 + 11172: -6,-45 + 11385: -24,-49 + 11386: -29,-48 + 11387: -28,-48 + 11388: -27,-48 + 11389: -26,-48 + 11390: -25,-48 + 11391: -24,-48 - node: color: '#D381C9FF' id: BrickTileDarkLineN decals: - 24290: -46,-24 - 24295: -46,-22 - 24300: -48,-25 - 24301: -47,-25 - 24311: -42,-31 - 24312: -38,-31 - 24313: -34,-31 - 24339: -36,-27 - 24340: -40,-27 - 24351: -29,-33 - 24366: -28,-26 - 24367: -27,-26 - 24368: -30,-26 + 23294: -46,-24 + 23299: -46,-22 + 23304: -48,-25 + 23305: -47,-25 + 23315: -42,-31 + 23316: -38,-31 + 23317: -34,-31 + 23343: -36,-27 + 23344: -40,-27 + 23355: -29,-33 + 23370: -28,-26 + 23371: -27,-26 + 23372: -30,-26 - node: color: '#DA8B8BFF' id: BrickTileDarkLineN decals: - 3694: 2,59 - 3697: 2,59 - 6695: -24,-1 - 7396: 40,10 - 7397: 36,7 - 7399: 36,10 - 7401: 40,2 - 7431: 36,12 - 7455: 46,10 - 7456: 47,10 - 7457: 48,10 - 7474: 53,10 - 7475: 53,10 - 7488: 47,14 - 7489: 51,14 - 7527: 52,20 - 7539: 57,20 - 7580: 47,-2 - 7581: 52,-2 - 7586: 51,-3 - 7602: 61,-2 - 7603: 65,-2 - 7645: 73,20 - 7651: 73,20 - 7658: 75,24 - 7659: 75,24 - 7839: 73,4 - 10456: 5,-63 - 10473: 5,-73 - 10485: 5,-79 - 10494: 4,-83 - 15278: -48,7 - 18981: 50,1 - 18982: 51,1 - 18990: 36,7 - 18991: 37,6 - 18992: 35,6 - 18993: 34,6 - 19004: 35,3 - 19038: 40,13 - 19072: 46,24 - 19111: 51,19 - 19112: 53,19 - 19131: 70,-3 - 19141: 73,23 - 19142: 74,23 - 19195: 52,13 - 19196: 53,13 - 19197: 54,13 - 19198: 55,13 - 19199: 56,13 - 19200: 57,13 - 19201: 58,13 - 19202: 58,13 - 19203: 59,13 - 19234: 52,9 - 19235: 51,9 - 19236: 54,9 - 19268: 69,-2 - 19271: 69,1 - 19272: 70,1 - 19301: -19,-24 - 19302: -18,-24 - 19476: 50,32 - 19477: 51,32 - 19478: 52,32 - 19479: 52,32 - 19480: 56,32 - 19481: 53,32 - 19482: 54,32 - 19483: 55,32 - 19484: 55,32 - 19519: 52,21 - 19520: 53,21 - 19521: 55,21 - 19522: 56,21 - 19530: 57,32 - 19531: 58,32 - 19534: 54,29 - 19535: 56,28 - 19536: 57,28 - 19537: 52,28 - 19538: 51,28 + 3561: 2,59 + 3564: 2,59 + 6543: -24,-1 + 7244: 40,10 + 7245: 36,7 + 7247: 36,10 + 7249: 40,2 + 7279: 36,12 + 7303: 46,10 + 7304: 47,10 + 7305: 48,10 + 7322: 53,10 + 7323: 53,10 + 7336: 47,14 + 7337: 51,14 + 7375: 52,20 + 7387: 57,20 + 7428: 47,-2 + 7429: 52,-2 + 7434: 51,-3 + 7450: 61,-2 + 7451: 65,-2 + 7493: 73,20 + 7499: 73,20 + 7506: 75,24 + 7507: 75,24 + 7687: 73,4 + 10294: 5,-63 + 10311: 5,-73 + 10323: 5,-79 + 10332: 4,-83 + 14334: -48,7 + 18025: 50,1 + 18026: 51,1 + 18034: 36,7 + 18035: 37,6 + 18036: 35,6 + 18037: 34,6 + 18048: 35,3 + 18082: 40,13 + 18116: 46,24 + 18155: 51,19 + 18156: 53,19 + 18175: 70,-3 + 18185: 73,23 + 18186: 74,23 + 18239: 52,13 + 18240: 53,13 + 18241: 54,13 + 18242: 55,13 + 18243: 56,13 + 18244: 57,13 + 18245: 58,13 + 18246: 58,13 + 18247: 59,13 + 18278: 52,9 + 18279: 51,9 + 18280: 54,9 + 18312: 69,-2 + 18315: 69,1 + 18316: 70,1 + 18345: -19,-24 + 18346: -18,-24 + 18520: 50,32 + 18521: 51,32 + 18522: 52,32 + 18523: 52,32 + 18524: 56,32 + 18525: 53,32 + 18526: 54,32 + 18527: 55,32 + 18528: 55,32 + 18563: 52,21 + 18564: 53,21 + 18565: 55,21 + 18566: 56,21 + 18574: 57,32 + 18575: 58,32 + 18578: 54,29 + 18579: 56,28 + 18580: 57,28 + 18581: 52,28 + 18582: 51,28 - node: color: '#DABC8BFF' id: BrickTileDarkLineN decals: - 3691: 6,86 + 3558: 6,86 - node: color: '#DE3A3AFF' id: BrickTileDarkLineN decals: - 20218: -24,-1 + 19224: -24,-1 - node: color: '#EFB341FF' id: BrickTileDarkLineN decals: - 17471: -65,4 - 17472: -64,4 - 17473: -63,4 - 17474: -62,4 - 17494: -65,11 - 17495: -64,11 - 17496: -63,11 - 17497: -62,11 - 17566: -73,8 - 17567: -71,8 - 17578: -73,3 - 18156: -72,1 - 18157: -71,1 - 18158: -69,1 - 18159: -70,1 - 18160: -68,1 + 16520: -65,4 + 16521: -64,4 + 16522: -63,4 + 16523: -62,4 + 16543: -65,11 + 16544: -64,11 + 16545: -63,11 + 16546: -62,11 + 16615: -73,8 + 16616: -71,8 + 16627: -73,3 + 17205: -72,1 + 17206: -71,1 + 17207: -69,1 + 17208: -70,1 + 17209: -68,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1242: 69,4 - 1992: -9,25 - 1993: -8,34 - 2037: -16,34 - 2217: -19,54 - 2410: -14,46 - 2465: -14,46 - 2466: -13,46 - 2467: -12,46 - 2468: -11,46 - 2620: -2,40 - 2686: 0,54 - 2687: 3,54 - 2693: 3,49 - 2711: -6,51 - 2716: -6,54 - 2718: -5,54 - 3436: 2,59 - 3853: 18,72 - 3854: 19,72 - 3855: 20,72 - 3856: 21,72 - 3857: 22,72 - 3881: 20,67 - 3933: 13,62 - 3934: 14,62 - 3935: 15,62 - 3943: 18,61 - 3947: 19,60 - 3948: 20,60 - 4447: 15,25 - 4657: 20,24 - 5516: -19,7 - 5532: -19,-7 - 5556: -33,25 - 5557: -32,25 - 5593: -13,59 - 5594: -12,59 - 5595: -11,59 - 5596: -13,66 - 5597: -12,66 - 5598: -11,66 - 5706: 9,7 - 5720: 10,3 - 5721: 9,3 - 5744: 8,4 - 5745: 10,-1 - 5811: -12,-3 - 5824: -10,-7 - 5850: -11,-3 - 5926: -1,14 - 5927: 0,14 - 5983: -1,-7 - 6076: -12,-18 - 6115: 17,-7 - 6116: 17,-7 - 6126: 17,7 - 6171: -19,-22 - 6302: 17,-22 - 6375: 13,-18 - 6376: 13,-18 - 6558: -23,-5 - 6559: -23,-5 - 6560: -25,-5 - 6561: -25,-5 - 6573: -24,-10 - 6613: -24,-8 - 7206: 21,2 - 7237: 22,-9 - 7267: 35,1 - 7283: 27,9 - 7309: 30,11 - 7310: 31,11 - 7311: 32,11 - 7320: 29,7 - 7350: 34,6 - 7351: 35,6 - 7352: 37,6 - 7361: 35,3 - 7454: 47,10 - 7669: 40,22 - 7670: 40,22 - 7671: 41,22 - 7672: 42,22 - 7673: 42,22 - 7687: 35,21 - 8175: 34,-17 - 8176: 35,-17 - 8177: 35,-17 - 8200: 35,-7 - 8476: 57,-24 - 8477: 58,-24 - 8478: 58,-24 - 8479: 59,-24 - 8480: 59,-24 - 8481: 60,-24 - 8482: 60,-24 - 8483: 61,-24 - 8731: -1,-29 - 8732: -1,-22 - 8733: -1,-37 - 8734: -1,-57 - 8735: -1,-63 - 8961: -5,-24 - 8962: -4,-24 - 8963: 6,-24 - 8964: 7,-24 - 8965: 8,-24 - 8966: 9,-24 - 8967: 10,-24 - 8968: -8,-24 - 8969: -9,-24 - 8970: -10,-24 - 8971: -11,-24 - 8972: -12,-24 - 8986: -15,-24 - 9022: 2,-24 - 9023: 3,-24 - 9024: 13,-24 - 9025: 14,-24 - 9072: 14,-24 - 9074: 2,-24 - 9122: -5,-66 - 9123: -4,-66 - 9124: -4,-66 - 9129: -1,-82 - 9408: -5,-68 - 9409: -4,-68 - 9645: 17,-37 - 9646: 27,-37 - 10187: 36,-29 - 10188: 36,-29 - 10358: 11,-49 - 10359: 10,-49 - 10360: 9,-49 - 10361: 9,-49 - 10362: 9,-49 - 10363: 8,-49 - 10364: 6,-49 - 10365: 7,-49 - 10366: 6,-49 - 10367: 5,-49 - 10371: 3,-49 - 10378: 10,-54 - 10398: 12,-62 - 10404: 11,-58 - 10405: 12,-58 - 10406: 12,-58 - 10407: 13,-58 - 10408: 13,-58 - 10514: 50,-54 - 10515: 50,-54 - 10611: 81,-43 - 10626: 73,-41 - 10627: 73,-41 - 10628: 73,-37 - 11450: -19,-33 - 11463: -23,-33 - 11467: -14,-37 - 11468: -14,-37 - 11623: -14,-45 - 12314: -20,-66 - 12315: -20,-66 - 12316: -19,-66 - 12317: -18,-66 - 12318: -16,-66 - 12319: -15,-66 - 12320: -14,-66 - 12321: -13,-66 - 12322: -17,-66 - 12323: -16,-74 - 12324: -18,-74 - 12340: -21,-76 - 12341: -21,-76 - 12342: -20,-76 - 12343: -14,-76 - 12344: -13,-76 - 12347: -20,-65 - 12348: -19,-65 - 12349: -18,-65 - 12350: -16,-65 - 12351: -15,-65 - 12352: -14,-65 - 12361: -15,-79 - 12362: -14,-79 - 12373: -22,-80 - 12378: -21,-66 - 12461: -21,-77 - 12462: -17,-78 - 12463: -16,-78 - 12464: -15,-78 - 12466: -13,-78 - 12497: -23,-79 - 12499: -23,-77 - 12518: -23,-71 - 12685: -30,70 - 12686: -12,70 - 12687: -20,66 - 12688: -19,66 - 12689: -18,66 - 12690: -6,66 - 12691: -5,66 - 12692: -4,66 - 12693: 6,70 - 12719: -6,59 - 12720: -5,59 - 12721: -4,59 - 12722: -18,59 - 12723: -19,59 - 12724: -20,59 - 12725: -20,66 - 12726: -19,66 - 13283: -40,-66 - 13284: -39,-66 - 13454: -36,-73 - 13455: -35,-73 - 13456: -34,-73 - 13457: -32,-73 - 13458: -31,-73 - 13488: -33,-77 - 13489: -34,-77 - 13492: -32,-77 - 14321: -60,20 - 14322: -59,20 - 14323: -58,20 - 14347: -65,13 - 14348: -64,13 - 14349: -64,13 - 14350: -63,13 - 14351: -62,13 - 14386: -19,21 - 14387: 17,21 - 15290: -42,2 - 15293: -42,3 - 15304: -42,7 - 15404: 58,-11 - 15405: 59,-11 - 15406: 60,-11 - 15529: 77,0 - 15530: 78,0 - 15531: 79,0 - 15532: 82,0 - 15533: 83,0 - 15534: 84,0 - 15535: 86,0 - 15536: 87,0 - 15537: 88,0 - 15553: 81,0 - 15567: 90,10 - 15568: 91,10 - 15569: 92,10 - 15570: 93,10 - 15573: 92,8 - 15575: 91,7 - 15607: 92,5 - 15652: 95,0 - 15653: 94,0 - 15763: 80,-2 - 15791: 88,-2 - 15792: 84,-2 - 15812: 97,14 - 15813: 97,13 - 15823: 96,14 - 15828: 97,13 - 15938: 92,15 - 15948: 89,9 - 15949: 90,9 - 16650: -58,0 - 16651: -56,0 - 16652: -53,-5 - 16653: -53,-10 - 16654: -53,-16 - 16655: -57,-18 - 16656: -56,-18 - 16657: -55,-18 - 16695: -47,6 - 16696: -46,6 - 16701: -49,3 - 16856: -58,3 - 16857: -57,3 - 17022: -48,-18 - 17023: -47,-18 - 17024: -48,-12 - 17025: -47,-12 - 17068: -70,-9 - 17304: -70,-9 - 17614: -81,15 - 17615: -81,13 - 18019: -54,25 - 18020: -53,25 - 18092: -57,0 - 18244: -60,-9 - 18245: -59,-9 - 18246: -58,-9 - 18247: -67,-8 - 18248: -66,-8 - 18249: -65,-8 - 18250: -65,-8 - 18251: -64,-8 - 18252: -69,-8 - 18253: -69,-8 - 18254: -70,-8 - 18255: -71,-8 - 18256: -72,-8 - 18295: -52,-36 - 18296: -52,-36 - 18297: -51,-36 - 18299: -49,-38 - 18459: 13,-11 - 18462: 13,-13 - 18478: 13,-13 - 18910: 69,10 - 19361: -11,33 - 19368: -14,34 - 19369: -13,34 - 19415: -11,33 - 19710: -8,-40 - 19711: -7,-40 - 20010: 65,27 - 20011: 66,27 - 20018: 62,30 - 20019: 63,30 - 20020: 64,30 - 20021: 65,30 - 20022: 65,30 - 20023: 67,30 - 20024: 67,30 - 20025: 66,30 - 20035: 62,27 - 20036: 64,27 - 20037: 65,27 - 20038: 66,27 - 20039: 67,27 - 21269: 20,15 - 21280: 24,13 - 21287: 23,17 - 21288: 25,17 - 21289: 25,17 - 21290: 24,17 - 21333: 24,16 - 23056: -16,-24 + 1124: 69,4 + 1874: -9,25 + 1875: -8,34 + 1918: -16,34 + 2096: -19,54 + 2287: -14,46 + 2342: -14,46 + 2343: -13,46 + 2344: -12,46 + 2345: -11,46 + 2497: -2,40 + 2563: 0,54 + 2564: 3,54 + 2570: 3,49 + 2588: -6,51 + 2593: -6,54 + 2595: -5,54 + 3307: 2,59 + 3720: 18,72 + 3721: 19,72 + 3722: 20,72 + 3723: 21,72 + 3724: 22,72 + 3748: 20,67 + 3800: 13,62 + 3801: 14,62 + 3802: 15,62 + 3810: 18,61 + 3814: 19,60 + 3815: 20,60 + 4297: 15,25 + 4507: 20,24 + 5364: -19,7 + 5380: -19,-7 + 5404: -33,25 + 5405: -32,25 + 5441: -13,59 + 5442: -12,59 + 5443: -11,59 + 5444: -13,66 + 5445: -12,66 + 5446: -11,66 + 5554: 9,7 + 5568: 10,3 + 5569: 9,3 + 5592: 8,4 + 5593: 10,-1 + 5659: -12,-3 + 5672: -10,-7 + 5698: -11,-3 + 5774: -1,14 + 5775: 0,14 + 5831: -1,-7 + 5924: -12,-18 + 5963: 17,-7 + 5964: 17,-7 + 5974: 17,7 + 6019: -19,-22 + 6150: 17,-22 + 6223: 13,-18 + 6224: 13,-18 + 6406: -23,-5 + 6407: -23,-5 + 6408: -25,-5 + 6409: -25,-5 + 6421: -24,-10 + 6461: -24,-8 + 7054: 21,2 + 7085: 22,-9 + 7115: 35,1 + 7131: 27,9 + 7157: 30,11 + 7158: 31,11 + 7159: 32,11 + 7168: 29,7 + 7198: 34,6 + 7199: 35,6 + 7200: 37,6 + 7209: 35,3 + 7302: 47,10 + 7517: 40,22 + 7518: 40,22 + 7519: 41,22 + 7520: 42,22 + 7521: 42,22 + 7535: 35,21 + 8021: 34,-17 + 8022: 35,-17 + 8023: 35,-17 + 8046: 35,-7 + 8319: 57,-24 + 8320: 58,-24 + 8321: 58,-24 + 8322: 59,-24 + 8323: 59,-24 + 8324: 60,-24 + 8325: 60,-24 + 8326: 61,-24 + 8569: -1,-29 + 8570: -1,-22 + 8571: -1,-37 + 8572: -1,-57 + 8573: -1,-63 + 8799: -5,-24 + 8800: -4,-24 + 8801: 6,-24 + 8802: 7,-24 + 8803: 8,-24 + 8804: 9,-24 + 8805: 10,-24 + 8806: -8,-24 + 8807: -9,-24 + 8808: -10,-24 + 8809: -11,-24 + 8810: -12,-24 + 8824: -15,-24 + 8860: 2,-24 + 8861: 3,-24 + 8862: 13,-24 + 8863: 14,-24 + 8910: 14,-24 + 8912: 2,-24 + 8960: -5,-66 + 8961: -4,-66 + 8962: -4,-66 + 8967: -1,-82 + 9246: -5,-68 + 9247: -4,-68 + 9483: 17,-37 + 9484: 27,-37 + 10025: 36,-29 + 10026: 36,-29 + 10196: 11,-49 + 10197: 10,-49 + 10198: 9,-49 + 10199: 9,-49 + 10200: 9,-49 + 10201: 8,-49 + 10202: 6,-49 + 10203: 7,-49 + 10204: 6,-49 + 10205: 5,-49 + 10209: 3,-49 + 10216: 10,-54 + 10236: 12,-62 + 10242: 11,-58 + 10243: 12,-58 + 10244: 12,-58 + 10245: 13,-58 + 10246: 13,-58 + 10352: 50,-54 + 10353: 50,-54 + 10449: 81,-43 + 10464: 73,-41 + 10465: 73,-41 + 10466: 73,-37 + 10947: -19,-33 + 10960: -23,-33 + 10964: -14,-37 + 10965: -14,-37 + 11120: -14,-45 + 11652: -20,-66 + 11653: -20,-66 + 11654: -19,-66 + 11655: -18,-66 + 11656: -16,-66 + 11657: -15,-66 + 11658: -14,-66 + 11659: -13,-66 + 11660: -17,-66 + 11661: -16,-74 + 11662: -18,-74 + 11678: -21,-76 + 11679: -21,-76 + 11680: -20,-76 + 11681: -14,-76 + 11682: -13,-76 + 11685: -20,-65 + 11686: -19,-65 + 11687: -18,-65 + 11688: -16,-65 + 11689: -15,-65 + 11690: -14,-65 + 11699: -15,-79 + 11700: -14,-79 + 11711: -22,-80 + 11716: -21,-66 + 11799: -21,-77 + 11800: -17,-78 + 11801: -16,-78 + 11802: -15,-78 + 11804: -13,-78 + 11835: -23,-79 + 11837: -23,-77 + 11856: -23,-71 + 12003: -30,70 + 12004: -12,70 + 12005: -20,66 + 12006: -19,66 + 12007: -18,66 + 12008: -6,66 + 12009: -5,66 + 12010: -4,66 + 12011: 6,70 + 12036: -6,59 + 12037: -4,59 + 12038: -18,59 + 12039: -19,59 + 12040: -20,59 + 12041: -20,66 + 12042: -19,66 + 12339: -40,-66 + 12340: -39,-66 + 12510: -36,-73 + 12511: -35,-73 + 12512: -34,-73 + 12513: -32,-73 + 12514: -31,-73 + 12544: -33,-77 + 12545: -34,-77 + 12548: -32,-77 + 13377: -60,20 + 13378: -59,20 + 13379: -58,20 + 13403: -65,13 + 13404: -64,13 + 13405: -64,13 + 13406: -63,13 + 13407: -62,13 + 13442: -19,21 + 13443: 17,21 + 14339: -42,2 + 14342: -42,3 + 14353: -42,7 + 14453: 58,-11 + 14454: 59,-11 + 14455: 60,-11 + 14578: 77,0 + 14579: 78,0 + 14580: 79,0 + 14581: 82,0 + 14582: 83,0 + 14583: 84,0 + 14584: 86,0 + 14585: 87,0 + 14586: 88,0 + 14602: 81,0 + 14616: 90,10 + 14617: 91,10 + 14618: 92,10 + 14619: 93,10 + 14622: 92,8 + 14624: 91,7 + 14656: 92,5 + 14701: 95,0 + 14702: 94,0 + 14812: 80,-2 + 14840: 88,-2 + 14841: 84,-2 + 14861: 97,14 + 14862: 97,13 + 14872: 96,14 + 14877: 97,13 + 14987: 92,15 + 14997: 89,9 + 14998: 90,9 + 15699: -58,0 + 15700: -56,0 + 15701: -53,-5 + 15702: -53,-10 + 15703: -53,-16 + 15704: -57,-18 + 15705: -56,-18 + 15706: -55,-18 + 15744: -47,6 + 15745: -46,6 + 15750: -49,3 + 15905: -58,3 + 15906: -57,3 + 16071: -48,-18 + 16072: -47,-18 + 16073: -48,-12 + 16074: -47,-12 + 16117: -70,-9 + 16353: -70,-9 + 16663: -81,15 + 16664: -81,13 + 17068: -54,25 + 17069: -53,25 + 17141: -57,0 + 17293: -60,-9 + 17294: -59,-9 + 17295: -58,-9 + 17296: -67,-8 + 17297: -66,-8 + 17298: -65,-8 + 17299: -65,-8 + 17300: -64,-8 + 17301: -69,-8 + 17302: -69,-8 + 17303: -70,-8 + 17304: -71,-8 + 17305: -72,-8 + 17344: -52,-36 + 17345: -52,-36 + 17346: -51,-36 + 17348: -49,-38 + 17508: 13,-11 + 17511: 13,-13 + 17527: 13,-13 + 17954: 69,10 + 18405: -11,33 + 18412: -14,34 + 18413: -13,34 + 18459: -11,33 + 18754: -8,-40 + 18755: -7,-40 + 19016: 65,27 + 19017: 66,27 + 19024: 62,30 + 19025: 63,30 + 19026: 64,30 + 19027: 65,30 + 19028: 65,30 + 19029: 67,30 + 19030: 67,30 + 19031: 66,30 + 19041: 62,27 + 19042: 64,27 + 19043: 65,27 + 19044: 66,27 + 19045: 67,27 + 20275: 20,15 + 20286: 24,13 + 20293: 23,17 + 20294: 25,17 + 20295: 25,17 + 20296: 24,17 + 20339: 24,16 + 22062: -16,-24 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 4045: -19,25 + 3895: -19,25 - node: color: '#439909FF' id: BrickTileDarkLineS decals: - 24670: 44,-64 - 24673: 44,-61 - 24686: 39,-64 - 24687: 40,-64 + 23669: 44,-64 + 23672: 44,-61 + 23685: 39,-64 + 23686: 40,-64 - node: color: '#8CB7E8FF' id: BrickTileDarkLineS decals: - 4183: -12,13 - 4184: -11,13 - 4185: -9,13 - 4186: -8,13 - 4187: -7,13 - 4198: -6,13 - 4199: -5,13 - 4200: 3,13 - 4201: 4,13 - 4202: 5,13 - 4203: 6,13 - 4204: 7,13 - 4205: 9,13 - 4206: 10,13 - 4211: -10,15 - 4212: -9,15 - 4213: -8,15 - 4214: -7,15 - 4215: -3,17 - 4216: -1,17 - 4217: -1,17 - 4218: -2,17 - 4219: 0,17 - 4220: 1,17 - 4221: 4,15 - 4222: 5,15 - 4223: 6,15 - 4224: 7,15 - 4225: 8,15 - 4226: 10,16 - 4227: -12,16 - 4287: -3,15 - 4288: -1,15 - 4289: 0,15 - 4290: 1,15 - 5511: -6,15 - 9884: 31,-45 - 9885: 32,-45 - 9886: 33,-45 - 21220: -12,13 - 21221: -11,13 + 4033: -12,13 + 4034: -11,13 + 4035: -9,13 + 4036: -8,13 + 4037: -7,13 + 4048: -6,13 + 4049: -5,13 + 4050: 3,13 + 4051: 4,13 + 4052: 5,13 + 4053: 6,13 + 4054: 7,13 + 4055: 9,13 + 4056: 10,13 + 4061: -10,15 + 4062: -9,15 + 4063: -8,15 + 4064: -7,15 + 4065: -3,17 + 4066: -1,17 + 4067: -1,17 + 4068: -2,17 + 4069: 0,17 + 4070: 1,17 + 4071: 4,15 + 4072: 5,15 + 4073: 6,15 + 4074: 7,15 + 4075: 8,15 + 4076: 10,16 + 4077: -12,16 + 4137: -3,15 + 4138: -1,15 + 4139: 0,15 + 4140: 1,15 + 5359: -6,15 + 9722: 31,-45 + 9723: 32,-45 + 9724: 33,-45 + 20226: -12,13 + 20227: -11,13 - node: color: '#B18BDAFF' id: BrickTileDarkLineS decals: - 11671: -10,-44 - 11672: -9,-44 - 11673: -8,-44 - 11674: -8,-44 - 11675: -7,-44 - 11684: -7,-37 - 11685: -7,-37 - 12041: -29,-48 - 12042: -28,-48 - 12043: -28,-48 - 12044: -27,-48 - 12045: -26,-48 - 12046: -25,-48 + 11156: -10,-44 + 11157: -9,-44 + 11158: -8,-44 + 11159: -8,-44 + 11160: -7,-44 + 11169: -7,-37 + 11170: -7,-37 + 11379: -29,-48 + 11380: -28,-48 + 11381: -28,-48 + 11382: -27,-48 + 11383: -26,-48 + 11384: -25,-48 - node: color: '#D381C9FF' id: BrickTileDarkLineS decals: - 24249: -42,-25 - 24250: -38,-25 - 24251: -34,-25 - 24252: -29,-25 - 24254: -29,-25 - 24255: -40,-29 - 24256: -36,-29 - 24281: -48,-31 - 24282: -47,-31 - 24283: -45,-31 - 24284: -46,-31 - 24289: -46,-24 - 24292: -47,-23 - 24352: -30,-32 - 24353: -28,-32 - 24360: -27,-32 + 23253: -42,-25 + 23254: -38,-25 + 23255: -34,-25 + 23256: -29,-25 + 23258: -29,-25 + 23259: -40,-29 + 23260: -36,-29 + 23285: -48,-31 + 23286: -47,-31 + 23287: -45,-31 + 23288: -46,-31 + 23293: -46,-24 + 23296: -47,-23 + 23356: -30,-32 + 23357: -28,-32 + 23364: -27,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkLineS decals: - 4586: 13,33 - 6694: -23,3 - 7390: 40,10 - 7395: 40,10 - 7398: 36,10 - 7400: 40,2 - 7415: 37,8 - 7458: 46,10 - 7459: 47,10 - 7460: 48,10 - 7472: 53,10 - 7473: 53,10 - 7485: 47,14 - 7486: 51,14 - 7487: 51,14 - 7515: 52,20 - 7516: 57,20 - 7579: 47,-2 - 7582: 52,-2 - 7583: 56,-5 - 7584: 57,-5 - 7585: 52,-5 - 7621: 58,2 - 7622: 62,2 - 7623: 66,2 - 7644: 73,20 - 7648: 75,24 - 7649: 75,24 - 7650: 73,20 - 7660: 75,26 - 7834: 69,-2 - 7838: 73,4 - 9680: 11,-29 - 10448: 7,-57 - 10457: 5,-63 - 10480: 5,-73 - 10495: 5,-79 - 15482: 72,-1 - 15483: 73,-1 - 18954: 51,-1 - 18955: 50,-1 - 18956: 55,-1 - 18957: 54,-1 - 18958: 53,-1 - 18959: 60,-1 - 18960: 59,-1 - 18961: 58,-1 - 18962: 64,-1 - 18963: 63,-1 - 18964: 62,-1 - 18965: 66,-1 - 18966: 67,-1 - 18969: 48,-1 - 18989: 36,7 - 18996: 34,4 - 18997: 36,4 - 18998: 36,4 - 18999: 37,4 - 19022: 40,-1 - 19046: 52,11 - 19047: 51,11 - 19048: 54,11 - 19049: 55,11 - 19050: 56,11 - 19051: 57,11 - 19052: 58,11 - 19053: 58,11 - 19054: 59,11 - 19058: 47,14 - 19059: 46,15 - 19093: 50,21 - 19094: 51,21 - 19095: 56,21 - 19096: 55,21 - 19097: 54,21 - 19098: 54,21 - 19099: 53,21 - 19100: 58,21 - 19101: 53,15 - 19102: 52,15 - 19125: 69,-5 - 19126: 70,-5 - 19143: 74,21 - 19144: 75,21 - 19245: 51,3 - 19246: 52,3 - 19247: 53,3 - 19248: 54,3 - 19249: 54,3 - 19265: 70,-1 - 19298: -19,-28 - 19311: 7,-57 - 19485: 52,28 - 19486: 53,28 - 19495: 55,28 - 19496: 56,28 - 19543: 51,31 - 19544: 57,31 - 19545: 54,32 - 19546: 53,32 - 19547: 55,32 + 4436: 13,33 + 6542: -23,3 + 7238: 40,10 + 7243: 40,10 + 7246: 36,10 + 7248: 40,2 + 7263: 37,8 + 7306: 46,10 + 7307: 47,10 + 7308: 48,10 + 7320: 53,10 + 7321: 53,10 + 7333: 47,14 + 7334: 51,14 + 7335: 51,14 + 7363: 52,20 + 7364: 57,20 + 7427: 47,-2 + 7430: 52,-2 + 7431: 56,-5 + 7432: 57,-5 + 7433: 52,-5 + 7469: 58,2 + 7470: 62,2 + 7471: 66,2 + 7492: 73,20 + 7496: 75,24 + 7497: 75,24 + 7498: 73,20 + 7508: 75,26 + 7682: 69,-2 + 7686: 73,4 + 9518: 11,-29 + 10286: 7,-57 + 10295: 5,-63 + 10318: 5,-73 + 10333: 5,-79 + 14531: 72,-1 + 14532: 73,-1 + 17998: 51,-1 + 17999: 50,-1 + 18000: 55,-1 + 18001: 54,-1 + 18002: 53,-1 + 18003: 60,-1 + 18004: 59,-1 + 18005: 58,-1 + 18006: 64,-1 + 18007: 63,-1 + 18008: 62,-1 + 18009: 66,-1 + 18010: 67,-1 + 18013: 48,-1 + 18033: 36,7 + 18040: 34,4 + 18041: 36,4 + 18042: 36,4 + 18043: 37,4 + 18066: 40,-1 + 18090: 52,11 + 18091: 51,11 + 18092: 54,11 + 18093: 55,11 + 18094: 56,11 + 18095: 57,11 + 18096: 58,11 + 18097: 58,11 + 18098: 59,11 + 18102: 47,14 + 18103: 46,15 + 18137: 50,21 + 18138: 51,21 + 18139: 56,21 + 18140: 55,21 + 18141: 54,21 + 18142: 54,21 + 18143: 53,21 + 18144: 58,21 + 18145: 53,15 + 18146: 52,15 + 18169: 69,-5 + 18170: 70,-5 + 18187: 74,21 + 18188: 75,21 + 18289: 51,3 + 18290: 52,3 + 18291: 53,3 + 18292: 54,3 + 18293: 54,3 + 18309: 70,-1 + 18342: -19,-28 + 18355: 7,-57 + 18529: 52,28 + 18530: 53,28 + 18539: 55,28 + 18540: 56,28 + 18587: 51,31 + 18588: 57,31 + 18589: 54,32 + 18590: 53,32 + 18591: 55,32 - node: color: '#DABC8BFF' id: BrickTileDarkLineS decals: - 3693: 5,91 + 3560: 5,91 - node: color: '#DE3A3AFF' id: BrickTileDarkLineS decals: - 20217: -23,3 + 19223: -23,3 - node: color: '#EFB341FF' id: BrickTileDarkLineS decals: - 17462: -65,11 - 17463: -64,11 - 17464: -63,11 - 17465: -62,11 - 17505: -65,4 - 17506: -64,4 - 17507: -63,4 - 17508: -62,4 - 17565: -72,9 - 17576: -72,4 - 17577: -71,4 - 17581: -72,9 - 18170: -72,-3 - 18171: -71,-3 - 18172: -72,-3 - 18173: -70,-3 - 18174: -69,-3 - 18175: -68,-3 + 16511: -65,11 + 16512: -64,11 + 16513: -63,11 + 16514: -62,11 + 16554: -65,4 + 16555: -64,4 + 16556: -63,4 + 16557: -62,4 + 16614: -72,9 + 16625: -72,4 + 16626: -71,4 + 16630: -72,9 + 17219: -72,-3 + 17220: -71,-3 + 17221: -72,-3 + 17222: -70,-3 + 17223: -69,-3 + 17224: -68,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2018: -16,26 - 2033: -17,35 - 2034: -16,35 - 2038: -15,35 - 2216: -19,54 - 2288: -15,35 - 2413: -14,36 - 2471: -14,36 - 2472: -13,36 - 2473: -13,36 - 2474: -11,36 - 2475: -11,36 - 2476: -12,36 - 2531: -7,36 - 2613: -3,36 - 2626: -3,41 - 2663: 1,55 - 2664: 2,55 - 2676: 0,50 - 2677: 1,50 - 2678: 2,50 - 2691: -1,55 - 3682: 6,66 - 3848: 18,72 - 3849: 19,72 - 3850: 20,72 - 3851: 21,72 - 3852: 22,72 - 3876: 19,68 - 3877: 21,68 - 3878: 22,68 - 3886: 21,65 - 3887: 22,65 - 3888: 18,65 - 3936: 13,58 - 3937: 14,58 - 3938: 15,58 - 3939: 16,58 - 4446: 15,25 - 4655: 20,24 - 4656: 21,24 - 4659: 21,25 - 5515: -19,7 - 5531: -19,-7 - 5554: -33,25 - 5555: -32,25 - 5586: -13,66 - 5587: -12,66 - 5588: -11,66 - 5589: -13,59 - 5590: -12,59 - 5591: -11,59 - 5592: -11,59 - 5701: 9,5 - 5702: 10,5 - 5712: 8,0 - 5713: 9,0 - 5743: 8,4 - 5818: -12,-6 - 5819: -11,-6 - 5853: -10,-2 - 5893: -10,-2 - 5928: -2,12 - 5929: -1,12 - 5930: -1,12 - 5931: 0,12 - 6075: -12,-18 - 6114: 17,-7 - 6125: 17,7 - 6170: -19,-22 - 6301: 17,-22 - 6370: 19,-14 - 6374: 13,-18 - 6548: -25,-9 - 6549: -23,-9 - 6550: -23,-9 - 6604: -24,-4 - 6607: -24,-6 - 6608: -24,-6 - 7204: 21,-8 - 7205: 23,-8 - 7235: 22,3 - 7264: 35,-1 - 7314: 30,8 - 7315: 31,8 - 7316: 32,8 - 7347: 34,4 - 7348: 36,4 - 7349: 37,4 - 7364: 36,7 - 7453: 47,10 - 7677: 42,18 - 7678: 41,18 - 7679: 40,18 - 7686: 35,19 - 8172: 34,-17 - 8173: 35,-17 - 8174: 35,-17 - 8198: 35,-7 - 8199: 35,-7 - 8469: 57,-17 - 8470: 58,-17 - 8471: 58,-17 - 8472: 59,-17 - 8473: 59,-17 - 8474: 60,-17 - 8475: 61,-17 - 8519: 52,-26 - 8520: 52,-22 - 8728: -1,-37 - 8729: -1,-29 - 8730: -1,-22 - 8736: -1,-63 - 8737: -1,-57 - 8990: -16,-26 - 8991: -12,-27 - 8992: -11,-27 - 8993: -10,-27 - 8994: -9,-27 - 8995: -8,-27 - 8996: -4,-26 - 9026: 2,-26 - 9048: 6,-27 - 9049: 6,-27 - 9050: 7,-27 - 9051: 8,-27 - 9052: 9,-27 - 9053: 10,-27 - 9054: 10,-27 - 9119: -5,-66 - 9120: -4,-66 - 9121: -4,-66 - 9128: -1,-82 - 9406: -5,-68 - 9407: -4,-68 - 9643: 17,-37 - 9644: 27,-37 - 10184: 36,-31 - 10185: 36,-31 - 10343: 3,-53 - 10344: 4,-53 - 10345: 5,-53 - 10346: 6,-53 - 10347: 6,-53 - 10348: 7,-53 - 10349: 7,-53 - 10350: 8,-53 - 10351: 8,-53 - 10352: 9,-53 - 10353: 9,-53 - 10354: 11,-53 - 10370: 4,-48 - 10397: 12,-58 - 10399: 11,-62 - 10400: 12,-62 - 10401: 13,-62 - 10414: 10,-57 - 10512: 50,-56 - 10513: 50,-56 - 10616: 80,-47 - 10617: 81,-47 - 11157: -64,-48 - 11448: -19,-33 - 11449: -19,-33 - 11459: -23,-33 - 11460: -23,-33 - 11461: -14,-37 - 11462: -14,-37 - 11622: -14,-45 - 12289: -13,-67 - 12290: -14,-67 - 12291: -15,-67 - 12309: -16,-67 - 12310: -19,-67 - 12311: -20,-67 - 12312: -19,-67 - 12313: -18,-67 - 12333: -18,-76 - 12334: -17,-76 - 12335: -16,-76 - 12353: -17,-64 - 12367: -15,-82 - 12368: -14,-82 - 12374: -22,-82 - 12377: -21,-67 - 12465: -14,-77 - 12470: -13,-78 - 12471: -14,-78 - 12472: -15,-78 - 12473: -16,-78 - 12498: -23,-79 - 12500: -23,-77 - 12517: -23,-71 - 12527: -24,-63 - 12536: -24,-70 - 12676: 6,70 - 12677: -6,66 - 12678: -5,66 - 12679: -4,66 - 12680: -20,66 - 12681: -19,66 - 12682: -18,66 - 12683: -12,70 - 12684: -30,70 - 12712: -20,59 - 12713: -19,59 - 12714: -18,59 - 12715: -6,59 - 12716: -5,59 - 12717: -4,59 - 13288: -40,-68 - 13289: -39,-68 - 13466: -35,-76 - 13467: -34,-76 - 13468: -32,-76 - 13469: -32,-76 - 13470: -33,-76 - 13471: -31,-76 - 13500: -33,-79 - 14318: -60,20 - 14319: -59,20 - 14320: -58,20 - 14342: -65,13 - 14343: -64,13 - 14344: -64,13 - 14345: -62,13 - 14346: -63,13 - 14385: -19,21 - 14389: 17,21 - 15294: -42,3 - 15303: -42,7 - 15407: 58,-30 - 15408: 59,-30 - 15409: 60,-30 - 15517: 77,2 - 15518: 78,2 - 15519: 79,2 - 15520: 81,2 - 15521: 82,2 - 15522: 83,2 - 15523: 83,2 - 15524: 84,2 - 15525: 86,2 - 15526: 87,2 - 15527: 88,2 - 15528: 88,2 - 15574: 92,8 - 15645: 94,4 - 15646: 95,4 - 15770: 80,-5 - 15797: 88,-5 - 15798: 84,-5 - 15937: 92,15 - 16642: -57,-16 - 16643: -56,-16 - 16644: -55,-16 - 16645: -53,-11 - 16646: -53,-6 - 16647: -53,0 - 16648: -56,2 - 16649: -57,2 - 16694: -48,7 - 16702: -48,4 - 16703: -47,4 - 16704: -46,4 - 16854: -58,3 - 16855: -57,3 - 16858: -58,2 - 17027: -48,-12 - 17028: -47,-12 - 17029: -48,-18 - 17030: -47,-18 - 17067: -70,-9 - 17303: -70,-9 - 17612: -81,13 - 17613: -81,15 - 18015: -54,25 - 18016: -53,25 - 18232: -72,-6 - 18233: -71,-6 - 18234: -70,-6 - 18235: -69,-6 - 18236: -67,-6 - 18237: -66,-6 - 18238: -65,-6 - 18239: -64,-6 - 18240: -60,-7 - 18241: -59,-7 - 18242: -59,-7 - 18243: -58,-7 - 18287: -52,-38 - 18288: -51,-38 - 18289: -51,-38 - 18290: -50,-38 - 18291: -49,-38 - 18292: -49,-38 - 18458: 13,-11 - 18464: 13,-14 - 18474: 13,-14 - 18896: 69,3 - 18909: 69,10 - 19363: -13,26 - 19365: -11,27 - 19422: -11,27 - 19708: -8,-40 - 19709: -7,-40 - 20008: 65,27 - 20009: 66,27 - 20029: 63,28 - 21268: 20,14 - 21279: 24,16 - 21295: 23,12 - 21296: 24,12 - 21297: 25,12 - 21326: 24,13 + 1899: -16,26 + 1914: -17,35 + 1915: -16,35 + 1919: -15,35 + 2095: -19,54 + 2165: -15,35 + 2290: -14,36 + 2348: -14,36 + 2349: -13,36 + 2350: -13,36 + 2351: -11,36 + 2352: -11,36 + 2353: -12,36 + 2408: -7,36 + 2490: -3,36 + 2503: -3,41 + 2540: 1,55 + 2541: 2,55 + 2553: 0,50 + 2554: 1,50 + 2555: 2,50 + 2568: -1,55 + 3549: 6,66 + 3715: 18,72 + 3716: 19,72 + 3717: 20,72 + 3718: 21,72 + 3719: 22,72 + 3743: 19,68 + 3744: 21,68 + 3745: 22,68 + 3753: 21,65 + 3754: 22,65 + 3755: 18,65 + 3803: 13,58 + 3804: 14,58 + 3805: 15,58 + 3806: 16,58 + 4296: 15,25 + 4505: 20,24 + 4506: 21,24 + 4509: 21,25 + 5363: -19,7 + 5379: -19,-7 + 5402: -33,25 + 5403: -32,25 + 5434: -13,66 + 5435: -12,66 + 5436: -11,66 + 5437: -13,59 + 5438: -12,59 + 5439: -11,59 + 5440: -11,59 + 5549: 9,5 + 5550: 10,5 + 5560: 8,0 + 5561: 9,0 + 5591: 8,4 + 5666: -12,-6 + 5667: -11,-6 + 5701: -10,-2 + 5741: -10,-2 + 5776: -2,12 + 5777: -1,12 + 5778: -1,12 + 5779: 0,12 + 5923: -12,-18 + 5962: 17,-7 + 5973: 17,7 + 6018: -19,-22 + 6149: 17,-22 + 6218: 19,-14 + 6222: 13,-18 + 6396: -25,-9 + 6397: -23,-9 + 6398: -23,-9 + 6452: -24,-4 + 6455: -24,-6 + 6456: -24,-6 + 7052: 21,-8 + 7053: 23,-8 + 7083: 22,3 + 7112: 35,-1 + 7162: 30,8 + 7163: 31,8 + 7164: 32,8 + 7195: 34,4 + 7196: 36,4 + 7197: 37,4 + 7212: 36,7 + 7301: 47,10 + 7525: 42,18 + 7526: 41,18 + 7527: 40,18 + 7534: 35,19 + 8018: 34,-17 + 8019: 35,-17 + 8020: 35,-17 + 8044: 35,-7 + 8045: 35,-7 + 8312: 57,-17 + 8313: 58,-17 + 8314: 58,-17 + 8315: 59,-17 + 8316: 59,-17 + 8317: 60,-17 + 8318: 61,-17 + 8361: 52,-26 + 8362: 52,-22 + 8566: -1,-37 + 8567: -1,-29 + 8568: -1,-22 + 8574: -1,-63 + 8575: -1,-57 + 8828: -16,-26 + 8829: -12,-27 + 8830: -11,-27 + 8831: -10,-27 + 8832: -9,-27 + 8833: -8,-27 + 8834: -4,-26 + 8864: 2,-26 + 8886: 6,-27 + 8887: 6,-27 + 8888: 7,-27 + 8889: 8,-27 + 8890: 9,-27 + 8891: 10,-27 + 8892: 10,-27 + 8957: -5,-66 + 8958: -4,-66 + 8959: -4,-66 + 8966: -1,-82 + 9244: -5,-68 + 9245: -4,-68 + 9481: 17,-37 + 9482: 27,-37 + 10022: 36,-31 + 10023: 36,-31 + 10181: 3,-53 + 10182: 4,-53 + 10183: 5,-53 + 10184: 6,-53 + 10185: 6,-53 + 10186: 7,-53 + 10187: 7,-53 + 10188: 8,-53 + 10189: 8,-53 + 10190: 9,-53 + 10191: 9,-53 + 10192: 11,-53 + 10208: 4,-48 + 10235: 12,-58 + 10237: 11,-62 + 10238: 12,-62 + 10239: 13,-62 + 10252: 10,-57 + 10350: 50,-56 + 10351: 50,-56 + 10454: 80,-47 + 10455: 81,-47 + 10654: -64,-48 + 10945: -19,-33 + 10946: -19,-33 + 10956: -23,-33 + 10957: -23,-33 + 10958: -14,-37 + 10959: -14,-37 + 11119: -14,-45 + 11627: -13,-67 + 11628: -14,-67 + 11629: -15,-67 + 11647: -16,-67 + 11648: -19,-67 + 11649: -20,-67 + 11650: -19,-67 + 11651: -18,-67 + 11671: -18,-76 + 11672: -17,-76 + 11673: -16,-76 + 11691: -17,-64 + 11705: -15,-82 + 11706: -14,-82 + 11712: -22,-82 + 11715: -21,-67 + 11803: -14,-77 + 11808: -13,-78 + 11809: -14,-78 + 11810: -15,-78 + 11811: -16,-78 + 11836: -23,-79 + 11838: -23,-77 + 11855: -23,-71 + 11865: -24,-63 + 11874: -24,-70 + 11994: 6,70 + 11995: -6,66 + 11996: -5,66 + 11997: -4,66 + 11998: -20,66 + 11999: -19,66 + 12000: -18,66 + 12001: -12,70 + 12002: -30,70 + 12030: -20,59 + 12031: -19,59 + 12032: -18,59 + 12033: -6,59 + 12034: -4,59 + 12344: -40,-68 + 12345: -39,-68 + 12522: -35,-76 + 12523: -34,-76 + 12524: -32,-76 + 12525: -32,-76 + 12526: -33,-76 + 12527: -31,-76 + 12556: -33,-79 + 13374: -60,20 + 13375: -59,20 + 13376: -58,20 + 13398: -65,13 + 13399: -64,13 + 13400: -64,13 + 13401: -62,13 + 13402: -63,13 + 13441: -19,21 + 13445: 17,21 + 14343: -42,3 + 14352: -42,7 + 14456: 58,-30 + 14457: 59,-30 + 14458: 60,-30 + 14566: 77,2 + 14567: 78,2 + 14568: 79,2 + 14569: 81,2 + 14570: 82,2 + 14571: 83,2 + 14572: 83,2 + 14573: 84,2 + 14574: 86,2 + 14575: 87,2 + 14576: 88,2 + 14577: 88,2 + 14623: 92,8 + 14694: 94,4 + 14695: 95,4 + 14819: 80,-5 + 14846: 88,-5 + 14847: 84,-5 + 14986: 92,15 + 15691: -57,-16 + 15692: -56,-16 + 15693: -55,-16 + 15694: -53,-11 + 15695: -53,-6 + 15696: -53,0 + 15697: -56,2 + 15698: -57,2 + 15743: -48,7 + 15751: -48,4 + 15752: -47,4 + 15753: -46,4 + 15903: -58,3 + 15904: -57,3 + 15907: -58,2 + 16076: -48,-12 + 16077: -47,-12 + 16078: -48,-18 + 16079: -47,-18 + 16116: -70,-9 + 16352: -70,-9 + 16661: -81,13 + 16662: -81,15 + 17064: -54,25 + 17065: -53,25 + 17281: -72,-6 + 17282: -71,-6 + 17283: -70,-6 + 17284: -69,-6 + 17285: -67,-6 + 17286: -66,-6 + 17287: -65,-6 + 17288: -64,-6 + 17289: -60,-7 + 17290: -59,-7 + 17291: -59,-7 + 17292: -58,-7 + 17336: -52,-38 + 17337: -51,-38 + 17338: -51,-38 + 17339: -50,-38 + 17340: -49,-38 + 17341: -49,-38 + 17507: 13,-11 + 17513: 13,-14 + 17523: 13,-14 + 17940: 69,3 + 17953: 69,10 + 18407: -13,26 + 18409: -11,27 + 18466: -11,27 + 18752: -8,-40 + 18753: -7,-40 + 19014: 65,27 + 19015: 66,27 + 19035: 63,28 + 20274: 20,14 + 20285: 24,16 + 20301: 23,12 + 20302: 24,12 + 20303: 25,12 + 20332: 24,13 + 23795: -15,26 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 4044: -19,25 + 3894: -19,25 - node: color: '#00C9DAFF' id: BrickTileDarkLineW decals: - 8102: 32,-16 + 7948: 32,-16 - node: color: '#8CB7E8FF' id: BrickTileDarkLineW decals: - 4193: -9,16 - 4245: 9,14 - 4246: 11,14 - 4247: 11,15 - 4248: 2,16 - 4249: -5,14 - 4257: -11,14 - 4258: -11,15 - 4274: -6,17 - 4291: 2,14 - 4300: 12,14 - 4301: 12,15 - 4302: 15,14 - 4303: 15,15 - 21231: 16,16 - 21232: 16,13 - 21233: 16,12 - 21234: 16,17 + 4043: -9,16 + 4095: 9,14 + 4096: 11,14 + 4097: 11,15 + 4098: 2,16 + 4099: -5,14 + 4107: -11,14 + 4108: -11,15 + 4124: -6,17 + 4141: 2,14 + 4150: 12,14 + 4151: 12,15 + 4152: 15,14 + 4153: 15,15 + 20237: 16,16 + 20238: 16,13 + 20239: 16,12 + 20240: 16,17 - node: color: '#A9DA8BFF' id: BrickTileDarkLineW decals: - 2983: -27,54 + 2860: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkLineW decals: - 11676: -11,-43 - 11677: -11,-42 - 11678: -11,-42 - 11679: -11,-40 - 11680: -11,-40 - 11682: -3,-41 - 11683: -3,-40 - 12038: -23,-45 - 12039: -23,-46 - 12040: -23,-47 - 12056: -30,-47 - 12057: -30,-45 + 11161: -11,-43 + 11162: -11,-42 + 11163: -11,-42 + 11164: -11,-40 + 11165: -11,-40 + 11167: -3,-41 + 11168: -3,-40 + 11376: -23,-45 + 11377: -23,-46 + 11378: -23,-47 + 11394: -30,-47 + 11395: -30,-45 - node: color: '#D381C9FF' id: BrickTileDarkLineW decals: - 24266: -44,-29 - 24267: -44,-28 - 24268: -44,-27 - 24269: -32,-29 - 24270: -32,-28 - 24271: -32,-27 - 24272: -48,-30 - 24273: -48,-29 - 24274: -48,-27 - 24275: -48,-26 - 24357: -31,-31 - 24358: -31,-30 + 23270: -44,-29 + 23271: -44,-28 + 23272: -44,-27 + 23273: -32,-29 + 23274: -32,-28 + 23275: -32,-27 + 23276: -48,-30 + 23277: -48,-29 + 23278: -48,-27 + 23279: -48,-26 + 23361: -31,-31 + 23362: -31,-30 - node: color: '#DA8B8BFF' id: BrickTileDarkLineW decals: - 3695: 4,60 - 3698: 4,60 - 3700: 4,64 - 7379: 49,1 - 7380: 49,0 - 7381: 49,-1 - 7392: 45,8 - 7393: 45,12 - 7402: 45,0 - 7466: 49,4 - 7469: 49,8 - 7497: 49,16 - 7518: 58,19 - 7519: 58,19 - 7526: 55,17 - 7534: 48,22 - 7535: 48,23 - 7544: 60,25 - 7546: 49,12 - 7593: 55,-4 - 7594: 50,-4 - 7624: 56,4 - 7625: 56,5 - 7626: 61,12 - 7629: 61,12 - 7654: 77,22 - 7655: 77,22 - 7667: 75,9 - 7767: 68,1 - 7768: 68,-1 - 7835: 72,-4 - 9681: 15,-31 - 10472: 7,-65 - 10481: 7,-77 - 10482: 7,-75 - 15276: -45,9 - 15478: 72,2 - 15479: 72,0 - 15488: 75,1 - 18927: 72,7 - 18928: 72,8 - 18929: 72,9 - 18930: 72,9 - 18931: 72,10 - 18932: 72,11 - 18933: 72,12 - 18934: 72,14 - 18935: 72,15 - 18936: 72,16 - 18937: 72,17 - 18978: 43,0 - 18979: 46,2 - 18980: 46,1 - 18983: 68,1 - 18984: 68,-1 - 18985: 46,11 - 18986: 39,7 - 19001: 34,5 - 19009: 38,4 - 19010: 38,6 - 19020: 39,0 - 19023: 39,12 - 19024: 43,12 - 19025: 43,8 - 19062: 45,16 - 19063: 45,17 - 19064: 45,18 - 19065: 45,18 - 19066: 45,19 - 19067: 45,23 - 19068: 45,22 - 19069: 45,22 - 19070: 45,21 - 19083: 49,25 - 19084: 49,24 - 19085: 49,26 - 19086: 49,27 - 19087: 49,28 - 19103: 50,18 - 19104: 50,17 - 19114: 56,16 - 19115: 56,18 - 19132: 68,-4 - 19145: 72,22 - 19250: 50,5 - 19251: 50,6 - 19252: 50,7 - 19258: 69,0 - 19273: 71,1 - 19274: 71,-1 - 19299: -20,-27 - 19300: -20,-25 - 19307: -17,-24 - 19487: 54,27 - 19488: 54,26 - 19489: 54,25 - 19490: 54,25 - 19491: 54,24 - 19492: 54,24 - 19493: 54,23 - 19494: 54,22 - 19504: 57,22 - 19505: 57,22 - 19506: 57,23 - 19507: 57,24 - 19508: 57,25 - 19509: 57,25 - 19510: 57,26 - 19511: 57,27 - 19523: 49,29 - 19524: 49,30 - 19525: 49,31 - 19539: 58,29 - 19540: 58,30 + 3562: 4,60 + 3565: 4,60 + 3567: 4,64 + 7227: 49,1 + 7228: 49,0 + 7229: 49,-1 + 7240: 45,8 + 7241: 45,12 + 7250: 45,0 + 7314: 49,4 + 7317: 49,8 + 7345: 49,16 + 7366: 58,19 + 7367: 58,19 + 7374: 55,17 + 7382: 48,22 + 7383: 48,23 + 7392: 60,25 + 7394: 49,12 + 7441: 55,-4 + 7442: 50,-4 + 7472: 56,4 + 7473: 56,5 + 7474: 61,12 + 7477: 61,12 + 7502: 77,22 + 7503: 77,22 + 7515: 75,9 + 7615: 68,1 + 7616: 68,-1 + 7683: 72,-4 + 9519: 15,-31 + 10310: 7,-65 + 10319: 7,-77 + 10320: 7,-75 + 14332: -45,9 + 14527: 72,2 + 14528: 72,0 + 14537: 75,1 + 17971: 72,7 + 17972: 72,8 + 17973: 72,9 + 17974: 72,9 + 17975: 72,10 + 17976: 72,11 + 17977: 72,12 + 17978: 72,14 + 17979: 72,15 + 17980: 72,16 + 17981: 72,17 + 18022: 43,0 + 18023: 46,2 + 18024: 46,1 + 18027: 68,1 + 18028: 68,-1 + 18029: 46,11 + 18030: 39,7 + 18045: 34,5 + 18053: 38,4 + 18054: 38,6 + 18064: 39,0 + 18067: 39,12 + 18068: 43,12 + 18069: 43,8 + 18106: 45,16 + 18107: 45,17 + 18108: 45,18 + 18109: 45,18 + 18110: 45,19 + 18111: 45,23 + 18112: 45,22 + 18113: 45,22 + 18114: 45,21 + 18127: 49,25 + 18128: 49,24 + 18129: 49,26 + 18130: 49,27 + 18131: 49,28 + 18147: 50,18 + 18148: 50,17 + 18158: 56,16 + 18159: 56,18 + 18176: 68,-4 + 18189: 72,22 + 18294: 50,5 + 18295: 50,6 + 18296: 50,7 + 18302: 69,0 + 18317: 71,1 + 18318: 71,-1 + 18343: -20,-27 + 18344: -20,-25 + 18351: -17,-24 + 18531: 54,27 + 18532: 54,26 + 18533: 54,25 + 18534: 54,25 + 18535: 54,24 + 18536: 54,24 + 18537: 54,23 + 18538: 54,22 + 18548: 57,22 + 18549: 57,22 + 18550: 57,23 + 18551: 57,24 + 18552: 57,25 + 18553: 57,25 + 18554: 57,26 + 18555: 57,27 + 18567: 49,29 + 18568: 49,30 + 18569: 49,31 + 18583: 58,29 + 18584: 58,30 - node: color: '#DE3A3AFF' id: BrickTileDarkLineW decals: - 20219: -24,0 - 20220: -24,1 + 19225: -24,0 + 19226: -24,1 - node: color: '#EFB341FF' id: BrickTileDarkLineW decals: - 17466: -61,9 - 17467: -61,8 - 17468: -61,7 - 17469: -61,6 - 17470: -61,5 - 17493: -61,10 - 17498: -66,10 - 17499: -66,9 - 17500: -66,8 - 17501: -66,8 - 17502: -66,7 - 17503: -66,6 - 17504: -66,5 - 17509: -60,6 - 17514: -60,10 - 17516: -60,6 - 17570: -74,7 - 17571: -74,6 - 17572: -74,5 - 17737: -56,6 - 17743: -60,6 - 17744: -60,10 - 18162: -73,0 - 18163: -73,-1 - 18164: -73,-2 + 16515: -61,9 + 16516: -61,8 + 16517: -61,7 + 16518: -61,6 + 16519: -61,5 + 16542: -61,10 + 16547: -66,10 + 16548: -66,9 + 16549: -66,8 + 16550: -66,8 + 16551: -66,7 + 16552: -66,6 + 16553: -66,5 + 16558: -60,6 + 16563: -60,10 + 16565: -60,6 + 16619: -74,7 + 16620: -74,6 + 16621: -74,5 + 16786: -56,6 + 16792: -60,6 + 16793: -60,10 + 17211: -73,0 + 17212: -73,-1 + 17213: -73,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1982: -8,30 - 1983: -8,33 - 1984: -8,27 - 2010: -17,33 - 2011: -17,32 - 2012: -17,31 - 2013: -17,29 - 2014: -17,28 - 2015: -17,27 - 2328: -28,33 - 2329: -28,34 - 2330: -28,34 - 2331: -28,35 - 2332: -28,36 - 2333: -28,37 - 2514: -9,40 - 2515: -9,41 - 2516: -9,42 - 2520: -9,43 - 2521: -9,42 - 2522: -9,41 - 2523: -9,40 - 2524: -9,39 - 2525: -9,45 - 2526: -8,44 - 2527: -8,38 - 2528: -8,37 - 2604: -5,37 - 2609: -4,38 - 2610: -4,39 - 2625: -1,40 - 2669: 4,51 - 2670: 4,52 - 2671: 4,53 - 2672: 4,53 - 2682: -1,52 - 2683: -1,53 - 2684: -1,54 - 2685: -1,54 - 2715: -7,53 - 2720: -4,54 - 3134: -16,64 - 3135: -16,63 - 3136: -16,62 - 3137: -16,61 - 3149: -8,61 - 3150: -8,62 - 3151: -8,63 - 3152: -8,63 - 3153: -8,64 - 3193: -22,61 - 3194: -22,62 - 3195: -22,63 - 3196: -22,64 - 3208: -2,64 - 3209: -2,63 - 3210: -2,62 - 3211: -2,62 - 3212: -2,61 - 3217: -1,61 - 3433: -1,61 - 3688: 4,64 - 3690: 4,60 - 3897: 24,66 - 3981: -42,61 - 3982: -42,60 - 5230: -32,80 - 5231: -32,81 - 5232: -32,89 - 5233: -32,89 - 5234: -32,90 - 5235: -32,91 - 5248: -28,91 - 5249: -28,90 - 5250: -28,89 - 5251: -28,89 - 5252: -28,81 - 5253: -28,80 - 5254: -28,80 - 5312: -14,89 - 5313: -14,90 - 5314: -14,91 - 5318: -10,89 - 5319: -10,90 - 5320: -10,90 - 5321: -10,91 - 5322: -10,91 - 5331: -14,80 - 5332: -14,80 - 5333: -14,81 - 5336: -10,80 - 5337: -10,81 - 5341: 4,81 - 5342: 4,80 - 5343: 4,79 - 5627: -17,-20 - 5646: -7,9 - 5650: 5,9 - 5696: 7,6 - 5708: 7,2 - 5709: 7,1 - 5715: 12,1 - 5805: -16,-5 - 5808: -14,-5 - 5809: -13,-4 - 5933: -3,13 - 5949: -1,-6 - 5950: -1,-4 - 5951: -1,-3 - 5952: -1,-2 - 5953: -1,-2 - 5954: -1,0 - 5955: -1,1 - 5956: -1,1 - 5957: -1,2 - 5958: -1,4 - 5959: -1,5 - 5960: -1,5 - 5961: -1,6 - 6012: -8,-16 - 6013: -8,-12 - 6039: -14,-15 - 6040: -14,-14 - 6041: -14,-13 - 6042: -12,-15 - 6043: -12,-14 - 6044: -12,-13 - 6045: -16,-15 - 6046: -16,-14 - 6047: -16,-13 - 6048: -10,-15 - 6049: -10,-14 - 6050: -10,-13 - 6160: -3,-20 - 6161: 1,-20 - 6165: 15,-20 - 6556: -26,-7 - 6557: -26,-8 - 6609: -23,-7 - 6610: -23,-7 - 6832: -33,15 - 6833: -33,14 - 6834: -33,13 - 6835: -33,12 - 6836: -33,11 - 6837: -33,10 - 6838: -33,9 - 6853: -39,10 - 6854: -39,9 - 6855: -39,11 - 6856: -39,11 - 6857: -39,12 - 6858: -39,13 - 6859: -39,14 - 6860: -39,14 - 6861: -39,14 - 6862: -39,15 - 6863: -39,16 - 7020: 19,5 - 7034: 26,5 - 7073: 19,-11 - 7074: 26,-11 - 7218: 20,1 - 7219: 20,0 - 7220: 20,-1 - 7221: 20,-2 - 7222: 20,-4 - 7223: 20,-5 - 7224: 20,-6 - 7225: 20,-7 - 7238: 24,-8 - 7239: 24,-2 - 7265: 34,0 - 7280: 28,9 - 7306: 29,8 - 7307: 29,9 - 7308: 29,10 - 7355: 34,5 - 7362: 38,6 - 7363: 38,4 - 7377: 49,0 - 7681: 39,19 - 7682: 39,20 - 7683: 39,21 - 7684: 39,21 - 7685: 34,20 - 7698: 37,20 - 7699: 37,20 - 7700: 44,20 - 8183: 42,-11 - 8184: 42,-15 - 8185: 42,-15 - 8467: 57,-20 - 8468: 57,-21 - 8484: 62,-23 - 8485: 62,-23 - 8486: 62,-22 - 8487: 62,-22 - 8488: 62,-20 - 8489: 62,-19 - 8490: 62,-18 - 8491: 62,-21 - 8511: 51,-24 - 8512: 51,-24 - 8513: 51,-25 - 8591: 64,-30 - 8592: 64,-11 - 8973: -7,-23 - 8974: -14,-23 - 8975: -15,-28 - 8976: -15,-27 - 8977: -7,-28 - 8978: 11,-23 - 8979: 4,-23 - 8980: 3,-28 - 8981: 3,-27 - 9069: 3,-28 - 9083: -7,-70 - 9084: -2,-70 - 9113: -8,-73 - 9114: -1,-73 - 9115: -1,-73 - 9648: 19,-35 - 10189: 35,-30 - 10221: 20,-52 - 10372: 2,-50 - 10373: 2,-52 - 10381: 10,-58 - 10382: 10,-59 - 10383: 10,-60 - 10384: 10,-60 - 10385: 10,-61 - 10387: 14,-60 - 10388: 14,-60 - 10420: 12,-61 - 10421: 12,-60 - 10422: 12,-59 - 10517: 49,-55 - 10612: 80,-44 - 10613: 80,-45 - 10614: 80,-45 - 10615: 80,-46 - 10631: 72,-39 - 10632: 72,-38 - 10692: 53,-55 - 10693: 53,-55 - 10694: 53,-54 - 10695: 53,-53 - 10707: 44,-55 - 10708: 44,-54 - 10709: 43,-51 - 10710: 43,-51 - 10711: 43,-52 - 10712: 43,-53 - 10713: 43,-54 - 10714: 43,-54 - 10715: 43,-55 - 10716: 43,-56 - 10717: 43,-51 - 10718: 43,-50 - 11233: -75,-35 - 11457: -21,-35 - 12263: -21,-47 - 12292: -12,-67 - 12293: -12,-66 - 12300: -17,-73 - 12301: -17,-72 - 12302: -17,-71 - 12303: -17,-71 - 12304: -17,-70 - 12305: -17,-70 - 12306: -17,-69 - 12307: -17,-69 - 12308: -17,-68 - 12327: -19,-75 - 12328: -19,-76 - 12356: -16,-82 - 12357: -16,-81 - 12358: -16,-80 - 12376: -23,-81 - 12381: -12,-66 - 12382: -12,-67 - 12480: -17,-79 - 12484: -19,-81 - 12491: -24,-81 - 12501: -12,-78 - 12519: -24,-73 - 12520: -24,-74 - 12521: -24,-75 - 12525: -22,-66 - 12526: -22,-67 - 12530: -25,-65 - 12531: -25,-66 - 12532: -25,-67 - 12533: -25,-67 - 12534: -25,-68 - 12535: -25,-69 - 12609: -38,28 - 12610: -38,27 - 12619: -37,27 - 13286: -41,-67 - 13452: -37,-79 - 13453: -37,-74 - 13464: -30,-78 - 13465: -30,-77 - 13473: -35,-78 - 13474: -35,-77 - 13493: -35,-80 - 14377: -21,23 - 14378: -8,23 - 14379: 6,23 - 15306: -40,5 - 15411: 61,-31 - 15412: 61,-10 - 15422: 58,-27 - 15423: 60,-27 - 15432: 58,-14 - 15433: 60,-14 - 15487: 75,1 - 15540: 80,1 - 15541: 89,1 - 15552: 85,1 - 15620: 99,-3 - 15647: 97,2 - 15771: 79,-4 - 15772: 79,-3 - 15793: 83,-3 - 15794: 83,-4 - 15807: 94,10 - 16008: 87,-4 - 16009: 87,-3 - 16667: -55,1 - 16668: -52,-1 - 16669: -52,-2 - 16670: -52,-2 - 16671: -52,-3 - 16672: -52,-4 - 16673: -52,-7 - 16674: -52,-8 - 16675: -52,-9 - 16676: -52,-12 - 16677: -52,-13 - 16678: -52,-14 - 16679: -52,-15 - 16680: -54,-17 - 16699: -49,4 - 16700: -49,5 - 16713: -54,5 - 16714: -51,5 - 17037: -46,-13 - 17038: -46,-14 - 17039: -46,-15 - 17040: -46,-16 - 17041: -46,-17 - 17065: -74,-7 - 17233: -50,-8 - 17302: -74,-7 - 17619: -79,6 - 17620: -79,5 - 17621: -79,4 - 17630: -76,6 - 17631: -76,5 - 17632: -76,4 - 17655: -76,10 - 17656: -79,10 - 17982: -45,47 - 17998: -53,33 - 17999: -53,34 - 18000: -53,36 - 18001: -53,37 - 18005: -57,33 - 18008: -55,21 - 18013: -52,23 - 18014: -52,24 - 18055: -58,6 - 18260: -63,-7 - 18261: -68,-7 - 18262: -57,-8 - 18285: -53,-37 - 18380: -17,-9 - 18381: -17,-10 - 18413: 15,-9 - 18919: 57,8 - 18920: 59,8 - 18921: 61,8 - 18922: 63,8 - 19370: -14,33 - 19371: -14,32 - 19372: -15,30 - 19373: -14,28 - 19374: -14,27 - 20034: 61,29 - 20047: -21,5 - 21270: 21,14 - 21271: 21,15 - 21275: 25,14 - 21276: 25,15 - 21291: 22,16 - 21292: 22,13 - 21331: 23,15 - 21332: 23,14 - 22571: -7,-28 - 22580: -15,-28 - 23063: 11,-28 - 24262: -44,-28 - 24263: -32,-28 + 1864: -8,30 + 1865: -8,33 + 1866: -8,27 + 1892: -17,33 + 1893: -17,32 + 1894: -17,31 + 1895: -17,29 + 1896: -17,28 + 1897: -17,27 + 2205: -28,33 + 2206: -28,34 + 2207: -28,34 + 2208: -28,35 + 2209: -28,36 + 2210: -28,37 + 2391: -9,40 + 2392: -9,41 + 2393: -9,42 + 2397: -9,43 + 2398: -9,42 + 2399: -9,41 + 2400: -9,40 + 2401: -9,39 + 2402: -9,45 + 2403: -8,44 + 2404: -8,38 + 2405: -8,37 + 2481: -5,37 + 2486: -4,38 + 2487: -4,39 + 2502: -1,40 + 2546: 4,51 + 2547: 4,52 + 2548: 4,53 + 2549: 4,53 + 2559: -1,52 + 2560: -1,53 + 2561: -1,54 + 2562: -1,54 + 2592: -7,53 + 2597: -4,54 + 3010: -16,64 + 3011: -16,63 + 3012: -16,62 + 3013: -16,61 + 3025: -8,61 + 3026: -8,62 + 3027: -8,63 + 3028: -8,63 + 3029: -8,64 + 3067: -22,61 + 3068: -22,62 + 3069: -22,63 + 3070: -22,64 + 3082: -2,64 + 3083: -2,63 + 3084: -2,62 + 3085: -2,62 + 3086: -2,61 + 3091: -1,61 + 3304: -1,61 + 3555: 4,64 + 3557: 4,60 + 3764: 24,66 + 3848: -42,61 + 3849: -42,60 + 5080: -32,80 + 5081: -32,81 + 5082: -32,89 + 5083: -32,89 + 5084: -32,90 + 5085: -32,91 + 5098: -28,91 + 5099: -28,90 + 5100: -28,89 + 5101: -28,89 + 5102: -28,81 + 5103: -28,80 + 5104: -28,80 + 5160: -14,89 + 5161: -14,90 + 5162: -14,91 + 5166: -10,89 + 5167: -10,90 + 5168: -10,90 + 5169: -10,91 + 5170: -10,91 + 5179: -14,80 + 5180: -14,80 + 5181: -14,81 + 5184: -10,80 + 5185: -10,81 + 5189: 4,81 + 5190: 4,80 + 5191: 4,79 + 5475: -17,-20 + 5494: -7,9 + 5498: 5,9 + 5544: 7,6 + 5556: 7,2 + 5557: 7,1 + 5563: 12,1 + 5653: -16,-5 + 5656: -14,-5 + 5657: -13,-4 + 5781: -3,13 + 5797: -1,-6 + 5798: -1,-4 + 5799: -1,-3 + 5800: -1,-2 + 5801: -1,-2 + 5802: -1,0 + 5803: -1,1 + 5804: -1,1 + 5805: -1,2 + 5806: -1,4 + 5807: -1,5 + 5808: -1,5 + 5809: -1,6 + 5860: -8,-16 + 5861: -8,-12 + 5887: -14,-15 + 5888: -14,-14 + 5889: -14,-13 + 5890: -12,-15 + 5891: -12,-14 + 5892: -12,-13 + 5893: -16,-15 + 5894: -16,-14 + 5895: -16,-13 + 5896: -10,-15 + 5897: -10,-14 + 5898: -10,-13 + 6008: -3,-20 + 6009: 1,-20 + 6013: 15,-20 + 6404: -26,-7 + 6405: -26,-8 + 6457: -23,-7 + 6458: -23,-7 + 6680: -33,15 + 6681: -33,14 + 6682: -33,13 + 6683: -33,12 + 6684: -33,11 + 6685: -33,10 + 6686: -33,9 + 6701: -39,10 + 6702: -39,9 + 6703: -39,11 + 6704: -39,11 + 6705: -39,12 + 6706: -39,13 + 6707: -39,14 + 6708: -39,14 + 6709: -39,14 + 6710: -39,15 + 6711: -39,16 + 6868: 19,5 + 6882: 26,5 + 6921: 19,-11 + 6922: 26,-11 + 7066: 20,1 + 7067: 20,0 + 7068: 20,-1 + 7069: 20,-2 + 7070: 20,-4 + 7071: 20,-5 + 7072: 20,-6 + 7073: 20,-7 + 7086: 24,-8 + 7087: 24,-2 + 7113: 34,0 + 7128: 28,9 + 7154: 29,8 + 7155: 29,9 + 7156: 29,10 + 7203: 34,5 + 7210: 38,6 + 7211: 38,4 + 7225: 49,0 + 7529: 39,19 + 7530: 39,20 + 7531: 39,21 + 7532: 39,21 + 7533: 34,20 + 7546: 37,20 + 7547: 37,20 + 7548: 44,20 + 8029: 42,-11 + 8030: 42,-15 + 8031: 42,-15 + 8310: 57,-20 + 8311: 57,-21 + 8327: 62,-23 + 8328: 62,-23 + 8329: 62,-22 + 8330: 62,-22 + 8331: 62,-20 + 8332: 62,-19 + 8333: 62,-18 + 8334: 62,-21 + 8353: 51,-24 + 8354: 51,-24 + 8355: 51,-25 + 8432: 64,-30 + 8433: 64,-11 + 8811: -7,-23 + 8812: -14,-23 + 8813: -15,-28 + 8814: -15,-27 + 8815: -7,-28 + 8816: 11,-23 + 8817: 4,-23 + 8818: 3,-28 + 8819: 3,-27 + 8907: 3,-28 + 8921: -7,-70 + 8922: -2,-70 + 8951: -8,-73 + 8952: -1,-73 + 8953: -1,-73 + 9486: 19,-35 + 10027: 35,-30 + 10059: 20,-52 + 10210: 2,-50 + 10211: 2,-52 + 10219: 10,-58 + 10220: 10,-59 + 10221: 10,-60 + 10222: 10,-60 + 10223: 10,-61 + 10225: 14,-60 + 10226: 14,-60 + 10258: 12,-61 + 10259: 12,-60 + 10260: 12,-59 + 10355: 49,-55 + 10450: 80,-44 + 10451: 80,-45 + 10452: 80,-45 + 10453: 80,-46 + 10469: 72,-39 + 10470: 72,-38 + 10530: 53,-55 + 10531: 53,-55 + 10532: 53,-54 + 10533: 53,-53 + 10545: 44,-55 + 10546: 44,-54 + 10547: 43,-51 + 10548: 43,-51 + 10549: 43,-52 + 10550: 43,-53 + 10551: 43,-54 + 10552: 43,-54 + 10553: 43,-55 + 10554: 43,-56 + 10555: 43,-51 + 10556: 43,-50 + 10730: -75,-35 + 10954: -21,-35 + 11601: -21,-47 + 11630: -12,-67 + 11631: -12,-66 + 11638: -17,-73 + 11639: -17,-72 + 11640: -17,-71 + 11641: -17,-71 + 11642: -17,-70 + 11643: -17,-70 + 11644: -17,-69 + 11645: -17,-69 + 11646: -17,-68 + 11665: -19,-75 + 11666: -19,-76 + 11694: -16,-82 + 11695: -16,-81 + 11696: -16,-80 + 11714: -23,-81 + 11719: -12,-66 + 11720: -12,-67 + 11818: -17,-79 + 11822: -19,-81 + 11829: -24,-81 + 11839: -12,-78 + 11857: -24,-73 + 11858: -24,-74 + 11859: -24,-75 + 11863: -22,-66 + 11864: -22,-67 + 11868: -25,-65 + 11869: -25,-66 + 11870: -25,-67 + 11871: -25,-67 + 11872: -25,-68 + 11873: -25,-69 + 11927: -38,28 + 11928: -38,27 + 11937: -37,27 + 12342: -41,-67 + 12508: -37,-79 + 12509: -37,-74 + 12520: -30,-78 + 12521: -30,-77 + 12529: -35,-78 + 12530: -35,-77 + 12549: -35,-80 + 13433: -21,23 + 13434: -8,23 + 13435: 6,23 + 14355: -40,5 + 14460: 61,-31 + 14461: 61,-10 + 14471: 58,-27 + 14472: 60,-27 + 14481: 58,-14 + 14482: 60,-14 + 14536: 75,1 + 14589: 80,1 + 14590: 89,1 + 14601: 85,1 + 14669: 99,-3 + 14696: 97,2 + 14820: 79,-4 + 14821: 79,-3 + 14842: 83,-3 + 14843: 83,-4 + 14856: 94,10 + 15057: 87,-4 + 15058: 87,-3 + 15716: -55,1 + 15717: -52,-1 + 15718: -52,-2 + 15719: -52,-2 + 15720: -52,-3 + 15721: -52,-4 + 15722: -52,-7 + 15723: -52,-8 + 15724: -52,-9 + 15725: -52,-12 + 15726: -52,-13 + 15727: -52,-14 + 15728: -52,-15 + 15729: -54,-17 + 15748: -49,4 + 15749: -49,5 + 15762: -54,5 + 15763: -51,5 + 16086: -46,-13 + 16087: -46,-14 + 16088: -46,-15 + 16089: -46,-16 + 16090: -46,-17 + 16114: -74,-7 + 16282: -50,-8 + 16351: -74,-7 + 16668: -79,6 + 16669: -79,5 + 16670: -79,4 + 16679: -76,6 + 16680: -76,5 + 16681: -76,4 + 16704: -76,10 + 16705: -79,10 + 17031: -45,47 + 17047: -53,33 + 17048: -53,34 + 17049: -53,36 + 17050: -53,37 + 17054: -57,33 + 17057: -55,21 + 17062: -52,23 + 17063: -52,24 + 17104: -58,6 + 17309: -63,-7 + 17310: -68,-7 + 17311: -57,-8 + 17334: -53,-37 + 17429: -17,-9 + 17430: -17,-10 + 17462: 15,-9 + 17963: 57,8 + 17964: 59,8 + 17965: 61,8 + 17966: 63,8 + 18414: -14,33 + 18415: -14,32 + 18416: -15,30 + 18417: -14,28 + 18418: -14,27 + 19040: 61,29 + 19053: -21,5 + 20276: 21,14 + 20277: 21,15 + 20281: 25,14 + 20282: 25,15 + 20297: 22,16 + 20298: 22,13 + 20337: 23,15 + 20338: 23,14 + 21577: -7,-28 + 21586: -15,-28 + 22069: 11,-28 + 23266: -44,-28 + 23267: -32,-28 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 20768: 55,9 + 19774: 55,9 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 7642: 73,20 + 7490: 73,20 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNe decals: - 8092: 31,-14 - 8093: 22,-14 + 7938: 31,-14 + 7939: 22,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNe decals: - 15691: 79,6 + 14740: 79,6 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 23285: 24,-46 - 23699: 31,-23 - 23700: 32,-22 + 22291: 24,-46 + 22705: 31,-23 + 22706: 32,-22 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerNe decals: - 3922: 21,63 + 3789: 21,63 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNe decals: - 9738: 22,-31 - 9955: 32,-31 - 9956: 25,-31 - 9961: 26,-25 - 9985: 31,-23 - 9994: 32,-22 - 10073: 24,-46 - 10137: 34,-47 + 9576: 22,-31 + 9793: 32,-31 + 9794: 25,-31 + 9799: 26,-25 + 9823: 31,-23 + 9832: 32,-22 + 9911: 24,-46 + 9975: 34,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNe decals: - 12079: -28,-38 - 12080: -23,-38 - 12253: -17,-38 - 16067: -62,-46 - 16068: -63,-45 + 11417: -28,-38 + 11418: -23,-38 + 11591: -17,-38 + 15116: -62,-46 + 15117: -63,-45 - node: color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 22748: -17,-38 + 21754: -17,-38 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 20221: -22,2 - 20273: 6,-80 - 20303: 6,-64 - 20304: 6,-74 - 20310: 10,-77 - 20311: 10,-74 - 20312: 9,-64 - 20340: 8,-58 - 20366: 14,-30 - 20407: 3,65 - 20417: 59,31 - 20418: 58,32 - 20425: 48,13 - 20437: 41,13 - 20457: 41,9 - 20469: 37,9 - 20472: 37,12 - 20512: 93,23 - 20513: 86,10 - 20514: 74,3 - 20520: 74,19 - 20547: 44,13 - 20691: 54,19 - 20692: 48,19 - 20693: 47,24 - 20749: 60,13 - 20837: 78,10 - 20912: 76,23 - 20954: 71,-3 - 20974: 48,-3 - 20984: 53,-3 - 20991: 58,-3 - 21012: 44,1 - 21022: 41,1 - 21065: 44,9 - 21093: 77,-2 - 21094: 74,-3 - 21303: 28,22 + 19227: -22,2 + 19279: 6,-80 + 19309: 6,-64 + 19310: 6,-74 + 19316: 10,-77 + 19317: 10,-74 + 19318: 9,-64 + 19346: 8,-58 + 19372: 14,-30 + 19413: 3,65 + 19423: 59,31 + 19424: 58,32 + 19431: 48,13 + 19443: 41,13 + 19463: 41,9 + 19475: 37,9 + 19478: 37,12 + 19518: 93,23 + 19519: 86,10 + 19520: 74,3 + 19526: 74,19 + 19553: 44,13 + 19697: 54,19 + 19698: 48,19 + 19699: 47,24 + 19755: 60,13 + 19843: 78,10 + 19918: 76,23 + 19960: 71,-3 + 19980: 48,-3 + 19990: 53,-3 + 19997: 58,-3 + 20018: 44,1 + 20028: 41,1 + 20071: 44,9 + 20099: 77,-2 + 20100: 74,-3 + 20309: 28,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2213: -17,53 - 2233: -15,52 - 2348: -28,38 - 2393: -33,38 - 2781: -2,46 - 2795: -5,28 - 2816: -26,43 - 3459: -28,92 - 3468: -29,96 - 3477: -28,82 - 3488: -11,96 - 3502: -10,92 - 3510: -10,82 - 3550: 8,69 - 3770: 3,58 - 4149: -23,23 - 5127: 36,32 - 6326: 4,-14 - 6394: 14,-15 - 6806: -35,16 - 6807: -34,15 - 6898: -35,19 - 6915: -22,15 - 7056: 24,10 - 7139: 31,2 - 7153: 31,-7 - 8632: 63,-10 - 8636: 57,-10 - 8859: 1,-34 - 8860: 1,-34 - 9136: 2,-64 - 9137: 2,-64 - 9276: 1,-58 - 9277: 1,-58 - 9414: -39,-14 - 10519: 56,-43 - 10520: 56,-43 - 10564: 49,-38 - 10565: 49,-38 - 11171: -58,-34 - 11217: -77,-19 - 11218: -77,-26 - 11739: -37,-51 - 11740: -37,-55 - 11775: -23,-50 - 11790: -33,-52 - 11791: -33,-52 - 13329: -36,-60 - 15263: -8,-69 - 15704: 89,2 - 16358: -39,-6 - 16622: -55,-12 - 16747: -49,-1 - 17427: 7,85 - 17433: 8,82 - 18367: -9,-12 - 18368: -9,-12 - 18369: -9,-12 - 18442: 10,-12 - 23951: -28,-11 + 2092: -17,53 + 2111: -15,52 + 2225: -28,38 + 2270: -33,38 + 2658: -2,46 + 2672: -5,28 + 2693: -26,43 + 3330: -28,92 + 3339: -29,96 + 3348: -28,82 + 3359: -11,96 + 3371: -10,92 + 3379: -10,82 + 3417: 8,69 + 3637: 3,58 + 3999: -23,23 + 4977: 36,32 + 6174: 4,-14 + 6242: 14,-15 + 6654: -35,16 + 6655: -34,15 + 6746: -35,19 + 6763: -22,15 + 6904: 24,10 + 6987: 31,2 + 7001: 31,-7 + 8474: 57,-10 + 8697: 1,-34 + 8698: 1,-34 + 8974: 2,-64 + 8975: 2,-64 + 9114: 1,-58 + 9115: 1,-58 + 9252: -39,-14 + 10357: 56,-43 + 10358: 56,-43 + 10402: 49,-38 + 10403: 49,-38 + 10668: -58,-34 + 10714: -77,-19 + 10715: -77,-26 + 11224: -37,-51 + 11225: -37,-55 + 11260: -23,-50 + 11275: -33,-52 + 11276: -33,-52 + 12385: -36,-60 + 14319: -8,-69 + 14753: 89,2 + 15407: -39,-6 + 15671: -55,-12 + 15796: -49,-1 + 16476: 7,85 + 16482: 8,82 + 17416: -9,-12 + 17417: -9,-12 + 17418: -9,-12 + 17491: 10,-12 + 22957: -28,-11 + 23796: 63,-10 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNw decals: - 8090: 20,-14 - 8091: 24,-14 + 7936: 20,-14 + 7937: 24,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNw decals: - 3739: -28,65 + 3606: -28,65 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNw decals: - 23290: 20,-46 - 23698: 29,-23 - 23701: 28,-22 + 22296: 20,-46 + 22704: 29,-23 + 22707: 28,-22 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNw decals: - 9739: 20,-31 - 9954: 31,-31 - 9958: 24,-31 - 9962: 24,-25 - 9986: 29,-23 - 9999: 28,-22 - 10072: 20,-46 - 10136: 32,-47 + 9577: 20,-31 + 9792: 31,-31 + 9796: 24,-31 + 9800: 24,-25 + 9824: 29,-23 + 9837: 28,-22 + 9910: 20,-46 + 9974: 32,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNw decals: - 12081: -30,-38 - 12082: -26,-38 - 12254: -21,-38 - 16069: -65,-45 + 11419: -30,-38 + 11420: -26,-38 + 11592: -21,-38 + 15118: -65,-45 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 22747: -21,-38 + 21753: -21,-38 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerNw decals: - 7816: 68,6 + 7664: 68,6 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerNw decals: - 3927: 18,63 + 3794: 18,63 - node: color: '#DAA58BFF' id: BrickTileSteelCornerNw decals: - 4553: 13,39 + 4403: 13,39 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 20228: -24,2 - 20272: 4,-80 - 20301: 4,-74 - 20302: 4,-64 - 20327: 8,-74 - 20348: 3,-58 - 20352: 8,-64 - 20369: 10,-30 - 20387: 12,32 - 20408: 0,65 - 20419: 50,32 - 20420: 49,31 - 20421: 45,24 - 20438: 39,13 - 20458: 39,9 - 20470: 35,9 - 20471: 35,12 - 20515: 72,3 - 20519: 72,19 - 20543: 46,13 - 20544: 43,13 - 20581: 91,23 - 20582: 81,14 - 20583: 80,10 - 20584: 76,10 - 20585: 72,23 - 20690: 50,19 - 20722: 56,19 - 20748: 50,13 - 20771: 50,9 - 20957: 68,-3 - 20989: 50,-3 - 20990: 55,-3 - 21013: 43,1 - 21014: 39,1 - 21064: 43,9 - 21095: 73,-3 - 21096: 76,-2 - 21126: -20,-24 - 21142: 45,-3 - 21160: 46,-7 - 21306: 20,22 - 23053: -20,-24 + 19234: -24,2 + 19278: 4,-80 + 19307: 4,-74 + 19308: 4,-64 + 19333: 8,-74 + 19354: 3,-58 + 19358: 8,-64 + 19375: 10,-30 + 19393: 12,32 + 19414: 0,65 + 19425: 50,32 + 19426: 49,31 + 19427: 45,24 + 19444: 39,13 + 19464: 39,9 + 19476: 35,9 + 19477: 35,12 + 19521: 72,3 + 19525: 72,19 + 19549: 46,13 + 19550: 43,13 + 19587: 91,23 + 19588: 81,14 + 19589: 80,10 + 19590: 76,10 + 19591: 72,23 + 19696: 50,19 + 19728: 56,19 + 19754: 50,13 + 19777: 50,9 + 19963: 68,-3 + 19995: 50,-3 + 19996: 55,-3 + 20019: 43,1 + 20020: 39,1 + 20070: 43,9 + 20101: 73,-3 + 20102: 76,-2 + 20132: -20,-24 + 20148: 45,-3 + 20166: 46,-7 + 20312: 20,22 + 22059: -20,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2211: -23,52 - 2212: -21,53 - 2256: -24,45 - 2314: -28,39 - 2377: -30,33 - 2392: -34,38 - 2752: -3,51 - 2782: -5,46 - 2797: -7,28 - 3313: -32,69 - 3421: -32,92 - 3422: -32,82 - 3469: -31,96 - 3489: -13,96 - 3503: -14,92 - 3511: -14,82 - 3652: 4,82 - 5108: 29,32 - 5548: -21,-15 - 5785: 7,-4 - 6245: -6,-14 - 6395: 12,-15 - 6396: 12,-15 - 6797: -44,21 - 6808: -37,16 - 6809: -37,16 - 6810: -38,15 - 6886: -37,16 - 6899: -37,19 - 6923: -29,15 - 6924: -29,15 - 7057: 20,10 - 7134: 25,2 - 7145: 25,-7 - 7295: 28,12 - 8337: 38,-19 - 8635: 61,-10 - 8641: 55,-10 - 8861: -3,-34 - 9278: -3,-58 - 9279: -3,-58 - 9293: -3,-58 - 9594: -11,-64 - 10518: 54,-43 - 10562: 43,-38 - 10563: 43,-38 - 11216: -78,-19 - 11224: -78,-26 - 11225: -78,-23 - 11738: -42,-51 - 11745: -39,-55 - 11774: -26,-50 - 11792: -35,-52 - 11793: -35,-52 - 13330: -38,-60 - 14308: -45,15 - 15264: -1,-69 - 15499: 76,2 - 16360: -40,-6 - 16594: -61,-12 - 16721: -61,-1 - 16749: -51,-1 - 17428: 5,85 - 18439: 6,-12 - 19998: 61,26 - 23950: -35,-11 + 2090: -23,52 + 2091: -21,53 + 2134: -24,45 + 2191: -28,39 + 2254: -30,33 + 2269: -34,38 + 2629: -3,51 + 2659: -5,46 + 2674: -7,28 + 3186: -32,69 + 3292: -32,92 + 3293: -32,82 + 3340: -31,96 + 3360: -13,96 + 3372: -14,92 + 3380: -14,82 + 3519: 4,82 + 4958: 29,32 + 5396: -21,-15 + 5633: 7,-4 + 6093: -6,-14 + 6243: 12,-15 + 6244: 12,-15 + 6645: -44,21 + 6656: -37,16 + 6657: -37,16 + 6658: -38,15 + 6734: -37,16 + 6747: -37,19 + 6771: -29,15 + 6772: -29,15 + 6905: 20,10 + 6982: 25,2 + 6993: 25,-7 + 7143: 28,12 + 8183: 38,-19 + 8473: 61,-10 + 8479: 55,-10 + 8699: -3,-34 + 9116: -3,-58 + 9117: -3,-58 + 9131: -3,-58 + 9432: -11,-64 + 10356: 54,-43 + 10400: 43,-38 + 10401: 43,-38 + 10713: -78,-19 + 10721: -78,-26 + 10722: -78,-23 + 11223: -42,-51 + 11230: -39,-55 + 11259: -26,-50 + 11277: -35,-52 + 11278: -35,-52 + 12386: -38,-60 + 13364: -45,15 + 14320: -1,-69 + 14548: 76,2 + 15409: -40,-6 + 15643: -61,-12 + 15770: -61,-1 + 15798: -51,-1 + 16477: 5,85 + 17488: 6,-12 + 19004: 61,26 + 22956: -35,-11 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 915: 28,1 + 802: 28,1 - node: color: '#00C9DAFF' id: BrickTileSteelCornerSe decals: - 8094: 22,-16 + 7940: 22,-16 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSe decals: - 15678: 79,4 + 14727: 79,4 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSe decals: - 23297: 24,-49 + 22303: 24,-49 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSe decals: - 9741: 22,-32 - 9952: 32,-32 - 9953: 32,-32 - 9959: 25,-32 - 9973: 26,-26 - 10082: 24,-49 - 10139: 34,-53 + 9579: 22,-32 + 9790: 32,-32 + 9791: 32,-32 + 9797: 25,-32 + 9811: 26,-26 + 9920: 24,-49 + 9977: 34,-53 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSe decals: - 11900: -33,-30 - 12014: -24,-47 - 12083: -28,-42 - 12084: -23,-42 + 11313: -33,-30 + 11352: -24,-47 + 11421: -28,-42 + 11422: -23,-42 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 22708: -17,-44 + 21714: -17,-44 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSe decals: - 7774: 59,3 - 7775: 63,3 - 7776: 67,3 - 7795: 70,5 - 19184: 67,4 + 7622: 59,3 + 7623: 63,3 + 7624: 67,3 + 7643: 70,5 + 18228: 67,4 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSe decals: - 3951: 21,61 + 3818: 21,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 20223: -22,0 - 20234: -46,8 - 20278: 6,-82 - 20279: 10,-78 - 20280: 10,-75 - 20281: 6,-72 - 20282: 9,-66 - 20283: 8,-62 - 20284: 6,-78 - 20368: 14,-32 - 20388: 13,30 - 20422: 48,15 - 20439: 41,11 - 20473: 37,11 - 20524: 76,21 - 20545: 44,11 - 20579: 86,9 - 20580: 93,12 - 20641: 59,21 - 20720: 57,15 - 20733: 54,15 - 20750: 60,11 - 20769: 55,3 - 20836: 78,8 - 20865: 74,-1 - 20866: 74,5 - 20963: 71,-5 - 20975: 48,-5 - 20993: 53,-5 - 20994: 58,-5 - 21008: 44,-1 - 21011: 41,-1 - 21063: 44,7 - 21101: 74,-5 - 21108: 77,-4 - 21128: -18,-28 - 21157: 51,-9 - 21305: 28,21 + 19229: -22,0 + 19240: -46,8 + 19284: 6,-82 + 19285: 10,-78 + 19286: 10,-75 + 19287: 6,-72 + 19288: 9,-66 + 19289: 8,-62 + 19290: 6,-78 + 19374: 14,-32 + 19394: 13,30 + 19428: 48,15 + 19445: 41,11 + 19479: 37,11 + 19530: 76,21 + 19551: 44,11 + 19585: 86,9 + 19586: 93,12 + 19647: 59,21 + 19726: 57,15 + 19739: 54,15 + 19756: 60,11 + 19775: 55,3 + 19842: 78,8 + 19871: 74,-1 + 19872: 74,5 + 19969: 71,-5 + 19981: 48,-5 + 19999: 53,-5 + 20000: 58,-5 + 20014: 44,-1 + 20017: 41,-1 + 20069: 44,7 + 20107: 74,-5 + 20114: 77,-4 + 20134: -18,-28 + 20163: 51,-9 + 20311: 28,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2232: -17,55 - 2316: -25,29 - 2390: -33,32 - 2785: -2,44 - 2796: -5,26 - 3473: -28,88 - 3481: -28,79 - 3498: -10,88 - 3515: -10,79 - 3774: 3,56 - 5779: 14,-6 - 6064: -9,-17 - 6305: 18,-21 - 6323: 4,-17 - 6359: 10,-17 - 6804: -35,8 - 6805: -34,9 - 6897: -35,18 - 6914: -22,8 - 7053: 24,8 - 7156: 31,-8 - 7158: 31,-6 - 8601: 57,-31 - 8610: 63,-31 - 8611: 63,-31 - 8856: 1,-36 - 9146: -8,-66 - 9210: -3,-82 - 9272: 1,-62 - 9273: 1,-62 - 10522: 56,-44 - 10559: 49,-45 - 11169: -58,-39 - 11170: -58,-39 - 11209: -77,-32 - 11226: -77,-24 - 11741: -37,-56 - 11742: -37,-56 - 11760: -41,-56 - 11784: -23,-54 - 11795: -33,-54 - 15261: -8,-71 - 16357: 8,67 - 16359: -39,-7 - 16618: -55,-15 - 16750: -49,-4 - 17444: 8,74 - 19935: -16,-1 - 19991: 70,21 + 2110: -17,55 + 2193: -25,29 + 2267: -33,32 + 2662: -2,44 + 2673: -5,26 + 3344: -28,88 + 3352: -28,79 + 3367: -10,88 + 3384: -10,79 + 3641: 3,56 + 5627: 14,-6 + 5912: -9,-17 + 6153: 18,-21 + 6171: 4,-17 + 6207: 10,-17 + 6652: -35,8 + 6653: -34,9 + 6745: -35,18 + 6762: -22,8 + 6901: 24,8 + 7004: 31,-8 + 7006: 31,-6 + 8442: 57,-31 + 8451: 63,-31 + 8452: 63,-31 + 8694: 1,-36 + 8984: -8,-66 + 9048: -3,-82 + 9110: 1,-62 + 9111: 1,-62 + 10360: 56,-44 + 10397: 49,-45 + 10666: -58,-39 + 10667: -58,-39 + 10706: -77,-32 + 10723: -77,-24 + 11226: -37,-56 + 11227: -37,-56 + 11245: -41,-56 + 11269: -23,-54 + 11280: -33,-54 + 14317: -8,-71 + 15406: 8,67 + 15408: -39,-7 + 15667: -55,-15 + 15799: -49,-4 + 16493: 8,74 + 18941: -16,-1 + 18997: 70,21 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 919: 30,1 + 806: 30,1 - node: color: '#00C9DAFF' id: BrickTileSteelCornerSw decals: - 8088: 20,-16 - 8089: 24,-18 + 7934: 20,-16 + 7935: 24,-18 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSw decals: - 3748: -26,59 - 10586: 69,-50 - 10587: 69,-50 + 3615: -26,59 + 10424: 69,-50 + 10425: 69,-50 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSw decals: - 23289: 20,-49 + 22295: 20,-49 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerSw decals: - 3924: 18,62 + 3791: 18,62 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSw decals: - 9740: 20,-32 - 9951: 31,-32 - 9957: 24,-32 - 9972: 24,-26 - 10083: 20,-49 - 10138: 32,-53 - 19280: 5,62 + 9578: 20,-32 + 9789: 31,-32 + 9795: 24,-32 + 9810: 24,-26 + 9921: 20,-49 + 9976: 32,-53 + 18324: 5,62 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSw decals: - 12013: -29,-47 - 12085: -26,-42 - 12086: -30,-42 - 16062: -66,-48 + 11351: -29,-47 + 11423: -26,-42 + 11424: -30,-42 + 15111: -66,-48 - node: color: '#D381C9FF' id: BrickTileSteelCornerSw decals: - 22730: -21,-44 + 21736: -21,-44 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSw decals: - 7771: 57,3 - 7772: 61,3 - 7773: 65,3 + 7619: 57,3 + 7620: 61,3 + 7621: 65,3 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSw decals: - 3926: 19,61 + 3793: 19,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 20305: 4,-78 - 20306: 4,-72 - 20307: 3,-62 - 20308: 8,-66 - 20309: 8,-78 - 20367: 10,-32 - 20409: 0,60 - 20423: 45,15 - 20424: 39,3 - 20440: 39,11 - 20474: 35,11 - 20475: 35,8 - 20546: 43,11 - 20632: 49,21 - 20721: 56,15 - 20734: 50,15 - 20735: 50,11 - 20770: 50,3 - 20824: 81,12 - 20835: 76,8 - 20864: 72,5 - 20903: 72,21 - 20953: 68,-5 - 20985: 50,-5 - 20986: 55,-5 - 21002: 46,-1 - 21009: 43,-1 - 21010: 39,-1 - 21062: 43,7 - 21100: 73,-5 - 21127: -20,-28 - 21141: 45,-5 - 21158: 46,-9 - 21304: 20,21 + 19311: 4,-78 + 19312: 4,-72 + 19313: 3,-62 + 19314: 8,-66 + 19315: 8,-78 + 19373: 10,-32 + 19415: 0,60 + 19429: 45,15 + 19430: 39,3 + 19446: 39,11 + 19480: 35,11 + 19481: 35,8 + 19552: 43,11 + 19638: 49,21 + 19727: 56,15 + 19740: 50,15 + 19741: 50,11 + 19776: 50,3 + 19830: 81,12 + 19841: 76,8 + 19870: 72,5 + 19909: 72,21 + 19959: 68,-5 + 19991: 50,-5 + 19992: 55,-5 + 20008: 46,-1 + 20015: 43,-1 + 20016: 39,-1 + 20068: 43,7 + 20106: 73,-5 + 20133: -20,-28 + 20147: 45,-5 + 20164: 46,-9 + 20310: 20,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2260: -24,40 - 2289: -23,28 - 2317: -27,29 - 2378: -30,37 - 2391: -34,32 - 2783: -5,45 - 2784: -4,44 - 2798: -7,26 - 3312: -32,67 - 3474: -32,88 - 3480: -32,79 - 3505: -14,88 - 3512: -14,79 - 3655: 4,79 - 5115: 29,30 - 5549: -21,-18 - 5783: 7,-6 - 6249: -6,-17 - 6362: 6,-17 - 6363: 6,-17 - 6427: -20,-21 - 6798: -44,8 - 6802: -37,8 - 6803: -38,9 - 6900: -37,18 - 6935: -29,8 - 7052: 20,8 - 8350: 38,-21 - 8599: 55,-31 - 8600: 55,-31 - 8608: 61,-31 - 8857: -3,-36 - 8858: -3,-36 - 9145: -1,-66 - 9204: -9,-82 - 9211: 1,-82 - 9212: 1,-82 - 9268: -3,-62 - 9421: -42,-18 - 10560: 43,-45 - 10561: 43,-45 - 11159: -60,-39 - 11210: -78,-32 - 11211: -78,-28 - 11212: -78,-24 - 11213: -78,-21 - 11759: -42,-56 - 11773: -26,-54 - 11794: -35,-54 - 14312: -45,11 - 15262: -1,-71 - 15298: -43,4 - 15500: 76,0 - 16361: -40,-7 - 16605: -61,-15 - 16724: -61,-4 - 19990: 61,21 - 23949: -35,-16 + 2138: -24,40 + 2166: -23,28 + 2194: -27,29 + 2255: -30,37 + 2268: -34,32 + 2660: -5,45 + 2661: -4,44 + 2675: -7,26 + 3185: -32,67 + 3345: -32,88 + 3351: -32,79 + 3374: -14,88 + 3381: -14,79 + 3522: 4,79 + 4965: 29,30 + 5397: -21,-18 + 5631: 7,-6 + 6097: -6,-17 + 6210: 6,-17 + 6211: 6,-17 + 6275: -20,-21 + 6646: -44,8 + 6650: -37,8 + 6651: -38,9 + 6748: -37,18 + 6783: -29,8 + 6900: 20,8 + 8196: 38,-21 + 8440: 55,-31 + 8441: 55,-31 + 8449: 61,-31 + 8695: -3,-36 + 8696: -3,-36 + 8983: -1,-66 + 9042: -9,-82 + 9049: 1,-82 + 9050: 1,-82 + 9106: -3,-62 + 9259: -42,-18 + 10398: 43,-45 + 10399: 43,-45 + 10656: -60,-39 + 10707: -78,-32 + 10708: -78,-28 + 10709: -78,-24 + 10710: -78,-21 + 11244: -42,-56 + 11258: -26,-54 + 11279: -35,-54 + 13368: -45,11 + 14318: -1,-71 + 14347: -43,4 + 14549: 76,0 + 15410: -40,-7 + 15654: -61,-15 + 15773: -61,-4 + 18996: 61,21 + 22955: -35,-16 - node: color: '#00FFFFFF' id: BrickTileSteelEndE decals: - 3732: -24,65 - 3761: -24,59 - 3762: -24,61 - 3763: -24,63 - 10165: 38,-26 + 3599: -24,65 + 3628: -24,59 + 3629: -24,61 + 3630: -24,63 + 10003: 38,-26 - node: color: '#DA8B8BFF' id: BrickTileSteelEndE decals: - 19208: 70,9 + 18252: 70,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndE decals: - 20919: 76,25 + 19925: 76,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 7301: 33,12 + 7149: 33,12 - node: color: '#00FFFFFF' id: BrickTileSteelEndN decals: - 10585: 69,-49 + 10423: 69,-49 - node: color: '#A9DA8BFF' id: BrickTileSteelEndN decals: - 2986: -39,50 - 3002: -39,46 + 2863: -39,50 + 2879: -39,46 - node: color: '#DA8B8BFF' id: BrickTileSteelEndN decals: - 19206: 58,9 - 19207: 66,9 + 18250: 58,9 + 18251: 66,9 - node: color: '#00C9DAFF' id: BrickTileSteelEndS decals: - 8106: 27,-18 - 8107: 29,-18 - 8108: 31,-18 - 8109: 31,-18 + 7952: 27,-18 + 7953: 29,-18 + 7954: 31,-18 + 7955: 31,-18 - node: color: '#A9DA8BFF' id: BrickTileSteelEndS decals: - 2987: -39,48 - 3007: -39,45 + 2864: -39,48 + 2884: -39,45 - node: color: '#B18BDAFF' id: BrickTileSteelEndS decals: - 12223: -21,-44 - 12224: -17,-44 + 11561: -21,-44 + 11562: -17,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 7286: 28,8 - 12456: -21,-78 + 7134: 28,8 + 11794: -21,-78 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 907: 28,-8 + 794: 28,-8 - node: color: '#00FFFFFF' id: BrickTileSteelEndW decals: - 10173: 34,-26 - 10291: 12,-47 - 15679: 76,6 - 15680: 76,4 + 10011: 34,-26 + 10129: 12,-47 + 14728: 76,6 + 14729: 76,4 - node: color: '#B18BDAFF' id: BrickTileSteelEndW decals: - 16060: -67,-46 + 15109: -67,-46 - node: color: '#DA8B8BFF' id: BrickTileSteelEndW decals: - 19209: 68,9 + 18253: 68,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndW decals: - 20920: 74,25 + 19926: 74,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 2349: -28,39 - 6060: -16,-17 - 6061: -16,-17 - 12457: -19,-78 - 18366: -16,-12 + 2226: -28,39 + 5908: -16,-17 + 5909: -16,-17 + 11795: -19,-78 + 17415: -16,-12 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNe decals: - 8123: 25,-14 - 8126: 22,-15 - 8127: 22,-15 - 8139: 31,-16 + 7969: 25,-14 + 7972: 22,-15 + 7973: 22,-15 + 7985: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNe decals: - 3743: -25,65 - 3749: -26,59 - 3750: -26,61 - 3751: -26,63 - 10169: 37,-26 - 10588: 69,-50 + 3610: -25,65 + 3616: -26,59 + 3617: -26,61 + 3618: -26,63 + 10007: 37,-26 + 10426: 69,-50 - node: color: '#52B4E9FF' id: BrickTileSteelInnerNe decals: - 23710: 32,-23 + 22716: 32,-23 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNe decals: - 10000: 32,-23 + 9838: 32,-23 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNe decals: - 11949: -33,-27 - 12029: -29,-44 - 12098: -29,-38 - 12099: -24,-38 - 12259: -17,-40 - 16073: -63,-46 - 16074: -62,-48 - 19705: -6,-41 - 19720: -6,-40 + 11322: -33,-27 + 11367: -29,-44 + 11436: -29,-38 + 11437: -24,-38 + 11597: -17,-40 + 15122: -63,-46 + 15123: -62,-48 + 18749: -6,-41 + 18764: -6,-40 - node: color: '#D381C9FF' id: BrickTileSteelInnerNe decals: - 22699: -17,-40 + 21705: -17,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNe decals: - 7819: 66,5 - 7820: 69,6 - 7829: 58,5 - 7830: 62,5 + 7667: 66,5 + 7668: 69,6 + 7677: 58,5 + 7678: 62,5 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNe decals: - 20227: -23,2 - 20275: 5,-80 - 20285: 6,-77 - 20286: 6,-75 - 20290: 6,-65 - 20291: 5,-64 - 20342: 7,-58 - 20361: 5,-74 - 20372: 11,-30 - 20378: 14,-31 - 20381: 13,-30 - 20402: 3,64 - 20414: 3,60 - 20461: 40,9 - 20530: 74,9 - 20539: 48,12 - 20540: 47,13 - 20541: 47,13 - 20550: 44,12 - 20564: 48,8 - 20611: 58,31 - 20612: 59,25 - 20657: 51,21 - 20658: 54,21 - 20659: 50,28 - 20660: 55,28 - 20708: 48,16 - 20709: 47,19 - 20713: 47,23 - 20725: 57,19 - 20729: 54,17 - 20745: 52,19 - 20753: 60,12 - 20757: 51,13 - 20766: 48,4 - 20798: 93,21 - 20806: 93,13 - 20829: 83,10 - 20841: 78,9 - 20902: 73,19 - 20911: 76,22 - 20914: 75,23 - 20915: 75,25 - 20924: 93,17 - 20928: 92,23 - 20931: 73,3 - 20932: 74,1 - 20947: 70,-1 - 20951: 67,-1 - 20960: 69,-3 - 20964: 71,-4 - 20973: 47,-3 - 20997: 52,-3 - 21017: 44,0 - 21018: 40,1 - 21044: 36,6 - 21046: 37,4 - 21053: 36,9 - 21055: 37,8 - 21059: 44,8 - 21067: 53,9 - 21069: 55,5 - 21103: 74,-4 - 21170: 56,-3 - 21173: 48,1 - 21199: 58,1 - 21200: 62,1 - 21201: 66,1 - 21309: 21,22 - 21909: 10,30 - 21913: 10,29 - 22503: 32,6 - 22506: 32,4 - 23157: 12,-34 - 23160: 11,-34 - 23818: 2,58 - 23822: 0,58 - 23983: 1,-60 - 23986: 1,-62 - 23987: 2,-69 - 23988: 2,-66 - 23989: 2,-75 - 23990: 2,-78 + 19233: -23,2 + 19281: 5,-80 + 19291: 6,-77 + 19292: 6,-75 + 19296: 6,-65 + 19297: 5,-64 + 19348: 7,-58 + 19367: 5,-74 + 19378: 11,-30 + 19384: 14,-31 + 19387: 13,-30 + 19408: 3,64 + 19420: 3,60 + 19467: 40,9 + 19536: 74,9 + 19545: 48,12 + 19546: 47,13 + 19547: 47,13 + 19556: 44,12 + 19570: 48,8 + 19617: 58,31 + 19618: 59,25 + 19663: 51,21 + 19664: 54,21 + 19665: 50,28 + 19666: 55,28 + 19714: 48,16 + 19715: 47,19 + 19719: 47,23 + 19731: 57,19 + 19735: 54,17 + 19751: 52,19 + 19759: 60,12 + 19763: 51,13 + 19772: 48,4 + 19804: 93,21 + 19812: 93,13 + 19835: 83,10 + 19847: 78,9 + 19908: 73,19 + 19917: 76,22 + 19920: 75,23 + 19921: 75,25 + 19930: 93,17 + 19934: 92,23 + 19937: 73,3 + 19938: 74,1 + 19953: 70,-1 + 19957: 67,-1 + 19966: 69,-3 + 19970: 71,-4 + 19979: 47,-3 + 20003: 52,-3 + 20023: 44,0 + 20024: 40,1 + 20050: 36,6 + 20052: 37,4 + 20059: 36,9 + 20061: 37,8 + 20065: 44,8 + 20073: 53,9 + 20075: 55,5 + 20109: 74,-4 + 20176: 56,-3 + 20179: 48,1 + 20205: 58,1 + 20206: 62,1 + 20207: 66,1 + 20315: 21,22 + 20915: 10,30 + 20919: 10,29 + 21509: 32,6 + 21512: 32,4 + 22163: 12,-34 + 22166: 11,-34 + 22824: 2,58 + 22828: 0,58 + 22989: 1,-60 + 22992: 1,-62 + 22993: 2,-69 + 22994: 2,-66 + 22995: 2,-75 + 22996: 2,-78 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 2218: -18,53 - 2219: -18,53 - 2239: -17,52 - 2242: -15,50 - 2243: -15,48 - 2247: -15,46 - 2351: -29,38 - 2756: -3,48 - 2757: -6,50 - 2758: -12,50 - 2793: -4,46 - 2821: -30,43 - 2827: -26,41 - 2832: -32,43 - 3061: -17,58 - 3410: -11,69 - 3439: -3,58 - 3455: -29,69 - 3456: -29,77 - 3457: -29,84 - 3460: -29,92 - 3471: -30,96 - 3476: -29,82 - 3491: -12,96 - 3492: -11,92 - 3493: -11,84 - 3494: -11,77 - 3509: -11,82 - 3552: 8,68 - 3634: 7,69 - 3769: 2,58 - 3776: 3,57 - 5105: 31,28 - 5129: 36,30 - 5421: 18,-3 - 5435: -25,6 - 5464: -31,6 - 5472: -42,23 - 5528: -18,-1 - 5603: 11,-8 - 5613: -18,-8 - 5636: 8,-8 - 5773: 12,-4 - 5796: -1,-8 - 5797: -10,-8 - 6084: -11,-19 - 6110: 18,-10 - 6157: -18,-19 - 6255: -4,-16 - 6262: -4,-19 - 6306: 18,-20 - 6329: 2,-14 - 6367: 10,-16 - 6385: 14,-19 - 6400: 8,-19 - 6788: -36,6 - 6789: -36,6 - 6888: -36,16 - 6890: -35,15 - 6918: -26,15 - 6922: -27,15 - 6942: -22,12 - 7015: 18,12 - 7016: 18,18 - 7019: 18,6 - 7061: 22,10 - 7062: 22,6 - 7113: 22,-10 - 7140: 31,1 - 7200: 29,6 - 7992: 81,-22 - 8242: 31,-12 - 8277: 41,-8 - 8278: 41,-8 - 8289: 33,-8 - 8332: 39,-19 - 8333: 41,-19 - 8334: 41,-19 - 8356: 41,-21 - 8391: 47,-19 - 8412: 52,-19 - 8413: 52,-19 - 8419: 53,-21 - 8465: 56,-20 - 8645: 60,-31 - 8646: 63,-22 - 8647: 63,-19 - 8820: 0,-25 - 8863: 0,-34 - 8925: -8,-28 - 8928: -4,-27 - 8937: -15,-23 - 8938: -15,-23 - 8939: -8,-23 - 8940: -8,-23 - 8958: -16,-27 - 9134: 0,-64 - 9135: 0,-64 - 9142: 2,-66 - 9143: 2,-66 - 9181: -10,-64 - 9253: -9,-69 - 9254: -9,-69 - 9255: -9,-75 - 9291: 0,-58 - 9422: -39,-16 - 9527: 1,-35 - 9587: 0,-39 - 10493: 2,-75 - 10506: 1,-60 - 10579: 49,-42 - 11172: -59,-34 - 11177: -59,-41 - 11178: -59,-41 - 11221: -77,-31 - 11341: -15,-30 - 11763: -37,-53 - 11777: -24,-50 - 11778: -24,-50 - 13322: -37,-60 - 14853: 16,24 - 14856: 8,24 - 14857: 5,24 - 14860: 0,24 - 14861: -9,24 - 14873: -18,24 - 15308: -41,6 - 15695: 78,2 - 16599: -58,-12 - 16686: -58,-6 - 16746: -52,2 - 16761: -57,-9 - 16762: -57,-7 - 17430: 6,85 - 17434: 7,82 - 17436: 8,81 - 17441: 8,76 - 18377: -14,-12 - 18378: -10,-12 - 18444: 8,-12 - 19816: -24,13 - 20003: 67,26 - 20004: 62,26 - 20211: -18,4 - 20214: -18,-1 - 21259: 18,15 - 23928: -32,1 - 23929: -32,-2 - 23930: -24,-2 - 23960: -32,-11 - 23965: -35,-16 + 2097: -18,53 + 2098: -18,53 + 2117: -17,52 + 2120: -15,50 + 2121: -15,48 + 2125: -15,46 + 2228: -29,38 + 2633: -3,48 + 2634: -6,50 + 2635: -12,50 + 2670: -4,46 + 2698: -30,43 + 2704: -26,41 + 2709: -32,43 + 2938: -17,58 + 3281: -11,69 + 3310: -3,58 + 3326: -29,69 + 3327: -29,77 + 3328: -29,84 + 3331: -29,92 + 3342: -30,96 + 3347: -29,82 + 3362: -12,96 + 3363: -11,92 + 3364: -11,77 + 3378: -11,82 + 3419: 8,68 + 3501: 7,69 + 3636: 2,58 + 3643: 3,57 + 4955: 31,28 + 4979: 36,30 + 5269: 18,-3 + 5283: -25,6 + 5312: -31,6 + 5320: -42,23 + 5376: -18,-1 + 5451: 11,-8 + 5461: -18,-8 + 5484: 8,-8 + 5621: 12,-4 + 5644: -1,-8 + 5645: -10,-8 + 5932: -11,-19 + 5958: 18,-10 + 6005: -18,-19 + 6103: -4,-16 + 6110: -4,-19 + 6154: 18,-20 + 6177: 2,-14 + 6215: 10,-16 + 6233: 14,-19 + 6248: 8,-19 + 6636: -36,6 + 6637: -36,6 + 6736: -36,16 + 6738: -35,15 + 6766: -26,15 + 6770: -27,15 + 6790: -22,12 + 6863: 18,12 + 6864: 18,18 + 6867: 18,6 + 6909: 22,10 + 6910: 22,6 + 6961: 22,-10 + 6988: 31,1 + 7048: 29,6 + 7840: 81,-22 + 8088: 31,-12 + 8123: 41,-8 + 8124: 41,-8 + 8135: 33,-8 + 8178: 39,-19 + 8179: 41,-19 + 8180: 41,-19 + 8202: 41,-21 + 8237: 47,-19 + 8258: 52,-19 + 8259: 52,-19 + 8265: 53,-21 + 8309: 56,-20 + 8483: 60,-31 + 8484: 63,-22 + 8485: 63,-19 + 8658: 0,-25 + 8701: 0,-34 + 8763: -8,-28 + 8766: -4,-27 + 8775: -15,-23 + 8776: -15,-23 + 8777: -8,-23 + 8778: -8,-23 + 8796: -16,-27 + 8972: 0,-64 + 8973: 0,-64 + 8980: 2,-66 + 8981: 2,-66 + 9019: -10,-64 + 9091: -9,-69 + 9092: -9,-69 + 9093: -9,-75 + 9129: 0,-58 + 9260: -39,-16 + 9365: 1,-35 + 9425: 0,-39 + 10331: 2,-75 + 10344: 1,-60 + 10417: 49,-42 + 10669: -59,-34 + 10674: -59,-41 + 10675: -59,-41 + 10718: -77,-31 + 10838: -15,-30 + 11248: -37,-53 + 11262: -24,-50 + 11263: -24,-50 + 12378: -37,-60 + 13909: 16,24 + 13912: 8,24 + 13913: 5,24 + 13916: 0,24 + 13917: -9,24 + 13929: -18,24 + 14357: -41,6 + 14744: 78,2 + 15648: -58,-12 + 15735: -58,-6 + 15795: -52,2 + 15810: -57,-9 + 15811: -57,-7 + 16479: 6,85 + 16483: 7,82 + 16485: 8,81 + 16490: 8,76 + 17426: -14,-12 + 17427: -10,-12 + 17493: 8,-12 + 18822: -24,13 + 19009: 67,26 + 19010: 62,26 + 19217: -18,4 + 19220: -18,-1 + 20265: 18,15 + 22934: -32,1 + 22935: -32,-2 + 22936: -24,-2 + 22966: -32,-11 + 22971: -35,-16 + 23780: -11,84 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNw decals: - 8122: 25,-14 - 8125: 24,-15 + 7968: 25,-14 + 7971: 24,-15 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNw decals: - 3742: -25,65 - 10168: 37,-26 - 15686: 77,4 + 3609: -25,65 + 10006: 37,-26 + 14735: 77,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNw decals: - 10134: 32,-51 - 10135: 32,-49 - 18355: 17,-31 + 9972: 32,-51 + 9973: 32,-49 + 17404: 17,-31 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNw decals: - 12030: -24,-44 - 12091: -30,-39 - 12096: -29,-38 - 12097: -24,-38 - 16072: -65,-46 - 19704: -9,-41 - 19719: -9,-40 + 11368: -24,-44 + 11429: -30,-39 + 11434: -29,-38 + 11435: -24,-38 + 15121: -65,-46 + 18748: -9,-41 + 18763: -9,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNw decals: - 7817: 69,6 - 7818: 66,5 - 7827: 58,5 - 7828: 62,5 - 19233: 68,5 + 7665: 69,6 + 7666: 66,5 + 7675: 58,5 + 7676: 62,5 + 18277: 68,5 - node: color: '#DAA58BFF' id: BrickTileSteelInnerNw decals: - 4367: 7,31 - 4581: 13,36 + 4217: 7,31 + 4431: 13,36 - node: color: '#DABC8BFF' id: BrickTileSteelInnerNw decals: - 9573: 5,-32 + 9411: 5,-32 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNw decals: - 20226: -23,2 - 20274: 5,-80 - 20292: 5,-64 - 20299: 4,-66 - 20300: 4,-75 - 20329: 8,-75 - 20341: 7,-58 - 20343: 3,-60 - 20354: 8,-65 - 20355: 8,-65 - 20360: 5,-74 - 20371: 11,-30 - 20380: 13,-30 - 20390: 12,30 - 20391: 13,32 - 20400: 0,61 - 20460: 40,9 - 20462: 39,8 - 20516: 73,3 - 20542: 47,13 - 20555: 46,12 - 20565: 46,8 - 20622: 50,31 - 20630: 49,23 - 20655: 54,21 - 20656: 57,21 - 20661: 53,28 - 20662: 58,28 - 20710: 45,20 - 20724: 57,19 - 20728: 56,17 - 20743: 50,16 - 20744: 52,19 - 20754: 50,12 - 20756: 51,13 - 20797: 91,21 - 20805: 91,14 - 20827: 83,10 - 20830: 80,9 - 20840: 76,9 - 20868: 72,-1 - 20892: 71,13 - 20893: 72,13 - 20900: 72,18 - 20901: 73,19 - 20913: 75,23 - 20916: 75,25 - 20926: 91,21 - 20927: 92,23 - 20929: 72,6 - 20935: 72,1 - 20950: 69,-1 - 20961: 69,-3 - 20972: 47,-3 - 20996: 52,-3 - 21005: 46,0 - 21019: 40,1 - 21041: 34,4 - 21042: 36,6 - 21047: 39,4 - 21050: 39,6 - 21052: 36,9 - 21066: 53,9 - 21079: 50,8 - 21084: 50,4 - 21098: 73,-4 - 21111: 76,-4 - 21130: -20,-26 - 21149: 51,-7 - 21161: 46,-8 - 21171: 56,-3 - 21172: 46,5 - 21196: 58,1 - 21197: 62,1 - 21198: 66,1 - 21308: 21,22 - 21560: -44,9 - 23057: -16,-25 - 23059: -16,-24 - 23096: 16,-31 - 23154: 16,-32 - 23156: 12,-34 - 23159: 13,-34 - 23819: 2,58 + 19232: -23,2 + 19280: 5,-80 + 19298: 5,-64 + 19305: 4,-66 + 19306: 4,-75 + 19335: 8,-75 + 19347: 7,-58 + 19349: 3,-60 + 19360: 8,-65 + 19361: 8,-65 + 19366: 5,-74 + 19377: 11,-30 + 19386: 13,-30 + 19396: 12,30 + 19397: 13,32 + 19406: 0,61 + 19466: 40,9 + 19468: 39,8 + 19522: 73,3 + 19548: 47,13 + 19561: 46,12 + 19571: 46,8 + 19628: 50,31 + 19636: 49,23 + 19661: 54,21 + 19662: 57,21 + 19667: 53,28 + 19668: 58,28 + 19716: 45,20 + 19730: 57,19 + 19734: 56,17 + 19749: 50,16 + 19750: 52,19 + 19760: 50,12 + 19762: 51,13 + 19803: 91,21 + 19811: 91,14 + 19833: 83,10 + 19836: 80,9 + 19846: 76,9 + 19874: 72,-1 + 19898: 71,13 + 19899: 72,13 + 19906: 72,18 + 19907: 73,19 + 19919: 75,23 + 19922: 75,25 + 19932: 91,21 + 19933: 92,23 + 19935: 72,6 + 19941: 72,1 + 19956: 69,-1 + 19967: 69,-3 + 19978: 47,-3 + 20002: 52,-3 + 20011: 46,0 + 20025: 40,1 + 20047: 34,4 + 20048: 36,6 + 20053: 39,4 + 20056: 39,6 + 20058: 36,9 + 20072: 53,9 + 20085: 50,8 + 20090: 50,4 + 20104: 73,-4 + 20117: 76,-4 + 20136: -20,-26 + 20155: 51,-7 + 20167: 46,-8 + 20177: 56,-3 + 20178: 46,5 + 20202: 58,1 + 20203: 62,1 + 20204: 66,1 + 20314: 21,22 + 20566: -44,9 + 22063: -16,-25 + 22065: -16,-24 + 22102: 16,-31 + 22160: 16,-32 + 22162: 12,-34 + 22165: 13,-34 + 22825: 2,58 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 2220: -20,53 - 2237: -21,52 - 2238: -21,52 - 2252: -23,51 - 2255: -23,48 - 2273: -24,41 - 2274: -23,45 - 2321: -27,30 - 2730: -13,48 - 2763: -6,50 - 2764: -12,50 - 2792: -4,46 - 2800: -7,27 - 2820: -30,43 - 3075: -7,58 - 3315: -31,69 - 3369: -13,69 - 3461: -31,92 - 3462: -31,84 - 3463: -31,77 - 3470: -30,96 - 3475: -31,82 - 3490: -12,96 - 3506: -13,92 - 3507: -13,84 - 3508: -13,82 - 3513: -13,77 - 3549: 5,69 - 3560: -21,55 - 3637: 5,84 - 3653: 5,82 - 3656: 5,77 - 3771: 2,58 - 5104: 31,28 - 5355: 16,-8 - 5419: 16,-4 - 5463: -31,6 - 5471: -42,23 - 5547: -20,-15 - 5602: 10,-8 - 5637: 8,-8 - 5772: 12,-4 - 5795: -1,-8 - 5798: -10,-8 - 6065: -15,-17 - 6083: -13,-19 - 6252: -4,-14 - 6261: -4,-19 - 6290: 16,-19 - 6384: 12,-19 - 6391: 12,-16 - 6401: 8,-19 - 6430: -20,-20 - 6776: -36,6 - 6777: -26,6 - 6778: -26,6 - 6779: -20,12 - 6887: -36,16 - 6889: -37,15 - 6917: -26,15 - 6921: -25,15 - 6925: -28,15 - 6950: -21,-16 - 6951: -21,-16 - 7060: 22,10 - 7063: 22,6 - 7112: 22,-10 - 7146: 25,-8 - 7199: 29,6 - 7302: 28,11 - 7993: 79,-22 - 8152: 33,-12 - 8153: 33,-10 - 8154: 33,-10 - 8165: 33,-16 - 8331: 39,-19 - 8335: 41,-19 - 8358: 43,-21 - 8397: 46,-19 - 8411: 52,-19 - 8451: 55,-19 - 8454: 55,-21 - 8563: 55,-29 - 8564: 55,-11 - 8644: 58,-31 - 8817: -2,-25 - 8862: -2,-34 - 8926: -12,-28 - 8927: -4,-27 - 8933: -16,-23 - 8934: -16,-23 - 8941: -12,-23 - 8942: -12,-23 - 8943: -5,-23 - 8944: -5,-23 - 8957: -16,-27 - 9133: -2,-64 - 9180: -10,-64 - 9195: -11,-78 - 9196: -11,-78 - 9256: 0,-69 - 9257: 0,-75 - 9258: -5,-75 - 9281: -3,-60 - 9292: -2,-58 - 9592: -11,-66 - 10578: 43,-42 - 11174: -59,-34 - 11175: -59,-41 - 11176: -59,-41 - 11180: -60,-36 - 11184: -60,-43 - 11222: -78,-27 - 11314: -2,-40 - 11342: -13,-30 - 11776: -24,-50 - 11788: -26,-52 - 12659: -23,39 - 12783: -3,50 - 13321: -37,-60 - 14307: -44,15 - 14854: 14,24 - 14855: 7,24 - 14858: 4,24 - 14859: 0,24 - 14862: -9,24 - 14866: -20,24 - 15694: 78,2 - 15731: 76,1 - 16598: -58,-12 - 16685: -58,-6 - 16745: -53,2 - 16763: -55,-7 - 16764: -61,-7 - 17429: 6,85 - 18375: -14,-12 - 18376: -10,-12 - 18443: 8,-12 - 19449: -43,21 - 19815: -27,13 - 19936: -16,-1 - 19996: 61,25 - 19997: 54,32 - 19999: 62,26 - 20000: 64,26 - 20119: -20,6 - 20128: -20,-2 - 20208: -20,17 - 20209: -20,20 - 23931: -24,-2 - 23958: -30,-16 - 23959: -33,-11 + 2115: -21,52 + 2116: -21,52 + 2130: -23,51 + 2133: -23,48 + 2151: -24,41 + 2152: -23,45 + 2198: -27,30 + 2607: -13,48 + 2640: -6,50 + 2641: -12,50 + 2669: -4,46 + 2677: -7,27 + 2697: -30,43 + 2952: -7,58 + 3188: -31,69 + 3241: -13,69 + 3332: -31,92 + 3333: -31,84 + 3334: -31,77 + 3341: -30,96 + 3346: -31,82 + 3361: -12,96 + 3375: -13,92 + 3376: -13,84 + 3377: -13,82 + 3382: -13,77 + 3416: 5,69 + 3427: -21,55 + 3504: 5,84 + 3520: 5,82 + 3523: 5,77 + 3638: 2,58 + 4954: 31,28 + 5203: 16,-8 + 5267: 16,-4 + 5311: -31,6 + 5319: -42,23 + 5395: -20,-15 + 5450: 10,-8 + 5485: 8,-8 + 5620: 12,-4 + 5643: -1,-8 + 5646: -10,-8 + 5913: -15,-17 + 5931: -13,-19 + 6100: -4,-14 + 6109: -4,-19 + 6138: 16,-19 + 6232: 12,-19 + 6239: 12,-16 + 6249: 8,-19 + 6278: -20,-20 + 6624: -36,6 + 6625: -26,6 + 6626: -26,6 + 6627: -20,12 + 6735: -36,16 + 6737: -37,15 + 6765: -26,15 + 6769: -25,15 + 6773: -28,15 + 6798: -21,-16 + 6799: -21,-16 + 6908: 22,10 + 6911: 22,6 + 6960: 22,-10 + 6994: 25,-8 + 7047: 29,6 + 7150: 28,11 + 7841: 79,-22 + 7998: 33,-12 + 7999: 33,-10 + 8000: 33,-10 + 8011: 33,-16 + 8177: 39,-19 + 8181: 41,-19 + 8204: 43,-21 + 8243: 46,-19 + 8257: 52,-19 + 8296: 55,-19 + 8405: 55,-29 + 8406: 55,-11 + 8482: 58,-31 + 8655: -2,-25 + 8700: -2,-34 + 8764: -12,-28 + 8765: -4,-27 + 8771: -16,-23 + 8772: -16,-23 + 8779: -12,-23 + 8780: -12,-23 + 8781: -5,-23 + 8782: -5,-23 + 8795: -16,-27 + 8971: -2,-64 + 9018: -10,-64 + 9033: -11,-78 + 9034: -11,-78 + 9094: 0,-69 + 9095: 0,-75 + 9096: -5,-75 + 9119: -3,-60 + 9130: -2,-58 + 9430: -11,-66 + 10416: 43,-42 + 10671: -59,-34 + 10672: -59,-41 + 10673: -59,-41 + 10677: -60,-36 + 10681: -60,-43 + 10719: -78,-27 + 10811: -2,-40 + 10839: -13,-30 + 11261: -24,-50 + 11273: -26,-52 + 11977: -23,39 + 12097: -3,50 + 12377: -37,-60 + 13363: -44,15 + 13910: 14,24 + 13911: 7,24 + 13914: 4,24 + 13915: 0,24 + 13918: -9,24 + 13922: -20,24 + 14743: 78,2 + 14780: 76,1 + 15647: -58,-12 + 15734: -58,-6 + 15794: -53,2 + 15812: -55,-7 + 15813: -61,-7 + 16478: 6,85 + 17424: -14,-12 + 17425: -10,-12 + 17492: 8,-12 + 18493: -43,21 + 18821: -27,13 + 18942: -16,-1 + 19002: 61,25 + 19003: 54,32 + 19005: 62,26 + 19006: 64,26 + 19125: -20,6 + 19134: -20,-2 + 19214: -20,17 + 19215: -20,20 + 22937: -24,-2 + 22964: -30,-16 + 22965: -33,-11 + 23784: -20,53 + 23789: 55,-21 + 23790: -21,26 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 4105: -20,20 - 4108: -20,17 + 3955: -20,20 + 3958: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSe decals: - 8119: 25,-16 - 8120: 27,-16 - 8121: 29,-16 - 8128: 22,-15 - 8129: 22,-15 - 8137: 31,-16 + 7965: 25,-16 + 7966: 27,-16 + 7967: 29,-16 + 7974: 22,-15 + 7975: 22,-15 + 7983: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSe decals: - 3752: -26,65 - 3753: -26,63 - 3754: -26,61 - 3767: -28,60 - 10172: 37,-26 - 15684: 78,4 + 3619: -26,65 + 3620: -26,63 + 3621: -26,61 + 3634: -28,60 + 10010: 37,-26 + 14733: 78,4 - node: color: '#52B4E9FF' id: BrickTileSteelInnerSe decals: - 23284: 24,-45 - 23302: 22,-49 - 23696: 28,-24 - 23711: 32,-23 + 22290: 24,-45 + 22308: 22,-49 + 22702: 28,-24 + 22717: 32,-23 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSe decals: - 9743: 21,-32 - 9975: 25,-26 - 9989: 28,-24 - 10001: 32,-23 - 10069: 22,-49 - 10079: 24,-45 - 10099: 24,-45 + 9581: 21,-32 + 9813: 25,-26 + 9827: 28,-24 + 9839: 32,-23 + 9907: 22,-49 + 9917: 24,-45 + 9937: 24,-45 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSe decals: - 11950: -33,-29 - 12088: -24,-42 - 12089: -29,-42 - 12282: -17,-40 - 19703: -6,-43 + 11323: -33,-29 + 11426: -24,-42 + 11427: -29,-42 + 11620: -17,-40 + 18747: -6,-43 - node: color: '#D381C9FF' id: BrickTileSteelInnerSe decals: - 22700: -17,-40 + 21706: -17,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSe decals: - 7783: 58,3 - 7784: 62,3 - 7785: 66,3 - 7786: 63,4 - 7787: 59,4 - 7796: 70,6 - 7797: 67,5 - 19192: 62,4 - 19193: 58,4 - 19194: 66,4 - 19214: 69,9 + 7631: 58,3 + 7632: 62,3 + 7633: 66,3 + 7634: 63,4 + 7635: 59,4 + 7644: 70,6 + 7645: 67,5 + 18236: 62,4 + 18237: 58,4 + 18238: 66,4 + 18258: 69,9 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSe decals: - 20231: -24,0 - 20241: -46,9 - 20242: -48,8 - 20248: 5,-62 - 20249: 5,-72 - 20250: 5,-78 - 20251: 4,-82 - 20287: 6,-77 - 20288: 6,-75 - 20289: 6,-65 - 20376: 12,-32 - 20377: 14,-31 - 20403: 3,64 - 20413: 2,60 - 20432: 40,3 - 20436: 40,11 - 20442: 40,11 - 20509: 93,21 - 20510: 93,17 - 20529: 74,9 - 20538: 48,12 - 20549: 44,12 - 20562: 48,8 - 20642: 59,25 - 20643: 57,21 - 20646: 52,21 - 20647: 51,28 - 20648: 50,31 - 20649: 52,32 - 20654: 54,28 - 20705: 47,15 - 20706: 48,16 - 20707: 54,17 - 20712: 47,22 - 20726: 57,19 - 20740: 51,15 - 20752: 60,12 - 20759: 53,11 - 20767: 48,4 - 20807: 93,13 - 20821: 83,12 - 20842: 78,9 - 20867: 73,5 - 20878: 70,1 - 20908: 73,21 - 20909: 76,22 - 20918: 75,25 - 20933: 74,1 - 20949: 69,-1 - 20965: 71,-4 - 20966: 65,-1 - 20967: 61,-1 - 20999: 52,-1 - 21000: 47,-1 - 21016: 44,0 - 21035: 35,4 - 21045: 37,6 - 21054: 36,8 - 21057: 36,11 - 21058: 44,8 - 21068: 55,4 - 21102: 74,-4 - 21132: -18,-24 - 21147: 51,-5 - 21168: 56,-1 - 21563: -45,11 - 21911: 10,30 - 21920: 13,34 - 22504: 32,6 - 22505: 32,4 - 23068: 11,-28 - 23073: 13,-28 - 23984: 1,-60 - 23985: 1,-58 - 23991: 2,-76 - 23992: 2,-73 - 23993: 2,-64 - 23994: 2,-67 + 19237: -24,0 + 19247: -46,9 + 19248: -48,8 + 19254: 5,-62 + 19255: 5,-72 + 19256: 5,-78 + 19257: 4,-82 + 19293: 6,-77 + 19294: 6,-75 + 19295: 6,-65 + 19382: 12,-32 + 19383: 14,-31 + 19409: 3,64 + 19419: 2,60 + 19438: 40,3 + 19442: 40,11 + 19448: 40,11 + 19515: 93,21 + 19516: 93,17 + 19535: 74,9 + 19544: 48,12 + 19555: 44,12 + 19568: 48,8 + 19648: 59,25 + 19649: 57,21 + 19652: 52,21 + 19653: 51,28 + 19654: 50,31 + 19655: 52,32 + 19660: 54,28 + 19711: 47,15 + 19712: 48,16 + 19713: 54,17 + 19718: 47,22 + 19732: 57,19 + 19746: 51,15 + 19758: 60,12 + 19765: 53,11 + 19773: 48,4 + 19813: 93,13 + 19827: 83,12 + 19848: 78,9 + 19873: 73,5 + 19884: 70,1 + 19914: 73,21 + 19915: 76,22 + 19924: 75,25 + 19939: 74,1 + 19955: 69,-1 + 19971: 71,-4 + 19972: 65,-1 + 19973: 61,-1 + 20005: 52,-1 + 20006: 47,-1 + 20022: 44,0 + 20041: 35,4 + 20051: 37,6 + 20060: 36,8 + 20063: 36,11 + 20064: 44,8 + 20074: 55,4 + 20108: 74,-4 + 20138: -18,-24 + 20153: 51,-5 + 20174: 56,-1 + 20569: -45,11 + 20917: 10,30 + 20926: 13,34 + 21510: 32,6 + 21511: 32,4 + 22074: 11,-28 + 22079: 13,-28 + 22990: 1,-60 + 22991: 1,-58 + 22997: 2,-76 + 22998: 2,-73 + 22999: 2,-64 + 23000: 2,-67 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 2230: -18,55 - 2244: -15,48 - 2245: -15,50 - 2287: -15,36 - 2319: -25,30 - 2762: -3,51 - 2788: -4,48 - 2828: -30,41 - 2844: -32,44 - 3044: -17,56 - 3054: -1,56 - 3180: -17,67 - 3452: -25,67 - 3453: -30,67 - 3458: -29,84 - 3472: -29,88 - 3482: -29,79 - 3483: -29,77 - 3495: -11,77 - 3496: -11,84 - 3497: -11,88 - 3514: -11,79 - 3541: -3,67 - 3551: 8,68 - 3554: 6,67 - 3768: 2,56 - 3775: 3,57 - 5117: 31,30 - 5123: 35,30 - 5422: 18,-3 - 5445: -23,4 - 5454: -32,4 - 5469: -41,23 - 5527: -18,-1 - 5777: 14,-4 - 5789: 8,-6 - 5790: 11,-6 - 6072: -11,-17 - 6111: 18,-12 - 6256: -4,-16 - 6307: 18,-20 - 6365: 8,-17 - 6368: 10,-16 - 6882: -35,9 - 6883: -36,8 - 6896: -36,18 - 6936: -28,8 - 6937: -25,8 - 6941: -22,11 - 7014: 18,12 - 7017: 18,18 - 7018: 18,4 - 7049: 22,8 - 7119: 22,4 - 7141: 31,1 - 7176: 30,4 - 7305: 28,12 - 7991: 81,-19 - 8080: 25,-12 - 8241: 31,-10 - 8290: 41,-8 - 8320: 39,-16 - 8321: 39,-16 - 8355: 41,-19 - 8401: 48,-21 - 8402: 44,-21 - 8403: 52,-21 - 8420: 53,-19 - 8466: 56,-21 - 8643: 60,-10 - 8648: 63,-19 - 8649: 63,-22 - 8789: -13,-21 - 8790: -6,-21 - 8791: 0,-21 - 8792: 5,-21 - 8793: 12,-21 - 8819: 0,-26 - 8854: 0,-36 - 8855: 0,-36 - 8922: -15,-23 - 8923: -8,-23 - 8930: -8,-28 - 8931: -4,-28 - 8955: -16,-28 - 9144: 2,-67 - 9156: -8,-65 - 9157: -8,-65 - 9198: -11,-78 - 9259: -9,-71 - 9260: -9,-66 - 9270: 0,-62 - 9271: 0,-62 - 9423: -39,-16 - 9526: 1,-35 - 9588: 0,-39 - 9590: -3,-81 - 10492: 2,-76 - 10505: 1,-60 - 10566: 49,-42 - 10567: 47,-45 - 10568: 45,-45 - 10738: -4,-82 - 10739: -6,-82 - 10740: -6,-82 - 11219: -77,-31 - 11227: -77,-23 - 11340: -15,-32 - 11748: -39,-56 - 11772: -41,-53 - 13325: -37,-63 - 14370: -18,22 - 14852: 18,24 - 15727: 81,0 - 15728: 81,0 - 15729: 85,0 - 15730: 85,0 - 16629: -58,-10 - 16728: -58,-4 - 16738: -52,8 - 16759: -57,-7 - 16760: -57,-9 - 17437: 8,80 - 17442: 8,75 - 17445: 7,74 - 18333: -60,-43 - 18388: -18,-10 - 18406: -14,-10 - 18407: -10,-10 - 18436: 8,-10 - 19814: -24,10 - 19932: -16,4 - 19992: 70,26 - 20212: -18,4 - 20213: -18,-1 - 21260: 18,14 - 23932: -32,-3 - 23933: -32,1 - 23934: -29,-3 - 23935: -24,-3 - 23966: -35,-11 + 2108: -18,55 + 2122: -15,48 + 2123: -15,50 + 2196: -25,30 + 2639: -3,51 + 2665: -4,48 + 2705: -30,41 + 2721: -32,44 + 2921: -17,56 + 2931: -1,56 + 3055: -17,67 + 3323: -25,67 + 3324: -30,67 + 3329: -29,84 + 3343: -29,88 + 3353: -29,79 + 3354: -29,77 + 3365: -11,77 + 3366: -11,88 + 3383: -11,79 + 3408: -3,67 + 3418: 8,68 + 3421: 6,67 + 3635: 2,56 + 3642: 3,57 + 4967: 31,30 + 4973: 35,30 + 5270: 18,-3 + 5293: -23,4 + 5302: -32,4 + 5317: -41,23 + 5375: -18,-1 + 5625: 14,-4 + 5637: 8,-6 + 5638: 11,-6 + 5920: -11,-17 + 5959: 18,-12 + 6104: -4,-16 + 6155: 18,-20 + 6213: 8,-17 + 6216: 10,-16 + 6730: -35,9 + 6731: -36,8 + 6744: -36,18 + 6784: -28,8 + 6785: -25,8 + 6789: -22,11 + 6862: 18,12 + 6865: 18,18 + 6866: 18,4 + 6897: 22,8 + 6967: 22,4 + 6989: 31,1 + 7024: 30,4 + 7153: 28,12 + 7839: 81,-19 + 7926: 25,-12 + 8087: 31,-10 + 8136: 41,-8 + 8166: 39,-16 + 8167: 39,-16 + 8201: 41,-19 + 8247: 48,-21 + 8248: 44,-21 + 8249: 52,-21 + 8266: 53,-19 + 8481: 60,-10 + 8486: 63,-19 + 8487: 63,-22 + 8627: -13,-21 + 8628: -6,-21 + 8629: 0,-21 + 8630: 5,-21 + 8631: 12,-21 + 8657: 0,-26 + 8692: 0,-36 + 8693: 0,-36 + 8760: -15,-23 + 8761: -8,-23 + 8768: -8,-28 + 8769: -4,-28 + 8793: -16,-28 + 8982: 2,-67 + 8994: -8,-65 + 8995: -8,-65 + 9036: -11,-78 + 9097: -9,-71 + 9098: -9,-66 + 9108: 0,-62 + 9109: 0,-62 + 9261: -39,-16 + 9364: 1,-35 + 9426: 0,-39 + 9428: -3,-81 + 10330: 2,-76 + 10343: 1,-60 + 10404: 49,-42 + 10405: 47,-45 + 10406: 45,-45 + 10576: -4,-82 + 10577: -6,-82 + 10578: -6,-82 + 10716: -77,-31 + 10724: -77,-23 + 10837: -15,-32 + 11233: -39,-56 + 11257: -41,-53 + 12381: -37,-63 + 13426: -18,22 + 13908: 18,24 + 14776: 81,0 + 14777: 81,0 + 14778: 85,0 + 14779: 85,0 + 15678: -58,-10 + 15777: -58,-4 + 15787: -52,8 + 15808: -57,-7 + 15809: -57,-9 + 16486: 8,80 + 16491: 8,75 + 16494: 7,74 + 17382: -60,-43 + 17437: -18,-10 + 17455: -14,-10 + 17456: -10,-10 + 17485: 8,-10 + 18820: -24,10 + 18938: -16,4 + 18998: 70,26 + 19218: -18,4 + 19219: -18,-1 + 20266: 18,14 + 22938: -32,-3 + 22939: -32,1 + 22940: -29,-3 + 22941: -24,-3 + 22972: -35,-11 + 23779: -11,84 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSw decals: - 8116: 27,-16 - 8117: 29,-16 - 8118: 31,-16 - 8130: 24,-15 - 8135: 25,-18 - 8136: 32,-11 + 7962: 27,-16 + 7963: 29,-16 + 7964: 31,-16 + 7976: 24,-15 + 7981: 25,-18 + 7982: 32,-11 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSw decals: - 3765: -26,60 - 10170: 37,-26 - 10171: 37,-26 - 15683: 78,4 - 15688: 77,6 + 3632: -26,60 + 10008: 37,-26 + 10009: 37,-26 + 14732: 78,4 + 14737: 77,6 - node: color: '#3EB388FF' id: BrickTileSteelInnerSw decals: - 21809: -43,23 + 20815: -43,23 - node: color: '#52B4E9FF' id: BrickTileSteelInnerSw decals: - 23283: 20,-45 - 23300: 22,-49 - 23695: 32,-24 + 22289: 20,-45 + 22306: 22,-49 + 22701: 32,-24 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSw decals: - 9742: 21,-32 - 9974: 25,-26 - 9988: 32,-24 - 10068: 22,-49 - 10078: 20,-45 - 10098: 20,-45 - 10132: 32,-51 - 10133: 32,-49 + 9580: 21,-32 + 9812: 25,-26 + 9826: 32,-24 + 9906: 22,-49 + 9916: 20,-45 + 9936: 20,-45 + 9970: 32,-51 + 9971: 32,-49 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSw decals: - 12087: -24,-42 - 12090: -29,-42 - 12092: -30,-39 - 16075: -66,-46 - 19702: -9,-43 + 11425: -24,-42 + 11428: -29,-42 + 11430: -30,-39 + 15124: -66,-46 + 18746: -9,-43 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSw decals: - 7780: 58,3 - 7781: 62,3 - 7782: 66,3 - 7788: 65,4 - 7789: 57,4 - 7790: 61,4 - 19189: 62,4 - 19190: 58,4 - 19191: 66,4 - 19213: 69,9 + 7628: 58,3 + 7629: 62,3 + 7630: 66,3 + 7636: 65,4 + 7637: 57,4 + 7638: 61,4 + 18233: 62,4 + 18234: 58,4 + 18235: 66,4 + 18257: 69,9 - node: color: '#DA8BC9FF' id: BrickTileSteelInnerSw decals: - 3931: 19,62 + 3798: 19,62 - node: color: '#DAA58BFF' id: BrickTileSteelInnerSw decals: - 4592: 20,34 + 4442: 20,34 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSw decals: - 20244: -48,9 - 20245: 5,-72 - 20246: 5,-78 - 20247: 5,-62 - 20297: 4,-76 - 20298: 4,-67 - 20344: 3,-60 - 20353: 8,-65 - 20362: 8,-77 - 20363: 8,-77 - 20364: 12,-32 - 20401: 0,61 - 20412: 2,60 - 20431: 40,3 - 20435: 40,11 - 20441: 40,11 - 20463: 39,8 - 20553: 46,12 - 20554: 46,12 - 20566: 46,8 - 20589: 46,3 - 20590: 39,4 - 20631: 49,22 - 20644: 57,21 - 20645: 52,21 - 20650: 56,32 - 20651: 58,31 - 20652: 57,28 - 20653: 54,28 - 20704: 47,15 - 20711: 45,20 - 20727: 56,17 - 20738: 50,16 - 20739: 51,15 - 20755: 50,12 - 20758: 53,11 - 20796: 91,21 - 20822: 83,12 - 20843: 76,9 - 20861: 72,18 - 20862: 72,13 - 20863: 73,5 - 20907: 73,21 - 20917: 75,25 - 20925: 91,21 - 20930: 72,6 - 20934: 72,1 - 20948: 69,-1 - 20952: 69,1 - 20998: 52,-1 - 21001: 47,-1 - 21006: 46,0 - 21034: 35,4 - 21043: 34,6 - 21048: 39,6 - 21051: 36,8 - 21056: 36,11 - 21077: 50,4 - 21078: 50,8 - 21085: 61,-1 - 21086: 65,-1 - 21099: 73,-4 - 21131: -20,-26 - 21146: 51,-5 - 21162: 46,-8 - 21167: 56,-1 - 21559: -44,9 - 21562: -44,11 - 21917: 14,34 - 21919: 13,34 - 22073: 14,34 - 23058: -16,-24 - 23067: 11,-28 - 23072: 13,-28 - 23095: 16,-31 - 23097: 16,-30 + 19250: -48,9 + 19251: 5,-72 + 19252: 5,-78 + 19253: 5,-62 + 19303: 4,-76 + 19304: 4,-67 + 19350: 3,-60 + 19359: 8,-65 + 19368: 8,-77 + 19369: 8,-77 + 19370: 12,-32 + 19407: 0,61 + 19418: 2,60 + 19437: 40,3 + 19441: 40,11 + 19447: 40,11 + 19469: 39,8 + 19559: 46,12 + 19560: 46,12 + 19572: 46,8 + 19595: 46,3 + 19596: 39,4 + 19637: 49,22 + 19650: 57,21 + 19651: 52,21 + 19656: 56,32 + 19657: 58,31 + 19658: 57,28 + 19659: 54,28 + 19710: 47,15 + 19717: 45,20 + 19733: 56,17 + 19744: 50,16 + 19745: 51,15 + 19761: 50,12 + 19764: 53,11 + 19802: 91,21 + 19828: 83,12 + 19849: 76,9 + 19867: 72,18 + 19868: 72,13 + 19869: 73,5 + 19913: 73,21 + 19923: 75,25 + 19931: 91,21 + 19936: 72,6 + 19940: 72,1 + 19954: 69,-1 + 19958: 69,1 + 20004: 52,-1 + 20007: 47,-1 + 20012: 46,0 + 20040: 35,4 + 20049: 34,6 + 20054: 39,6 + 20057: 36,8 + 20062: 36,11 + 20083: 50,4 + 20084: 50,8 + 20091: 61,-1 + 20092: 65,-1 + 20105: 73,-4 + 20137: -20,-26 + 20152: 51,-5 + 20168: 46,-8 + 20173: 56,-1 + 20565: -44,9 + 20568: -44,11 + 20923: 14,34 + 20925: 13,34 + 21079: 14,34 + 22064: -16,-24 + 22073: 11,-28 + 22078: 13,-28 + 22101: 16,-31 + 22103: 16,-30 - node: color: '#FBB2FFFF' id: BrickTileSteelInnerSw decals: - 22875: -18,-35 + 21881: -18,-35 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2254: -23,50 - 2258: -23,47 - 2259: -23,47 - 2261: -24,41 - 2295: -21,28 - 2297: -20,26 - 2308: -23,30 - 2309: -23,40 - 2320: -27,30 - 2323: -27,32 - 2350: -27,39 - 2477: -14,36 - 2729: -13,50 - 2789: -4,48 - 2794: -4,45 - 2799: -7,27 - 2837: -30,40 - 3045: -20,55 - 3052: -1,56 - 3055: 1,56 - 3179: -7,67 - 3431: -21,67 - 3451: -25,67 - 3454: -30,67 - 3464: -31,77 - 3465: -31,79 - 3466: -31,84 - 3467: -31,88 - 3484: -13,77 - 3485: -13,79 - 3486: -13,84 - 3487: -13,88 - 3553: 6,67 - 3636: 5,84 - 3654: 5,79 - 3657: 5,77 - 5116: 31,30 - 5122: 35,30 - 5420: 16,-4 - 5444: -23,4 - 5453: -33,4 - 5787: 10,-6 - 5788: 8,-6 - 6071: -13,-17 - 6258: -4,-17 - 6366: 8,-17 - 6389: 12,-16 - 6428: -20,-20 - 6429: -20,-20 - 6436: -20,-18 - 6780: -20,11 - 6881: -37,9 - 6884: -36,8 - 6895: -36,18 - 6934: -28,8 - 6938: -26,8 - 6952: -21,-17 - 7048: 22,8 - 7118: 22,4 - 7147: 25,-8 - 7175: 30,4 - 7303: 28,11 - 7990: 79,-19 - 8079: 25,-12 - 8148: 33,-12 - 8149: 33,-12 - 8150: 33,-10 - 8151: 33,-10 - 8319: 41,-16 - 8322: 39,-16 - 8323: 39,-16 - 8357: 43,-19 - 8398: 44,-21 - 8399: 48,-21 - 8400: 52,-21 - 8450: 55,-21 - 8452: 55,-19 - 8453: 55,-19 - 8562: 55,-29 - 8565: 55,-11 - 8566: 55,-11 - 8642: 58,-10 - 8784: 4,-21 - 8785: 11,-21 - 8786: -7,-21 - 8787: -2,-21 - 8788: -14,-21 - 8818: -2,-26 - 8853: -2,-36 - 8924: -12,-23 - 8929: -4,-28 - 8932: -12,-28 - 8935: -16,-23 - 8936: -16,-23 - 8945: -5,-23 - 8946: -5,-23 - 8956: -16,-28 - 9158: -1,-65 - 9197: -11,-78 - 9261: 0,-71 - 9262: 0,-66 - 9269: -2,-62 - 9282: -3,-60 - 9589: 1,-81 - 9591: -11,-67 - 10569: 43,-42 - 10570: 43,-42 - 10571: 45,-45 - 10572: 47,-45 - 10573: 47,-45 - 10735: 2,-82 - 10736: -4,-82 - 10737: -4,-82 - 10741: -6,-82 - 10742: -9,-78 - 11181: -60,-36 - 11182: -60,-36 - 11183: -60,-43 - 11223: -78,-27 - 11313: -2,-41 - 11339: -13,-32 - 11789: -26,-53 - 13324: -37,-63 - 14313: -44,11 - 14945: 16,22 - 15318: -43,8 - 15723: 76,1 - 15724: 81,0 - 15725: 85,0 - 15726: 89,0 - 16305: -60,-48 - 16628: -58,-10 - 16727: -58,-4 - 16737: -53,8 - 16765: -55,-7 - 16766: -55,-9 - 18365: -15,-12 - 18408: -14,-10 - 18409: -10,-10 - 18410: 16,-10 - 18435: 8,-10 - 19813: -27,10 - 19934: -16,4 - 19995: 61,25 - 20109: -20,17 - 20110: -20,11 - 20111: -20,4 - 20112: -20,-3 - 20207: -20,17 - 20210: -20,20 - 23936: -29,-3 - 23937: -24,-3 - 23938: -28,-16 - 23957: -30,-11 + 2132: -23,50 + 2136: -23,47 + 2137: -23,47 + 2139: -24,41 + 2172: -21,28 + 2174: -20,26 + 2185: -23,30 + 2186: -23,40 + 2197: -27,30 + 2200: -27,32 + 2227: -27,39 + 2354: -14,36 + 2606: -13,50 + 2666: -4,48 + 2671: -4,45 + 2676: -7,27 + 2714: -30,40 + 2922: -20,55 + 2929: -1,56 + 2932: 1,56 + 3054: -7,67 + 3302: -21,67 + 3322: -25,67 + 3325: -30,67 + 3335: -31,77 + 3336: -31,79 + 3337: -31,84 + 3338: -31,88 + 3355: -13,77 + 3356: -13,79 + 3357: -13,84 + 3358: -13,88 + 3420: 6,67 + 3503: 5,84 + 3521: 5,79 + 3524: 5,77 + 4966: 31,30 + 4972: 35,30 + 5268: 16,-4 + 5292: -23,4 + 5301: -33,4 + 5635: 10,-6 + 5636: 8,-6 + 5919: -13,-17 + 6106: -4,-17 + 6214: 8,-17 + 6237: 12,-16 + 6276: -20,-20 + 6277: -20,-20 + 6284: -20,-18 + 6628: -20,11 + 6729: -37,9 + 6732: -36,8 + 6743: -36,18 + 6782: -28,8 + 6786: -26,8 + 6800: -21,-17 + 6896: 22,8 + 6966: 22,4 + 6995: 25,-8 + 7023: 30,4 + 7151: 28,11 + 7838: 79,-19 + 7925: 25,-12 + 7994: 33,-12 + 7995: 33,-12 + 7996: 33,-10 + 7997: 33,-10 + 8165: 41,-16 + 8168: 39,-16 + 8169: 39,-16 + 8203: 43,-19 + 8244: 44,-21 + 8245: 48,-21 + 8246: 52,-21 + 8297: 55,-19 + 8298: 55,-19 + 8404: 55,-29 + 8407: 55,-11 + 8408: 55,-11 + 8480: 58,-10 + 8622: 4,-21 + 8623: 11,-21 + 8624: -7,-21 + 8625: -2,-21 + 8626: -14,-21 + 8656: -2,-26 + 8691: -2,-36 + 8762: -12,-23 + 8767: -4,-28 + 8770: -12,-28 + 8773: -16,-23 + 8774: -16,-23 + 8783: -5,-23 + 8784: -5,-23 + 8794: -16,-28 + 8996: -1,-65 + 9035: -11,-78 + 9099: 0,-71 + 9100: 0,-66 + 9107: -2,-62 + 9120: -3,-60 + 9427: 1,-81 + 9429: -11,-67 + 10407: 43,-42 + 10408: 43,-42 + 10409: 45,-45 + 10410: 47,-45 + 10411: 47,-45 + 10573: 2,-82 + 10574: -4,-82 + 10575: -4,-82 + 10579: -6,-82 + 10580: -9,-78 + 10678: -60,-36 + 10679: -60,-36 + 10680: -60,-43 + 10720: -78,-27 + 10810: -2,-41 + 10836: -13,-32 + 11274: -26,-53 + 12380: -37,-63 + 13369: -44,11 + 14001: 16,22 + 14367: -43,8 + 14772: 76,1 + 14773: 81,0 + 14774: 85,0 + 14775: 89,0 + 15354: -60,-48 + 15677: -58,-10 + 15776: -58,-4 + 15786: -53,8 + 15814: -55,-7 + 15815: -55,-9 + 17414: -15,-12 + 17457: -14,-10 + 17458: -10,-10 + 17459: 16,-10 + 17484: 8,-10 + 18819: -27,10 + 18940: -16,4 + 19001: 61,25 + 19115: -20,17 + 19116: -20,11 + 19117: -20,4 + 19118: -20,-3 + 19213: -20,17 + 19216: -20,20 + 22942: -29,-3 + 22943: -24,-3 + 22944: -28,-16 + 22963: -30,-11 + 23788: 55,-21 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 4106: -20,20 - 4107: -20,17 + 3956: -20,20 + 3957: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelLineE decals: - 8100: 25,-18 - 8101: 25,-17 - 8132: 23,-15 - 8138: 31,-15 + 7946: 25,-18 + 7947: 25,-17 + 7978: 23,-15 + 7984: 31,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineE decals: - 3745: -26,64 - 3746: -26,62 - 3747: -26,60 - 3758: -25,63 - 3759: -25,61 - 3760: -25,59 - 10175: 35,-26 - 15692: 79,5 + 3612: -26,64 + 3613: -26,62 + 3614: -26,60 + 3625: -25,63 + 3626: -25,61 + 3627: -25,59 + 10013: 35,-26 + 14741: 79,5 - node: color: '#334E6DFF' id: BrickTileSteelLineE decals: - 21207: -18,13 - 21208: -18,12 - 21209: -18,13 - 21210: -18,13 + 20213: -18,13 + 20214: -18,12 + 20215: -18,13 + 20216: -18,13 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 23295: 24,-47 - 23296: 24,-48 - 23708: 32,-24 - 23709: 31,-24 + 22301: 24,-47 + 22302: 24,-48 + 22714: 32,-24 + 22715: 31,-24 - node: color: '#8BC9DAFF' id: BrickTileSteelLineE decals: - 3683: 4,64 - 3685: 4,64 - 3687: 4,64 - 3923: 21,61 - 3952: 21,61 + 3550: 4,64 + 3552: 4,64 + 3554: 4,64 + 3790: 21,61 + 3819: 21,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineE decals: - 9874: 29,-44 - 9983: 31,-24 - 9984: 31,-24 - 9993: 32,-24 - 10080: 24,-47 - 10081: 24,-48 - 10129: 31,-49 - 10130: 31,-51 - 10131: 31,-51 - 10141: 34,-52 - 10142: 34,-51 - 10143: 34,-50 - 10144: 34,-49 - 10145: 34,-48 + 9712: 29,-44 + 9821: 31,-24 + 9822: 31,-24 + 9831: 32,-24 + 9918: 24,-47 + 9919: 24,-48 + 9967: 31,-49 + 9968: 31,-51 + 9969: 31,-51 + 9979: 34,-52 + 9980: 34,-51 + 9981: 34,-50 + 9982: 34,-49 + 9983: 34,-48 - node: color: '#96A4EBFF' id: BrickTileSteelLineE decals: - 21202: -18,13 + 20208: -18,13 - node: color: '#A9DA8BFF' id: BrickTileSteelLineE decals: - 2988: -39,49 + 2865: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineE decals: - 11469: -21,-34 - 11470: -21,-35 - 11471: -21,-36 - 11987: -48,-23 - 12022: -24,-46 - 12023: -24,-45 - 12024: -24,-44 - 12071: -28,-41 - 12072: -28,-40 - 12073: -28,-39 - 12074: -23,-41 - 12075: -23,-40 - 12076: -23,-39 - 12093: -31,-39 - 12250: -17,-43 - 12251: -17,-42 - 12252: -17,-41 - 12258: -17,-39 - 16066: -62,-47 - 19698: -10,-43 - 19699: -10,-42 - 19700: -10,-41 - 19701: -10,-41 - 19712: -10,-40 + 10966: -21,-34 + 10967: -21,-35 + 10968: -21,-36 + 11326: -48,-23 + 11360: -24,-46 + 11361: -24,-45 + 11362: -24,-44 + 11409: -28,-41 + 11410: -28,-40 + 11411: -28,-39 + 11412: -23,-41 + 11413: -23,-40 + 11414: -23,-39 + 11431: -31,-39 + 11588: -17,-43 + 11589: -17,-42 + 11590: -17,-41 + 11596: -17,-39 + 15115: -62,-47 + 18742: -10,-43 + 18743: -10,-42 + 18744: -10,-41 + 18745: -10,-41 + 18756: -10,-40 - node: color: '#D381C9FF' id: BrickTileSteelLineE decals: - 22698: -17,-39 - 22701: -17,-41 - 22702: -17,-41 - 22703: -17,-42 - 22704: -17,-42 - 22705: -17,-43 - 22706: -17,-43 - 22707: -17,-43 + 21704: -17,-39 + 21707: -17,-41 + 21708: -17,-41 + 21709: -17,-42 + 21710: -17,-42 + 21711: -17,-43 + 21712: -17,-43 + 21713: -17,-43 - node: color: '#DA8B8BFF' id: BrickTileSteelLineE decals: - 7791: 67,4 - 7798: 64,4 - 7799: 64,5 - 7804: 56,4 - 7805: 56,5 - 7806: 60,4 - 7807: 60,5 - 19178: 58,3 - 19185: 66,3 - 19186: 62,3 - 19211: 69,8 - 19216: 66,8 - 19217: 66,7 - 19222: 62,7 - 19223: 62,8 - 19224: 62,9 - 19230: 58,7 - 19231: 58,8 + 7639: 67,4 + 7646: 64,4 + 7647: 64,5 + 7652: 56,4 + 7653: 56,5 + 7654: 60,4 + 7655: 60,5 + 18222: 58,3 + 18229: 66,3 + 18230: 62,3 + 18255: 69,8 + 18260: 66,8 + 18261: 66,7 + 18266: 62,7 + 18267: 62,8 + 18268: 62,9 + 18274: 58,7 + 18275: 58,8 - node: color: '#DA8BC9FF' id: BrickTileSteelLineE decals: - 3821: 9,68 - 3930: 21,62 + 3688: 9,68 + 3797: 21,62 - node: color: '#DABC8BFF' id: BrickTileSteelLineE decals: - 3701: 9,75 - 3702: 9,76 - 3703: 9,80 - 3704: 9,81 + 3568: 9,75 + 3569: 9,76 + 3570: 9,80 + 3571: 9,81 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 20222: -22,1 - 20237: -49,9 - 20264: 4,-86 - 20265: 4,-85 - 20266: 4,-84 - 20277: 6,-81 - 20293: 3,-66 - 20294: 3,-67 - 20295: 3,-75 - 20296: 3,-76 - 20321: 7,-77 - 20322: 7,-75 - 20325: 6,-76 - 20330: 6,-71 - 20331: 6,-70 - 20332: 6,-69 - 20333: 6,-68 - 20334: 6,-67 - 20335: 6,-66 - 20336: 9,-65 - 20337: 8,-61 - 20338: 8,-60 - 20339: 8,-59 - 20345: 2,-60 - 20384: 11,30 - 20385: 13,31 - 20386: 13,32 - 20394: -1,61 - 20404: 3,63 - 20405: 3,62 - 20406: 3,61 - 20443: 41,12 - 20454: 41,6 - 20455: 41,7 - 20456: 41,8 - 20464: 38,8 - 20495: 74,10 - 20496: 74,11 - 20497: 74,12 - 20498: 74,13 - 20499: 74,14 - 20500: 74,15 - 20501: 74,16 - 20502: 74,17 - 20503: 74,18 - 20504: 93,14 - 20505: 93,19 - 20506: 93,19 - 20507: 93,20 - 20508: 93,18 - 20511: 93,16 - 20525: 75,9 - 20526: 79,9 - 20531: 48,2 - 20532: 48,3 - 20533: 48,5 - 20534: 48,6 - 20535: 48,6 - 20536: 48,7 - 20537: 48,11 - 20552: 45,12 - 20561: 48,9 - 20567: 45,8 - 20591: 38,4 - 20592: 38,6 - 20593: 48,17 - 20594: 48,18 - 20595: 54,18 - 20596: 59,22 - 20597: 59,23 - 20598: 59,24 - 20599: 59,27 - 20600: 59,28 - 20601: 59,29 - 20602: 59,30 - 20603: 59,26 - 20616: 48,23 - 20617: 48,22 - 20664: 49,16 - 20669: 49,12 - 20714: 47,21 - 20715: 47,20 - 20716: 57,18 - 20717: 57,17 - 20718: 57,16 - 20719: 57,16 - 20730: 54,16 - 20762: 49,8 - 20765: 49,4 - 20793: 93,22 - 20795: 90,21 - 20831: 79,9 - 20834: 75,9 - 20844: 74,8 - 20845: 74,7 - 20846: 74,6 - 20847: 74,6 - 20869: 71,-1 - 20874: 67,0 - 20877: 70,0 - 20887: 49,-1 - 20888: 49,0 - 20889: 49,1 - 20890: 71,6 - 20891: 71,13 - 20895: 71,13 - 20896: 71,18 - 20943: 68,1 - 20944: 68,-1 - 20945: 71,1 - 20946: 71,-1 - 20978: 48,-4 - 20979: 53,-4 - 20995: 58,-4 - 21007: 45,0 - 21023: 41,0 - 21024: 33,6 - 21025: 33,4 - 21026: 38,4 - 21027: 38,6 - 21037: 37,5 - 21070: 55,6 - 21071: 55,7 - 21072: 55,8 - 21087: 44,20 - 21088: 49,16 - 21089: 55,17 - 21097: 72,-4 - 21106: 75,-4 - 21109: 77,-3 - 21112: 75,-4 - 21114: 72,-4 - 21118: -21,-26 - 21122: -18,-25 - 21123: -18,-26 - 21124: -18,-26 - 21125: -18,-27 - 21150: 51,-7 - 21151: 51,-8 - 21159: 45,-8 - 21175: 74,2 - 21176: 74,0 - 21910: 10,31 - 22498: 32,5 - 23054: -17,-24 - 23094: 15,-31 - 23972: 2,-68 - 23973: 2,-65 - 23974: 2,-74 - 23975: 2,-77 - 23981: 1,-61 - 23982: 1,-59 + 19228: -22,1 + 19243: -49,9 + 19270: 4,-86 + 19271: 4,-85 + 19272: 4,-84 + 19283: 6,-81 + 19299: 3,-66 + 19300: 3,-67 + 19301: 3,-75 + 19302: 3,-76 + 19327: 7,-77 + 19328: 7,-75 + 19331: 6,-76 + 19336: 6,-71 + 19337: 6,-70 + 19338: 6,-69 + 19339: 6,-68 + 19340: 6,-67 + 19341: 6,-66 + 19342: 9,-65 + 19343: 8,-61 + 19344: 8,-60 + 19345: 8,-59 + 19351: 2,-60 + 19390: 11,30 + 19391: 13,31 + 19392: 13,32 + 19400: -1,61 + 19410: 3,63 + 19411: 3,62 + 19412: 3,61 + 19449: 41,12 + 19460: 41,6 + 19461: 41,7 + 19462: 41,8 + 19470: 38,8 + 19501: 74,10 + 19502: 74,11 + 19503: 74,12 + 19504: 74,13 + 19505: 74,14 + 19506: 74,15 + 19507: 74,16 + 19508: 74,17 + 19509: 74,18 + 19510: 93,14 + 19511: 93,19 + 19512: 93,19 + 19513: 93,20 + 19514: 93,18 + 19517: 93,16 + 19531: 75,9 + 19532: 79,9 + 19537: 48,2 + 19538: 48,3 + 19539: 48,5 + 19540: 48,6 + 19541: 48,6 + 19542: 48,7 + 19543: 48,11 + 19558: 45,12 + 19567: 48,9 + 19573: 45,8 + 19597: 38,4 + 19598: 38,6 + 19599: 48,17 + 19600: 48,18 + 19601: 54,18 + 19602: 59,22 + 19603: 59,23 + 19604: 59,24 + 19605: 59,27 + 19606: 59,28 + 19607: 59,29 + 19608: 59,30 + 19609: 59,26 + 19622: 48,23 + 19623: 48,22 + 19670: 49,16 + 19675: 49,12 + 19720: 47,21 + 19721: 47,20 + 19722: 57,18 + 19723: 57,17 + 19724: 57,16 + 19725: 57,16 + 19736: 54,16 + 19768: 49,8 + 19771: 49,4 + 19799: 93,22 + 19801: 90,21 + 19837: 79,9 + 19840: 75,9 + 19850: 74,8 + 19851: 74,7 + 19852: 74,6 + 19853: 74,6 + 19875: 71,-1 + 19880: 67,0 + 19883: 70,0 + 19893: 49,-1 + 19894: 49,0 + 19895: 49,1 + 19896: 71,6 + 19897: 71,13 + 19901: 71,13 + 19902: 71,18 + 19949: 68,1 + 19950: 68,-1 + 19951: 71,1 + 19952: 71,-1 + 19984: 48,-4 + 19985: 53,-4 + 20001: 58,-4 + 20013: 45,0 + 20029: 41,0 + 20030: 33,6 + 20031: 33,4 + 20032: 38,4 + 20033: 38,6 + 20043: 37,5 + 20076: 55,6 + 20077: 55,7 + 20078: 55,8 + 20093: 44,20 + 20094: 49,16 + 20095: 55,17 + 20103: 72,-4 + 20112: 75,-4 + 20115: 77,-3 + 20118: 75,-4 + 20120: 72,-4 + 20124: -21,-26 + 20128: -18,-25 + 20129: -18,-26 + 20130: -18,-26 + 20131: -18,-27 + 20156: 51,-7 + 20157: 51,-8 + 20165: 45,-8 + 20181: 74,2 + 20182: 74,0 + 20916: 10,31 + 21504: 32,5 + 22060: -17,-24 + 22100: 15,-31 + 22978: 2,-68 + 22979: 2,-65 + 22980: 2,-74 + 22981: 2,-77 + 22987: 1,-61 + 22988: 1,-59 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2240: -15,51 - 2241: -15,49 - 2246: -15,47 - 2272: -25,41 - 2286: -15,35 - 2298: -24,39 - 2299: -24,38 - 2300: -24,37 - 2301: -24,36 - 2302: -24,35 - 2303: -24,34 - 2304: -24,33 - 2305: -24,32 - 2306: -24,31 - 2307: -24,30 - 2325: -28,30 - 2341: -28,32 - 2342: -28,33 - 2343: -28,34 - 2344: -28,35 - 2345: -28,36 - 2346: -28,37 - 2347: -28,38 - 2731: -14,48 - 2732: -14,50 - 2753: -3,50 - 2754: -3,49 - 2780: -2,45 - 2801: -8,27 - 2803: -5,27 - 2815: -26,42 - 2836: -30,40 - 2857: -24,50 - 2858: -24,51 - 2859: -24,48 - 2860: -24,47 - 3160: -17,59 - 3161: -17,60 - 3162: -17,61 - 3163: -17,62 - 3164: -17,63 - 3165: -17,64 - 3166: -17,64 - 3167: -17,65 - 3168: -17,66 - 3333: -29,93 - 3334: -29,94 - 3335: -29,95 - 3336: -28,91 - 3337: -28,90 - 3338: -28,89 - 3339: -29,87 - 3340: -29,86 - 3341: -29,85 - 3342: -29,83 - 3343: -28,81 - 3344: -28,80 - 3345: -29,78 - 3346: -29,76 - 3347: -29,75 - 3348: -29,74 - 3349: -29,73 - 3350: -29,72 - 3351: -29,71 - 3352: -29,70 - 3390: -11,93 - 3391: -11,94 - 3392: -11,95 - 3393: -10,91 - 3394: -10,90 - 3395: -10,89 - 3396: -11,86 - 3397: -11,85 - 3398: -11,87 - 3399: -11,83 - 3400: -10,81 - 3401: -10,80 - 3402: -11,78 - 3403: -11,76 - 3404: -11,75 - 3405: -11,74 - 3406: -11,73 - 3407: -11,72 - 3408: -11,71 - 3409: -11,70 - 3440: -3,59 - 3441: -3,63 - 3442: -3,64 - 3443: -3,62 - 3444: -3,62 - 3445: -3,61 - 3448: -3,66 - 3499: -10,89 - 3500: -10,90 - 3501: -10,91 - 3565: -14,77 - 3567: -10,77 - 3569: -16,77 - 3575: -14,84 - 3576: -16,84 - 3577: -10,84 - 3588: -32,84 - 3589: -28,84 - 3591: -34,84 - 3596: -28,77 - 3597: -32,77 - 3598: -34,77 - 3606: 5,72 - 3607: 5,73 - 3608: 5,74 - 3609: 5,75 - 3631: 7,73 - 3632: 7,72 - 3633: 7,71 - 3635: 7,70 - 3659: 4,77 - 3660: 2,77 - 3661: 4,84 - 3663: 2,84 - 3723: -22,55 - 4166: -21,20 - 4308: 15,14 - 4309: 15,15 - 4339: 18,20 - 4340: 18,20 - 4341: 18,19 - 4342: 18,17 - 4343: 18,16 - 4344: 18,13 - 4345: 18,11 - 4346: 18,10 - 4347: 18,9 - 4348: 18,8 - 4349: 18,7 - 4350: 18,3 - 4351: 18,2 - 4352: 18,1 - 4353: 18,0 - 4354: 18,-1 - 4355: 18,-2 - 4356: 18,-4 - 4357: 18,-5 - 4358: 18,-6 - 4359: 18,-7 - 4360: 18,-8 - 4361: 18,-9 - 5093: 30,28 - 5094: 30,27 - 5095: 30,26 - 5100: 33,28 - 5101: 33,27 - 5102: 33,26 - 5107: 28,31 - 5126: 36,31 - 5209: 18,-6 - 5255: -29,82 - 5256: -29,81 - 5257: -29,81 - 5258: -29,79 - 5259: -29,80 - 5273: -29,92 - 5274: -29,91 - 5275: -29,90 - 5276: -29,90 - 5277: -29,89 - 5278: -29,89 - 5279: -29,88 - 5280: -29,88 - 5281: -11,79 - 5282: -11,80 - 5283: -11,81 - 5284: -11,82 - 5285: -11,82 - 5298: -11,92 - 5299: -11,91 - 5300: -11,91 - 5301: -11,90 - 5302: -11,90 - 5303: -11,89 - 5304: -11,88 - 5305: -11,87 - 5376: -18,-7 - 5466: -41,11 - 5467: -41,15 - 5468: -41,22 - 5601: 15,-8 - 5611: -17,-8 - 5614: -18,-11 - 5615: -18,-11 - 5616: -18,-12 - 5617: -18,-13 - 5618: -18,-13 - 5619: -18,-15 - 5620: -18,-14 - 5621: -18,-16 - 5622: -18,-16 - 5623: -18,-17 - 5624: -18,-18 - 5639: 15,-4 - 5778: 14,-5 - 6066: -9,-16 - 6067: -9,-15 - 6068: -9,-14 - 6069: -9,-13 - 6139: -17,-21 - 6140: -17,-20 - 6141: -17,-19 - 6155: -17,-19 - 6253: -4,-14 - 6254: -4,-15 - 6257: -4,-17 - 6266: -3,-21 - 6267: -3,-20 - 6268: -3,-19 - 6269: 1,-19 - 6270: 1,-20 - 6271: 1,-21 - 6284: 15,-21 - 6285: 15,-20 - 6286: 15,-19 - 6291: 18,-13 - 6292: 18,-14 - 6293: 18,-15 - 6294: 18,-16 - 6295: 18,-17 - 6296: 18,-18 - 6297: 18,-19 - 6298: 18,-21 - 6324: 4,-16 - 6325: 4,-15 - 6355: 10,-12 - 6356: 10,-13 - 6357: 10,-14 - 6358: 10,-15 - 6387: 14,-17 - 6388: 14,-16 - 6390: 11,-16 - 6393: 14,-15 - 6438: -21,-20 - 6628: -21,-3 - 6629: -21,-2 - 6781: -21,11 - 6782: -21,12 - 6783: -21,12 - 6871: -34,10 - 6872: -34,11 - 6873: -34,11 - 6874: -34,11 - 6875: -34,11 - 6876: -34,12 - 6877: -34,12 - 6878: -34,13 - 6879: -34,14 - 6880: -34,14 - 6909: -22,13 - 6910: -22,14 - 6911: -22,10 - 6912: -22,10 - 6913: -22,9 - 6947: -22,-16 - 6948: -22,-16 - 6949: -22,-17 - 7044: 19,4 - 7045: 19,5 - 7046: 19,6 - 7054: 24,9 - 7092: 19,-12 - 7093: 19,-11 - 7094: 19,-10 - 7095: 26,-12 - 7096: 26,-11 - 7097: 26,-10 - 7111: 31,-11 - 7157: 31,-5 - 7170: 24,-8 - 7171: 24,-2 - 7195: 26,4 - 7196: 26,5 - 7197: 26,6 - 7201: 32,5 - 7202: 32,5 - 7203: 32,5 - 7287: 28,9 - 7288: 28,10 - 7289: 28,11 - 7356: 32,5 - 7978: 81,-21 - 7979: 81,-20 - 7984: 82,-19 - 7985: 82,-22 - 7986: 78,-22 - 7987: 76,-22 - 7988: 76,-19 - 7989: 78,-19 - 8003: 64,-19 - 8004: 64,-22 - 8146: 32,-10 - 8147: 32,-12 - 8159: 32,-16 - 8166: 32,-16 - 8204: 33,-7 - 8267: 41,-17 - 8268: 41,-16 - 8269: 41,-15 - 8270: 41,-14 - 8271: 41,-13 - 8272: 41,-11 - 8273: 41,-10 - 8274: 41,-9 - 8330: 39,-17 - 8354: 41,-20 - 8394: 42,-21 - 8395: 42,-19 - 8396: 42,-19 - 8418: 53,-20 - 8448: 54,-19 - 8449: 54,-21 - 8461: 56,-19 - 8462: 56,-19 - 8560: 54,-11 - 8561: 54,-29 - 8612: 63,-30 - 8613: 63,-30 - 8614: 63,-28 - 8615: 63,-28 - 8616: 63,-29 - 8617: 63,-26 - 8618: 63,-26 - 8619: 63,-27 - 8620: 63,-24 - 8621: 63,-25 - 8622: 63,-21 - 8623: 63,-18 - 8624: 63,-17 - 8625: 63,-16 - 8626: 63,-15 - 8627: 63,-15 - 8628: 63,-14 - 8629: 63,-13 - 8630: 63,-12 - 8631: 63,-11 - 8650: 63,-23 - 8651: 63,-23 - 8652: 63,-20 - 8805: 0,-23 - 8806: 0,-24 - 8807: 0,-27 - 8808: 0,-28 - 8815: -3,-25 - 8816: -3,-26 - 8832: 0,-30 - 8833: 0,-30 - 8834: 0,-31 - 8835: 0,-32 - 8836: 0,-33 - 8885: -13,-28 - 8893: -5,-28 - 8894: -5,-28 - 8895: -5,-27 - 8896: -5,-27 - 8910: -13,-23 - 8911: -6,-23 - 8912: -6,-23 - 8952: -5,-28 - 9140: 2,-65 - 9141: 2,-65 - 9217: 2,-82 - 9218: 2,-81 - 9219: 2,-80 - 9220: 2,-78 - 9221: 2,-79 - 9222: 2,-79 - 9223: 2,-74 - 9224: 2,-74 - 9225: 2,-73 - 9226: 2,-72 - 9227: 2,-71 - 9228: 2,-70 - 9229: 2,-69 - 9230: -9,-68 - 9231: -9,-67 - 9232: -9,-73 - 9233: -9,-74 - 9234: -9,-72 - 9246: -2,-71 - 9247: -2,-69 - 9248: -2,-70 - 9274: 1,-61 - 9275: 1,-59 - 9294: 0,-38 - 9295: 0,-40 - 9296: 0,-40 - 9297: 0,-41 - 9298: 0,-41 - 9299: 0,-42 - 9300: 0,-43 - 9301: 0,-45 - 9302: 0,-45 - 9303: 0,-48 - 9304: 0,-48 - 9305: 0,-49 - 9306: 0,-50 - 9307: 0,-52 - 9308: 0,-53 - 9309: 0,-54 - 9341: 0,-46 - 9342: 0,-46 - 9343: 0,-47 - 9344: 0,-55 - 9345: 0,-55 - 9346: 0,-56 - 9424: -39,-15 - 10336: 11,-52 - 10337: 11,-51 - 10338: 11,-50 - 10501: 4,-86 - 10502: 4,-86 - 10503: 4,-85 - 10504: 4,-84 - 10550: 49,-39 - 10551: 49,-40 - 10552: 49,-41 - 10553: 49,-43 - 10554: 49,-44 - 10577: 42,-42 - 11164: -58,-36 - 11165: -58,-36 - 11166: -58,-37 - 11167: -58,-37 - 11168: -58,-38 - 11185: -61,-43 - 11186: -58,-43 - 11187: -58,-43 - 11267: -6,-86 - 11268: -6,-86 - 11269: -6,-84 - 11270: -6,-85 - 11271: -6,-85 - 11272: -4,-86 - 11273: -4,-85 - 11274: -4,-85 - 11275: -4,-84 - 11276: 2,-86 - 11277: 2,-85 - 11278: 2,-84 - 11302: -12,-67 - 11303: -12,-66 - 11304: -12,-78 - 11310: -3,-48 - 11315: -3,-40 - 11316: -3,-41 - 11318: -4,-35 - 11327: -13,-30 - 11328: -13,-31 - 11329: -13,-32 - 11761: -37,-52 - 11769: -41,-55 - 11770: -41,-54 - 11771: -41,-54 - 11780: -23,-51 - 11781: -23,-51 - 11782: -23,-52 - 11783: -23,-53 - 12285: -4,-60 - 12661: -45,9 - 12663: -45,18 - 12777: -45,9 - 12779: -44,23 - 13326: -36,-62 - 14314: -46,14 - 14315: -46,12 - 14839: 6,22 - 14840: 6,23 - 14841: 6,24 - 14850: 18,23 - 14851: 18,22 - 14880: -8,22 - 14881: -8,23 - 14882: -8,24 - 15266: -8,-70 - 15315: -40,4 - 15316: -40,5 - 15317: -40,6 - 15322: -41,8 - 15323: -41,9 - 15324: -41,10 - 15325: -41,14 - 15326: -41,13 - 15327: -41,12 - 15328: -41,16 - 15329: -41,17 - 15330: -41,18 - 15331: -41,18 - 15332: -41,19 - 15333: -41,20 - 15334: -41,21 - 15711: 89,1 - 15712: 89,0 - 15722: 75,1 - 16619: -55,-13 - 16620: -55,-14 - 16621: -55,-14 - 16637: -62,-17 - 16638: -60,-17 - 16739: -52,4 - 16740: -52,5 - 16741: -52,6 - 16755: -56,-7 - 16756: -56,-9 - 17088: -46,12 - 17091: -46,14 - 17431: 7,84 - 17432: 7,83 - 17438: 8,79 - 17439: 8,78 - 17440: 8,77 - 17829: -44,23 - 18384: -17,-9 - 18385: -17,-10 - 18453: 15,-10 - 18454: 15,-9 - 18455: 15,-8 - 19791: -28,10 - 19792: -28,11 - 19793: -28,11 - 19794: -28,13 - 19795: -28,12 - 19915: -17,4 - 19916: -17,-1 - 19928: -16,0 - 19929: -16,1 - 19930: -16,2 - 19931: -16,3 - 19975: 70,25 - 19976: 70,24 - 19977: 70,23 - 19978: 70,22 - 19994: 60,25 - 20042: -21,-3 - 20043: -21,-2 - 20051: -21,4 - 20052: -21,5 - 20053: -21,6 - 20057: -18,5 - 20058: -18,3 - 20059: -18,2 - 20060: -18,2 - 20061: -18,1 - 20062: -18,0 - 20063: -18,-3 - 20064: -18,-2 - 20065: -18,-4 - 20066: -18,-4 - 20067: -18,-5 - 20068: -18,-6 - 20069: -18,-6 - 20076: -18,8 - 20077: -18,8 - 20078: -18,9 - 20079: -18,10 - 20080: -18,11 - 20081: -18,12 - 20082: -18,12 - 20083: -18,13 - 20084: -18,11 - 20085: -18,10 - 20086: -18,9 - 20087: -18,8 - 20088: -18,11 - 20089: -18,11 - 20090: -18,12 - 20091: -18,13 - 20092: -18,16 - 20093: -18,17 - 20094: -18,18 - 20095: -18,19 - 20096: -18,19 - 20097: -18,20 - 20113: -21,11 - 20114: -21,12 - 20115: -21,17 - 20116: -21,20 - 20117: -21,11 - 20118: -21,12 - 20120: -21,6 - 20121: -21,5 - 20122: -21,4 - 21263: 18,12 - 23844: -32,0 - 23845: -32,-1 - 23846: -32,-5 - 23847: -32,-5 - 23848: -32,-5 - 23849: -32,-6 - 23850: -32,-7 - 23851: -32,-8 - 23852: -32,-8 - 23853: -32,-4 - 23854: -32,-9 - 23855: -28,-12 - 23856: -28,-13 - 23857: -28,-13 - 23858: -28,-14 - 23859: -28,-15 - 23860: -28,-15 - 23861: -28,-16 - 23926: -32,2 - 23961: -35,-15 - 23962: -35,-14 - 23963: -35,-13 - 23964: -35,-12 + 2118: -15,51 + 2119: -15,49 + 2124: -15,47 + 2150: -25,41 + 2164: -15,35 + 2175: -24,39 + 2176: -24,38 + 2177: -24,37 + 2178: -24,36 + 2179: -24,35 + 2180: -24,34 + 2181: -24,33 + 2182: -24,32 + 2183: -24,31 + 2184: -24,30 + 2202: -28,30 + 2218: -28,32 + 2219: -28,33 + 2220: -28,34 + 2221: -28,35 + 2222: -28,36 + 2223: -28,37 + 2224: -28,38 + 2608: -14,48 + 2609: -14,50 + 2630: -3,50 + 2631: -3,49 + 2657: -2,45 + 2678: -8,27 + 2680: -5,27 + 2692: -26,42 + 2713: -30,40 + 2734: -24,50 + 2735: -24,51 + 2736: -24,48 + 2737: -24,47 + 3035: -17,59 + 3036: -17,60 + 3037: -17,61 + 3038: -17,62 + 3039: -17,63 + 3040: -17,64 + 3041: -17,64 + 3042: -17,65 + 3043: -17,66 + 3206: -29,93 + 3207: -29,94 + 3208: -29,95 + 3209: -28,91 + 3210: -28,90 + 3211: -28,89 + 3212: -29,87 + 3213: -29,86 + 3214: -29,85 + 3215: -29,83 + 3216: -28,81 + 3217: -28,80 + 3218: -29,78 + 3219: -29,76 + 3220: -29,75 + 3221: -29,74 + 3222: -29,73 + 3223: -29,72 + 3224: -29,71 + 3225: -29,70 + 3261: -11,93 + 3262: -11,94 + 3263: -11,95 + 3264: -10,91 + 3265: -10,90 + 3266: -10,89 + 3267: -11,86 + 3268: -11,85 + 3269: -11,87 + 3270: -11,83 + 3271: -10,81 + 3272: -10,80 + 3273: -11,78 + 3274: -11,76 + 3275: -11,75 + 3276: -11,74 + 3277: -11,73 + 3278: -11,72 + 3279: -11,71 + 3280: -11,70 + 3311: -3,59 + 3312: -3,63 + 3313: -3,64 + 3314: -3,62 + 3315: -3,62 + 3316: -3,61 + 3319: -3,66 + 3368: -10,89 + 3369: -10,90 + 3370: -10,91 + 3432: -14,77 + 3434: -10,77 + 3436: -16,77 + 3442: -14,84 + 3443: -16,84 + 3444: -10,84 + 3455: -32,84 + 3456: -28,84 + 3458: -34,84 + 3463: -28,77 + 3464: -32,77 + 3465: -34,77 + 3473: 5,72 + 3474: 5,73 + 3475: 5,74 + 3476: 5,75 + 3498: 7,73 + 3499: 7,72 + 3500: 7,71 + 3502: 7,70 + 3526: 4,77 + 3527: 2,77 + 3528: 4,84 + 3530: 2,84 + 3590: -22,55 + 4016: -21,20 + 4158: 15,14 + 4159: 15,15 + 4189: 18,20 + 4190: 18,20 + 4191: 18,19 + 4192: 18,17 + 4193: 18,16 + 4194: 18,13 + 4195: 18,11 + 4196: 18,10 + 4197: 18,9 + 4198: 18,8 + 4199: 18,7 + 4200: 18,3 + 4201: 18,2 + 4202: 18,1 + 4203: 18,0 + 4204: 18,-1 + 4205: 18,-2 + 4206: 18,-4 + 4207: 18,-5 + 4208: 18,-6 + 4209: 18,-7 + 4210: 18,-8 + 4211: 18,-9 + 4943: 30,28 + 4944: 30,27 + 4945: 30,26 + 4950: 33,28 + 4951: 33,27 + 4952: 33,26 + 4957: 28,31 + 4976: 36,31 + 5059: 18,-6 + 5105: -29,82 + 5106: -29,81 + 5107: -29,81 + 5108: -29,79 + 5109: -29,80 + 5123: -29,92 + 5124: -29,91 + 5125: -29,90 + 5126: -29,90 + 5127: -29,89 + 5128: -29,89 + 5129: -29,88 + 5130: -29,88 + 5131: -11,79 + 5132: -11,80 + 5133: -11,81 + 5134: -11,82 + 5135: -11,82 + 5146: -11,92 + 5147: -11,91 + 5148: -11,91 + 5149: -11,90 + 5150: -11,90 + 5151: -11,89 + 5152: -11,88 + 5153: -11,87 + 5224: -18,-7 + 5314: -41,11 + 5315: -41,15 + 5316: -41,22 + 5449: 15,-8 + 5459: -17,-8 + 5462: -18,-11 + 5463: -18,-11 + 5464: -18,-12 + 5465: -18,-13 + 5466: -18,-13 + 5467: -18,-15 + 5468: -18,-14 + 5469: -18,-16 + 5470: -18,-16 + 5471: -18,-17 + 5472: -18,-18 + 5487: 15,-4 + 5626: 14,-5 + 5914: -9,-16 + 5915: -9,-15 + 5916: -9,-14 + 5917: -9,-13 + 5987: -17,-21 + 5988: -17,-20 + 5989: -17,-19 + 6003: -17,-19 + 6101: -4,-14 + 6102: -4,-15 + 6105: -4,-17 + 6114: -3,-21 + 6115: -3,-20 + 6116: -3,-19 + 6117: 1,-19 + 6118: 1,-20 + 6119: 1,-21 + 6132: 15,-21 + 6133: 15,-20 + 6134: 15,-19 + 6139: 18,-13 + 6140: 18,-14 + 6141: 18,-15 + 6142: 18,-16 + 6143: 18,-17 + 6144: 18,-18 + 6145: 18,-19 + 6146: 18,-21 + 6172: 4,-16 + 6173: 4,-15 + 6203: 10,-12 + 6204: 10,-13 + 6205: 10,-14 + 6206: 10,-15 + 6235: 14,-17 + 6236: 14,-16 + 6238: 11,-16 + 6241: 14,-15 + 6286: -21,-20 + 6476: -21,-3 + 6477: -21,-2 + 6629: -21,11 + 6630: -21,12 + 6631: -21,12 + 6719: -34,10 + 6720: -34,11 + 6721: -34,11 + 6722: -34,11 + 6723: -34,11 + 6724: -34,12 + 6725: -34,12 + 6726: -34,13 + 6727: -34,14 + 6728: -34,14 + 6757: -22,13 + 6758: -22,14 + 6759: -22,10 + 6760: -22,10 + 6761: -22,9 + 6795: -22,-16 + 6796: -22,-16 + 6797: -22,-17 + 6892: 19,4 + 6893: 19,5 + 6894: 19,6 + 6902: 24,9 + 6940: 19,-12 + 6941: 19,-11 + 6942: 19,-10 + 6943: 26,-12 + 6944: 26,-11 + 6945: 26,-10 + 6959: 31,-11 + 7005: 31,-5 + 7018: 24,-8 + 7019: 24,-2 + 7043: 26,4 + 7044: 26,5 + 7045: 26,6 + 7049: 32,5 + 7050: 32,5 + 7051: 32,5 + 7135: 28,9 + 7136: 28,10 + 7137: 28,11 + 7204: 32,5 + 7826: 81,-21 + 7827: 81,-20 + 7832: 82,-19 + 7833: 82,-22 + 7834: 78,-22 + 7835: 76,-22 + 7836: 76,-19 + 7837: 78,-19 + 7851: 64,-19 + 7852: 64,-22 + 7992: 32,-10 + 7993: 32,-12 + 8005: 32,-16 + 8012: 32,-16 + 8050: 33,-7 + 8113: 41,-17 + 8114: 41,-16 + 8115: 41,-15 + 8116: 41,-14 + 8117: 41,-13 + 8118: 41,-11 + 8119: 41,-10 + 8120: 41,-9 + 8176: 39,-17 + 8200: 41,-20 + 8240: 42,-21 + 8241: 42,-19 + 8242: 42,-19 + 8264: 53,-20 + 8294: 54,-19 + 8295: 54,-21 + 8305: 56,-19 + 8306: 56,-19 + 8402: 54,-11 + 8403: 54,-29 + 8453: 63,-30 + 8454: 63,-30 + 8455: 63,-28 + 8456: 63,-28 + 8457: 63,-26 + 8458: 63,-26 + 8459: 63,-27 + 8460: 63,-24 + 8461: 63,-25 + 8462: 63,-21 + 8463: 63,-18 + 8464: 63,-17 + 8465: 63,-16 + 8466: 63,-15 + 8467: 63,-15 + 8468: 63,-14 + 8469: 63,-13 + 8470: 63,-12 + 8471: 63,-11 + 8488: 63,-23 + 8489: 63,-23 + 8490: 63,-20 + 8643: 0,-23 + 8644: 0,-24 + 8645: 0,-27 + 8646: 0,-28 + 8653: -3,-25 + 8654: -3,-26 + 8670: 0,-30 + 8671: 0,-30 + 8672: 0,-31 + 8673: 0,-32 + 8674: 0,-33 + 8723: -13,-28 + 8731: -5,-28 + 8732: -5,-28 + 8733: -5,-27 + 8734: -5,-27 + 8748: -13,-23 + 8749: -6,-23 + 8750: -6,-23 + 8790: -5,-28 + 8978: 2,-65 + 8979: 2,-65 + 9055: 2,-82 + 9056: 2,-81 + 9057: 2,-80 + 9058: 2,-78 + 9059: 2,-79 + 9060: 2,-79 + 9061: 2,-74 + 9062: 2,-74 + 9063: 2,-73 + 9064: 2,-72 + 9065: 2,-71 + 9066: 2,-70 + 9067: 2,-69 + 9068: -9,-68 + 9069: -9,-67 + 9070: -9,-73 + 9071: -9,-74 + 9072: -9,-72 + 9084: -2,-71 + 9085: -2,-69 + 9086: -2,-70 + 9112: 1,-61 + 9113: 1,-59 + 9132: 0,-38 + 9133: 0,-40 + 9134: 0,-40 + 9135: 0,-41 + 9136: 0,-41 + 9137: 0,-42 + 9138: 0,-43 + 9139: 0,-45 + 9140: 0,-45 + 9141: 0,-48 + 9142: 0,-48 + 9143: 0,-49 + 9144: 0,-50 + 9145: 0,-52 + 9146: 0,-53 + 9147: 0,-54 + 9179: 0,-46 + 9180: 0,-46 + 9181: 0,-47 + 9182: 0,-55 + 9183: 0,-55 + 9184: 0,-56 + 9262: -39,-15 + 10174: 11,-52 + 10175: 11,-51 + 10176: 11,-50 + 10339: 4,-86 + 10340: 4,-86 + 10341: 4,-85 + 10342: 4,-84 + 10388: 49,-39 + 10389: 49,-40 + 10390: 49,-41 + 10391: 49,-43 + 10392: 49,-44 + 10415: 42,-42 + 10661: -58,-36 + 10662: -58,-36 + 10663: -58,-37 + 10664: -58,-37 + 10665: -58,-38 + 10682: -61,-43 + 10683: -58,-43 + 10684: -58,-43 + 10764: -6,-86 + 10765: -6,-86 + 10766: -6,-84 + 10767: -6,-85 + 10768: -6,-85 + 10769: -4,-86 + 10770: -4,-85 + 10771: -4,-85 + 10772: -4,-84 + 10773: 2,-86 + 10774: 2,-85 + 10775: 2,-84 + 10799: -12,-67 + 10800: -12,-66 + 10801: -12,-78 + 10807: -3,-48 + 10812: -3,-40 + 10813: -3,-41 + 10815: -4,-35 + 10824: -13,-30 + 10825: -13,-31 + 10826: -13,-32 + 11246: -37,-52 + 11254: -41,-55 + 11255: -41,-54 + 11256: -41,-54 + 11265: -23,-51 + 11266: -23,-51 + 11267: -23,-52 + 11268: -23,-53 + 11623: -4,-60 + 11979: -45,9 + 11981: -45,18 + 12091: -45,9 + 12093: -44,23 + 12382: -36,-62 + 13370: -46,14 + 13371: -46,12 + 13895: 6,22 + 13896: 6,23 + 13897: 6,24 + 13906: 18,23 + 13907: 18,22 + 13936: -8,22 + 13937: -8,23 + 13938: -8,24 + 14322: -8,-70 + 14364: -40,4 + 14365: -40,5 + 14366: -40,6 + 14371: -41,8 + 14372: -41,9 + 14373: -41,10 + 14374: -41,14 + 14375: -41,13 + 14376: -41,12 + 14377: -41,16 + 14378: -41,17 + 14379: -41,18 + 14380: -41,18 + 14381: -41,19 + 14382: -41,20 + 14383: -41,21 + 14760: 89,1 + 14761: 89,0 + 14771: 75,1 + 15668: -55,-13 + 15669: -55,-14 + 15670: -55,-14 + 15686: -62,-17 + 15687: -60,-17 + 15788: -52,4 + 15789: -52,5 + 15790: -52,6 + 15804: -56,-7 + 15805: -56,-9 + 16137: -46,12 + 16140: -46,14 + 16480: 7,84 + 16481: 7,83 + 16487: 8,79 + 16488: 8,78 + 16489: 8,77 + 16878: -44,23 + 17433: -17,-9 + 17434: -17,-10 + 17502: 15,-10 + 17503: 15,-9 + 17504: 15,-8 + 18797: -28,10 + 18798: -28,11 + 18799: -28,11 + 18800: -28,13 + 18801: -28,12 + 18921: -17,4 + 18922: -17,-1 + 18934: -16,0 + 18935: -16,1 + 18936: -16,2 + 18937: -16,3 + 18981: 70,25 + 18982: 70,24 + 18983: 70,23 + 18984: 70,22 + 19000: 60,25 + 19048: -21,-3 + 19049: -21,-2 + 19057: -21,4 + 19058: -21,5 + 19059: -21,6 + 19063: -18,5 + 19064: -18,3 + 19065: -18,2 + 19066: -18,2 + 19067: -18,1 + 19068: -18,0 + 19069: -18,-3 + 19070: -18,-2 + 19071: -18,-4 + 19072: -18,-4 + 19073: -18,-5 + 19074: -18,-6 + 19075: -18,-6 + 19082: -18,8 + 19083: -18,8 + 19084: -18,9 + 19085: -18,10 + 19086: -18,11 + 19087: -18,12 + 19088: -18,12 + 19089: -18,13 + 19090: -18,11 + 19091: -18,10 + 19092: -18,9 + 19093: -18,8 + 19094: -18,11 + 19095: -18,11 + 19096: -18,12 + 19097: -18,13 + 19098: -18,16 + 19099: -18,17 + 19100: -18,18 + 19101: -18,19 + 19102: -18,19 + 19103: -18,20 + 19119: -21,11 + 19120: -21,12 + 19121: -21,17 + 19122: -21,20 + 19123: -21,11 + 19124: -21,12 + 19126: -21,6 + 19127: -21,5 + 19128: -21,4 + 20269: 18,12 + 22850: -32,0 + 22851: -32,-1 + 22852: -32,-5 + 22853: -32,-5 + 22854: -32,-5 + 22855: -32,-6 + 22856: -32,-7 + 22857: -32,-8 + 22858: -32,-8 + 22859: -32,-4 + 22860: -32,-9 + 22861: -28,-12 + 22862: -28,-13 + 22863: -28,-13 + 22864: -28,-14 + 22865: -28,-15 + 22866: -28,-15 + 22867: -28,-16 + 22932: -32,2 + 22967: -35,-15 + 22968: -35,-14 + 22969: -35,-13 + 22970: -35,-12 + 23800: 63,-29 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 900: 28,-7 - 901: 28,-6 - 902: 28,-5 - 903: 28,-4 - 904: 28,-3 - 905: 28,-1 - 906: 28,0 - 918: 30,2 - 927: 28,-2 - 4052: -18,20 - 4053: -18,18 - 4054: -18,19 - 4055: -18,18 - 4056: -18,17 - 4057: -18,16 - 4058: -18,13 - 4059: -18,12 - 4060: -18,11 - 4061: -18,10 - 4062: -18,9 - 4063: -18,8 - 4076: -18,7 - 4077: -18,6 - 4078: -18,6 + 787: 28,-7 + 788: 28,-6 + 789: 28,-5 + 790: 28,-4 + 791: 28,-3 + 792: 28,-1 + 793: 28,0 + 805: 30,2 + 814: 28,-2 + 3902: -18,20 + 3903: -18,18 + 3904: -18,19 + 3905: -18,18 + 3906: -18,17 + 3907: -18,16 + 3908: -18,13 + 3909: -18,12 + 3910: -18,11 + 3911: -18,10 + 3912: -18,9 + 3913: -18,8 + 3926: -18,7 + 3927: -18,6 + 3928: -18,6 - node: color: '#00C9DAFF' id: BrickTileSteelLineN decals: - 8082: 26,-14 - 8083: 27,-14 - 8084: 29,-14 - 8085: 30,-14 - 8086: 28,-14 - 8087: 21,-14 - 8113: 27,-17 - 8114: 29,-17 - 8115: 31,-17 - 8134: 25,-19 + 7928: 26,-14 + 7929: 27,-14 + 7930: 29,-14 + 7931: 30,-14 + 7932: 28,-14 + 7933: 21,-14 + 7959: 27,-17 + 7960: 29,-17 + 7961: 31,-17 + 7980: 25,-19 - node: color: '#00FFFFFF' id: BrickTileSteelLineN decals: - 3740: -27,65 - 3741: -26,65 - 3766: -28,59 - 10166: 37,-27 - 10177: 36,-26 - 10178: 36,-26 - 10591: 70,-50 - 10592: 70,-50 - 15685: 78,3 - 15689: 77,6 - 15690: 78,6 + 3607: -27,65 + 3608: -26,65 + 3633: -28,59 + 10004: 37,-27 + 10015: 36,-26 + 10016: 36,-26 + 10429: 70,-50 + 10430: 70,-50 + 14734: 78,3 + 14738: 77,6 + 14739: 78,6 - node: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 23286: 21,-46 - 23287: 22,-46 - 23288: 23,-46 - 23301: 22,-50 - 23692: 28,-25 - 23693: 28,-25 - 23694: 32,-25 - 23702: 29,-22 - 23703: 30,-22 - 23704: 31,-22 - 23705: 30,-23 + 22292: 21,-46 + 22293: 22,-46 + 22294: 23,-46 + 22307: 22,-50 + 22698: 28,-25 + 22699: 28,-25 + 22700: 32,-25 + 22708: 29,-22 + 22709: 30,-22 + 22710: 31,-22 + 22711: 30,-23 - node: color: '#8BC9DAFF' id: BrickTileSteelLineN decals: - 3921: 19,63 + 3788: 19,63 - node: color: '#8CB7E8FF' id: BrickTileSteelLineN decals: - 9744: 21,-33 - 9745: 21,-31 - 9960: 25,-27 - 9971: 25,-25 - 9981: 28,-25 - 9982: 32,-25 - 9987: 30,-23 - 9995: 30,-22 - 9996: 29,-22 - 9997: 30,-22 - 9998: 31,-22 - 10016: 28,-25 - 10017: 32,-25 - 10067: 22,-50 - 10074: 21,-46 - 10075: 21,-46 - 10076: 22,-46 - 10077: 23,-46 - 10146: 33,-47 + 9582: 21,-33 + 9583: 21,-31 + 9798: 25,-27 + 9809: 25,-25 + 9819: 28,-25 + 9820: 32,-25 + 9825: 30,-23 + 9833: 30,-22 + 9834: 29,-22 + 9835: 30,-22 + 9836: 31,-22 + 9854: 28,-25 + 9855: 32,-25 + 9905: 22,-50 + 9912: 21,-46 + 9913: 21,-46 + 9914: 22,-46 + 9915: 23,-46 + 9984: 33,-47 - node: color: '#B18BDAFF' id: BrickTileSteelLineN decals: - 11859: -29,-33 - 11907: -42,-31 - 11908: -42,-31 - 11909: -38,-31 - 11910: -34,-31 - 11911: -34,-31 - 11986: -46,-24 - 12025: -28,-44 - 12026: -27,-44 - 12027: -26,-44 - 12028: -25,-44 - 12078: -25,-38 - 12100: -29,-43 - 12101: -24,-43 - 12255: -20,-38 - 12256: -19,-38 - 12257: -18,-38 - 16070: -64,-45 - 16071: -66,-46 - 19684: -9,-44 - 19685: -8,-44 - 19686: -8,-44 - 19687: -7,-44 - 19688: -6,-44 + 11312: -29,-33 + 11314: -42,-31 + 11315: -42,-31 + 11316: -38,-31 + 11317: -34,-31 + 11318: -34,-31 + 11325: -46,-24 + 11363: -28,-44 + 11364: -27,-44 + 11365: -26,-44 + 11366: -25,-44 + 11416: -25,-38 + 11438: -29,-43 + 11439: -24,-43 + 11593: -20,-38 + 11594: -19,-38 + 11595: -18,-38 + 15119: -64,-45 + 15120: -66,-46 + 18728: -9,-44 + 18729: -8,-44 + 18730: -8,-44 + 18731: -7,-44 + 18732: -6,-44 - node: color: '#D381C9FF' id: BrickTileSteelLineN decals: - 22749: -20,-38 - 22750: -19,-38 - 22751: -18,-38 + 21755: -20,-38 + 21756: -19,-38 + 21757: -18,-38 - node: color: '#DA8B8BFF' id: BrickTileSteelLineN decals: - 7777: 58,2 - 7778: 62,2 - 7779: 66,2 - 7810: 59,5 - 7811: 57,5 - 7812: 61,5 - 7813: 63,5 - 7814: 65,5 - 7815: 67,5 - 7821: 70,6 - 7831: 58,2 - 7832: 62,2 - 7833: 66,2 - 19210: 69,7 - 19215: 69,9 - 19220: 66,6 - 19221: 62,6 - 19232: 58,6 + 7625: 58,2 + 7626: 62,2 + 7627: 66,2 + 7658: 59,5 + 7659: 57,5 + 7660: 61,5 + 7661: 63,5 + 7662: 65,5 + 7663: 67,5 + 7669: 70,6 + 7679: 58,2 + 7680: 62,2 + 7681: 66,2 + 18254: 69,7 + 18259: 69,9 + 18264: 66,6 + 18265: 62,6 + 18276: 58,6 - node: color: '#DA8BC9FF' id: BrickTileSteelLineN decals: - 3928: 20,63 + 3795: 20,63 - node: color: '#DABC8BFF' id: BrickTileSteelLineN decals: - 3708: 12,73 - 3711: 10,83 - 3716: 10,89 - 3721: 5,91 + 3575: 12,73 + 3578: 10,83 + 3583: 10,89 + 3588: 5,91 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 20224: -24,-1 - 20236: -48,7 - 20238: -48,9 - 20239: -47,9 - 20240: -46,9 - 20253: 4,-83 - 20254: 5,-79 - 20255: 5,-73 - 20256: 5,-63 - 20267: 4,-87 - 20268: 4,-83 - 20319: 9,-77 - 20320: 8,-77 - 20328: 9,-74 - 20349: 4,-58 - 20350: 5,-58 - 20351: 6,-58 - 20373: 12,-30 - 20395: 2,59 - 20415: 1,65 - 20416: 2,65 - 20433: 40,2 - 20434: 40,10 - 20445: 40,13 - 20450: 42,5 - 20451: 43,5 - 20452: 44,5 - 20453: 45,5 - 20467: 36,10 - 20468: 36,12 - 20518: 73,4 - 20557: 46,10 - 20558: 47,10 - 20559: 47,10 - 20560: 48,10 - 20586: 50,1 - 20587: 51,1 - 20588: 51,1 - 20604: 52,32 - 20605: 51,32 - 20606: 53,32 - 20607: 54,32 - 20608: 55,32 - 20609: 56,32 - 20610: 57,32 - 20618: 52,20 - 20621: 57,20 - 20666: 51,14 - 20667: 47,14 - 20679: 52,13 - 20680: 53,13 - 20681: 54,13 - 20682: 55,13 - 20683: 56,13 - 20684: 57,13 - 20685: 57,13 - 20686: 58,13 - 20687: 59,13 - 20688: 51,19 - 20689: 53,19 - 20694: 46,24 - 20761: 53,10 - 20772: 51,9 - 20773: 52,9 - 20774: 54,9 - 20775: 81,10 - 20776: 84,10 - 20777: 85,10 - 20778: 82,14 - 20779: 83,14 - 20780: 85,14 - 20781: 86,14 - 20782: 88,14 - 20783: 89,14 - 20784: 90,14 - 20785: 87,14 - 20786: 84,14 - 20799: 91,15 - 20800: 92,15 - 20801: 93,15 - 20826: 82,10 - 20838: 77,10 - 20898: 73,20 - 20905: 73,23 - 20906: 74,23 - 20923: 75,24 - 20936: 69,1 - 20937: 70,1 - 20942: 65,-2 - 20956: 70,-3 - 20968: 52,-2 - 20969: 61,-2 - 20970: 47,-2 - 20976: 47,-2 - 20992: 51,-3 - 21030: 36,7 - 21031: 35,3 - 21038: 34,6 - 21039: 35,6 - 21040: 37,6 - 21120: -19,-24 - 21121: -18,-24 - 21135: 48,-7 - 21136: 49,-7 - 21137: 50,-7 - 21138: 46,-3 - 21145: 51,-6 - 21152: 47,-7 - 21164: 57,-3 - 21166: 56,-2 - 21177: 51,1 - 21178: 50,1 - 21179: 52,1 - 21180: 53,1 - 21181: 54,1 - 21182: 55,1 - 21183: 56,1 - 21184: 57,1 - 21185: 59,1 - 21186: 60,1 - 21187: 61,1 - 21188: 63,1 - 21189: 64,1 - 21190: 64,1 - 21191: 65,1 - 21192: 67,1 - 21310: 22,22 - 21311: 23,22 - 21312: 24,22 - 21313: 25,22 - 21314: 26,22 - 21315: 27,22 - 21915: 13,33 - 23069: 11,-29 - 23070: 13,-29 - 23820: 3,58 - 23821: 1,58 + 19230: -24,-1 + 19242: -48,7 + 19244: -48,9 + 19245: -47,9 + 19246: -46,9 + 19259: 4,-83 + 19260: 5,-79 + 19261: 5,-73 + 19262: 5,-63 + 19273: 4,-87 + 19274: 4,-83 + 19325: 9,-77 + 19326: 8,-77 + 19334: 9,-74 + 19355: 4,-58 + 19356: 5,-58 + 19357: 6,-58 + 19379: 12,-30 + 19401: 2,59 + 19421: 1,65 + 19422: 2,65 + 19439: 40,2 + 19440: 40,10 + 19451: 40,13 + 19456: 42,5 + 19457: 43,5 + 19458: 44,5 + 19459: 45,5 + 19473: 36,10 + 19474: 36,12 + 19524: 73,4 + 19563: 46,10 + 19564: 47,10 + 19565: 47,10 + 19566: 48,10 + 19592: 50,1 + 19593: 51,1 + 19594: 51,1 + 19610: 52,32 + 19611: 51,32 + 19612: 53,32 + 19613: 54,32 + 19614: 55,32 + 19615: 56,32 + 19616: 57,32 + 19624: 52,20 + 19627: 57,20 + 19672: 51,14 + 19673: 47,14 + 19685: 52,13 + 19686: 53,13 + 19687: 54,13 + 19688: 55,13 + 19689: 56,13 + 19690: 57,13 + 19691: 57,13 + 19692: 58,13 + 19693: 59,13 + 19694: 51,19 + 19695: 53,19 + 19700: 46,24 + 19767: 53,10 + 19778: 51,9 + 19779: 52,9 + 19780: 54,9 + 19781: 81,10 + 19782: 84,10 + 19783: 85,10 + 19784: 82,14 + 19785: 83,14 + 19786: 85,14 + 19787: 86,14 + 19788: 88,14 + 19789: 89,14 + 19790: 90,14 + 19791: 87,14 + 19792: 84,14 + 19805: 91,15 + 19806: 92,15 + 19807: 93,15 + 19832: 82,10 + 19844: 77,10 + 19904: 73,20 + 19911: 73,23 + 19912: 74,23 + 19929: 75,24 + 19942: 69,1 + 19943: 70,1 + 19948: 65,-2 + 19962: 70,-3 + 19974: 52,-2 + 19975: 61,-2 + 19976: 47,-2 + 19982: 47,-2 + 19998: 51,-3 + 20036: 36,7 + 20037: 35,3 + 20044: 34,6 + 20045: 35,6 + 20046: 37,6 + 20126: -19,-24 + 20127: -18,-24 + 20141: 48,-7 + 20142: 49,-7 + 20143: 50,-7 + 20144: 46,-3 + 20151: 51,-6 + 20158: 47,-7 + 20170: 57,-3 + 20172: 56,-2 + 20183: 51,1 + 20184: 50,1 + 20185: 52,1 + 20186: 53,1 + 20187: 54,1 + 20188: 55,1 + 20189: 56,1 + 20190: 57,1 + 20191: 59,1 + 20192: 60,1 + 20193: 61,1 + 20194: 63,1 + 20195: 64,1 + 20196: 64,1 + 20197: 65,1 + 20198: 67,1 + 20316: 22,22 + 20317: 23,22 + 20318: 24,22 + 20319: 25,22 + 20320: 26,22 + 20321: 27,22 + 20921: 13,33 + 22075: 11,-29 + 22076: 13,-29 + 22826: 3,58 + 22827: 1,58 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2227: -20,54 - 2228: -19,54 - 2229: -18,54 - 2234: -16,52 - 2235: -22,52 - 2236: -22,52 - 2310: -24,39 - 2311: -25,39 - 2312: -26,39 - 2313: -27,39 - 2376: -31,32 - 2394: -32,37 - 2733: -13,50 - 2734: -11,50 - 2735: -10,50 - 2736: -9,50 - 2737: -8,50 - 2738: -7,50 - 2739: -5,50 - 2740: -4,50 - 2755: -2,48 - 2786: -3,46 - 2790: -4,47 - 2804: -6,28 - 2817: -27,43 - 2818: -28,43 - 2819: -29,43 - 2831: -31,43 - 2838: -30,39 - 3046: -20,54 - 3047: -19,54 - 3048: -18,54 - 3049: 1,59 - 3053: -1,55 - 3056: 1,55 - 3057: 2,55 - 3058: 1,58 - 3059: 0,58 - 3060: -1,58 - 3066: -16,58 - 3067: -15,58 - 3068: -14,58 - 3069: -13,58 - 3070: -12,58 - 3071: -11,58 - 3072: -10,58 - 3073: -9,58 - 3074: -8,58 - 3353: -28,69 - 3354: -27,69 - 3355: -26,69 - 3356: -25,69 - 3357: -24,69 - 3358: -23,69 - 3359: -21,69 - 3360: -21,69 - 3361: -22,69 - 3362: -19,69 - 3363: -20,69 - 3364: -18,69 - 3365: -17,69 - 3366: -16,69 - 3367: -15,69 - 3368: -14,69 - 3411: -10,69 - 3412: -9,69 - 3413: -8,69 - 3414: -8,69 - 3415: -7,69 - 3416: -5,69 - 3417: -6,69 - 3418: -5,69 - 3419: -4,69 - 3420: -3,69 - 3438: -2,58 - 3450: 6,66 - 3542: -2,69 - 3543: -1,69 - 3544: 0,69 - 3545: 1,69 - 3546: 2,69 - 3547: 3,69 - 3548: 4,69 - 3571: -9,77 - 3573: -15,77 - 3583: -15,84 - 3584: -9,84 - 3593: -33,84 - 3594: -27,84 - 3604: -33,77 - 3605: -27,77 - 3610: 6,71 - 3665: 3,84 - 3668: 3,77 - 3681: 6,66 - 3725: -25,66 - 3731: -30,66 - 5106: 31,29 - 5109: 30,32 - 5110: 31,32 - 5111: 32,32 - 5112: 33,32 - 5113: 34,32 - 5121: 35,29 - 5357: 14,-8 - 5358: 13,-8 - 5359: 9,-8 - 5360: 7,-8 - 5361: 6,-8 - 5362: 2,-8 - 5363: 1,-8 - 5364: -2,-8 - 5365: -3,-8 - 5366: -3,-8 - 5367: -4,-8 - 5368: -5,-8 - 5369: -6,-8 - 5370: -11,-8 - 5371: -12,-8 - 5372: -14,-8 - 5373: -15,-8 - 5374: -16,-8 - 5375: -16,-8 - 5424: -29,6 - 5425: -28,6 - 5426: -28,6 - 5427: -27,6 - 5428: -27,6 - 5429: -24,6 - 5430: -24,6 - 5431: -23,6 - 5432: -23,6 - 5433: -22,6 - 5434: -22,6 - 5455: -39,6 - 5456: -38,6 - 5457: -37,6 - 5458: -35,6 - 5459: -34,6 - 5460: -34,6 - 5461: -33,6 - 5462: -32,6 - 5465: -30,6 - 5470: -41,23 - 5517: -20,7 - 5518: -19,7 - 5519: -18,7 - 5536: -20,-7 - 5537: -19,-7 - 5538: -18,-7 - 5604: 12,-8 - 5605: 5,-8 - 5606: 0,-8 - 5607: -7,-8 - 5608: -8,-8 - 5609: -9,-8 - 5610: -13,-8 - 5767: 9,-4 - 5768: 10,-4 - 5769: 11,-4 - 5774: 13,-4 - 5775: 14,-4 - 5786: 8,-4 - 5791: 10,-7 - 5792: 11,-7 - 5793: 8,-7 - 6077: -13,-18 - 6078: -12,-18 - 6079: -11,-18 - 6085: -10,-19 - 6086: -9,-19 - 6087: -7,-19 - 6088: -6,-19 - 6089: -5,-19 - 6090: -2,-19 - 6091: -1,-19 - 6092: 0,-19 - 6093: 2,-19 - 6094: 4,-19 - 6095: 5,-19 - 6096: 6,-19 - 6097: 3,-19 - 6098: 7,-19 - 6099: 9,-19 - 6100: 10,-19 - 6101: 11,-19 - 6117: 16,-7 - 6118: 17,-7 - 6119: 18,-7 - 6130: 16,7 - 6131: 17,7 - 6132: 18,7 - 6133: -14,-19 - 6134: -15,-19 - 6135: -16,-19 - 6246: -5,-14 - 6259: -4,-18 - 6327: 3,-14 - 6364: 8,-18 - 6381: 12,-18 - 6382: 13,-18 - 6383: 14,-18 - 6397: 13,-15 - 6398: 13,-15 - 6626: -33,3 - 6627: -32,3 - 6696: -23,3 - 6800: -42,2 - 6885: -36,7 - 6893: -36,17 - 6894: -36,17 - 6901: -36,19 - 6902: -36,19 - 6905: -26,7 - 6906: -25,7 - 6916: -23,15 - 7022: 20,6 - 7023: 21,6 - 7029: 23,6 - 7030: 24,6 - 7031: 25,6 - 7058: 21,10 - 7059: 23,10 - 7065: 22,7 - 7077: 20,-10 - 7078: 21,-10 - 7079: 23,-10 - 7080: 24,-10 - 7081: 25,-10 - 7106: 27,-10 - 7107: 28,-10 - 7108: 29,-10 - 7109: 31,-10 - 7110: 30,-10 - 7117: 22,3 - 7135: 26,2 - 7136: 27,2 - 7137: 28,2 - 7138: 29,2 - 7142: 25,-7 - 7143: 27,-7 - 7144: 26,-7 - 7154: 30,-7 - 7155: 29,-7 - 7174: 30,3 - 7181: 27,6 - 7182: 28,6 - 7183: 30,6 - 7184: 31,6 - 7296: 29,12 - 7297: 30,12 - 7298: 31,12 - 7299: 31,12 - 7300: 32,12 - 7972: 79,-19 - 7973: 81,-19 - 7974: 80,-19 - 7975: 80,-19 - 7976: 77,-19 - 7977: 77,-19 - 7982: 77,-22 - 7999: 65,-22 - 8001: 65,-19 - 8081: 25,-13 - 8279: 41,-8 - 8280: 41,-8 - 8281: 40,-8 - 8282: 39,-8 - 8283: 38,-8 - 8284: 34,-8 - 8285: 34,-8 - 8286: 35,-8 - 8287: 37,-8 - 8288: 36,-8 - 8327: 39,-18 - 8328: 41,-18 - 8336: 40,-19 - 8370: 43,-19 - 8371: 44,-19 - 8372: 45,-19 - 8373: 45,-19 - 8374: 48,-19 - 8375: 49,-19 - 8376: 49,-19 - 8377: 50,-19 - 8378: 50,-19 - 8379: 50,-19 - 8380: 50,-19 - 8381: 51,-19 - 8382: 51,-19 - 8383: 53,-19 - 8384: 53,-19 - 8404: 44,-22 - 8405: 44,-22 - 8406: 48,-22 - 8407: 48,-22 - 8408: 52,-22 - 8633: 62,-10 - 8634: 57,-10 - 8637: 58,-11 - 8638: 59,-11 - 8639: 60,-11 - 8640: 56,-10 - 8771: -14,-22 - 8772: -13,-22 - 8773: -7,-22 - 8774: -7,-22 - 8775: -6,-22 - 8776: -2,-22 - 8777: -2,-22 - 8778: -1,-22 - 8779: 0,-22 - 8780: 4,-22 - 8781: 5,-22 - 8782: 11,-22 - 8783: 12,-22 - 8802: -2,-29 - 8803: -1,-29 - 8804: 0,-29 - 8849: -2,-37 - 8850: -1,-37 - 8851: 0,-37 - 8852: 0,-37 - 8897: -12,-24 - 8898: -11,-24 - 8899: -11,-24 - 8900: -10,-24 - 8901: -10,-24 - 8902: -9,-24 - 8903: -8,-24 - 8904: -15,-24 - 8905: -5,-24 - 8906: -4,-24 - 8948: -4,-24 - 9138: 1,-64 - 9139: 1,-64 - 9168: -8,-64 - 9169: -8,-64 - 9170: -7,-64 - 9171: -7,-64 - 9172: -6,-64 - 9173: -6,-64 - 9174: -5,-64 - 9175: -5,-64 - 9176: -4,-64 - 9177: -4,-64 - 9178: -3,-64 - 9179: -9,-64 - 9235: -8,-75 - 9236: -7,-75 - 9237: -6,-75 - 9238: -2,-75 - 9239: -1,-75 - 9240: -3,-75 - 9241: -8,-69 - 9242: -8,-69 - 9243: -1,-69 - 9265: -2,-63 - 9266: -1,-63 - 9267: 0,-63 - 9350: -2,-57 - 9351: -1,-57 - 9352: -1,-57 - 9353: 0,-57 - 9415: -40,-14 - 9416: -41,-14 - 9417: -41,-14 - 10308: 3,-50 - 10309: 4,-50 - 10310: 4,-50 - 10311: 8,-50 - 10312: 9,-50 - 10313: 9,-50 - 10314: 10,-50 - 10315: 11,-50 - 10496: 4,-87 - 10521: 55,-43 - 10545: 44,-38 - 10546: 45,-38 - 10547: 46,-38 - 10548: 47,-38 - 10549: 48,-38 - 10574: 45,-46 - 11228: -77,-23 - 11245: -11,-79 - 11246: -6,-83 - 11247: -4,-83 - 11249: 2,-83 - 11254: -6,-87 - 11255: -4,-87 - 11256: 2,-87 - 11257: 2,-87 - 11334: -14,-30 - 11337: -15,-33 - 11338: -13,-33 - 11565: -15,-33 - 11566: -13,-33 - 11749: -39,-57 - 11750: -41,-51 - 11751: -41,-51 - 11752: -40,-51 - 11753: -40,-51 - 11754: -38,-51 - 11755: -38,-51 - 11779: -25,-50 - 12697: 5,70 - 12698: 6,70 - 12699: 7,70 - 12700: -7,66 - 12701: -6,66 - 12702: -5,66 - 12703: -4,66 - 12704: -3,66 - 12732: -7,59 - 12733: -6,59 - 12734: -4,59 - 12735: -4,59 - 12736: -3,59 - 12737: -5,59 - 12738: -20,59 - 12739: -21,59 - 12740: -19,59 - 12741: -19,59 - 12742: -17,59 - 12743: -18,59 - 12763: -13,70 - 12764: -12,70 - 12765: -11,70 - 12766: -29,70 - 12767: -30,70 - 12768: -31,70 - 12769: -21,66 - 12770: -20,66 - 12771: -19,66 - 12772: -18,66 - 12773: -18,66 - 12774: -17,66 - 12775: -17,66 - 13323: -37,-64 - 14362: -17,24 - 14363: -16,24 - 14364: -15,24 - 14365: -14,24 - 14366: -13,24 - 14367: -12,24 - 14368: -11,24 - 14369: -10,24 - 14826: -7,24 - 14827: -6,24 - 14828: -5,24 - 14829: -4,24 - 14830: -3,24 - 14831: -2,24 - 14832: -1,24 - 14833: 1,24 - 14834: 2,24 - 14835: 3,24 - 14842: 9,24 - 14843: 10,24 - 14844: 11,24 - 14845: 12,24 - 14846: 12,24 - 14847: 13,24 - 14848: 17,24 - 14849: 18,24 - 14870: -20,21 - 14871: -19,21 - 14872: -18,21 - 14939: 16,21 - 14940: 17,21 - 14941: 18,21 - 15270: -5,-75 - 15271: -4,-75 - 15319: -43,7 - 15320: -42,7 - 15321: -41,7 - 15498: 77,2 - 15696: 79,2 - 15697: 80,2 - 15698: 81,2 - 15699: 82,2 - 15700: 83,2 - 15701: 87,2 - 15702: 88,2 - 15703: 89,2 - 15705: 81,-1 - 15706: 85,-1 - 15707: 89,-1 - 15708: 84,2 - 15709: 85,2 - 15710: 86,2 - 16304: -60,-48 - 16595: -60,-12 - 16596: -59,-12 - 16597: -57,-12 - 16623: -56,-12 - 16627: -58,-11 - 16630: -56,-19 - 16633: -56,-19 - 16634: -54,-19 - 16640: -61,-17 - 16684: -58,-5 - 16717: -53,3 - 16718: -52,3 - 16719: -53,7 - 16720: -52,7 - 16731: -53,3 - 16732: -52,3 - 16735: -53,7 - 16736: -52,7 - 16748: -50,-1 - 17831: -45,23 - 18332: -60,-44 - 18341: -60,-44 - 18370: -13,-12 - 18371: -13,-12 - 18372: -15,-12 - 18373: -11,-12 - 18374: -12,-12 - 18404: -14,-11 - 18405: -10,-11 - 18438: 8,-11 - 18440: 7,-12 - 18441: 9,-12 - 18701: 4,-8 - 18702: 3,-8 - 19807: -27,9 - 19808: -26,9 - 19809: -25,9 - 19810: -25,9 - 19811: -24,9 - 19812: -24,9 - 19817: -24,15 - 19818: -28,15 - 19819: -27,15 - 19933: -16,4 - 19973: 70,26 - 19974: 69,26 - 20001: 63,26 - 20002: 68,26 - 20070: -20,-7 - 20071: -19,-7 - 20072: -18,-7 - 20073: -20,7 - 20074: -19,7 - 20075: -18,7 - 21265: 22,10 - 21808: -43,23 - 22502: 32,6 - 22525: 13,-8 - 23862: -28,-17 - 23890: -31,-2 - 23891: -30,-2 - 23892: -29,-2 - 23893: -28,-2 - 23894: -27,-2 - 23895: -26,-2 - 23896: -26,-2 - 23897: -25,-2 - 23898: -23,-2 - 23899: -22,-2 - 23905: -33,-10 - 23906: -32,-10 - 23939: -28,-17 - 23942: -31,-11 - 23943: -30,-11 - 23944: -29,-11 - 23945: -34,-16 - 23946: -33,-16 - 23947: -32,-16 - 23948: -31,-16 - 23967: -34,-11 + 2105: -20,54 + 2106: -19,54 + 2107: -18,54 + 2112: -16,52 + 2113: -22,52 + 2114: -22,52 + 2187: -24,39 + 2188: -25,39 + 2189: -26,39 + 2190: -27,39 + 2253: -31,32 + 2271: -32,37 + 2610: -13,50 + 2611: -11,50 + 2612: -10,50 + 2613: -9,50 + 2614: -8,50 + 2615: -7,50 + 2616: -5,50 + 2617: -4,50 + 2632: -2,48 + 2663: -3,46 + 2667: -4,47 + 2681: -6,28 + 2694: -27,43 + 2695: -28,43 + 2696: -29,43 + 2708: -31,43 + 2715: -30,39 + 2923: -20,54 + 2924: -19,54 + 2925: -18,54 + 2926: 1,59 + 2930: -1,55 + 2933: 1,55 + 2934: 2,55 + 2935: 1,58 + 2936: 0,58 + 2937: -1,58 + 2943: -16,58 + 2944: -15,58 + 2945: -14,58 + 2946: -13,58 + 2947: -12,58 + 2948: -11,58 + 2949: -10,58 + 2950: -9,58 + 2951: -8,58 + 3226: -28,69 + 3227: -26,69 + 3228: -25,69 + 3229: -24,69 + 3230: -23,69 + 3231: -21,69 + 3232: -21,69 + 3233: -22,69 + 3234: -19,69 + 3235: -20,69 + 3236: -18,69 + 3237: -17,69 + 3238: -16,69 + 3239: -15,69 + 3240: -14,69 + 3282: -10,69 + 3283: -9,69 + 3284: -8,69 + 3285: -8,69 + 3286: -7,69 + 3287: -5,69 + 3288: -6,69 + 3289: -5,69 + 3290: -4,69 + 3291: -3,69 + 3309: -2,58 + 3321: 6,66 + 3409: -2,69 + 3410: -1,69 + 3411: 0,69 + 3412: 1,69 + 3413: 2,69 + 3414: 3,69 + 3415: 4,69 + 3438: -9,77 + 3440: -15,77 + 3450: -15,84 + 3451: -9,84 + 3460: -33,84 + 3461: -27,84 + 3471: -33,77 + 3472: -27,77 + 3477: 6,71 + 3532: 3,84 + 3535: 3,77 + 3548: 6,66 + 3592: -25,66 + 3598: -30,66 + 4956: 31,29 + 4959: 30,32 + 4960: 31,32 + 4961: 32,32 + 4962: 33,32 + 4963: 34,32 + 4971: 35,29 + 5205: 14,-8 + 5206: 13,-8 + 5207: 9,-8 + 5208: 7,-8 + 5209: 6,-8 + 5210: 2,-8 + 5211: 1,-8 + 5212: -2,-8 + 5213: -3,-8 + 5214: -3,-8 + 5215: -4,-8 + 5216: -5,-8 + 5217: -6,-8 + 5218: -11,-8 + 5219: -12,-8 + 5220: -14,-8 + 5221: -15,-8 + 5222: -16,-8 + 5223: -16,-8 + 5272: -29,6 + 5273: -28,6 + 5274: -28,6 + 5275: -27,6 + 5276: -27,6 + 5277: -24,6 + 5278: -24,6 + 5279: -23,6 + 5280: -23,6 + 5281: -22,6 + 5282: -22,6 + 5303: -39,6 + 5304: -38,6 + 5305: -37,6 + 5306: -35,6 + 5307: -34,6 + 5308: -34,6 + 5309: -33,6 + 5310: -32,6 + 5313: -30,6 + 5318: -41,23 + 5365: -20,7 + 5366: -19,7 + 5367: -18,7 + 5384: -20,-7 + 5385: -19,-7 + 5386: -18,-7 + 5452: 12,-8 + 5453: 5,-8 + 5454: 0,-8 + 5455: -7,-8 + 5456: -8,-8 + 5457: -9,-8 + 5458: -13,-8 + 5615: 9,-4 + 5616: 10,-4 + 5617: 11,-4 + 5622: 13,-4 + 5623: 14,-4 + 5634: 8,-4 + 5639: 10,-7 + 5640: 11,-7 + 5641: 8,-7 + 5925: -13,-18 + 5926: -12,-18 + 5927: -11,-18 + 5933: -10,-19 + 5934: -9,-19 + 5935: -7,-19 + 5936: -6,-19 + 5937: -5,-19 + 5938: -2,-19 + 5939: -1,-19 + 5940: 0,-19 + 5941: 2,-19 + 5942: 4,-19 + 5943: 5,-19 + 5944: 6,-19 + 5945: 3,-19 + 5946: 7,-19 + 5947: 9,-19 + 5948: 10,-19 + 5949: 11,-19 + 5965: 16,-7 + 5966: 17,-7 + 5967: 18,-7 + 5978: 16,7 + 5979: 17,7 + 5980: 18,7 + 5981: -14,-19 + 5982: -15,-19 + 5983: -16,-19 + 6094: -5,-14 + 6107: -4,-18 + 6175: 3,-14 + 6212: 8,-18 + 6229: 12,-18 + 6230: 13,-18 + 6231: 14,-18 + 6245: 13,-15 + 6246: 13,-15 + 6474: -33,3 + 6475: -32,3 + 6544: -23,3 + 6648: -42,2 + 6733: -36,7 + 6741: -36,17 + 6742: -36,17 + 6749: -36,19 + 6750: -36,19 + 6753: -26,7 + 6754: -25,7 + 6764: -23,15 + 6870: 20,6 + 6871: 21,6 + 6877: 23,6 + 6878: 24,6 + 6879: 25,6 + 6906: 21,10 + 6907: 23,10 + 6913: 22,7 + 6925: 20,-10 + 6926: 21,-10 + 6927: 23,-10 + 6928: 24,-10 + 6929: 25,-10 + 6954: 27,-10 + 6955: 28,-10 + 6956: 29,-10 + 6957: 31,-10 + 6958: 30,-10 + 6965: 22,3 + 6983: 26,2 + 6984: 27,2 + 6985: 28,2 + 6986: 29,2 + 6990: 25,-7 + 6991: 27,-7 + 6992: 26,-7 + 7002: 30,-7 + 7003: 29,-7 + 7022: 30,3 + 7029: 27,6 + 7030: 28,6 + 7031: 30,6 + 7032: 31,6 + 7144: 29,12 + 7145: 30,12 + 7146: 31,12 + 7147: 31,12 + 7148: 32,12 + 7820: 79,-19 + 7821: 81,-19 + 7822: 80,-19 + 7823: 80,-19 + 7824: 77,-19 + 7825: 77,-19 + 7830: 77,-22 + 7847: 65,-22 + 7849: 65,-19 + 7927: 25,-13 + 8125: 41,-8 + 8126: 41,-8 + 8127: 40,-8 + 8128: 39,-8 + 8129: 38,-8 + 8130: 34,-8 + 8131: 34,-8 + 8132: 35,-8 + 8133: 37,-8 + 8134: 36,-8 + 8173: 39,-18 + 8174: 41,-18 + 8182: 40,-19 + 8216: 43,-19 + 8217: 44,-19 + 8218: 45,-19 + 8219: 45,-19 + 8220: 48,-19 + 8221: 49,-19 + 8222: 49,-19 + 8223: 50,-19 + 8224: 50,-19 + 8225: 50,-19 + 8226: 50,-19 + 8227: 51,-19 + 8228: 51,-19 + 8229: 53,-19 + 8230: 53,-19 + 8250: 44,-22 + 8251: 44,-22 + 8252: 48,-22 + 8253: 48,-22 + 8254: 52,-22 + 8472: 57,-10 + 8475: 58,-11 + 8476: 59,-11 + 8477: 60,-11 + 8478: 56,-10 + 8609: -14,-22 + 8610: -13,-22 + 8611: -7,-22 + 8612: -7,-22 + 8613: -6,-22 + 8614: -2,-22 + 8615: -2,-22 + 8616: -1,-22 + 8617: 0,-22 + 8618: 4,-22 + 8619: 5,-22 + 8620: 11,-22 + 8621: 12,-22 + 8640: -2,-29 + 8641: -1,-29 + 8642: 0,-29 + 8687: -2,-37 + 8688: -1,-37 + 8689: 0,-37 + 8690: 0,-37 + 8735: -12,-24 + 8736: -11,-24 + 8737: -11,-24 + 8738: -10,-24 + 8739: -10,-24 + 8740: -9,-24 + 8741: -8,-24 + 8742: -15,-24 + 8743: -5,-24 + 8744: -4,-24 + 8786: -4,-24 + 8976: 1,-64 + 8977: 1,-64 + 9006: -8,-64 + 9007: -8,-64 + 9008: -7,-64 + 9009: -7,-64 + 9010: -6,-64 + 9011: -6,-64 + 9012: -5,-64 + 9013: -5,-64 + 9014: -4,-64 + 9015: -4,-64 + 9016: -3,-64 + 9017: -9,-64 + 9073: -8,-75 + 9074: -7,-75 + 9075: -6,-75 + 9076: -2,-75 + 9077: -1,-75 + 9078: -3,-75 + 9079: -8,-69 + 9080: -8,-69 + 9081: -1,-69 + 9103: -2,-63 + 9104: -1,-63 + 9105: 0,-63 + 9188: -2,-57 + 9189: -1,-57 + 9190: -1,-57 + 9191: 0,-57 + 9253: -40,-14 + 9254: -41,-14 + 9255: -41,-14 + 10146: 3,-50 + 10147: 4,-50 + 10148: 4,-50 + 10149: 8,-50 + 10150: 9,-50 + 10151: 9,-50 + 10152: 10,-50 + 10153: 11,-50 + 10334: 4,-87 + 10359: 55,-43 + 10383: 44,-38 + 10384: 45,-38 + 10385: 46,-38 + 10386: 47,-38 + 10387: 48,-38 + 10412: 45,-46 + 10725: -77,-23 + 10742: -11,-79 + 10743: -6,-83 + 10744: -4,-83 + 10746: 2,-83 + 10751: -6,-87 + 10752: -4,-87 + 10753: 2,-87 + 10754: 2,-87 + 10831: -14,-30 + 10834: -15,-33 + 10835: -13,-33 + 11062: -15,-33 + 11063: -13,-33 + 11234: -39,-57 + 11235: -41,-51 + 11236: -41,-51 + 11237: -40,-51 + 11238: -40,-51 + 11239: -38,-51 + 11240: -38,-51 + 11264: -25,-50 + 12015: 5,70 + 12016: 6,70 + 12017: 7,70 + 12018: -7,66 + 12019: -6,66 + 12020: -5,66 + 12021: -4,66 + 12022: -3,66 + 12047: -7,59 + 12048: -6,59 + 12049: -4,59 + 12050: -4,59 + 12051: -3,59 + 12052: -20,59 + 12053: -21,59 + 12054: -19,59 + 12055: -19,59 + 12056: -17,59 + 12057: -18,59 + 12077: -13,70 + 12078: -12,70 + 12079: -11,70 + 12080: -29,70 + 12081: -30,70 + 12082: -31,70 + 12083: -21,66 + 12084: -20,66 + 12085: -19,66 + 12086: -18,66 + 12087: -18,66 + 12088: -17,66 + 12089: -17,66 + 12379: -37,-64 + 13418: -17,24 + 13419: -16,24 + 13420: -15,24 + 13421: -14,24 + 13422: -13,24 + 13423: -12,24 + 13424: -11,24 + 13425: -10,24 + 13882: -7,24 + 13883: -6,24 + 13884: -5,24 + 13885: -4,24 + 13886: -3,24 + 13887: -2,24 + 13888: -1,24 + 13889: 1,24 + 13890: 2,24 + 13891: 3,24 + 13898: 9,24 + 13899: 10,24 + 13900: 11,24 + 13901: 12,24 + 13902: 12,24 + 13903: 13,24 + 13904: 17,24 + 13905: 18,24 + 13926: -20,21 + 13927: -19,21 + 13928: -18,21 + 13995: 16,21 + 13996: 17,21 + 13997: 18,21 + 14326: -5,-75 + 14327: -4,-75 + 14368: -43,7 + 14369: -42,7 + 14370: -41,7 + 14547: 77,2 + 14745: 79,2 + 14746: 80,2 + 14747: 81,2 + 14748: 82,2 + 14749: 83,2 + 14750: 87,2 + 14751: 88,2 + 14752: 89,2 + 14754: 81,-1 + 14755: 85,-1 + 14756: 89,-1 + 14757: 84,2 + 14758: 85,2 + 14759: 86,2 + 15353: -60,-48 + 15644: -60,-12 + 15645: -59,-12 + 15646: -57,-12 + 15672: -56,-12 + 15676: -58,-11 + 15679: -56,-19 + 15682: -56,-19 + 15683: -54,-19 + 15689: -61,-17 + 15733: -58,-5 + 15766: -53,3 + 15767: -52,3 + 15768: -53,7 + 15769: -52,7 + 15780: -53,3 + 15781: -52,3 + 15784: -53,7 + 15785: -52,7 + 15797: -50,-1 + 16880: -45,23 + 17381: -60,-44 + 17390: -60,-44 + 17419: -13,-12 + 17420: -13,-12 + 17421: -15,-12 + 17422: -11,-12 + 17423: -12,-12 + 17453: -14,-11 + 17454: -10,-11 + 17487: 8,-11 + 17489: 7,-12 + 17490: 9,-12 + 17745: 4,-8 + 17746: 3,-8 + 18813: -27,9 + 18814: -26,9 + 18815: -25,9 + 18816: -25,9 + 18817: -24,9 + 18818: -24,9 + 18823: -24,15 + 18824: -28,15 + 18825: -27,15 + 18939: -16,4 + 18979: 70,26 + 18980: 69,26 + 19007: 63,26 + 19008: 68,26 + 19076: -20,-7 + 19077: -19,-7 + 19078: -18,-7 + 19079: -20,7 + 19080: -19,7 + 19081: -18,7 + 20271: 22,10 + 20814: -43,23 + 21508: 32,6 + 21531: 13,-8 + 22868: -28,-17 + 22896: -31,-2 + 22897: -30,-2 + 22898: -29,-2 + 22899: -28,-2 + 22900: -27,-2 + 22901: -26,-2 + 22902: -26,-2 + 22903: -25,-2 + 22904: -23,-2 + 22905: -22,-2 + 22911: -33,-10 + 22912: -32,-10 + 22945: -28,-17 + 22948: -31,-11 + 22949: -30,-11 + 22950: -29,-11 + 22951: -34,-16 + 22952: -33,-16 + 22953: -32,-16 + 22954: -31,-16 + 22973: -34,-11 + 23777: -27,69 + 23793: -5,59 + 23797: 62,-10 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 896: 25,-2 - 897: 26,-2 - 916: 29,1 - 925: 27,-2 - 4049: -20,25 - 4050: -19,25 - 4051: -18,25 - 4117: 4,25 - 4118: 5,25 - 4119: 7,25 - 4120: 8,25 + 783: 25,-2 + 784: 26,-2 + 803: 29,1 + 812: 27,-2 + 3899: -20,25 + 3900: -19,25 + 3901: -18,25 + 3967: 4,25 + 3968: 5,25 + 3969: 7,25 + 3970: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineS decals: - 8095: 21,-16 - 8096: 26,-16 - 8097: 28,-16 - 8103: 25,-13 - 8105: 30,-16 - 8110: 27,-17 - 8111: 29,-17 - 8112: 31,-17 + 7941: 21,-16 + 7942: 26,-16 + 7943: 28,-16 + 7949: 25,-13 + 7951: 30,-16 + 7956: 27,-17 + 7957: 29,-17 + 7958: 31,-17 - node: color: '#00FFFFFF' id: BrickTileSteelLineS decals: - 3733: -25,65 - 3744: -25,66 - 3764: -27,60 - 10167: 37,-25 - 10176: 36,-26 - 10590: 70,-50 - 15681: 77,4 - 15682: 77,4 + 3600: -25,65 + 3611: -25,66 + 3631: -27,60 + 10005: 37,-25 + 10014: 36,-26 + 10428: 70,-50 + 14730: 77,4 + 14731: 77,4 - node: color: '#52B4E9FF' id: BrickTileSteelLineS decals: - 23298: 21,-49 - 23299: 23,-49 + 22304: 21,-49 + 22305: 23,-49 - node: color: '#8BC9DAFF' id: BrickTileSteelLineS decals: - 3684: 6,66 - 3925: 20,61 + 3551: 6,66 + 3792: 20,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineS decals: - 10065: 21,-49 - 10066: 23,-49 - 10140: 33,-53 + 9903: 21,-49 + 9904: 23,-49 + 9978: 33,-53 - node: color: '#A9DA8BFF' id: BrickTileSteelLineS decals: - 2861: -25,47 + 2738: -25,47 - node: color: '#B18BDAFF' id: BrickTileSteelLineS decals: - 11912: -42,-25 - 11913: -38,-25 - 11914: -34,-25 - 11962: -46,-24 - 12015: -28,-47 - 12016: -27,-47 - 12017: -26,-47 - 12018: -25,-47 - 12031: -29,-43 - 12032: -24,-43 - 12077: -25,-42 - 12094: -29,-37 - 12095: -24,-37 - 16063: -65,-48 - 16064: -64,-48 - 16065: -62,-48 - 19689: -9,-40 - 19690: -8,-40 - 19691: -7,-40 - 19692: -7,-40 - 19693: -6,-40 - 19714: -9,-39 - 19715: -8,-39 - 19716: -8,-39 - 19717: -7,-39 - 19718: -6,-39 - 19721: -9,-40 - 19722: -8,-40 - 19723: -7,-40 - 19724: -7,-40 - 19725: -6,-40 + 11319: -42,-25 + 11320: -38,-25 + 11321: -34,-25 + 11324: -46,-24 + 11353: -28,-47 + 11354: -27,-47 + 11355: -26,-47 + 11356: -25,-47 + 11369: -29,-43 + 11370: -24,-43 + 11415: -25,-42 + 11432: -29,-37 + 11433: -24,-37 + 15112: -65,-48 + 15113: -64,-48 + 15114: -62,-48 + 18733: -9,-40 + 18734: -8,-40 + 18735: -7,-40 + 18736: -7,-40 + 18737: -6,-40 + 18758: -9,-39 + 18759: -8,-39 + 18760: -8,-39 + 18761: -7,-39 + 18762: -6,-39 + 18765: -9,-40 + 18766: -8,-40 + 18767: -7,-40 + 18768: -7,-40 + 18769: -6,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelLineS decals: - 7792: 68,5 - 7793: 69,5 - 7794: 70,5 - 7823: 66,6 - 7824: 69,7 - 7825: 62,6 - 7826: 58,6 - 19179: 57,4 - 19180: 59,4 - 19181: 61,4 - 19182: 63,4 - 19183: 65,4 + 7640: 68,5 + 7641: 69,5 + 7642: 70,5 + 7671: 66,6 + 7672: 69,7 + 7673: 62,6 + 7674: 58,6 + 18223: 57,4 + 18224: 59,4 + 18225: 61,4 + 18226: 63,4 + 18227: 65,4 - node: color: '#DA8BC9FF' id: BrickTileSteelLineS decals: - 3929: 21,61 + 3796: 21,61 - node: color: '#DAA58BFF' id: BrickTileSteelLineS decals: - 4516: 10,38 - 4517: 5,38 + 4366: 10,38 + 4367: 5,38 - node: color: '#DABC8BFF' id: BrickTileSteelLineS decals: - 3651: 6,86 - 3710: 10,83 - 3714: 10,89 - 3719: 10,91 - 3720: 5,93 + 3518: 6,86 + 3577: 10,83 + 3581: 10,89 + 3586: 10,91 + 3587: 5,93 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 20225: -23,3 - 20232: -23,0 - 20233: -47,8 - 20252: 5,-82 - 20257: 7,-57 - 20258: 5,-63 - 20259: 5,-73 - 20260: 5,-79 - 20269: 4,-83 - 20276: 5,-79 - 20313: 4,-62 - 20314: 6,-62 - 20315: 7,-62 - 20316: 9,-75 - 20317: 8,-75 - 20318: 9,-78 - 20370: 11,-29 - 20374: 11,-32 - 20375: 13,-32 - 20382: 11,-29 - 20383: 13,33 - 20389: 12,30 - 20410: 3,60 - 20411: 1,60 - 20426: 41,3 - 20427: 42,3 - 20428: 43,3 - 20429: 44,3 - 20430: 45,3 - 20459: 40,10 - 20466: 36,10 - 20476: 37,8 - 20477: 36,4 - 20478: 37,4 - 20479: 48,-1 - 20480: 50,-1 - 20481: 51,-1 - 20482: 53,-1 - 20483: 54,-1 - 20484: 55,-1 - 20485: 58,-1 - 20486: 59,-1 - 20487: 60,-1 - 20488: 62,-1 - 20489: 63,-1 - 20490: 64,-1 - 20491: 66,-1 - 20492: 67,-1 - 20493: 72,-1 - 20494: 73,-1 - 20517: 73,4 - 20521: 74,21 - 20522: 75,21 - 20523: 76,21 - 20568: 46,10 - 20569: 47,10 - 20570: 48,10 - 20571: 80,9 - 20572: 82,9 - 20573: 82,9 - 20574: 83,9 - 20575: 84,9 - 20576: 81,9 - 20577: 85,9 - 20578: 86,9 - 20619: 52,20 - 20620: 57,20 - 20633: 51,21 - 20634: 50,21 - 20635: 54,21 - 20636: 53,21 - 20637: 54,21 - 20638: 55,21 - 20639: 56,21 - 20640: 58,21 - 20665: 51,14 - 20668: 47,14 - 20671: 51,11 - 20672: 52,11 - 20673: 54,11 - 20674: 55,11 - 20675: 56,11 - 20676: 57,11 - 20677: 58,11 - 20678: 59,11 - 20703: 46,15 - 20741: 52,15 - 20742: 53,15 - 20746: 52,20 - 20747: 51,14 - 20760: 53,10 - 20802: 91,15 - 20803: 92,15 - 20804: 93,15 - 20809: 84,12 - 20810: 85,12 - 20811: 85,12 - 20812: 85,12 - 20813: 87,12 - 20814: 88,12 - 20815: 90,12 - 20816: 91,12 - 20817: 91,12 - 20818: 92,12 - 20819: 89,12 - 20820: 86,12 - 20823: 82,12 - 20828: 83,11 - 20839: 77,8 - 20871: 70,-1 - 20872: 69,-5 - 20873: 70,-5 - 20879: 66,2 - 20880: 62,2 - 20881: 58,2 - 20897: 73,20 - 20899: 73,20 - 20921: 75,24 - 20922: 75,26 - 20962: 69,-2 - 20971: 47,-2 - 20977: 47,-2 - 20980: 52,-2 - 20981: 52,-5 - 20982: 56,-5 - 20983: 57,-5 - 21020: 40,2 - 21021: 40,-1 - 21032: 36,7 - 21033: 34,4 - 21073: 51,3 - 21074: 52,3 - 21075: 53,3 - 21076: 54,3 - 21090: 58,2 - 21091: 62,2 - 21092: 66,2 - 21107: 76,-4 - 21129: -19,-28 - 21139: 46,-5 - 21140: 47,-5 - 21148: 51,-6 - 21153: 47,-9 - 21154: 48,-9 - 21155: 49,-9 - 21156: 50,-9 - 21165: 56,-2 - 21169: 57,-1 - 21307: 21,23 - 21316: 21,21 - 21317: 22,21 - 21318: 23,21 - 21319: 24,21 - 21320: 25,21 - 21321: 26,21 - 21322: 26,21 - 21323: 27,21 - 23071: 12,-28 - 23158: 12,-33 + 19231: -23,3 + 19238: -23,0 + 19239: -47,8 + 19258: 5,-82 + 19263: 7,-57 + 19264: 5,-63 + 19265: 5,-73 + 19266: 5,-79 + 19275: 4,-83 + 19282: 5,-79 + 19319: 4,-62 + 19320: 6,-62 + 19321: 7,-62 + 19322: 9,-75 + 19323: 8,-75 + 19324: 9,-78 + 19376: 11,-29 + 19380: 11,-32 + 19381: 13,-32 + 19388: 11,-29 + 19389: 13,33 + 19395: 12,30 + 19416: 3,60 + 19417: 1,60 + 19432: 41,3 + 19433: 42,3 + 19434: 43,3 + 19435: 44,3 + 19436: 45,3 + 19465: 40,10 + 19472: 36,10 + 19482: 37,8 + 19483: 36,4 + 19484: 37,4 + 19485: 48,-1 + 19486: 50,-1 + 19487: 51,-1 + 19488: 53,-1 + 19489: 54,-1 + 19490: 55,-1 + 19491: 58,-1 + 19492: 59,-1 + 19493: 60,-1 + 19494: 62,-1 + 19495: 63,-1 + 19496: 64,-1 + 19497: 66,-1 + 19498: 67,-1 + 19499: 72,-1 + 19500: 73,-1 + 19523: 73,4 + 19527: 74,21 + 19528: 75,21 + 19529: 76,21 + 19574: 46,10 + 19575: 47,10 + 19576: 48,10 + 19577: 80,9 + 19578: 82,9 + 19579: 82,9 + 19580: 83,9 + 19581: 84,9 + 19582: 81,9 + 19583: 85,9 + 19584: 86,9 + 19625: 52,20 + 19626: 57,20 + 19639: 51,21 + 19640: 50,21 + 19641: 54,21 + 19642: 53,21 + 19643: 54,21 + 19644: 55,21 + 19645: 56,21 + 19646: 58,21 + 19671: 51,14 + 19674: 47,14 + 19677: 51,11 + 19678: 52,11 + 19679: 54,11 + 19680: 55,11 + 19681: 56,11 + 19682: 57,11 + 19683: 58,11 + 19684: 59,11 + 19709: 46,15 + 19747: 52,15 + 19748: 53,15 + 19752: 52,20 + 19753: 51,14 + 19766: 53,10 + 19808: 91,15 + 19809: 92,15 + 19810: 93,15 + 19815: 84,12 + 19816: 85,12 + 19817: 85,12 + 19818: 85,12 + 19819: 87,12 + 19820: 88,12 + 19821: 90,12 + 19822: 91,12 + 19823: 91,12 + 19824: 92,12 + 19825: 89,12 + 19826: 86,12 + 19829: 82,12 + 19834: 83,11 + 19845: 77,8 + 19877: 70,-1 + 19878: 69,-5 + 19879: 70,-5 + 19885: 66,2 + 19886: 62,2 + 19887: 58,2 + 19903: 73,20 + 19905: 73,20 + 19927: 75,24 + 19928: 75,26 + 19968: 69,-2 + 19977: 47,-2 + 19983: 47,-2 + 19986: 52,-2 + 19987: 52,-5 + 19988: 56,-5 + 19989: 57,-5 + 20026: 40,2 + 20027: 40,-1 + 20038: 36,7 + 20039: 34,4 + 20079: 51,3 + 20080: 52,3 + 20081: 53,3 + 20082: 54,3 + 20096: 58,2 + 20097: 62,2 + 20098: 66,2 + 20113: 76,-4 + 20135: -19,-28 + 20145: 46,-5 + 20146: 47,-5 + 20154: 51,-6 + 20159: 47,-9 + 20160: 48,-9 + 20161: 49,-9 + 20162: 50,-9 + 20171: 56,-2 + 20175: 57,-1 + 20313: 21,23 + 20322: 21,21 + 20323: 22,21 + 20324: 23,21 + 20325: 24,21 + 20326: 25,21 + 20327: 26,21 + 20328: 26,21 + 20329: 27,21 + 22077: 12,-28 + 22164: 12,-33 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2221: -20,54 - 2222: -19,54 - 2223: -19,54 - 2224: -19,54 - 2225: -18,54 - 2226: -18,54 - 2231: -21,55 - 2291: -22,28 - 2292: -22,28 - 2296: -21,26 - 2315: -24,30 - 2318: -26,29 - 2379: -31,38 - 2389: -32,33 - 2741: -13,48 - 2742: -12,48 - 2743: -11,48 - 2744: -10,48 - 2745: -9,48 - 2746: -8,48 - 2747: -7,48 - 2748: -6,48 - 2749: -5,48 - 2750: -3,48 - 2751: -2,48 - 2759: -12,51 - 2760: -6,51 - 2779: -3,44 - 2791: -4,47 - 2802: -6,26 - 2822: -30,44 - 2823: -29,41 - 2824: -28,41 - 2825: -27,41 - 2826: -26,41 - 2829: -31,40 - 2830: -32,40 - 2835: -30,44 - 3030: -16,56 - 3031: -15,56 - 3032: -14,56 - 3033: -13,56 - 3034: -12,56 - 3035: -11,56 - 3036: -10,56 - 3037: -9,56 - 3038: -8,56 - 3039: -7,56 - 3040: -6,56 - 3041: -5,56 - 3042: -4,56 - 3043: -3,56 - 3050: 0,56 - 3051: -2,56 - 3169: -16,67 - 3170: -15,67 - 3171: -14,67 - 3172: -13,67 - 3173: -12,67 - 3174: -11,67 - 3175: -10,67 - 3176: -9,67 - 3177: -8,67 - 3423: -31,67 - 3424: -29,67 - 3425: -28,67 - 3426: -27,67 - 3427: -26,67 - 3428: -24,67 - 3429: -23,67 - 3430: -22,67 - 3437: 2,59 - 3449: -2,67 - 3533: -1,67 - 3534: 1,67 - 3535: 0,67 - 3536: 2,67 - 3537: 3,67 - 3538: 4,67 - 3539: 5,67 - 3540: 7,67 - 3572: -15,77 - 3574: -9,77 - 3581: -15,84 - 3582: -9,84 - 3585: -12,97 - 3592: -27,84 - 3595: -33,84 - 3602: -33,77 - 3603: -27,77 - 3666: 3,84 - 3667: 3,77 - 4448: 14,25 - 4449: 15,25 - 4450: 16,25 - 5103: 31,29 - 5114: 30,30 - 5118: 32,30 - 5119: 33,30 - 5120: 34,30 - 5124: 36,30 - 5128: 35,33 - 5132: 35,29 - 5423: -24,4 - 5436: -31,4 - 5437: -30,4 - 5438: -30,4 - 5439: -29,4 - 5440: -28,4 - 5441: -26,4 - 5442: -25,4 - 5443: -27,4 - 5446: -22,4 - 5447: -35,4 - 5448: -36,4 - 5449: -38,4 - 5450: -39,4 - 5451: -37,4 - 5452: -34,4 - 5520: -20,7 - 5521: -19,7 - 5522: -18,7 - 5533: -20,-7 - 5534: -19,-7 - 5535: -18,-7 - 5633: 10,-7 - 5634: 11,-7 - 5635: 8,-7 - 5771: 12,-3 - 5780: 13,-6 - 5781: 12,-6 - 5782: 9,-6 - 5794: -1,-7 - 5800: -10,-7 - 6062: -15,-17 - 6063: -14,-17 - 6070: -10,-17 - 6080: -13,-18 - 6081: -12,-18 - 6082: -11,-18 - 6120: 16,-7 - 6121: 17,-7 - 6122: 18,-7 - 6127: 16,7 - 6128: 17,7 - 6129: 18,7 - 6142: -16,-21 - 6143: -15,-21 - 6144: -12,-21 - 6145: -11,-21 - 6146: -10,-21 - 6147: -9,-21 - 6148: -9,-21 - 6149: -8,-21 - 6150: -5,-21 - 6151: -4,-21 - 6250: -5,-17 - 6251: -4,-13 - 6260: -4,-18 - 6275: 2,-21 - 6276: 3,-21 - 6277: 6,-21 - 6278: 7,-21 - 6279: 8,-21 - 6280: 9,-21 - 6281: 10,-21 - 6282: 13,-21 - 6283: 14,-21 - 6303: 16,-21 - 6304: 17,-21 - 6328: 2,-13 - 6330: 3,-17 - 6331: 2,-17 - 6360: 9,-17 - 6361: 7,-17 - 6377: 12,-18 - 6378: 13,-18 - 6379: 13,-18 - 6380: 14,-18 - 6399: 8,-18 - 6424: -18,-21 - 6425: -19,-21 - 6426: -19,-21 - 6784: -26,7 - 6785: -25,7 - 6786: -31,7 - 6787: -36,7 - 6801: -37,8 - 6892: -36,17 - 6907: -24,8 - 6908: -23,8 - 6919: -26,16 - 6920: -26,16 - 6939: -27,8 - 6940: -27,8 - 7024: 20,4 - 7025: 21,4 - 7026: 23,4 - 7027: 24,4 - 7028: 25,4 - 7050: 21,8 - 7051: 23,8 - 7064: 22,7 - 7082: 20,-12 - 7083: 21,-12 - 7084: 23,-12 - 7085: 24,-12 - 7086: 23,-12 - 7087: 24,-12 - 7088: 22,-12 - 7101: 27,-12 - 7102: 28,-12 - 7103: 29,-12 - 7104: 30,-12 - 7105: 31,-12 - 7114: 22,-9 - 7148: 26,-8 - 7149: 25,-8 - 7150: 27,-8 - 7151: 29,-8 - 7152: 30,-8 - 7159: 30,-6 - 7160: 29,-6 - 7173: 30,3 - 7177: 29,4 - 7178: 28,4 - 7179: 27,4 - 7180: 31,4 - 7198: 22,7 - 7290: 29,12 - 7291: 30,12 - 7292: 30,12 - 7293: 31,12 - 7294: 32,12 - 7322: 29,7 - 7968: 77,-22 - 7969: 79,-22 - 7970: 80,-22 - 7971: 81,-22 - 7983: 77,-19 - 7998: 65,-22 - 8000: 65,-19 - 8160: 33,-16 - 8161: 34,-16 - 8162: 35,-16 - 8163: 36,-16 - 8164: 37,-16 - 8203: 33,-6 - 8264: 38,-16 - 8265: 40,-16 - 8326: 39,-18 - 8329: 41,-18 - 8351: 39,-21 - 8352: 40,-21 - 8353: 41,-21 - 8359: 43,-21 - 8360: 45,-21 - 8361: 46,-21 - 8362: 46,-21 - 8363: 47,-21 - 8364: 49,-21 - 8365: 50,-21 - 8366: 50,-21 - 8367: 51,-21 - 8368: 53,-21 - 8369: 53,-21 - 8388: 46,-18 - 8389: 46,-18 - 8390: 47,-18 - 8409: 52,-18 - 8410: 52,-18 - 8597: 56,-31 - 8598: 57,-31 - 8602: 58,-30 - 8603: 58,-30 - 8604: 59,-30 - 8605: 59,-30 - 8606: 60,-30 - 8607: 60,-30 - 8609: 62,-31 - 8794: -2,-22 - 8795: -1,-22 - 8796: 0,-22 - 8841: -2,-29 - 8842: -1,-29 - 8843: 0,-29 - 8844: -2,-37 - 8845: -2,-37 - 8846: -1,-37 - 8847: 0,-37 - 8848: 0,-37 - 8879: -12,-27 - 8880: -11,-27 - 8881: -10,-27 - 8882: -10,-27 - 8883: -9,-27 - 8884: -8,-27 - 8890: -16,-26 - 8891: -4,-26 - 8892: -4,-26 - 8954: -16,-26 - 9130: -2,-63 - 9131: -1,-63 - 9132: 0,-63 - 9147: -7,-65 - 9148: -7,-65 - 9149: -2,-65 - 9150: -6,-65 - 9151: -5,-65 - 9152: -4,-65 - 9153: -4,-65 - 9154: -3,-65 - 9155: -3,-65 - 9199: -10,-78 - 9205: -8,-82 - 9206: -7,-82 - 9207: -5,-82 - 9208: -3,-82 - 9209: -3,-82 - 9213: -2,-81 - 9214: -1,-81 - 9215: 0,-81 - 9216: 0,-81 - 9244: -8,-71 - 9245: -1,-71 - 9263: -5,-74 - 9264: -4,-74 - 9285: -2,-57 - 9286: -2,-57 - 9287: -1,-57 - 9288: -1,-57 - 9289: 0,-57 - 9290: 0,-57 - 9420: -41,-18 - 10316: 3,-52 - 10317: 4,-52 - 10318: 6,-52 - 10319: 6,-52 - 10320: 7,-52 - 10321: 7,-52 - 10322: 8,-52 - 10323: 8,-52 - 10324: 9,-52 - 10325: 9,-52 - 10326: 10,-52 - 10327: 10,-52 - 10328: 11,-52 - 10329: 11,-52 - 10330: 11,-52 - 10331: 5,-52 - 10497: 4,-83 - 10523: 55,-44 - 10555: 46,-45 - 10556: 44,-45 - 10557: 44,-45 - 10558: 48,-45 - 11173: -59,-33 - 11179: -59,-40 - 11250: -6,-83 - 11251: -4,-83 - 11252: 2,-83 - 11253: 2,-83 - 11301: -10,-63 - 11333: -14,-32 - 11335: -15,-29 - 11336: -13,-29 - 11743: -38,-56 - 11744: -38,-56 - 11764: -37,-53 - 11765: -38,-53 - 11766: -39,-53 - 11767: -40,-53 - 11768: -40,-53 - 11785: -24,-54 - 11786: -25,-54 - 12063: -24,-49 - 12459: -21,-77 - 12694: 5,70 - 12695: 6,70 - 12696: 7,70 - 12705: -7,66 - 12706: -6,66 - 12707: -5,66 - 12708: -4,66 - 12709: -3,66 - 12710: -7,59 - 12727: -7,59 - 12728: -6,59 - 12729: -5,59 - 12730: -4,59 - 12731: -3,59 - 12744: -21,59 - 12745: -20,59 - 12746: -19,59 - 12747: -18,59 - 12748: -18,59 - 12749: -17,59 - 12750: -19,59 - 12751: -21,66 - 12752: -20,66 - 12753: -19,66 - 12754: -18,66 - 12755: -18,66 - 12756: -17,66 - 12757: -31,70 - 12758: -30,70 - 12759: -29,70 - 12760: -13,70 - 12761: -12,70 - 12762: -11,70 - 13320: -37,-59 - 14352: -17,22 - 14353: -16,22 - 14354: -15,22 - 14355: -15,22 - 14356: -14,22 - 14357: -12,22 - 14358: -11,22 - 14359: -13,22 - 14360: -10,22 - 14361: -9,22 - 14803: -7,22 - 14804: -6,22 - 14805: -5,22 - 14806: -4,22 - 14807: -2,22 - 14808: -2,22 - 14809: -3,22 - 14810: -1,22 - 14811: 0,22 - 14812: 1,22 - 14813: 2,22 - 14814: 3,22 - 14815: 4,22 - 14816: 5,22 - 14817: 7,22 - 14818: 8,22 - 14819: 9,22 - 14820: 10,22 - 14821: 11,22 - 14822: 12,22 - 14823: 13,22 - 14824: 14,22 - 14825: 15,22 - 14874: -20,25 - 14875: -19,25 - 14876: -18,25 - 14877: -20,21 - 14878: -19,21 - 14879: -18,21 - 14942: 16,21 - 14943: 17,21 - 14944: 18,21 - 15295: -43,4 - 15296: -42,4 - 15297: -41,4 - 15309: -43,7 - 15310: -42,7 - 15311: -41,7 - 15501: 77,0 - 15693: 78,3 - 15713: 86,0 - 15714: 87,0 - 15715: 88,0 - 15716: 84,0 - 15717: 83,0 - 15718: 82,0 - 15719: 80,0 - 15720: 79,0 - 15721: 78,0 - 16603: -58,-11 - 16604: -60,-15 - 16606: -59,-15 - 16607: -58,-15 - 16610: -60,-15 - 16611: -59,-15 - 16612: -57,-15 - 16613: -56,-15 - 16614: -58,-15 - 16615: -58,-15 - 16616: -57,-15 - 16617: -59,-15 - 16624: -58,-11 - 16626: -58,-11 - 16641: -61,-17 - 16681: -57,-4 - 16683: -58,-5 - 16725: -60,-4 - 16726: -59,-4 - 16729: -53,3 - 16730: -52,3 - 16733: -53,7 - 16734: -52,7 - 16751: -50,-4 - 17426: 6,86 - 17830: -45,23 - 18389: -15,-10 - 18390: -16,-10 - 18391: -13,-10 - 18392: -12,-10 - 18393: -11,-10 - 18394: -9,-10 - 18395: -8,-10 - 18396: -8,-10 - 18397: -7,-10 - 18398: -6,-10 - 18399: -5,-10 - 18402: -14,-11 - 18403: -10,-11 - 18414: 15,-10 - 18415: 14,-10 - 18416: 13,-10 - 18417: 12,-10 - 18418: 11,-10 - 18419: 10,-10 - 18420: 9,-10 - 18421: 5,-10 - 18422: 6,-10 - 18423: 7,-10 - 18424: 5,-10 - 18425: 4,-10 - 18426: 3,-10 - 18427: 2,-10 - 18428: 1,-10 - 18429: 0,-10 - 18430: -1,-10 - 18431: -2,-10 - 18432: -3,-10 - 18433: -4,-10 - 18434: -4,-10 - 18445: 8,-11 - 19796: -27,14 - 19797: -26,14 - 19798: -25,14 - 19799: -25,14 - 19800: -24,14 - 19801: -24,14 - 19820: -28,8 - 19979: 62,21 - 19980: 63,21 - 19981: 64,21 - 19982: 65,21 - 19983: 66,21 - 19984: 68,21 - 19985: 69,21 - 19986: 67,21 - 20012: 62,27 - 20013: 64,27 - 20014: 65,27 - 20015: 66,27 - 20016: 67,27 - 20054: -20,7 - 20055: -19,7 - 20056: -18,7 - 20098: -20,21 - 20099: -19,21 - 20100: -18,21 - 22501: 32,4 - 23863: -34,-16 - 23864: -33,-16 - 23865: -33,-16 - 23866: -32,-16 - 23867: -31,-16 - 23868: -30,-16 - 23869: -30,-16 - 23870: -29,-16 - 23871: -34,-11 - 23872: -33,-11 - 23873: -33,-11 - 23874: -32,-11 - 23875: -31,-11 - 23876: -31,-11 - 23877: -31,-3 - 23878: -30,-3 - 23879: -28,-3 - 23880: -27,-3 - 23881: -26,-3 - 23882: -26,-3 - 23883: -26,-3 - 23884: -25,-3 - 23885: -23,-3 - 23886: -22,-3 - 23887: -22,-3 - 23900: -33,3 - 23901: -32,3 - 23902: -24,-1 - 23903: -33,-10 - 23904: -32,-10 - 23940: -33,-10 - 23941: -32,-10 + 2099: -20,54 + 2100: -19,54 + 2101: -19,54 + 2102: -19,54 + 2103: -18,54 + 2104: -18,54 + 2109: -21,55 + 2168: -22,28 + 2169: -22,28 + 2173: -21,26 + 2192: -24,30 + 2195: -26,29 + 2256: -31,38 + 2266: -32,33 + 2618: -13,48 + 2619: -12,48 + 2620: -11,48 + 2621: -10,48 + 2622: -9,48 + 2623: -8,48 + 2624: -7,48 + 2625: -6,48 + 2626: -5,48 + 2627: -3,48 + 2628: -2,48 + 2636: -12,51 + 2637: -6,51 + 2656: -3,44 + 2668: -4,47 + 2679: -6,26 + 2699: -30,44 + 2700: -29,41 + 2701: -28,41 + 2702: -27,41 + 2703: -26,41 + 2706: -31,40 + 2707: -32,40 + 2712: -30,44 + 2907: -16,56 + 2908: -15,56 + 2909: -14,56 + 2910: -13,56 + 2911: -12,56 + 2912: -11,56 + 2913: -10,56 + 2914: -9,56 + 2915: -8,56 + 2916: -7,56 + 2917: -6,56 + 2918: -5,56 + 2919: -4,56 + 2920: -3,56 + 2927: 0,56 + 2928: -2,56 + 3044: -16,67 + 3045: -15,67 + 3046: -14,67 + 3047: -13,67 + 3048: -12,67 + 3049: -11,67 + 3050: -10,67 + 3051: -9,67 + 3052: -8,67 + 3294: -31,67 + 3295: -29,67 + 3296: -28,67 + 3297: -27,67 + 3298: -26,67 + 3299: -24,67 + 3300: -23,67 + 3301: -22,67 + 3308: 2,59 + 3320: -2,67 + 3400: -1,67 + 3401: 1,67 + 3402: 0,67 + 3403: 2,67 + 3404: 3,67 + 3405: 4,67 + 3406: 5,67 + 3407: 7,67 + 3439: -15,77 + 3441: -9,77 + 3448: -15,84 + 3449: -9,84 + 3452: -12,97 + 3459: -27,84 + 3462: -33,84 + 3469: -33,77 + 3470: -27,77 + 3533: 3,84 + 3534: 3,77 + 4298: 14,25 + 4299: 15,25 + 4300: 16,25 + 4953: 31,29 + 4964: 30,30 + 4968: 32,30 + 4969: 33,30 + 4970: 34,30 + 4974: 36,30 + 4978: 35,33 + 4982: 35,29 + 5271: -24,4 + 5284: -31,4 + 5285: -30,4 + 5286: -30,4 + 5287: -29,4 + 5288: -28,4 + 5289: -26,4 + 5290: -25,4 + 5291: -27,4 + 5294: -22,4 + 5295: -35,4 + 5296: -36,4 + 5297: -38,4 + 5298: -39,4 + 5299: -37,4 + 5300: -34,4 + 5368: -20,7 + 5369: -19,7 + 5370: -18,7 + 5381: -20,-7 + 5382: -19,-7 + 5383: -18,-7 + 5481: 10,-7 + 5482: 11,-7 + 5483: 8,-7 + 5619: 12,-3 + 5628: 13,-6 + 5629: 12,-6 + 5630: 9,-6 + 5642: -1,-7 + 5648: -10,-7 + 5910: -15,-17 + 5911: -14,-17 + 5918: -10,-17 + 5928: -13,-18 + 5929: -12,-18 + 5930: -11,-18 + 5968: 16,-7 + 5969: 17,-7 + 5970: 18,-7 + 5975: 16,7 + 5976: 17,7 + 5977: 18,7 + 5990: -16,-21 + 5991: -15,-21 + 5992: -12,-21 + 5993: -11,-21 + 5994: -10,-21 + 5995: -9,-21 + 5996: -9,-21 + 5997: -8,-21 + 5998: -5,-21 + 5999: -4,-21 + 6098: -5,-17 + 6099: -4,-13 + 6108: -4,-18 + 6123: 2,-21 + 6124: 3,-21 + 6125: 6,-21 + 6126: 7,-21 + 6127: 8,-21 + 6128: 9,-21 + 6129: 10,-21 + 6130: 13,-21 + 6131: 14,-21 + 6151: 16,-21 + 6152: 17,-21 + 6176: 2,-13 + 6178: 3,-17 + 6179: 2,-17 + 6208: 9,-17 + 6209: 7,-17 + 6225: 12,-18 + 6226: 13,-18 + 6227: 13,-18 + 6228: 14,-18 + 6247: 8,-18 + 6272: -18,-21 + 6273: -19,-21 + 6274: -19,-21 + 6632: -26,7 + 6633: -25,7 + 6634: -31,7 + 6635: -36,7 + 6649: -37,8 + 6740: -36,17 + 6755: -24,8 + 6756: -23,8 + 6767: -26,16 + 6768: -26,16 + 6787: -27,8 + 6788: -27,8 + 6872: 20,4 + 6873: 21,4 + 6874: 23,4 + 6875: 24,4 + 6876: 25,4 + 6898: 21,8 + 6899: 23,8 + 6912: 22,7 + 6930: 20,-12 + 6931: 21,-12 + 6932: 23,-12 + 6933: 24,-12 + 6934: 23,-12 + 6935: 24,-12 + 6936: 22,-12 + 6949: 27,-12 + 6950: 28,-12 + 6951: 29,-12 + 6952: 30,-12 + 6953: 31,-12 + 6962: 22,-9 + 6996: 26,-8 + 6997: 25,-8 + 6998: 27,-8 + 6999: 29,-8 + 7000: 30,-8 + 7007: 30,-6 + 7008: 29,-6 + 7021: 30,3 + 7025: 29,4 + 7026: 28,4 + 7027: 27,4 + 7028: 31,4 + 7046: 22,7 + 7138: 29,12 + 7139: 30,12 + 7140: 30,12 + 7141: 31,12 + 7142: 32,12 + 7170: 29,7 + 7816: 77,-22 + 7817: 79,-22 + 7818: 80,-22 + 7819: 81,-22 + 7831: 77,-19 + 7846: 65,-22 + 7848: 65,-19 + 8006: 33,-16 + 8007: 34,-16 + 8008: 35,-16 + 8009: 36,-16 + 8010: 37,-16 + 8049: 33,-6 + 8110: 38,-16 + 8111: 40,-16 + 8172: 39,-18 + 8175: 41,-18 + 8197: 39,-21 + 8198: 40,-21 + 8199: 41,-21 + 8205: 43,-21 + 8206: 45,-21 + 8207: 46,-21 + 8208: 46,-21 + 8209: 47,-21 + 8210: 49,-21 + 8211: 50,-21 + 8212: 50,-21 + 8213: 51,-21 + 8214: 53,-21 + 8215: 53,-21 + 8234: 46,-18 + 8235: 46,-18 + 8236: 47,-18 + 8255: 52,-18 + 8256: 52,-18 + 8438: 56,-31 + 8439: 57,-31 + 8443: 58,-30 + 8444: 58,-30 + 8445: 59,-30 + 8446: 59,-30 + 8447: 60,-30 + 8448: 60,-30 + 8450: 62,-31 + 8632: -2,-22 + 8633: -1,-22 + 8634: 0,-22 + 8679: -2,-29 + 8680: -1,-29 + 8681: 0,-29 + 8682: -2,-37 + 8683: -2,-37 + 8684: -1,-37 + 8685: 0,-37 + 8686: 0,-37 + 8717: -12,-27 + 8718: -11,-27 + 8719: -10,-27 + 8720: -10,-27 + 8721: -9,-27 + 8722: -8,-27 + 8728: -16,-26 + 8729: -4,-26 + 8730: -4,-26 + 8792: -16,-26 + 8968: -2,-63 + 8969: -1,-63 + 8970: 0,-63 + 8985: -7,-65 + 8986: -7,-65 + 8987: -2,-65 + 8988: -6,-65 + 8989: -5,-65 + 8990: -4,-65 + 8991: -4,-65 + 8992: -3,-65 + 8993: -3,-65 + 9037: -10,-78 + 9043: -8,-82 + 9044: -7,-82 + 9045: -5,-82 + 9046: -3,-82 + 9047: -3,-82 + 9051: -2,-81 + 9052: -1,-81 + 9053: 0,-81 + 9054: 0,-81 + 9082: -8,-71 + 9083: -1,-71 + 9101: -5,-74 + 9102: -4,-74 + 9123: -2,-57 + 9124: -2,-57 + 9125: -1,-57 + 9126: -1,-57 + 9127: 0,-57 + 9128: 0,-57 + 9258: -41,-18 + 10154: 3,-52 + 10155: 4,-52 + 10156: 6,-52 + 10157: 6,-52 + 10158: 7,-52 + 10159: 7,-52 + 10160: 8,-52 + 10161: 8,-52 + 10162: 9,-52 + 10163: 9,-52 + 10164: 10,-52 + 10165: 10,-52 + 10166: 11,-52 + 10167: 11,-52 + 10168: 11,-52 + 10169: 5,-52 + 10335: 4,-83 + 10361: 55,-44 + 10393: 46,-45 + 10394: 44,-45 + 10395: 44,-45 + 10396: 48,-45 + 10670: -59,-33 + 10676: -59,-40 + 10747: -6,-83 + 10748: -4,-83 + 10749: 2,-83 + 10750: 2,-83 + 10798: -10,-63 + 10830: -14,-32 + 10832: -15,-29 + 10833: -13,-29 + 11228: -38,-56 + 11229: -38,-56 + 11249: -37,-53 + 11250: -38,-53 + 11251: -39,-53 + 11252: -40,-53 + 11253: -40,-53 + 11270: -24,-54 + 11271: -25,-54 + 11401: -24,-49 + 11797: -21,-77 + 12012: 5,70 + 12013: 6,70 + 12014: 7,70 + 12023: -7,66 + 12024: -6,66 + 12025: -5,66 + 12026: -4,66 + 12027: -3,66 + 12028: -7,59 + 12043: -7,59 + 12044: -6,59 + 12045: -4,59 + 12046: -3,59 + 12058: -21,59 + 12059: -20,59 + 12060: -19,59 + 12061: -18,59 + 12062: -18,59 + 12063: -17,59 + 12064: -19,59 + 12065: -21,66 + 12066: -20,66 + 12067: -19,66 + 12068: -18,66 + 12069: -18,66 + 12070: -17,66 + 12071: -31,70 + 12072: -30,70 + 12073: -29,70 + 12074: -13,70 + 12075: -12,70 + 12076: -11,70 + 12376: -37,-59 + 13408: -17,22 + 13409: -16,22 + 13410: -15,22 + 13411: -15,22 + 13412: -14,22 + 13413: -12,22 + 13414: -11,22 + 13415: -13,22 + 13416: -10,22 + 13417: -9,22 + 13859: -7,22 + 13860: -6,22 + 13861: -5,22 + 13862: -4,22 + 13863: -2,22 + 13864: -2,22 + 13865: -3,22 + 13866: -1,22 + 13867: 0,22 + 13868: 1,22 + 13869: 2,22 + 13870: 3,22 + 13871: 4,22 + 13872: 5,22 + 13873: 7,22 + 13874: 8,22 + 13875: 9,22 + 13876: 10,22 + 13877: 11,22 + 13878: 12,22 + 13879: 13,22 + 13880: 14,22 + 13881: 15,22 + 13930: -20,25 + 13931: -19,25 + 13932: -18,25 + 13933: -20,21 + 13934: -19,21 + 13935: -18,21 + 13998: 16,21 + 13999: 17,21 + 14000: 18,21 + 14344: -43,4 + 14345: -42,4 + 14346: -41,4 + 14358: -43,7 + 14359: -42,7 + 14360: -41,7 + 14550: 77,0 + 14742: 78,3 + 14762: 86,0 + 14763: 87,0 + 14764: 88,0 + 14765: 84,0 + 14766: 83,0 + 14767: 82,0 + 14768: 80,0 + 14769: 79,0 + 14770: 78,0 + 15652: -58,-11 + 15653: -60,-15 + 15655: -59,-15 + 15656: -58,-15 + 15659: -60,-15 + 15660: -59,-15 + 15661: -57,-15 + 15662: -56,-15 + 15663: -58,-15 + 15664: -58,-15 + 15665: -57,-15 + 15666: -59,-15 + 15673: -58,-11 + 15675: -58,-11 + 15690: -61,-17 + 15730: -57,-4 + 15732: -58,-5 + 15774: -60,-4 + 15775: -59,-4 + 15778: -53,3 + 15779: -52,3 + 15782: -53,7 + 15783: -52,7 + 15800: -50,-4 + 16475: 6,86 + 16879: -45,23 + 17438: -15,-10 + 17439: -16,-10 + 17440: -13,-10 + 17441: -12,-10 + 17442: -11,-10 + 17443: -9,-10 + 17444: -8,-10 + 17445: -8,-10 + 17446: -7,-10 + 17447: -6,-10 + 17448: -5,-10 + 17451: -14,-11 + 17452: -10,-11 + 17463: 15,-10 + 17464: 14,-10 + 17465: 13,-10 + 17466: 12,-10 + 17467: 11,-10 + 17468: 10,-10 + 17469: 9,-10 + 17470: 5,-10 + 17471: 6,-10 + 17472: 7,-10 + 17473: 5,-10 + 17474: 4,-10 + 17475: 3,-10 + 17476: 2,-10 + 17477: 1,-10 + 17478: 0,-10 + 17479: -1,-10 + 17480: -2,-10 + 17481: -3,-10 + 17482: -4,-10 + 17483: -4,-10 + 17494: 8,-11 + 18802: -27,14 + 18803: -26,14 + 18804: -25,14 + 18805: -25,14 + 18806: -24,14 + 18807: -24,14 + 18826: -28,8 + 18985: 62,21 + 18986: 63,21 + 18987: 64,21 + 18988: 65,21 + 18989: 66,21 + 18990: 68,21 + 18991: 69,21 + 18992: 67,21 + 19018: 62,27 + 19019: 64,27 + 19020: 65,27 + 19021: 66,27 + 19022: 67,27 + 19060: -20,7 + 19061: -19,7 + 19062: -18,7 + 19104: -20,21 + 19105: -19,21 + 19106: -18,21 + 21507: 32,4 + 22869: -34,-16 + 22870: -33,-16 + 22871: -33,-16 + 22872: -32,-16 + 22873: -31,-16 + 22874: -30,-16 + 22875: -30,-16 + 22876: -29,-16 + 22877: -34,-11 + 22878: -33,-11 + 22879: -33,-11 + 22880: -32,-11 + 22881: -31,-11 + 22882: -31,-11 + 22883: -31,-3 + 22884: -30,-3 + 22885: -28,-3 + 22886: -27,-3 + 22887: -26,-3 + 22888: -26,-3 + 22889: -26,-3 + 22890: -25,-3 + 22891: -23,-3 + 22892: -22,-3 + 22893: -22,-3 + 22906: -33,3 + 22907: -32,3 + 22908: -24,-1 + 22909: -33,-10 + 22910: -32,-10 + 22946: -33,-10 + 22947: -32,-10 + 23794: -5,59 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 898: 25,-2 - 899: 26,-2 - 920: 29,1 - 926: 27,-2 - 4046: -20,25 - 4047: -19,25 - 4048: -18,25 - 4099: 0,25 - 4101: 0,25 - 4102: 0,25 - 4103: -9,25 - 4104: -9,25 - 4113: 4,25 - 4114: 5,25 - 4115: 7,25 - 4116: 8,25 + 785: 25,-2 + 786: 26,-2 + 807: 29,1 + 813: 27,-2 + 3896: -20,25 + 3897: -19,25 + 3898: -18,25 + 3949: 0,25 + 3951: 0,25 + 3952: 0,25 + 3953: -9,25 + 3954: -9,25 + 3963: 4,25 + 3964: 5,25 + 3965: 7,25 + 3966: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineW decals: - 8098: 24,-17 - 8099: 24,-16 - 8104: 32,-16 - 8124: 20,-15 - 8131: 23,-15 + 7944: 24,-17 + 7945: 24,-16 + 7950: 32,-16 + 7970: 20,-15 + 7977: 23,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineW decals: - 3734: -28,60 - 3735: -28,61 - 3736: -28,62 - 3737: -28,63 - 3738: -28,64 - 3755: -25,59 - 3756: -25,61 - 3757: -25,63 - 10174: 35,-26 - 10292: 13,-47 - 10589: 71,-50 - 15687: 77,5 + 3601: -28,60 + 3602: -28,61 + 3603: -28,62 + 3604: -28,63 + 3605: -28,64 + 3622: -25,59 + 3623: -25,61 + 3624: -25,63 + 10012: 35,-26 + 10130: 13,-47 + 10427: 71,-50 + 14736: 77,5 - node: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 23291: 20,-47 - 23292: 20,-48 - 23697: 29,-24 - 23706: 28,-23 - 23707: 28,-24 - 23712: 33,-23 + 22297: 20,-47 + 22298: 20,-48 + 22703: 29,-24 + 22712: 28,-23 + 22713: 28,-24 + 22718: 33,-23 - node: color: '#8CB7E8FF' id: BrickTileSteelLineW decals: - 9980: 29,-24 - 9990: 28,-24 - 9991: 28,-23 - 9992: 28,-23 - 10002: 33,-23 - 10003: 33,-23 - 10070: 20,-48 - 10071: 20,-47 - 10126: 32,-52 - 10127: 32,-48 - 10128: 32,-50 + 9818: 29,-24 + 9828: 28,-24 + 9829: 28,-23 + 9830: 28,-23 + 9840: 33,-23 + 9841: 33,-23 + 9908: 20,-48 + 9909: 20,-47 + 9964: 32,-52 + 9965: 32,-48 + 9966: 32,-50 - node: color: '#A9DA8BFF' id: BrickTileSteelLineW decals: - 2862: -24,47 - 2863: -24,48 - 2864: -24,48 - 2865: -24,47 - 2866: -24,48 - 2867: -24,47 - 2989: -39,49 + 2739: -24,47 + 2740: -24,48 + 2741: -24,48 + 2742: -24,47 + 2743: -24,48 + 2744: -24,47 + 2866: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineW decals: - 12019: -29,-46 - 12020: -29,-45 - 12021: -29,-44 - 12066: -30,-41 - 12067: -30,-40 - 12068: -26,-41 - 12069: -26,-40 - 12070: -26,-39 - 12245: -21,-43 - 12246: -21,-42 - 12247: -21,-41 - 12248: -21,-40 - 12249: -21,-39 - 12260: -16,-40 - 16061: -66,-47 - 16077: -61,-48 - 19694: -5,-43 - 19695: -5,-42 - 19696: -5,-42 - 19697: -5,-41 - 19713: -5,-40 + 11357: -29,-46 + 11358: -29,-45 + 11359: -29,-44 + 11404: -30,-41 + 11405: -30,-40 + 11406: -26,-41 + 11407: -26,-40 + 11408: -26,-39 + 11583: -21,-43 + 11584: -21,-42 + 11585: -21,-41 + 11586: -21,-40 + 11587: -21,-39 + 11598: -16,-40 + 15110: -66,-47 + 15126: -61,-48 + 18738: -5,-43 + 18739: -5,-42 + 18740: -5,-42 + 18741: -5,-41 + 18757: -5,-40 - node: color: '#D381C9FF' id: BrickTileSteelLineW decals: - 22697: -16,-40 - 22736: -21,-43 - 22737: -21,-42 - 22738: -21,-42 - 22739: -21,-41 - 22740: -21,-41 - 22741: -21,-40 - 22742: -21,-40 - 22743: -21,-40 - 22744: -21,-39 - 22745: -21,-39 - 22746: -21,-39 - 22752: -16,-40 + 21703: -16,-40 + 21742: -21,-43 + 21743: -21,-42 + 21744: -21,-42 + 21745: -21,-41 + 21746: -21,-41 + 21747: -21,-40 + 21748: -21,-40 + 21749: -21,-40 + 21750: -21,-39 + 21751: -21,-39 + 21752: -21,-39 + 21758: -16,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelLineW decals: - 7800: 64,4 - 7801: 64,5 - 7802: 60,4 - 7803: 60,5 - 7808: 60,4 - 7809: 60,5 - 7822: 71,6 - 19177: 58,3 - 19187: 62,3 - 19188: 66,3 - 19212: 69,8 - 19218: 66,8 - 19219: 66,7 - 19225: 62,7 - 19226: 62,8 - 19227: 62,9 - 19228: 58,7 - 19229: 58,8 + 7648: 64,4 + 7649: 64,5 + 7650: 60,4 + 7651: 60,5 + 7656: 60,4 + 7657: 60,5 + 7670: 71,6 + 18221: 58,3 + 18231: 62,3 + 18232: 66,3 + 18256: 69,8 + 18262: 66,8 + 18263: 66,7 + 18269: 62,7 + 18270: 62,8 + 18271: 62,9 + 18272: 58,7 + 18273: 58,8 - node: color: '#DAA58BFF' id: BrickTileSteelLineW decals: - 4514: 12,35 - 4515: 12,36 + 4364: 12,35 + 4365: 12,36 - node: color: '#DABC8BFF' id: BrickTileSteelLineW decals: - 3647: 9,75 - 3648: 9,76 - 3649: 9,80 - 3650: 9,81 - 3709: 13,78 - 3715: 12,87 - 15274: -49,9 + 3514: 9,75 + 3515: 9,76 + 3516: 9,80 + 3517: 9,81 + 3576: 13,78 + 3582: 12,87 + 14330: -49,9 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 20229: -24,1 - 20230: -24,0 - 20235: -45,9 - 20243: -48,8 - 20261: 4,-84 - 20262: 4,-85 - 20263: 4,-86 - 20270: 4,-82 - 20271: 4,-81 - 20323: 7,-77 - 20324: 7,-75 - 20326: 4,-77 - 20346: 3,-61 - 20347: 3,-59 - 20356: 4,-71 - 20357: 4,-70 - 20358: 4,-69 - 20359: 4,-68 - 20365: 15,-31 - 20379: 10,-31 - 20392: 12,31 - 20393: 4,64 - 20396: 4,60 - 20397: 0,63 - 20398: 0,62 - 20399: 0,64 - 20444: 39,12 - 20446: 39,5 - 20447: 46,7 - 20448: 46,6 - 20449: 46,9 - 20465: 38,8 - 20527: 79,9 - 20528: 75,9 - 20548: 43,12 - 20551: 45,12 - 20556: 46,11 - 20563: 49,8 - 20613: 60,25 - 20614: 48,23 - 20615: 48,22 - 20623: 49,30 - 20624: 49,29 - 20625: 49,28 - 20626: 49,27 - 20627: 49,26 - 20628: 49,24 - 20629: 49,25 - 20663: 49,16 - 20670: 49,12 - 20695: 45,23 - 20696: 45,22 - 20697: 45,21 - 20698: 45,19 - 20699: 45,18 - 20700: 45,18 - 20701: 45,17 - 20702: 45,16 - 20723: 58,19 - 20731: 56,18 - 20732: 56,16 - 20736: 50,17 - 20737: 50,18 - 20751: 61,12 - 20763: 49,8 - 20764: 49,4 - 20787: 91,16 - 20788: 91,17 - 20789: 91,18 - 20790: 91,19 - 20791: 91,20 - 20792: 91,22 - 20794: 94,21 - 20808: 94,13 - 20825: 81,13 - 20832: 79,9 - 20833: 75,9 - 20848: 72,7 - 20849: 72,8 - 20850: 72,8 - 20851: 72,9 - 20852: 72,10 - 20853: 72,11 - 20854: 72,12 - 20855: 72,14 - 20856: 72,14 - 20857: 72,15 - 20858: 72,16 - 20859: 72,16 - 20860: 72,17 - 20870: 71,-1 - 20875: 69,0 - 20876: 72,0 - 20882: 43,0 - 20883: 39,0 - 20884: 49,-1 - 20885: 49,0 - 20886: 49,1 - 20904: 72,22 - 20910: 77,22 - 20938: 68,1 - 20939: 68,-1 - 20940: 71,-1 - 20941: 71,1 - 20955: 72,-4 - 20958: 68,-4 - 20959: 72,-4 - 20987: 55,-4 - 20988: 50,-4 - 21003: 46,1 - 21004: 46,2 - 21015: 45,0 - 21028: 38,4 - 21029: 38,6 - 21036: 34,5 - 21049: 39,7 - 21060: 45,8 - 21061: 43,8 - 21080: 50,7 - 21081: 50,6 - 21082: 50,6 - 21083: 50,5 - 21105: 75,-4 - 21110: 76,-3 - 21113: 75,-4 - 21115: 72,-4 - 21116: -20,-25 - 21117: -20,-27 - 21119: -17,-24 - 21133: 4,-65 - 21143: 45,-4 - 21174: 72,2 - 21561: -44,10 - 21564: -44,8 - 21914: 11,30 - 22507: 33,4 - 22508: 33,6 - 23995: 3,-67 - 23996: 3,-66 - 23997: 3,-76 - 23998: 3,-75 - 23999: 2,-60 + 19235: -24,1 + 19236: -24,0 + 19241: -45,9 + 19249: -48,8 + 19267: 4,-84 + 19268: 4,-85 + 19269: 4,-86 + 19276: 4,-82 + 19277: 4,-81 + 19329: 7,-77 + 19330: 7,-75 + 19332: 4,-77 + 19352: 3,-61 + 19353: 3,-59 + 19362: 4,-71 + 19363: 4,-70 + 19364: 4,-69 + 19365: 4,-68 + 19371: 15,-31 + 19385: 10,-31 + 19398: 12,31 + 19399: 4,64 + 19402: 4,60 + 19403: 0,63 + 19404: 0,62 + 19405: 0,64 + 19450: 39,12 + 19452: 39,5 + 19453: 46,7 + 19454: 46,6 + 19455: 46,9 + 19471: 38,8 + 19533: 79,9 + 19534: 75,9 + 19554: 43,12 + 19557: 45,12 + 19562: 46,11 + 19569: 49,8 + 19619: 60,25 + 19620: 48,23 + 19621: 48,22 + 19629: 49,30 + 19630: 49,29 + 19631: 49,28 + 19632: 49,27 + 19633: 49,26 + 19634: 49,24 + 19635: 49,25 + 19669: 49,16 + 19676: 49,12 + 19701: 45,23 + 19702: 45,22 + 19703: 45,21 + 19704: 45,19 + 19705: 45,18 + 19706: 45,18 + 19707: 45,17 + 19708: 45,16 + 19729: 58,19 + 19737: 56,18 + 19738: 56,16 + 19742: 50,17 + 19743: 50,18 + 19757: 61,12 + 19769: 49,8 + 19770: 49,4 + 19793: 91,16 + 19794: 91,17 + 19795: 91,18 + 19796: 91,19 + 19797: 91,20 + 19798: 91,22 + 19800: 94,21 + 19814: 94,13 + 19831: 81,13 + 19838: 79,9 + 19839: 75,9 + 19854: 72,7 + 19855: 72,8 + 19856: 72,8 + 19857: 72,9 + 19858: 72,10 + 19859: 72,11 + 19860: 72,12 + 19861: 72,14 + 19862: 72,14 + 19863: 72,15 + 19864: 72,16 + 19865: 72,16 + 19866: 72,17 + 19876: 71,-1 + 19881: 69,0 + 19882: 72,0 + 19888: 43,0 + 19889: 39,0 + 19890: 49,-1 + 19891: 49,0 + 19892: 49,1 + 19910: 72,22 + 19916: 77,22 + 19944: 68,1 + 19945: 68,-1 + 19946: 71,-1 + 19947: 71,1 + 19961: 72,-4 + 19964: 68,-4 + 19965: 72,-4 + 19993: 55,-4 + 19994: 50,-4 + 20009: 46,1 + 20010: 46,2 + 20021: 45,0 + 20034: 38,4 + 20035: 38,6 + 20042: 34,5 + 20055: 39,7 + 20066: 45,8 + 20067: 43,8 + 20086: 50,7 + 20087: 50,6 + 20088: 50,6 + 20089: 50,5 + 20111: 75,-4 + 20116: 76,-3 + 20119: 75,-4 + 20121: 72,-4 + 20122: -20,-25 + 20123: -20,-27 + 20125: -17,-24 + 20139: 4,-65 + 20149: 45,-4 + 20180: 72,2 + 20567: -44,10 + 20570: -44,8 + 20920: 11,30 + 21513: 33,4 + 21514: 33,6 + 23001: 3,-67 + 23002: 3,-66 + 23003: 3,-76 + 23004: 3,-75 + 23005: 2,-60 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2250: -14,48 - 2251: -14,50 - 2253: -23,49 - 2257: -23,46 - 2265: -24,43 - 2266: -24,44 - 2270: -24,42 - 2275: -14,46 - 2276: -14,45 - 2277: -14,43 - 2278: -14,44 - 2279: -14,42 - 2280: -14,41 - 2281: -14,40 - 2282: -14,39 - 2283: -14,38 - 2284: -14,37 - 2285: -14,36 - 2290: -23,29 - 2293: -21,27 - 2294: -21,27 - 2322: -27,31 - 2380: -29,36 - 2381: -29,35 - 2382: -29,34 - 2395: -34,37 - 2396: -34,36 - 2397: -34,35 - 2398: -34,34 - 2399: -34,33 - 2412: -14,46 - 2414: -14,36 - 2470: -14,46 - 2582: -14,46 - 2583: -14,36 - 2728: -13,49 - 2761: -2,51 - 2766: -1,48 - 3076: -7,59 - 3154: -7,60 - 3155: -7,61 - 3156: -7,62 - 3157: -7,63 - 3158: -7,64 - 3159: -7,65 - 3178: -7,66 - 3181: -21,59 - 3182: -21,60 - 3183: -21,61 - 3184: -21,61 - 3185: -21,62 - 3186: -21,63 - 3187: -21,64 - 3188: -21,65 - 3189: -21,65 - 3190: -21,66 - 3314: -32,68 - 3316: -31,70 - 3317: -31,71 - 3318: -31,72 - 3319: -31,73 - 3320: -31,74 - 3321: -31,75 - 3322: -31,76 - 3323: -31,78 - 3324: -31,83 - 3325: -31,85 - 3326: -31,86 - 3327: -32,90 - 3328: -32,89 - 3329: -32,91 - 3330: -31,93 - 3331: -31,94 - 3332: -31,95 - 3370: -13,70 - 3371: -13,71 - 3372: -13,72 - 3373: -13,73 - 3374: -13,74 - 3375: -13,75 - 3376: -13,76 - 3377: -13,78 - 3378: -14,80 - 3379: -14,81 - 3380: -13,83 - 3381: -13,85 - 3382: -13,86 - 3383: -13,87 - 3384: -14,89 - 3385: -14,90 - 3386: -14,91 - 3387: -13,93 - 3388: -13,94 - 3389: -13,95 - 3478: -32,81 - 3479: -32,80 - 3504: -14,90 - 3557: -21,58 - 3558: -21,57 - 3559: -21,56 - 3566: -10,77 - 3568: -8,77 - 3570: -14,77 - 3578: -8,84 - 3579: -10,84 - 3580: -14,84 - 3586: -32,84 - 3587: -28,84 - 3590: -26,84 - 3599: -32,77 - 3600: -28,77 - 3601: -26,77 - 3619: 5,70 - 3620: 5,71 - 3621: 5,72 - 3622: 5,73 - 3623: 5,74 - 3624: 5,75 - 3625: 5,75 - 3626: 5,76 - 3627: 5,78 - 3628: 4,80 - 3629: 4,81 - 3630: 5,83 - 3658: 4,77 - 3662: 4,84 - 3664: 4,84 - 3773: 4,57 - 3820: 9,68 - 4169: -17,14 - 4170: -17,15 - 4310: 16,16 - 4311: 16,17 - 4312: 16,18 - 4313: 16,19 - 4314: 16,20 - 4322: 16,13 - 4323: 16,12 - 4324: 16,11 - 4325: 16,10 - 4326: 16,8 - 4327: 16,10 - 4328: 16,9 - 4329: 16,7 - 4330: 16,6 - 4331: 16,4 - 4332: 16,5 - 4333: 16,3 - 4334: 16,2 - 4335: 16,0 - 4336: 16,-1 - 4337: 16,1 - 4338: 16,-2 - 4660: 19,24 - 5096: 32,28 - 5097: 32,27 - 5098: 32,26 - 5099: 32,26 - 5125: 37,30 - 5130: 36,28 - 5131: 36,27 - 5210: 16,-6 - 5211: 16,-5 - 5212: 16,-3 - 5260: -31,79 - 5261: -31,80 - 5262: -31,81 - 5263: -31,81 - 5264: -31,82 - 5265: -31,82 - 5266: -31,88 - 5267: -31,89 - 5268: -31,89 - 5269: -31,90 - 5270: -31,91 - 5271: -31,92 - 5272: -31,92 - 5286: -13,79 - 5287: -13,80 - 5288: -13,81 - 5289: -13,81 - 5290: -13,82 - 5291: -13,82 - 5292: -13,88 - 5293: -13,88 - 5294: -13,89 - 5295: -13,90 - 5296: -13,91 - 5297: -13,91 - 5306: -13,92 - 5307: -13,92 - 5349: 5,79 - 5350: 5,80 - 5351: 5,81 - 5352: 5,81 - 5353: 5,81 - 5354: 5,82 - 5356: 16,-7 - 5525: -17,4 - 5526: -17,-1 - 5539: -20,-8 - 5540: -20,-9 - 5541: -20,-10 - 5542: -20,-10 - 5543: -20,-11 - 5544: -20,-12 - 5545: -20,-13 - 5546: -20,-14 - 5612: -17,-8 - 5640: 15,-8 - 5776: 15,-4 - 5784: 7,-5 - 6102: 16,-18 - 6103: 16,-17 - 6104: 16,-16 - 6105: 16,-15 - 6106: 16,-14 - 6107: 16,-13 - 6108: 16,-12 - 6109: 16,-11 - 6136: -17,-19 - 6137: -17,-20 - 6138: -17,-21 - 6156: -17,-19 - 6247: -6,-15 - 6248: -6,-16 - 6263: -3,-19 - 6264: -3,-20 - 6265: -3,-21 - 6272: 1,-21 - 6273: 1,-20 - 6274: 1,-19 - 6287: 15,-21 - 6288: 15,-20 - 6289: 15,-19 - 6322: -3,-16 - 6349: 6,-12 - 6350: 6,-13 - 6351: 6,-14 - 6352: 6,-15 - 6353: 6,-15 - 6354: 6,-16 - 6369: 11,-16 - 6386: 12,-17 - 6392: 12,-15 - 6431: -20,-19 - 6432: -20,-19 - 6433: -20,-19 - 6434: -20,-19 - 6435: -20,-19 - 6768: -17,-1 - 6790: -43,22 - 6791: -44,20 - 6792: -44,20 - 6793: -44,19 - 6794: -44,19 - 6795: -44,17 - 6796: -44,16 - 6864: -38,14 - 6865: -38,13 - 6866: -38,12 - 6867: -38,12 - 6868: -38,11 - 6869: -38,10 - 6870: -38,10 - 6903: -21,11 - 6904: -21,12 - 6926: -29,14 - 6927: -29,14 - 6928: -29,13 - 6929: -29,12 - 6930: -29,11 - 6931: -29,11 - 6932: -29,10 - 6933: -29,9 - 7036: 26,6 - 7037: 26,5 - 7038: 26,4 - 7041: 19,4 - 7042: 19,5 - 7043: 19,6 - 7055: 20,9 - 7089: 19,-12 - 7090: 19,-11 - 7091: 19,-10 - 7098: 26,-12 - 7099: 26,-11 - 7100: 26,-10 - 7116: 19,-3 - 7130: 25,-1 - 7131: 25,0 - 7132: 25,1 - 7133: 25,2 - 7161: 25,-3 - 7162: 25,-4 - 7163: 25,-5 - 7164: 25,-5 - 7165: 25,-6 - 7304: 28,10 - 7345: 33,4 - 7346: 33,6 - 7980: 79,-21 - 7981: 79,-20 - 7994: 78,-22 - 7995: 78,-19 - 7996: 82,-19 - 7997: 82,-22 - 8002: 66,-19 - 8005: 66,-22 - 8143: 32,-12 - 8144: 32,-10 - 8145: 32,-10 - 8155: 33,-11 - 8156: 33,-13 - 8157: 33,-13 - 8158: 33,-15 - 8167: 33,-9 - 8168: 33,-8 - 8202: 33,-7 - 8275: 42,-8 - 8276: 42,-8 - 8318: 41,-17 - 8324: 39,-17 - 8325: 39,-17 - 8338: 38,-20 - 8339: 38,-20 - 8392: 42,-19 - 8393: 42,-21 - 8414: 54,-21 - 8415: 54,-21 - 8416: 54,-19 - 8417: 54,-19 - 8455: 55,-20 - 8456: 55,-22 - 8457: 55,-23 - 8458: 55,-23 - 8459: 55,-24 - 8460: 55,-24 - 8463: 57,-20 - 8464: 57,-21 - 8567: 55,-28 - 8568: 55,-27 - 8569: 55,-27 - 8570: 55,-26 - 8571: 55,-25 - 8572: 55,-30 - 8573: 55,-17 - 8574: 55,-18 - 8575: 55,-16 - 8576: 55,-15 - 8577: 55,-15 - 8578: 55,-14 - 8579: 55,-13 - 8580: 55,-13 - 8581: 55,-12 - 8653: 64,-19 - 8654: 64,-22 - 8655: 64,-22 - 8797: -2,-23 - 8798: -2,-24 - 8799: -2,-24 - 8800: -2,-27 - 8801: -2,-28 - 8813: 1,-26 - 8814: 1,-25 - 8837: -2,-30 - 8838: -2,-31 - 8839: -2,-32 - 8840: -2,-33 - 8886: -7,-28 - 8887: -15,-28 - 8888: -15,-27 - 8889: -15,-27 - 8907: -14,-23 - 8908: -14,-23 - 8909: -7,-23 - 8951: -7,-28 - 9159: 0,-74 - 9160: 0,-73 - 9161: 0,-73 - 9162: 0,-72 - 9163: 0,-72 - 9164: 0,-68 - 9165: 0,-68 - 9166: 0,-67 - 9167: 0,-67 - 9182: -11,-65 - 9183: -11,-65 - 9184: -11,-68 - 9185: -11,-69 - 9186: -11,-70 - 9187: -11,-71 - 9188: -11,-72 - 9189: -11,-72 - 9190: -11,-73 - 9191: -11,-74 - 9192: -11,-75 - 9193: -11,-76 - 9194: -11,-77 - 9200: -9,-79 - 9201: -9,-80 - 9202: -9,-81 - 9203: -9,-81 - 9249: -7,-71 - 9250: -7,-70 - 9251: -7,-69 - 9252: -7,-69 - 9280: -3,-59 - 9283: -3,-61 - 9284: -3,-61 - 9310: -2,-53 - 9311: -2,-52 - 9312: -2,-52 - 9313: -2,-54 - 9314: -2,-54 - 9315: -2,-51 - 9316: -2,-50 - 9317: -2,-49 - 9318: -2,-49 - 9319: -2,-47 - 9320: -2,-47 - 9321: -2,-46 - 9322: -2,-46 - 9323: -2,-45 - 9324: -2,-45 - 9325: -2,-44 - 9326: -2,-44 - 9327: -2,-43 - 9328: -2,-42 - 9329: -2,-39 - 9330: -2,-38 - 9331: -2,-38 - 9332: 1,-45 - 9347: -2,-56 - 9348: -2,-55 - 9349: -2,-55 - 9418: -42,-15 - 9419: -42,-16 - 9525: 2,-35 - 9586: 1,-39 - 9593: -11,-65 - 10282: 1,-44 - 10307: 1,-51 - 10332: 3,-52 - 10333: 3,-52 - 10334: 3,-51 - 10335: 3,-50 - 10454: 2,-60 - 10455: 2,-60 - 10488: 3,-67 - 10489: 3,-66 - 10490: 3,-75 - 10491: 3,-76 - 10498: 4,-84 - 10499: 4,-85 - 10500: 4,-86 - 10507: 2,-60 - 10541: 43,-41 - 10542: 43,-41 - 10543: 43,-40 - 10544: 43,-39 - 10575: 50,-42 - 10576: 50,-42 - 11160: -60,-42 - 11161: -60,-37 - 11162: -60,-35 - 11163: -60,-35 - 11214: -78,-31 - 11215: -78,-20 - 11220: -78,-31 - 11258: -6,-86 - 11259: -6,-84 - 11260: -6,-85 - 11261: -4,-86 - 11262: -4,-85 - 11263: -4,-84 - 11264: 2,-86 - 11265: 2,-85 - 11266: 2,-84 - 11330: -15,-32 - 11331: -15,-31 - 11332: -15,-30 - 11746: -39,-56 - 11747: -39,-56 - 11756: -42,-53 - 11757: -42,-54 - 11758: -42,-55 - 11762: -36,-53 - 11787: -26,-51 - 12458: -18,-78 - 13277: -44,10 - 13327: -38,-62 - 13328: -38,-61 - 14309: -45,13 - 14836: 6,22 - 14837: 6,23 - 14838: 6,24 - 14863: -8,24 - 14864: -8,23 - 14865: -8,22 - 14867: -20,24 - 14868: -20,23 - 14869: -20,22 - 15137: 43,-20 - 15265: -1,-70 - 15299: -43,5 - 15300: -43,6 - 15312: -40,6 - 15313: -40,5 - 15314: -40,4 - 16303: -60,-49 - 16608: -61,-13 - 16609: -61,-14 - 16639: -60,-17 - 16722: -61,-2 - 16723: -61,-3 - 16742: -53,4 - 16743: -53,5 - 16744: -53,6 - 16757: -56,-9 - 16758: -56,-7 - 17422: 9,75 - 17423: 9,76 - 17424: 9,80 - 17425: 9,81 - 17832: -44,23 - 18386: -17,-10 - 18387: -17,-9 - 18450: 15,-10 - 18451: 15,-9 - 18452: 15,-8 - 19802: -23,13 - 19803: -23,12 - 19804: -23,12 - 19805: -23,11 - 19806: -23,10 - 19917: -15,4 - 19924: -16,0 - 19925: -16,1 - 19926: -16,2 - 19927: -16,3 - 19987: 61,22 - 19988: 61,23 - 19989: 61,24 - 19993: 71,26 - 20048: -21,4 - 20049: -21,5 - 20050: -21,6 - 20101: -20,19 - 20102: -20,18 - 20103: -20,16 - 20104: -20,15 - 20105: -20,15 - 20106: -20,14 - 20107: -20,14 - 20108: -20,13 - 20123: -20,2 - 20124: -20,2 - 20125: -20,1 - 20126: -20,0 - 20127: -20,-1 - 20129: -20,-4 - 20130: -20,-5 - 20131: -20,-6 - 20189: -20,3 - 20191: -17,-1 - 20192: -17,4 - 20193: -17,15 - 20194: -17,14 - 20195: -20,14 - 20196: -20,2 - 20197: -20,3 - 20198: -20,1 - 20199: -20,1 - 20200: -20,8 - 20201: -20,9 - 20202: -20,9 - 20203: -20,10 - 20204: -20,9 - 20205: -20,8 - 20206: -20,8 - 21261: 19,14 - 21262: 19,15 - 21264: 28,11 - 23888: -21,-3 - 23889: -21,-2 - 23907: -33,-9 - 23908: -33,-8 - 23909: -33,-8 - 23910: -33,-8 - 23911: -33,-7 - 23912: -33,-6 - 23913: -33,-6 - 23914: -33,-5 - 23915: -33,-4 - 23916: -33,-4 - 23917: -33,-3 - 23918: -33,-2 - 23919: -33,-2 - 23920: -33,-1 - 23921: -33,-1 - 23922: -33,0 - 23923: -33,1 - 23924: -33,2 - 23925: -33,2 - 23927: -31,1 - 23952: -30,-15 - 23953: -30,-14 - 23954: -30,-13 - 23955: -30,-13 - 23956: -30,-12 - 23968: -35,-15 - 23969: -35,-14 - 23970: -35,-13 - 23971: -35,-12 + 2128: -14,48 + 2129: -14,50 + 2131: -23,49 + 2135: -23,46 + 2143: -24,43 + 2144: -24,44 + 2148: -24,42 + 2153: -14,46 + 2154: -14,45 + 2155: -14,43 + 2156: -14,44 + 2157: -14,42 + 2158: -14,41 + 2159: -14,40 + 2160: -14,39 + 2161: -14,38 + 2162: -14,37 + 2163: -14,36 + 2167: -23,29 + 2170: -21,27 + 2171: -21,27 + 2199: -27,31 + 2257: -29,36 + 2258: -29,35 + 2259: -29,34 + 2272: -34,37 + 2273: -34,36 + 2274: -34,35 + 2275: -34,34 + 2276: -34,33 + 2289: -14,46 + 2291: -14,36 + 2347: -14,46 + 2459: -14,46 + 2460: -14,36 + 2605: -13,49 + 2638: -2,51 + 2643: -1,48 + 2953: -7,59 + 3030: -7,60 + 3031: -7,61 + 3032: -7,62 + 3033: -7,64 + 3034: -7,65 + 3053: -7,66 + 3056: -21,59 + 3057: -21,60 + 3058: -21,61 + 3059: -21,61 + 3060: -21,62 + 3061: -21,63 + 3062: -21,65 + 3063: -21,65 + 3064: -21,66 + 3187: -32,68 + 3189: -31,70 + 3190: -31,71 + 3191: -31,72 + 3192: -31,73 + 3193: -31,74 + 3194: -31,75 + 3195: -31,76 + 3196: -31,78 + 3197: -31,83 + 3198: -31,85 + 3199: -31,86 + 3200: -32,90 + 3201: -32,89 + 3202: -32,91 + 3203: -31,93 + 3204: -31,94 + 3205: -31,95 + 3242: -13,70 + 3243: -13,71 + 3244: -13,72 + 3245: -13,73 + 3246: -13,75 + 3247: -13,76 + 3248: -13,78 + 3249: -14,80 + 3250: -14,81 + 3251: -13,83 + 3252: -13,85 + 3253: -13,86 + 3254: -13,87 + 3255: -14,89 + 3256: -14,90 + 3257: -14,91 + 3258: -13,93 + 3259: -13,94 + 3260: -13,95 + 3349: -32,81 + 3350: -32,80 + 3373: -14,90 + 3424: -21,58 + 3425: -21,57 + 3426: -21,56 + 3433: -10,77 + 3435: -8,77 + 3437: -14,77 + 3445: -8,84 + 3446: -10,84 + 3447: -14,84 + 3453: -32,84 + 3454: -28,84 + 3457: -26,84 + 3466: -32,77 + 3467: -28,77 + 3468: -26,77 + 3486: 5,70 + 3487: 5,71 + 3488: 5,72 + 3489: 5,73 + 3490: 5,74 + 3491: 5,75 + 3492: 5,75 + 3493: 5,76 + 3494: 5,78 + 3495: 4,80 + 3496: 4,81 + 3497: 5,83 + 3525: 4,77 + 3529: 4,84 + 3531: 4,84 + 3640: 4,57 + 3687: 9,68 + 4019: -17,14 + 4020: -17,15 + 4160: 16,16 + 4161: 16,17 + 4162: 16,18 + 4163: 16,19 + 4164: 16,20 + 4172: 16,13 + 4173: 16,12 + 4174: 16,11 + 4175: 16,10 + 4176: 16,8 + 4177: 16,10 + 4178: 16,9 + 4179: 16,7 + 4180: 16,6 + 4181: 16,4 + 4182: 16,5 + 4183: 16,3 + 4184: 16,2 + 4185: 16,0 + 4186: 16,-1 + 4187: 16,1 + 4188: 16,-2 + 4510: 19,24 + 4946: 32,28 + 4947: 32,27 + 4948: 32,26 + 4949: 32,26 + 4975: 37,30 + 4980: 36,28 + 4981: 36,27 + 5060: 16,-6 + 5061: 16,-5 + 5062: 16,-3 + 5110: -31,79 + 5111: -31,80 + 5112: -31,81 + 5113: -31,81 + 5114: -31,82 + 5115: -31,82 + 5116: -31,88 + 5117: -31,89 + 5118: -31,89 + 5119: -31,90 + 5120: -31,91 + 5121: -31,92 + 5122: -31,92 + 5136: -13,79 + 5137: -13,80 + 5138: -13,81 + 5139: -13,81 + 5140: -13,82 + 5141: -13,82 + 5142: -13,88 + 5143: -13,88 + 5144: -13,89 + 5145: -13,90 + 5154: -13,92 + 5155: -13,92 + 5197: 5,79 + 5198: 5,80 + 5199: 5,81 + 5200: 5,81 + 5201: 5,81 + 5202: 5,82 + 5204: 16,-7 + 5373: -17,4 + 5374: -17,-1 + 5387: -20,-8 + 5388: -20,-9 + 5389: -20,-10 + 5390: -20,-10 + 5391: -20,-11 + 5392: -20,-12 + 5393: -20,-13 + 5394: -20,-14 + 5460: -17,-8 + 5488: 15,-8 + 5624: 15,-4 + 5632: 7,-5 + 5950: 16,-18 + 5951: 16,-17 + 5952: 16,-16 + 5953: 16,-15 + 5954: 16,-14 + 5955: 16,-13 + 5956: 16,-12 + 5957: 16,-11 + 5984: -17,-19 + 5985: -17,-20 + 5986: -17,-21 + 6004: -17,-19 + 6095: -6,-15 + 6096: -6,-16 + 6111: -3,-19 + 6112: -3,-20 + 6113: -3,-21 + 6120: 1,-21 + 6121: 1,-20 + 6122: 1,-19 + 6135: 15,-21 + 6136: 15,-20 + 6137: 15,-19 + 6170: -3,-16 + 6197: 6,-12 + 6198: 6,-13 + 6199: 6,-14 + 6200: 6,-15 + 6201: 6,-15 + 6202: 6,-16 + 6217: 11,-16 + 6234: 12,-17 + 6240: 12,-15 + 6279: -20,-19 + 6280: -20,-19 + 6281: -20,-19 + 6282: -20,-19 + 6283: -20,-19 + 6616: -17,-1 + 6638: -43,22 + 6639: -44,20 + 6640: -44,20 + 6641: -44,19 + 6642: -44,19 + 6643: -44,17 + 6644: -44,16 + 6712: -38,14 + 6713: -38,13 + 6714: -38,12 + 6715: -38,12 + 6716: -38,11 + 6717: -38,10 + 6718: -38,10 + 6751: -21,11 + 6752: -21,12 + 6774: -29,14 + 6775: -29,14 + 6776: -29,13 + 6777: -29,12 + 6778: -29,11 + 6779: -29,11 + 6780: -29,10 + 6781: -29,9 + 6884: 26,6 + 6885: 26,5 + 6886: 26,4 + 6889: 19,4 + 6890: 19,5 + 6891: 19,6 + 6903: 20,9 + 6937: 19,-12 + 6938: 19,-11 + 6939: 19,-10 + 6946: 26,-12 + 6947: 26,-11 + 6948: 26,-10 + 6964: 19,-3 + 6978: 25,-1 + 6979: 25,0 + 6980: 25,1 + 6981: 25,2 + 7009: 25,-3 + 7010: 25,-4 + 7011: 25,-5 + 7012: 25,-5 + 7013: 25,-6 + 7152: 28,10 + 7193: 33,4 + 7194: 33,6 + 7828: 79,-21 + 7829: 79,-20 + 7842: 78,-22 + 7843: 78,-19 + 7844: 82,-19 + 7845: 82,-22 + 7850: 66,-19 + 7853: 66,-22 + 7989: 32,-12 + 7990: 32,-10 + 7991: 32,-10 + 8001: 33,-11 + 8002: 33,-13 + 8003: 33,-13 + 8004: 33,-15 + 8013: 33,-9 + 8014: 33,-8 + 8048: 33,-7 + 8121: 42,-8 + 8122: 42,-8 + 8164: 41,-17 + 8170: 39,-17 + 8171: 39,-17 + 8184: 38,-20 + 8185: 38,-20 + 8238: 42,-19 + 8239: 42,-21 + 8260: 54,-21 + 8261: 54,-21 + 8262: 54,-19 + 8263: 54,-19 + 8299: 55,-20 + 8300: 55,-22 + 8301: 55,-23 + 8302: 55,-23 + 8303: 55,-24 + 8304: 55,-24 + 8307: 57,-20 + 8308: 57,-21 + 8409: 55,-28 + 8410: 55,-27 + 8411: 55,-27 + 8412: 55,-26 + 8413: 55,-25 + 8414: 55,-30 + 8415: 55,-17 + 8416: 55,-18 + 8417: 55,-16 + 8418: 55,-15 + 8419: 55,-15 + 8420: 55,-14 + 8421: 55,-13 + 8422: 55,-13 + 8423: 55,-12 + 8491: 64,-19 + 8492: 64,-22 + 8493: 64,-22 + 8635: -2,-23 + 8636: -2,-24 + 8637: -2,-24 + 8638: -2,-27 + 8639: -2,-28 + 8651: 1,-26 + 8652: 1,-25 + 8675: -2,-30 + 8676: -2,-31 + 8677: -2,-32 + 8678: -2,-33 + 8724: -7,-28 + 8725: -15,-28 + 8726: -15,-27 + 8727: -15,-27 + 8745: -14,-23 + 8746: -14,-23 + 8747: -7,-23 + 8789: -7,-28 + 8997: 0,-74 + 8998: 0,-73 + 8999: 0,-73 + 9000: 0,-72 + 9001: 0,-72 + 9002: 0,-68 + 9003: 0,-68 + 9004: 0,-67 + 9005: 0,-67 + 9020: -11,-65 + 9021: -11,-65 + 9022: -11,-68 + 9023: -11,-69 + 9024: -11,-70 + 9025: -11,-71 + 9026: -11,-72 + 9027: -11,-72 + 9028: -11,-73 + 9029: -11,-74 + 9030: -11,-75 + 9031: -11,-76 + 9032: -11,-77 + 9038: -9,-79 + 9039: -9,-80 + 9040: -9,-81 + 9041: -9,-81 + 9087: -7,-71 + 9088: -7,-70 + 9089: -7,-69 + 9090: -7,-69 + 9118: -3,-59 + 9121: -3,-61 + 9122: -3,-61 + 9148: -2,-53 + 9149: -2,-52 + 9150: -2,-52 + 9151: -2,-54 + 9152: -2,-54 + 9153: -2,-51 + 9154: -2,-50 + 9155: -2,-49 + 9156: -2,-49 + 9157: -2,-47 + 9158: -2,-47 + 9159: -2,-46 + 9160: -2,-46 + 9161: -2,-45 + 9162: -2,-45 + 9163: -2,-44 + 9164: -2,-44 + 9165: -2,-43 + 9166: -2,-42 + 9167: -2,-39 + 9168: -2,-38 + 9169: -2,-38 + 9170: 1,-45 + 9185: -2,-56 + 9186: -2,-55 + 9187: -2,-55 + 9256: -42,-15 + 9257: -42,-16 + 9363: 2,-35 + 9424: 1,-39 + 9431: -11,-65 + 10120: 1,-44 + 10145: 1,-51 + 10170: 3,-52 + 10171: 3,-52 + 10172: 3,-51 + 10173: 3,-50 + 10292: 2,-60 + 10293: 2,-60 + 10326: 3,-67 + 10327: 3,-66 + 10328: 3,-75 + 10329: 3,-76 + 10336: 4,-84 + 10337: 4,-85 + 10338: 4,-86 + 10345: 2,-60 + 10379: 43,-41 + 10380: 43,-41 + 10381: 43,-40 + 10382: 43,-39 + 10413: 50,-42 + 10414: 50,-42 + 10657: -60,-42 + 10658: -60,-37 + 10659: -60,-35 + 10660: -60,-35 + 10711: -78,-31 + 10712: -78,-20 + 10717: -78,-31 + 10755: -6,-86 + 10756: -6,-84 + 10757: -6,-85 + 10758: -4,-86 + 10759: -4,-85 + 10760: -4,-84 + 10761: 2,-86 + 10762: 2,-85 + 10763: 2,-84 + 10827: -15,-32 + 10828: -15,-31 + 10829: -15,-30 + 11231: -39,-56 + 11232: -39,-56 + 11241: -42,-53 + 11242: -42,-54 + 11243: -42,-55 + 11247: -36,-53 + 11272: -26,-51 + 11796: -18,-78 + 12333: -44,10 + 12383: -38,-62 + 12384: -38,-61 + 13365: -45,13 + 13892: 6,22 + 13893: 6,23 + 13894: 6,24 + 13919: -8,24 + 13920: -8,23 + 13921: -8,22 + 13923: -20,24 + 13924: -20,23 + 13925: -20,22 + 14193: 43,-20 + 14321: -1,-70 + 14348: -43,5 + 14349: -43,6 + 14361: -40,6 + 14362: -40,5 + 14363: -40,4 + 15352: -60,-49 + 15657: -61,-13 + 15658: -61,-14 + 15688: -60,-17 + 15771: -61,-2 + 15772: -61,-3 + 15791: -53,4 + 15792: -53,5 + 15793: -53,6 + 15806: -56,-9 + 15807: -56,-7 + 16471: 9,75 + 16472: 9,76 + 16473: 9,80 + 16474: 9,81 + 16881: -44,23 + 17435: -17,-10 + 17436: -17,-9 + 17499: 15,-10 + 17500: 15,-9 + 17501: 15,-8 + 18808: -23,13 + 18809: -23,12 + 18810: -23,12 + 18811: -23,11 + 18812: -23,10 + 18923: -15,4 + 18930: -16,0 + 18931: -16,1 + 18932: -16,2 + 18933: -16,3 + 18993: 61,22 + 18994: 61,23 + 18995: 61,24 + 18999: 71,26 + 19054: -21,4 + 19055: -21,5 + 19056: -21,6 + 19107: -20,19 + 19108: -20,18 + 19109: -20,16 + 19110: -20,15 + 19111: -20,15 + 19112: -20,14 + 19113: -20,14 + 19114: -20,13 + 19129: -20,2 + 19130: -20,2 + 19131: -20,1 + 19132: -20,0 + 19133: -20,-1 + 19135: -20,-4 + 19136: -20,-5 + 19137: -20,-6 + 19195: -20,3 + 19197: -17,-1 + 19198: -17,4 + 19199: -17,15 + 19200: -17,14 + 19201: -20,14 + 19202: -20,2 + 19203: -20,3 + 19204: -20,1 + 19205: -20,1 + 19206: -20,8 + 19207: -20,9 + 19208: -20,9 + 19209: -20,10 + 19210: -20,9 + 19211: -20,8 + 19212: -20,8 + 20267: 19,14 + 20268: 19,15 + 20270: 28,11 + 22894: -21,-3 + 22895: -21,-2 + 22913: -33,-9 + 22914: -33,-8 + 22915: -33,-8 + 22916: -33,-8 + 22917: -33,-7 + 22918: -33,-6 + 22919: -33,-6 + 22920: -33,-5 + 22921: -33,-4 + 22922: -33,-4 + 22923: -33,-3 + 22924: -33,-2 + 22925: -33,-2 + 22926: -33,-1 + 22927: -33,-1 + 22928: -33,0 + 22929: -33,1 + 22930: -33,2 + 22931: -33,2 + 22933: -31,1 + 22958: -30,-15 + 22959: -30,-14 + 22960: -30,-13 + 22961: -30,-13 + 22962: -30,-12 + 22974: -35,-15 + 22975: -35,-14 + 22976: -35,-13 + 22977: -35,-12 + 23776: -21,64 + 23778: -13,91 + 23781: -13,74 + 23785: -7,63 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 908: 28,-7 - 909: 28,-6 - 910: 28,-5 - 911: 28,-4 - 912: 28,-3 - 913: 28,-1 - 914: 28,0 - 917: 30,2 - 4064: -20,19 - 4065: -20,18 - 4066: -20,16 - 4067: -20,15 - 4068: -20,14 - 4069: -20,14 - 4070: -20,13 - 4071: -20,10 - 4072: -20,9 - 4073: -20,8 - 4074: -20,8 - 4075: -20,7 + 795: 28,-7 + 796: 28,-6 + 797: 28,-5 + 798: 28,-4 + 799: 28,-3 + 800: 28,-1 + 801: 28,0 + 804: 30,2 + 3914: -20,19 + 3915: -20,18 + 3916: -20,16 + 3917: -20,15 + 3918: -20,14 + 3919: -20,14 + 3920: -20,13 + 3921: -20,10 + 3922: -20,9 + 3923: -20,8 + 3924: -20,8 + 3925: -20,7 - node: color: '#3EB388FF' id: BrickTileWhiteCornerNe decals: - 21577: -54,37 - 21583: -54,34 - 21595: -53,24 - 21611: -52,18 - 21648: -47,42 - 21713: -44,45 - 21789: -58,54 - 21794: -58,58 + 20583: -54,37 + 20589: -54,34 + 20601: -53,24 + 20617: -52,18 + 20654: -47,42 + 20719: -44,45 + 20795: -58,54 + 20800: -58,58 - node: color: '#439909FF' id: BrickTileWhiteCornerNe decals: - 24629: 28,-60 - 24643: 28,-55 - 24665: 36,-60 - 24666: 41,-60 - 24731: 32,-66 - 24750: 42,-70 + 23628: 28,-60 + 23642: 28,-55 + 23664: 36,-60 + 23665: 41,-60 + 23730: 32,-66 + 23749: 42,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: - 23085: 18,-24 - 23148: 14,-34 - 23226: 38,-34 - 23387: 38,-44 - 23408: 38,-38 - 23451: 24,-43 - 23523: 10,-43 - 23531: 6,-43 - 23566: 14,-38 - 23579: 14,-43 - 23620: 24,-38 - 23719: 22,-25 - 23729: 26,-27 - 23738: 32,-29 - 23758: 31,-47 - 23783: -5,-58 - 23805: 7,65 + 22091: 18,-24 + 22154: 14,-34 + 22232: 38,-34 + 22393: 38,-44 + 22414: 38,-38 + 22457: 24,-43 + 22529: 10,-43 + 22537: 6,-43 + 22572: 14,-38 + 22585: 14,-43 + 22626: 24,-38 + 22725: 22,-25 + 22735: 26,-27 + 22744: 32,-29 + 22764: 31,-47 + 22789: -5,-58 + 22811: 7,65 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNe decals: - 3892: 27,67 - 9411: -37,2 - 17808: -54,34 - 17810: -54,37 - 17838: -47,42 - 17902: -44,45 - 17925: -58,54 - 17937: -58,58 - 18025: -53,24 + 3759: 27,67 + 9249: -37,2 + 16857: -54,34 + 16859: -54,37 + 16887: -47,42 + 16951: -44,45 + 16974: -58,54 + 16986: -58,58 + 17074: -53,24 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNe decals: - 9499: 38,-34 - 9507: 18,-24 - 9669: 14,-34 - 9861: 24,-38 - 9896: 38,-38 - 9897: 38,-44 - 10027: 14,-38 - 10051: 24,-46 - 10089: 24,-43 - 10113: 34,-47 - 10154: 31,-47 - 10252: 10,-43 - 10256: 6,-43 - 10294: 14,-43 - 19282: 7,65 - 19312: -5,-58 - 19662: 22,-25 - 19670: 26,-27 - 19676: 32,-29 + 9337: 38,-34 + 9345: 18,-24 + 9507: 14,-34 + 9699: 24,-38 + 9734: 38,-38 + 9735: 38,-44 + 9865: 14,-38 + 9889: 24,-46 + 9927: 24,-43 + 9951: 34,-47 + 9992: 31,-47 + 10090: 10,-43 + 10094: 6,-43 + 10132: 14,-43 + 18326: 7,65 + 18356: -5,-58 + 18706: 22,-25 + 18714: 26,-27 + 18720: 32,-29 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe decals: - 21906: 10,31 - 21967: 11,37 - 22008: 11,40 - 22025: 11,46 - 22049: 21,39 - 22127: 13,54 - 22224: 22,38 - 22238: 15,35 - 22392: 17,32 - 22464: 29,38 - 22477: 29,44 + 20912: 10,31 + 20973: 11,37 + 21014: 11,40 + 21031: 11,46 + 21055: 21,39 + 21133: 13,54 + 21230: 22,38 + 21244: 15,35 + 21398: 17,32 + 21470: 29,38 + 21483: 29,44 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNe decals: - 2907: -28,55 - 2991: -37,50 + 2784: -28,55 + 2868: -37,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNe decals: - 5137: 43,30 - 11601: -4,-30 - 11815: -33,-40 - 11996: -22,-24 - 12156: -13,-56 - 12186: -4,-46 + 4987: 43,30 + 11098: -4,-30 + 11300: -33,-40 + 11334: -22,-24 + 11494: -13,-56 + 11524: -4,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNe decals: - 656: -21,-56 + 551: -21,-56 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNe decals: - 22794: -22,-24 - 22900: -4,-30 - 22962: -4,-46 - 23031: -13,-56 + 21800: -22,-24 + 21906: -4,-30 + 21968: -4,-46 + 22037: -13,-56 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNe decals: - 19147: 70,16 - 19161: 63,-3 - 19171: 66,-3 + 18191: 70,16 + 18205: 63,-3 + 18215: 66,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNe decals: - 2701: -9,54 - 2809: -5,34 - 3803: 12,70 + 2578: -9,54 + 2686: -5,34 + 3670: 12,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNe decals: - 4376: 10,31 - 4399: 11,37 - 4460: 17,32 - 4548: 11,40 - 4554: 11,46 - 4569: 21,39 - 4598: 22,38 - 4623: 27,32 - 4738: 29,38 - 4757: 15,35 - 4781: 29,44 - 4905: 13,54 - 5153: 43,30 + 4226: 10,31 + 4249: 11,37 + 4310: 17,32 + 4398: 11,40 + 4404: 11,46 + 4419: 21,39 + 4448: 22,38 + 4473: 27,32 + 4588: 29,38 + 4607: 15,35 + 4631: 29,44 + 4755: 13,54 + 5003: 43,30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 16824: -49,-1 - 16894: -63,2 - 16911: -57,-6 - 16947: -51,-6 - 16975: -55,-12 - 17011: -47,-13 - 17045: -47,15 - 17047: -61,15 - 17130: -68,16 - 17226: -57,19 - 17262: -45,-6 - 17283: -63,-6 - 17362: 11,88 - 17369: 7,90 - 17400: 12,82 - 17446: -62,10 - 17518: -66,2 - 17585: -70,12 - 17667: -76,1 - 17713: -67,-10 - 17748: -52,18 - 18088: -55,-1 + 15873: -49,-1 + 15943: -63,2 + 15960: -57,-6 + 15996: -51,-6 + 16024: -55,-12 + 16060: -47,-13 + 16094: -47,15 + 16096: -61,15 + 16179: -68,16 + 16275: -57,19 + 16311: -45,-6 + 16332: -63,-6 + 16411: 11,88 + 16418: 7,90 + 16449: 12,82 + 16495: -62,10 + 16567: -66,2 + 16634: -70,12 + 16716: -76,1 + 16762: -67,-10 + 16797: -52,18 + 17137: -55,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 855: 70,-41 - 970: 0,-15 - 1175: 49,-14 - 2060: -22,47 - 2141: -22,29 - 3844: 23,71 - 4152: -23,23 - 4153: -23,23 - 5563: -33,29 - 5565: -30,28 - 6707: -28,-11 - 6726: -28,-11 - 6958: -23,-15 - 8041: 57,-29 - 8042: 57,-16 - 8676: -6,-77 - 8681: -4,-80 - 9445: 74,-49 - 15256: -3,-69 - 15514: 95,-2 - 15599: 97,7 - 19627: 34,-15 - 24765: 41,-66 - 24766: 42,-67 + 742: 70,-41 + 853: 0,-15 + 1057: 49,-14 + 1940: -22,47 + 2020: -22,29 + 3711: 23,71 + 4002: -23,23 + 4003: -23,23 + 5411: -33,29 + 5413: -30,28 + 6555: -28,-11 + 6574: -28,-11 + 6806: -23,-15 + 7887: 57,-29 + 7888: 57,-16 + 8514: -6,-77 + 8519: -4,-80 + 9283: 74,-49 + 14312: -3,-69 + 14563: 95,-2 + 14648: 97,7 + 18671: 34,-15 + 23764: 41,-66 + 23765: 42,-67 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerNw decals: - 873: 72,-44 + 760: 72,-44 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 21213: -16,16 + 20219: -16,16 - node: color: '#3EB388FF' id: BrickTileWhiteCornerNw decals: - 21566: -57,37 - 21596: -50,23 - 21614: -55,18 - 21649: -50,42 - 21650: -51,38 - 21714: -47,55 - 21786: -60,54 - 21793: -60,58 + 20572: -57,37 + 20602: -50,23 + 20620: -55,18 + 20655: -50,42 + 20656: -51,38 + 20720: -47,55 + 20792: -60,54 + 20799: -60,58 - node: color: '#439909FF' id: BrickTileWhiteCornerNw decals: - 24630: 26,-60 - 24644: 26,-55 - 24664: 34,-60 - 24705: 38,-60 + 23629: 26,-60 + 23643: 26,-55 + 23663: 34,-60 + 23704: 38,-60 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: - 23087: 16,-24 - 23386: 36,-44 - 23413: 30,-38 - 23450: 20,-43 - 23527: 8,-43 - 23528: 2,-43 - 23560: 8,-38 - 23578: 12,-43 - 23616: 20,-38 - 23720: 20,-25 - 23730: 24,-27 - 23759: 30,-47 - 23784: -8,-58 - 23804: 5,65 + 22093: 16,-24 + 22392: 36,-44 + 22419: 30,-38 + 22456: 20,-43 + 22533: 8,-43 + 22534: 2,-43 + 22566: 8,-38 + 22584: 12,-43 + 22622: 20,-38 + 22726: 20,-25 + 22736: 24,-27 + 22765: 30,-47 + 22790: -8,-58 + 22810: 5,65 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNw decals: - 3895: 25,67 - 17788: -50,23 - 17818: -57,37 - 17837: -50,42 - 17848: -51,38 - 17849: -60,54 - 17850: -47,55 - 17938: -60,58 + 3762: 25,67 + 16837: -50,23 + 16867: -57,37 + 16886: -50,42 + 16897: -51,38 + 16898: -60,54 + 16899: -47,55 + 16987: -60,58 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNw decals: - 9506: 16,-24 - 9862: 20,-38 - 9898: 30,-38 - 9899: 36,-44 - 10028: 8,-38 - 10052: 20,-46 - 10087: 20,-43 - 10088: 20,-43 - 10114: 32,-47 - 10155: 30,-47 - 10253: 2,-43 - 10268: 8,-43 - 10293: 12,-43 - 19281: 5,65 - 19313: -8,-58 - 19663: 20,-25 - 19669: 24,-27 + 9344: 16,-24 + 9700: 20,-38 + 9736: 30,-38 + 9737: 36,-44 + 9866: 8,-38 + 9890: 20,-46 + 9925: 20,-43 + 9926: 20,-43 + 9952: 32,-47 + 9993: 30,-47 + 10091: 2,-43 + 10106: 8,-43 + 10131: 12,-43 + 18325: 5,65 + 18357: -8,-58 + 18707: 20,-25 + 18713: 24,-27 - node: color: '#A46106FF' id: BrickTileWhiteCornerNw decals: - 21875: 2,31 - 21928: 2,37 - 21996: 4,43 - 22011: 9,40 - 22024: 9,46 - 22048: 13,39 - 22116: 9,54 - 22145: 15,54 - 22237: 19,35 - 22309: 13,46 - 22447: 24,38 - 22478: 27,44 + 20881: 2,31 + 20934: 2,37 + 21002: 4,43 + 21017: 9,40 + 21030: 9,46 + 21054: 13,39 + 21122: 9,54 + 21151: 15,54 + 21243: 19,35 + 21315: 13,46 + 21453: 24,38 + 21484: 27,44 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNw decals: - 2896: -35,50 - 2901: -34,54 - 2906: -29,55 - 18279: -38,50 + 2773: -35,50 + 2778: -34,54 + 2783: -29,55 + 17328: -38,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNw decals: - 11520: -31,-34 - 11591: -10,-30 - 11816: -34,-40 - 11995: -24,-24 - 12141: -17,-50 - 12155: -20,-56 - 12187: -11,-49 - 12188: -7,-46 + 11017: -31,-34 + 11088: -10,-30 + 11301: -34,-40 + 11333: -24,-24 + 11479: -17,-50 + 11493: -20,-56 + 11525: -11,-49 + 11526: -7,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNw decals: - 659: -25,-56 + 554: -25,-56 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNw decals: - 22670: -17,-50 - 22795: -24,-24 - 22804: -31,-34 - 22904: -10,-30 - 22963: -7,-46 - 22972: -11,-49 - 23032: -20,-56 + 21676: -17,-50 + 21801: -24,-24 + 21810: -31,-34 + 21910: -10,-30 + 21969: -7,-46 + 21978: -11,-49 + 22038: -20,-56 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNw decals: - 19146: 68,16 - 19160: 60,-3 + 18190: 68,16 + 18204: 60,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNw decals: - 2705: -13,54 - 2808: -7,34 - 3804: 10,70 + 2582: -13,54 + 2685: -7,34 + 3671: 10,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNw decals: - 4369: 2,31 - 4395: 2,37 - 4533: 4,43 - 4547: 9,40 - 4555: 9,46 - 4570: 13,39 - 4608: 13,46 - 4622: 19,32 - 4729: 24,38 - 4758: 19,35 - 4782: 27,44 - 4904: 9,54 - 4929: 15,54 - 19951: 33,39 + 4219: 2,31 + 4245: 2,37 + 4383: 4,43 + 4397: 9,40 + 4405: 9,46 + 4420: 13,39 + 4458: 13,46 + 4472: 19,32 + 4579: 24,38 + 4608: 19,35 + 4632: 27,44 + 4754: 9,54 + 4779: 15,54 + 18957: 33,39 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerNw decals: - 4005: -40,54 - 9535: 2,-30 + 3872: -40,54 + 9373: 2,-30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 16826: -51,-1 - 16832: -61,-1 - 16842: -61,2 - 16884: -59,15 - 16893: -64,2 - 16910: -61,-6 - 16972: -61,-12 - 17140: -78,16 - 17225: -61,19 - 17258: -49,-6 - 17326: -77,-6 - 17361: 9,88 - 17452: -65,10 - 17519: -74,2 - 17582: -74,12 - 17633: -78,7 - 17671: -79,1 - 17710: -73,-10 - 17747: -55,18 + 15875: -51,-1 + 15881: -61,-1 + 15891: -61,2 + 15933: -59,15 + 15942: -64,2 + 15959: -61,-6 + 16021: -61,-12 + 16189: -78,16 + 16274: -61,19 + 16307: -49,-6 + 16375: -77,-6 + 16410: 9,88 + 16501: -65,10 + 16568: -74,2 + 16631: -74,12 + 16682: -78,7 + 16720: -79,1 + 16759: -73,-10 + 16796: -55,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 971: -1,-15 - 1172: 44,-14 - 2061: -16,47 - 2374: -31,32 - 2375: -30,33 - 4155: -25,23 - 5562: -34,29 - 6338: -2,-14 - 6706: -35,-11 - 6725: -35,-11 - 6957: -26,-15 - 8043: 61,-16 - 8044: 61,-29 - 8294: 40,-15 - 8677: -3,-77 - 8680: -5,-80 - 9444: 72,-49 - 13394: -41,-62 - 15258: -6,-69 - 15583: 91,-3 - 15601: 95,7 - 24763: 38,-67 - 24764: 39,-66 + 854: -1,-15 + 1054: 44,-14 + 1941: -16,47 + 2251: -31,32 + 2252: -30,33 + 4005: -25,23 + 5410: -34,29 + 6186: -2,-14 + 6554: -35,-11 + 6573: -35,-11 + 6805: -26,-15 + 7889: 61,-16 + 7890: 61,-29 + 8140: 40,-15 + 8515: -3,-77 + 8518: -5,-80 + 9282: 72,-49 + 12450: -41,-62 + 14314: -6,-69 + 14632: 91,-3 + 14650: 95,7 + 23762: 38,-67 + 23763: 39,-66 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 853: 69,-47 + 740: 69,-47 - node: color: '#3EB388FF' id: BrickTileWhiteCornerSe decals: - 21570: -54,32 - 21582: -54,36 - 21659: -47,36 - 21712: -44,44 - 21798: -58,56 + 20576: -54,32 + 20588: -54,36 + 20665: -47,36 + 20718: -44,44 + 20804: -58,56 - node: color: '#439909FF' id: BrickTileWhiteCornerSe decals: - 24623: 28,-58 - 24682: 45,-63 - 24683: 41,-63 - 24712: 36,-72 - 24732: 32,-70 - 24751: 42,-71 + 23623: 28,-58 + 23681: 45,-63 + 23682: 41,-63 + 23711: 36,-72 + 23731: 32,-70 + 23750: 42,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSe decals: - 23147: 14,-36 - 23227: 38,-36 - 23369: 28,-53 - 23370: 18,-47 - 23371: 14,-41 - 23372: 10,-47 - 23373: 38,-42 - 23385: 38,-45 - 23581: 14,-47 - 23614: 24,-41 - 23684: 32,-27 - 23736: 30,-32 - 23737: 32,-30 - 23786: -5,-62 - 23811: 7,62 + 22153: 14,-36 + 22233: 38,-36 + 22375: 28,-53 + 22376: 18,-47 + 22377: 14,-41 + 22378: 10,-47 + 22379: 38,-42 + 22391: 38,-45 + 22587: 14,-47 + 22620: 24,-41 + 22690: 32,-27 + 22742: 30,-32 + 22743: 32,-30 + 22792: -5,-62 + 22817: 7,62 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerSe decals: - 3893: 27,65 - 9412: -37,0 - 17804: -54,32 - 17809: -54,36 - 17840: -47,36 - 17904: -44,44 - 17936: -58,56 + 3760: 27,65 + 9250: -37,0 + 16853: -54,32 + 16858: -54,36 + 16889: -47,36 + 16953: -44,44 + 16985: -58,56 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSe decals: - 9610: 38,-36 - 9668: 14,-36 - 9726: 28,-53 - 9830: 18,-47 - 9860: 24,-41 - 9902: 38,-45 - 9911: 38,-42 - 10011: 32,-27 - 10040: 14,-41 - 10054: 24,-49 - 10110: 34,-53 - 10264: 10,-47 - 10297: 14,-47 - 19284: 7,62 - 19315: -5,-62 - 19677: 32,-30 - 19678: 30,-32 + 9448: 38,-36 + 9506: 14,-36 + 9564: 28,-53 + 9668: 18,-47 + 9698: 24,-41 + 9740: 38,-45 + 9749: 38,-42 + 9849: 32,-27 + 9878: 14,-41 + 9892: 24,-49 + 9948: 34,-53 + 10102: 10,-47 + 10135: 14,-47 + 18328: 7,62 + 18359: -5,-62 + 18721: 32,-30 + 18722: 30,-32 - node: color: '#A46106FF' id: BrickTileWhiteCornerSe decals: - 21860: 10,26 - 21921: 11,34 - 21922: 10,33 - 21923: 22,34 - 21987: 7,39 - 22010: 11,39 - 22020: 11,42 - 22118: 13,48 - 22240: 15,37 - 22382: 17,26 - 22413: 15,28 - 22460: 29,34 - 22480: 29,40 - 22481: 29,40 + 20866: 10,26 + 20927: 11,34 + 20928: 10,33 + 20929: 22,34 + 20993: 7,39 + 21016: 11,39 + 21026: 11,42 + 21124: 13,48 + 21246: 15,37 + 21388: 17,26 + 21419: 15,28 + 21466: 29,34 + 21486: 29,40 + 21487: 29,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSe decals: - 2879: -27,46 - 2999: -37,47 + 2756: -27,46 + 2876: -37,47 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSe decals: - 5075: 27,26 - 5139: 43,28 - 11485: -12,-36 - 11486: -12,-36 - 11578: -5,-36 - 11602: -4,-32 - 11603: -4,-32 - 11813: -33,-46 - 11814: -33,-46 - 12139: -13,-54 - 12177: -13,-60 - 12190: -4,-53 + 4925: 27,26 + 4989: 43,28 + 10982: -12,-36 + 10983: -12,-36 + 11075: -5,-36 + 11099: -4,-32 + 11100: -4,-32 + 11298: -33,-46 + 11299: -33,-46 + 11477: -13,-54 + 11515: -13,-60 + 11528: -4,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSe decals: - 657: -21,-58 + 552: -21,-58 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSe decals: - 22646: -12,-36 - 22678: -13,-54 - 22901: -4,-32 - 22902: -5,-36 - 22971: -4,-53 - 23030: -13,-60 + 21652: -12,-36 + 21684: -13,-54 + 21907: -4,-32 + 21908: -5,-36 + 21977: -4,-53 + 22036: -13,-60 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSe decals: - 19150: 70,12 - 19165: 63,-6 - 19173: 66,-5 + 18194: 70,12 + 18209: 63,-6 + 18217: 66,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSe decals: - 2699: -9,52 - 2811: -5,32 - 3810: 12,66 + 2576: -9,52 + 2688: -5,32 + 3677: 12,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSe decals: - 4400: 11,34 - 4401: 10,33 - 4451: 10,26 - 4466: 17,26 - 4493: 15,28 - 4523: 7,39 - 4545: 11,39 - 4563: 11,42 - 4595: 22,34 - 4636: 22,26 - 4645: 27,26 - 4734: 29,34 - 4755: 15,37 - 4784: 29,40 - 4918: 13,48 - 5154: 43,28 - 5161: 36,34 + 4250: 11,34 + 4251: 10,33 + 4301: 10,26 + 4316: 17,26 + 4343: 15,28 + 4373: 7,39 + 4395: 11,39 + 4413: 11,42 + 4445: 22,34 + 4486: 22,26 + 4495: 27,26 + 4584: 29,34 + 4605: 15,37 + 4634: 29,40 + 4768: 13,48 + 5004: 43,28 + 5011: 36,34 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSe decals: - 4012: -37,52 + 3879: -37,52 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 16827: -49,-4 - 16862: -51,8 - 16896: -63,0 - 16913: -57,-10 - 16948: -51,-10 - 16956: -52,-18 - 16978: -55,-15 - 17007: -47,-17 - 17096: -47,11 - 17143: -76,13 - 17150: -68,14 - 17217: -57,17 - 17266: -45,-10 - 17284: -63,-8 - 17332: -75,-10 - 17372: 7,87 - 17382: 11,84 - 17451: -62,5 - 17587: -70,10 - 17732: -67,-13 - 18097: -55,-4 - 18151: -52,17 - 18231: -66,-4 + 15876: -49,-4 + 15911: -51,8 + 15945: -63,0 + 15962: -57,-10 + 15997: -51,-10 + 16005: -52,-18 + 16027: -55,-15 + 16056: -47,-17 + 16145: -47,11 + 16192: -76,13 + 16199: -68,14 + 16266: -57,17 + 16315: -45,-10 + 16333: -63,-8 + 16381: -75,-10 + 16421: 7,87 + 16431: 11,84 + 16500: -62,5 + 16636: -70,10 + 16781: -67,-13 + 17146: -55,-4 + 17200: -52,17 + 17280: -66,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 864: 75,-47 - 973: 0,-16 - 1181: 49,-17 - 2062: -22,51 - 2140: -22,34 - 3837: 23,69 - 4158: -23,21 - 5566: -30,27 - 5567: -31,26 - 6955: -23,-18 - 8039: 57,-12 - 8040: 57,-25 - 8291: 34,-9 - 8678: -6,-79 - 8683: -4,-76 - 9448: 74,-52 - 13395: -40,-63 - 15257: -3,-71 - 15269: -4,-73 - 15507: 95,-5 - 15603: 97,6 - 24768: 42,-68 + 751: 75,-47 + 856: 0,-16 + 1063: 49,-17 + 1942: -22,51 + 2019: -22,34 + 3704: 23,69 + 4008: -23,21 + 5414: -30,27 + 5415: -31,26 + 6803: -23,-18 + 7885: 57,-12 + 7886: 57,-25 + 8137: 34,-9 + 8516: -6,-79 + 8521: -4,-76 + 9286: 74,-52 + 12451: -40,-63 + 14313: -3,-71 + 14325: -4,-73 + 14556: 95,-5 + 14652: 97,6 + 23767: 42,-68 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 854: 75,-42 + 741: 75,-42 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerSw decals: - 874: 72,-46 + 761: 72,-46 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 21216: -16,13 - 21217: -13,13 + 20222: -16,13 + 20223: -13,13 - node: color: '#3EB388FF' id: BrickTileWhiteCornerSw decals: - 21568: -57,35 - 21569: -56,32 - 21594: -49,18 - 21651: -51,36 - 21699: -60,44 - 21792: -60,56 + 20574: -57,35 + 20575: -56,32 + 20600: -49,18 + 20657: -51,36 + 20705: -60,44 + 20798: -60,56 - node: color: '#439909FF' id: BrickTileWhiteCornerSw decals: - 24624: 26,-58 - 24680: 43,-63 - 24692: 38,-63 - 24713: 34,-72 - 24739: 26,-70 - 24749: 38,-71 + 23624: 26,-58 + 23679: 43,-63 + 23691: 38,-63 + 23712: 34,-72 + 23738: 26,-70 + 23748: 38,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSw decals: - 23388: 36,-45 - 23461: 16,-47 - 23542: 3,-47 - 23559: 8,-41 - 23580: 12,-45 - 23615: 20,-41 - 23654: 26,-53 - 23687: 28,-27 - 23722: 20,-29 - 23732: 24,-30 - 23735: 26,-32 - 23757: 30,-53 - 23785: -8,-62 - 23808: 5,62 + 22394: 36,-45 + 22467: 16,-47 + 22548: 3,-47 + 22565: 8,-41 + 22586: 12,-45 + 22621: 20,-41 + 22660: 26,-53 + 22693: 28,-27 + 22728: 20,-29 + 22738: 24,-30 + 22741: 26,-32 + 22763: 30,-53 + 22791: -8,-62 + 22814: 5,62 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerSw decals: - 9413: -39,0 - 17795: -49,18 - 17805: -56,32 - 17816: -57,35 - 17839: -51,36 - 17935: -60,56 - 17958: -60,44 + 9251: -39,0 + 16844: -49,18 + 16854: -56,32 + 16865: -57,35 + 16888: -51,36 + 16984: -60,56 + 17007: -60,44 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSw decals: - 9725: 26,-53 - 9831: 16,-47 - 9859: 20,-41 - 9900: 30,-42 - 9901: 36,-45 - 10012: 28,-27 - 10043: 8,-41 - 10053: 20,-49 - 10111: 32,-53 - 10112: 32,-53 - 10156: 30,-53 - 10280: 3,-47 - 10295: 12,-45 - 19283: 5,62 - 19314: -8,-62 - 19651: 20,-29 - 19652: 24,-30 - 19653: 26,-32 + 9563: 26,-53 + 9669: 16,-47 + 9697: 20,-41 + 9738: 30,-42 + 9739: 36,-45 + 9850: 28,-27 + 9881: 8,-41 + 9891: 20,-49 + 9949: 32,-53 + 9950: 32,-53 + 9994: 30,-53 + 10118: 3,-47 + 10133: 12,-45 + 18327: 5,62 + 18358: -8,-62 + 18695: 20,-29 + 18696: 24,-30 + 18697: 26,-32 - node: color: '#A46106FF' id: BrickTileWhiteCornerSw decals: - 21861: 2,26 - 21929: 2,33 - 22001: 4,39 - 22009: 9,39 - 22016: 9,42 - 22117: 9,48 - 22241: 19,37 - 22408: 12,26 - 22453: 24,34 - 22479: 27,40 + 20867: 2,26 + 20935: 2,33 + 21007: 4,39 + 21015: 9,39 + 21022: 9,42 + 21123: 9,48 + 21247: 19,37 + 21414: 12,26 + 21459: 24,34 + 21485: 27,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSw decals: - 2890: -34,46 - 2892: -35,48 + 2767: -34,46 + 2769: -35,48 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSw decals: - 5138: 38,28 - 11521: -31,-36 - 11572: -10,-36 - 11573: -10,-36 - 11812: -34,-46 - 12140: -17,-54 - 12158: -20,-59 - 12164: -19,-60 - 12189: -11,-53 + 4988: 38,28 + 11018: -31,-36 + 11069: -10,-36 + 11070: -10,-36 + 11297: -34,-46 + 11478: -17,-54 + 11496: -20,-59 + 11502: -19,-60 + 11527: -11,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSw decals: - 658: -25,-58 + 553: -25,-58 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSw decals: - 22675: -17,-54 - 22806: -31,-36 - 22903: -10,-36 - 22994: -11,-53 - 23039: -20,-59 - 23040: -19,-60 + 21681: -17,-54 + 21812: -31,-36 + 21909: -10,-36 + 22000: -11,-53 + 22045: -20,-59 + 22046: -19,-60 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSw decals: - 19149: 68,12 - 19164: 60,-6 - 19172: 65,-5 + 18193: 68,12 + 18208: 60,-6 + 18216: 65,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSw decals: - 2707: -13,52 - 2810: -7,32 - 3808: 10,66 + 2584: -13,52 + 2687: -7,32 + 3675: 10,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSw decals: - 4373: 2,26 - 4391: 2,33 - 4453: 12,26 - 4528: 4,39 - 4546: 9,39 - 4559: 9,42 - 4634: 19,26 - 4637: 24,26 - 4728: 24,34 - 4756: 19,37 - 4783: 27,40 - 4913: 9,48 - 14335: -59,9 + 4223: 2,26 + 4241: 2,33 + 4303: 12,26 + 4378: 4,39 + 4396: 9,39 + 4409: 9,42 + 4484: 19,26 + 4487: 24,26 + 4578: 24,34 + 4606: 19,37 + 4633: 27,40 + 4763: 9,48 + 13391: -59,9 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSw decals: - 4009: -40,52 - 9537: 2,-32 - 9538: 3,-36 + 3876: -40,52 + 9375: 2,-32 + 9376: 3,-36 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 16835: -61,-4 - 16863: -54,8 - 16880: -59,9 - 16895: -64,0 - 16912: -61,-10 - 16961: -59,-18 - 16962: -61,-15 - 17003: -50,-18 - 17115: -66,14 - 17142: -78,13 - 17222: -61,17 - 17269: -49,-10 - 17330: -77,-10 - 17373: 5,87 - 17381: 9,84 - 17409: 10,74 - 17453: -65,5 - 17520: -74,-4 - 17586: -74,10 - 17637: -78,3 - 17675: -79,-1 - 17676: -78,-2 - 17731: -73,-13 - 18099: -51,-4 - 18150: -55,17 + 15884: -61,-4 + 15912: -54,8 + 15929: -59,9 + 15944: -64,0 + 15961: -61,-10 + 16010: -59,-18 + 16011: -61,-15 + 16052: -50,-18 + 16164: -66,14 + 16191: -78,13 + 16271: -61,17 + 16318: -49,-10 + 16379: -77,-10 + 16422: 5,87 + 16430: 9,84 + 16458: 10,74 + 16502: -65,5 + 16569: -74,-4 + 16635: -74,10 + 16686: -78,3 + 16724: -79,-1 + 16725: -78,-2 + 16780: -73,-13 + 17148: -51,-4 + 17199: -55,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 972: -1,-16 - 1178: 44,-17 - 2059: -16,51 - 2355: -29,38 - 3831: 17,69 - 4157: -25,21 - 6342: -2,-17 - 6719: -35,-16 - 6956: -26,-18 - 8037: 61,-12 - 8038: 61,-25 - 8292: 40,-9 - 8293: 40,-9 - 8679: -3,-79 - 8682: -5,-76 - 9449: 72,-52 - 15267: -6,-71 - 15268: -5,-73 - 15506: 91,-5 - 15602: 95,6 - 24767: 38,-68 + 855: -1,-16 + 1060: 44,-17 + 1939: -16,51 + 2232: -29,38 + 3698: 17,69 + 4007: -25,21 + 6190: -2,-17 + 6567: -35,-16 + 6804: -26,-18 + 7883: 61,-12 + 7884: 61,-25 + 8138: 40,-9 + 8139: 40,-9 + 8517: -3,-79 + 8520: -5,-76 + 9287: 72,-52 + 14323: -6,-71 + 14324: -5,-73 + 14555: 91,-5 + 14651: 95,6 + 23766: 38,-68 - node: color: '#0A6AB6FF' id: BrickTileWhiteEndE decals: - 876: 73,-44 - 877: 73,-46 + 763: 73,-44 + 764: 73,-46 - node: color: '#DA8B8BFF' id: BrickTileWhiteEndE decals: - 19134: 70,-4 + 18178: 70,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 8190: 41,-7 + 8036: 41,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndN decals: - 15612: 97,-2 + 14661: 97,-2 - node: color: '#DAA58BFF' id: BrickTileWhiteEndN decals: - 4671: 21,28 - 4672: 25,28 + 4521: 21,28 + 4522: 25,28 - node: color: '#EFB341FF' id: BrickTileWhiteEndN decals: - 17008: -50,-12 + 16057: -50,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 8012: 60,-13 - 8013: 58,-13 - 8014: 60,-26 - 8015: 58,-26 - 8596: 60,-26 - 15582: 95,-2 + 7860: 60,-13 + 7861: 58,-13 + 7862: 60,-26 + 7863: 58,-26 + 8437: 60,-26 + 14631: 95,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndS decals: - 15611: 97,-4 + 14660: 97,-4 - node: color: '#A9DA8BFF' id: BrickTileWhiteEndS decals: - 2883: -31,45 + 2760: -31,45 - node: color: '#DAA58BFF' id: BrickTileWhiteEndS decals: - 4669: 21,30 - 4670: 25,30 + 4519: 21,30 + 4520: 25,30 - node: color: '#EFB341FF' id: BrickTileWhiteEndS decals: - 17004: -50,-18 + 16053: -50,-18 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 8032: 58,-15 - 8033: 60,-15 - 8034: 58,-28 - 8035: 60,-28 + 7878: 58,-15 + 7879: 60,-15 + 7880: 58,-28 + 7881: 60,-28 - node: color: '#D381C9FF' id: BrickTileWhiteEndW decals: - 24385: -29,-28 - 24386: -29,-30 + 23389: -29,-28 + 23390: -29,-30 - node: color: '#DA8B8BFF' id: BrickTileWhiteEndW decals: - 19133: 69,-4 + 18177: 69,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 2352: -31,38 - 8189: 38,-7 + 2229: -31,38 + 8035: 38,-7 - node: color: '#334E6DFF' id: BrickTileWhiteInnerNe decals: - 21831: -18,11 - 22515: 8,-8 - 22516: 11,-8 - 22527: 6,-8 - 22536: -12,-8 - 22540: -10,-8 + 20837: -18,11 + 21521: 8,-8 + 21522: 11,-8 + 21533: 6,-8 + 21542: -12,-8 + 21546: -10,-8 - node: color: '#3EB388FF' id: BrickTileWhiteInnerNe decals: - 21584: -55,34 - 21585: -55,37 - 21612: -52,17 - 21618: -53,18 - 21633: -53,21 - 21637: -46,18 - 21669: -48,42 - 21670: -47,41 - 21771: -46,51 - 21777: -58,45 - 21788: -59,54 - 21801: -59,58 - 21805: -46,45 - 21822: -44,21 + 20590: -55,34 + 20591: -55,37 + 20618: -52,17 + 20624: -53,18 + 20639: -53,21 + 20643: -46,18 + 20675: -48,42 + 20676: -47,41 + 20777: -46,51 + 20783: -58,45 + 20794: -59,54 + 20807: -59,58 + 20811: -46,45 + 20828: -44,21 - node: color: '#439909FF' id: BrickTileWhiteInnerNe decals: - 24632: 27,-60 - 24646: 28,-56 - 24647: 27,-55 - 24651: 28,-61 - 24701: 36,-62 - 24709: 41,-62 - 24710: 36,-70 - 24726: 32,-68 - 24756: 40,-70 + 23631: 27,-60 + 23645: 28,-56 + 23646: 27,-55 + 23650: 28,-61 + 23700: 36,-62 + 23708: 41,-62 + 23709: 36,-70 + 23725: 32,-68 + 23755: 40,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerNe decals: - 23090: 17,-31 - 23114: 18,-27 - 23115: 18,-34 - 23173: 13,-35 - 23174: 14,-35 - 23230: 38,-35 - 23231: 36,-34 - 23256: 21,-34 - 23257: 29,-34 - 23258: 27,-35 - 23259: 36,-35 - 23391: 37,-44 - 23421: 36,-40 - 23448: 24,-44 - 23526: 9,-43 - 23533: 4,-43 - 23537: 6,-45 - 23567: 14,-39 - 23588: 14,-44 - 23595: 18,-39 - 23599: 24,-39 - 23600: 17,-40 - 23609: 18,-44 - 23626: 27,-40 - 23627: 28,-40 - 23661: 28,-50 - 23663: 28,-44 - 23675: 22,-29 - 23678: 29,-29 - 23749: 26,-29 - 23750: 27,-47 - 23764: 0,-44 - 23765: 0,-51 - 23774: 0,-46 - 23775: 0,-53 - 23788: -5,-60 - 23794: -7,-58 - 23816: 6,65 + 22096: 17,-31 + 22120: 18,-27 + 22121: 18,-34 + 22179: 13,-35 + 22180: 14,-35 + 22236: 38,-35 + 22237: 36,-34 + 22262: 21,-34 + 22263: 29,-34 + 22264: 27,-35 + 22265: 36,-35 + 22397: 37,-44 + 22427: 36,-40 + 22454: 24,-44 + 22532: 9,-43 + 22539: 4,-43 + 22543: 6,-45 + 22573: 14,-39 + 22594: 14,-44 + 22601: 18,-39 + 22605: 24,-39 + 22606: 17,-40 + 22615: 18,-44 + 22632: 27,-40 + 22633: 28,-40 + 22667: 28,-50 + 22669: 28,-44 + 22681: 22,-29 + 22684: 29,-29 + 22755: 26,-29 + 22756: 27,-47 + 22770: 0,-44 + 22771: 0,-51 + 22780: 0,-46 + 22781: 0,-53 + 22794: -5,-60 + 22800: -7,-58 + 22822: 6,65 + 23803: 14,-25 + 23823: 10,-25 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNe decals: - 17799: -46,18 - 17821: -55,37 - 17827: -55,34 - 17857: -46,51 - 17896: -48,42 - 17897: -47,41 - 17906: -46,45 - 17947: -59,58 - 17948: -58,57 - 17949: -59,54 - 17974: -58,45 - 18042: -53,21 + 16848: -46,18 + 16870: -55,37 + 16876: -55,34 + 16906: -46,51 + 16945: -48,42 + 16946: -47,41 + 16955: -46,45 + 16996: -59,58 + 16997: -58,57 + 16998: -59,54 + 17023: -58,45 + 17091: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNe decals: - 9511: 18,-27 - 9523: 21,-34 - 9662: 14,-35 - 9735: 29,-34 - 9736: 36,-34 - 9851: 18,-39 - 9852: 18,-44 - 9855: 28,-44 - 9856: 28,-50 - 9872: 24,-39 - 9873: 28,-40 - 9889: 38,-35 - 9928: 37,-44 - 9948: 36,-40 - 9979: 29,-29 - 10042: 14,-39 - 10095: 24,-44 - 10286: 4,-43 - 10287: 9,-43 - 10303: 14,-44 - 10529: 49,-33 - 12287: -7,-58 - 15224: 10,-25 - 15238: 17,-40 - 15243: 27,-47 - 15244: 27,-40 - 15248: 27,-35 - 15249: 36,-35 - 15254: 13,-35 - 18357: 17,-31 - 19290: 6,65 - 19316: -5,-60 - 19667: 22,-29 - 19683: 26,-29 + 9349: 18,-27 + 9361: 21,-34 + 9500: 14,-35 + 9573: 29,-34 + 9574: 36,-34 + 9689: 18,-39 + 9690: 18,-44 + 9693: 28,-44 + 9694: 28,-50 + 9710: 24,-39 + 9711: 28,-40 + 9727: 38,-35 + 9766: 37,-44 + 9786: 36,-40 + 9817: 29,-29 + 9880: 14,-39 + 9933: 24,-44 + 10124: 4,-43 + 10125: 9,-43 + 10141: 14,-44 + 10367: 49,-33 + 11625: -7,-58 + 14280: 10,-25 + 14294: 17,-40 + 14299: 27,-47 + 14300: 27,-40 + 14304: 27,-35 + 14305: 36,-35 + 14310: 13,-35 + 17406: 17,-31 + 18334: 6,65 + 18360: -5,-60 + 18711: 22,-29 + 18727: 26,-29 - node: color: '#A46106FF' id: BrickTileWhiteInnerNe decals: - 21848: 8,24 - 21849: 12,24 - 21850: 16,24 - 21851: 5,24 - 21852: 2,24 - 21874: 4,31 - 21884: 10,28 - 21904: 8,29 - 21907: 9,31 - 21955: 9,35 - 21968: 11,36 - 21969: 10,37 - 21974: 5,37 - 22013: 10,40 - 22028: 11,45 - 22030: 11,43 - 22133: 10,54 - 22134: 10,54 - 22135: 13,53 - 22138: 13,50 - 22148: 17,54 - 22228: 22,36 - 22231: 18,37 - 22232: 19,36 - 22279: 17,45 - 22280: 22,45 - 22281: 22,47 - 22282: 22,49 - 22283: 22,51 - 22284: 22,43 - 22285: 22,41 - 22301: 17,43 - 22302: 17,41 - 22315: 25,41 - 22352: 38,49 - 22365: 32,49 - 22370: 25,52 - 22372: 21,38 - 22373: 16,31 - 22432: 15,32 - 22442: 28,38 - 22443: 27,37 + 20854: 8,24 + 20855: 12,24 + 20856: 16,24 + 20857: 5,24 + 20858: 2,24 + 20880: 4,31 + 20890: 10,28 + 20910: 8,29 + 20913: 9,31 + 20961: 9,35 + 20974: 11,36 + 20975: 10,37 + 20980: 5,37 + 21019: 10,40 + 21034: 11,45 + 21036: 11,43 + 21139: 10,54 + 21140: 10,54 + 21141: 13,53 + 21144: 13,50 + 21154: 17,54 + 21234: 22,36 + 21237: 18,37 + 21238: 19,36 + 21285: 17,45 + 21286: 22,45 + 21287: 22,47 + 21288: 22,49 + 21289: 22,51 + 21290: 22,43 + 21291: 22,41 + 21307: 17,43 + 21308: 17,41 + 21321: 25,41 + 21358: 38,49 + 21371: 32,49 + 21376: 25,52 + 21378: 21,38 + 21379: 16,31 + 21438: 15,32 + 21448: 28,38 + 21449: 27,37 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNe decals: - 2874: -26,48 - 2910: -28,53 - 2913: -28,51 - 2969: -32,53 - 2970: -30,53 - 2971: -28,50 - 2994: -37,49 + 2751: -26,48 + 2787: -28,53 + 2790: -28,51 + 2846: -32,53 + 2847: -30,53 + 2848: -28,50 + 2871: -37,49 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNe decals: - 5081: 21,32 - 5086: 27,31 - 5164: 36,37 - 11437: -15,-34 - 11438: -13,-34 - 11514: -22,-34 - 11515: -22,-34 - 11557: -12,-35 - 11558: -12,-35 - 11582: -5,-35 - 11583: -6,-30 - 11584: -6,-30 - 11734: -13,-41 - 11825: -29,-34 - 12010: -23,-24 - 12011: -22,-26 - 12116: -24,-39 - 12152: -13,-50 - 12178: -16,-56 - 12181: -13,-59 - 12208: -10,-49 - 12215: -4,-48 - 12216: -6,-46 - 12242: -18,-40 - 12553: -7,-32 - 12654: -7,-32 - 12655: -7,-32 - 15172: -8,-25 - 15182: -24,-35 - 15185: -23,-26 - 15186: -14,-35 - 15191: -14,-47 - 15194: -14,-39 - 15195: -29,-39 - 19956: 34,39 + 4931: 21,32 + 4936: 27,31 + 5014: 36,37 + 10934: -15,-34 + 10935: -13,-34 + 11011: -22,-34 + 11012: -22,-34 + 11054: -12,-35 + 11055: -12,-35 + 11079: -5,-35 + 11080: -6,-30 + 11081: -6,-30 + 11219: -13,-41 + 11310: -29,-34 + 11348: -23,-24 + 11349: -22,-26 + 11454: -24,-39 + 11490: -13,-50 + 11516: -16,-56 + 11519: -13,-59 + 11546: -10,-49 + 11553: -4,-48 + 11554: -6,-46 + 11580: -18,-40 + 11891: -7,-32 + 11972: -7,-32 + 11973: -7,-32 + 14228: -8,-25 + 14238: -24,-35 + 14241: -23,-26 + 14242: -14,-35 + 14247: -14,-47 + 14250: -14,-39 + 14251: -29,-39 + 18962: 34,39 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNe decals: - 22642: -15,-34 - 22644: -13,-34 - 22682: -13,-50 - 22693: -13,-41 - 22721: -18,-40 - 22791: -22,-31 - 22798: -23,-24 - 22799: -22,-34 - 22802: -29,-34 - 22838: -23,-26 - 22839: -22,-26 - 22881: -24,-35 - 22885: -14,-35 - 22886: -12,-35 - 22913: -6,-30 - 22925: -5,-35 - 22984: -4,-48 - 22985: -6,-46 - 22992: -10,-49 - 23017: -14,-39 - 23018: -16,-56 - 23048: -13,-59 - 23051: -14,-47 - 24396: -29,-29 - 24397: -28,-27 - 24400: -28,-31 + 21648: -15,-34 + 21650: -13,-34 + 21688: -13,-50 + 21699: -13,-41 + 21727: -18,-40 + 21797: -22,-31 + 21804: -23,-24 + 21805: -22,-34 + 21808: -29,-34 + 21844: -23,-26 + 21845: -22,-26 + 21887: -24,-35 + 21891: -14,-35 + 21892: -12,-35 + 21919: -6,-30 + 21931: -5,-35 + 21990: -4,-48 + 21991: -6,-46 + 21998: -10,-49 + 22023: -14,-39 + 22024: -16,-56 + 22054: -13,-59 + 22057: -14,-47 + 23400: -29,-29 + 23401: -28,-27 + 23404: -28,-31 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNe decals: - 7608: 61,-3 - 7609: 65,-3 - 19152: 70,13 - 19162: 63,-4 + 7456: 61,-3 + 7457: 65,-3 + 18196: 70,13 + 18206: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNe decals: - 3814: 12,67 + 3681: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNe decals: - 4379: 10,28 - 4383: 9,31 - 4408: 10,37 - 4409: 11,36 - 4415: 4,31 - 4437: 8,29 - 4474: 15,32 - 4498: 16,31 - 4550: 10,40 - 4565: 11,43 - 4568: 11,45 - 4599: 21,38 - 4621: 21,32 - 4650: 27,31 - 4706: 20,30 - 4707: 26,30 - 4708: 26,29 - 4713: 22,29 - 4721: 21,29 - 4754: 27,37 - 4772: 18,37 - 4773: 19,36 - 4774: 28,38 - 4812: 9,35 - 4817: 5,37 - 4852: 32,49 - 4853: 38,49 - 4890: 25,41 - 4894: 25,52 - 4903: 10,54 - 4922: 13,50 - 4925: 13,53 - 4932: 17,54 - 5051: 17,45 - 5052: 17,43 - 5053: 17,41 - 5054: 22,41 - 5055: 22,43 - 5056: 22,45 - 5057: 22,47 - 5058: 22,49 - 5059: 22,51 - 6987: 8,29 - 19822: 25,29 - 19826: 24,30 + 4229: 10,28 + 4233: 9,31 + 4258: 10,37 + 4259: 11,36 + 4265: 4,31 + 4287: 8,29 + 4324: 15,32 + 4348: 16,31 + 4400: 10,40 + 4415: 11,43 + 4418: 11,45 + 4449: 21,38 + 4471: 21,32 + 4500: 27,31 + 4556: 20,30 + 4557: 26,30 + 4558: 26,29 + 4563: 22,29 + 4571: 21,29 + 4604: 27,37 + 4622: 18,37 + 4623: 19,36 + 4624: 28,38 + 4662: 9,35 + 4667: 5,37 + 4702: 32,49 + 4703: 38,49 + 4740: 25,41 + 4744: 25,52 + 4753: 10,54 + 4772: 13,50 + 4775: 13,53 + 4782: 17,54 + 4901: 17,45 + 4902: 17,43 + 4903: 17,41 + 4904: 22,41 + 4905: 22,43 + 4906: 22,45 + 4907: 22,47 + 4908: 22,49 + 4909: 22,51 + 6835: 8,29 + 18828: 25,29 + 18832: 24,30 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNe decals: - 4007: -39,54 - 9549: 8,-36 - 9552: 5,-30 - 9575: 6,-32 - 9584: 8,-34 + 3874: -39,54 + 9387: 8,-36 + 9390: 5,-30 + 9413: 6,-32 + 9422: 8,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 16818: -49,1 - 16819: -52,2 - 16892: -63,1 - 16919: -58,-6 - 16920: -57,-7 - 16921: -57,-9 - 16934: -58,-12 - 16987: -52,-15 - 17015: -50,-13 - 17046: -52,15 - 17092: -47,14 - 17095: -47,12 - 17099: -50,9 - 17104: -58,15 - 17126: -61,14 - 17129: -68,15 - 17239: -51,-7 - 17280: -52,-6 - 17281: -63,-7 - 17314: -71,-6 - 17315: -69,-6 - 17364: 10,88 - 17368: 5,90 - 17389: 11,87 - 17412: 10,82 - 17413: 12,78 - 17542: -73,2 - 17543: -66,1 - 17598: -72,12 - 17669: -77,1 - 17685: -76,0 - 17715: -69,-10 - 19831: -49,-3 + 15867: -49,1 + 15868: -52,2 + 15941: -63,1 + 15968: -58,-6 + 15969: -57,-7 + 15970: -57,-9 + 15983: -58,-12 + 16036: -52,-15 + 16064: -50,-13 + 16095: -52,15 + 16141: -47,14 + 16144: -47,12 + 16148: -50,9 + 16153: -58,15 + 16175: -61,14 + 16178: -68,15 + 16288: -51,-7 + 16329: -52,-6 + 16330: -63,-7 + 16363: -71,-6 + 16364: -69,-6 + 16413: 10,88 + 16417: 5,90 + 16438: 11,87 + 16461: 10,82 + 16462: 12,78 + 16591: -73,2 + 16592: -66,1 + 16647: -72,12 + 16718: -77,1 + 16734: -76,0 + 16764: -69,-10 + 18837: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2354: -30,38 - 2366: -29,30 - 5573: -33,28 - 5574: -33,28 - 5578: -31,28 - 6682: -32,1 - 6685: -32,-2 - 6700: -24,-2 - 6730: -32,-11 - 6752: -35,-16 - 6962: -23,-16 - 8069: 60,-12 - 8070: 60,-25 - 8071: 61,-26 - 8072: 61,-13 - 8308: 39,-10 - 8310: 39,-13 - 8311: 39,-13 - 8345: 46,-14 - 8699: -4,-77 - 8700: -1,-76 - 8701: -6,-76 - 8702: -6,-80 - 8703: -1,-80 - 8921: -4,-25 - 9455: 73,-49 - 9461: 73,-42 - 10604: 75,-45 - 14932: -19,19 - 14933: -13,23 - 14934: -3,23 - 14935: 4,23 - 14936: 14,23 - 14937: 17,19 - 14950: -21,34 - 14951: -19,36 - 14952: -19,32 - 14953: -19,29 - 14961: -19,48 - 14962: -16,50 - 14963: -17,51 - 14964: -21,51 - 14965: -19,52 - 14968: -23,41 - 14969: -10,49 - 14970: -5,49 - 15007: -30,95 - 15008: -30,88 - 15017: -30,82 - 15018: -30,75 - 15049: -29,68 - 15050: -24,68 - 15051: -18,68 - 15052: -11,68 - 15053: -12,75 - 15054: -12,82 - 15055: -12,88 - 15056: -12,95 - 15057: -4,68 - 15058: 2,68 - 15059: -5,64 - 15060: 7,68 - 15061: 6,75 - 15062: 6,82 - 15064: -4,57 - 15065: 2,57 - 15066: -11,57 - 15067: -18,57 - 15068: -19,64 - 15078: 17,12 - 15079: 24,5 - 15080: 31,5 - 15091: 24,-11 - 15092: 30,-11 - 15095: 17,-12 - 15096: 13,-20 - 15097: 6,-20 - 15098: -5,-20 - 15099: -12,-20 - 15100: -19,-12 - 15101: -19,-2 - 15102: -19,5 - 15103: -23,5 - 15104: -19,12 - 15105: -31,5 - 15106: -36,5 - 15145: 47,-20 - 15146: 52,-20 - 15147: 17,5 - 15216: -1,-31 - 15217: -1,-24 - 15218: -1,-39 - 15219: -1,-44 - 15220: -1,-52 - 15223: -1,-59 - 15372: -42,17 - 15373: -42,22 - 15374: -42,11 - 15515: 95,-3 - 18737: 7,-9 - 18738: 13,-9 - 18744: -12,-9 - 18745: -6,-9 - 18752: 1,-9 - 19641: 40,-10 - 19646: 39,-9 - 19912: 17,-2 - 20176: -19,19 - 20177: -19,12 - 20178: -19,5 - 20179: -19,-2 - 24774: 41,-67 + 2231: -30,38 + 2243: -29,30 + 5421: -33,28 + 5422: -33,28 + 5426: -31,28 + 6530: -32,1 + 6533: -32,-2 + 6548: -24,-2 + 6578: -32,-11 + 6600: -35,-16 + 6810: -23,-16 + 7915: 60,-12 + 7916: 60,-25 + 7917: 61,-26 + 7918: 61,-13 + 8154: 39,-10 + 8156: 39,-13 + 8157: 39,-13 + 8191: 46,-14 + 8537: -4,-77 + 8538: -1,-76 + 8539: -6,-76 + 8540: -6,-80 + 8541: -1,-80 + 8759: -4,-25 + 9293: 73,-49 + 9299: 73,-42 + 10442: 75,-45 + 13988: -19,19 + 13989: -13,23 + 13990: -3,23 + 13991: 4,23 + 13992: 14,23 + 13993: 17,19 + 14006: -21,34 + 14007: -19,36 + 14008: -19,32 + 14009: -19,29 + 14017: -19,48 + 14018: -16,50 + 14019: -17,51 + 14020: -21,51 + 14021: -19,52 + 14024: -23,41 + 14025: -10,49 + 14026: -5,49 + 14063: -30,95 + 14064: -30,88 + 14073: -30,82 + 14074: -30,75 + 14105: -29,68 + 14106: -24,68 + 14107: -18,68 + 14108: -11,68 + 14109: -12,75 + 14110: -12,82 + 14111: -12,88 + 14112: -12,95 + 14113: -4,68 + 14114: 2,68 + 14115: -5,64 + 14116: 7,68 + 14117: 6,75 + 14118: 6,82 + 14120: -4,57 + 14121: 2,57 + 14122: -11,57 + 14123: -18,57 + 14124: -19,64 + 14134: 17,12 + 14135: 24,5 + 14136: 31,5 + 14147: 24,-11 + 14148: 30,-11 + 14151: 17,-12 + 14152: 13,-20 + 14153: 6,-20 + 14154: -5,-20 + 14155: -12,-20 + 14156: -19,-12 + 14157: -19,-2 + 14158: -19,5 + 14159: -23,5 + 14160: -19,12 + 14161: -31,5 + 14162: -36,5 + 14201: 47,-20 + 14202: 52,-20 + 14203: 17,5 + 14272: -1,-31 + 14273: -1,-24 + 14274: -1,-39 + 14275: -1,-44 + 14276: -1,-52 + 14279: -1,-59 + 14421: -42,17 + 14422: -42,22 + 14423: -42,11 + 14564: 95,-3 + 17781: 7,-9 + 17782: 13,-9 + 17788: -12,-9 + 17789: -6,-9 + 17796: 1,-9 + 18685: 40,-10 + 18690: 39,-9 + 18918: 17,-2 + 19182: -19,19 + 19183: -19,12 + 19184: -19,5 + 19185: -19,-2 + 23773: 41,-67 - node: color: '#334E6DFF' id: BrickTileWhiteInnerNw decals: - 22513: 8,-8 - 22514: 10,-8 - 22517: 16,-4 - 22526: 13,-8 - 22529: 16,-6 - 22537: -8,-8 - 22539: -10,-8 + 21519: 8,-8 + 21520: 10,-8 + 21523: 16,-4 + 21532: 13,-8 + 21535: 16,-6 + 21543: -8,-8 + 21545: -10,-8 - node: color: '#3EB388FF' id: BrickTileWhiteInnerNw decals: - 21587: -55,37 - 21613: -55,17 - 21617: -54,18 - 21635: -50,21 - 21660: -50,38 - 21667: -50,41 - 21668: -48,42 - 21762: -46,55 - 21778: -60,50 - 21781: -60,48 - 21787: -59,54 - 21799: -60,57 - 21800: -59,58 - 21804: -47,45 - 21811: -43,23 - 21817: -44,18 - 21818: -44,16 - 21821: -43,21 + 20593: -55,37 + 20619: -55,17 + 20623: -54,18 + 20641: -50,21 + 20666: -50,38 + 20673: -50,41 + 20674: -48,42 + 20768: -46,55 + 20784: -60,50 + 20787: -60,48 + 20793: -59,54 + 20805: -60,57 + 20806: -59,58 + 20810: -47,45 + 20817: -43,23 + 20823: -44,18 + 20824: -44,16 + 20827: -43,21 - node: color: '#439909FF' id: BrickTileWhiteInnerNw decals: - 24631: 27,-60 - 24645: 26,-56 - 24648: 27,-55 - 24695: 34,-61 - 24704: 38,-62 - 24725: 34,-68 - 24755: 40,-70 + 23630: 27,-60 + 23644: 26,-56 + 23647: 27,-55 + 23694: 34,-61 + 23703: 38,-62 + 23724: 34,-68 + 23754: 40,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerNw decals: - 23088: 16,-25 - 23089: 17,-31 - 23093: 16,-31 - 23123: 16,-35 - 23171: 10,-36 - 23172: 11,-35 - 23232: 36,-34 - 23254: 21,-34 - 23255: 29,-34 - 23390: 37,-44 - 23419: 30,-40 - 23420: 32,-40 - 23449: 20,-44 - 23525: 9,-43 - 23532: 4,-43 - 23538: 8,-45 - 23546: 2,-44 - 23572: 16,-44 - 23586: 14,-47 - 23596: 16,-39 - 23598: 20,-39 - 23601: 17,-40 - 23606: 26,-44 - 23607: 18,-44 - 23622: 26,-39 - 23628: 27,-40 - 23659: 30,-50 - 23664: 31,-35 - 23665: 22,-35 - 23676: 24,-29 - 23677: 29,-29 - 23726: 20,-27 - 23751: 27,-47 - 23793: -7,-58 - 23814: 5,64 - 23815: 6,65 - 24004: -3,-62 - 24005: -3,-60 + 22094: 16,-25 + 22095: 17,-31 + 22099: 16,-31 + 22129: 16,-35 + 22177: 10,-36 + 22178: 11,-35 + 22238: 36,-34 + 22260: 21,-34 + 22261: 29,-34 + 22396: 37,-44 + 22425: 30,-40 + 22426: 32,-40 + 22455: 20,-44 + 22531: 9,-43 + 22538: 4,-43 + 22544: 8,-45 + 22552: 2,-44 + 22578: 16,-44 + 22592: 14,-47 + 22602: 16,-39 + 22604: 20,-39 + 22607: 17,-40 + 22612: 26,-44 + 22613: 18,-44 + 22628: 26,-39 + 22634: 27,-40 + 22665: 30,-50 + 22670: 31,-35 + 22671: 22,-35 + 22682: 24,-29 + 22683: 29,-29 + 22732: 20,-27 + 22757: 27,-47 + 22799: -7,-58 + 22820: 5,64 + 22821: 6,65 + 23010: -3,-62 + 23011: -3,-60 + 23822: 6,-25 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNw decals: - 15614: 97,-3 - 17792: -50,21 - 17820: -55,37 - 17863: -46,55 - 17895: -48,42 - 17899: -50,38 - 17942: -59,54 - 17943: -60,57 - 17946: -59,58 - 17956: -60,48 - 17957: -60,50 - 17975: -47,45 + 14663: 97,-3 + 16841: -50,21 + 16869: -55,37 + 16912: -46,55 + 16944: -48,42 + 16948: -50,38 + 16991: -59,54 + 16992: -60,57 + 16995: -59,58 + 17005: -60,48 + 17006: -60,50 + 17024: -47,45 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNw decals: - 9510: 16,-25 - 9524: 21,-34 - 9675: 10,-36 - 9734: 29,-34 - 9737: 36,-34 - 9847: 16,-44 - 9848: 16,-39 - 9853: 26,-44 - 9857: 26,-39 - 9871: 20,-39 - 9927: 37,-44 - 9929: 30,-40 - 9947: 32,-40 - 9977: 29,-29 - 9978: 29,-29 - 10094: 20,-44 - 10123: 32,-51 - 10124: 32,-49 - 10163: 30,-50 - 10284: 4,-43 - 10285: 9,-43 - 10289: 8,-45 - 10290: 2,-44 - 10305: 14,-47 - 10540: 43,-33 - 12286: -7,-58 - 15225: 6,-25 - 15237: 17,-40 - 15242: 27,-47 - 15245: 27,-40 - 15246: 22,-35 - 15247: 31,-35 - 15253: 11,-35 - 18356: 17,-31 - 19288: 5,64 - 19289: 6,65 - 19665: 20,-27 - 19666: 24,-29 + 9348: 16,-25 + 9362: 21,-34 + 9513: 10,-36 + 9572: 29,-34 + 9575: 36,-34 + 9685: 16,-44 + 9686: 16,-39 + 9691: 26,-44 + 9695: 26,-39 + 9709: 20,-39 + 9765: 37,-44 + 9767: 30,-40 + 9785: 32,-40 + 9815: 29,-29 + 9816: 29,-29 + 9932: 20,-44 + 9961: 32,-51 + 9962: 32,-49 + 10001: 30,-50 + 10122: 4,-43 + 10123: 9,-43 + 10127: 8,-45 + 10128: 2,-44 + 10143: 14,-47 + 10378: 43,-33 + 11624: -7,-58 + 14281: 6,-25 + 14293: 17,-40 + 14298: 27,-47 + 14301: 27,-40 + 14302: 22,-35 + 14303: 31,-35 + 14309: 11,-35 + 17405: 17,-31 + 18332: 5,64 + 18333: 6,65 + 18709: 20,-27 + 18710: 24,-29 - node: color: '#9FED58FF' id: BrickTileWhiteInnerNw decals: - 23826: -23,48 - 23827: -23,51 - 23837: -23,51 - 23839: -23,48 + 22832: -23,48 + 22833: -23,51 + 22843: -23,51 + 22845: -23,48 - node: color: '#A46106FF' id: BrickTileWhiteInnerNw decals: - 21836: 10,24 - 21837: 18,24 - 21845: 4,24 - 21846: 7,24 - 21847: 14,24 - 21872: 7,31 - 21873: 4,31 - 21878: 2,29 - 21903: 4,29 - 21954: 4,35 - 21970: 10,37 - 21973: 5,37 - 21995: 7,43 - 22000: 4,40 - 22012: 10,40 - 22047: 13,36 - 22132: 10,54 - 22140: 15,53 - 22147: 17,54 - 22229: 16,37 - 22230: 15,36 - 22292: 19,49 - 22293: 19,45 - 22294: 19,43 - 22295: 19,47 - 22296: 19,41 - 22297: 16,41 - 22303: 16,43 - 22304: 16,45 - 22305: 13,45 - 22308: 13,43 - 22312: 15,46 - 22366: 34,49 - 22369: 24,54 - 22374: 13,27 - 22433: 16,31 - 22434: 15,28 - 22435: 24,36 - 22441: 28,38 - 22444: 26,37 - 22497: 19,51 + 20842: 10,24 + 20843: 18,24 + 20851: 4,24 + 20852: 7,24 + 20853: 14,24 + 20878: 7,31 + 20879: 4,31 + 20884: 2,29 + 20909: 4,29 + 20960: 4,35 + 20976: 10,37 + 20979: 5,37 + 21001: 7,43 + 21006: 4,40 + 21018: 10,40 + 21053: 13,36 + 21138: 10,54 + 21146: 15,53 + 21153: 17,54 + 21235: 16,37 + 21236: 15,36 + 21298: 19,49 + 21299: 19,45 + 21300: 19,43 + 21301: 19,47 + 21302: 19,41 + 21303: 16,41 + 21309: 16,43 + 21310: 16,45 + 21311: 13,45 + 21314: 13,43 + 21318: 15,46 + 21372: 34,49 + 21375: 24,54 + 21380: 13,27 + 21439: 16,31 + 21440: 15,28 + 21441: 24,36 + 21447: 28,38 + 21450: 26,37 + 21503: 19,51 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNw decals: - 2895: -35,49 - 2897: -34,50 - 2908: -29,54 - 2916: -26,51 - 2966: -28,50 - 2967: -30,53 - 2968: -32,53 - 3005: -38,46 + 2772: -35,49 + 2774: -34,50 + 2785: -29,54 + 2793: -26,51 + 2843: -28,50 + 2844: -30,53 + 2845: -32,53 + 2882: -38,46 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNw decals: - 5079: 20,32 - 11435: -15,-34 - 11436: -13,-34 - 11513: -24,-34 - 11585: -6,-30 - 11586: -6,-30 - 11610: -10,-34 - 11611: -10,-35 - 11731: -15,-40 - 11824: -29,-34 - 12009: -23,-24 - 12115: -25,-39 - 12150: -17,-51 - 12167: -20,-58 - 12179: -16,-56 - 12207: -10,-49 - 12211: -11,-50 - 12217: -6,-46 - 12241: -20,-40 - 12552: -8,-32 - 12653: -8,-32 - 15171: -12,-25 - 15180: -23,-26 - 15181: -29,-35 - 15187: -18,-35 - 15192: -14,-47 - 15193: -14,-39 - 15196: -29,-39 - 19955: 34,39 + 4929: 20,32 + 10932: -15,-34 + 10933: -13,-34 + 11010: -24,-34 + 11082: -6,-30 + 11083: -6,-30 + 11107: -10,-34 + 11108: -10,-35 + 11216: -15,-40 + 11309: -29,-34 + 11347: -23,-24 + 11453: -25,-39 + 11488: -17,-51 + 11505: -20,-58 + 11517: -16,-56 + 11545: -10,-49 + 11549: -11,-50 + 11555: -6,-46 + 11579: -20,-40 + 11890: -8,-32 + 11971: -8,-32 + 14227: -12,-25 + 14236: -23,-26 + 14237: -29,-35 + 14243: -18,-35 + 14248: -14,-47 + 14249: -14,-39 + 14252: -29,-39 + 18961: 34,39 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw decals: - 22545: -2,-50 - 22550: -2,-48 - 22551: -2,-40 - 22555: -2,-40 - 22558: -2,-43 - 22563: -3,-35 - 22641: -15,-34 - 22643: -13,-34 - 22667: -15,-50 - 22668: -17,-51 - 22722: -20,-40 - 22754: -15,-40 - 22796: -23,-24 - 22800: -24,-34 - 22801: -29,-34 - 22837: -23,-26 - 22877: -18,-35 - 22878: -29,-35 - 22887: -10,-35 - 22894: -10,-34 - 22912: -6,-30 - 22973: -7,-49 - 22986: -6,-46 - 22989: -11,-50 - 22991: -10,-49 - 23016: -14,-39 - 23019: -16,-56 - 23043: -20,-58 - 23050: -14,-47 - 24398: -30,-27 + 21551: -2,-50 + 21556: -2,-48 + 21557: -2,-40 + 21561: -2,-40 + 21564: -2,-43 + 21569: -3,-35 + 21647: -15,-34 + 21649: -13,-34 + 21673: -15,-50 + 21674: -17,-51 + 21728: -20,-40 + 21760: -15,-40 + 21802: -23,-24 + 21806: -24,-34 + 21807: -29,-34 + 21843: -23,-26 + 21883: -18,-35 + 21884: -29,-35 + 21893: -10,-35 + 21900: -10,-34 + 21918: -6,-30 + 21979: -7,-49 + 21992: -6,-46 + 21995: -11,-50 + 21997: -10,-49 + 22022: -14,-39 + 22025: -16,-56 + 22049: -20,-58 + 22056: -14,-47 + 23402: -30,-27 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNw decals: - 7606: 61,-3 - 7607: 65,-3 - 19176: 65,-4 + 7454: 61,-3 + 7455: 65,-3 + 18220: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNw decals: - 3813: 10,68 + 3680: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNw decals: - 4368: 7,31 - 4378: 2,29 - 4407: 10,37 - 4414: 4,31 - 4438: 4,29 - 4458: 15,28 - 4496: 13,27 - 4497: 16,31 - 4530: 4,40 - 4541: 7,43 - 4549: 10,40 - 4584: 13,36 - 4611: 15,46 - 4612: 13,45 - 4613: 13,43 - 4620: 20,32 - 4704: 20,29 - 4705: 20,30 - 4709: 26,30 - 4714: 24,29 - 4719: 21,29 - 4720: 22,30 - 4725: 24,36 - 4753: 26,37 - 4770: 16,37 - 4771: 15,36 - 4775: 28,38 - 4811: 4,35 - 4816: 5,37 - 4857: 34,49 - 4902: 10,54 - 4931: 17,54 - 4936: 15,53 - 4944: 24,54 - 5042: 19,51 - 5043: 19,49 - 5044: 19,47 - 5045: 19,45 - 5046: 19,43 - 5047: 19,41 - 5048: 16,41 - 5049: 16,43 - 5050: 16,45 - 6986: 4,29 - 19821: 25,29 + 4218: 7,31 + 4228: 2,29 + 4257: 10,37 + 4264: 4,31 + 4288: 4,29 + 4308: 15,28 + 4346: 13,27 + 4347: 16,31 + 4380: 4,40 + 4391: 7,43 + 4399: 10,40 + 4434: 13,36 + 4461: 15,46 + 4462: 13,45 + 4463: 13,43 + 4470: 20,32 + 4554: 20,29 + 4555: 20,30 + 4559: 26,30 + 4564: 24,29 + 4569: 21,29 + 4570: 22,30 + 4575: 24,36 + 4603: 26,37 + 4620: 16,37 + 4621: 15,36 + 4625: 28,38 + 4661: 4,35 + 4666: 5,37 + 4707: 34,49 + 4752: 10,54 + 4781: 17,54 + 4786: 15,53 + 4794: 24,54 + 4892: 19,51 + 4893: 19,49 + 4894: 19,47 + 4895: 19,45 + 4896: 19,43 + 4897: 19,41 + 4898: 16,41 + 4899: 16,43 + 4900: 16,45 + 6834: 4,29 + 18827: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNw decals: - 4006: -39,54 - 9544: 3,-35 - 9551: 5,-30 - 9574: 5,-32 + 3873: -39,54 + 9382: 3,-35 + 9389: 5,-30 + 9412: 5,-32 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNw decals: - 16820: -53,2 - 16822: -49,2 - 16843: -61,1 - 16891: -64,1 - 16922: -58,-6 - 16925: -61,-7 - 16933: -58,-12 - 16984: -54,-12 - 16992: -50,-15 - 16999: -59,-17 - 17100: -55,15 - 17103: -58,15 - 17105: -59,14 - 17108: -59,10 - 17153: -78,14 - 17240: -49,-7 - 17279: -55,-9 - 17312: -71,-6 - 17313: -69,-6 - 17354: 5,90 - 17363: 10,88 - 17396: 10,81 - 17411: 10,76 - 17541: -73,2 - 17546: -74,0 - 17597: -72,12 - 17645: -77,7 - 17668: -77,1 - 17674: -79,0 - 17714: -71,-10 - 21556: -45,14 - 21557: -45,12 + 15869: -53,2 + 15871: -49,2 + 15892: -61,1 + 15940: -64,1 + 15971: -58,-6 + 15974: -61,-7 + 15982: -58,-12 + 16033: -54,-12 + 16041: -50,-15 + 16048: -59,-17 + 16149: -55,15 + 16152: -58,15 + 16154: -59,14 + 16157: -59,10 + 16202: -78,14 + 16289: -49,-7 + 16328: -55,-9 + 16361: -71,-6 + 16362: -69,-6 + 16403: 5,90 + 16412: 10,88 + 16445: 10,81 + 16460: 10,76 + 16590: -73,2 + 16595: -74,0 + 16646: -72,12 + 16694: -77,7 + 16717: -77,1 + 16723: -79,0 + 16763: -71,-10 + 20562: -45,14 + 20563: -45,12 - node: color: '#FBB2FFFF' id: BrickTileWhiteInnerNw decals: - 22874: -18,-35 + 21880: -18,-35 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2353: -30,38 - 2807: -7,33 - 5575: -31,28 - 5576: -31,28 - 5577: -34,26 - 6339: -2,-16 - 6698: -24,-2 - 6699: -24,-2 - 6729: -33,-11 - 6751: -30,-16 - 8065: 58,-25 - 8066: 57,-26 - 8067: 57,-13 - 8068: 58,-12 - 8306: 35,-10 - 8307: 35,-10 - 8309: 35,-13 - 8346: 46,-14 - 8694: -8,-76 - 8695: -5,-77 - 8696: -3,-76 - 8697: -8,-80 - 8698: -3,-80 - 9075: 2,-25 - 9453: 72,-50 - 9454: 73,-49 - 9460: 73,-42 - 10596: 72,-50 - 14927: 11,23 - 14928: 1,23 - 14929: -6,23 - 14930: -16,23 - 14931: -19,19 - 14938: 17,19 - 14946: -21,34 - 14947: -19,36 - 14948: -19,32 - 14949: -19,29 - 14954: -22,33 - 14957: -22,50 - 14958: -21,51 - 14959: -19,52 - 14960: -17,51 - 14966: -19,48 - 14967: -23,41 - 14971: -11,49 - 14972: -6,49 - 14985: -20,57 - 14986: -13,57 - 14987: -6,57 - 14988: 0,57 - 14989: -5,64 - 14990: -6,68 - 14991: 0,68 - 14992: 5,68 - 14993: 6,75 - 14994: 6,82 - 14995: -13,68 - 14996: -12,75 - 14997: -12,82 - 14998: -12,88 - 14999: -12,95 - 15000: -26,68 - 15001: -20,68 - 15002: -31,68 - 15003: -30,75 - 15004: -30,82 - 15005: -30,88 - 15006: -30,95 - 15069: -19,64 - 15075: 17,12 - 15076: 21,5 - 15077: 28,5 - 15090: 21,-11 - 15093: 28,-11 - 15094: 17,-12 - 15107: -38,5 - 15108: -38,5 - 15109: -33,5 - 15110: -27,5 - 15121: -19,-12 - 15122: -19,-2 - 15123: -19,5 - 15133: 3,-20 - 15134: -8,-20 - 15135: -15,-20 - 15143: 44,-20 - 15144: 49,-20 - 15148: 17,5 - 15149: -10,14 - 15212: -1,-39 - 15213: -1,-44 - 15214: -1,-31 - 15215: -1,-24 - 15221: -1,-52 - 15222: -1,-59 - 15375: -42,11 - 15376: -42,17 - 15377: -42,22 - 15587: 95,-3 - 18733: -9,-9 - 18734: -3,-9 - 18735: 4,-9 - 18736: 10,-9 - 18743: -15,-9 - 19445: -19,12 - 19448: 10,-20 - 19639: 35,-9 - 19640: 34,-10 - 19911: 17,-2 - 20172: -19,-2 - 20173: -19,5 - 20174: -19,12 - 20175: -19,19 - 24775: 39,-67 + 2230: -30,38 + 2684: -7,33 + 5423: -31,28 + 5424: -31,28 + 5425: -34,26 + 6187: -2,-16 + 6546: -24,-2 + 6547: -24,-2 + 6577: -33,-11 + 6599: -30,-16 + 7911: 58,-25 + 7912: 57,-26 + 7913: 57,-13 + 7914: 58,-12 + 8152: 35,-10 + 8153: 35,-10 + 8155: 35,-13 + 8192: 46,-14 + 8532: -8,-76 + 8533: -5,-77 + 8534: -3,-76 + 8535: -8,-80 + 8536: -3,-80 + 8913: 2,-25 + 9291: 72,-50 + 9292: 73,-49 + 9298: 73,-42 + 10434: 72,-50 + 13983: 11,23 + 13984: 1,23 + 13985: -6,23 + 13986: -16,23 + 13987: -19,19 + 13994: 17,19 + 14002: -21,34 + 14003: -19,36 + 14004: -19,32 + 14005: -19,29 + 14010: -22,33 + 14013: -22,50 + 14014: -21,51 + 14015: -19,52 + 14016: -17,51 + 14022: -19,48 + 14023: -23,41 + 14027: -11,49 + 14028: -6,49 + 14041: -20,57 + 14042: -13,57 + 14043: -6,57 + 14044: 0,57 + 14045: -5,64 + 14046: -6,68 + 14047: 0,68 + 14048: 5,68 + 14049: 6,75 + 14050: 6,82 + 14051: -13,68 + 14052: -12,75 + 14053: -12,82 + 14054: -12,88 + 14055: -12,95 + 14056: -26,68 + 14057: -20,68 + 14058: -31,68 + 14059: -30,75 + 14060: -30,82 + 14061: -30,88 + 14062: -30,95 + 14125: -19,64 + 14131: 17,12 + 14132: 21,5 + 14133: 28,5 + 14146: 21,-11 + 14149: 28,-11 + 14150: 17,-12 + 14163: -38,5 + 14164: -38,5 + 14165: -33,5 + 14166: -27,5 + 14177: -19,-12 + 14178: -19,-2 + 14179: -19,5 + 14189: 3,-20 + 14190: -8,-20 + 14191: -15,-20 + 14199: 44,-20 + 14200: 49,-20 + 14204: 17,5 + 14205: -10,14 + 14268: -1,-39 + 14269: -1,-44 + 14270: -1,-31 + 14271: -1,-24 + 14277: -1,-52 + 14278: -1,-59 + 14424: -42,11 + 14425: -42,17 + 14426: -42,22 + 14636: 95,-3 + 17777: -9,-9 + 17778: -3,-9 + 17779: 4,-9 + 17780: 10,-9 + 17787: -15,-9 + 18489: -19,12 + 18492: 10,-20 + 18683: 35,-9 + 18684: 34,-10 + 18917: 17,-2 + 19178: -19,-2 + 19179: -19,5 + 19180: -19,12 + 19181: -19,19 + 23774: 39,-67 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSe decals: - 21827: -18,18 - 21828: -18,14 + 20833: -18,18 + 20834: -18,14 - node: color: '#3EB388FF' id: BrickTileWhiteInnerSe decals: - 21586: -55,36 - 21588: -55,32 - 21589: -46,23 - 21631: -53,21 - 21671: -47,41 - 21672: -48,44 - 21772: -46,51 - 21773: -54,44 - 21776: -56,44 - 21797: -59,56 + 20592: -55,36 + 20594: -55,32 + 20595: -46,23 + 20637: -53,21 + 20677: -47,41 + 20678: -48,44 + 20778: -46,51 + 20779: -54,44 + 20782: -56,44 + 20803: -59,56 - node: color: '#439909FF' id: BrickTileWhiteInnerSe decals: - 24636: 27,-58 - 24637: 28,-56 - 24691: 41,-62 - 24711: 36,-70 - 24727: 32,-68 - 24759: 41,-71 - 24760: 39,-71 + 23635: 27,-58 + 23636: 28,-56 + 23690: 41,-62 + 23710: 36,-70 + 23726: 32,-68 + 23758: 41,-71 + 23759: 39,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerSe decals: - 23102: 18,-36 - 23113: 18,-28 - 23136: 17,-34 - 23175: 13,-35 - 23176: 14,-35 - 23229: 38,-35 - 23423: 36,-40 - 23442: 37,-42 - 23443: 28,-44 - 23444: 28,-50 - 23445: 27,-53 - 23446: 28,-40 - 23447: 24,-44 - 23456: 18,-40 - 23457: 17,-45 - 23458: 27,-44 - 23459: 17,-47 - 23541: 4,-47 - 23558: 9,-41 - 23568: 14,-40 - 23589: 14,-44 - 23603: 24,-40 - 23610: 18,-44 - 23660: 28,-50 - 23668: 27,-35 - 23669: 36,-35 - 23670: 29,-32 - 23671: 29,-27 - 23748: 30,-30 - 23753: 27,-51 - 23763: 0,-44 - 23766: 0,-51 - 23773: 0,-42 - 23776: 0,-49 - 23787: -5,-60 - 23800: 6,67 - 23801: 4,67 + 22108: 18,-36 + 22119: 18,-28 + 22142: 17,-34 + 22181: 13,-35 + 22182: 14,-35 + 22235: 38,-35 + 22429: 36,-40 + 22448: 37,-42 + 22449: 28,-44 + 22450: 28,-50 + 22451: 27,-53 + 22452: 28,-40 + 22453: 24,-44 + 22462: 18,-40 + 22463: 17,-45 + 22464: 27,-44 + 22465: 17,-47 + 22547: 4,-47 + 22564: 9,-41 + 22574: 14,-40 + 22595: 14,-44 + 22609: 24,-40 + 22616: 18,-44 + 22666: 28,-50 + 22674: 27,-35 + 22675: 36,-35 + 22676: 29,-32 + 22677: 29,-27 + 22754: 30,-30 + 22759: 27,-51 + 22769: 0,-44 + 22772: 0,-51 + 22779: 0,-42 + 22782: 0,-49 + 22793: -5,-60 + 22806: 6,67 + 22807: 4,67 + 23802: 14,-26 + 23804: 14,-24 + 23824: 10,-26 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSe decals: - 17782: -46,23 - 17826: -55,32 - 17858: -46,51 - 17893: -48,44 - 17898: -47,41 - 17941: -59,56 - 17945: -58,57 - 17968: -56,44 - 17969: -54,44 - 18040: -53,21 + 16831: -46,23 + 16875: -55,32 + 16907: -46,51 + 16942: -48,44 + 16947: -47,41 + 16990: -59,56 + 16994: -58,57 + 17017: -56,44 + 17018: -54,44 + 17089: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSe decals: - 9522: 18,-28 - 9652: 18,-36 - 9661: 14,-35 - 9728: 27,-53 - 9729: 28,-50 - 9730: 28,-44 - 9731: 28,-40 - 9732: 28,-36 - 9833: 17,-47 - 9840: 18,-40 - 9841: 18,-44 - 9870: 24,-40 - 9890: 38,-35 - 9891: 38,-35 - 9926: 37,-42 - 9950: 36,-40 - 9965: 30,-30 - 10015: 29,-27 - 10019: 29,-32 - 10041: 14,-40 - 10045: 24,-45 - 10063: 22,-49 - 10064: 25,-43 - 10093: 24,-44 - 10149: 31,-53 - 10278: 9,-41 - 10279: 4,-47 - 10304: 14,-44 - 10530: 49,-33 - 15227: 10,-26 - 15228: 13,-35 - 15229: 17,-34 - 15230: 27,-35 - 15231: 36,-35 - 15232: 27,-44 - 15233: 27,-51 - 15234: 17,-45 - 19317: -5,-60 + 9360: 18,-28 + 9490: 18,-36 + 9499: 14,-35 + 9566: 27,-53 + 9567: 28,-50 + 9568: 28,-44 + 9569: 28,-40 + 9570: 28,-36 + 9671: 17,-47 + 9678: 18,-40 + 9679: 18,-44 + 9708: 24,-40 + 9728: 38,-35 + 9729: 38,-35 + 9764: 37,-42 + 9788: 36,-40 + 9803: 30,-30 + 9853: 29,-27 + 9857: 29,-32 + 9879: 14,-40 + 9883: 24,-45 + 9901: 22,-49 + 9902: 25,-43 + 9931: 24,-44 + 9987: 31,-53 + 10116: 9,-41 + 10117: 4,-47 + 10142: 14,-44 + 10368: 49,-33 + 14283: 10,-26 + 14284: 13,-35 + 14285: 17,-34 + 14286: 27,-35 + 14287: 36,-35 + 14288: 27,-44 + 14289: 27,-51 + 14290: 17,-45 + 18361: -5,-60 - node: color: '#A46106FF' id: BrickTileWhiteInnerSe decals: - 21864: 5,26 - 21865: 8,26 - 21883: 10,28 - 21905: 8,28 - 21956: 9,35 - 21957: 10,34 - 21958: 11,35 - 21976: 4,33 - 21980: 9,33 - 22003: 5,39 - 22007: 10,39 - 22019: 10,42 - 22027: 11,45 - 22031: 11,43 - 22076: 15,34 - 22077: 21,34 - 22136: 13,52 - 22137: 13,49 - 22227: 22,36 - 22233: 19,36 - 22236: 18,35 - 22286: 22,41 - 22287: 22,43 - 22288: 22,45 - 22289: 22,47 - 22290: 22,51 - 22291: 22,49 - 22298: 17,41 - 22299: 17,43 - 22300: 17,45 - 22314: 21,40 - 22326: 25,48 - 22351: 38,51 - 22364: 32,51 - 22368: 25,54 - 22371: 25,48 - 22394: 16,27 - 22412: 16,26 - 22446: 27,35 - 22492: 28,40 + 20870: 5,26 + 20871: 8,26 + 20889: 10,28 + 20911: 8,28 + 20962: 9,35 + 20963: 10,34 + 20964: 11,35 + 20982: 4,33 + 20986: 9,33 + 21009: 5,39 + 21013: 10,39 + 21025: 10,42 + 21033: 11,45 + 21037: 11,43 + 21082: 15,34 + 21083: 21,34 + 21142: 13,52 + 21143: 13,49 + 21233: 22,36 + 21239: 19,36 + 21242: 18,35 + 21292: 22,41 + 21293: 22,43 + 21294: 22,45 + 21295: 22,47 + 21296: 22,51 + 21297: 22,49 + 21304: 17,41 + 21305: 17,43 + 21306: 17,45 + 21320: 21,40 + 21332: 25,48 + 21357: 38,51 + 21370: 32,51 + 21374: 25,54 + 21377: 25,48 + 21400: 16,27 + 21418: 16,26 + 21452: 27,35 + 21498: 28,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSe decals: - 2880: -27,47 - 2881: -31,46 - 2887: -32,46 - 2911: -28,53 - 2964: -30,47 - 2965: -28,47 - 2995: -37,49 - 2998: -38,47 + 2757: -27,47 + 2758: -31,46 + 2764: -32,46 + 2788: -28,53 + 2841: -30,47 + 2842: -28,47 + 2872: -37,49 + 2875: -38,47 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSe decals: - 5085: 27,31 - 5088: 22,27 - 5162: 35,34 - 5165: 36,37 - 11556: -12,-35 - 11581: -5,-35 - 11600: -5,-32 - 11605: -7,-36 - 11608: -12,-34 - 11709: -13,-36 - 11733: -13,-41 - 11819: -29,-36 - 11820: -24,-36 - 12012: -22,-26 - 12114: -24,-41 - 12151: -13,-50 - 12154: -16,-54 - 12182: -13,-59 - 12214: -4,-48 - 12222: -6,-53 - 12244: -19,-44 - 12550: -7,-34 - 12651: -7,-34 - 12652: -7,-34 - 15174: -8,-26 - 15175: -14,-35 - 15176: -14,-43 - 15177: -14,-53 - 15178: -24,-35 - 15179: -23,-30 - 15198: -29,-41 - 19959: 36,39 + 4935: 27,31 + 4938: 22,27 + 5012: 35,34 + 5015: 36,37 + 11053: -12,-35 + 11078: -5,-35 + 11097: -5,-32 + 11102: -7,-36 + 11105: -12,-34 + 11194: -13,-36 + 11218: -13,-41 + 11304: -29,-36 + 11305: -24,-36 + 11350: -22,-26 + 11452: -24,-41 + 11489: -13,-50 + 11492: -16,-54 + 11520: -13,-59 + 11552: -4,-48 + 11560: -6,-53 + 11582: -19,-44 + 11888: -7,-34 + 11969: -7,-34 + 11970: -7,-34 + 14230: -8,-26 + 14231: -14,-35 + 14232: -14,-43 + 14233: -14,-53 + 14234: -24,-35 + 14235: -23,-30 + 14254: -29,-41 + 18965: 36,39 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 22570: -6,-28 - 22576: -15,-28 - 22583: -13,-28 - 22681: -13,-50 - 22684: -16,-54 - 22694: -13,-41 - 22735: -19,-44 - 22790: -22,-31 - 22808: -29,-36 - 22812: -24,-36 - 22836: -23,-30 - 22840: -22,-26 - 22880: -24,-35 - 22884: -14,-35 - 22889: -12,-34 - 22891: -12,-35 - 22892: -13,-36 - 22914: -5,-32 - 22915: -7,-36 - 22983: -4,-48 - 22995: -6,-53 - 23013: -14,-53 - 23014: -14,-43 - 23049: -13,-59 - 24393: -29,-29 - 24394: -28,-31 - 24395: -28,-27 + 21576: -6,-28 + 21582: -15,-28 + 21589: -13,-28 + 21687: -13,-50 + 21690: -16,-54 + 21700: -13,-41 + 21741: -19,-44 + 21796: -22,-31 + 21814: -29,-36 + 21818: -24,-36 + 21842: -23,-30 + 21846: -22,-26 + 21886: -24,-35 + 21890: -14,-35 + 21895: -12,-34 + 21897: -12,-35 + 21898: -13,-36 + 21920: -5,-32 + 21921: -7,-36 + 21989: -4,-48 + 22001: -6,-53 + 22019: -14,-53 + 22020: -14,-43 + 22055: -13,-59 + 23397: -29,-29 + 23398: -28,-31 + 23399: -28,-27 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSe decals: - 19151: 70,13 - 19163: 63,-4 + 18195: 70,13 + 18207: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSe decals: - 3815: 12,67 + 3682: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSe decals: - 4380: 10,28 - 4403: 9,33 - 4410: 11,35 - 4417: 5,26 - 4418: 8,26 - 4436: 8,28 - 4468: 16,26 - 4494: 16,27 - 4522: 10,34 - 4525: 5,39 - 4544: 10,39 - 4561: 10,42 - 4564: 11,43 - 4567: 11,45 - 4578: 15,34 - 4594: 21,34 - 4640: 22,27 - 4641: 21,26 - 4651: 27,31 - 4686: 20,28 - 4687: 26,28 - 4688: 24,28 - 4710: 26,29 - 4711: 22,29 - 4717: 21,29 - 4768: 18,35 - 4769: 19,36 - 4777: 28,40 - 4809: 9,35 - 4821: 21,40 - 4854: 32,51 - 4858: 38,51 - 4881: 25,48 - 4919: 13,49 - 4924: 13,52 - 4945: 25,54 - 5022: 22,43 - 5034: 17,45 - 5035: 17,43 - 5036: 17,41 - 5037: 22,41 - 5038: 22,45 - 5039: 22,47 - 5040: 22,49 - 5041: 22,51 - 6984: 8,28 - 19825: 25,29 + 4230: 10,28 + 4253: 9,33 + 4260: 11,35 + 4267: 5,26 + 4268: 8,26 + 4286: 8,28 + 4318: 16,26 + 4344: 16,27 + 4372: 10,34 + 4375: 5,39 + 4394: 10,39 + 4411: 10,42 + 4414: 11,43 + 4417: 11,45 + 4428: 15,34 + 4444: 21,34 + 4490: 22,27 + 4491: 21,26 + 4501: 27,31 + 4536: 20,28 + 4537: 26,28 + 4538: 24,28 + 4560: 26,29 + 4561: 22,29 + 4567: 21,29 + 4618: 18,35 + 4619: 19,36 + 4627: 28,40 + 4659: 9,35 + 4671: 21,40 + 4704: 32,51 + 4708: 38,51 + 4731: 25,48 + 4769: 13,49 + 4774: 13,52 + 4795: 25,54 + 4872: 22,43 + 4884: 17,45 + 4885: 17,43 + 4886: 17,41 + 4887: 22,41 + 4888: 22,45 + 4889: 22,47 + 4890: 22,49 + 4891: 22,51 + 6832: 8,28 + 18831: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSe decals: - 9548: 5,-36 - 9550: 8,-34 - 9577: 6,-34 + 9386: 5,-36 + 9388: 8,-34 + 9415: 6,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 16817: -49,1 - 16840: -58,-4 - 16861: -52,8 - 16871: -51,9 - 16890: -63,1 - 16909: -63,-7 - 16917: -57,-9 - 16918: -57,-7 - 16931: -58,-10 - 16971: -52,-4 - 16985: -52,-10 - 16986: -52,-15 - 16994: -56,-18 - 16995: -54,-18 - 17016: -50,-17 - 17093: -47,14 - 17098: -50,11 - 17128: -68,15 - 17154: -76,14 - 17155: -77,13 - 17159: -72,14 - 17219: -58,17 - 17238: -51,-9 - 17308: -69,-8 - 17334: -75,-8 - 17378: 6,87 - 17379: 10,84 - 17388: 11,87 - 17414: 12,78 - 17544: -66,1 - 17549: -71,-4 - 17550: -69,-4 - 17593: -72,10 - 17639: -77,3 - 17680: -76,-2 - 17684: -76,0 - 19830: -49,-3 + 15866: -49,1 + 15889: -58,-4 + 15910: -52,8 + 15920: -51,9 + 15939: -63,1 + 15958: -63,-7 + 15966: -57,-9 + 15967: -57,-7 + 15980: -58,-10 + 16020: -52,-4 + 16034: -52,-10 + 16035: -52,-15 + 16043: -56,-18 + 16044: -54,-18 + 16065: -50,-17 + 16142: -47,14 + 16147: -50,11 + 16177: -68,15 + 16203: -76,14 + 16204: -77,13 + 16208: -72,14 + 16268: -58,17 + 16287: -51,-9 + 16357: -69,-8 + 16383: -75,-8 + 16427: 6,87 + 16428: 10,84 + 16437: 11,87 + 16463: 12,78 + 16593: -66,1 + 16598: -71,-4 + 16599: -69,-4 + 16642: -72,10 + 16688: -77,3 + 16729: -76,-2 + 16733: -76,0 + 18836: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2363: -29,32 - 2364: -29,32 - 2367: -29,30 - 2370: -31,30 - 2696: -12,52 - 3833: 19,69 - 3836: 22,69 - 6663: -32,-3 - 6664: -32,-3 - 6681: -32,1 - 6686: -29,-3 - 6690: -24,-3 - 6691: -24,-3 - 6754: -35,-11 - 6961: -23,-17 - 6965: -24,-18 - 8061: 60,-16 - 8062: 61,-15 - 8063: 61,-28 - 8064: 60,-29 - 8315: 39,-11 - 8316: 39,-14 - 8317: 39,-14 - 8341: 47,-17 - 8704: -4,-79 - 8705: -1,-80 - 8706: -6,-80 - 8708: -6,-76 - 8709: -1,-76 - 8960: -15,-28 - 9442: -4,-71 - 9457: 73,-47 - 10603: 75,-45 - 13396: -41,-63 - 14790: -21,47 - 14791: -17,47 - 14792: -16,48 - 14793: -19,46 - 14794: -19,50 - 14795: -23,41 - 14796: -19,34 - 14797: -19,31 - 14798: -19,27 - 14799: -19,16 - 14800: -13,23 - 14801: -3,23 - 14802: 4,23 - 14887: 17,16 - 14888: 14,23 - 14955: -21,29 - 14975: -10,49 - 14976: -5,49 - 14977: -11,57 - 14978: -4,57 - 14979: 2,57 - 14980: -18,57 - 15013: -30,85 - 15014: -30,92 - 15015: -30,79 - 15020: -30,72 - 15021: -29,68 - 15022: -24,68 - 15023: -18,68 - 15024: -11,68 - 15025: -4,68 - 15026: -12,72 - 15027: -12,79 - 15028: -12,85 - 15029: -12,92 - 15045: 6,79 - 15046: 6,72 - 15047: 7,68 - 15048: 2,68 - 15063: -5,61 - 15070: -19,61 - 15072: 17,9 - 15073: 24,5 - 15074: 31,5 - 15083: 17,2 - 15084: 17,-5 - 15085: 17,-17 - 15086: 24,-11 - 15087: 30,-11 - 15111: -31,5 - 15112: -23,5 - 15113: -36,5 - 15120: -19,-17 - 15124: -19,2 - 15125: -19,-5 - 15126: -12,-20 - 15127: -5,-20 - 15131: 6,-20 - 15132: 13,-20 - 15141: 47,-20 - 15142: 52,-20 - 15199: -1,-35 - 15200: -1,-42 - 15201: -1,-50 - 15202: -1,-55 - 15203: -1,-61 - 15210: -1,-27 - 15378: -42,20 - 15379: -42,9 - 15380: -42,14 - 15513: 95,-3 - 15604: 96,6 - 18740: -6,-9 - 18741: -12,-9 - 18750: 7,-9 - 18751: 13,-9 - 18753: 1,-9 - 19447: -19,9 - 19643: 40,-14 - 19644: 39,-15 - 20184: -19,2 - 20185: -19,9 - 20186: -19,16 - 20187: -19,-5 - 23064: 11,-28 - 24770: 40,-68 + 2240: -29,32 + 2241: -29,32 + 2244: -29,30 + 2247: -31,30 + 2573: -12,52 + 3700: 19,69 + 3703: 22,69 + 6511: -32,-3 + 6512: -32,-3 + 6529: -32,1 + 6534: -29,-3 + 6538: -24,-3 + 6539: -24,-3 + 6602: -35,-11 + 6809: -23,-17 + 6813: -24,-18 + 7907: 60,-16 + 7908: 61,-15 + 7909: 61,-28 + 7910: 60,-29 + 8161: 39,-11 + 8162: 39,-14 + 8163: 39,-14 + 8187: 47,-17 + 8542: -4,-79 + 8543: -1,-80 + 8544: -6,-80 + 8546: -6,-76 + 8547: -1,-76 + 8798: -15,-28 + 9280: -4,-71 + 9295: 73,-47 + 10441: 75,-45 + 12452: -41,-63 + 13846: -21,47 + 13847: -17,47 + 13848: -16,48 + 13849: -19,46 + 13850: -19,50 + 13851: -23,41 + 13852: -19,34 + 13853: -19,31 + 13854: -19,27 + 13855: -19,16 + 13856: -13,23 + 13857: -3,23 + 13858: 4,23 + 13943: 17,16 + 13944: 14,23 + 14011: -21,29 + 14031: -10,49 + 14032: -5,49 + 14033: -11,57 + 14034: -4,57 + 14035: 2,57 + 14036: -18,57 + 14069: -30,85 + 14070: -30,92 + 14071: -30,79 + 14076: -30,72 + 14077: -29,68 + 14078: -24,68 + 14079: -18,68 + 14080: -11,68 + 14081: -4,68 + 14082: -12,72 + 14083: -12,79 + 14084: -12,85 + 14085: -12,92 + 14101: 6,79 + 14102: 6,72 + 14103: 7,68 + 14104: 2,68 + 14119: -5,61 + 14126: -19,61 + 14128: 17,9 + 14129: 24,5 + 14130: 31,5 + 14139: 17,2 + 14140: 17,-5 + 14141: 17,-17 + 14142: 24,-11 + 14143: 30,-11 + 14167: -31,5 + 14168: -23,5 + 14169: -36,5 + 14176: -19,-17 + 14180: -19,2 + 14181: -19,-5 + 14182: -12,-20 + 14183: -5,-20 + 14187: 6,-20 + 14188: 13,-20 + 14197: 47,-20 + 14198: 52,-20 + 14255: -1,-35 + 14256: -1,-42 + 14257: -1,-50 + 14258: -1,-55 + 14259: -1,-61 + 14266: -1,-27 + 14427: -42,20 + 14428: -42,9 + 14429: -42,14 + 14562: 95,-3 + 14653: 96,6 + 17784: -6,-9 + 17785: -12,-9 + 17794: 7,-9 + 17795: 13,-9 + 17797: 1,-9 + 18491: -19,9 + 18687: 40,-14 + 18688: 39,-15 + 19190: -19,2 + 19191: -19,9 + 19192: -19,16 + 19193: -19,-5 + 22070: 11,-28 + 23769: 40,-68 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSw decals: - 21214: -16,14 - 21215: -16,14 - 22518: 16,-4 - 22528: 16,-2 + 20220: -16,14 + 20221: -16,14 + 21524: 16,-4 + 21534: 16,-2 - node: color: '#3EB388FF' id: BrickTileWhiteInnerSw decals: - 21574: -56,35 - 21575: -55,32 - 21632: -54,23 - 21636: -49,21 - 21666: -50,41 - 21673: -48,44 - 21774: -54,44 - 21775: -56,44 - 21779: -60,50 - 21780: -60,48 - 21795: -60,57 - 21796: -59,56 - 21810: -43,23 - 21815: -44,20 - 21816: -44,18 + 20580: -56,35 + 20581: -55,32 + 20638: -54,23 + 20642: -49,21 + 20672: -50,41 + 20679: -48,44 + 20780: -54,44 + 20781: -56,44 + 20785: -60,50 + 20786: -60,48 + 20801: -60,57 + 20802: -59,56 + 20816: -43,23 + 20821: -44,20 + 20822: -44,18 - node: color: '#439909FF' id: BrickTileWhiteInnerSw decals: - 24635: 27,-58 - 24638: 26,-56 - 24677: 43,-62 - 24693: 38,-62 - 24696: 34,-61 - 24718: 34,-68 - 24757: 39,-71 - 24758: 41,-71 + 23634: 27,-58 + 23637: 26,-56 + 23676: 43,-62 + 23692: 38,-62 + 23695: 34,-61 + 23717: 34,-68 + 23756: 39,-71 + 23757: 41,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerSw decals: - 23078: 16,-26 - 23092: 16,-31 - 23122: 16,-35 - 23135: 17,-34 - 23169: 11,-35 - 23170: 10,-34 - 23303: 20,-44 - 23418: 30,-40 - 23422: 32,-40 - 23441: 37,-42 - 23460: 17,-47 - 23539: 3,-44 - 23540: 4,-47 - 23557: 9,-41 - 23569: 16,-40 - 23570: 17,-45 - 23571: 16,-44 - 23587: 14,-45 - 23602: 20,-40 - 23604: 27,-44 - 23605: 26,-44 - 23623: 26,-40 - 23655: 27,-53 - 23658: 30,-49 - 23662: 30,-50 - 23666: 22,-35 - 23667: 31,-35 - 23672: 29,-27 - 23673: 29,-32 - 23674: 24,-29 - 23725: 20,-28 - 23734: 26,-30 - 23752: 27,-51 - 23755: 31,-53 - 23799: 6,67 - 23802: 8,67 - 23813: 5,64 - 24003: -3,-58 - 24006: -3,-60 + 22084: 16,-26 + 22098: 16,-31 + 22128: 16,-35 + 22141: 17,-34 + 22175: 11,-35 + 22176: 10,-34 + 22309: 20,-44 + 22424: 30,-40 + 22428: 32,-40 + 22447: 37,-42 + 22466: 17,-47 + 22545: 3,-44 + 22546: 4,-47 + 22563: 9,-41 + 22575: 16,-40 + 22576: 17,-45 + 22577: 16,-44 + 22593: 14,-45 + 22608: 20,-40 + 22610: 27,-44 + 22611: 26,-44 + 22629: 26,-40 + 22661: 27,-53 + 22664: 30,-49 + 22668: 30,-50 + 22672: 22,-35 + 22673: 31,-35 + 22678: 29,-27 + 22679: 29,-32 + 22680: 24,-29 + 22731: 20,-28 + 22740: 26,-30 + 22758: 27,-51 + 22761: 31,-53 + 22805: 6,67 + 22808: 8,67 + 22819: 5,64 + 23009: -3,-58 + 23012: -3,-60 + 23821: 6,-26 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSw decals: - 15613: 97,-3 - 17803: -49,21 - 17824: -55,32 - 17825: -56,35 - 17892: -48,44 - 17940: -59,56 - 17944: -60,57 - 17952: -60,48 - 17955: -60,50 - 17967: -56,44 - 17970: -54,44 - 18041: -54,23 + 14662: 97,-3 + 16852: -49,21 + 16873: -55,32 + 16874: -56,35 + 16941: -48,44 + 16989: -59,56 + 16993: -60,57 + 17001: -60,48 + 17004: -60,50 + 17016: -56,44 + 17019: -54,44 + 17090: -54,23 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSw decals: - 9509: 16,-26 - 9674: 10,-34 - 9727: 27,-53 - 9733: 26,-36 - 9832: 17,-47 - 9842: 16,-44 - 9843: 16,-40 - 9854: 26,-44 - 9858: 26,-40 - 9869: 20,-40 - 9924: 37,-42 - 9925: 30,-40 - 9949: 32,-40 - 9964: 26,-30 - 10014: 29,-27 - 10018: 29,-32 - 10044: 20,-45 - 10062: 22,-49 - 10092: 20,-44 - 10122: 32,-51 - 10125: 32,-49 - 10148: 31,-53 - 10162: 30,-50 - 10276: 9,-41 - 10277: 4,-47 - 10283: 3,-44 - 10539: 43,-33 - 15226: 6,-26 - 15239: 17,-45 - 15240: 27,-44 - 15241: 27,-51 - 15250: 22,-35 - 15251: 31,-35 - 15252: 11,-35 - 18358: 17,-34 - 19287: 5,64 - 19655: 20,-28 - 19656: 24,-29 + 9347: 16,-26 + 9512: 10,-34 + 9565: 27,-53 + 9571: 26,-36 + 9670: 17,-47 + 9680: 16,-44 + 9681: 16,-40 + 9692: 26,-44 + 9696: 26,-40 + 9707: 20,-40 + 9762: 37,-42 + 9763: 30,-40 + 9787: 32,-40 + 9802: 26,-30 + 9852: 29,-27 + 9856: 29,-32 + 9882: 20,-45 + 9900: 22,-49 + 9930: 20,-44 + 9960: 32,-51 + 9963: 32,-49 + 9986: 31,-53 + 10000: 30,-50 + 10114: 9,-41 + 10115: 4,-47 + 10121: 3,-44 + 10377: 43,-33 + 14282: 6,-26 + 14295: 17,-45 + 14296: 27,-44 + 14297: 27,-51 + 14306: 22,-35 + 14307: 31,-35 + 14308: 11,-35 + 17407: 17,-34 + 18331: 5,64 + 18699: 20,-28 + 18700: 24,-29 - node: color: '#9FED58FF' id: BrickTileWhiteInnerSw decals: - 23836: -23,47 - 23838: -23,50 + 22842: -23,47 + 22844: -23,50 - node: color: '#A46106FF' id: BrickTileWhiteInnerSw decals: - 21862: 4,26 - 21863: 7,26 - 21879: 2,29 - 21902: 4,28 - 21953: 4,35 - 21975: 4,33 - 21979: 9,33 - 21999: 4,40 - 22002: 5,39 - 22006: 10,39 - 22018: 10,42 - 22046: 13,35 - 22074: 15,34 - 22078: 20,34 - 22139: 15,52 - 22234: 15,36 - 22235: 16,35 - 22252: 19,45 - 22253: 19,47 - 22254: 19,49 - 22255: 19,51 - 22273: 19,41 - 22274: 19,43 - 22275: 19,45 - 22276: 16,41 - 22277: 16,43 - 22278: 16,45 - 22306: 13,45 - 22307: 13,43 - 22313: 24,40 - 22355: 34,51 - 22395: 13,27 - 22410: 12,28 - 22411: 14,26 - 22445: 26,35 - 22450: 24,36 - 22491: 28,40 + 20868: 4,26 + 20869: 7,26 + 20885: 2,29 + 20908: 4,28 + 20959: 4,35 + 20981: 4,33 + 20985: 9,33 + 21005: 4,40 + 21008: 5,39 + 21012: 10,39 + 21024: 10,42 + 21052: 13,35 + 21080: 15,34 + 21084: 20,34 + 21145: 15,52 + 21240: 15,36 + 21241: 16,35 + 21258: 19,45 + 21259: 19,47 + 21260: 19,49 + 21261: 19,51 + 21279: 19,41 + 21280: 19,43 + 21281: 19,45 + 21282: 16,41 + 21283: 16,43 + 21284: 16,45 + 21312: 13,45 + 21313: 13,43 + 21319: 24,40 + 21361: 34,51 + 21401: 13,27 + 21416: 12,28 + 21417: 14,26 + 21451: 26,35 + 21456: 24,36 + 21497: 28,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSw decals: - 2882: -31,46 - 2888: -32,46 - 2893: -34,48 - 2894: -35,49 - 2961: -30,47 - 2962: -32,47 - 2963: -28,47 - 3004: -38,48 - 3006: -38,45 + 2759: -31,46 + 2765: -32,46 + 2770: -34,48 + 2771: -35,49 + 2838: -30,47 + 2839: -32,47 + 2840: -28,47 + 2881: -38,48 + 2883: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSw decals: - 5087: 24,27 - 5148: 38,30 - 5158: 38,30 - 11604: -7,-36 - 11606: -10,-35 - 11607: -10,-35 - 11609: -10,-34 - 11708: -15,-36 - 11730: -15,-40 - 11817: -29,-36 - 11818: -24,-36 - 12113: -25,-41 - 12149: -17,-51 - 12153: -16,-54 - 12165: -19,-59 - 12166: -20,-58 - 12210: -11,-50 - 12221: -6,-53 - 12243: -19,-44 - 12551: -8,-34 - 12649: -8,-34 - 12650: -8,-34 - 15173: -12,-26 - 15183: -29,-35 - 15184: -23,-30 - 15188: -18,-35 - 15189: -14,-43 - 15190: -14,-53 - 15197: -29,-41 + 4937: 24,27 + 4998: 38,30 + 5008: 38,30 + 11101: -7,-36 + 11103: -10,-35 + 11104: -10,-35 + 11106: -10,-34 + 11193: -15,-36 + 11215: -15,-40 + 11302: -29,-36 + 11303: -24,-36 + 11451: -25,-41 + 11487: -17,-51 + 11491: -16,-54 + 11503: -19,-59 + 11504: -20,-58 + 11548: -11,-50 + 11559: -6,-53 + 11581: -19,-44 + 11889: -8,-34 + 11967: -8,-34 + 11968: -8,-34 + 14229: -12,-26 + 14239: -29,-35 + 14240: -23,-30 + 14244: -18,-35 + 14245: -14,-43 + 14246: -14,-53 + 14253: -29,-41 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 22544: -2,-46 - 22549: -2,-48 - 22554: -2,-41 - 22559: -2,-38 - 22562: -3,-35 - 22569: -6,-28 - 22575: -13,-28 - 22582: -15,-28 - 22593: -15,-36 - 22669: -17,-51 - 22683: -16,-54 - 22734: -19,-44 - 22753: -15,-40 - 22807: -29,-36 - 22811: -24,-36 - 22835: -23,-30 - 22876: -18,-35 - 22879: -29,-35 - 22888: -10,-34 - 22893: -10,-35 - 22916: -7,-36 - 22990: -11,-50 - 22996: -6,-53 - 23012: -14,-53 - 23015: -14,-43 - 23042: -20,-58 - 24399: -30,-31 + 21550: -2,-46 + 21555: -2,-48 + 21560: -2,-41 + 21565: -2,-38 + 21568: -3,-35 + 21575: -6,-28 + 21581: -13,-28 + 21588: -15,-28 + 21599: -15,-36 + 21675: -17,-51 + 21689: -16,-54 + 21740: -19,-44 + 21759: -15,-40 + 21813: -29,-36 + 21817: -24,-36 + 21841: -23,-30 + 21882: -18,-35 + 21885: -29,-35 + 21894: -10,-34 + 21899: -10,-35 + 21922: -7,-36 + 21996: -11,-50 + 22002: -6,-53 + 22018: -14,-53 + 22021: -14,-43 + 22048: -20,-58 + 23403: -30,-31 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSw decals: - 19175: 65,-4 + 18219: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSw decals: - 3812: 10,68 + 3679: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSw decals: - 4377: 2,29 - 4404: 9,33 - 4419: 7,26 - 4420: 4,26 - 4435: 4,28 - 4455: 12,28 - 4467: 14,26 - 4495: 13,27 - 4526: 5,39 - 4529: 4,40 - 4543: 10,39 - 4560: 10,42 - 4579: 15,34 - 4585: 13,35 - 4593: 20,34 - 4614: 13,45 - 4615: 13,43 - 4639: 24,27 - 4642: 21,26 - 4684: 20,28 - 4685: 26,28 - 4689: 22,28 - 4703: 20,29 - 4712: 24,29 - 4718: 21,29 - 4724: 24,36 - 4752: 26,35 - 4766: 16,35 - 4767: 15,36 - 4776: 28,40 - 4810: 4,35 - 4822: 24,40 - 4856: 34,51 - 4935: 15,52 - 5023: 19,43 - 5024: 19,45 - 5025: 19,47 - 5026: 19,49 - 5027: 19,51 - 5030: 19,41 - 5031: 16,41 - 5032: 16,43 - 5033: 16,45 - 5152: 38,30 - 6985: 4,28 - 19824: 25,29 + 4227: 2,29 + 4254: 9,33 + 4269: 7,26 + 4270: 4,26 + 4285: 4,28 + 4305: 12,28 + 4317: 14,26 + 4345: 13,27 + 4376: 5,39 + 4379: 4,40 + 4393: 10,39 + 4410: 10,42 + 4429: 15,34 + 4435: 13,35 + 4443: 20,34 + 4464: 13,45 + 4465: 13,43 + 4489: 24,27 + 4492: 21,26 + 4534: 20,28 + 4535: 26,28 + 4539: 22,28 + 4553: 20,29 + 4562: 24,29 + 4568: 21,29 + 4574: 24,36 + 4602: 26,35 + 4616: 16,35 + 4617: 15,36 + 4626: 28,40 + 4660: 4,35 + 4672: 24,40 + 4706: 34,51 + 4785: 15,52 + 4873: 19,43 + 4874: 19,45 + 4875: 19,47 + 4876: 19,49 + 4877: 19,51 + 4880: 19,41 + 4881: 16,41 + 4882: 16,43 + 4883: 16,45 + 5002: 38,30 + 6833: 4,28 + 18830: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSw decals: - 9546: 3,-35 - 9547: 5,-36 - 9558: 3,-32 - 9576: 5,-34 + 9384: 3,-35 + 9385: 5,-36 + 9396: 3,-32 + 9414: 5,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSw decals: - 16839: -58,-4 - 16859: -59,1 - 16860: -53,8 - 16872: -54,9 - 16889: -64,1 - 16908: -61,-7 - 16930: -58,-10 - 16968: -59,-17 - 16969: -55,-7 - 16970: -54,-9 - 16991: -50,-15 - 16993: -54,-18 - 16998: -56,-18 - 17106: -59,14 - 17107: -59,10 - 17116: -66,15 - 17151: -72,14 - 17156: -77,13 - 17218: -58,17 - 17241: -49,-9 - 17307: -71,-8 - 17377: 6,87 - 17380: 10,84 - 17395: 10,80 - 17410: 10,75 - 17417: 12,74 - 17545: -74,0 - 17547: -71,-4 - 17548: -69,-4 - 17592: -72,10 - 17638: -77,3 - 17672: -79,0 - 17677: -78,-1 - 17679: -76,-2 - 18100: -54,-4 - 21553: -45,12 - 21554: -45,14 + 15888: -58,-4 + 15908: -59,1 + 15909: -53,8 + 15921: -54,9 + 15938: -64,1 + 15957: -61,-7 + 15979: -58,-10 + 16017: -59,-17 + 16018: -55,-7 + 16019: -54,-9 + 16040: -50,-15 + 16042: -54,-18 + 16047: -56,-18 + 16155: -59,14 + 16156: -59,10 + 16165: -66,15 + 16200: -72,14 + 16205: -77,13 + 16267: -58,17 + 16290: -49,-9 + 16356: -71,-8 + 16426: 6,87 + 16429: 10,84 + 16444: 10,80 + 16459: 10,75 + 16466: 12,74 + 16594: -74,0 + 16596: -71,-4 + 16597: -69,-4 + 16641: -72,10 + 16687: -77,3 + 16721: -79,0 + 16726: -78,-1 + 16728: -76,-2 + 17149: -54,-4 + 20559: -45,12 + 20560: -45,14 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2356: -28,38 - 2371: -31,30 - 2708: -12,52 - 2806: -7,33 - 3830: 17,70 - 3832: 18,69 - 3835: 21,69 - 6340: -2,-16 - 6687: -29,-3 - 6688: -24,-3 - 6689: -24,-3 - 6731: -28,-16 - 6753: -30,-11 - 6964: -24,-18 - 8057: 58,-29 - 8058: 57,-28 - 8059: 57,-15 - 8060: 58,-16 - 8312: 35,-14 - 8313: 35,-14 - 8314: 35,-11 - 8340: 46,-17 - 8690: -8,-80 - 8691: -3,-80 - 8692: -8,-76 - 8693: -3,-76 - 8707: -5,-79 - 8959: -13,-28 - 9070: 5,-28 - 9443: -5,-71 - 9452: 72,-50 - 9456: 73,-47 - 9458: 69,-41 - 10595: 72,-50 - 14767: 10,-20 - 14768: 17,-17 - 14769: 17,-5 - 14770: 17,2 - 14771: 17,9 - 14772: 17,16 - 14773: 11,23 - 14774: 1,23 - 14775: -6,23 - 14776: -16,23 - 14777: -19,16 - 14778: -19,27 - 14779: -21,29 - 14780: -22,30 - 14781: -19,31 - 14782: -19,34 - 14783: -23,41 - 14784: -19,46 - 14785: -21,47 - 14786: -17,47 - 14787: -19,50 - 14956: -22,48 - 14973: -11,49 - 14974: -6,49 - 14981: -20,57 - 14982: -13,57 - 14983: -6,57 - 14984: 0,57 - 15011: -30,85 - 15012: -30,92 - 15016: -30,79 - 15019: -30,72 - 15030: -12,92 - 15031: -12,85 - 15032: -12,79 - 15033: -12,72 - 15034: -13,68 - 15035: -20,68 - 15036: -26,68 - 15037: -31,68 - 15038: -19,61 - 15039: -5,61 - 15040: -6,68 - 15041: 0,68 - 15042: 5,68 - 15043: 6,72 - 15044: 6,79 - 15081: 21,5 - 15082: 28,5 - 15088: 28,-11 - 15089: 21,-11 - 15114: -38,5 - 15115: -33,5 - 15116: -27,5 - 15117: -19,2 - 15118: -19,-5 - 15119: -19,-17 - 15129: -8,-20 - 15130: 3,-20 - 15136: -15,-20 - 15139: 44,-20 - 15140: 49,-20 - 15204: -1,-61 - 15205: -1,-55 - 15206: -1,-50 - 15207: -1,-42 - 15208: -1,-35 - 15209: -1,-27 - 15369: -42,9 - 15370: -42,14 - 15371: -42,20 - 15605: 96,6 - 18742: -15,-9 - 18746: -9,-9 - 18747: -3,-9 - 18748: 4,-9 - 18749: 10,-9 - 19446: -19,9 - 19642: 34,-14 - 19645: 35,-15 - 20180: -19,-5 - 20181: -19,2 - 20182: -19,9 - 20183: -19,16 - 23065: 13,-28 - 24771: 40,-68 + 2233: -28,38 + 2248: -31,30 + 2585: -12,52 + 2683: -7,33 + 3697: 17,70 + 3699: 18,69 + 3702: 21,69 + 6188: -2,-16 + 6535: -29,-3 + 6536: -24,-3 + 6537: -24,-3 + 6579: -28,-16 + 6601: -30,-11 + 6812: -24,-18 + 7903: 58,-29 + 7904: 57,-28 + 7905: 57,-15 + 7906: 58,-16 + 8158: 35,-14 + 8159: 35,-14 + 8160: 35,-11 + 8186: 46,-17 + 8528: -8,-80 + 8529: -3,-80 + 8530: -8,-76 + 8531: -3,-76 + 8545: -5,-79 + 8797: -13,-28 + 8908: 5,-28 + 9281: -5,-71 + 9290: 72,-50 + 9294: 73,-47 + 9296: 69,-41 + 10433: 72,-50 + 13823: 10,-20 + 13824: 17,-17 + 13825: 17,-5 + 13826: 17,2 + 13827: 17,9 + 13828: 17,16 + 13829: 11,23 + 13830: 1,23 + 13831: -6,23 + 13832: -16,23 + 13833: -19,16 + 13834: -19,27 + 13835: -21,29 + 13836: -22,30 + 13837: -19,31 + 13838: -19,34 + 13839: -23,41 + 13840: -19,46 + 13841: -21,47 + 13842: -17,47 + 13843: -19,50 + 14012: -22,48 + 14029: -11,49 + 14030: -6,49 + 14037: -20,57 + 14038: -13,57 + 14039: -6,57 + 14040: 0,57 + 14067: -30,85 + 14068: -30,92 + 14072: -30,79 + 14075: -30,72 + 14086: -12,92 + 14087: -12,85 + 14088: -12,79 + 14089: -12,72 + 14090: -13,68 + 14091: -20,68 + 14092: -26,68 + 14093: -31,68 + 14094: -19,61 + 14095: -5,61 + 14096: -6,68 + 14097: 0,68 + 14098: 5,68 + 14099: 6,72 + 14100: 6,79 + 14137: 21,5 + 14138: 28,5 + 14144: 28,-11 + 14145: 21,-11 + 14170: -38,5 + 14171: -33,5 + 14172: -27,5 + 14173: -19,2 + 14174: -19,-5 + 14175: -19,-17 + 14185: -8,-20 + 14186: 3,-20 + 14192: -15,-20 + 14195: 44,-20 + 14196: 49,-20 + 14260: -1,-61 + 14261: -1,-55 + 14262: -1,-50 + 14263: -1,-42 + 14264: -1,-35 + 14265: -1,-27 + 14418: -42,9 + 14419: -42,14 + 14420: -42,20 + 14654: 96,6 + 17786: -15,-9 + 17790: -9,-9 + 17791: -3,-9 + 17792: 4,-9 + 17793: 10,-9 + 18490: -19,9 + 18686: 34,-14 + 18689: 35,-15 + 19186: -19,-5 + 19187: -19,2 + 19188: -19,9 + 19189: -19,16 + 22071: 13,-28 + 23770: 40,-68 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineE decals: - 878: 72,-45 + 765: 72,-45 - node: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 21211: -18,12 - 21212: -18,13 - 21825: -18,16 - 21826: -18,17 - 21829: -18,13 - 21830: -18,12 - 22530: 15,-4 + 20217: -18,12 + 20218: -18,13 + 20831: -18,16 + 20832: -18,17 + 20835: -18,13 + 20836: -18,12 + 21536: 15,-4 - node: color: '#3EB388FF' id: BrickTileWhiteLineE decals: - 21571: -54,33 - 21578: -55,38 - 21581: -55,35 - 21597: -53,23 - 21598: -53,22 - 21625: -56,24 - 21626: -56,23 - 21630: -53,20 - 21634: -51,21 - 21638: -46,19 - 21639: -46,20 - 21640: -46,21 - 21641: -46,22 - 21655: -47,37 - 21656: -47,38 - 21657: -47,39 - 21658: -47,40 - 21665: -51,41 - 21677: -61,48 - 21678: -61,50 - 21681: -61,57 - 21682: -58,57 - 21683: -58,54 - 21684: -58,53 - 21685: -58,53 - 21686: -58,52 - 21687: -58,51 - 21688: -58,50 - 21689: -58,49 - 21690: -58,49 - 21691: -58,48 - 21692: -58,47 - 21693: -58,46 - 21715: -46,57 - 21719: -46,55 - 21720: -46,55 - 21721: -46,54 - 21722: -46,53 - 21723: -46,53 - 21724: -46,52 - 21725: -46,50 - 21726: -46,50 - 21727: -46,49 - 21728: -46,48 - 21729: -46,48 - 21730: -46,47 - 21731: -46,47 - 21732: -46,46 - 21733: -46,46 - 21770: -45,51 - 21803: -61,57 - 21819: -44,23 - 21820: -45,18 + 20577: -54,33 + 20584: -55,38 + 20587: -55,35 + 20603: -53,23 + 20604: -53,22 + 20631: -56,24 + 20632: -56,23 + 20636: -53,20 + 20640: -51,21 + 20644: -46,19 + 20645: -46,20 + 20646: -46,21 + 20647: -46,22 + 20661: -47,37 + 20662: -47,38 + 20663: -47,39 + 20664: -47,40 + 20671: -51,41 + 20683: -61,48 + 20684: -61,50 + 20687: -61,57 + 20688: -58,57 + 20689: -58,54 + 20690: -58,53 + 20691: -58,53 + 20692: -58,52 + 20693: -58,51 + 20694: -58,50 + 20695: -58,49 + 20696: -58,49 + 20697: -58,48 + 20698: -58,47 + 20699: -58,46 + 20721: -46,57 + 20725: -46,55 + 20726: -46,55 + 20727: -46,54 + 20728: -46,53 + 20729: -46,53 + 20730: -46,52 + 20731: -46,50 + 20732: -46,50 + 20733: -46,49 + 20734: -46,48 + 20735: -46,48 + 20736: -46,47 + 20737: -46,47 + 20738: -46,46 + 20739: -46,46 + 20776: -45,51 + 20809: -61,57 + 20825: -44,23 + 20826: -45,18 - node: color: '#439909FF' id: BrickTileWhiteLineE decals: - 24640: 28,-57 - 24642: 25,-56 - 24653: 29,-61 - 24654: 33,-61 - 24662: 33,-61 - 24674: 42,-62 - 24700: 36,-61 - 24703: 37,-62 - 24719: 33,-68 - 24720: 36,-69 - 24721: 36,-68 - 24722: 36,-67 - 24723: 36,-66 - 24729: 32,-67 - 24730: 32,-69 + 23639: 28,-57 + 23641: 25,-56 + 23652: 29,-61 + 23653: 33,-61 + 23661: 33,-61 + 23673: 42,-62 + 23699: 36,-61 + 23702: 37,-62 + 23718: 33,-68 + 23719: 36,-69 + 23720: 36,-68 + 23721: 36,-67 + 23722: 36,-66 + 23728: 32,-67 + 23729: 32,-69 - node: color: '#52B4E9FF' id: BrickTileWhiteLineE decals: - 23081: 15,-26 - 23082: 15,-25 - 23083: 18,-25 - 23084: 18,-26 - 23105: 18,-33 - 23106: 18,-32 - 23107: 18,-31 - 23108: 18,-31 - 23109: 18,-30 - 23110: 18,-29 - 23125: 15,-35 - 23126: 16,-34 - 23127: 16,-33 - 23128: 16,-32 - 23129: 16,-31 - 23137: 19,-36 - 23138: 19,-35 - 23139: 19,-34 - 23162: 9,-36 - 23163: 9,-34 - 23164: 15,-35 - 23178: 10,-35 - 23260: 21,-35 - 23261: 30,-35 - 23262: 30,-31 - 23263: 26,-40 - 23264: 26,-41 - 23265: 26,-42 - 23266: 26,-43 - 23267: 26,-43 - 23268: 26,-43 - 23269: 26,-44 - 23270: 26,-47 - 23271: 26,-47 - 23272: 26,-48 - 23273: 26,-49 - 23274: 26,-50 - 23275: 26,-50 - 23276: 26,-50 - 23277: 26,-51 - 23278: 28,-52 - 23279: 31,-48 - 23280: 31,-52 - 23281: 24,-45 - 23293: 24,-48 - 23294: 24,-47 - 23304: 19,-44 - 23305: 25,-44 - 23312: 19,-40 - 23313: 19,-39 - 23314: 15,-40 - 23315: 15,-39 - 23316: 25,-40 - 23317: 25,-39 - 23324: 1,-44 - 23325: 16,-45 - 23326: 16,-45 - 23327: 16,-44 - 23328: 16,-43 - 23329: 16,-43 - 23330: 16,-43 - 23331: 16,-42 - 23332: 16,-42 - 23333: 16,-41 - 23334: 16,-41 - 23335: 16,-40 - 23336: 16,-40 - 23337: 18,-42 - 23338: 18,-41 - 23339: 18,-42 - 23340: 18,-42 - 23341: 18,-43 - 23342: 18,-45 - 23343: 18,-45 - 23344: 18,-46 - 23345: 18,-38 - 23346: 28,-38 - 23347: 28,-39 - 23348: 28,-41 - 23349: 28,-42 - 23350: 28,-42 - 23351: 28,-42 - 23352: 28,-43 - 23353: 28,-45 - 23354: 28,-45 - 23355: 28,-46 - 23356: 28,-47 - 23357: 28,-48 - 23358: 28,-48 - 23359: 28,-48 - 23360: 28,-48 - 23361: 28,-48 - 23362: 28,-49 - 23363: 28,-49 - 23364: 28,-51 - 23365: 28,-51 - 23366: 28,-52 - 23367: 28,-52 - 23368: 28,-53 - 23409: 38,-39 - 23410: 38,-40 - 23411: 38,-40 - 23412: 38,-41 - 23416: 29,-40 - 23433: 31,-40 - 23520: 10,-44 - 23521: 10,-45 - 23522: 10,-46 - 23534: 6,-44 - 23573: 15,-44 - 23575: 13,-47 - 23576: 14,-46 - 23582: 13,-47 - 23585: 14,-45 - 23657: 31,-50 - 23690: 32,-25 - 23691: 32,-26 - 23713: 19,-28 - 23714: 19,-27 - 23715: 22,-28 - 23716: 22,-27 - 23717: 22,-26 - 23728: 23,-29 - 23747: 26,-28 - 23754: 31,-53 - 23769: 0,-52 - 23770: 0,-50 - 23771: 0,-45 - 23772: 0,-43 - 23790: -5,-61 - 23806: 4,64 - 23809: 7,63 - 23810: 7,64 - 24007: -4,-60 + 22087: 15,-26 + 22088: 15,-25 + 22089: 18,-25 + 22090: 18,-26 + 22111: 18,-33 + 22112: 18,-32 + 22113: 18,-31 + 22114: 18,-31 + 22115: 18,-30 + 22116: 18,-29 + 22131: 15,-35 + 22132: 16,-34 + 22133: 16,-33 + 22134: 16,-32 + 22135: 16,-31 + 22143: 19,-36 + 22144: 19,-35 + 22145: 19,-34 + 22168: 9,-36 + 22169: 9,-34 + 22170: 15,-35 + 22184: 10,-35 + 22266: 21,-35 + 22267: 30,-35 + 22268: 30,-31 + 22269: 26,-40 + 22270: 26,-41 + 22271: 26,-42 + 22272: 26,-43 + 22273: 26,-43 + 22274: 26,-43 + 22275: 26,-44 + 22276: 26,-47 + 22277: 26,-47 + 22278: 26,-48 + 22279: 26,-49 + 22280: 26,-50 + 22281: 26,-50 + 22282: 26,-50 + 22283: 26,-51 + 22284: 28,-52 + 22285: 31,-48 + 22286: 31,-52 + 22287: 24,-45 + 22299: 24,-48 + 22300: 24,-47 + 22310: 19,-44 + 22311: 25,-44 + 22318: 19,-40 + 22319: 19,-39 + 22320: 15,-40 + 22321: 15,-39 + 22322: 25,-40 + 22323: 25,-39 + 22330: 1,-44 + 22331: 16,-45 + 22332: 16,-45 + 22333: 16,-44 + 22334: 16,-43 + 22335: 16,-43 + 22336: 16,-43 + 22337: 16,-42 + 22338: 16,-42 + 22339: 16,-41 + 22340: 16,-41 + 22341: 16,-40 + 22342: 16,-40 + 22343: 18,-42 + 22344: 18,-41 + 22345: 18,-42 + 22346: 18,-42 + 22347: 18,-43 + 22348: 18,-45 + 22349: 18,-45 + 22350: 18,-46 + 22351: 18,-38 + 22352: 28,-38 + 22353: 28,-39 + 22354: 28,-41 + 22355: 28,-42 + 22356: 28,-42 + 22357: 28,-42 + 22358: 28,-43 + 22359: 28,-45 + 22360: 28,-45 + 22361: 28,-46 + 22362: 28,-47 + 22363: 28,-48 + 22364: 28,-48 + 22365: 28,-48 + 22366: 28,-48 + 22367: 28,-48 + 22368: 28,-49 + 22369: 28,-49 + 22370: 28,-51 + 22371: 28,-51 + 22372: 28,-52 + 22373: 28,-52 + 22374: 28,-53 + 22415: 38,-39 + 22416: 38,-40 + 22417: 38,-40 + 22418: 38,-41 + 22422: 29,-40 + 22439: 31,-40 + 22526: 10,-44 + 22527: 10,-45 + 22528: 10,-46 + 22540: 6,-44 + 22579: 15,-44 + 22581: 13,-47 + 22582: 14,-46 + 22588: 13,-47 + 22591: 14,-45 + 22663: 31,-50 + 22696: 32,-25 + 22697: 32,-26 + 22719: 19,-28 + 22720: 19,-27 + 22721: 22,-28 + 22722: 22,-27 + 22723: 22,-26 + 22734: 23,-29 + 22753: 26,-28 + 22760: 31,-53 + 22775: 0,-52 + 22776: 0,-50 + 22777: 0,-45 + 22778: 0,-43 + 22796: -5,-61 + 22812: 4,64 + 22815: 7,63 + 22816: 7,64 + 23013: -4,-60 + 23819: 5,-26 + 23820: 5,-25 - node: color: '#80C71FFF' id: BrickTileWhiteLineE decals: - 646: -28,81 - 647: -28,80 + 541: -28,81 + 542: -28,80 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineE decals: - 3894: 27,66 - 3896: 24,66 - 15610: 97,-3 - 15615: 96,-3 - 17781: -46,22 - 17790: -51,21 - 17800: -46,19 - 17801: -46,20 - 17802: -46,21 - 17806: -54,33 - 17807: -54,34 - 17811: -55,38 - 17813: -55,35 - 17844: -47,37 - 17845: -47,38 - 17846: -47,39 - 17847: -47,40 - 17854: -45,51 - 17859: -46,52 - 17860: -46,53 - 17861: -46,54 - 17862: -46,55 - 17867: -46,57 - 17881: -46,50 - 17882: -46,49 - 17883: -46,48 - 17884: -46,47 - 17885: -46,47 - 17886: -46,46 - 17887: -46,43 - 17890: -51,41 - 17918: -58,46 - 17919: -58,47 - 17920: -58,48 - 17921: -58,49 - 17922: -58,50 - 17923: -58,51 - 17924: -58,52 - 17926: -58,53 - 17939: -61,57 - 17953: -61,48 - 17954: -61,50 - 18023: -53,22 - 18024: -53,23 - 18028: -56,24 - 18029: -56,23 - 18036: -53,20 + 3761: 27,66 + 3763: 24,66 + 14659: 97,-3 + 14664: 96,-3 + 16830: -46,22 + 16839: -51,21 + 16849: -46,19 + 16850: -46,20 + 16851: -46,21 + 16855: -54,33 + 16856: -54,34 + 16860: -55,38 + 16862: -55,35 + 16893: -47,37 + 16894: -47,38 + 16895: -47,39 + 16896: -47,40 + 16903: -45,51 + 16908: -46,52 + 16909: -46,53 + 16910: -46,54 + 16911: -46,55 + 16916: -46,57 + 16930: -46,50 + 16931: -46,49 + 16932: -46,48 + 16933: -46,47 + 16934: -46,47 + 16935: -46,46 + 16936: -46,43 + 16939: -51,41 + 16967: -58,46 + 16968: -58,47 + 16969: -58,48 + 16970: -58,49 + 16971: -58,50 + 16972: -58,51 + 16973: -58,52 + 16975: -58,53 + 16988: -61,57 + 17002: -61,48 + 17003: -61,50 + 17072: -53,22 + 17073: -53,23 + 17077: -56,24 + 17078: -56,23 + 17085: -53,20 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineE decals: - 9473: 5,-26 - 9474: 5,-26 - 9477: 5,-25 - 9478: 18,-25 - 9479: 18,-26 - 9480: 18,-29 - 9504: 15,-26 - 9505: 15,-25 - 9611: 28,-38 - 9612: 28,-39 - 9613: 28,-42 - 9614: 28,-43 - 9615: 28,-45 - 9616: 28,-46 - 9617: 28,-47 - 9618: 28,-48 - 9619: 28,-48 - 9620: 28,-49 - 9621: 28,-51 - 9622: 28,-52 - 9653: 19,-36 - 9654: 19,-35 - 9659: 15,-35 - 9663: 15,-31 - 9676: 9,-36 - 9677: 9,-34 - 9679: 15,-35 - 9715: 25,-39 - 9716: 25,-40 - 9717: 19,-39 - 9718: 19,-40 - 9724: 25,-44 - 9782: 10,-35 - 9783: 21,-35 - 9784: 30,-35 - 9785: 26,-40 - 9786: 26,-41 - 9787: 26,-43 - 9788: 26,-44 - 9789: 26,-42 - 9790: 26,-47 - 9791: 26,-48 - 9792: 26,-49 - 9793: 26,-50 - 9794: 26,-50 - 9795: 26,-51 - 9796: 16,-40 - 9797: 16,-41 - 9798: 16,-43 - 9799: 16,-43 - 9800: 16,-45 - 9834: 18,-46 - 9835: 18,-45 - 9836: 18,-43 - 9837: 18,-42 - 9838: 18,-41 - 9839: 18,-38 - 9844: 16,-44 - 9846: 15,-44 - 9849: 15,-39 - 9850: 15,-40 - 9893: 38,-41 - 9894: 38,-40 - 9895: 38,-39 - 9921: 29,-40 - 9941: 31,-40 - 9967: 23,-29 - 9969: 19,-28 - 9970: 19,-27 - 10009: 32,-26 - 10010: 32,-25 - 10024: 28,-41 - 10055: 24,-48 - 10056: 24,-47 - 10091: 19,-44 - 10096: 24,-45 - 10101: 34,-51 - 10102: 34,-51 - 10103: 34,-50 - 10104: 34,-48 - 10105: 34,-48 - 10106: 34,-48 - 10107: 34,-49 - 10108: 34,-49 - 10109: 34,-52 - 10118: 31,-51 - 10119: 31,-49 - 10120: 31,-49 - 10150: 31,-53 - 10151: 31,-52 - 10152: 31,-50 - 10153: 31,-48 - 10161: 29,-50 - 10257: 6,-44 - 10265: 10,-46 - 10266: 10,-45 - 10267: 10,-44 - 10281: 1,-44 - 10296: 13,-47 - 10298: 14,-46 - 10533: 49,-34 - 10534: 49,-35 - 10536: 42,-33 - 10537: 42,-33 - 15235: 16,-42 - 19286: 4,64 - 19293: 7,63 - 19294: 7,64 - 19659: 22,-28 - 19660: 22,-27 - 19661: 22,-26 - 19671: 26,-28 - 19681: 30,-31 + 9311: 5,-26 + 9312: 5,-26 + 9315: 5,-25 + 9316: 18,-25 + 9317: 18,-26 + 9318: 18,-29 + 9342: 15,-26 + 9343: 15,-25 + 9449: 28,-38 + 9450: 28,-39 + 9451: 28,-42 + 9452: 28,-43 + 9453: 28,-45 + 9454: 28,-46 + 9455: 28,-47 + 9456: 28,-48 + 9457: 28,-48 + 9458: 28,-49 + 9459: 28,-51 + 9460: 28,-52 + 9491: 19,-36 + 9492: 19,-35 + 9497: 15,-35 + 9501: 15,-31 + 9514: 9,-36 + 9515: 9,-34 + 9517: 15,-35 + 9553: 25,-39 + 9554: 25,-40 + 9555: 19,-39 + 9556: 19,-40 + 9562: 25,-44 + 9620: 10,-35 + 9621: 21,-35 + 9622: 30,-35 + 9623: 26,-40 + 9624: 26,-41 + 9625: 26,-43 + 9626: 26,-44 + 9627: 26,-42 + 9628: 26,-47 + 9629: 26,-48 + 9630: 26,-49 + 9631: 26,-50 + 9632: 26,-50 + 9633: 26,-51 + 9634: 16,-40 + 9635: 16,-41 + 9636: 16,-43 + 9637: 16,-43 + 9638: 16,-45 + 9672: 18,-46 + 9673: 18,-45 + 9674: 18,-43 + 9675: 18,-42 + 9676: 18,-41 + 9677: 18,-38 + 9682: 16,-44 + 9684: 15,-44 + 9687: 15,-39 + 9688: 15,-40 + 9731: 38,-41 + 9732: 38,-40 + 9733: 38,-39 + 9759: 29,-40 + 9779: 31,-40 + 9805: 23,-29 + 9807: 19,-28 + 9808: 19,-27 + 9847: 32,-26 + 9848: 32,-25 + 9862: 28,-41 + 9893: 24,-48 + 9894: 24,-47 + 9929: 19,-44 + 9934: 24,-45 + 9939: 34,-51 + 9940: 34,-51 + 9941: 34,-50 + 9942: 34,-48 + 9943: 34,-48 + 9944: 34,-48 + 9945: 34,-49 + 9946: 34,-49 + 9947: 34,-52 + 9956: 31,-51 + 9957: 31,-49 + 9958: 31,-49 + 9988: 31,-53 + 9989: 31,-52 + 9990: 31,-50 + 9991: 31,-48 + 9999: 29,-50 + 10095: 6,-44 + 10103: 10,-46 + 10104: 10,-45 + 10105: 10,-44 + 10119: 1,-44 + 10134: 13,-47 + 10136: 14,-46 + 10371: 49,-34 + 10372: 49,-35 + 10374: 42,-33 + 10375: 42,-33 + 14291: 16,-42 + 18330: 4,64 + 18337: 7,63 + 18338: 7,64 + 18703: 22,-28 + 18704: 22,-27 + 18705: 22,-26 + 18715: 26,-28 + 18725: 30,-31 - node: color: '#9FED58FF' id: BrickTileWhiteLineE decals: - 23828: -24,48 - 23829: -24,47 - 23830: -24,50 - 23831: -24,51 - 23840: -24,47 - 23841: -24,48 - 23842: -24,50 - 23843: -24,51 + 22834: -24,48 + 22835: -24,47 + 22836: -24,50 + 22837: -24,51 + 22846: -24,47 + 22847: -24,48 + 22848: -24,50 + 22849: -24,51 - node: color: '#A46106FF' id: BrickTileWhiteLineE decals: - 21882: 1,29 - 21885: 10,27 - 21893: 3,29 - 21894: 3,28 - 21895: 3,28 - 21912: 10,29 - 21952: 3,35 - 21985: 3,40 - 21988: 7,40 - 21989: 7,41 - 21990: 7,42 - 21991: 7,42 - 21992: 7,43 - 22029: 11,44 - 22034: 12,45 - 22044: 12,36 - 22045: 12,35 - 22105: 32,50 - 22106: 18,51 - 22107: 13,51 - 22141: 14,52 - 22142: 14,53 - 22225: 22,37 - 22226: 22,35 - 22239: 14,36 - 22265: 15,41 - 22266: 15,43 - 22267: 15,45 - 22268: 18,47 - 22269: 18,45 - 22270: 18,49 - 22271: 18,43 - 22272: 18,41 - 22316: 25,42 - 22317: 25,43 - 22318: 25,43 - 22319: 25,44 - 22320: 25,45 - 22321: 25,45 - 22322: 25,45 - 22323: 25,46 - 22324: 25,46 - 22325: 25,47 - 22353: 38,50 - 22356: 33,51 - 22357: 33,52 - 22362: 33,48 - 22363: 33,49 - 22367: 25,53 - 22383: 17,27 - 22384: 17,28 - 22385: 17,29 - 22386: 17,29 - 22387: 17,30 - 22388: 17,30 - 22389: 17,31 - 22390: 17,31 - 22391: 17,32 - 22396: 12,27 - 22400: 11,28 - 22414: 15,29 - 22415: 15,30 - 22416: 15,31 - 22436: 23,36 - 22451: 23,36 - 22461: 29,35 - 22462: 29,36 - 22463: 29,37 - 22471: 25,35 - 22472: 25,36 - 22473: 25,36 - 22474: 25,37 - 22486: 29,42 - 22487: 29,43 - 22488: 29,43 - 22489: 29,41 - 22495: 23,36 + 20888: 1,29 + 20891: 10,27 + 20899: 3,29 + 20900: 3,28 + 20901: 3,28 + 20918: 10,29 + 20958: 3,35 + 20991: 3,40 + 20994: 7,40 + 20995: 7,41 + 20996: 7,42 + 20997: 7,42 + 20998: 7,43 + 21035: 11,44 + 21040: 12,45 + 21050: 12,36 + 21051: 12,35 + 21111: 32,50 + 21112: 18,51 + 21113: 13,51 + 21147: 14,52 + 21148: 14,53 + 21231: 22,37 + 21232: 22,35 + 21245: 14,36 + 21271: 15,41 + 21272: 15,43 + 21273: 15,45 + 21274: 18,47 + 21275: 18,45 + 21276: 18,49 + 21277: 18,43 + 21278: 18,41 + 21322: 25,42 + 21323: 25,43 + 21324: 25,43 + 21325: 25,44 + 21326: 25,45 + 21327: 25,45 + 21328: 25,45 + 21329: 25,46 + 21330: 25,46 + 21331: 25,47 + 21359: 38,50 + 21362: 33,51 + 21363: 33,52 + 21368: 33,48 + 21369: 33,49 + 21373: 25,53 + 21389: 17,27 + 21390: 17,28 + 21391: 17,29 + 21392: 17,29 + 21393: 17,30 + 21394: 17,30 + 21395: 17,31 + 21396: 17,31 + 21397: 17,32 + 21402: 12,27 + 21406: 11,28 + 21420: 15,29 + 21421: 15,30 + 21422: 15,31 + 21442: 23,36 + 21457: 23,36 + 21467: 29,35 + 21468: 29,36 + 21469: 29,37 + 21477: 25,35 + 21478: 25,36 + 21479: 25,36 + 21480: 25,37 + 21492: 29,42 + 21493: 29,43 + 21494: 29,43 + 21495: 29,41 + 21501: 23,36 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineE decals: - 2872: -26,49 - 2873: -26,50 - 2886: -32,45 - 2909: -28,54 - 2912: -28,52 - 2915: -26,51 - 2922: -31,53 - 2923: -31,52 - 2924: -31,51 - 2925: -31,50 - 2926: -31,49 - 2927: -31,47 - 2928: -31,48 - 2929: -33,53 - 2930: -33,52 - 2931: -33,51 - 2932: -33,50 - 2933: -33,49 - 2934: -33,47 - 2935: -33,48 - 2954: -29,50 - 2955: -29,49 - 2956: -29,48 - 2957: -29,47 - 2992: -36,49 - 2996: -37,48 - 2997: -37,47 - 3000: -38,46 - 3001: -38,45 + 2749: -26,49 + 2750: -26,50 + 2763: -32,45 + 2786: -28,54 + 2789: -28,52 + 2792: -26,51 + 2799: -31,53 + 2800: -31,52 + 2801: -31,51 + 2802: -31,50 + 2803: -31,49 + 2804: -31,47 + 2805: -31,48 + 2806: -33,53 + 2807: -33,52 + 2808: -33,51 + 2809: -33,50 + 2810: -33,49 + 2811: -33,47 + 2812: -33,48 + 2831: -29,50 + 2832: -29,49 + 2833: -29,48 + 2834: -29,47 + 2869: -36,49 + 2873: -37,48 + 2874: -37,47 + 2877: -38,46 + 2878: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteLineE decals: - 5076: 27,28 - 5077: 27,30 - 5140: 43,29 - 5146: 37,30 - 5166: 36,35 - 11343: -24,-30 - 11344: -24,-30 - 11345: -24,-29 - 11346: -24,-29 - 11347: -24,-28 - 11348: -24,-27 - 11349: -24,-27 - 11350: -24,-26 - 11384: -30,-35 - 11385: -30,-35 - 11386: -19,-35 - 11389: -15,-53 - 11390: -15,-53 - 11391: -15,-52 - 11392: -15,-52 - 11393: -15,-51 - 11394: -15,-51 - 11395: -15,-50 - 11396: -15,-50 - 11397: -15,-49 - 11398: -15,-49 - 11399: -15,-48 - 11400: -15,-48 - 11401: -15,-47 - 11402: -15,-47 - 11403: -15,-43 - 11404: -15,-42 - 11405: -15,-41 - 11406: -15,-41 - 11407: -15,-40 - 11408: -15,-39 - 11409: -15,-39 - 11472: -21,-34 - 11473: -21,-35 - 11474: -21,-36 - 11553: -13,-26 - 11554: -13,-25 - 11555: -13,-25 - 11569: -11,-35 - 11570: -11,-35 - 11571: -11,-34 - 11597: -4,-31 - 11598: -5,-33 - 11599: -5,-34 - 11714: -13,-38 - 11715: -13,-38 - 11716: -13,-39 - 11717: -13,-40 - 11718: -13,-42 - 11719: -13,-43 - 11720: -13,-44 - 11732: -16,-40 - 11798: -33,-45 - 11799: -33,-44 - 11800: -33,-44 - 11801: -33,-43 - 11802: -33,-42 - 11803: -33,-41 - 11997: -22,-25 - 11998: -22,-27 - 11999: -22,-28 - 12000: -22,-29 - 12001: -22,-30 - 12002: -22,-32 - 12102: -26,-41 - 12103: -26,-40 - 12104: -26,-39 - 12117: -30,-41 - 12118: -30,-40 - 12119: -30,-39 - 12130: -13,-46 - 12131: -13,-47 - 12132: -13,-48 - 12133: -13,-49 - 12134: -13,-51 - 12135: -13,-52 - 12136: -13,-53 - 12148: -18,-51 - 12168: -21,-58 - 12175: -13,-57 - 12176: -13,-58 - 12196: -4,-52 - 12197: -4,-51 - 12198: -4,-50 - 12199: -4,-49 - 12200: -4,-47 - 12209: -12,-50 - 12233: -21,-44 - 12234: -21,-43 - 12235: -21,-42 - 12236: -21,-41 - 12237: -21,-40 - 12540: -9,-34 - 12541: -9,-33 - 12542: -9,-32 - 19953: 36,37 + 4926: 27,28 + 4927: 27,30 + 4990: 43,29 + 4996: 37,30 + 5016: 36,35 + 10840: -24,-30 + 10841: -24,-30 + 10842: -24,-29 + 10843: -24,-29 + 10844: -24,-28 + 10845: -24,-27 + 10846: -24,-27 + 10847: -24,-26 + 10881: -30,-35 + 10882: -30,-35 + 10883: -19,-35 + 10886: -15,-53 + 10887: -15,-53 + 10888: -15,-52 + 10889: -15,-52 + 10890: -15,-51 + 10891: -15,-51 + 10892: -15,-50 + 10893: -15,-50 + 10894: -15,-49 + 10895: -15,-49 + 10896: -15,-48 + 10897: -15,-48 + 10898: -15,-47 + 10899: -15,-47 + 10900: -15,-43 + 10901: -15,-42 + 10902: -15,-41 + 10903: -15,-41 + 10904: -15,-40 + 10905: -15,-39 + 10906: -15,-39 + 10969: -21,-34 + 10970: -21,-35 + 10971: -21,-36 + 11050: -13,-26 + 11051: -13,-25 + 11052: -13,-25 + 11066: -11,-35 + 11067: -11,-35 + 11068: -11,-34 + 11094: -4,-31 + 11095: -5,-33 + 11096: -5,-34 + 11199: -13,-38 + 11200: -13,-38 + 11201: -13,-39 + 11202: -13,-40 + 11203: -13,-42 + 11204: -13,-43 + 11205: -13,-44 + 11217: -16,-40 + 11283: -33,-45 + 11284: -33,-44 + 11285: -33,-44 + 11286: -33,-43 + 11287: -33,-42 + 11288: -33,-41 + 11335: -22,-25 + 11336: -22,-27 + 11337: -22,-28 + 11338: -22,-29 + 11339: -22,-30 + 11340: -22,-32 + 11440: -26,-41 + 11441: -26,-40 + 11442: -26,-39 + 11455: -30,-41 + 11456: -30,-40 + 11457: -30,-39 + 11468: -13,-46 + 11469: -13,-47 + 11470: -13,-48 + 11471: -13,-49 + 11472: -13,-51 + 11473: -13,-52 + 11474: -13,-53 + 11486: -18,-51 + 11506: -21,-58 + 11513: -13,-57 + 11514: -13,-58 + 11534: -4,-52 + 11535: -4,-51 + 11536: -4,-50 + 11537: -4,-49 + 11538: -4,-47 + 11547: -12,-50 + 11571: -21,-44 + 11572: -21,-43 + 11573: -21,-42 + 11574: -21,-41 + 11575: -21,-40 + 11878: -9,-34 + 11879: -9,-33 + 11880: -9,-32 + 18959: 36,37 - node: color: '#B240B4FF' id: BrickTileWhiteLineE decals: - 663: -21,-57 + 558: -21,-57 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineE decals: - 10745: 25,-56 + 10582: 25,-56 - node: color: '#D381C9FF' id: BrickTileWhiteLineE decals: - 22548: -3,-48 - 22564: -4,-35 - 22594: -21,-36 - 22595: -21,-35 - 22596: -21,-34 - 22606: -13,-38 - 22607: -13,-39 - 22608: -13,-39 - 22609: -13,-39 - 22610: -13,-40 - 22611: -13,-42 - 22612: -13,-42 - 22613: -13,-43 - 22614: -13,-43 - 22615: -13,-44 - 22616: -13,-46 - 22617: -13,-46 - 22618: -13,-47 - 22619: -13,-48 - 22620: -13,-49 - 22621: -13,-51 - 22622: -13,-52 - 22623: -13,-52 - 22624: -13,-53 - 22625: -13,-53 - 22671: -18,-51 - 22723: -21,-40 - 22724: -21,-41 - 22725: -21,-42 - 22726: -21,-42 - 22727: -21,-43 - 22728: -21,-43 - 22729: -21,-44 - 22731: -21,-44 - 22755: -16,-40 - 22776: -22,-30 - 22777: -22,-29 - 22778: -22,-29 - 22779: -22,-28 - 22780: -22,-27 - 22781: -22,-27 - 22782: -22,-25 - 22783: -22,-32 - 22820: -24,-26 - 22821: -24,-27 - 22822: -24,-28 - 22823: -24,-28 - 22824: -24,-29 - 22825: -24,-29 - 22826: -24,-30 - 22827: -24,-30 - 22856: -30,-35 - 22857: -19,-35 - 22895: -11,-34 - 22896: -11,-35 - 22897: -5,-34 - 22898: -5,-33 - 22899: -4,-31 - 22946: -15,-39 - 22947: -15,-40 - 22948: -15,-40 - 22949: -15,-41 - 22950: -15,-41 - 22951: -15,-42 - 22952: -15,-43 - 22953: -15,-43 - 22954: -15,-43 - 22977: -4,-52 - 22978: -4,-51 - 22979: -4,-50 - 22980: -4,-50 - 22981: -4,-49 - 22982: -4,-47 - 22988: -12,-50 - 22998: -15,-53 - 22999: -15,-53 - 23000: -15,-51 - 23001: -15,-51 - 23002: -15,-52 - 23003: -15,-52 - 23004: -15,-51 - 23005: -15,-50 - 23006: -15,-49 - 23007: -15,-49 - 23008: -15,-48 - 23009: -15,-47 - 23010: -15,-47 - 23011: -15,-48 - 23041: -21,-58 - 23045: -13,-57 - 23046: -13,-58 - 24374: -31,-27 - 24375: -31,-28 - 24376: -31,-29 - 24377: -31,-30 - 24378: -31,-31 + 21554: -3,-48 + 21570: -4,-35 + 21600: -21,-36 + 21601: -21,-35 + 21602: -21,-34 + 21612: -13,-38 + 21613: -13,-39 + 21614: -13,-39 + 21615: -13,-39 + 21616: -13,-40 + 21617: -13,-42 + 21618: -13,-42 + 21619: -13,-43 + 21620: -13,-43 + 21621: -13,-44 + 21622: -13,-46 + 21623: -13,-46 + 21624: -13,-47 + 21625: -13,-48 + 21626: -13,-49 + 21627: -13,-51 + 21628: -13,-52 + 21629: -13,-52 + 21630: -13,-53 + 21631: -13,-53 + 21677: -18,-51 + 21729: -21,-40 + 21730: -21,-41 + 21731: -21,-42 + 21732: -21,-42 + 21733: -21,-43 + 21734: -21,-43 + 21735: -21,-44 + 21737: -21,-44 + 21761: -16,-40 + 21782: -22,-30 + 21783: -22,-29 + 21784: -22,-29 + 21785: -22,-28 + 21786: -22,-27 + 21787: -22,-27 + 21788: -22,-25 + 21789: -22,-32 + 21826: -24,-26 + 21827: -24,-27 + 21828: -24,-28 + 21829: -24,-28 + 21830: -24,-29 + 21831: -24,-29 + 21832: -24,-30 + 21833: -24,-30 + 21862: -30,-35 + 21863: -19,-35 + 21901: -11,-34 + 21902: -11,-35 + 21903: -5,-34 + 21904: -5,-33 + 21905: -4,-31 + 21952: -15,-39 + 21953: -15,-40 + 21954: -15,-40 + 21955: -15,-41 + 21956: -15,-41 + 21957: -15,-42 + 21958: -15,-43 + 21959: -15,-43 + 21960: -15,-43 + 21983: -4,-52 + 21984: -4,-51 + 21985: -4,-50 + 21986: -4,-50 + 21987: -4,-49 + 21988: -4,-47 + 21994: -12,-50 + 22004: -15,-53 + 22005: -15,-53 + 22006: -15,-51 + 22007: -15,-51 + 22008: -15,-52 + 22009: -15,-52 + 22010: -15,-51 + 22011: -15,-50 + 22012: -15,-49 + 22013: -15,-49 + 22014: -15,-48 + 22015: -15,-47 + 22016: -15,-47 + 22017: -15,-48 + 22047: -21,-58 + 22051: -13,-57 + 22052: -13,-58 + 23378: -31,-27 + 23379: -31,-28 + 23380: -31,-29 + 23381: -31,-30 + 23382: -31,-31 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineE decals: - 7604: 64,-4 - 19153: 70,14 - 19154: 70,15 - 19168: 63,-5 - 19174: 66,-4 + 7452: 64,-4 + 18197: 70,14 + 18198: 70,15 + 18212: 63,-5 + 18218: 66,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineE decals: - 3816: 12,68 - 3817: 12,69 - 3822: 9,68 + 3683: 12,68 + 3684: 12,69 + 3689: 9,68 - node: color: '#DAA58BFF' id: BrickTileWhiteLineE decals: - 4382: 1,29 - 4428: 3,29 - 4429: 3,28 - 4439: 11,28 - 4452: 10,27 - 4461: 17,31 - 4462: 17,30 - 4463: 17,29 - 4464: 17,28 - 4465: 17,27 - 4478: 12,27 - 4488: 15,31 - 4489: 15,30 - 4490: 15,29 - 4536: 7,43 - 4537: 7,42 - 4538: 7,42 - 4539: 7,41 - 4540: 7,40 - 4566: 11,44 - 4582: 12,36 - 4583: 12,35 - 4596: 22,35 - 4597: 22,37 - 4616: 12,43 - 4617: 12,45 - 4646: 27,27 - 4647: 27,28 - 4648: 27,29 - 4649: 27,30 - 4673: 19,28 - 4674: 19,29 - 4675: 19,30 - 4692: 20,29 - 4698: 24,29 - 4723: 23,36 - 4735: 29,35 - 4736: 29,36 - 4737: 29,37 - 4742: 25,36 - 4743: 25,37 - 4744: 25,35 - 4761: 14,36 - 4778: 29,41 - 4779: 29,42 - 4780: 29,43 - 4803: 3,35 - 4850: 32,50 - 4851: 38,50 - 4862: 33,49 - 4865: 33,51 - 4882: 25,47 - 4883: 25,46 - 4884: 25,45 - 4885: 25,45 - 4886: 25,44 - 4887: 25,44 - 4888: 25,43 - 4889: 25,42 - 4893: 25,53 - 4923: 13,51 - 4933: 14,53 - 4934: 14,52 - 4980: 18,51 - 4981: 18,49 - 4982: 18,47 - 4983: 18,45 - 4984: 15,45 - 4985: 15,43 - 4986: 15,41 - 4987: 18,41 - 4988: 18,43 - 5151: 37,30 - 5160: 36,36 - 11279: -11,-82 - 11280: -11,-81 - 11281: -11,-80 - 19950: 36,38 + 4232: 1,29 + 4278: 3,29 + 4279: 3,28 + 4289: 11,28 + 4302: 10,27 + 4311: 17,31 + 4312: 17,30 + 4313: 17,29 + 4314: 17,28 + 4315: 17,27 + 4328: 12,27 + 4338: 15,31 + 4339: 15,30 + 4340: 15,29 + 4386: 7,43 + 4387: 7,42 + 4388: 7,42 + 4389: 7,41 + 4390: 7,40 + 4416: 11,44 + 4432: 12,36 + 4433: 12,35 + 4446: 22,35 + 4447: 22,37 + 4466: 12,43 + 4467: 12,45 + 4496: 27,27 + 4497: 27,28 + 4498: 27,29 + 4499: 27,30 + 4523: 19,28 + 4524: 19,29 + 4525: 19,30 + 4542: 20,29 + 4548: 24,29 + 4573: 23,36 + 4585: 29,35 + 4586: 29,36 + 4587: 29,37 + 4592: 25,36 + 4593: 25,37 + 4594: 25,35 + 4611: 14,36 + 4628: 29,41 + 4629: 29,42 + 4630: 29,43 + 4653: 3,35 + 4700: 32,50 + 4701: 38,50 + 4712: 33,49 + 4715: 33,51 + 4732: 25,47 + 4733: 25,46 + 4734: 25,45 + 4735: 25,45 + 4736: 25,44 + 4737: 25,44 + 4738: 25,43 + 4739: 25,42 + 4743: 25,53 + 4773: 13,51 + 4783: 14,53 + 4784: 14,52 + 4830: 18,51 + 4831: 18,49 + 4832: 18,47 + 4833: 18,45 + 4834: 15,45 + 4835: 15,43 + 4836: 15,41 + 4837: 18,41 + 4838: 18,43 + 5001: 37,30 + 5010: 36,36 + 10776: -11,-82 + 10777: -11,-81 + 10778: -11,-80 + 18956: 36,38 - node: color: '#DABC8BFF' id: BrickTileWhiteLineE decals: - 4013: -37,53 - 9528: 8,-33 - 9529: 8,-32 - 9530: 8,-31 - 9543: 8,-35 - 9545: 2,-35 - 9559: 4,-32 - 9560: 4,-33 - 9561: 4,-34 + 3880: -37,53 + 9366: 8,-33 + 9367: 8,-32 + 9368: 8,-31 + 9381: 8,-35 + 9383: 2,-35 + 9397: 4,-32 + 9398: 4,-33 + 9399: 4,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 16799: -52,4 - 16800: -52,5 - 16801: -52,6 - 16821: -49,2 - 16823: -49,0 - 16846: -62,1 - 16888: -52,16 - 16898: -65,1 - 16899: -62,1 - 16901: -56,-7 - 16902: -56,-9 - 16906: -62,-7 - 16914: -56,-9 - 16916: -57,-8 - 16946: -52,-5 - 16949: -52,-11 - 16950: -52,-13 - 16951: -52,-13 - 16952: -52,-12 - 16953: -52,-14 - 16954: -52,-16 - 16955: -52,-17 - 16965: -62,-17 - 16966: -60,-17 - 16976: -55,-13 - 16977: -55,-14 - 16990: -51,-15 - 17012: -47,-14 - 17013: -47,-15 - 17014: -47,-16 - 17044: -51,-15 - 17094: -47,13 - 17097: -50,10 - 17109: -60,10 - 17117: -67,15 - 17152: -79,14 - 17227: -57,18 - 17263: -45,-7 - 17264: -45,-8 - 17265: -45,-9 - 17270: -50,-9 - 17271: -50,-8 - 17272: -50,-7 - 17277: -56,-7 - 17278: -56,-9 - 17318: -74,-8 - 17319: -74,-7 - 17320: -74,-6 - 17333: -75,-9 - 17338: -11,-80 - 17339: -11,-81 - 17340: -11,-82 - 17355: 5,92 - 17358: 10,90 - 17370: 7,89 - 17371: 7,88 - 17383: 11,85 - 17384: 11,86 - 17397: 9,80 - 17398: 9,81 - 17401: 12,81 - 17402: 12,80 - 17403: 12,79 - 17404: 12,77 - 17405: 12,76 - 17406: 12,75 - 17407: 12,74 - 17418: 9,75 - 17419: 9,76 - 17420: 9,80 - 17421: 9,81 - 17447: -62,9 - 17448: -62,8 - 17449: -62,7 - 17450: -62,6 - 17515: -60,10 - 17521: -66,-3 - 17522: -66,-2 - 17523: -66,-1 - 17524: -66,0 - 17555: -65,1 - 17556: -65,1 - 17558: -75,0 - 17560: -75,0 - 17590: -70,11 - 17591: -74,11 - 17599: -79,14 - 17603: -83,14 - 17640: -77,3 - 17641: -77,4 - 17642: -77,5 - 17643: -77,6 - 17644: -77,7 - 17657: -77,9 - 17658: -77,10 - 17659: -77,11 - 17673: -80,0 - 17682: -76,-2 - 17683: -76,-1 - 17687: -75,0 - 17727: -67,-11 - 17728: -67,-12 - 17745: -52,17 - 18089: -55,-2 - 18090: -55,-3 - 19832: -49,-2 + 15848: -52,4 + 15849: -52,5 + 15850: -52,6 + 15870: -49,2 + 15872: -49,0 + 15895: -62,1 + 15937: -52,16 + 15947: -65,1 + 15948: -62,1 + 15950: -56,-7 + 15951: -56,-9 + 15955: -62,-7 + 15963: -56,-9 + 15965: -57,-8 + 15995: -52,-5 + 15998: -52,-11 + 15999: -52,-13 + 16000: -52,-13 + 16001: -52,-12 + 16002: -52,-14 + 16003: -52,-16 + 16004: -52,-17 + 16014: -62,-17 + 16015: -60,-17 + 16025: -55,-13 + 16026: -55,-14 + 16039: -51,-15 + 16061: -47,-14 + 16062: -47,-15 + 16063: -47,-16 + 16093: -51,-15 + 16143: -47,13 + 16146: -50,10 + 16158: -60,10 + 16166: -67,15 + 16201: -79,14 + 16276: -57,18 + 16312: -45,-7 + 16313: -45,-8 + 16314: -45,-9 + 16319: -50,-9 + 16320: -50,-8 + 16321: -50,-7 + 16326: -56,-7 + 16327: -56,-9 + 16367: -74,-8 + 16368: -74,-7 + 16369: -74,-6 + 16382: -75,-9 + 16387: -11,-80 + 16388: -11,-81 + 16389: -11,-82 + 16404: 5,92 + 16407: 10,90 + 16419: 7,89 + 16420: 7,88 + 16432: 11,85 + 16433: 11,86 + 16446: 9,80 + 16447: 9,81 + 16450: 12,81 + 16451: 12,80 + 16452: 12,79 + 16453: 12,77 + 16454: 12,76 + 16455: 12,75 + 16456: 12,74 + 16467: 9,75 + 16468: 9,76 + 16469: 9,80 + 16470: 9,81 + 16496: -62,9 + 16497: -62,8 + 16498: -62,7 + 16499: -62,6 + 16564: -60,10 + 16570: -66,-3 + 16571: -66,-2 + 16572: -66,-1 + 16573: -66,0 + 16604: -65,1 + 16605: -65,1 + 16607: -75,0 + 16609: -75,0 + 16639: -70,11 + 16640: -74,11 + 16648: -79,14 + 16652: -83,14 + 16689: -77,3 + 16690: -77,4 + 16691: -77,5 + 16692: -77,6 + 16693: -77,7 + 16706: -77,9 + 16707: -77,10 + 16708: -77,11 + 16722: -80,0 + 16731: -76,-2 + 16732: -76,-1 + 16736: -75,0 + 16776: -67,-11 + 16777: -67,-12 + 16794: -52,17 + 17138: -55,-2 + 17139: -55,-3 + 18838: -49,-2 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 865: 75,-46 - 866: 75,-43 - 1182: 49,-16 - 1183: 49,-15 - 2048: -20,48 - 2049: -20,47 - 2050: -20,46 - 2051: -20,51 - 2052: -20,52 - 2053: -23,50 - 2054: -23,49 - 2055: -23,48 - 2081: -18,47 - 2082: -18,48 - 2083: -18,49 - 2084: -18,50 - 2085: -18,51 - 2108: -20,27 - 2109: -20,28 - 2110: -20,29 - 2111: -20,31 - 2112: -20,32 - 2113: -23,31 - 2114: -23,33 - 2115: -23,32 - 2116: -23,30 - 2117: -20,34 - 2118: -20,35 - 2119: -20,36 - 2262: -24,41 - 2365: -29,31 - 2700: -9,53 - 2771: -7,49 - 2772: -12,49 - 2805: -8,33 - 2814: -5,33 - 3016: -14,57 - 3021: -20,61 - 3022: -20,62 - 3023: -20,63 - 3086: -14,68 - 3087: -21,68 - 3088: -21,57 - 3089: -7,57 - 3090: -6,61 - 3091: -6,62 - 3092: -6,63 - 3093: -6,64 - 3109: -7,68 - 3229: -13,75 - 3230: -13,74 - 3231: -13,73 - 3232: -13,72 - 3244: -13,79 - 3245: -13,80 - 3246: -13,81 - 3247: -13,82 - 3248: -13,92 - 3249: -13,93 - 3250: -13,94 - 3251: -13,95 - 3255: -13,88 - 3256: -13,87 - 3257: -13,86 - 3258: -13,86 - 3259: -13,85 - 3265: -31,79 - 3266: -31,80 - 3267: -31,81 - 3268: -31,82 - 3269: -31,85 - 3270: -31,86 - 3271: -31,88 - 3272: -31,92 - 3273: -31,93 - 3274: -31,94 - 3275: -31,95 - 3276: -31,75 - 3277: -31,74 - 3278: -31,73 - 3279: -31,72 - 3310: -32,68 - 3523: -1,68 - 3524: 4,68 - 3612: 5,72 - 3613: 5,73 - 3614: 5,74 - 3615: 5,75 - 3674: 5,82 - 3675: 5,81 - 3676: 5,80 - 3677: 5,79 - 3781: -1,57 - 3828: 16,70 - 3829: 16,71 - 3838: 23,70 - 4150: -23,22 - 4151: -23,22 - 5168: 16,16 - 5169: 16,17 - 5170: 16,18 - 5171: 16,19 - 5181: 16,9 - 5182: 16,10 - 5183: 16,11 - 5184: 16,12 - 5189: 16,2 - 5190: 16,3 - 5191: 16,5 - 5192: 16,4 - 5193: 16,-2 - 5194: 16,-3 - 5195: 16,-4 - 5196: 16,-5 - 5220: -27,68 - 5502: -39,5 - 5503: -34,5 - 5504: -28,5 - 5581: -35,26 - 6216: -20,-17 - 6217: -20,-16 - 6218: -20,-15 - 6219: -20,-14 - 6220: -20,-13 - 6221: -20,-12 - 6316: 16,-17 - 6317: 16,-15 - 6318: 16,-14 - 6319: 16,-12 - 6320: 16,-13 - 6321: 16,-16 - 6341: -3,-16 - 6657: -32,-9 - 6658: -32,-8 - 6659: -32,-7 - 6660: -32,-6 - 6661: -32,-5 - 6662: -32,-4 - 6676: -32,-1 - 6677: -32,0 - 6678: -32,0 - 6679: -32,2 - 6708: -28,-12 - 6709: -28,-13 - 6710: -28,-14 - 6711: -28,-15 - 6712: -28,-16 - 6738: -35,-15 - 6739: -35,-14 - 6740: -35,-13 - 6741: -35,-12 - 7008: -16,-20 - 7009: -9,-20 - 7010: 2,-20 - 7011: 9,-20 - 7125: 20,5 - 7190: 27,5 - 8009: 56,-15 - 8010: 56,-14 - 8011: 56,-13 - 8016: 56,-28 - 8017: 56,-27 - 8018: 56,-26 - 8028: 58,-27 - 8029: 60,-27 - 8030: 60,-14 - 8031: 58,-14 - 8237: 27,-11 - 8243: 20,-11 - 8244: 33,-13 - 8245: 33,-12 - 8246: 33,-12 - 8247: 33,-11 - 8248: 33,-10 - 8435: 48,-20 - 8436: 48,-20 - 8686: -9,-76 - 8687: -9,-80 - 8688: -6,-78 - 8743: 5,-25 - 8744: 5,-26 - 8767: -13,-25 - 8768: -13,-25 - 8769: -13,-26 - 8770: -13,-26 - 8821: -2,-27 - 8822: -2,-26 - 8823: -2,-26 - 8824: -2,-24 - 8825: -2,-25 - 8864: -2,-31 - 8865: -2,-32 - 8866: -2,-33 - 8867: -2,-34 - 8868: -2,-35 - 8947: -4,-24 - 9060: 1,-26 - 9061: 1,-25 - 9071: 14,-24 - 9354: -2,-42 - 9355: -2,-41 - 9356: -2,-41 - 9357: -2,-40 - 9358: -2,-40 - 9359: -2,-39 - 9360: -2,-45 - 9361: -2,-45 - 9362: -2,-46 - 9363: -2,-47 - 9364: -2,-49 - 9365: -2,-50 - 9366: -2,-44 - 9367: -2,-44 - 9368: -2,-52 - 9369: -2,-53 - 9370: -2,-54 - 9371: -2,-54 - 9372: -2,-54 - 9373: -2,-55 - 9398: -2,-61 - 9399: -2,-60 - 9400: -2,-59 - 9434: -7,-71 - 9435: -7,-70 - 9436: -7,-69 - 9437: -4,-73 - 9438: -4,-72 - 9446: 74,-50 - 9447: 74,-51 - 10593: 71,-50 - 10594: 71,-50 - 10601: 75,-44 - 10623: 68,-41 - 12656: -43,22 - 14788: -20,50 - 14883: -17,23 - 14884: -7,23 - 14885: 0,23 - 14886: 10,23 - 15010: -31,87 - 15071: -20,64 - 15138: 43,-20 - 15255: -3,-71 - 15259: -3,-70 - 15344: -43,9 - 15345: -43,10 - 15346: -43,11 - 15347: -43,14 - 15348: -43,15 - 15349: -43,15 - 15350: -43,16 - 15351: -43,17 - 15352: -43,20 - 15353: -43,21 - 15382: -9,-79 - 15383: -9,-78 - 15384: -9,-77 - 15512: 95,-4 - 18703: 3,-9 - 18704: 9,-9 - 18705: -4,-9 - 18706: -10,-9 - 18707: -16,-9 - 19623: 34,-11 - 19624: 34,-10 - 19625: 34,-13 - 19626: 34,-14 - 19628: 33,-14 - 20136: -20,9 - 20137: -20,10 - 20138: -20,11 - 20139: -20,12 - 20140: -20,16 - 20141: -20,17 - 20142: -20,18 - 20143: -20,19 - 20144: -20,5 - 20145: -20,4 - 20146: -20,4 - 20147: -20,2 - 20148: -20,-2 - 20149: -20,-3 - 20150: -20,-4 - 20151: -20,-5 - 20188: -20,3 - 22546: -2,-48 + 752: 75,-46 + 753: 75,-43 + 1064: 49,-16 + 1065: 49,-15 + 1929: -20,48 + 1930: -20,47 + 1931: -20,46 + 1932: -20,51 + 1933: -23,50 + 1934: -23,49 + 1935: -23,48 + 1961: -18,47 + 1962: -18,48 + 1963: -18,49 + 1964: -18,50 + 1965: -18,51 + 1987: -20,27 + 1988: -20,28 + 1989: -20,29 + 1990: -20,31 + 1991: -20,32 + 1992: -23,31 + 1993: -23,33 + 1994: -23,32 + 1995: -23,30 + 1996: -20,34 + 1997: -20,35 + 1998: -20,36 + 2140: -24,41 + 2242: -29,31 + 2577: -9,53 + 2648: -7,49 + 2649: -12,49 + 2682: -8,33 + 2691: -5,33 + 2893: -14,57 + 2898: -20,61 + 2899: -20,62 + 2900: -20,63 + 2963: -21,68 + 2964: -21,57 + 2965: -7,57 + 2966: -6,61 + 2967: -6,62 + 2968: -6,63 + 2969: -6,64 + 2985: -7,68 + 3103: -13,75 + 3104: -13,73 + 3105: -13,72 + 3117: -13,79 + 3118: -13,80 + 3119: -13,81 + 3120: -13,82 + 3121: -13,92 + 3122: -13,93 + 3123: -13,94 + 3124: -13,95 + 3128: -13,88 + 3129: -13,87 + 3130: -13,86 + 3131: -13,86 + 3132: -13,85 + 3138: -31,79 + 3139: -31,80 + 3140: -31,81 + 3141: -31,82 + 3142: -31,85 + 3143: -31,86 + 3144: -31,88 + 3145: -31,92 + 3146: -31,93 + 3147: -31,94 + 3148: -31,95 + 3149: -31,75 + 3150: -31,74 + 3151: -31,73 + 3152: -31,72 + 3183: -32,68 + 3392: -1,68 + 3479: 5,72 + 3480: 5,73 + 3481: 5,74 + 3482: 5,75 + 3541: 5,82 + 3542: 5,81 + 3543: 5,80 + 3544: 5,79 + 3648: -1,57 + 3695: 16,70 + 3696: 16,71 + 3705: 23,70 + 4000: -23,22 + 4001: -23,22 + 5018: 16,16 + 5019: 16,17 + 5020: 16,18 + 5021: 16,19 + 5031: 16,9 + 5032: 16,10 + 5033: 16,11 + 5034: 16,12 + 5039: 16,2 + 5040: 16,3 + 5041: 16,5 + 5042: 16,4 + 5043: 16,-2 + 5044: 16,-3 + 5045: 16,-4 + 5046: 16,-5 + 5070: -27,68 + 5350: -39,5 + 5351: -34,5 + 5352: -28,5 + 5429: -35,26 + 6064: -20,-17 + 6065: -20,-16 + 6066: -20,-15 + 6067: -20,-14 + 6068: -20,-13 + 6069: -20,-12 + 6164: 16,-17 + 6165: 16,-15 + 6166: 16,-14 + 6167: 16,-12 + 6168: 16,-13 + 6169: 16,-16 + 6189: -3,-16 + 6505: -32,-9 + 6506: -32,-8 + 6507: -32,-7 + 6508: -32,-6 + 6509: -32,-5 + 6510: -32,-4 + 6524: -32,-1 + 6525: -32,0 + 6526: -32,0 + 6527: -32,2 + 6556: -28,-12 + 6557: -28,-13 + 6558: -28,-14 + 6559: -28,-15 + 6560: -28,-16 + 6586: -35,-15 + 6587: -35,-14 + 6588: -35,-13 + 6589: -35,-12 + 6856: -16,-20 + 6857: -9,-20 + 6858: 2,-20 + 6859: 9,-20 + 6973: 20,5 + 7038: 27,5 + 7857: 56,-15 + 7858: 56,-14 + 7859: 56,-13 + 7864: 56,-27 + 7865: 56,-26 + 7874: 58,-27 + 7875: 60,-27 + 7876: 60,-14 + 7877: 58,-14 + 8083: 27,-11 + 8089: 20,-11 + 8090: 33,-13 + 8091: 33,-12 + 8092: 33,-12 + 8093: 33,-11 + 8094: 33,-10 + 8281: 48,-20 + 8282: 48,-20 + 8524: -9,-76 + 8525: -9,-80 + 8526: -6,-78 + 8581: 5,-25 + 8582: 5,-26 + 8605: -13,-25 + 8606: -13,-25 + 8607: -13,-26 + 8608: -13,-26 + 8659: -2,-27 + 8660: -2,-26 + 8661: -2,-26 + 8662: -2,-24 + 8663: -2,-25 + 8702: -2,-31 + 8703: -2,-32 + 8704: -2,-33 + 8705: -2,-34 + 8706: -2,-35 + 8785: -4,-24 + 8898: 1,-26 + 8899: 1,-25 + 8909: 14,-24 + 9192: -2,-42 + 9193: -2,-41 + 9194: -2,-41 + 9195: -2,-40 + 9196: -2,-40 + 9197: -2,-39 + 9198: -2,-45 + 9199: -2,-45 + 9200: -2,-46 + 9201: -2,-47 + 9202: -2,-49 + 9203: -2,-50 + 9204: -2,-44 + 9205: -2,-44 + 9206: -2,-52 + 9207: -2,-53 + 9208: -2,-54 + 9209: -2,-54 + 9210: -2,-54 + 9211: -2,-55 + 9236: -2,-61 + 9237: -2,-60 + 9238: -2,-59 + 9272: -7,-71 + 9273: -7,-70 + 9274: -7,-69 + 9275: -4,-73 + 9276: -4,-72 + 9284: 74,-50 + 9285: 74,-51 + 10431: 71,-50 + 10432: 71,-50 + 10439: 75,-44 + 10461: 68,-41 + 11974: -43,22 + 13844: -20,50 + 13939: -17,23 + 13940: -7,23 + 13941: 0,23 + 13942: 10,23 + 14066: -31,87 + 14127: -20,64 + 14194: 43,-20 + 14311: -3,-71 + 14315: -3,-70 + 14393: -43,9 + 14394: -43,10 + 14395: -43,11 + 14396: -43,14 + 14397: -43,15 + 14398: -43,15 + 14399: -43,16 + 14400: -43,17 + 14401: -43,20 + 14402: -43,21 + 14431: -9,-79 + 14432: -9,-78 + 14433: -9,-77 + 14561: 95,-4 + 17747: 3,-9 + 17748: 9,-9 + 17749: -4,-9 + 17750: -10,-9 + 17751: -16,-9 + 18667: 34,-11 + 18668: 34,-10 + 18669: 34,-13 + 18670: 34,-14 + 18672: 33,-14 + 19142: -20,9 + 19143: -20,10 + 19144: -20,11 + 19145: -20,12 + 19146: -20,16 + 19147: -20,17 + 19148: -20,18 + 19149: -20,19 + 19150: -20,5 + 19151: -20,4 + 19152: -20,4 + 19153: -20,2 + 19154: -20,-2 + 19155: -20,-3 + 19156: -20,-4 + 19157: -20,-5 + 19194: -20,3 + 21552: -2,-48 + 23775: -14,68 + 23782: -13,74 + 23783: -20,52 + 23786: 4,68 + 23801: 56,-28 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 4080: -20,16 - 4081: -20,17 - 4082: -20,18 - 4083: -20,19 - 4084: -20,12 - 4085: -20,11 - 4086: -20,10 - 4087: -20,9 + 3930: -20,16 + 3931: -20,17 + 3932: -20,18 + 3933: -20,19 + 3934: -20,12 + 3935: -20,11 + 3936: -20,10 + 3937: -20,9 - node: color: '#334E6DFF' id: BrickTileWhiteLineN decals: - 22521: 9,-8 - 22522: 7,-8 - 22523: 13,-8 - 22524: 12,-8 - 22534: -11,-8 - 22535: -9,-8 + 21527: 9,-8 + 21528: 7,-8 + 21529: 13,-8 + 21530: 12,-8 + 21540: -11,-8 + 21541: -9,-8 - node: color: '#3EB388FF' id: BrickTileWhiteLineN decals: - 21565: -56,37 - 21576: -55,31 - 21599: -49,23 - 21600: -48,23 - 21601: -47,23 - 21602: -47,23 - 21603: -46,23 - 21609: -54,19 - 21610: -53,19 - 21621: -54,19 - 21622: -53,19 - 21623: -55,24 - 21624: -54,24 - 21629: -52,21 - 21661: -49,42 - 21662: -48,43 - 21674: -48,43 - 21675: -54,43 - 21676: -56,43 - 21680: -59,55 - 21718: -46,56 - 21734: -45,45 - 21735: -57,45 - 21736: -56,45 - 21737: -55,45 - 21738: -54,45 - 21739: -54,45 - 21740: -52,45 - 21741: -52,45 - 21742: -51,45 - 21743: -50,45 - 21744: -49,45 - 21745: -48,45 - 21746: -53,45 - 21765: -46,56 - 21766: -44,51 - 21791: -59,55 + 20571: -56,37 + 20582: -55,31 + 20605: -49,23 + 20606: -48,23 + 20607: -47,23 + 20608: -47,23 + 20609: -46,23 + 20615: -54,19 + 20616: -53,19 + 20627: -54,19 + 20628: -53,19 + 20629: -55,24 + 20630: -54,24 + 20635: -52,21 + 20667: -49,42 + 20668: -48,43 + 20680: -48,43 + 20681: -54,43 + 20682: -56,43 + 20686: -59,55 + 20724: -46,56 + 20740: -45,45 + 20741: -57,45 + 20742: -56,45 + 20743: -55,45 + 20744: -54,45 + 20745: -54,45 + 20746: -52,45 + 20747: -52,45 + 20748: -51,45 + 20749: -50,45 + 20750: -49,45 + 20751: -48,45 + 20752: -53,45 + 20771: -46,56 + 20772: -44,51 + 20797: -59,55 - node: color: '#439909FF' id: BrickTileWhiteLineN decals: - 24634: 27,-59 - 24656: 30,-61 - 24657: 31,-61 - 24658: 32,-61 - 24678: 43,-62 - 24679: 44,-62 - 24694: 35,-60 - 24706: 39,-60 - 24707: 40,-60 - 24740: 31,-66 - 24741: 30,-66 - 24742: 29,-66 - 24743: 28,-66 - 24744: 27,-66 - 24745: 27,-66 - 24746: 26,-66 - 24752: 38,-70 - 24753: 39,-70 - 24754: 41,-70 - 24761: 39,-72 - 24762: 41,-72 + 23633: 27,-59 + 23655: 30,-61 + 23656: 31,-61 + 23657: 32,-61 + 23677: 43,-62 + 23678: 44,-62 + 23693: 35,-60 + 23705: 39,-60 + 23706: 40,-60 + 23739: 31,-66 + 23740: 30,-66 + 23741: 29,-66 + 23742: 28,-66 + 23743: 27,-66 + 23744: 27,-66 + 23745: 26,-66 + 23751: 38,-70 + 23752: 39,-70 + 23753: 41,-70 + 23760: 39,-72 + 23761: 41,-72 - node: color: '#52B4E9FF' id: BrickTileWhiteLineN decals: - 23086: 17,-24 - 23119: 16,-37 - 23120: 17,-37 - 23121: 18,-37 - 23134: 17,-35 - 23149: 10,-34 - 23150: 11,-34 - 23151: 13,-34 - 23166: 11,-36 - 23167: 12,-36 - 23168: 13,-36 - 23199: 20,-34 - 23200: 22,-34 - 23201: 22,-34 - 23202: 23,-34 - 23203: 24,-34 - 23204: 25,-34 - 23205: 26,-34 - 23206: 26,-34 - 23207: 26,-34 - 23208: 27,-34 - 23209: 27,-34 - 23210: 28,-34 - 23211: 30,-34 - 23212: 30,-34 - 23213: 31,-34 - 23214: 33,-34 - 23215: 33,-34 - 23216: 34,-34 - 23217: 34,-34 - 23218: 34,-34 - 23219: 32,-34 - 23220: 34,-34 - 23221: 34,-34 - 23222: 35,-34 - 23223: 35,-34 - 23224: 37,-34 - 23225: 38,-34 - 23320: 9,-42 - 23323: 4,-48 - 23392: 37,-43 - 23393: 31,-38 - 23394: 31,-38 - 23395: 32,-38 - 23396: 33,-38 - 23397: 33,-38 - 23398: 34,-37 - 23399: 36,-38 - 23400: 36,-38 - 23401: 35,-38 - 23402: 36,-38 - 23403: 36,-38 - 23404: 37,-38 - 23405: 37,-38 - 23406: 37,-38 - 23407: 37,-38 - 23434: 32,-41 - 23435: 32,-41 - 23436: 34,-41 - 23437: 35,-41 - 23438: 35,-41 - 23439: 33,-41 - 23440: 36,-41 - 23452: 21,-43 - 23453: 22,-43 - 23454: 22,-43 - 23455: 23,-43 - 23529: 3,-43 - 23530: 5,-43 - 23535: 7,-45 - 23561: 9,-38 - 23562: 10,-38 - 23563: 11,-38 - 23564: 12,-38 - 23565: 13,-38 - 23577: 13,-43 - 23590: 17,-46 - 23617: 21,-38 - 23618: 22,-38 - 23619: 23,-38 - 23624: 27,-45 - 23632: 22,-36 - 23633: 23,-36 - 23634: 23,-36 - 23635: 24,-36 - 23636: 25,-36 - 23637: 26,-36 - 23638: 26,-36 - 23639: 27,-36 - 23640: 27,-36 - 23641: 31,-36 - 23642: 31,-36 - 23643: 32,-36 - 23644: 33,-36 - 23645: 34,-36 - 23646: 34,-36 - 23647: 35,-36 - 23648: 35,-36 - 23649: 36,-36 - 23650: 36,-36 - 23651: 34,-38 - 23652: 27,-52 - 23656: 27,-54 - 23679: 29,-28 - 23718: 21,-25 - 23739: 27,-29 - 23740: 28,-29 - 23741: 30,-29 - 23742: 31,-29 - 23756: 31,-54 - 23791: -6,-58 - 23803: 6,66 + 22092: 17,-24 + 22125: 16,-37 + 22126: 17,-37 + 22127: 18,-37 + 22140: 17,-35 + 22155: 10,-34 + 22156: 11,-34 + 22157: 13,-34 + 22172: 11,-36 + 22173: 12,-36 + 22174: 13,-36 + 22205: 20,-34 + 22206: 22,-34 + 22207: 22,-34 + 22208: 23,-34 + 22209: 24,-34 + 22210: 25,-34 + 22211: 26,-34 + 22212: 26,-34 + 22213: 26,-34 + 22214: 27,-34 + 22215: 27,-34 + 22216: 28,-34 + 22217: 30,-34 + 22218: 30,-34 + 22219: 31,-34 + 22220: 33,-34 + 22221: 33,-34 + 22222: 34,-34 + 22223: 34,-34 + 22224: 34,-34 + 22225: 32,-34 + 22226: 34,-34 + 22227: 34,-34 + 22228: 35,-34 + 22229: 35,-34 + 22230: 37,-34 + 22231: 38,-34 + 22326: 9,-42 + 22329: 4,-48 + 22398: 37,-43 + 22399: 31,-38 + 22400: 31,-38 + 22401: 32,-38 + 22402: 33,-38 + 22403: 33,-38 + 22404: 34,-37 + 22405: 36,-38 + 22406: 36,-38 + 22407: 35,-38 + 22408: 36,-38 + 22409: 36,-38 + 22410: 37,-38 + 22411: 37,-38 + 22412: 37,-38 + 22413: 37,-38 + 22440: 32,-41 + 22441: 32,-41 + 22442: 34,-41 + 22443: 35,-41 + 22444: 35,-41 + 22445: 33,-41 + 22446: 36,-41 + 22458: 21,-43 + 22459: 22,-43 + 22460: 22,-43 + 22461: 23,-43 + 22535: 3,-43 + 22536: 5,-43 + 22541: 7,-45 + 22567: 9,-38 + 22568: 10,-38 + 22569: 11,-38 + 22570: 12,-38 + 22571: 13,-38 + 22583: 13,-43 + 22596: 17,-46 + 22623: 21,-38 + 22624: 22,-38 + 22625: 23,-38 + 22630: 27,-45 + 22638: 22,-36 + 22639: 23,-36 + 22640: 23,-36 + 22641: 24,-36 + 22642: 25,-36 + 22643: 26,-36 + 22644: 26,-36 + 22645: 27,-36 + 22646: 27,-36 + 22647: 31,-36 + 22648: 31,-36 + 22649: 32,-36 + 22650: 33,-36 + 22651: 34,-36 + 22652: 34,-36 + 22653: 35,-36 + 22654: 35,-36 + 22655: 36,-36 + 22656: 36,-36 + 22657: 34,-38 + 22658: 27,-52 + 22662: 27,-54 + 22685: 29,-28 + 22724: 21,-25 + 22745: 27,-29 + 22746: 28,-29 + 22747: 30,-29 + 22748: 31,-29 + 22762: 31,-54 + 22797: -6,-58 + 22809: 6,66 + 23805: 6,-27 + 23806: 7,-27 + 23807: 8,-27 + 23808: 9,-27 + 23809: 9,-27 + 23810: 10,-27 - node: color: '#52E5FFFF' id: BrickTileWhiteLineN decals: - 545: -10,70 + 440: -10,70 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineN decals: - 17783: -46,23 - 17784: -47,23 - 17785: -47,23 - 17786: -48,23 - 17787: -49,23 - 17819: -56,37 - 17823: -55,31 - 17853: -44,51 - 17864: -46,56 - 17891: -48,43 - 17894: -49,42 - 17903: -45,45 - 17907: -48,45 - 17908: -49,45 - 17909: -49,45 - 17910: -50,45 - 17911: -51,45 - 17912: -52,45 - 17913: -53,45 - 17914: -54,45 - 17915: -55,45 - 17916: -57,45 - 17917: -56,45 - 17951: -59,55 - 17972: -56,43 - 17973: -54,43 - 18026: -55,24 - 18027: -54,24 - 18034: -54,19 - 18035: -53,19 - 18038: -52,21 + 16832: -46,23 + 16833: -47,23 + 16834: -47,23 + 16835: -48,23 + 16836: -49,23 + 16868: -56,37 + 16872: -55,31 + 16902: -44,51 + 16913: -46,56 + 16940: -48,43 + 16943: -49,42 + 16952: -45,45 + 16956: -48,45 + 16957: -49,45 + 16958: -49,45 + 16959: -50,45 + 16960: -51,45 + 16961: -52,45 + 16962: -53,45 + 16963: -54,45 + 16964: -55,45 + 16965: -57,45 + 16966: -56,45 + 17000: -59,55 + 17021: -56,43 + 17022: -54,43 + 17075: -55,24 + 17076: -54,24 + 17083: -54,19 + 17084: -53,19 + 17087: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineN decals: - 9462: 6,-27 - 9463: 7,-27 - 9464: 8,-27 - 9465: 9,-27 - 9466: 10,-27 - 9485: 20,-34 - 9486: 22,-34 - 9487: 23,-34 - 9488: 24,-34 - 9489: 25,-34 - 9490: 26,-34 - 9491: 27,-34 - 9492: 28,-34 - 9493: 30,-34 - 9494: 31,-34 - 9495: 33,-34 - 9496: 34,-34 - 9497: 35,-34 - 9498: 37,-34 - 9508: 17,-24 - 9655: 16,-37 - 9656: 17,-37 - 9657: 18,-37 - 9670: 13,-34 - 9671: 11,-34 - 9672: 10,-34 - 9707: 26,-37 - 9708: 27,-37 - 9709: 28,-37 - 9710: 17,-48 - 9711: 27,-54 - 9746: 22,-36 - 9747: 23,-36 - 9748: 24,-36 - 9749: 25,-36 - 9750: 26,-36 - 9751: 27,-36 - 9752: 31,-36 - 9753: 32,-36 - 9754: 33,-36 - 9755: 34,-36 - 9756: 34,-36 - 9757: 35,-36 - 9758: 36,-36 - 9759: 27,-45 - 9760: 27,-52 - 9761: 17,-46 - 9762: 11,-36 - 9763: 12,-36 - 9764: 13,-36 - 9863: 21,-38 - 9864: 22,-38 - 9865: 23,-38 - 9914: 31,-38 - 9915: 32,-38 - 9916: 33,-38 - 9917: 33,-38 - 9918: 34,-38 - 9919: 36,-38 - 9920: 37,-38 - 9922: 37,-43 - 9936: 32,-41 - 9937: 33,-41 - 9938: 34,-41 - 9939: 35,-41 - 9940: 36,-41 - 10013: 29,-28 - 10029: 9,-38 - 10030: 10,-38 - 10031: 11,-38 - 10032: 12,-38 - 10033: 13,-38 - 10046: 20,-46 - 10047: 21,-46 - 10048: 22,-46 - 10049: 23,-46 - 10050: 24,-46 - 10061: 22,-50 - 10084: 21,-43 - 10085: 22,-43 - 10086: 23,-43 - 10147: 31,-47 - 10164: 31,-54 - 10254: 3,-43 - 10255: 5,-43 - 10258: 7,-45 - 10275: 9,-42 - 10288: 4,-48 - 10302: 13,-43 - 10524: 44,-31 - 10525: 47,-31 - 10526: 46,-31 - 10527: 48,-31 - 10528: 48,-31 - 19322: -6,-58 - 19672: 27,-29 - 19673: 28,-29 - 19674: 30,-29 - 19675: 31,-29 + 9300: 6,-27 + 9301: 7,-27 + 9302: 8,-27 + 9303: 9,-27 + 9304: 10,-27 + 9323: 20,-34 + 9324: 22,-34 + 9325: 23,-34 + 9326: 24,-34 + 9327: 25,-34 + 9328: 26,-34 + 9329: 27,-34 + 9330: 28,-34 + 9331: 30,-34 + 9332: 31,-34 + 9333: 33,-34 + 9334: 34,-34 + 9335: 35,-34 + 9336: 37,-34 + 9346: 17,-24 + 9493: 16,-37 + 9494: 17,-37 + 9495: 18,-37 + 9508: 13,-34 + 9509: 11,-34 + 9510: 10,-34 + 9545: 26,-37 + 9546: 27,-37 + 9547: 28,-37 + 9548: 17,-48 + 9549: 27,-54 + 9584: 22,-36 + 9585: 23,-36 + 9586: 24,-36 + 9587: 25,-36 + 9588: 26,-36 + 9589: 27,-36 + 9590: 31,-36 + 9591: 32,-36 + 9592: 33,-36 + 9593: 34,-36 + 9594: 34,-36 + 9595: 35,-36 + 9596: 36,-36 + 9597: 27,-45 + 9598: 27,-52 + 9599: 17,-46 + 9600: 11,-36 + 9601: 12,-36 + 9602: 13,-36 + 9701: 21,-38 + 9702: 22,-38 + 9703: 23,-38 + 9752: 31,-38 + 9753: 32,-38 + 9754: 33,-38 + 9755: 33,-38 + 9756: 34,-38 + 9757: 36,-38 + 9758: 37,-38 + 9760: 37,-43 + 9774: 32,-41 + 9775: 33,-41 + 9776: 34,-41 + 9777: 35,-41 + 9778: 36,-41 + 9851: 29,-28 + 9867: 9,-38 + 9868: 10,-38 + 9869: 11,-38 + 9870: 12,-38 + 9871: 13,-38 + 9884: 20,-46 + 9885: 21,-46 + 9886: 22,-46 + 9887: 23,-46 + 9888: 24,-46 + 9899: 22,-50 + 9922: 21,-43 + 9923: 22,-43 + 9924: 23,-43 + 9985: 31,-47 + 10002: 31,-54 + 10092: 3,-43 + 10093: 5,-43 + 10096: 7,-45 + 10113: 9,-42 + 10126: 4,-48 + 10140: 13,-43 + 10362: 44,-31 + 10363: 47,-31 + 10364: 46,-31 + 10365: 48,-31 + 10366: 48,-31 + 18366: -6,-58 + 18716: 27,-29 + 18717: 28,-29 + 18718: 30,-29 + 18719: 31,-29 - node: color: '#A46106FF' id: BrickTileWhiteLineN decals: - 21832: 3,24 - 21833: 9,24 - 21834: 13,24 - 21835: 17,24 - 21866: 4,25 - 21867: 5,25 - 21868: 7,25 - 21869: 8,25 - 21870: 5,31 - 21871: 6,31 - 21876: 3,31 - 21896: 4,27 - 21897: 5,27 - 21898: 6,27 - 21899: 6,27 - 21900: 7,27 - 21901: 8,27 - 21935: 5,34 - 21936: 4,34 - 21937: 5,34 - 21938: 6,34 - 21939: 7,34 - 21940: 8,34 - 21941: 9,34 - 21961: 3,37 - 21962: 4,37 - 21963: 6,37 - 21964: 7,37 - 21965: 9,37 - 21966: 8,37 - 21977: 4,32 - 21978: 9,32 - 21983: 10,38 - 21984: 5,38 - 21993: 5,43 - 21994: 6,43 - 22004: 5,38 - 22005: 10,38 - 22017: 10,41 - 22026: 10,46 - 22050: 14,39 - 22051: 15,39 - 22052: 16,39 - 22053: 17,39 - 22054: 18,39 - 22055: 19,39 - 22056: 20,39 - 22057: 20,39 - 22058: 16,34 - 22059: 17,34 - 22060: 18,34 - 22075: 15,33 - 22079: 20,33 - 22080: 21,33 - 22081: 18,54 - 22082: 19,54 - 22083: 20,54 - 22084: 20,54 - 22085: 21,54 - 22086: 22,54 - 22087: 23,54 - 22088: 23,54 - 22089: 26,52 - 22090: 27,52 - 22091: 28,52 - 22092: 29,52 - 22093: 30,52 - 22094: 30,52 - 22095: 31,52 - 22096: 32,52 - 22097: 32,52 - 22098: 33,52 - 22099: 34,52 - 22100: 35,52 - 22101: 36,52 - 22102: 37,52 - 22103: 38,52 - 22104: 38,52 - 22128: 11,54 - 22129: 12,54 - 22146: 16,54 - 22158: 20,50 - 22159: 19,50 - 22160: 20,50 - 22161: 21,50 - 22162: 22,50 - 22163: 22,50 - 22164: 19,46 - 22165: 20,46 - 22166: 21,46 - 22167: 21,46 - 22168: 21,46 - 22169: 22,46 - 22170: 22,46 - 22171: 19,44 - 22172: 20,44 - 22173: 21,44 - 22174: 22,44 - 22175: 22,44 - 22176: 19,42 - 22177: 20,42 - 22178: 21,42 - 22179: 22,42 - 22180: 22,42 - 22181: 22,42 - 22182: 16,42 - 22183: 16,42 - 22184: 17,42 - 22185: 16,44 - 22186: 17,44 - 22187: 16,40 - 22188: 17,40 - 22189: 19,40 - 22190: 20,40 - 22191: 21,40 - 22192: 21,40 - 22193: 22,40 - 22194: 22,40 - 22195: 19,48 - 22196: 20,48 - 22197: 21,48 - 22198: 22,48 - 22199: 22,48 - 22310: 14,46 - 22377: 13,26 - 22378: 14,26 - 22379: 15,26 - 22380: 15,26 - 22381: 16,26 - 22393: 16,32 - 22397: 12,28 - 22398: 13,28 - 22399: 14,28 - 22401: 14,25 - 22402: 15,25 - 22403: 16,25 - 22438: 25,38 - 22439: 26,38 - 22440: 27,38 - 22469: 26,34 - 22470: 27,34 - 22490: 28,44 - 22493: 28,39 + 20838: 3,24 + 20839: 9,24 + 20840: 13,24 + 20841: 17,24 + 20872: 4,25 + 20873: 5,25 + 20874: 7,25 + 20875: 8,25 + 20876: 5,31 + 20877: 6,31 + 20882: 3,31 + 20902: 4,27 + 20903: 5,27 + 20904: 6,27 + 20905: 6,27 + 20906: 7,27 + 20907: 8,27 + 20941: 5,34 + 20942: 4,34 + 20943: 5,34 + 20944: 6,34 + 20945: 7,34 + 20946: 8,34 + 20947: 9,34 + 20967: 3,37 + 20968: 4,37 + 20969: 6,37 + 20970: 7,37 + 20971: 9,37 + 20972: 8,37 + 20983: 4,32 + 20984: 9,32 + 20989: 10,38 + 20990: 5,38 + 20999: 5,43 + 21000: 6,43 + 21010: 5,38 + 21011: 10,38 + 21023: 10,41 + 21032: 10,46 + 21056: 14,39 + 21057: 15,39 + 21058: 16,39 + 21059: 17,39 + 21060: 18,39 + 21061: 19,39 + 21062: 20,39 + 21063: 20,39 + 21064: 16,34 + 21065: 17,34 + 21066: 18,34 + 21081: 15,33 + 21085: 20,33 + 21086: 21,33 + 21087: 18,54 + 21088: 19,54 + 21089: 20,54 + 21090: 20,54 + 21091: 21,54 + 21092: 22,54 + 21093: 23,54 + 21094: 23,54 + 21095: 26,52 + 21096: 27,52 + 21097: 28,52 + 21098: 29,52 + 21099: 30,52 + 21100: 30,52 + 21101: 31,52 + 21102: 32,52 + 21103: 32,52 + 21104: 33,52 + 21105: 34,52 + 21106: 35,52 + 21107: 36,52 + 21108: 37,52 + 21109: 38,52 + 21110: 38,52 + 21134: 11,54 + 21135: 12,54 + 21152: 16,54 + 21164: 20,50 + 21165: 19,50 + 21166: 20,50 + 21167: 21,50 + 21168: 22,50 + 21169: 22,50 + 21170: 19,46 + 21171: 20,46 + 21172: 21,46 + 21173: 21,46 + 21174: 21,46 + 21175: 22,46 + 21176: 22,46 + 21177: 19,44 + 21178: 20,44 + 21179: 21,44 + 21180: 22,44 + 21181: 22,44 + 21182: 19,42 + 21183: 20,42 + 21184: 21,42 + 21185: 22,42 + 21186: 22,42 + 21187: 22,42 + 21188: 16,42 + 21189: 16,42 + 21190: 17,42 + 21191: 16,44 + 21192: 17,44 + 21193: 16,40 + 21194: 17,40 + 21195: 19,40 + 21196: 20,40 + 21197: 21,40 + 21198: 21,40 + 21199: 22,40 + 21200: 22,40 + 21201: 19,48 + 21202: 20,48 + 21203: 21,48 + 21204: 22,48 + 21205: 22,48 + 21316: 14,46 + 21383: 13,26 + 21384: 14,26 + 21385: 15,26 + 21386: 15,26 + 21387: 16,26 + 21399: 16,32 + 21403: 12,28 + 21404: 13,28 + 21405: 14,28 + 21407: 14,25 + 21408: 15,25 + 21409: 16,25 + 21444: 25,38 + 21445: 26,38 + 21446: 27,38 + 21475: 26,34 + 21476: 27,34 + 21496: 28,44 + 21499: 28,39 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineN decals: - 2871: -25,48 - 2884: -32,44 - 2902: -33,54 - 2903: -32,54 - 2904: -31,54 - 2905: -30,54 - 2914: -27,51 - 2958: -32,46 - 2959: -30,46 - 2960: -28,46 - 2990: -38,50 - 3008: -38,44 - 3009: -30,44 + 2748: -25,48 + 2761: -32,44 + 2779: -33,54 + 2780: -32,54 + 2781: -31,54 + 2782: -30,54 + 2791: -27,51 + 2835: -32,46 + 2836: -30,46 + 2837: -28,46 + 2867: -38,50 + 2885: -38,44 + 2886: -30,44 - node: color: '#B18BDAFF' id: BrickTileWhiteLineN decals: - 5080: 22,32 - 5082: 24,32 - 5083: 26,32 - 5133: 39,30 - 5134: 40,30 - 5135: 41,30 - 5136: 42,30 - 5145: 38,30 - 5163: 35,33 - 11358: -18,-36 - 11359: -17,-36 - 11360: -17,-36 - 11361: -16,-36 - 11362: -15,-36 - 11363: -14,-36 - 11364: -29,-36 - 11365: -27,-36 - 11366: -28,-36 - 11367: -26,-36 - 11368: -26,-36 - 11369: -24,-36 - 11370: -25,-36 - 11430: -14,-54 - 11431: -14,-44 - 11439: -14,-34 - 11440: -16,-34 - 11441: -17,-34 - 11442: -17,-34 - 11443: -18,-34 - 11444: -19,-34 - 11445: -20,-34 - 11487: -12,-34 - 11488: -31,-34 - 11489: -30,-34 - 11490: -27,-34 - 11491: -27,-34 - 11492: -28,-34 - 11493: -26,-34 - 11494: -25,-34 - 11495: -25,-34 - 11537: -12,-27 - 11538: -11,-27 - 11539: -10,-27 - 11540: -9,-27 - 11541: -9,-27 - 11542: -8,-27 - 11587: -7,-30 - 11588: -8,-30 - 11589: -9,-30 - 11590: -5,-30 - 11701: -7,-37 - 11704: -15,-37 - 11705: -14,-37 - 11706: -13,-37 - 11707: -13,-37 - 11727: -15,-45 - 11728: -14,-45 - 11729: -13,-45 - 11821: -29,-37 - 11822: -24,-37 - 11823: -24,-37 - 12003: -24,-33 - 12004: -23,-33 - 12005: -22,-33 - 12110: -25,-42 - 12111: -24,-42 - 12112: -29,-42 - 12146: -16,-55 - 12147: -16,-50 - 12170: -19,-56 - 12171: -18,-56 - 12172: -17,-56 - 12173: -15,-56 - 12174: -14,-56 - 12201: -9,-49 - 12202: -8,-49 - 12203: -5,-46 - 12220: -6,-54 - 12230: -19,-45 - 12548: -8,-35 - 12549: -7,-35 - 19960: 36,39 + 4930: 22,32 + 4932: 24,32 + 4933: 26,32 + 4983: 39,30 + 4984: 40,30 + 4985: 41,30 + 4986: 42,30 + 4995: 38,30 + 5013: 35,33 + 10855: -18,-36 + 10856: -17,-36 + 10857: -17,-36 + 10858: -16,-36 + 10859: -15,-36 + 10860: -14,-36 + 10861: -29,-36 + 10862: -27,-36 + 10863: -28,-36 + 10864: -26,-36 + 10865: -26,-36 + 10866: -24,-36 + 10867: -25,-36 + 10927: -14,-54 + 10928: -14,-44 + 10936: -14,-34 + 10937: -16,-34 + 10938: -17,-34 + 10939: -17,-34 + 10940: -18,-34 + 10941: -19,-34 + 10942: -20,-34 + 10984: -12,-34 + 10985: -31,-34 + 10986: -30,-34 + 10987: -27,-34 + 10988: -27,-34 + 10989: -28,-34 + 10990: -26,-34 + 10991: -25,-34 + 10992: -25,-34 + 11034: -12,-27 + 11035: -11,-27 + 11036: -10,-27 + 11037: -9,-27 + 11038: -9,-27 + 11039: -8,-27 + 11084: -7,-30 + 11085: -8,-30 + 11086: -9,-30 + 11087: -5,-30 + 11186: -7,-37 + 11189: -15,-37 + 11190: -14,-37 + 11191: -13,-37 + 11192: -13,-37 + 11212: -15,-45 + 11213: -14,-45 + 11214: -13,-45 + 11306: -29,-37 + 11307: -24,-37 + 11308: -24,-37 + 11341: -24,-33 + 11342: -23,-33 + 11343: -22,-33 + 11448: -25,-42 + 11449: -24,-42 + 11450: -29,-42 + 11484: -16,-55 + 11485: -16,-50 + 11508: -19,-56 + 11509: -18,-56 + 11510: -17,-56 + 11511: -15,-56 + 11512: -14,-56 + 11539: -9,-49 + 11540: -8,-49 + 11541: -5,-46 + 11558: -6,-54 + 11568: -19,-45 + 11886: -8,-35 + 11887: -7,-35 + 18966: 36,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineN decals: - 664: -22,-56 - 665: -23,-56 - 666: -24,-56 + 559: -22,-56 + 560: -23,-56 + 561: -24,-56 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineN decals: - 10843: 39,-72 + 10587: 39,-72 - node: color: '#D381C9FF' id: BrickTileWhiteLineN decals: - 22577: -15,-29 - 22578: -13,-29 - 22632: -12,-34 - 22633: -14,-34 - 22634: -16,-34 - 22635: -16,-34 - 22636: -18,-34 - 22637: -18,-34 - 22638: -19,-34 - 22639: -19,-34 - 22640: -20,-34 - 22645: -17,-34 - 22647: -15,-37 - 22648: -14,-37 - 22649: -13,-37 - 22650: -13,-37 - 22672: -16,-50 - 22679: -16,-55 - 22685: -15,-45 - 22686: -14,-45 - 22687: -13,-45 - 22756: -28,-34 - 22757: -27,-34 - 22758: -26,-34 - 22759: -26,-34 - 22760: -25,-34 - 22761: -30,-34 - 22784: -23,-33 - 22785: -23,-33 - 22786: -22,-33 - 22787: -23,-33 - 22788: -23,-33 - 22789: -24,-33 - 22809: -29,-37 - 22810: -24,-37 - 22828: -23,-31 - 22858: -29,-36 - 22859: -28,-36 - 22860: -27,-36 - 22861: -27,-36 - 22862: -26,-36 - 22863: -25,-36 - 22864: -25,-36 - 22865: -24,-36 - 22866: -24,-36 - 22867: -18,-36 - 22868: -18,-36 - 22869: -16,-36 - 22870: -16,-36 - 22871: -15,-36 - 22872: -14,-36 - 22873: -17,-36 - 22905: -9,-30 - 22906: -8,-30 - 22907: -7,-30 - 22908: -7,-30 - 22909: -6,-29 - 22911: -5,-30 - 22917: -7,-37 - 22955: -14,-44 - 22958: -14,-54 - 22959: -8,-49 - 22960: -9,-49 - 22961: -5,-46 - 22997: -6,-54 - 23020: -16,-55 - 23033: -19,-56 - 23034: -18,-56 - 23035: -17,-56 - 23036: -17,-56 - 23037: -15,-56 - 23038: -14,-56 - 24379: -30,-32 - 24380: -29,-32 - 24381: -28,-32 - 24387: -28,-28 + 21583: -15,-29 + 21584: -13,-29 + 21638: -12,-34 + 21639: -14,-34 + 21640: -16,-34 + 21641: -16,-34 + 21642: -18,-34 + 21643: -18,-34 + 21644: -19,-34 + 21645: -19,-34 + 21646: -20,-34 + 21651: -17,-34 + 21653: -15,-37 + 21654: -14,-37 + 21655: -13,-37 + 21656: -13,-37 + 21678: -16,-50 + 21685: -16,-55 + 21691: -15,-45 + 21692: -14,-45 + 21693: -13,-45 + 21762: -28,-34 + 21763: -27,-34 + 21764: -26,-34 + 21765: -26,-34 + 21766: -25,-34 + 21767: -30,-34 + 21790: -23,-33 + 21791: -23,-33 + 21792: -22,-33 + 21793: -23,-33 + 21794: -23,-33 + 21795: -24,-33 + 21815: -29,-37 + 21816: -24,-37 + 21834: -23,-31 + 21864: -29,-36 + 21865: -28,-36 + 21866: -27,-36 + 21867: -27,-36 + 21868: -26,-36 + 21869: -25,-36 + 21870: -25,-36 + 21871: -24,-36 + 21872: -24,-36 + 21873: -18,-36 + 21874: -18,-36 + 21875: -16,-36 + 21876: -16,-36 + 21877: -15,-36 + 21878: -14,-36 + 21879: -17,-36 + 21911: -9,-30 + 21912: -8,-30 + 21913: -7,-30 + 21914: -7,-30 + 21915: -6,-29 + 21917: -5,-30 + 21923: -7,-37 + 21961: -14,-44 + 21964: -14,-54 + 21965: -8,-49 + 21966: -9,-49 + 21967: -5,-46 + 22003: -6,-54 + 22026: -16,-55 + 22039: -19,-56 + 22040: -18,-56 + 22041: -17,-56 + 22042: -17,-56 + 22043: -15,-56 + 22044: -14,-56 + 23383: -30,-32 + 23384: -29,-32 + 23385: -28,-32 + 23391: -28,-28 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineN decals: - 19155: 69,16 - 19159: 62,-3 + 18199: 69,16 + 18203: 62,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineN decals: - 2703: -11,54 - 2709: -12,51 - 3802: 11,70 - 9410: -38,2 + 2580: -11,54 + 2586: -12,51 + 3669: 11,70 + 9248: -38,2 - node: color: '#DAA58BFF' id: BrickTileWhiteLineN decals: - 4362: 4,25 - 4363: 5,25 - 4364: 7,25 - 4365: 8,25 - 4366: 6,31 - 4390: 4,32 - 4396: 3,37 - 4397: 4,37 - 4398: 9,37 - 4406: 9,32 - 4413: 5,31 - 4430: 4,27 - 4431: 5,27 - 4432: 6,27 - 4433: 7,27 - 4434: 8,27 - 4440: 14,28 - 4456: 12,28 - 4457: 13,28 - 4469: 14,25 - 4470: 15,25 - 4471: 16,25 - 4473: 16,32 - 4479: 13,26 - 4480: 14,26 - 4481: 15,26 - 4482: 16,26 - 4499: 13,39 - 4500: 14,39 - 4501: 15,39 - 4502: 15,39 - 4503: 16,39 - 4504: 17,39 - 4505: 17,39 - 4506: 20,39 - 4507: 17,39 - 4508: 18,39 - 4527: 5,38 - 4534: 5,43 - 4535: 6,43 - 4542: 10,38 - 4552: 13,33 - 4562: 10,41 - 4580: 15,33 - 4600: 20,33 - 4601: 21,33 - 4609: 14,46 - 4624: 22,32 - 4625: 23,32 - 4626: 24,32 - 4627: 25,32 - 4628: 26,32 - 4661: 21,25 - 4665: 22,27 - 4666: 23,27 - 4667: 23,27 - 4668: 24,27 - 4682: 26,27 - 4683: 20,27 - 4694: 22,28 - 4695: 24,28 - 4701: 26,28 - 4702: 20,28 - 4716: 23,29 - 4739: 25,38 - 4740: 26,38 - 4741: 27,38 - 4745: 26,34 - 4746: 27,34 - 4763: 16,34 - 4764: 17,34 - 4765: 18,34 - 4788: 28,44 - 4790: 28,39 - 4804: 5,34 - 4805: 6,34 - 4806: 7,34 - 4807: 8,34 - 4808: 9,34 - 4813: 6,37 - 4814: 7,37 - 4815: 8,37 - 4823: 27,52 - 4824: 28,52 - 4825: 29,52 - 4826: 30,52 - 4827: 31,52 - 4828: 32,52 - 4829: 33,52 - 4830: 34,52 - 4831: 36,52 - 4832: 37,52 - 4833: 37,52 - 4834: 38,52 - 4891: 35,52 - 4892: 26,52 - 4906: 11,54 - 4907: 12,54 - 4930: 16,54 - 4937: 18,54 - 4938: 19,54 - 4939: 20,54 - 4940: 20,54 - 4941: 22,54 - 4942: 23,54 - 4943: 21,54 - 4992: 16,40 - 4993: 17,40 - 4994: 19,40 - 4995: 20,40 - 4996: 21,40 - 4997: 22,40 - 4998: 22,42 - 4999: 21,42 - 5000: 19,42 - 5001: 20,42 - 5002: 17,42 - 5003: 16,42 - 5004: 16,44 - 5005: 17,44 - 5006: 19,44 - 5007: 20,44 - 5008: 21,44 - 5009: 22,44 - 5010: 22,46 - 5011: 21,46 - 5012: 20,46 - 5013: 19,46 - 5014: 19,48 - 5015: 20,48 - 5016: 21,48 - 5017: 22,48 - 5018: 22,50 - 5019: 21,50 - 5020: 20,50 - 5029: 19,50 - 5149: 39,30 - 5150: 41,30 - 11283: -11,-83 - 19952: 35,39 + 4212: 4,25 + 4213: 5,25 + 4214: 7,25 + 4215: 8,25 + 4216: 6,31 + 4240: 4,32 + 4246: 3,37 + 4247: 4,37 + 4248: 9,37 + 4256: 9,32 + 4263: 5,31 + 4280: 4,27 + 4281: 5,27 + 4282: 6,27 + 4283: 7,27 + 4284: 8,27 + 4290: 14,28 + 4306: 12,28 + 4307: 13,28 + 4319: 14,25 + 4320: 15,25 + 4321: 16,25 + 4323: 16,32 + 4329: 13,26 + 4330: 14,26 + 4331: 15,26 + 4332: 16,26 + 4349: 13,39 + 4350: 14,39 + 4351: 15,39 + 4352: 15,39 + 4353: 16,39 + 4354: 17,39 + 4355: 17,39 + 4356: 20,39 + 4357: 17,39 + 4358: 18,39 + 4377: 5,38 + 4384: 5,43 + 4385: 6,43 + 4392: 10,38 + 4402: 13,33 + 4412: 10,41 + 4430: 15,33 + 4450: 20,33 + 4451: 21,33 + 4459: 14,46 + 4474: 22,32 + 4475: 23,32 + 4476: 24,32 + 4477: 25,32 + 4478: 26,32 + 4511: 21,25 + 4515: 22,27 + 4516: 23,27 + 4517: 23,27 + 4518: 24,27 + 4532: 26,27 + 4533: 20,27 + 4544: 22,28 + 4545: 24,28 + 4551: 26,28 + 4552: 20,28 + 4566: 23,29 + 4589: 25,38 + 4590: 26,38 + 4591: 27,38 + 4595: 26,34 + 4596: 27,34 + 4613: 16,34 + 4614: 17,34 + 4615: 18,34 + 4638: 28,44 + 4640: 28,39 + 4654: 5,34 + 4655: 6,34 + 4656: 7,34 + 4657: 8,34 + 4658: 9,34 + 4663: 6,37 + 4664: 7,37 + 4665: 8,37 + 4673: 27,52 + 4674: 28,52 + 4675: 29,52 + 4676: 30,52 + 4677: 31,52 + 4678: 32,52 + 4679: 33,52 + 4680: 34,52 + 4681: 36,52 + 4682: 37,52 + 4683: 37,52 + 4684: 38,52 + 4741: 35,52 + 4742: 26,52 + 4756: 11,54 + 4757: 12,54 + 4780: 16,54 + 4787: 18,54 + 4788: 19,54 + 4789: 20,54 + 4790: 20,54 + 4791: 22,54 + 4792: 23,54 + 4793: 21,54 + 4842: 16,40 + 4843: 17,40 + 4844: 19,40 + 4845: 20,40 + 4846: 21,40 + 4847: 22,40 + 4848: 22,42 + 4849: 21,42 + 4850: 19,42 + 4851: 20,42 + 4852: 17,42 + 4853: 16,42 + 4854: 16,44 + 4855: 17,44 + 4856: 19,44 + 4857: 20,44 + 4858: 21,44 + 4859: 22,44 + 4860: 22,46 + 4861: 21,46 + 4862: 20,46 + 4863: 19,46 + 4864: 19,48 + 4865: 20,48 + 4866: 21,48 + 4867: 22,48 + 4868: 22,50 + 4869: 21,50 + 4870: 20,50 + 4879: 19,50 + 4999: 39,30 + 5000: 41,30 + 10780: -11,-83 + 18958: 35,39 - node: color: '#DABC8BFF' id: BrickTileWhiteLineN decals: - 4004: -38,54 - 9531: 7,-30 - 9532: 6,-30 - 9533: 4,-30 - 9534: 3,-30 - 9562: 5,-35 - 9563: 6,-35 - 9581: 5,-37 + 3871: -38,54 + 9369: 7,-30 + 9370: 6,-30 + 9371: 4,-30 + 9372: 3,-30 + 9400: 5,-35 + 9401: 6,-35 + 9419: 5,-37 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 16791: -55,2 - 16792: -54,2 - 16793: -53,3 - 16794: -52,3 - 16795: -53,7 - 16796: -52,7 - 16807: -53,7 - 16808: -52,7 - 16809: -53,3 - 16810: -52,3 - 16813: -51,2 - 16814: -50,2 - 16825: -50,-1 - 16841: -58,-5 - 16847: -60,2 - 16848: -59,2 - 16849: -58,2 - 16850: -57,2 - 16851: -56,2 - 16867: -48,15 - 16868: -49,15 - 16869: -50,15 - 16870: -51,15 - 16885: -57,15 - 16886: -56,15 - 16904: -58,-11 - 16923: -60,-6 - 16924: -59,-6 - 16935: -60,-12 - 16936: -59,-12 - 16937: -57,-12 - 16938: -56,-12 - 16939: -55,-7 - 16963: -61,-17 - 16996: -56,-19 - 16997: -54,-19 - 17009: -49,-13 - 17010: -48,-13 - 17101: -58,16 - 17110: -62,15 - 17111: -63,15 - 17112: -64,15 - 17113: -65,15 - 17114: -66,15 - 17131: -77,16 - 17132: -76,16 - 17133: -75,16 - 17134: -74,16 - 17135: -73,16 - 17136: -71,16 - 17137: -70,16 - 17138: -69,16 - 17139: -72,16 - 17157: -77,12 - 17158: -72,13 - 17160: -77,12 - 17228: -60,19 - 17229: -59,19 - 17230: -58,19 - 17259: -48,-6 - 17260: -47,-6 - 17261: -46,-6 - 17292: -66,-6 - 17293: -65,-6 - 17294: -64,-6 - 17295: -72,-6 - 17296: -70,-6 - 17297: -68,-6 - 17298: -73,-6 - 17309: -71,-9 - 17310: -70,-9 - 17311: -69,-9 - 17324: -75,-6 - 17325: -76,-6 - 17335: -71,-9 - 17336: -70,-9 - 17337: -69,-9 - 17345: -11,-83 - 17350: 10,89 - 17351: 5,91 - 17353: 6,86 - 17366: 10,89 - 17367: 6,90 - 17399: 11,82 - 17416: 12,73 - 17458: -63,10 - 17459: -64,10 - 17525: -72,2 - 17526: -71,2 - 17527: -70,2 - 17528: -69,2 - 17529: -68,2 - 17530: -67,2 - 17531: -67,2 - 17551: -71,-5 - 17552: -69,-5 - 17583: -73,12 - 17584: -71,12 - 17594: -72,9 - 17596: -72,13 - 17600: -82,14 - 17601: -81,14 - 17602: -80,14 - 17616: -77,12 - 17647: -77,2 - 17664: -77,8 - 17665: -77,12 - 17666: -78,1 - 17681: -76,-3 - 17711: -72,-10 - 17712: -68,-10 - 17716: -71,-9 - 17717: -70,-9 - 17718: -69,-9 - 18083: -60,-1 - 18084: -59,-1 - 18085: -58,-1 - 18086: -57,-1 - 18087: -56,-1 - 18141: -55,15 - 18142: -54,15 - 18143: -53,15 - 18144: -52,15 + 15840: -55,2 + 15841: -54,2 + 15842: -53,3 + 15843: -52,3 + 15844: -53,7 + 15845: -52,7 + 15856: -53,7 + 15857: -52,7 + 15858: -53,3 + 15859: -52,3 + 15862: -51,2 + 15863: -50,2 + 15874: -50,-1 + 15890: -58,-5 + 15896: -60,2 + 15897: -59,2 + 15898: -58,2 + 15899: -57,2 + 15900: -56,2 + 15916: -48,15 + 15917: -49,15 + 15918: -50,15 + 15919: -51,15 + 15934: -57,15 + 15935: -56,15 + 15953: -58,-11 + 15972: -60,-6 + 15973: -59,-6 + 15984: -60,-12 + 15985: -59,-12 + 15986: -57,-12 + 15987: -56,-12 + 15988: -55,-7 + 16012: -61,-17 + 16045: -56,-19 + 16046: -54,-19 + 16058: -49,-13 + 16059: -48,-13 + 16150: -58,16 + 16159: -62,15 + 16160: -63,15 + 16161: -64,15 + 16162: -65,15 + 16163: -66,15 + 16180: -77,16 + 16181: -76,16 + 16182: -75,16 + 16183: -74,16 + 16184: -73,16 + 16185: -71,16 + 16186: -70,16 + 16187: -69,16 + 16188: -72,16 + 16206: -77,12 + 16207: -72,13 + 16209: -77,12 + 16277: -60,19 + 16278: -59,19 + 16279: -58,19 + 16308: -48,-6 + 16309: -47,-6 + 16310: -46,-6 + 16341: -66,-6 + 16342: -65,-6 + 16343: -64,-6 + 16344: -72,-6 + 16345: -70,-6 + 16346: -68,-6 + 16347: -73,-6 + 16358: -71,-9 + 16359: -70,-9 + 16360: -69,-9 + 16373: -75,-6 + 16374: -76,-6 + 16384: -71,-9 + 16385: -70,-9 + 16386: -69,-9 + 16394: -11,-83 + 16399: 10,89 + 16400: 5,91 + 16402: 6,86 + 16415: 10,89 + 16416: 6,90 + 16448: 11,82 + 16465: 12,73 + 16507: -63,10 + 16508: -64,10 + 16574: -72,2 + 16575: -71,2 + 16576: -70,2 + 16577: -69,2 + 16578: -68,2 + 16579: -67,2 + 16580: -67,2 + 16600: -71,-5 + 16601: -69,-5 + 16632: -73,12 + 16633: -71,12 + 16643: -72,9 + 16645: -72,13 + 16649: -82,14 + 16650: -81,14 + 16651: -80,14 + 16665: -77,12 + 16696: -77,2 + 16713: -77,8 + 16714: -77,12 + 16715: -78,1 + 16730: -76,-3 + 16760: -72,-10 + 16761: -68,-10 + 16765: -71,-9 + 16766: -70,-9 + 16767: -69,-9 + 17132: -60,-1 + 17133: -59,-1 + 17134: -58,-1 + 17135: -57,-1 + 17136: -56,-1 + 17190: -55,15 + 17191: -54,15 + 17192: -53,15 + 17193: -52,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 867: 74,-42 - 868: 72,-42 - 869: 71,-42 - 1173: 45,-14 - 1174: 48,-14 - 2069: -19,49 - 2070: -19,45 - 2079: -21,46 - 2080: -17,46 - 2137: -19,33 - 2138: -19,26 - 2142: -19,30 - 2210: -21,28 - 2263: -23,40 - 2388: -31,29 - 2695: -12,51 - 2702: -10,54 - 2704: -12,54 - 2767: -11,48 - 2768: -10,48 - 2769: -6,48 - 2770: -5,48 - 2813: -6,34 - 3013: -13,56 - 3014: -12,56 - 3015: -11,56 - 3029: -19,60 - 3062: -16,58 - 3063: -15,58 - 3064: -14,58 - 3065: -13,58 - 3077: -20,67 - 3078: -19,67 - 3079: -18,67 - 3080: -12,67 - 3081: -13,67 - 3082: -11,67 - 3095: -5,60 - 3101: -6,67 - 3102: -5,67 - 3103: -4,67 - 3114: -6,56 - 3115: -5,56 - 3116: -4,56 - 3117: -20,56 - 3118: -19,56 - 3119: -18,56 - 3227: -12,71 - 3233: -12,78 - 3252: -12,91 - 3253: -12,84 - 3300: -30,71 - 3301: -30,78 - 3302: -30,84 - 3303: -30,91 - 3307: -31,67 - 3308: -30,67 - 3309: -29,67 - 3516: 0,67 - 3517: 1,67 - 3518: 1,67 - 3519: 2,67 - 3520: 5,67 - 3521: 6,67 - 3522: 7,67 - 3611: 6,71 - 3679: 6,78 - 3777: 0,56 - 3778: 1,56 - 3779: 2,56 - 3839: 17,71 - 3840: 18,71 - 3841: 19,71 - 3842: 20,71 - 3843: 21,71 - 3845: 22,71 - 3862: 18,68 - 3863: 19,68 - 3864: 21,68 - 3865: 22,68 - 4154: -24,23 - 5185: 17,15 - 5186: 17,8 - 5206: -19,1 - 5207: 17,-6 - 5208: 17,1 - 5217: -26,67 - 5218: -25,67 - 5219: -24,67 - 5473: -38,4 - 5474: -38,4 - 5475: -37,4 - 5476: -36,4 - 5477: -33,4 - 5478: -32,4 - 5479: -31,4 - 5480: -27,4 - 5481: -26,4 - 5482: -25,4 - 5483: -23,4 - 5484: -24,4 - 5485: -24,4 - 5564: -32,28 - 6229: -19,-18 - 6309: 17,-18 - 6332: -2,-14 - 6333: -1,-14 - 6334: 0,-14 - 6335: 1,-14 - 6402: 3,-21 - 6403: 4,-21 - 6404: 5,-21 - 6405: 6,-21 - 6406: 10,-21 - 6407: 12,-21 - 6408: 11,-21 - 6409: 13,-21 - 6410: -5,-21 - 6411: -6,-21 - 6412: -6,-21 - 6413: -7,-21 - 6414: -7,-21 - 6415: -8,-21 - 6416: -8,-21 - 6417: -12,-21 - 6418: -12,-21 - 6419: -13,-21 - 6420: -14,-21 - 6421: -14,-21 - 6422: -15,-21 - 6423: -15,-21 - 6655: -33,-10 - 6656: -32,-10 - 6665: -31,-2 - 6666: -30,-2 - 6667: -29,-2 - 6668: -28,-2 - 6669: -27,-2 - 6670: -26,-2 - 6671: -26,-2 - 6672: -23,-2 - 6673: -22,-2 - 6674: -22,-2 - 6675: -25,-2 - 6702: -31,-11 - 6703: -30,-11 - 6704: -29,-11 - 6705: -34,-11 - 6733: -28,-17 - 6734: -34,-16 - 6735: -33,-16 - 6736: -32,-16 - 6737: -31,-16 - 6953: -25,-15 - 6954: -24,-15 - 6959: -25,-15 - 6960: -24,-15 - 6966: -24,-19 - 7120: 21,4 - 7121: 22,4 - 7122: 23,4 - 7123: 24,4 - 7185: 28,4 - 7186: 29,4 - 7187: 30,4 - 7188: 31,4 - 8051: 58,-17 - 8052: 59,-17 - 8053: 60,-17 - 8054: 58,-30 - 8055: 59,-30 - 8056: 60,-30 - 8194: 39,-7 - 8195: 40,-7 - 8225: 22,-12 - 8226: 23,-12 - 8227: 23,-12 - 8228: 24,-12 - 8229: 24,-12 - 8230: 21,-12 - 8231: 28,-12 - 8232: 28,-12 - 8233: 29,-12 - 8234: 29,-12 - 8235: 30,-12 - 8236: 30,-12 - 8255: 35,-16 - 8256: 36,-16 - 8257: 36,-16 - 8258: 37,-16 - 8259: 37,-16 - 8260: 39,-16 - 8261: 39,-16 - 8262: 38,-16 - 8263: 38,-16 - 8342: 46,-18 - 8343: 47,-18 - 8347: 48,-14 - 8348: 48,-14 - 8349: 47,-14 - 8421: 44,-21 - 8422: 44,-21 - 8423: 44,-21 - 8424: 45,-21 - 8425: 46,-21 - 8426: 46,-21 - 8427: 47,-21 - 8428: 49,-21 - 8429: 50,-21 - 8430: 51,-21 - 8431: 51,-21 - 8432: 51,-21 - 8433: 52,-21 - 8434: 52,-21 - 8656: -2,-77 - 8657: -1,-77 - 8658: -7,-77 - 8659: -8,-77 - 8660: -8,-81 - 8661: -7,-81 - 8662: -6,-81 - 8663: -3,-81 - 8664: -2,-81 - 8665: -1,-81 - 8747: 6,-27 - 8748: 6,-27 - 8749: 7,-27 - 8750: 9,-27 - 8751: 9,-27 - 8752: 10,-27 - 8753: 10,-27 - 8754: 8,-27 - 8755: -12,-27 - 8756: -11,-27 - 8757: -10,-27 - 8758: -9,-27 - 8759: -8,-27 - 8830: -1,-28 - 8870: -1,-36 - 9394: -1,-43 - 9395: -1,-51 - 9396: -1,-56 - 9397: -1,-62 - 9425: -5,-69 - 9426: -4,-69 - 9432: -5,-74 - 9433: -4,-74 - 9440: -6,-69 - 9441: -3,-69 - 9459: 69,-41 - 9516: 5,-29 - 9517: 11,-29 - 10597: 73,-48 - 10598: 73,-48 - 11320: -6,-29 - 11321: -13,-29 - 11322: -15,-29 - 11325: -15,-29 - 11326: -13,-29 - 13392: -41,-64 - 14893: 11,22 - 14894: 12,22 - 14895: 13,22 - 14896: 14,22 - 14897: 4,22 - 14898: 3,22 - 14899: 2,22 - 14900: 1,22 - 14901: -3,22 - 14902: -4,22 - 14903: -5,22 - 14904: -6,22 - 14905: -13,22 - 14906: -14,22 - 14907: -15,22 - 14908: -15,22 - 14909: -16,22 - 15354: -42,19 - 15355: -42,13 - 15356: -42,8 - 15502: 95,-2 - 15584: 92,-3 - 15585: 93,-3 - 15586: 94,-3 - 15600: 96,7 - 15606: 96,5 - 18656: -3,-10 - 18657: -2,-10 - 18658: -2,-10 - 18659: 0,-10 - 18660: 0,-10 - 18661: -1,-10 - 18662: 1,-10 - 18663: 4,-10 - 18664: 5,-10 - 18665: 6,-10 - 18666: 7,-10 - 18667: 10,-10 - 18668: 11,-10 - 18669: 12,-10 - 18670: 13,-10 - 18671: -9,-10 - 18672: -8,-10 - 18673: -7,-10 - 18674: -7,-10 - 18675: -6,-10 - 18676: -12,-10 - 18677: -13,-10 - 18678: -14,-10 - 18679: -15,-10 - 19613: 35,-15 - 19614: 36,-15 - 19615: 37,-15 - 19616: 38,-15 - 19617: 39,-15 - 19618: 35,-12 - 19619: 36,-12 - 19620: 37,-12 - 19621: 38,-12 - 19622: 39,-12 - 20132: -19,-6 - 20133: -19,1 - 20134: -19,8 - 20135: -19,15 - 24772: 40,-69 - 24773: 40,-66 + 754: 74,-42 + 755: 72,-42 + 756: 71,-42 + 1055: 45,-14 + 1056: 48,-14 + 1949: -19,49 + 1950: -19,45 + 1959: -21,46 + 1960: -17,46 + 2016: -19,33 + 2017: -19,26 + 2021: -19,30 + 2089: -21,28 + 2141: -23,40 + 2265: -31,29 + 2572: -12,51 + 2579: -10,54 + 2581: -12,54 + 2644: -11,48 + 2645: -10,48 + 2646: -6,48 + 2647: -5,48 + 2690: -6,34 + 2890: -13,56 + 2891: -12,56 + 2892: -11,56 + 2906: -19,60 + 2939: -16,58 + 2940: -15,58 + 2941: -14,58 + 2942: -13,58 + 2954: -20,67 + 2955: -19,67 + 2956: -18,67 + 2957: -12,67 + 2958: -13,67 + 2959: -11,67 + 2971: -5,60 + 2977: -6,67 + 2978: -5,67 + 2979: -4,67 + 2990: -6,56 + 2991: -5,56 + 2992: -4,56 + 2993: -20,56 + 2994: -19,56 + 2995: -18,56 + 3101: -12,71 + 3106: -12,78 + 3125: -12,91 + 3126: -12,84 + 3173: -30,71 + 3174: -30,78 + 3175: -30,84 + 3176: -30,91 + 3180: -31,67 + 3181: -30,67 + 3182: -29,67 + 3385: 0,67 + 3386: 1,67 + 3387: 1,67 + 3388: 2,67 + 3389: 5,67 + 3390: 6,67 + 3391: 7,67 + 3478: 6,71 + 3546: 6,78 + 3644: 0,56 + 3645: 1,56 + 3646: 2,56 + 3706: 17,71 + 3707: 18,71 + 3708: 19,71 + 3709: 20,71 + 3710: 21,71 + 3712: 22,71 + 3729: 18,68 + 3730: 19,68 + 3731: 21,68 + 3732: 22,68 + 4004: -24,23 + 5035: 17,15 + 5036: 17,8 + 5056: -19,1 + 5057: 17,-6 + 5058: 17,1 + 5067: -26,67 + 5068: -25,67 + 5069: -24,67 + 5321: -38,4 + 5322: -38,4 + 5323: -37,4 + 5324: -36,4 + 5325: -33,4 + 5326: -32,4 + 5327: -31,4 + 5328: -27,4 + 5329: -26,4 + 5330: -25,4 + 5331: -23,4 + 5332: -24,4 + 5333: -24,4 + 5412: -32,28 + 6077: -19,-18 + 6157: 17,-18 + 6180: -2,-14 + 6181: -1,-14 + 6182: 0,-14 + 6183: 1,-14 + 6250: 3,-21 + 6251: 4,-21 + 6252: 5,-21 + 6253: 6,-21 + 6254: 10,-21 + 6255: 12,-21 + 6256: 11,-21 + 6257: 13,-21 + 6258: -5,-21 + 6259: -6,-21 + 6260: -6,-21 + 6261: -7,-21 + 6262: -7,-21 + 6263: -8,-21 + 6264: -8,-21 + 6265: -12,-21 + 6266: -12,-21 + 6267: -13,-21 + 6268: -14,-21 + 6269: -14,-21 + 6270: -15,-21 + 6271: -15,-21 + 6503: -33,-10 + 6504: -32,-10 + 6513: -31,-2 + 6514: -30,-2 + 6515: -29,-2 + 6516: -28,-2 + 6517: -27,-2 + 6518: -26,-2 + 6519: -26,-2 + 6520: -23,-2 + 6521: -22,-2 + 6522: -22,-2 + 6523: -25,-2 + 6550: -31,-11 + 6551: -30,-11 + 6552: -29,-11 + 6553: -34,-11 + 6581: -28,-17 + 6582: -34,-16 + 6583: -33,-16 + 6584: -32,-16 + 6585: -31,-16 + 6801: -25,-15 + 6802: -24,-15 + 6807: -25,-15 + 6808: -24,-15 + 6814: -24,-19 + 6968: 21,4 + 6969: 22,4 + 6970: 23,4 + 6971: 24,4 + 7033: 28,4 + 7034: 29,4 + 7035: 30,4 + 7036: 31,4 + 7897: 58,-17 + 7898: 59,-17 + 7899: 60,-17 + 7900: 58,-30 + 7901: 59,-30 + 7902: 60,-30 + 8040: 39,-7 + 8041: 40,-7 + 8071: 22,-12 + 8072: 23,-12 + 8073: 23,-12 + 8074: 24,-12 + 8075: 24,-12 + 8076: 21,-12 + 8077: 28,-12 + 8078: 28,-12 + 8079: 29,-12 + 8080: 29,-12 + 8081: 30,-12 + 8082: 30,-12 + 8101: 35,-16 + 8102: 36,-16 + 8103: 36,-16 + 8104: 37,-16 + 8105: 37,-16 + 8106: 39,-16 + 8107: 39,-16 + 8108: 38,-16 + 8109: 38,-16 + 8188: 46,-18 + 8189: 47,-18 + 8193: 48,-14 + 8194: 48,-14 + 8195: 47,-14 + 8267: 44,-21 + 8268: 44,-21 + 8269: 44,-21 + 8270: 45,-21 + 8271: 46,-21 + 8272: 46,-21 + 8273: 47,-21 + 8274: 49,-21 + 8275: 50,-21 + 8276: 51,-21 + 8277: 51,-21 + 8278: 51,-21 + 8279: 52,-21 + 8280: 52,-21 + 8494: -2,-77 + 8495: -1,-77 + 8496: -7,-77 + 8497: -8,-77 + 8498: -8,-81 + 8499: -7,-81 + 8500: -6,-81 + 8501: -3,-81 + 8502: -2,-81 + 8503: -1,-81 + 8585: 6,-27 + 8586: 6,-27 + 8587: 7,-27 + 8588: 9,-27 + 8589: 9,-27 + 8590: 10,-27 + 8591: 10,-27 + 8592: 8,-27 + 8593: -12,-27 + 8594: -11,-27 + 8595: -10,-27 + 8596: -9,-27 + 8597: -8,-27 + 8668: -1,-28 + 8708: -1,-36 + 9232: -1,-43 + 9233: -1,-51 + 9234: -1,-56 + 9235: -1,-62 + 9263: -5,-69 + 9264: -4,-69 + 9270: -5,-74 + 9271: -4,-74 + 9278: -6,-69 + 9279: -3,-69 + 9297: 69,-41 + 9354: 5,-29 + 9355: 11,-29 + 10435: 73,-48 + 10436: 73,-48 + 10817: -6,-29 + 10818: -13,-29 + 10819: -15,-29 + 10822: -15,-29 + 10823: -13,-29 + 12448: -41,-64 + 13949: 11,22 + 13950: 12,22 + 13951: 13,22 + 13952: 14,22 + 13953: 4,22 + 13954: 3,22 + 13955: 2,22 + 13956: 1,22 + 13957: -3,22 + 13958: -4,22 + 13959: -5,22 + 13960: -6,22 + 13961: -13,22 + 13962: -14,22 + 13963: -15,22 + 13964: -15,22 + 13965: -16,22 + 14403: -42,19 + 14404: -42,13 + 14405: -42,8 + 14551: 95,-2 + 14633: 92,-3 + 14634: 93,-3 + 14635: 94,-3 + 14649: 96,7 + 14655: 96,5 + 17700: -3,-10 + 17701: -2,-10 + 17702: -2,-10 + 17703: 0,-10 + 17704: 0,-10 + 17705: -1,-10 + 17706: 1,-10 + 17707: 4,-10 + 17708: 5,-10 + 17709: 6,-10 + 17710: 7,-10 + 17711: 10,-10 + 17712: 11,-10 + 17713: 12,-10 + 17714: 13,-10 + 17715: -9,-10 + 17716: -8,-10 + 17717: -7,-10 + 17718: -7,-10 + 17719: -6,-10 + 17720: -12,-10 + 17721: -13,-10 + 17722: -14,-10 + 17723: -15,-10 + 18657: 35,-15 + 18658: 36,-15 + 18659: 37,-15 + 18660: 38,-15 + 18661: 39,-15 + 18662: 35,-12 + 18663: 36,-12 + 18664: 37,-12 + 18665: 38,-12 + 18666: 39,-12 + 19138: -19,-6 + 19139: -19,1 + 19140: -19,8 + 19141: -19,15 + 23771: 40,-69 + 23772: 40,-66 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 4079: -19,15 - 4088: -19,8 + 3929: -19,15 + 3938: -19,8 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 21218: -12,13 - 21219: -11,13 - 22531: 8,-7 - 22532: 10,-7 - 22533: 11,-7 - 22541: -10,-7 + 20224: -12,13 + 20225: -11,13 + 21537: 8,-7 + 21538: 10,-7 + 21539: 11,-7 + 21547: -10,-7 - node: color: '#3EB388FF' id: BrickTileWhiteLineS decals: - 21580: -55,39 - 21590: -46,18 - 21591: -47,18 - 21592: -48,18 - 21593: -49,18 - 21619: -54,19 - 21620: -53,19 - 21627: -55,23 - 21628: -52,21 - 21644: -50,21 - 21645: -50,36 - 21646: -49,36 - 21647: -48,36 - 21663: -48,43 - 21679: -59,55 - 21700: -59,44 - 21701: -58,44 - 21702: -57,44 - 21703: -55,44 - 21704: -53,44 - 21705: -52,44 - 21706: -51,44 - 21707: -50,44 - 21708: -49,44 - 21709: -47,44 - 21710: -46,44 - 21711: -45,44 - 21716: -46,58 - 21717: -46,56 - 21763: -46,56 - 21764: -46,58 - 21767: -44,51 - 21790: -59,55 - 21802: -59,59 + 20586: -55,39 + 20596: -46,18 + 20597: -47,18 + 20598: -48,18 + 20599: -49,18 + 20625: -54,19 + 20626: -53,19 + 20633: -55,23 + 20634: -52,21 + 20650: -50,21 + 20651: -50,36 + 20652: -49,36 + 20653: -48,36 + 20669: -48,43 + 20685: -59,55 + 20706: -59,44 + 20707: -58,44 + 20708: -57,44 + 20709: -55,44 + 20710: -53,44 + 20711: -52,44 + 20712: -51,44 + 20713: -50,44 + 20714: -49,44 + 20715: -47,44 + 20716: -46,44 + 20717: -45,44 + 20722: -46,58 + 20723: -46,56 + 20769: -46,56 + 20770: -46,58 + 20773: -44,51 + 20796: -59,55 + 20808: -59,59 - node: color: '#439909FF' id: BrickTileWhiteLineS decals: - 24633: 27,-59 - 24649: 27,-54 - 24659: 30,-61 - 24660: 31,-61 - 24661: 32,-61 - 24681: 44,-63 - 24690: 40,-63 - 24714: 35,-72 - 24733: 31,-70 - 24734: 30,-70 - 24735: 29,-70 - 24736: 28,-70 - 24737: 26,-70 - 24738: 27,-70 + 23632: 27,-59 + 23648: 27,-54 + 23658: 30,-61 + 23659: 31,-61 + 23660: 32,-61 + 23680: 44,-63 + 23689: 40,-63 + 23713: 35,-72 + 23732: 31,-70 + 23733: 30,-70 + 23734: 29,-70 + 23735: 28,-70 + 23736: 26,-70 + 23737: 27,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 23091: 17,-30 - 23140: 11,-34 - 23141: 13,-34 - 23142: 10,-36 - 23143: 11,-36 - 23144: 12,-36 - 23145: 13,-36 - 23146: 14,-36 - 23152: 12,-33 - 23153: 12,-34 - 23179: 20,-36 - 23180: 21,-36 - 23181: 21,-36 - 23182: 22,-36 - 23183: 23,-36 - 23184: 23,-36 - 23185: 24,-36 - 23186: 25,-36 - 23187: 29,-36 - 23188: 30,-36 - 23189: 30,-36 - 23190: 31,-36 - 23191: 32,-36 - 23192: 32,-36 - 23193: 33,-36 - 23194: 34,-36 - 23195: 36,-36 - 23196: 36,-36 - 23197: 37,-36 - 23198: 35,-36 - 23233: 36,-33 - 23234: 31,-34 - 23235: 32,-34 - 23236: 33,-34 - 23237: 34,-34 - 23238: 34,-34 - 23239: 35,-34 - 23240: 36,-34 - 23241: 36,-34 - 23242: 26,-34 - 23243: 27,-34 - 23244: 27,-34 - 23245: 25,-34 - 23246: 25,-34 - 23247: 24,-34 - 23248: 24,-34 - 23249: 23,-34 - 23250: 22,-34 - 23251: 25,-34 - 23252: 24,-34 - 23253: 21,-33 - 23321: 9,-42 - 23322: 4,-42 - 23374: 31,-42 - 23375: 32,-42 - 23376: 33,-42 - 23377: 33,-42 - 23378: 34,-42 - 23379: 34,-42 - 23380: 35,-42 - 23381: 35,-42 - 23382: 36,-42 - 23383: 36,-42 - 23384: 37,-45 - 23389: 37,-43 - 23424: 32,-39 - 23425: 33,-39 - 23426: 34,-39 - 23427: 34,-39 - 23428: 35,-39 - 23429: 35,-39 - 23430: 36,-39 - 23431: 36,-39 - 23524: 9,-42 - 23545: 2,-44 - 23547: 5,-47 - 23548: 6,-47 - 23549: 7,-47 - 23550: 8,-47 - 23551: 9,-47 - 23552: 10,-41 - 23553: 11,-41 - 23554: 12,-41 - 23555: 13,-41 - 23556: 13,-41 - 23584: 13,-45 - 23591: 16,-37 - 23592: 17,-37 - 23593: 18,-37 - 23594: 17,-39 - 23611: 21,-41 - 23612: 22,-41 - 23613: 23,-41 - 23625: 27,-39 - 23629: 26,-37 - 23630: 27,-37 - 23631: 28,-37 - 23653: 27,-46 - 23680: 29,-28 - 23681: 28,-27 - 23682: 30,-27 - 23683: 31,-27 - 23723: 21,-29 - 23724: 22,-29 - 23733: 25,-30 - 23743: 31,-30 - 23744: 27,-32 - 23745: 28,-32 - 23782: -6,-62 - 23792: -7,-57 - 23795: -7,-62 - 23796: 5,67 - 23797: 7,67 - 23807: 6,62 + 22097: 17,-30 + 22146: 11,-34 + 22147: 13,-34 + 22148: 10,-36 + 22149: 11,-36 + 22150: 12,-36 + 22151: 13,-36 + 22152: 14,-36 + 22158: 12,-33 + 22159: 12,-34 + 22185: 20,-36 + 22186: 21,-36 + 22187: 21,-36 + 22188: 22,-36 + 22189: 23,-36 + 22190: 23,-36 + 22191: 24,-36 + 22192: 25,-36 + 22193: 29,-36 + 22194: 30,-36 + 22195: 30,-36 + 22196: 31,-36 + 22197: 32,-36 + 22198: 32,-36 + 22199: 33,-36 + 22200: 34,-36 + 22201: 36,-36 + 22202: 36,-36 + 22203: 37,-36 + 22204: 35,-36 + 22239: 36,-33 + 22240: 31,-34 + 22241: 32,-34 + 22242: 33,-34 + 22243: 34,-34 + 22244: 34,-34 + 22245: 35,-34 + 22246: 36,-34 + 22247: 36,-34 + 22248: 26,-34 + 22249: 27,-34 + 22250: 27,-34 + 22251: 25,-34 + 22252: 25,-34 + 22253: 24,-34 + 22254: 24,-34 + 22255: 23,-34 + 22256: 22,-34 + 22257: 25,-34 + 22258: 24,-34 + 22259: 21,-33 + 22327: 9,-42 + 22328: 4,-42 + 22380: 31,-42 + 22381: 32,-42 + 22382: 33,-42 + 22383: 33,-42 + 22384: 34,-42 + 22385: 34,-42 + 22386: 35,-42 + 22387: 35,-42 + 22388: 36,-42 + 22389: 36,-42 + 22390: 37,-45 + 22395: 37,-43 + 22430: 32,-39 + 22431: 33,-39 + 22432: 34,-39 + 22433: 34,-39 + 22434: 35,-39 + 22435: 35,-39 + 22436: 36,-39 + 22437: 36,-39 + 22530: 9,-42 + 22551: 2,-44 + 22553: 5,-47 + 22554: 6,-47 + 22555: 7,-47 + 22556: 8,-47 + 22557: 9,-47 + 22558: 10,-41 + 22559: 11,-41 + 22560: 12,-41 + 22561: 13,-41 + 22562: 13,-41 + 22590: 13,-45 + 22597: 16,-37 + 22598: 17,-37 + 22599: 18,-37 + 22600: 17,-39 + 22617: 21,-41 + 22618: 22,-41 + 22619: 23,-41 + 22631: 27,-39 + 22635: 26,-37 + 22636: 27,-37 + 22637: 28,-37 + 22659: 27,-46 + 22686: 29,-28 + 22687: 28,-27 + 22688: 30,-27 + 22689: 31,-27 + 22729: 21,-29 + 22730: 22,-29 + 22739: 25,-30 + 22749: 31,-30 + 22750: 27,-32 + 22751: 28,-32 + 22788: -6,-62 + 22798: -7,-57 + 22801: -7,-62 + 22802: 5,67 + 22803: 7,67 + 22813: 6,62 + 23813: 6,-24 + 23814: 7,-24 + 23815: 8,-24 + 23816: 9,-24 + 23817: 9,-24 + 23818: 10,-24 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineS decals: - 17789: -50,21 - 17796: -48,18 - 17797: -47,18 - 17798: -46,18 - 17822: -55,39 - 17841: -50,36 - 17842: -49,36 - 17843: -48,36 - 17851: -44,51 - 17852: -44,51 - 17865: -46,56 - 17866: -46,58 - 17889: -48,43 - 17900: -47,44 - 17901: -46,44 - 17905: -45,44 - 17950: -59,55 - 17959: -59,44 - 17960: -58,44 - 17961: -57,44 - 17962: -55,44 - 17963: -52,44 - 17964: -51,44 - 17965: -50,44 - 17966: -49,44 - 17971: -53,44 - 18030: -55,23 - 18037: -52,21 + 16838: -50,21 + 16845: -48,18 + 16846: -47,18 + 16847: -46,18 + 16871: -55,39 + 16890: -50,36 + 16891: -49,36 + 16892: -48,36 + 16900: -44,51 + 16901: -44,51 + 16914: -46,56 + 16915: -46,58 + 16938: -48,43 + 16949: -47,44 + 16950: -46,44 + 16954: -45,44 + 16999: -59,55 + 17008: -59,44 + 17009: -58,44 + 17010: -57,44 + 17011: -55,44 + 17012: -52,44 + 17013: -51,44 + 17014: -50,44 + 17015: -49,44 + 17020: -53,44 + 17079: -55,23 + 17086: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineS decals: - 9467: 6,-24 - 9468: 7,-24 - 9469: 8,-24 - 9470: 9,-24 - 9471: 9,-24 - 9472: 10,-24 - 9595: 20,-36 - 9596: 21,-36 - 9597: 22,-36 - 9598: 23,-36 - 9599: 24,-36 - 9600: 25,-36 - 9601: 29,-36 - 9602: 30,-36 - 9603: 31,-36 - 9604: 33,-36 - 9605: 32,-36 - 9606: 34,-36 - 9607: 35,-36 - 9608: 36,-36 - 9609: 37,-36 - 9664: 10,-36 - 9665: 11,-36 - 9666: 12,-36 - 9667: 13,-36 - 9698: 29,-33 - 9699: 36,-33 - 9700: 21,-33 - 9701: 16,-37 - 9702: 17,-37 - 9703: 18,-37 - 9704: 26,-37 - 9705: 27,-37 - 9706: 28,-37 - 9765: 22,-34 - 9766: 23,-34 - 9767: 24,-34 - 9768: 26,-34 - 9769: 27,-34 - 9770: 25,-34 - 9771: 31,-34 - 9772: 33,-34 - 9773: 34,-34 - 9774: 36,-34 - 9775: 34,-34 - 9776: 35,-34 - 9777: 27,-39 - 9778: 17,-39 - 9779: 17,-30 - 9780: 11,-34 - 9781: 13,-34 - 9816: 27,-46 - 9866: 21,-41 - 9867: 22,-41 - 9868: 23,-41 - 9903: 37,-45 - 9904: 31,-42 - 9905: 32,-42 - 9906: 33,-42 - 9907: 33,-42 - 9908: 34,-42 - 9909: 35,-42 - 9910: 36,-42 - 9923: 37,-43 - 9930: 32,-39 - 9931: 33,-39 - 9932: 34,-39 - 9933: 35,-39 - 9934: 36,-39 - 9963: 25,-30 - 9966: 31,-30 - 9976: 29,-28 - 10006: 30,-27 - 10007: 30,-27 - 10008: 31,-27 - 10036: 10,-41 - 10037: 11,-41 - 10038: 12,-41 - 10039: 13,-41 - 10059: 21,-49 - 10060: 23,-49 - 10259: 5,-47 - 10260: 6,-47 - 10261: 7,-47 - 10262: 8,-47 - 10263: 9,-47 - 10270: 2,-44 - 10273: 4,-42 - 10274: 9,-42 - 10300: 13,-45 - 19285: 6,66 - 19291: 6,62 - 19318: -6,-62 - 19657: 22,-29 - 19658: 21,-29 - 19679: 27,-32 - 19680: 28,-32 - 19682: 29,-28 + 9305: 6,-24 + 9306: 7,-24 + 9307: 8,-24 + 9308: 9,-24 + 9309: 9,-24 + 9310: 10,-24 + 9433: 20,-36 + 9434: 21,-36 + 9435: 22,-36 + 9436: 23,-36 + 9437: 24,-36 + 9438: 25,-36 + 9439: 29,-36 + 9440: 30,-36 + 9441: 31,-36 + 9442: 33,-36 + 9443: 32,-36 + 9444: 34,-36 + 9445: 35,-36 + 9446: 36,-36 + 9447: 37,-36 + 9502: 10,-36 + 9503: 11,-36 + 9504: 12,-36 + 9505: 13,-36 + 9536: 29,-33 + 9537: 36,-33 + 9538: 21,-33 + 9539: 16,-37 + 9540: 17,-37 + 9541: 18,-37 + 9542: 26,-37 + 9543: 27,-37 + 9544: 28,-37 + 9603: 22,-34 + 9604: 23,-34 + 9605: 24,-34 + 9606: 26,-34 + 9607: 27,-34 + 9608: 25,-34 + 9609: 31,-34 + 9610: 33,-34 + 9611: 34,-34 + 9612: 36,-34 + 9613: 34,-34 + 9614: 35,-34 + 9615: 27,-39 + 9616: 17,-39 + 9617: 17,-30 + 9618: 11,-34 + 9619: 13,-34 + 9654: 27,-46 + 9704: 21,-41 + 9705: 22,-41 + 9706: 23,-41 + 9741: 37,-45 + 9742: 31,-42 + 9743: 32,-42 + 9744: 33,-42 + 9745: 33,-42 + 9746: 34,-42 + 9747: 35,-42 + 9748: 36,-42 + 9761: 37,-43 + 9768: 32,-39 + 9769: 33,-39 + 9770: 34,-39 + 9771: 35,-39 + 9772: 36,-39 + 9801: 25,-30 + 9804: 31,-30 + 9814: 29,-28 + 9844: 30,-27 + 9845: 30,-27 + 9846: 31,-27 + 9874: 10,-41 + 9875: 11,-41 + 9876: 12,-41 + 9877: 13,-41 + 9897: 21,-49 + 9898: 23,-49 + 10097: 5,-47 + 10098: 6,-47 + 10099: 7,-47 + 10100: 8,-47 + 10101: 9,-47 + 10108: 2,-44 + 10111: 4,-42 + 10112: 9,-42 + 10138: 13,-45 + 18329: 6,66 + 18335: 6,62 + 18362: -6,-62 + 18701: 22,-29 + 18702: 21,-29 + 18723: 27,-32 + 18724: 28,-32 + 18726: 29,-28 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 21853: 4,25 - 21854: 5,25 - 21855: 7,25 - 21856: 8,25 - 21857: 3,26 - 21858: 6,26 - 21859: 9,26 - 21888: 4,30 - 21889: 5,30 - 21890: 6,30 - 21891: 7,30 - 21892: 8,30 - 21930: 3,33 - 21931: 5,33 - 21932: 6,33 - 21933: 7,33 - 21934: 8,33 - 21943: 4,36 - 21944: 5,36 - 21945: 6,36 - 21946: 7,36 - 21947: 7,36 - 21948: 8,36 - 21949: 8,36 - 21950: 9,36 - 21951: 9,36 - 21971: 5,38 - 21972: 10,38 - 21986: 6,39 - 22014: 10,41 - 22015: 9,42 - 22061: 16,38 - 22062: 17,38 - 22063: 17,38 - 22064: 18,38 - 22065: 18,38 - 22066: 16,34 - 22067: 17,34 - 22068: 18,34 - 22069: 18,34 - 22070: 19,34 - 22071: 19,34 - 22072: 14,34 - 22119: 10,48 - 22120: 11,48 - 22121: 11,48 - 22122: 12,48 - 22130: 10,55 - 22131: 17,55 - 22149: 17,55 - 22150: 19,52 - 22151: 20,52 - 22152: 20,52 - 22153: 21,52 - 22154: 21,52 - 22155: 21,52 - 22156: 21,52 - 22157: 22,52 - 22200: 16,46 - 22201: 17,46 - 22202: 19,46 - 22203: 20,46 - 22204: 21,46 - 22205: 21,46 - 22206: 22,46 - 22207: 22,46 - 22208: 16,44 - 22209: 17,44 - 22210: 19,44 - 22211: 20,44 - 22212: 21,44 - 22213: 22,44 - 22214: 22,44 - 22215: 16,42 - 22216: 17,42 - 22217: 19,42 - 22218: 20,42 - 22219: 21,42 - 22220: 22,42 - 22221: 22,42 - 22222: 22,40 - 22223: 23,40 - 22256: 19,48 - 22257: 20,48 - 22258: 21,48 - 22259: 22,48 - 22260: 19,50 - 22261: 21,50 - 22262: 21,50 - 22263: 22,50 - 22264: 20,50 - 22327: 26,48 - 22328: 26,48 - 22329: 27,48 - 22330: 29,48 - 22331: 29,48 - 22332: 30,48 - 22333: 31,48 - 22334: 32,48 - 22335: 32,48 - 22336: 34,48 - 22337: 34,48 - 22338: 35,48 - 22339: 36,48 - 22340: 37,48 - 22341: 37,48 - 22342: 37,48 - 22343: 37,48 - 22344: 37,48 - 22345: 38,48 - 22346: 38,48 - 22375: 13,28 - 22376: 14,28 - 22404: 14,25 - 22405: 15,25 - 22406: 16,25 - 22407: 13,26 - 22424: 16,32 - 22431: 15,33 - 22454: 25,34 - 22455: 25,34 - 22456: 26,34 - 22457: 27,34 - 22458: 28,34 - 22459: 28,34 - 22475: 26,38 - 22476: 27,38 - 22494: 28,39 + 20859: 4,25 + 20860: 5,25 + 20861: 7,25 + 20862: 8,25 + 20863: 3,26 + 20864: 6,26 + 20865: 9,26 + 20894: 4,30 + 20895: 5,30 + 20896: 6,30 + 20897: 7,30 + 20898: 8,30 + 20936: 3,33 + 20937: 5,33 + 20938: 6,33 + 20939: 7,33 + 20940: 8,33 + 20949: 4,36 + 20950: 5,36 + 20951: 6,36 + 20952: 7,36 + 20953: 7,36 + 20954: 8,36 + 20955: 8,36 + 20956: 9,36 + 20957: 9,36 + 20977: 5,38 + 20978: 10,38 + 20992: 6,39 + 21020: 10,41 + 21021: 9,42 + 21067: 16,38 + 21068: 17,38 + 21069: 17,38 + 21070: 18,38 + 21071: 18,38 + 21072: 16,34 + 21073: 17,34 + 21074: 18,34 + 21075: 18,34 + 21076: 19,34 + 21077: 19,34 + 21078: 14,34 + 21125: 10,48 + 21126: 11,48 + 21127: 11,48 + 21128: 12,48 + 21136: 10,55 + 21137: 17,55 + 21155: 17,55 + 21156: 19,52 + 21157: 20,52 + 21158: 20,52 + 21159: 21,52 + 21160: 21,52 + 21161: 21,52 + 21162: 21,52 + 21163: 22,52 + 21206: 16,46 + 21207: 17,46 + 21208: 19,46 + 21209: 20,46 + 21210: 21,46 + 21211: 21,46 + 21212: 22,46 + 21213: 22,46 + 21214: 16,44 + 21215: 17,44 + 21216: 19,44 + 21217: 20,44 + 21218: 21,44 + 21219: 22,44 + 21220: 22,44 + 21221: 16,42 + 21222: 17,42 + 21223: 19,42 + 21224: 20,42 + 21225: 21,42 + 21226: 22,42 + 21227: 22,42 + 21228: 22,40 + 21229: 23,40 + 21262: 19,48 + 21263: 20,48 + 21264: 21,48 + 21265: 22,48 + 21266: 19,50 + 21267: 21,50 + 21268: 21,50 + 21269: 22,50 + 21270: 20,50 + 21333: 26,48 + 21334: 26,48 + 21335: 27,48 + 21336: 29,48 + 21337: 29,48 + 21338: 30,48 + 21339: 31,48 + 21340: 32,48 + 21341: 32,48 + 21342: 34,48 + 21343: 34,48 + 21344: 35,48 + 21345: 36,48 + 21346: 37,48 + 21347: 37,48 + 21348: 37,48 + 21349: 37,48 + 21350: 37,48 + 21351: 38,48 + 21352: 38,48 + 21381: 13,28 + 21382: 14,28 + 21410: 14,25 + 21411: 15,25 + 21412: 16,25 + 21413: 13,26 + 21430: 16,32 + 21437: 15,33 + 21460: 25,34 + 21461: 25,34 + 21462: 26,34 + 21463: 27,34 + 21464: 28,34 + 21465: 28,34 + 21481: 26,38 + 21482: 27,38 + 21500: 28,39 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineS decals: - 2870: -25,47 - 2875: -26,47 - 2876: -30,46 - 2877: -29,46 - 2878: -28,46 - 2889: -33,46 - 2919: -32,54 - 2920: -30,54 - 2921: -28,51 - 18282: -26,52 + 2747: -25,47 + 2752: -26,47 + 2753: -30,46 + 2754: -29,46 + 2755: -28,46 + 2766: -33,46 + 2796: -32,54 + 2797: -30,54 + 2798: -28,51 + 17331: -26,52 - node: color: '#B18BDAFF' id: BrickTileWhiteLineS decals: - 5072: 20,26 - 5073: 23,27 - 5074: 25,26 - 5078: 20,33 - 5141: 39,28 - 5142: 40,28 - 5143: 41,28 - 5144: 42,28 - 11371: -23,-25 - 11372: -29,-34 - 11373: -28,-34 - 11374: -27,-34 - 11375: -26,-34 - 11376: -25,-34 - 11377: -24,-34 - 11378: -18,-34 - 11379: -17,-34 - 11380: -16,-34 - 11381: -15,-34 - 11382: -14,-34 - 11410: -14,-38 - 11411: -14,-38 - 11428: -14,-46 - 11429: -14,-46 - 11432: -15,-33 - 11433: -13,-33 - 11434: -13,-33 - 11475: -20,-36 - 11476: -20,-36 - 11477: -19,-36 - 11478: -19,-36 - 11479: -18,-36 - 11480: -18,-36 - 11481: -17,-36 - 11482: -17,-36 - 11483: -16,-36 - 11484: -16,-36 - 11496: -31,-36 - 11497: -30,-36 - 11498: -28,-36 - 11499: -28,-36 - 11500: -27,-36 - 11501: -26,-36 - 11502: -26,-36 - 11503: -25,-36 - 11504: -25,-36 - 11505: -23,-36 - 11506: -22,-36 - 11507: -22,-36 - 11516: -24,-33 - 11517: -23,-33 - 11518: -22,-33 - 11519: -22,-33 - 11543: -12,-24 - 11544: -11,-24 - 11545: -11,-24 - 11546: -9,-24 - 11547: -9,-24 - 11548: -8,-24 - 11549: -10,-24 - 11563: -15,-33 - 11564: -13,-33 - 11574: -9,-36 - 11575: -9,-36 - 11576: -8,-36 - 11577: -6,-36 - 11580: -6,-29 - 11710: -15,-37 - 11711: -14,-37 - 11712: -14,-37 - 11713: -13,-37 - 11826: -29,-33 - 12008: -23,-23 - 12105: -25,-38 - 12106: -24,-38 - 12120: -29,-38 - 12137: -15,-54 - 12138: -14,-54 - 12142: -15,-45 - 12143: -14,-45 - 12144: -13,-45 - 12159: -18,-60 - 12160: -17,-60 - 12161: -16,-60 - 12162: -15,-60 - 12163: -14,-60 - 12180: -16,-55 - 12191: -10,-53 - 12192: -9,-53 - 12193: -8,-53 - 12194: -7,-53 - 12195: -5,-53 - 12206: -10,-48 - 12218: -6,-45 - 12231: -20,-44 - 12232: -18,-44 - 12238: -20,-39 - 12239: -19,-39 - 12240: -18,-39 - 12543: -8,-31 - 12544: -7,-31 - 19957: 34,40 + 4922: 20,26 + 4923: 23,27 + 4924: 25,26 + 4928: 20,33 + 4991: 39,28 + 4992: 40,28 + 4993: 41,28 + 4994: 42,28 + 10868: -23,-25 + 10869: -29,-34 + 10870: -28,-34 + 10871: -27,-34 + 10872: -26,-34 + 10873: -25,-34 + 10874: -24,-34 + 10875: -18,-34 + 10876: -17,-34 + 10877: -16,-34 + 10878: -15,-34 + 10879: -14,-34 + 10907: -14,-38 + 10908: -14,-38 + 10925: -14,-46 + 10926: -14,-46 + 10929: -15,-33 + 10930: -13,-33 + 10931: -13,-33 + 10972: -20,-36 + 10973: -20,-36 + 10974: -19,-36 + 10975: -19,-36 + 10976: -18,-36 + 10977: -18,-36 + 10978: -17,-36 + 10979: -17,-36 + 10980: -16,-36 + 10981: -16,-36 + 10993: -31,-36 + 10994: -30,-36 + 10995: -28,-36 + 10996: -28,-36 + 10997: -27,-36 + 10998: -26,-36 + 10999: -26,-36 + 11000: -25,-36 + 11001: -25,-36 + 11002: -23,-36 + 11003: -22,-36 + 11004: -22,-36 + 11013: -24,-33 + 11014: -23,-33 + 11015: -22,-33 + 11016: -22,-33 + 11040: -12,-24 + 11041: -11,-24 + 11042: -11,-24 + 11043: -9,-24 + 11044: -9,-24 + 11045: -8,-24 + 11046: -10,-24 + 11060: -15,-33 + 11061: -13,-33 + 11071: -9,-36 + 11072: -9,-36 + 11073: -8,-36 + 11074: -6,-36 + 11077: -6,-29 + 11195: -15,-37 + 11196: -14,-37 + 11197: -14,-37 + 11198: -13,-37 + 11311: -29,-33 + 11346: -23,-23 + 11443: -25,-38 + 11444: -24,-38 + 11458: -29,-38 + 11475: -15,-54 + 11476: -14,-54 + 11480: -15,-45 + 11481: -14,-45 + 11482: -13,-45 + 11497: -18,-60 + 11498: -17,-60 + 11499: -16,-60 + 11500: -15,-60 + 11501: -14,-60 + 11518: -16,-55 + 11529: -10,-53 + 11530: -9,-53 + 11531: -8,-53 + 11532: -7,-53 + 11533: -5,-53 + 11544: -10,-48 + 11556: -6,-45 + 11569: -20,-44 + 11570: -18,-44 + 11576: -20,-39 + 11577: -19,-39 + 11578: -18,-39 + 11881: -8,-31 + 11882: -7,-31 + 18963: 34,40 - node: color: '#B240B4FF' id: BrickTileWhiteLineS decals: - 660: -24,-58 - 661: -23,-58 - 662: -22,-58 + 555: -24,-58 + 556: -23,-58 + 557: -22,-58 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineS decals: - 10744: 27,-54 - 10844: 39,-72 + 10581: 27,-54 + 10588: 39,-72 - node: color: '#D381C9FF' id: BrickTileWhiteLineS decals: - 22567: -7,-28 - 22568: -5,-28 - 22579: -14,-28 - 22584: -20,-36 - 22585: -19,-36 - 22586: -18,-36 - 22587: -18,-36 - 22588: -17,-36 - 22589: -17,-36 - 22590: -17,-36 - 22591: -16,-36 - 22592: -16,-36 - 22597: -30,-36 - 22598: -28,-36 - 22599: -28,-36 - 22600: -27,-36 - 22601: -26,-36 - 22602: -25,-36 - 22603: -25,-36 - 22604: -23,-36 - 22605: -22,-36 - 22630: -15,-33 - 22631: -13,-33 - 22651: -15,-37 - 22652: -14,-37 - 22653: -13,-37 - 22654: -13,-37 - 22676: -15,-54 - 22677: -14,-54 - 22688: -15,-45 - 22689: -14,-45 - 22690: -14,-45 - 22691: -13,-45 - 22692: -13,-45 - 22717: -20,-39 - 22718: -19,-39 - 22719: -18,-39 - 22720: -18,-39 - 22732: -20,-44 - 22733: -18,-44 - 22797: -23,-23 - 22803: -29,-33 - 22816: -24,-33 - 22817: -23,-33 - 22818: -22,-33 - 22819: -23,-25 - 22841: -29,-34 - 22842: -29,-34 - 22843: -28,-34 - 22844: -27,-34 - 22845: -27,-34 - 22846: -26,-34 - 22847: -25,-34 - 22848: -24,-34 - 22849: -24,-34 - 22850: -18,-34 - 22851: -17,-34 - 22852: -16,-34 - 22853: -15,-34 - 22854: -14,-34 - 22855: -14,-34 - 22910: -6,-29 - 22918: -9,-36 - 22919: -8,-36 - 22920: -6,-36 - 22956: -14,-38 - 22957: -14,-46 - 22964: -6,-45 - 22965: -10,-53 - 22966: -9,-53 - 22967: -8,-53 - 22968: -8,-53 - 22969: -7,-53 - 22970: -5,-53 - 22987: -6,-45 - 22993: -10,-48 - 23021: -16,-55 - 23022: -18,-60 - 23023: -17,-60 - 23024: -16,-60 - 23025: -16,-60 - 23026: -15,-60 - 23027: -15,-60 - 23028: -14,-60 - 23029: -14,-60 - 24383: -28,-30 - 24384: -29,-28 - 24388: -30,-26 - 24389: -29,-26 - 24390: -28,-26 + 21573: -7,-28 + 21574: -5,-28 + 21585: -14,-28 + 21590: -20,-36 + 21591: -19,-36 + 21592: -18,-36 + 21593: -18,-36 + 21594: -17,-36 + 21595: -17,-36 + 21596: -17,-36 + 21597: -16,-36 + 21598: -16,-36 + 21603: -30,-36 + 21604: -28,-36 + 21605: -28,-36 + 21606: -27,-36 + 21607: -26,-36 + 21608: -25,-36 + 21609: -25,-36 + 21610: -23,-36 + 21611: -22,-36 + 21636: -15,-33 + 21637: -13,-33 + 21657: -15,-37 + 21658: -14,-37 + 21659: -13,-37 + 21660: -13,-37 + 21682: -15,-54 + 21683: -14,-54 + 21694: -15,-45 + 21695: -14,-45 + 21696: -14,-45 + 21697: -13,-45 + 21698: -13,-45 + 21723: -20,-39 + 21724: -19,-39 + 21725: -18,-39 + 21726: -18,-39 + 21738: -20,-44 + 21739: -18,-44 + 21803: -23,-23 + 21809: -29,-33 + 21822: -24,-33 + 21823: -23,-33 + 21824: -22,-33 + 21825: -23,-25 + 21847: -29,-34 + 21848: -29,-34 + 21849: -28,-34 + 21850: -27,-34 + 21851: -27,-34 + 21852: -26,-34 + 21853: -25,-34 + 21854: -24,-34 + 21855: -24,-34 + 21856: -18,-34 + 21857: -17,-34 + 21858: -16,-34 + 21859: -15,-34 + 21860: -14,-34 + 21861: -14,-34 + 21916: -6,-29 + 21924: -9,-36 + 21925: -8,-36 + 21926: -6,-36 + 21962: -14,-38 + 21963: -14,-46 + 21970: -6,-45 + 21971: -10,-53 + 21972: -9,-53 + 21973: -8,-53 + 21974: -8,-53 + 21975: -7,-53 + 21976: -5,-53 + 21993: -6,-45 + 21999: -10,-48 + 22027: -16,-55 + 22028: -18,-60 + 22029: -17,-60 + 22030: -16,-60 + 22031: -16,-60 + 22032: -15,-60 + 22033: -15,-60 + 22034: -14,-60 + 22035: -14,-60 + 23387: -28,-30 + 23388: -29,-28 + 23392: -30,-26 + 23393: -29,-26 + 23394: -28,-26 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineS decals: - 7611: 61,-2 - 7612: 65,-2 - 19148: 69,12 - 19166: 61,-6 - 19167: 62,-6 + 7459: 61,-2 + 7460: 65,-2 + 18192: 69,12 + 18210: 61,-6 + 18211: 62,-6 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineS decals: - 2697: -11,52 - 3809: 11,66 + 2574: -11,52 + 3676: 11,66 - node: color: '#DAA58BFF' id: BrickTileWhiteLineS decals: - 4374: 3,26 - 4375: 9,26 - 4389: 4,32 - 4402: 3,33 - 4405: 9,32 - 4416: 6,26 - 4423: 4,30 - 4424: 6,30 - 4425: 5,30 - 4426: 7,30 - 4427: 8,30 - 4472: 13,26 - 4476: 15,33 - 4477: 16,32 - 4491: 13,28 - 4492: 14,28 - 4518: 5,38 - 4519: 10,38 - 4524: 6,39 - 4551: 10,41 - 4573: 16,34 - 4574: 17,34 - 4575: 18,34 - 4576: 19,34 - 4577: 14,34 - 4618: 20,33 - 4619: 21,33 - 4635: 20,26 - 4638: 23,27 - 4643: 25,26 - 4644: 26,26 - 4680: 20,31 - 4681: 26,31 - 4690: 22,31 - 4691: 23,31 - 4696: 22,30 - 4699: 20,30 - 4700: 26,30 - 4715: 23,29 - 4730: 25,34 - 4731: 26,34 - 4732: 27,34 - 4733: 28,34 - 4750: 26,38 - 4751: 27,38 - 4759: 16,38 - 4760: 17,38 - 4791: 28,39 - 4792: 5,33 - 4793: 6,33 - 4794: 7,33 - 4795: 8,33 - 4796: 5,36 - 4797: 6,36 - 4798: 7,36 - 4799: 8,36 - 4800: 4,36 - 4801: 9,36 - 4818: 5,38 - 4819: 22,40 - 4820: 23,40 - 4835: 26,48 - 4836: 28,48 - 4837: 27,48 - 4838: 28,48 - 4839: 29,48 - 4840: 30,48 - 4841: 31,48 - 4842: 32,48 - 4843: 33,48 - 4844: 34,48 - 4845: 35,48 - 4846: 36,48 - 4847: 37,48 - 4848: 39,48 - 4849: 38,48 - 4867: 34,48 - 4868: 35,48 - 4869: 36,48 - 4870: 37,48 - 4871: 38,48 - 4872: 33,48 - 4873: 32,48 - 4874: 31,48 - 4875: 30,48 - 4876: 29,48 - 4877: 28,48 - 4878: 27,48 - 4879: 27,48 - 4880: 26,48 - 4901: 10,55 - 4914: 10,48 - 4915: 11,48 - 4916: 11,48 - 4917: 12,48 - 4928: 17,55 - 4946: 19,52 - 4947: 20,52 - 4948: 21,52 - 4949: 22,52 - 4950: 20,50 - 4951: 21,50 - 4952: 22,50 - 4953: 19,48 - 4954: 20,48 - 4955: 21,48 - 4956: 22,48 - 4957: 19,46 - 4958: 20,46 - 4959: 21,46 - 4960: 22,46 - 4961: 16,46 - 4962: 17,46 - 4963: 16,44 - 4964: 17,44 - 4965: 16,42 - 4966: 17,42 - 4967: 19,42 - 4968: 20,42 - 4969: 21,42 - 4970: 22,42 - 4971: 22,44 - 4972: 21,44 - 4973: 19,44 - 4974: 20,44 - 5028: 19,50 - 5155: 41,28 - 5156: 39,28 - 11282: -11,-79 - 14336: -58,9 - 14337: -57,9 - 14338: -56,9 - 14339: -55,9 - 19823: 24,30 - 19827: 24,31 + 4224: 3,26 + 4225: 9,26 + 4239: 4,32 + 4252: 3,33 + 4255: 9,32 + 4266: 6,26 + 4273: 4,30 + 4274: 6,30 + 4275: 5,30 + 4276: 7,30 + 4277: 8,30 + 4322: 13,26 + 4326: 15,33 + 4327: 16,32 + 4341: 13,28 + 4342: 14,28 + 4368: 5,38 + 4369: 10,38 + 4374: 6,39 + 4401: 10,41 + 4423: 16,34 + 4424: 17,34 + 4425: 18,34 + 4426: 19,34 + 4427: 14,34 + 4468: 20,33 + 4469: 21,33 + 4485: 20,26 + 4488: 23,27 + 4493: 25,26 + 4494: 26,26 + 4530: 20,31 + 4531: 26,31 + 4540: 22,31 + 4541: 23,31 + 4546: 22,30 + 4549: 20,30 + 4550: 26,30 + 4565: 23,29 + 4580: 25,34 + 4581: 26,34 + 4582: 27,34 + 4583: 28,34 + 4600: 26,38 + 4601: 27,38 + 4609: 16,38 + 4610: 17,38 + 4641: 28,39 + 4642: 5,33 + 4643: 6,33 + 4644: 7,33 + 4645: 8,33 + 4646: 5,36 + 4647: 6,36 + 4648: 7,36 + 4649: 8,36 + 4650: 4,36 + 4651: 9,36 + 4668: 5,38 + 4669: 22,40 + 4670: 23,40 + 4685: 26,48 + 4686: 28,48 + 4687: 27,48 + 4688: 28,48 + 4689: 29,48 + 4690: 30,48 + 4691: 31,48 + 4692: 32,48 + 4693: 33,48 + 4694: 34,48 + 4695: 35,48 + 4696: 36,48 + 4697: 37,48 + 4698: 39,48 + 4699: 38,48 + 4717: 34,48 + 4718: 35,48 + 4719: 36,48 + 4720: 37,48 + 4721: 38,48 + 4722: 33,48 + 4723: 32,48 + 4724: 31,48 + 4725: 30,48 + 4726: 29,48 + 4727: 28,48 + 4728: 27,48 + 4729: 27,48 + 4730: 26,48 + 4751: 10,55 + 4764: 10,48 + 4765: 11,48 + 4766: 11,48 + 4767: 12,48 + 4778: 17,55 + 4796: 19,52 + 4797: 20,52 + 4798: 21,52 + 4799: 22,52 + 4800: 20,50 + 4801: 21,50 + 4802: 22,50 + 4803: 19,48 + 4804: 20,48 + 4805: 21,48 + 4806: 22,48 + 4807: 19,46 + 4808: 20,46 + 4809: 21,46 + 4810: 22,46 + 4811: 16,46 + 4812: 17,46 + 4813: 16,44 + 4814: 17,44 + 4815: 16,42 + 4816: 17,42 + 4817: 19,42 + 4818: 20,42 + 4819: 21,42 + 4820: 22,42 + 4821: 22,44 + 4822: 21,44 + 4823: 19,44 + 4824: 20,44 + 4878: 19,50 + 5005: 41,28 + 5006: 39,28 + 10779: -11,-79 + 13392: -58,9 + 13393: -57,9 + 13394: -56,9 + 13395: -55,9 + 18829: 24,30 + 18833: 24,31 - node: color: '#DABC8BFF' id: BrickTileWhiteLineS decals: - 4010: -39,52 - 4011: -38,52 - 4014: -39,55 - 9539: 4,-36 - 9540: 6,-36 - 9541: 7,-36 - 9542: 8,-36 - 9553: 5,-29 - 9554: 5,-31 - 9555: 6,-31 + 3877: -39,52 + 3878: -38,52 + 3881: -39,55 + 9377: 4,-36 + 9378: 6,-36 + 9379: 7,-36 + 9380: 8,-36 + 9391: 5,-29 + 9392: 5,-31 + 9393: 6,-31 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 16797: -53,3 - 16798: -52,3 - 16805: -53,7 - 16806: -52,7 - 16811: -53,3 - 16812: -52,3 - 16815: -49,3 - 16828: -50,-4 - 16829: -61,1 - 16830: -60,1 - 16836: -60,-4 - 16837: -59,-4 - 16838: -57,-4 - 16864: -50,9 - 16865: -49,11 - 16866: -48,11 - 16873: -56,9 - 16874: -56,9 - 16875: -56,9 - 16876: -57,9 - 16877: -58,9 - 16878: -58,9 - 16879: -59,9 - 16900: -58,-5 - 16903: -58,-11 - 16928: -60,-10 - 16929: -59,-10 - 16932: -58,-11 - 16941: -55,-9 - 16957: -53,-18 - 16958: -55,-18 - 16959: -57,-18 - 16960: -58,-18 - 16964: -61,-17 - 16979: -60,-15 - 16980: -59,-15 - 16981: -58,-15 - 16982: -57,-15 - 16983: -56,-15 - 17005: -49,-17 - 17006: -48,-17 - 17102: -58,16 - 17118: -65,14 - 17119: -64,14 - 17120: -63,14 - 17121: -62,14 - 17122: -62,14 - 17123: -62,14 - 17124: -61,14 - 17144: -75,14 - 17145: -74,14 - 17146: -73,14 - 17147: -71,14 - 17148: -70,14 - 17149: -69,14 - 17220: -59,17 - 17221: -60,17 - 17267: -48,-10 - 17268: -47,-10 - 17285: -64,-8 - 17286: -66,-8 - 17287: -67,-8 - 17288: -65,-8 - 17289: -68,-8 - 17290: -73,-8 - 17291: -72,-8 - 17316: -71,-5 - 17317: -69,-5 - 17331: -76,-10 - 17344: -11,-79 - 17348: 10,89 - 17349: 10,91 - 17352: 5,91 - 17365: 10,89 - 17408: 11,74 - 17460: -64,5 - 17461: -63,5 - 17532: -67,-4 - 17533: -68,-4 - 17534: -70,-4 - 17535: -72,-4 - 17536: -73,-4 - 17553: -71,-5 - 17554: -69,-5 - 17559: -73,3 - 17588: -73,10 - 17589: -71,10 - 17595: -72,13 - 17604: -82,14 - 17605: -81,14 - 17606: -80,14 - 17646: -77,8 - 17663: -77,12 - 17670: -77,2 - 17678: -77,-2 - 17719: -71,-9 - 17720: -70,-9 - 17721: -69,-9 - 17722: -72,-13 - 17723: -71,-13 - 17724: -70,-13 - 17725: -69,-13 - 17726: -68,-13 - 18098: -56,-4 - 18145: -55,17 - 18146: -54,17 - 18147: -54,17 - 18148: -52,17 - 18149: -53,17 + 15846: -53,3 + 15847: -52,3 + 15854: -53,7 + 15855: -52,7 + 15860: -53,3 + 15861: -52,3 + 15864: -49,3 + 15877: -50,-4 + 15878: -61,1 + 15879: -60,1 + 15885: -60,-4 + 15886: -59,-4 + 15887: -57,-4 + 15913: -50,9 + 15914: -49,11 + 15915: -48,11 + 15922: -56,9 + 15923: -56,9 + 15924: -56,9 + 15925: -57,9 + 15926: -58,9 + 15927: -58,9 + 15928: -59,9 + 15949: -58,-5 + 15952: -58,-11 + 15977: -60,-10 + 15978: -59,-10 + 15981: -58,-11 + 15990: -55,-9 + 16006: -53,-18 + 16007: -55,-18 + 16008: -57,-18 + 16009: -58,-18 + 16013: -61,-17 + 16028: -60,-15 + 16029: -59,-15 + 16030: -58,-15 + 16031: -57,-15 + 16032: -56,-15 + 16054: -49,-17 + 16055: -48,-17 + 16151: -58,16 + 16167: -65,14 + 16168: -64,14 + 16169: -63,14 + 16170: -62,14 + 16171: -62,14 + 16172: -62,14 + 16173: -61,14 + 16193: -75,14 + 16194: -74,14 + 16195: -73,14 + 16196: -71,14 + 16197: -70,14 + 16198: -69,14 + 16269: -59,17 + 16270: -60,17 + 16316: -48,-10 + 16317: -47,-10 + 16334: -64,-8 + 16335: -66,-8 + 16336: -67,-8 + 16337: -65,-8 + 16338: -68,-8 + 16339: -73,-8 + 16340: -72,-8 + 16365: -71,-5 + 16366: -69,-5 + 16380: -76,-10 + 16393: -11,-79 + 16397: 10,89 + 16398: 10,91 + 16401: 5,91 + 16414: 10,89 + 16457: 11,74 + 16509: -64,5 + 16510: -63,5 + 16581: -67,-4 + 16582: -68,-4 + 16583: -70,-4 + 16584: -72,-4 + 16585: -73,-4 + 16602: -71,-5 + 16603: -69,-5 + 16608: -73,3 + 16637: -73,10 + 16638: -71,10 + 16644: -72,13 + 16653: -82,14 + 16654: -81,14 + 16655: -80,14 + 16695: -77,8 + 16712: -77,12 + 16719: -77,2 + 16727: -77,-2 + 16768: -71,-9 + 16769: -70,-9 + 16770: -69,-9 + 16771: -72,-13 + 16772: -71,-13 + 16773: -70,-13 + 16774: -69,-13 + 16775: -68,-13 + 17147: -56,-4 + 17194: -55,17 + 17195: -54,17 + 17196: -54,17 + 17197: -52,17 + 17198: -53,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 860: 70,-47 - 861: 71,-47 - 862: 72,-47 - 863: 74,-47 - 1179: 45,-17 - 1180: 48,-17 - 2063: -21,52 - 2064: -17,52 - 2065: -19,53 - 2071: -19,49 - 2134: -19,33 - 2135: -19,30 - 2136: -19,37 - 2139: -21,35 - 2269: -23,42 - 2368: -29,30 - 2369: -30,30 - 2409: -30,39 - 2698: -10,52 - 2773: -11,50 - 2774: -10,50 - 2775: -6,50 - 2776: -5,50 - 2812: -6,32 - 3018: -13,58 - 3019: -12,58 - 3020: -11,58 - 3028: -19,65 - 3083: -13,69 - 3084: -12,69 - 3085: -11,69 - 3094: -5,65 - 3104: -6,69 - 3105: -6,69 - 3106: -4,69 - 3107: -5,69 - 3111: -6,58 - 3112: -5,58 - 3113: -4,58 - 3120: -20,58 - 3121: -19,58 - 3122: -18,58 - 3129: -20,69 - 3130: -19,69 - 3131: -18,69 - 3228: -12,76 - 3242: -12,96 - 3243: -12,83 - 3254: -12,89 - 3280: -30,76 - 3281: -30,83 - 3282: -30,89 - 3283: -30,96 - 3304: -31,69 - 3305: -30,69 - 3306: -29,69 - 3526: 0,69 - 3527: 1,69 - 3528: 2,69 - 3529: 5,69 - 3530: 6,69 - 3531: 7,69 - 3616: 6,76 - 3617: 6,76 - 3678: 6,83 - 3782: 0,58 - 3783: 1,58 - 3784: 2,58 - 3834: 20,69 - 5187: 17,13 - 5188: 17,20 - 5197: 17,-1 - 5198: 17,6 - 5213: -26,69 - 5214: -25,69 - 5215: -24,69 - 5486: -27,6 - 5487: -25,6 - 5488: -24,6 - 5489: -23,6 - 5490: -33,6 - 5491: -32,6 - 5492: -32,6 - 5493: -33,6 - 5494: -31,6 - 5495: -38,6 - 5496: -37,6 - 5497: -37,6 - 5498: -27,6 - 5499: -26,6 - 5500: -36,6 - 5501: -36,6 - 5568: -33,26 - 5569: -32,26 - 5570: -34,26 - 5579: -31,29 - 6222: -19,-11 - 6308: 17,-11 - 6343: -1,-17 - 6344: 0,-17 - 6345: 1,-17 - 6630: -31,-3 - 6631: -30,-3 - 6632: -28,-3 - 6633: -27,-3 - 6634: -26,-3 - 6635: -25,-3 - 6636: -23,-3 - 6637: -22,-3 - 6641: -33,3 - 6642: -32,3 - 6697: -24,-1 - 6713: -34,-16 - 6714: -33,-16 - 6715: -32,-16 - 6716: -31,-16 - 6717: -31,-16 - 6718: -30,-16 - 6727: -33,-10 - 6728: -32,-10 - 6732: -29,-16 - 6742: -34,-11 - 6743: -33,-11 - 6744: -32,-11 - 6745: -31,-11 - 6963: -25,-18 - 6988: -7,-19 - 6989: -6,-19 - 6990: -5,-19 - 6991: -12,-19 - 6992: -13,-19 - 6993: -13,-19 - 6994: -15,-19 - 6995: -14,-19 - 6996: 3,-19 - 6997: 4,-19 - 6998: 5,-19 - 6999: 5,-19 - 7000: 6,-19 - 7001: 10,-19 - 7002: 11,-19 - 7003: 12,-19 - 7004: 13,-19 - 7126: 21,6 - 7127: 23,6 - 7128: 24,6 - 7129: 22,6 - 7191: 28,6 - 7192: 29,6 - 7193: 30,6 - 7194: 31,6 - 8045: 58,-24 - 8046: 59,-24 - 8047: 60,-24 - 8048: 58,-11 - 8049: 59,-11 - 8050: 60,-11 - 8191: 39,-7 - 8192: 40,-7 - 8193: 40,-7 - 8216: 21,-10 - 8217: 22,-10 - 8218: 23,-10 - 8219: 24,-10 - 8220: 28,-10 - 8221: 29,-10 - 8222: 29,-10 - 8223: 30,-10 - 8224: 30,-10 - 8295: 36,-8 - 8296: 36,-8 - 8297: 37,-8 - 8298: 37,-8 - 8299: 38,-8 - 8300: 39,-8 - 8301: 39,-8 - 8302: 35,-8 - 8303: 35,-8 - 8386: 46,-13 - 8387: 46,-13 - 8437: 44,-19 - 8438: 45,-19 - 8439: 46,-19 - 8440: 47,-19 - 8441: 49,-19 - 8442: 50,-19 - 8443: 52,-19 - 8444: 51,-19 - 8666: -8,-75 - 8667: -7,-75 - 8668: -6,-75 - 8669: -3,-75 - 8670: -2,-75 - 8671: -1,-75 - 8672: -2,-79 - 8673: -1,-79 - 8674: -7,-79 - 8675: -8,-79 - 8738: 6,-24 - 8739: 7,-24 - 8740: 8,-24 - 8741: 9,-24 - 8742: 10,-24 - 8763: -11,-24 - 8764: -10,-24 - 8765: -9,-24 - 8766: -8,-24 - 8831: -1,-23 - 8869: -1,-30 - 8878: -12,-24 - 8913: -14,-28 - 8914: -14,-22 - 8915: -13,-22 - 8916: -7,-22 - 8917: -6,-22 - 8949: -7,-28 - 8950: -5,-28 - 9062: 4,-22 - 9063: 5,-22 - 9064: 11,-22 - 9065: 12,-22 - 9066: 12,-28 - 9067: 4,-28 - 9068: 3,-28 - 9391: -1,-51 - 9392: -1,-43 - 9393: -1,-38 - 9404: -1,-58 - 9405: -1,-58 - 9439: -3,-71 - 9450: 73,-52 - 10599: 73,-48 - 10600: 73,-41 - 12657: -42,23 - 14910: -16,24 - 14911: -15,24 - 14912: -14,24 - 14913: -14,24 - 14914: -13,24 - 14915: -6,24 - 14916: -5,24 - 14917: -4,24 - 14918: -3,24 - 14919: 1,24 - 14920: 2,24 - 14921: 3,24 - 14922: 4,24 - 14923: 11,24 - 14924: 12,24 - 14925: 13,24 - 14926: 14,24 - 15128: -8,-19 - 15357: -42,12 - 15358: -42,18 - 15359: -42,23 - 15508: 92,-5 - 15509: 93,-5 - 15510: 93,-5 - 15511: 94,-5 - 18680: -15,-8 - 18681: -14,-8 - 18682: -13,-8 - 18683: -12,-8 - 18684: -9,-8 - 18685: -8,-8 - 18686: -7,-8 - 18687: -6,-8 - 18688: -3,-8 - 18689: -2,-8 - 18690: -1,-8 - 18691: 1,-8 - 18692: 0,-8 - 18693: 4,-8 - 18694: 5,-8 - 18695: 6,-8 - 18696: 7,-8 - 18697: 10,-8 - 18698: 11,-8 - 18699: 12,-8 - 18700: 13,-8 - 19629: 35,-12 - 19630: 36,-12 - 19631: 37,-12 - 19632: 38,-12 - 19633: 39,-12 - 19634: 35,-9 - 19635: 36,-9 - 19636: 37,-9 - 19637: 38,-9 - 19638: 39,-9 - 20168: -19,20 - 20169: -19,13 - 20170: -19,6 - 20171: -19,-1 - 24769: 41,-68 + 747: 70,-47 + 748: 71,-47 + 749: 72,-47 + 750: 74,-47 + 1061: 45,-17 + 1062: 48,-17 + 1943: -21,52 + 1944: -17,52 + 1945: -19,53 + 1951: -19,49 + 2013: -19,33 + 2014: -19,30 + 2015: -19,37 + 2018: -21,35 + 2147: -23,42 + 2245: -29,30 + 2246: -30,30 + 2286: -30,39 + 2575: -10,52 + 2650: -11,50 + 2651: -10,50 + 2652: -6,50 + 2653: -5,50 + 2689: -6,32 + 2895: -13,58 + 2896: -12,58 + 2897: -11,58 + 2905: -19,65 + 2960: -13,69 + 2961: -12,69 + 2962: -11,69 + 2970: -5,65 + 2980: -6,69 + 2981: -6,69 + 2982: -4,69 + 2983: -5,69 + 2987: -6,58 + 2988: -5,58 + 2989: -4,58 + 2996: -20,58 + 2997: -19,58 + 2998: -18,58 + 3005: -20,69 + 3006: -19,69 + 3007: -18,69 + 3102: -12,76 + 3115: -12,96 + 3116: -12,83 + 3127: -12,89 + 3153: -30,76 + 3154: -30,83 + 3155: -30,89 + 3156: -30,96 + 3177: -31,69 + 3178: -30,69 + 3179: -29,69 + 3393: 0,69 + 3394: 1,69 + 3395: 2,69 + 3396: 5,69 + 3397: 6,69 + 3398: 7,69 + 3483: 6,76 + 3484: 6,76 + 3545: 6,83 + 3649: 0,58 + 3650: 1,58 + 3651: 2,58 + 3701: 20,69 + 5037: 17,13 + 5038: 17,20 + 5047: 17,-1 + 5048: 17,6 + 5063: -26,69 + 5064: -25,69 + 5065: -24,69 + 5334: -27,6 + 5335: -25,6 + 5336: -24,6 + 5337: -23,6 + 5338: -33,6 + 5339: -32,6 + 5340: -32,6 + 5341: -33,6 + 5342: -31,6 + 5343: -38,6 + 5344: -37,6 + 5345: -37,6 + 5346: -27,6 + 5347: -26,6 + 5348: -36,6 + 5349: -36,6 + 5416: -33,26 + 5417: -32,26 + 5418: -34,26 + 5427: -31,29 + 6070: -19,-11 + 6156: 17,-11 + 6191: -1,-17 + 6192: 0,-17 + 6193: 1,-17 + 6478: -31,-3 + 6479: -30,-3 + 6480: -28,-3 + 6481: -27,-3 + 6482: -26,-3 + 6483: -25,-3 + 6484: -23,-3 + 6485: -22,-3 + 6489: -33,3 + 6490: -32,3 + 6545: -24,-1 + 6561: -34,-16 + 6562: -33,-16 + 6563: -32,-16 + 6564: -31,-16 + 6565: -31,-16 + 6566: -30,-16 + 6575: -33,-10 + 6576: -32,-10 + 6580: -29,-16 + 6590: -34,-11 + 6591: -33,-11 + 6592: -32,-11 + 6593: -31,-11 + 6811: -25,-18 + 6836: -7,-19 + 6837: -6,-19 + 6838: -5,-19 + 6839: -12,-19 + 6840: -13,-19 + 6841: -13,-19 + 6842: -15,-19 + 6843: -14,-19 + 6844: 3,-19 + 6845: 4,-19 + 6846: 5,-19 + 6847: 5,-19 + 6848: 6,-19 + 6849: 10,-19 + 6850: 11,-19 + 6851: 12,-19 + 6852: 13,-19 + 6974: 21,6 + 6975: 23,6 + 6976: 24,6 + 6977: 22,6 + 7039: 28,6 + 7040: 29,6 + 7041: 30,6 + 7042: 31,6 + 7891: 58,-24 + 7892: 59,-24 + 7893: 60,-24 + 7894: 58,-11 + 7895: 59,-11 + 7896: 60,-11 + 8037: 39,-7 + 8038: 40,-7 + 8039: 40,-7 + 8062: 21,-10 + 8063: 22,-10 + 8064: 23,-10 + 8065: 24,-10 + 8066: 28,-10 + 8067: 29,-10 + 8068: 29,-10 + 8069: 30,-10 + 8070: 30,-10 + 8141: 36,-8 + 8142: 36,-8 + 8143: 37,-8 + 8144: 37,-8 + 8145: 38,-8 + 8146: 39,-8 + 8147: 39,-8 + 8148: 35,-8 + 8149: 35,-8 + 8232: 46,-13 + 8233: 46,-13 + 8283: 44,-19 + 8284: 45,-19 + 8285: 46,-19 + 8286: 47,-19 + 8287: 49,-19 + 8288: 50,-19 + 8289: 52,-19 + 8290: 51,-19 + 8504: -8,-75 + 8505: -7,-75 + 8506: -6,-75 + 8507: -3,-75 + 8508: -2,-75 + 8509: -1,-75 + 8510: -2,-79 + 8511: -1,-79 + 8512: -7,-79 + 8513: -8,-79 + 8576: 6,-24 + 8577: 7,-24 + 8578: 8,-24 + 8579: 9,-24 + 8580: 10,-24 + 8601: -11,-24 + 8602: -10,-24 + 8603: -9,-24 + 8604: -8,-24 + 8669: -1,-23 + 8707: -1,-30 + 8716: -12,-24 + 8751: -14,-28 + 8752: -14,-22 + 8753: -13,-22 + 8754: -7,-22 + 8755: -6,-22 + 8787: -7,-28 + 8788: -5,-28 + 8900: 4,-22 + 8901: 5,-22 + 8902: 11,-22 + 8903: 12,-22 + 8904: 12,-28 + 8905: 4,-28 + 8906: 3,-28 + 9229: -1,-51 + 9230: -1,-43 + 9231: -1,-38 + 9242: -1,-58 + 9243: -1,-58 + 9277: -3,-71 + 9288: 73,-52 + 10437: 73,-48 + 10438: 73,-41 + 11975: -42,23 + 13966: -16,24 + 13967: -15,24 + 13968: -14,24 + 13969: -14,24 + 13970: -13,24 + 13971: -6,24 + 13972: -5,24 + 13973: -4,24 + 13974: -3,24 + 13975: 1,24 + 13976: 2,24 + 13977: 3,24 + 13978: 4,24 + 13979: 11,24 + 13980: 12,24 + 13981: 13,24 + 13982: 14,24 + 14184: -8,-19 + 14406: -42,12 + 14407: -42,18 + 14408: -42,23 + 14557: 92,-5 + 14558: 93,-5 + 14559: 93,-5 + 14560: 94,-5 + 17724: -15,-8 + 17725: -14,-8 + 17726: -13,-8 + 17727: -12,-8 + 17728: -9,-8 + 17729: -8,-8 + 17730: -7,-8 + 17731: -6,-8 + 17732: -3,-8 + 17733: -2,-8 + 17734: -1,-8 + 17735: 1,-8 + 17736: 0,-8 + 17737: 4,-8 + 17738: 5,-8 + 17739: 6,-8 + 17740: 7,-8 + 17741: 10,-8 + 17742: 11,-8 + 17743: 12,-8 + 17744: 13,-8 + 18673: 35,-12 + 18674: 36,-12 + 18675: 37,-12 + 18676: 38,-12 + 18677: 39,-12 + 18678: 35,-9 + 18679: 36,-9 + 18680: 37,-9 + 18681: 38,-9 + 18682: 39,-9 + 19174: -19,20 + 19175: -19,13 + 19176: -19,6 + 19177: -19,-1 + 23768: 41,-68 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 4097: -19,13 - 4098: -19,20 + 3947: -19,13 + 3948: -19,20 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineW decals: - 875: 72,-45 + 762: 72,-45 - node: color: '#334E6DFF' id: BrickTileWhiteLineW decals: - 21823: -17,14 - 21824: -17,15 - 22519: 16,-5 - 22520: 16,-3 + 20829: -17,14 + 20830: -17,15 + 21525: 16,-5 + 21526: 16,-3 - node: color: '#3EB388FF' id: BrickTileWhiteLineW decals: - 21567: -57,36 - 21572: -56,33 - 21573: -56,34 - 21579: -55,38 - 21604: -45,23 - 21605: -50,22 - 21606: -54,22 - 21607: -54,21 - 21608: -54,20 - 21642: -49,20 - 21643: -49,19 - 21652: -51,37 - 21653: -50,39 - 21654: -50,40 - 21664: -46,41 - 21694: -60,49 - 21695: -60,47 - 21696: -60,46 - 21697: -60,45 - 21698: -60,45 - 21747: -47,46 - 21748: -47,47 - 21749: -47,48 - 21750: -47,49 - 21751: -47,50 - 21752: -47,51 - 21753: -47,52 - 21754: -47,53 - 21755: -47,53 - 21756: -47,54 - 21757: -47,54 - 21758: -47,54 - 21759: -47,54 - 21760: -47,54 - 21761: -46,57 - 21768: -43,51 - 21769: -45,51 - 21782: -60,51 - 21783: -60,52 - 21784: -60,53 - 21785: -60,53 - 21812: -43,22 - 21813: -44,19 - 21814: -44,17 + 20573: -57,36 + 20578: -56,33 + 20579: -56,34 + 20585: -55,38 + 20610: -45,23 + 20611: -50,22 + 20612: -54,22 + 20613: -54,21 + 20614: -54,20 + 20648: -49,20 + 20649: -49,19 + 20658: -51,37 + 20659: -50,39 + 20660: -50,40 + 20670: -46,41 + 20700: -60,49 + 20701: -60,47 + 20702: -60,46 + 20703: -60,45 + 20704: -60,45 + 20753: -47,46 + 20754: -47,47 + 20755: -47,48 + 20756: -47,49 + 20757: -47,50 + 20758: -47,51 + 20759: -47,52 + 20760: -47,53 + 20761: -47,53 + 20762: -47,54 + 20763: -47,54 + 20764: -47,54 + 20765: -47,54 + 20766: -47,54 + 20767: -46,57 + 20774: -43,51 + 20775: -45,51 + 20788: -60,51 + 20789: -60,52 + 20790: -60,53 + 20791: -60,53 + 20818: -43,22 + 20819: -44,19 + 20820: -44,17 - node: color: '#439909FF' id: BrickTileWhiteLineW decals: - 24639: 26,-57 - 24641: 29,-56 - 24650: 26,-61 - 24652: 29,-61 - 24655: 33,-61 - 24663: 33,-61 - 24675: 42,-62 - 24676: 43,-63 - 24697: 34,-62 - 24698: 34,-63 - 24699: 34,-64 - 24702: 37,-62 - 24708: 38,-61 - 24715: 34,-71 - 24716: 34,-70 - 24717: 34,-69 - 24724: 34,-67 - 24728: 33,-68 - 24747: 26,-69 - 24748: 37,-70 + 23638: 26,-57 + 23640: 29,-56 + 23649: 26,-61 + 23651: 29,-61 + 23654: 33,-61 + 23662: 33,-61 + 23674: 42,-62 + 23675: 43,-63 + 23696: 34,-62 + 23697: 34,-63 + 23698: 34,-64 + 23701: 37,-62 + 23707: 38,-61 + 23714: 34,-71 + 23715: 34,-70 + 23716: 34,-69 + 23723: 34,-67 + 23727: 33,-68 + 23746: 26,-69 + 23747: 37,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteLineW decals: - 23074: 16,-30 - 23075: 16,-29 - 23076: 16,-28 - 23077: 16,-27 - 23098: 16,-32 - 23099: 16,-33 - 23100: 16,-34 - 23101: 16,-36 - 23104: 19,-34 - 23111: 19,-28 - 23112: 19,-27 - 23116: 19,-36 - 23117: 19,-35 - 23118: 19,-34 - 23124: 15,-35 - 23130: 18,-31 - 23131: 18,-32 - 23132: 18,-33 - 23133: 18,-34 - 23161: 10,-35 - 23165: 15,-35 - 23177: 14,-35 - 23228: 39,-35 - 23282: 20,-45 - 23306: 19,-44 - 23307: 25,-44 - 23308: 25,-40 - 23309: 25,-39 - 23310: 19,-40 - 23311: 19,-39 - 23318: 15,-40 - 23319: 15,-39 - 23414: 30,-39 - 23415: 29,-40 - 23417: 30,-41 - 23432: 37,-40 - 23462: 16,-46 - 23463: 16,-45 - 23464: 16,-43 - 23465: 16,-42 - 23466: 16,-41 - 23467: 18,-40 - 23468: 18,-41 - 23469: 18,-42 - 23470: 18,-42 - 23471: 18,-43 - 23472: 18,-43 - 23473: 18,-44 - 23474: 18,-45 - 23475: 18,-45 - 23476: 28,-44 - 23477: 28,-44 - 23478: 28,-43 - 23479: 28,-43 - 23480: 28,-43 - 23481: 28,-42 - 23482: 28,-41 - 23483: 28,-40 - 23484: 28,-40 - 23485: 26,-41 - 23486: 26,-42 - 23487: 26,-42 - 23488: 26,-43 - 23489: 26,-43 - 23490: 26,-45 - 23491: 26,-45 - 23492: 26,-46 - 23493: 26,-46 - 23494: 26,-48 - 23495: 26,-49 - 23496: 26,-49 - 23497: 26,-50 - 23498: 26,-51 - 23499: 26,-52 - 23500: 26,-52 - 23501: 26,-50 - 23502: 26,-47 - 23503: 28,-47 - 23504: 28,-47 - 23505: 28,-48 - 23506: 28,-49 - 23507: 28,-49 - 23508: 28,-50 - 23509: 28,-50 - 23510: 28,-51 - 23511: 30,-52 - 23512: 30,-51 - 23513: 30,-49 - 23514: 30,-48 - 23515: 28,-35 - 23516: 37,-35 - 23517: 12,-44 - 23518: 8,-40 - 23519: 8,-39 - 23536: 8,-44 - 23543: 3,-46 - 23544: 3,-45 - 23574: 15,-44 - 23583: 14,-46 - 23597: 16,-38 - 23608: 18,-44 - 23621: 26,-38 - 23685: 28,-26 - 23686: 28,-27 - 23688: 28,-26 - 23689: 28,-25 - 23721: 20,-26 - 23727: 23,-29 - 23731: 24,-28 - 23746: 26,-31 - 23767: 1,-51 - 23768: 1,-44 - 23777: 1,-51 - 23778: 1,-44 - 23779: -8,-59 - 23780: -8,-60 - 23781: -8,-61 - 23789: -4,-60 - 23812: 5,63 - 24000: -3,-61 - 24001: -3,-59 + 22080: 16,-30 + 22081: 16,-29 + 22082: 16,-28 + 22083: 16,-27 + 22104: 16,-32 + 22105: 16,-33 + 22106: 16,-34 + 22107: 16,-36 + 22110: 19,-34 + 22117: 19,-28 + 22118: 19,-27 + 22122: 19,-36 + 22123: 19,-35 + 22124: 19,-34 + 22130: 15,-35 + 22136: 18,-31 + 22137: 18,-32 + 22138: 18,-33 + 22139: 18,-34 + 22167: 10,-35 + 22171: 15,-35 + 22183: 14,-35 + 22234: 39,-35 + 22288: 20,-45 + 22312: 19,-44 + 22313: 25,-44 + 22314: 25,-40 + 22315: 25,-39 + 22316: 19,-40 + 22317: 19,-39 + 22324: 15,-40 + 22325: 15,-39 + 22420: 30,-39 + 22421: 29,-40 + 22423: 30,-41 + 22438: 37,-40 + 22468: 16,-46 + 22469: 16,-45 + 22470: 16,-43 + 22471: 16,-42 + 22472: 16,-41 + 22473: 18,-40 + 22474: 18,-41 + 22475: 18,-42 + 22476: 18,-42 + 22477: 18,-43 + 22478: 18,-43 + 22479: 18,-44 + 22480: 18,-45 + 22481: 18,-45 + 22482: 28,-44 + 22483: 28,-44 + 22484: 28,-43 + 22485: 28,-43 + 22486: 28,-43 + 22487: 28,-42 + 22488: 28,-41 + 22489: 28,-40 + 22490: 28,-40 + 22491: 26,-41 + 22492: 26,-42 + 22493: 26,-42 + 22494: 26,-43 + 22495: 26,-43 + 22496: 26,-45 + 22497: 26,-45 + 22498: 26,-46 + 22499: 26,-46 + 22500: 26,-48 + 22501: 26,-49 + 22502: 26,-49 + 22503: 26,-50 + 22504: 26,-51 + 22505: 26,-52 + 22506: 26,-52 + 22507: 26,-50 + 22508: 26,-47 + 22509: 28,-47 + 22510: 28,-47 + 22511: 28,-48 + 22512: 28,-49 + 22513: 28,-49 + 22514: 28,-50 + 22515: 28,-50 + 22516: 28,-51 + 22517: 30,-52 + 22518: 30,-51 + 22519: 30,-49 + 22520: 30,-48 + 22521: 28,-35 + 22522: 37,-35 + 22523: 12,-44 + 22524: 8,-40 + 22525: 8,-39 + 22542: 8,-44 + 22549: 3,-46 + 22550: 3,-45 + 22580: 15,-44 + 22589: 14,-46 + 22603: 16,-38 + 22614: 18,-44 + 22627: 26,-38 + 22691: 28,-26 + 22692: 28,-27 + 22694: 28,-26 + 22695: 28,-25 + 22727: 20,-26 + 22733: 23,-29 + 22737: 24,-28 + 22752: 26,-31 + 22773: 1,-51 + 22774: 1,-44 + 22783: 1,-51 + 22784: 1,-44 + 22785: -8,-59 + 22786: -8,-60 + 22787: -8,-61 + 22795: -4,-60 + 22818: 5,63 + 23006: -3,-61 + 23007: -3,-59 + 23811: 11,-26 + 23812: 11,-25 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineW decals: - 17791: -50,22 - 17793: -49,20 - 17794: -49,19 - 17812: -55,38 - 17814: -56,33 - 17815: -56,34 - 17817: -57,36 - 17828: -45,23 - 17833: -45,23 - 17834: -51,37 - 17835: -50,39 - 17836: -50,40 - 17855: -43,51 - 17856: -45,51 - 17868: -46,57 - 17869: -47,54 - 17870: -47,53 - 17871: -47,52 - 17872: -47,51 - 17873: -47,51 - 17874: -47,50 - 17875: -47,49 - 17876: -47,49 - 17877: -47,47 - 17878: -47,47 - 17879: -47,48 - 17880: -47,46 - 17888: -46,41 - 17927: -60,47 - 17928: -60,46 - 17929: -60,46 - 17930: -60,45 - 17931: -60,49 - 17932: -60,51 - 17933: -60,52 - 17934: -60,53 - 18031: -54,22 - 18032: -54,21 - 18033: -54,20 - 18039: -51,21 + 16840: -50,22 + 16842: -49,20 + 16843: -49,19 + 16861: -55,38 + 16863: -56,33 + 16864: -56,34 + 16866: -57,36 + 16877: -45,23 + 16882: -45,23 + 16883: -51,37 + 16884: -50,39 + 16885: -50,40 + 16904: -43,51 + 16905: -45,51 + 16917: -46,57 + 16918: -47,54 + 16919: -47,53 + 16920: -47,52 + 16921: -47,51 + 16922: -47,51 + 16923: -47,50 + 16924: -47,49 + 16925: -47,49 + 16926: -47,47 + 16927: -47,47 + 16928: -47,48 + 16929: -47,46 + 16937: -46,41 + 16976: -60,47 + 16977: -60,46 + 16978: -60,46 + 16979: -60,45 + 16980: -60,49 + 16981: -60,51 + 16982: -60,52 + 16983: -60,53 + 17080: -54,22 + 17081: -54,21 + 17082: -54,20 + 17088: -51,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineW decals: - 18274: -38,48 - 18275: -38,48 + 17323: -38,48 + 17324: -38,48 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineW decals: - 9475: 11,-26 - 9476: 11,-25 - 9481: 16,-30 - 9482: 16,-29 - 9483: 16,-28 - 9484: 16,-27 - 9520: 19,-27 - 9521: 19,-28 - 9623: 26,-52 - 9624: 26,-51 - 9625: 26,-50 - 9626: 26,-49 - 9627: 26,-48 - 9628: 26,-47 - 9629: 26,-46 - 9630: 26,-45 - 9631: 26,-43 - 9632: 26,-42 - 9633: 26,-41 - 9634: 26,-38 - 9650: 19,-36 - 9651: 19,-35 - 9660: 15,-35 - 9673: 10,-35 - 9678: 15,-35 - 9712: 29,-50 - 9713: 29,-44 - 9714: 29,-40 - 9719: 19,-40 - 9720: 19,-39 - 9721: 25,-39 - 9722: 25,-40 - 9723: 19,-44 - 9801: 14,-35 - 9802: 28,-35 - 9803: 37,-35 - 9804: 28,-40 - 9805: 28,-42 - 9806: 28,-43 - 9807: 28,-43 - 9808: 28,-44 - 9809: 28,-47 - 9810: 28,-48 - 9811: 28,-49 - 9812: 28,-50 - 9813: 28,-50 - 9814: 28,-51 - 9815: 28,-51 - 9817: 18,-40 - 9818: 18,-41 - 9819: 18,-42 - 9820: 18,-43 - 9821: 18,-43 - 9822: 18,-44 - 9823: 18,-45 - 9824: 18,-45 - 9825: 16,-38 - 9826: 16,-41 - 9827: 16,-43 - 9828: 16,-45 - 9829: 16,-46 - 9888: 39,-35 - 9912: 30,-41 - 9913: 30,-39 - 9935: 37,-40 - 9968: 23,-29 - 10004: 28,-25 - 10005: 28,-26 - 10023: 28,-41 - 10025: 15,-39 - 10026: 15,-40 - 10034: 8,-39 - 10035: 8,-40 - 10057: 20,-48 - 10058: 20,-47 - 10090: 25,-44 - 10097: 20,-45 - 10115: 32,-48 - 10116: 32,-48 - 10117: 32,-50 - 10121: 32,-52 - 10157: 30,-52 - 10158: 30,-51 - 10159: 30,-49 - 10160: 30,-48 - 10269: 8,-44 - 10271: 3,-45 - 10272: 3,-46 - 10299: 14,-46 - 10301: 12,-44 - 10306: 15,-44 - 10531: 50,-33 - 10532: 50,-33 - 10535: 43,-34 - 10538: 43,-32 - 12288: -4,-60 - 15236: 16,-42 - 19292: 5,63 - 19319: -8,-61 - 19320: -8,-60 - 19321: -8,-59 - 19323: -4,-60 - 19654: 26,-31 - 19664: 20,-26 - 19668: 24,-28 + 9313: 11,-26 + 9314: 11,-25 + 9319: 16,-30 + 9320: 16,-29 + 9321: 16,-28 + 9322: 16,-27 + 9358: 19,-27 + 9359: 19,-28 + 9461: 26,-52 + 9462: 26,-51 + 9463: 26,-50 + 9464: 26,-49 + 9465: 26,-48 + 9466: 26,-47 + 9467: 26,-46 + 9468: 26,-45 + 9469: 26,-43 + 9470: 26,-42 + 9471: 26,-41 + 9472: 26,-38 + 9488: 19,-36 + 9489: 19,-35 + 9498: 15,-35 + 9511: 10,-35 + 9516: 15,-35 + 9550: 29,-50 + 9551: 29,-44 + 9552: 29,-40 + 9557: 19,-40 + 9558: 19,-39 + 9559: 25,-39 + 9560: 25,-40 + 9561: 19,-44 + 9639: 14,-35 + 9640: 28,-35 + 9641: 37,-35 + 9642: 28,-40 + 9643: 28,-42 + 9644: 28,-43 + 9645: 28,-43 + 9646: 28,-44 + 9647: 28,-47 + 9648: 28,-48 + 9649: 28,-49 + 9650: 28,-50 + 9651: 28,-50 + 9652: 28,-51 + 9653: 28,-51 + 9655: 18,-40 + 9656: 18,-41 + 9657: 18,-42 + 9658: 18,-43 + 9659: 18,-43 + 9660: 18,-44 + 9661: 18,-45 + 9662: 18,-45 + 9663: 16,-38 + 9664: 16,-41 + 9665: 16,-43 + 9666: 16,-45 + 9667: 16,-46 + 9726: 39,-35 + 9750: 30,-41 + 9751: 30,-39 + 9773: 37,-40 + 9806: 23,-29 + 9842: 28,-25 + 9843: 28,-26 + 9861: 28,-41 + 9863: 15,-39 + 9864: 15,-40 + 9872: 8,-39 + 9873: 8,-40 + 9895: 20,-48 + 9896: 20,-47 + 9928: 25,-44 + 9935: 20,-45 + 9953: 32,-48 + 9954: 32,-48 + 9955: 32,-50 + 9959: 32,-52 + 9995: 30,-52 + 9996: 30,-51 + 9997: 30,-49 + 9998: 30,-48 + 10107: 8,-44 + 10109: 3,-45 + 10110: 3,-46 + 10137: 14,-46 + 10139: 12,-44 + 10144: 15,-44 + 10369: 50,-33 + 10370: 50,-33 + 10373: 43,-34 + 10376: 43,-32 + 11626: -4,-60 + 14292: 16,-42 + 18336: 5,63 + 18363: -8,-61 + 18364: -8,-60 + 18365: -8,-59 + 18367: -4,-60 + 18698: 26,-31 + 18708: 20,-26 + 18712: 24,-28 - node: color: '#9FED58FF' id: BrickTileWhiteLineW decals: - 23823: -23,46 - 23824: -23,49 - 23825: -23,52 + 22829: -23,46 + 22830: -23,49 + 22831: -23,52 - node: color: '#A46106FF' id: BrickTileWhiteLineW decals: - 21877: 2,30 - 21880: 2,28 - 21881: 2,27 - 21886: 9,28 - 21887: 9,29 - 21918: 13,34 - 21924: 2,34 - 21925: 2,35 - 21926: 2,36 - 21927: 2,36 - 21942: 10,35 - 21959: 12,35 - 21960: 12,36 - 21981: 12,35 - 21982: 12,36 - 21997: 4,42 - 21998: 4,41 - 22021: 9,43 - 22022: 9,44 - 22023: 9,45 - 22032: 12,43 - 22033: 12,45 - 22035: 13,44 - 22036: 13,42 - 22037: 13,41 - 22038: 13,41 - 22039: 13,41 - 22040: 13,40 - 22041: 13,40 - 22042: 13,38 - 22043: 13,37 - 22108: 9,49 - 22109: 9,50 - 22110: 9,50 - 22111: 9,51 - 22112: 9,52 - 22113: 9,53 - 22114: 9,53 - 22115: 9,53 - 22123: 14,49 - 22124: 14,50 - 22125: 14,52 - 22126: 14,53 - 22143: 14,52 - 22144: 14,53 - 22242: 20,36 - 22243: 18,41 - 22244: 18,43 - 22245: 18,45 - 22246: 23,47 - 22247: 23,49 - 22248: 23,51 - 22249: 23,45 - 22250: 23,43 - 22251: 23,41 - 22311: 15,47 - 22347: 39,48 - 22348: 39,51 - 22349: 39,49 - 22350: 39,52 - 22354: 34,50 - 22358: 33,51 - 22359: 33,52 - 22360: 33,49 - 22361: 33,48 - 22409: 12,27 - 22417: 17,27 - 22418: 17,28 - 22419: 17,29 - 22420: 17,29 - 22421: 17,30 - 22422: 17,31 - 22423: 17,31 - 22425: 15,29 - 22426: 15,30 - 22427: 15,30 - 22428: 15,31 - 22429: 15,32 - 22430: 15,32 - 22437: 23,36 - 22448: 24,37 - 22449: 24,35 - 22452: 23,36 - 22465: 28,37 - 22466: 28,35 - 22467: 28,35 - 22468: 28,36 - 22482: 27,41 - 22483: 27,42 - 22484: 27,43 - 22485: 27,42 - 22496: 23,36 + 20883: 2,30 + 20886: 2,28 + 20887: 2,27 + 20892: 9,28 + 20893: 9,29 + 20924: 13,34 + 20930: 2,34 + 20931: 2,35 + 20932: 2,36 + 20933: 2,36 + 20948: 10,35 + 20965: 12,35 + 20966: 12,36 + 20987: 12,35 + 20988: 12,36 + 21003: 4,42 + 21004: 4,41 + 21027: 9,43 + 21028: 9,44 + 21029: 9,45 + 21038: 12,43 + 21039: 12,45 + 21041: 13,44 + 21042: 13,42 + 21043: 13,41 + 21044: 13,41 + 21045: 13,41 + 21046: 13,40 + 21047: 13,40 + 21048: 13,38 + 21049: 13,37 + 21114: 9,49 + 21115: 9,50 + 21116: 9,50 + 21117: 9,51 + 21118: 9,52 + 21119: 9,53 + 21120: 9,53 + 21121: 9,53 + 21129: 14,49 + 21130: 14,50 + 21131: 14,52 + 21132: 14,53 + 21149: 14,52 + 21150: 14,53 + 21248: 20,36 + 21249: 18,41 + 21250: 18,43 + 21251: 18,45 + 21252: 23,47 + 21253: 23,49 + 21254: 23,51 + 21255: 23,45 + 21256: 23,43 + 21257: 23,41 + 21317: 15,47 + 21353: 39,48 + 21354: 39,51 + 21355: 39,49 + 21356: 39,52 + 21360: 34,50 + 21364: 33,51 + 21365: 33,52 + 21366: 33,49 + 21367: 33,48 + 21415: 12,27 + 21423: 17,27 + 21424: 17,28 + 21425: 17,29 + 21426: 17,29 + 21427: 17,30 + 21428: 17,31 + 21429: 17,31 + 21431: 15,29 + 21432: 15,30 + 21433: 15,30 + 21434: 15,31 + 21435: 15,32 + 21436: 15,32 + 21443: 23,36 + 21454: 24,37 + 21455: 24,35 + 21458: 23,36 + 21471: 28,37 + 21472: 28,35 + 21473: 28,35 + 21474: 28,36 + 21488: 27,41 + 21489: 27,42 + 21490: 27,43 + 21491: 27,42 + 21502: 23,36 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineW decals: - 2868: -24,48 - 2869: -24,47 - 2885: -32,45 - 2891: -34,47 - 2898: -34,51 - 2899: -34,52 - 2900: -34,53 - 2917: -24,50 - 2918: -24,51 - 2936: -31,47 - 2937: -31,48 - 2938: -31,49 - 2939: -31,50 - 2940: -31,51 - 2941: -31,52 - 2942: -31,53 - 2943: -29,53 - 2944: -29,52 - 2945: -29,51 - 2946: -29,50 - 2947: -29,49 - 2948: -29,47 - 2949: -29,48 - 2950: -27,47 - 2951: -27,48 - 2952: -27,49 - 2953: -27,50 - 2993: -36,49 - 3003: -38,47 - 18276: -38,48 - 18277: -38,49 - 18278: -38,50 - 18280: -38,45 - 18281: -38,46 - 18283: -27,53 + 2745: -24,48 + 2746: -24,47 + 2762: -32,45 + 2768: -34,47 + 2775: -34,51 + 2776: -34,52 + 2777: -34,53 + 2794: -24,50 + 2795: -24,51 + 2813: -31,47 + 2814: -31,48 + 2815: -31,49 + 2816: -31,50 + 2817: -31,51 + 2818: -31,52 + 2819: -31,53 + 2820: -29,53 + 2821: -29,52 + 2822: -29,51 + 2823: -29,50 + 2824: -29,49 + 2825: -29,47 + 2826: -29,48 + 2827: -27,47 + 2828: -27,48 + 2829: -27,49 + 2830: -27,50 + 2870: -36,49 + 2880: -38,47 + 17325: -38,48 + 17326: -38,49 + 17327: -38,50 + 17329: -38,45 + 17330: -38,46 + 17332: -27,53 - node: color: '#B18BDAFF' id: BrickTileWhiteLineW decals: - 5069: 19,31 - 5070: 19,29 - 5071: 19,27 - 5084: 28,31 - 5147: 38,29 - 11351: -22,-30 - 11352: -22,-29 - 11353: -22,-29 - 11354: -22,-28 - 11355: -22,-27 - 11356: -22,-27 - 11357: -22,-26 - 11383: -23,-35 - 11387: -13,-35 - 11388: -13,-35 - 11412: -13,-39 - 11413: -13,-40 - 11414: -13,-41 - 11415: -13,-42 - 11416: -13,-43 - 11417: -13,-47 - 11418: -13,-49 - 11419: -13,-49 - 11420: -13,-51 - 11421: -13,-52 - 11422: -13,-52 - 11423: -13,-53 - 11424: -13,-50 - 11425: -13,-50 - 11426: -13,-48 - 11427: -13,-48 - 11508: -21,-36 - 11509: -21,-35 - 11510: -21,-35 - 11511: -21,-34 - 11512: -21,-34 - 11522: -31,-35 - 11523: -24,-32 - 11524: -24,-31 - 11525: -24,-30 - 11526: -24,-30 - 11527: -24,-29 - 11528: -24,-28 - 11529: -24,-28 - 11530: -24,-27 - 11531: -24,-27 - 11532: -24,-27 - 11533: -24,-27 - 11534: -24,-26 - 11535: -24,-25 - 11536: -24,-25 - 11550: -7,-26 - 11551: -7,-25 - 11552: -7,-25 - 11567: -11,-34 - 11568: -11,-35 - 11579: -4,-35 - 11592: -10,-31 - 11593: -10,-32 - 11594: -10,-32 - 11595: -10,-33 - 11596: -10,-33 - 11702: -12,-41 - 11703: -12,-41 - 11721: -15,-38 - 11722: -15,-39 - 11723: -15,-41 - 11724: -15,-42 - 11725: -15,-43 - 11726: -15,-44 - 11804: -34,-45 - 11805: -34,-44 - 11806: -34,-44 - 11807: -34,-43 - 11808: -34,-43 - 11809: -34,-42 - 11810: -34,-42 - 11811: -34,-41 - 11989: -24,-24 - 12006: -21,-31 - 12007: -21,-26 - 12107: -23,-39 - 12108: -23,-40 - 12109: -23,-41 - 12121: -28,-39 - 12122: -28,-40 - 12123: -28,-41 - 12124: -15,-46 - 12125: -15,-47 - 12126: -15,-48 - 12127: -15,-49 - 12128: -17,-52 - 12129: -17,-53 - 12145: -12,-50 - 12157: -12,-59 - 12169: -20,-57 - 12204: -7,-48 - 12205: -7,-47 - 12212: -11,-51 - 12213: -11,-52 - 12219: -3,-48 - 12225: -17,-44 - 12226: -17,-43 - 12227: -17,-42 - 12228: -17,-41 - 12229: -17,-40 - 12545: -6,-32 - 12546: -6,-33 - 12547: -6,-34 - 19954: 33,38 - 19958: 37,39 + 4919: 19,31 + 4920: 19,29 + 4921: 19,27 + 4934: 28,31 + 4997: 38,29 + 10848: -22,-30 + 10849: -22,-29 + 10850: -22,-29 + 10851: -22,-28 + 10852: -22,-27 + 10853: -22,-27 + 10854: -22,-26 + 10880: -23,-35 + 10884: -13,-35 + 10885: -13,-35 + 10909: -13,-39 + 10910: -13,-40 + 10911: -13,-41 + 10912: -13,-42 + 10913: -13,-43 + 10914: -13,-47 + 10915: -13,-49 + 10916: -13,-49 + 10917: -13,-51 + 10918: -13,-52 + 10919: -13,-52 + 10920: -13,-53 + 10921: -13,-50 + 10922: -13,-50 + 10923: -13,-48 + 10924: -13,-48 + 11005: -21,-36 + 11006: -21,-35 + 11007: -21,-35 + 11008: -21,-34 + 11009: -21,-34 + 11019: -31,-35 + 11020: -24,-32 + 11021: -24,-31 + 11022: -24,-30 + 11023: -24,-30 + 11024: -24,-29 + 11025: -24,-28 + 11026: -24,-28 + 11027: -24,-27 + 11028: -24,-27 + 11029: -24,-27 + 11030: -24,-27 + 11031: -24,-26 + 11032: -24,-25 + 11033: -24,-25 + 11047: -7,-26 + 11048: -7,-25 + 11049: -7,-25 + 11064: -11,-34 + 11065: -11,-35 + 11076: -4,-35 + 11089: -10,-31 + 11090: -10,-32 + 11091: -10,-32 + 11092: -10,-33 + 11093: -10,-33 + 11187: -12,-41 + 11188: -12,-41 + 11206: -15,-38 + 11207: -15,-39 + 11208: -15,-41 + 11209: -15,-42 + 11210: -15,-43 + 11211: -15,-44 + 11289: -34,-45 + 11290: -34,-44 + 11291: -34,-44 + 11292: -34,-43 + 11293: -34,-43 + 11294: -34,-42 + 11295: -34,-42 + 11296: -34,-41 + 11327: -24,-24 + 11344: -21,-31 + 11345: -21,-26 + 11445: -23,-39 + 11446: -23,-40 + 11447: -23,-41 + 11459: -28,-39 + 11460: -28,-40 + 11461: -28,-41 + 11462: -15,-46 + 11463: -15,-47 + 11464: -15,-48 + 11465: -15,-49 + 11466: -17,-52 + 11467: -17,-53 + 11483: -12,-50 + 11495: -12,-59 + 11507: -20,-57 + 11542: -7,-48 + 11543: -7,-47 + 11550: -11,-51 + 11551: -11,-52 + 11557: -3,-48 + 11563: -17,-44 + 11564: -17,-43 + 11565: -17,-42 + 11566: -17,-41 + 11567: -17,-40 + 11883: -6,-32 + 11884: -6,-33 + 11885: -6,-34 + 18960: 33,38 + 18964: 37,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineW decals: - 667: -25,-57 + 562: -25,-57 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineW decals: - 10746: 29,-56 + 10583: 29,-56 - node: color: '#D381C9FF' id: BrickTileWhiteLineW decals: - 22542: -2,-49 - 22543: -2,-47 - 22556: -2,-39 - 22557: -2,-42 - 22565: -3,-36 - 22566: -3,-34 - 22626: -12,-50 - 22627: -12,-41 - 22628: -11,-35 - 22629: -11,-34 - 22655: -15,-38 - 22656: -15,-39 - 22657: -15,-41 - 22658: -15,-41 - 22659: -15,-42 - 22660: -15,-43 - 22661: -15,-44 - 22662: -15,-46 - 22663: -15,-47 - 22664: -15,-47 - 22665: -15,-48 - 22666: -15,-49 - 22673: -17,-52 - 22674: -17,-53 - 22680: -12,-50 - 22695: -12,-41 - 22696: -16,-40 - 22709: -17,-44 - 22710: -17,-43 - 22711: -17,-43 - 22712: -17,-42 - 22713: -17,-42 - 22714: -17,-41 - 22715: -17,-40 - 22716: -17,-40 - 22762: -24,-32 - 22763: -24,-32 - 22764: -24,-30 - 22765: -24,-29 - 22766: -24,-28 - 22767: -24,-27 - 22768: -24,-26 - 22769: -24,-26 - 22770: -24,-27 - 22771: -24,-29 - 22772: -24,-31 - 22773: -24,-27 - 22774: -24,-26 - 22775: -24,-25 - 22792: -21,-31 - 22793: -21,-26 - 22805: -31,-35 - 22813: -21,-36 - 22814: -21,-35 - 22815: -21,-34 - 22829: -22,-30 - 22830: -22,-29 - 22831: -22,-28 - 22832: -22,-28 - 22833: -22,-27 - 22834: -22,-26 - 22882: -23,-35 - 22883: -13,-35 - 22890: -11,-35 - 22921: -10,-33 - 22922: -10,-32 - 22923: -10,-31 - 22924: -4,-35 - 22926: -3,-48 - 22927: -11,-51 - 22928: -13,-53 - 22929: -13,-52 - 22930: -13,-52 - 22931: -13,-51 - 22932: -13,-50 - 22933: -13,-50 - 22934: -13,-49 - 22935: -13,-48 - 22936: -13,-48 - 22937: -13,-47 - 22938: -13,-43 - 22939: -13,-43 - 22940: -13,-42 - 22941: -13,-41 - 22942: -13,-41 - 22943: -13,-40 - 22944: -13,-40 - 22945: -13,-39 - 22974: -7,-48 - 22975: -7,-47 - 22976: -11,-52 - 23044: -20,-57 - 23047: -12,-59 - 24382: -27,-31 - 24391: -27,-27 - 24392: -28,-29 + 21548: -2,-49 + 21549: -2,-47 + 21562: -2,-39 + 21563: -2,-42 + 21571: -3,-36 + 21572: -3,-34 + 21632: -12,-50 + 21633: -12,-41 + 21634: -11,-35 + 21635: -11,-34 + 21661: -15,-38 + 21662: -15,-39 + 21663: -15,-41 + 21664: -15,-41 + 21665: -15,-42 + 21666: -15,-43 + 21667: -15,-44 + 21668: -15,-46 + 21669: -15,-47 + 21670: -15,-47 + 21671: -15,-48 + 21672: -15,-49 + 21679: -17,-52 + 21680: -17,-53 + 21686: -12,-50 + 21701: -12,-41 + 21702: -16,-40 + 21715: -17,-44 + 21716: -17,-43 + 21717: -17,-43 + 21718: -17,-42 + 21719: -17,-42 + 21720: -17,-41 + 21721: -17,-40 + 21722: -17,-40 + 21768: -24,-32 + 21769: -24,-32 + 21770: -24,-30 + 21771: -24,-29 + 21772: -24,-28 + 21773: -24,-27 + 21774: -24,-26 + 21775: -24,-26 + 21776: -24,-27 + 21777: -24,-29 + 21778: -24,-31 + 21779: -24,-27 + 21780: -24,-26 + 21781: -24,-25 + 21798: -21,-31 + 21799: -21,-26 + 21811: -31,-35 + 21819: -21,-36 + 21820: -21,-35 + 21821: -21,-34 + 21835: -22,-30 + 21836: -22,-29 + 21837: -22,-28 + 21838: -22,-28 + 21839: -22,-27 + 21840: -22,-26 + 21888: -23,-35 + 21889: -13,-35 + 21896: -11,-35 + 21927: -10,-33 + 21928: -10,-32 + 21929: -10,-31 + 21930: -4,-35 + 21932: -3,-48 + 21933: -11,-51 + 21934: -13,-53 + 21935: -13,-52 + 21936: -13,-52 + 21937: -13,-51 + 21938: -13,-50 + 21939: -13,-50 + 21940: -13,-49 + 21941: -13,-48 + 21942: -13,-48 + 21943: -13,-47 + 21944: -13,-43 + 21945: -13,-43 + 21946: -13,-42 + 21947: -13,-41 + 21948: -13,-41 + 21949: -13,-40 + 21950: -13,-40 + 21951: -13,-39 + 21980: -7,-48 + 21981: -7,-47 + 21982: -11,-52 + 22050: -20,-57 + 22053: -12,-59 + 23386: -27,-31 + 23395: -27,-27 + 23396: -28,-29 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineW decals: - 7605: 64,-4 - 7610: 65,-3 - 7641: 71,13 - 19156: 68,15 - 19157: 68,14 - 19158: 68,13 - 19169: 60,-5 - 19170: 60,-4 - 20894: 71,13 + 7453: 64,-4 + 7458: 65,-3 + 7489: 71,13 + 18200: 68,15 + 18201: 68,14 + 18202: 68,13 + 18213: 60,-5 + 18214: 60,-4 + 19900: 71,13 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineW decals: - 3805: 10,69 - 3806: 10,67 - 3807: 10,66 - 3811: 13,67 - 3818: 13,67 - 3824: 13,67 + 3672: 10,69 + 3673: 10,67 + 3674: 10,66 + 3678: 13,67 + 3685: 13,67 + 3691: 13,67 - node: color: '#DAA58BFF' id: BrickTileWhiteLineW decals: - 4370: 2,30 - 4371: 2,28 - 4372: 2,27 - 4392: 2,34 - 4393: 2,35 - 4394: 2,36 - 4411: 11,30 - 4412: 11,28 - 4421: 9,28 - 4422: 9,29 - 4441: 15,29 - 4442: 15,30 - 4443: 15,31 - 4454: 12,27 - 4459: 15,32 - 4483: 17,27 - 4484: 17,28 - 4485: 17,29 - 4486: 17,30 - 4487: 17,31 - 4520: 12,36 - 4521: 12,35 - 4531: 4,41 - 4532: 4,42 - 4556: 9,45 - 4557: 9,44 - 4558: 9,43 - 4571: 13,38 - 4572: 13,37 - 4602: 12,43 - 4603: 12,45 - 4604: 13,40 - 4605: 13,41 - 4606: 13,42 - 4607: 13,44 - 4610: 15,47 - 4629: 19,31 - 4630: 19,30 - 4631: 19,29 - 4632: 19,28 - 4633: 19,27 - 4664: 28,31 - 4676: 27,29 - 4677: 27,29 - 4678: 27,30 - 4679: 27,28 - 4693: 26,29 - 4697: 22,29 - 4722: 23,36 - 4726: 24,37 - 4727: 24,35 - 4747: 28,35 - 4748: 28,36 - 4749: 28,37 - 4762: 20,36 - 4785: 27,41 - 4786: 27,42 - 4787: 27,43 - 4802: 10,35 - 4855: 34,50 - 4863: 33,49 - 4864: 33,51 - 4866: 39,51 - 4908: 9,53 - 4909: 9,52 - 4910: 9,51 - 4911: 9,50 - 4912: 9,49 - 4920: 14,49 - 4921: 14,50 - 4926: 14,53 - 4927: 14,52 - 4975: 23,43 - 4976: 23,45 - 4977: 23,47 - 4978: 23,49 - 4979: 23,51 - 4989: 18,41 - 4990: 18,43 - 4991: 18,45 - 5021: 23,41 - 5065: 39,49 - 5066: 39,51 - 5067: 39,48 - 5068: 39,52 - 5157: 38,29 - 5159: 33,37 - 11284: -11,-82 - 11285: -11,-81 - 11286: -11,-80 - 14324: -46,14 - 14325: -46,12 - 15275: -49,9 + 4220: 2,30 + 4221: 2,28 + 4222: 2,27 + 4242: 2,34 + 4243: 2,35 + 4244: 2,36 + 4261: 11,30 + 4262: 11,28 + 4271: 9,28 + 4272: 9,29 + 4291: 15,29 + 4292: 15,30 + 4293: 15,31 + 4304: 12,27 + 4309: 15,32 + 4333: 17,27 + 4334: 17,28 + 4335: 17,29 + 4336: 17,30 + 4337: 17,31 + 4370: 12,36 + 4371: 12,35 + 4381: 4,41 + 4382: 4,42 + 4406: 9,45 + 4407: 9,44 + 4408: 9,43 + 4421: 13,38 + 4422: 13,37 + 4452: 12,43 + 4453: 12,45 + 4454: 13,40 + 4455: 13,41 + 4456: 13,42 + 4457: 13,44 + 4460: 15,47 + 4479: 19,31 + 4480: 19,30 + 4481: 19,29 + 4482: 19,28 + 4483: 19,27 + 4514: 28,31 + 4526: 27,29 + 4527: 27,29 + 4528: 27,30 + 4529: 27,28 + 4543: 26,29 + 4547: 22,29 + 4572: 23,36 + 4576: 24,37 + 4577: 24,35 + 4597: 28,35 + 4598: 28,36 + 4599: 28,37 + 4612: 20,36 + 4635: 27,41 + 4636: 27,42 + 4637: 27,43 + 4652: 10,35 + 4705: 34,50 + 4713: 33,49 + 4714: 33,51 + 4716: 39,51 + 4758: 9,53 + 4759: 9,52 + 4760: 9,51 + 4761: 9,50 + 4762: 9,49 + 4770: 14,49 + 4771: 14,50 + 4776: 14,53 + 4777: 14,52 + 4825: 23,43 + 4826: 23,45 + 4827: 23,47 + 4828: 23,49 + 4829: 23,51 + 4839: 18,41 + 4840: 18,43 + 4841: 18,45 + 4871: 23,41 + 4915: 39,49 + 4916: 39,51 + 4917: 39,48 + 4918: 39,52 + 5007: 38,29 + 5009: 33,37 + 10781: -11,-82 + 10782: -11,-81 + 10783: -11,-80 + 13380: -46,14 + 13381: -46,12 + 14331: -49,9 - node: color: '#DABC8BFF' id: BrickTileWhiteLineW decals: - 4008: -40,53 - 9536: 2,-31 - 9556: 3,-34 - 9557: 3,-33 - 9564: 7,-34 - 9565: 7,-33 - 9566: 7,-32 - 9582: 9,-36 - 9583: 9,-34 + 3875: -40,53 + 9374: 2,-31 + 9394: 3,-34 + 9395: 3,-33 + 9402: 7,-34 + 9403: 7,-33 + 9404: 7,-32 + 9420: 9,-36 + 9421: 9,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 16802: -53,4 - 16803: -53,5 - 16804: -53,6 - 16816: -48,1 - 16831: -59,0 - 16833: -61,-2 - 16834: -61,-3 - 16881: -59,11 - 16882: -59,12 - 16883: -59,13 - 16887: -55,16 - 16897: -62,1 - 16907: -62,-7 - 16915: -56,-9 - 16926: -61,-8 - 16927: -61,-9 - 16940: -55,-8 - 16942: -54,-10 - 16943: -54,-11 - 16944: -54,-6 - 16945: -54,-5 - 16967: -60,-17 - 16973: -61,-13 - 16974: -61,-14 - 16989: -51,-15 - 17000: -59,-16 - 17001: -50,-16 - 17002: -50,-17 - 17017: -50,-14 - 17018: -50,-13 - 17089: -46,12 - 17090: -46,14 - 17125: -60,14 - 17127: -67,15 - 17141: -78,15 - 17223: -61,18 - 17224: -61,19 - 17235: -50,-9 - 17236: -50,-8 - 17237: -50,-7 - 17273: -50,-9 - 17274: -50,-8 - 17275: -50,-7 - 17276: -56,-7 - 17282: -62,-7 - 17321: -74,-6 - 17322: -74,-7 - 17323: -74,-8 - 17327: -77,-7 - 17328: -77,-8 - 17329: -77,-9 - 17341: -11,-82 - 17342: -11,-81 - 17343: -11,-80 - 17346: 13,78 - 17347: 12,87 - 17356: 5,92 - 17357: 10,90 - 17374: 5,88 - 17375: 5,89 - 17376: 5,90 - 17385: 9,85 - 17386: 9,86 - 17387: 9,87 - 17390: 12,87 - 17391: 10,82 - 17392: 10,79 - 17393: 10,78 - 17394: 10,77 - 17415: 13,78 - 17454: -65,6 - 17455: -65,7 - 17456: -65,8 - 17457: -65,9 - 17517: -65,1 - 17537: -74,-3 - 17538: -74,-2 - 17539: -74,-1 - 17540: -74,1 - 17557: -65,1 - 17634: -78,6 - 17635: -78,5 - 17636: -78,4 - 17660: -77,9 - 17661: -77,10 - 17662: -77,11 - 17686: -75,0 - 17729: -73,-11 - 17730: -73,-12 - 17746: -55,17 - 18101: -51,-3 - 18102: -51,-2 - 19829: -48,-3 - 21551: -45,11 - 21552: -45,13 - 21555: -45,15 + 15851: -53,4 + 15852: -53,5 + 15853: -53,6 + 15865: -48,1 + 15880: -59,0 + 15882: -61,-2 + 15883: -61,-3 + 15930: -59,11 + 15931: -59,12 + 15932: -59,13 + 15936: -55,16 + 15946: -62,1 + 15956: -62,-7 + 15964: -56,-9 + 15975: -61,-8 + 15976: -61,-9 + 15989: -55,-8 + 15991: -54,-10 + 15992: -54,-11 + 15993: -54,-6 + 15994: -54,-5 + 16016: -60,-17 + 16022: -61,-13 + 16023: -61,-14 + 16038: -51,-15 + 16049: -59,-16 + 16050: -50,-16 + 16051: -50,-17 + 16066: -50,-14 + 16067: -50,-13 + 16138: -46,12 + 16139: -46,14 + 16174: -60,14 + 16176: -67,15 + 16190: -78,15 + 16272: -61,18 + 16273: -61,19 + 16284: -50,-9 + 16285: -50,-8 + 16286: -50,-7 + 16322: -50,-9 + 16323: -50,-8 + 16324: -50,-7 + 16325: -56,-7 + 16331: -62,-7 + 16370: -74,-6 + 16371: -74,-7 + 16372: -74,-8 + 16376: -77,-7 + 16377: -77,-8 + 16378: -77,-9 + 16390: -11,-82 + 16391: -11,-81 + 16392: -11,-80 + 16395: 13,78 + 16396: 12,87 + 16405: 5,92 + 16406: 10,90 + 16423: 5,88 + 16424: 5,89 + 16425: 5,90 + 16434: 9,85 + 16435: 9,86 + 16436: 9,87 + 16439: 12,87 + 16440: 10,82 + 16441: 10,79 + 16442: 10,78 + 16443: 10,77 + 16464: 13,78 + 16503: -65,6 + 16504: -65,7 + 16505: -65,8 + 16506: -65,9 + 16566: -65,1 + 16586: -74,-3 + 16587: -74,-2 + 16588: -74,-1 + 16589: -74,1 + 16606: -65,1 + 16683: -78,6 + 16684: -78,5 + 16685: -78,4 + 16709: -77,9 + 16710: -77,10 + 16711: -77,11 + 16735: -75,0 + 16778: -73,-11 + 16779: -73,-12 + 16795: -55,17 + 17150: -51,-3 + 17151: -51,-2 + 18835: -48,-3 + 20557: -45,11 + 20558: -45,13 + 20561: -45,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 856: 69,-42 - 857: 69,-43 - 858: 69,-44 - 859: 69,-46 - 872: 69,-45 - 974: 2,-17 - 975: 2,-16 - 976: 2,-15 - 977: 2,-14 - 1176: 44,-15 - 1177: 44,-16 - 2056: -15,50 - 2057: -15,49 - 2058: -15,48 - 2066: -18,52 - 2067: -18,51 - 2068: -18,50 - 2072: -18,48 - 2073: -18,47 - 2074: -18,46 - 2075: -20,47 - 2076: -20,48 - 2077: -20,49 - 2078: -20,51 - 2120: -18,36 - 2121: -18,35 - 2122: -18,34 - 2123: -18,32 - 2124: -18,31 - 2125: -18,29 - 2126: -18,28 - 2127: -18,27 - 2128: -20,29 - 2129: -20,30 - 2130: -20,31 - 2131: -20,32 - 2132: -20,33 - 2133: -20,34 - 2264: -22,41 - 2357: -28,37 - 2358: -28,36 - 2359: -28,34 - 2360: -28,35 - 2361: -28,33 - 2362: -28,32 - 2372: -31,30 - 2373: -31,31 - 2706: -13,53 - 2777: -9,49 - 2778: -4,49 - 3017: -10,57 - 3024: -18,61 - 3025: -18,62 - 3026: -18,63 - 3027: -18,64 - 3096: -4,61 - 3097: -4,62 - 3098: -4,63 - 3099: -4,64 - 3100: -3,57 - 3108: -3,68 - 3110: -10,68 - 3123: -17,57 - 3132: -17,68 - 3223: -11,72 - 3224: -11,73 - 3225: -11,74 - 3226: -11,75 - 3234: -11,79 - 3235: -11,80 - 3236: -11,81 - 3237: -11,82 - 3238: -11,92 - 3239: -11,93 - 3240: -11,94 - 3241: -11,95 - 3260: -11,88 - 3261: -11,88 - 3262: -11,87 - 3263: -11,86 - 3264: -11,85 - 3284: -29,95 - 3285: -29,94 - 3286: -29,93 - 3287: -29,92 - 3288: -29,88 - 3289: -29,87 - 3290: -29,86 - 3291: -29,85 - 3292: -29,82 - 3293: -29,81 - 3294: -29,80 - 3295: -29,79 - 3296: -29,75 - 3297: -29,74 - 3298: -29,73 - 3299: -29,72 - 3311: -28,68 - 3525: 3,68 - 3532: 8,68 - 3618: 7,75 - 3669: 7,72 - 3670: 7,73 - 3671: 7,79 - 3672: 7,80 - 3673: 7,81 - 3780: 3,57 - 3827: 17,69 - 4156: -25,22 - 5172: 18,16 - 5173: 18,17 - 5174: 18,18 - 5175: 18,19 - 5176: 18,12 - 5177: 18,12 - 5178: 18,11 - 5179: 18,10 - 5180: 18,9 - 5199: 18,3 - 5200: 18,4 - 5201: 18,2 - 5202: 18,-2 - 5203: 18,-3 - 5204: 18,-4 - 5205: 18,-5 - 5216: -23,68 - 5505: -35,5 - 5506: -30,5 - 5507: -22,5 - 5571: -34,27 - 5572: -34,28 - 6223: -18,-12 - 6224: -18,-13 - 6225: -18,-14 - 6226: -18,-15 - 6227: -18,-16 - 6228: -18,-17 - 6310: 18,-17 - 6311: 18,-16 - 6312: 18,-15 - 6313: 18,-14 - 6314: 18,-13 - 6315: 18,-12 - 6336: -2,-14 - 6337: -2,-15 - 6346: 2,-17 - 6638: -21,-3 - 6639: -21,-2 - 6640: -21,-2 - 6643: -33,2 - 6644: -33,1 - 6645: -33,0 - 6646: -33,-1 - 6647: -33,-2 - 6648: -33,-3 - 6649: -33,-4 - 6650: -33,-5 - 6651: -33,-6 - 6652: -33,-7 - 6653: -33,-8 - 6654: -33,-9 - 6683: -31,1 - 6720: -35,-15 - 6721: -35,-14 - 6722: -35,-14 - 6723: -35,-13 - 6724: -35,-12 - 6746: -30,-12 - 6747: -30,-13 - 6748: -30,-14 - 6749: -30,-14 - 6750: -30,-15 - 6967: -26,-17 - 6968: -26,-16 - 6969: -26,-16 - 6970: -22,-17 - 6971: -22,-17 - 6972: -22,-16 - 7005: 7,-20 - 7006: -4,-20 - 7007: -11,-20 - 7012: 14,-20 - 7013: 18,5 - 7124: 25,5 - 7189: 32,5 - 8019: 62,-15 - 8020: 62,-14 - 8021: 62,-13 - 8022: 58,-14 - 8023: 58,-27 - 8024: 60,-27 - 8025: 62,-28 - 8026: 62,-27 - 8027: 62,-26 - 8036: 60,-14 - 8238: 31,-11 - 8239: 25,-11 - 8240: 25,-11 - 8249: 41,-14 - 8250: 41,-12 - 8251: 41,-12 - 8252: 41,-12 - 8253: 41,-10 - 8254: 41,-11 - 8304: 41,-13 - 8305: 41,-13 - 8445: 48,-20 - 8446: 53,-20 - 8447: 53,-20 - 8684: 0,-76 - 8685: 0,-80 - 8689: -3,-78 - 8745: 11,-25 - 8746: 11,-26 - 8760: -7,-26 - 8761: -7,-25 - 8762: -7,-25 - 8826: 0,-27 - 8827: 0,-26 - 8828: 0,-25 - 8829: 0,-24 - 8871: 0,-35 - 8872: 0,-34 - 8873: 0,-34 - 8874: 0,-33 - 8875: 0,-32 - 8876: 0,-31 - 8877: 0,-31 - 8918: -3,-25 - 8919: -3,-25 - 8920: -3,-26 - 8953: -16,-26 - 9073: 2,-24 - 9374: 0,-50 - 9375: 0,-49 - 9376: 0,-49 - 9377: 0,-45 - 9378: 0,-46 - 9379: 0,-48 - 9380: 0,-48 - 9381: 0,-47 - 9382: 0,-42 - 9383: 0,-41 - 9384: 0,-40 - 9385: 0,-40 - 9386: 0,-39 - 9387: 0,-52 - 9388: 0,-53 - 9389: 0,-54 - 9390: 0,-55 - 9401: 0,-61 - 9402: 0,-60 - 9403: 0,-59 - 9427: -5,-73 - 9428: -5,-72 - 9429: -2,-69 - 9430: -2,-70 - 9431: -2,-71 - 9451: 72,-51 - 9502: 15,-26 - 9503: 15,-25 - 10602: 76,-45 - 12658: -41,22 - 13393: -41,-63 - 14789: -20,50 - 14889: -12,23 - 14890: -2,23 - 14891: 5,23 - 14892: 15,23 - 15260: -6,-70 - 15335: -41,21 - 15336: -41,20 - 15337: -41,17 - 15338: -41,16 - 15339: -41,15 - 15340: -41,14 - 15341: -41,11 - 15342: -41,10 - 15343: -41,9 - 15385: 0,-79 - 15386: 0,-78 - 15387: 0,-77 - 15504: 91,-4 - 15505: 91,-3 - 15516: 96,-3 - 17435: 7,82 - 17443: 7,74 - 18708: -11,-9 - 18709: -5,-9 - 18710: 2,-9 - 18711: 8,-9 - 18739: 14,-9 - 19647: 40,-10 - 19648: 40,-11 - 19649: 40,-13 - 19650: 40,-14 - 20152: -18,-5 - 20153: -18,-4 - 20154: -18,-3 - 20155: -18,-2 - 20156: -18,2 - 20157: -18,3 - 20158: -18,4 - 20159: -18,5 - 20160: -18,9 - 20161: -18,10 - 20162: -18,11 - 20163: -18,12 - 20164: -18,16 - 20165: -18,17 - 20166: -18,18 - 20167: -18,19 - 23055: -16,-25 - 23762: 0,-44 + 743: 69,-42 + 744: 69,-43 + 745: 69,-44 + 746: 69,-46 + 759: 69,-45 + 857: 2,-17 + 858: 2,-16 + 859: 2,-15 + 860: 2,-14 + 1058: 44,-15 + 1059: 44,-16 + 1936: -15,50 + 1937: -15,49 + 1938: -15,48 + 1946: -18,52 + 1947: -18,51 + 1948: -18,50 + 1952: -18,48 + 1953: -18,47 + 1954: -18,46 + 1955: -20,47 + 1956: -20,48 + 1957: -20,49 + 1958: -20,51 + 1999: -18,36 + 2000: -18,35 + 2001: -18,34 + 2002: -18,32 + 2003: -18,31 + 2004: -18,29 + 2005: -18,28 + 2006: -18,27 + 2007: -20,29 + 2008: -20,30 + 2009: -20,31 + 2010: -20,32 + 2011: -20,33 + 2012: -20,34 + 2142: -22,41 + 2234: -28,37 + 2235: -28,36 + 2236: -28,34 + 2237: -28,35 + 2238: -28,33 + 2239: -28,32 + 2249: -31,30 + 2250: -31,31 + 2583: -13,53 + 2654: -9,49 + 2655: -4,49 + 2894: -10,57 + 2901: -18,61 + 2902: -18,62 + 2903: -18,63 + 2904: -18,64 + 2972: -4,61 + 2973: -4,62 + 2974: -4,63 + 2975: -4,64 + 2976: -3,57 + 2984: -3,68 + 2986: -10,68 + 2999: -17,57 + 3008: -17,68 + 3097: -11,72 + 3098: -11,73 + 3099: -11,74 + 3100: -11,75 + 3107: -11,79 + 3108: -11,80 + 3109: -11,81 + 3110: -11,82 + 3111: -11,92 + 3112: -11,93 + 3113: -11,94 + 3114: -11,95 + 3133: -11,88 + 3134: -11,88 + 3135: -11,87 + 3136: -11,86 + 3137: -11,85 + 3157: -29,95 + 3158: -29,94 + 3159: -29,93 + 3160: -29,92 + 3161: -29,88 + 3162: -29,87 + 3163: -29,86 + 3164: -29,85 + 3165: -29,82 + 3166: -29,81 + 3167: -29,80 + 3168: -29,79 + 3169: -29,75 + 3170: -29,74 + 3171: -29,73 + 3172: -29,72 + 3184: -28,68 + 3399: 8,68 + 3485: 7,75 + 3536: 7,72 + 3537: 7,73 + 3538: 7,79 + 3539: 7,80 + 3540: 7,81 + 3647: 3,57 + 3694: 17,69 + 4006: -25,22 + 5022: 18,16 + 5023: 18,17 + 5024: 18,18 + 5025: 18,19 + 5026: 18,12 + 5027: 18,12 + 5028: 18,11 + 5029: 18,10 + 5030: 18,9 + 5049: 18,3 + 5050: 18,4 + 5051: 18,2 + 5052: 18,-2 + 5053: 18,-3 + 5054: 18,-4 + 5055: 18,-5 + 5066: -23,68 + 5353: -35,5 + 5354: -30,5 + 5355: -22,5 + 5419: -34,27 + 5420: -34,28 + 6071: -18,-12 + 6072: -18,-13 + 6073: -18,-14 + 6074: -18,-15 + 6075: -18,-16 + 6076: -18,-17 + 6158: 18,-17 + 6159: 18,-16 + 6160: 18,-15 + 6161: 18,-14 + 6162: 18,-13 + 6163: 18,-12 + 6184: -2,-14 + 6185: -2,-15 + 6194: 2,-17 + 6486: -21,-3 + 6487: -21,-2 + 6488: -21,-2 + 6491: -33,2 + 6492: -33,1 + 6493: -33,0 + 6494: -33,-1 + 6495: -33,-2 + 6496: -33,-3 + 6497: -33,-4 + 6498: -33,-5 + 6499: -33,-6 + 6500: -33,-7 + 6501: -33,-8 + 6502: -33,-9 + 6531: -31,1 + 6568: -35,-15 + 6569: -35,-14 + 6570: -35,-14 + 6571: -35,-13 + 6572: -35,-12 + 6594: -30,-12 + 6595: -30,-13 + 6596: -30,-14 + 6597: -30,-14 + 6598: -30,-15 + 6815: -26,-17 + 6816: -26,-16 + 6817: -26,-16 + 6818: -22,-17 + 6819: -22,-17 + 6820: -22,-16 + 6853: 7,-20 + 6854: -4,-20 + 6855: -11,-20 + 6860: 14,-20 + 6861: 18,5 + 6972: 25,5 + 7037: 32,5 + 7866: 62,-15 + 7867: 62,-14 + 7868: 58,-14 + 7869: 58,-27 + 7870: 60,-27 + 7871: 62,-28 + 7872: 62,-27 + 7873: 62,-26 + 7882: 60,-14 + 8084: 31,-11 + 8085: 25,-11 + 8086: 25,-11 + 8095: 41,-14 + 8096: 41,-12 + 8097: 41,-12 + 8098: 41,-12 + 8099: 41,-10 + 8100: 41,-11 + 8150: 41,-13 + 8151: 41,-13 + 8291: 48,-20 + 8292: 53,-20 + 8293: 53,-20 + 8522: 0,-76 + 8523: 0,-80 + 8527: -3,-78 + 8583: 11,-25 + 8584: 11,-26 + 8598: -7,-26 + 8599: -7,-25 + 8600: -7,-25 + 8664: 0,-27 + 8665: 0,-26 + 8666: 0,-25 + 8667: 0,-24 + 8709: 0,-35 + 8710: 0,-34 + 8711: 0,-34 + 8712: 0,-33 + 8713: 0,-32 + 8714: 0,-31 + 8715: 0,-31 + 8756: -3,-25 + 8757: -3,-25 + 8758: -3,-26 + 8791: -16,-26 + 8911: 2,-24 + 9212: 0,-50 + 9213: 0,-49 + 9214: 0,-49 + 9215: 0,-45 + 9216: 0,-46 + 9217: 0,-48 + 9218: 0,-48 + 9219: 0,-47 + 9220: 0,-42 + 9221: 0,-41 + 9222: 0,-40 + 9223: 0,-40 + 9224: 0,-39 + 9225: 0,-52 + 9226: 0,-53 + 9227: 0,-54 + 9228: 0,-55 + 9239: 0,-61 + 9240: 0,-60 + 9241: 0,-59 + 9265: -5,-73 + 9266: -5,-72 + 9267: -2,-69 + 9268: -2,-70 + 9269: -2,-71 + 9289: 72,-51 + 9340: 15,-26 + 9341: 15,-25 + 10440: 76,-45 + 11976: -41,22 + 12449: -41,-63 + 13845: -20,50 + 13945: -12,23 + 13946: -2,23 + 13947: 5,23 + 13948: 15,23 + 14316: -6,-70 + 14384: -41,21 + 14385: -41,20 + 14386: -41,17 + 14387: -41,16 + 14388: -41,15 + 14389: -41,14 + 14390: -41,11 + 14391: -41,10 + 14392: -41,9 + 14434: 0,-79 + 14435: 0,-78 + 14436: 0,-77 + 14553: 91,-4 + 14554: 91,-3 + 14565: 96,-3 + 16484: 7,82 + 16492: 7,74 + 17752: -11,-9 + 17753: -5,-9 + 17754: 2,-9 + 17755: 8,-9 + 17783: 14,-9 + 18691: 40,-10 + 18692: 40,-11 + 18693: 40,-13 + 18694: 40,-14 + 19158: -18,-5 + 19159: -18,-4 + 19160: -18,-3 + 19161: -18,-2 + 19162: -18,2 + 19163: -18,3 + 19164: -18,4 + 19165: -18,5 + 19166: -18,9 + 19167: -18,10 + 19168: -18,11 + 19169: -18,12 + 19170: -18,16 + 19171: -18,17 + 19172: -18,18 + 19173: -18,19 + 22061: -16,-25 + 22768: 0,-44 + 23787: 3,68 + 23799: 62,-13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 4089: -18,19 - 4090: -18,18 - 4091: -18,17 - 4092: -18,16 - 4093: -18,11 - 4094: -18,10 - 4095: -18,9 - 4096: -18,12 + 3939: -18,19 + 3940: -18,18 + 3941: -18,17 + 3942: -18,16 + 3943: -18,11 + 3944: -18,10 + 3945: -18,9 + 3946: -18,12 - node: color: '#FFFFFFFF' id: BushAThree decals: - 882: -36,48 - 883: -36,50 + 769: -36,48 + 770: -36,50 - node: color: '#FFFFFFFF' id: BushCThree decals: - 2845: -33,41 + 2722: -33,41 - node: color: '#FFFFFFFF' id: Busha1 decals: - 979: -43.133636,-38.091503 - 1564: -38,35 + 862: -43.133636,-38.091503 + 1446: -38,35 - node: color: '#FFFFFFFF' id: Busha2 decals: - 1565: -38,31 + 1447: -38,31 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1566: -41,31 + 1448: -41,31 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 881: -36,50 + 768: -36,50 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 15434: 73,-20 + 14483: 73,-20 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 880: -36,48 - 978: -44.91489,-39.19307 + 767: -36,48 + 861: -44.91489,-39.19307 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 535: -2,-84 - 536: -1,-84 - 537: 0,-84 + 430: -2,-84 + 431: -1,-84 + 432: 0,-84 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 529: -2,-84 - 530: -1,-84 - 531: 0,-84 + 424: -2,-84 + 425: -1,-84 + 426: 0,-84 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 532: -2,-84 - 533: -1,-84 - 534: 0,-84 + 427: -2,-84 + 428: -1,-84 + 429: 0,-84 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 518: -5.662094,-66.98197 + 413: -5.662094,-66.98197 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 519: -3.6811028,-66.96635 - 522: -6.9387937,-72.70105 - 524: -6.0637937,-73.82605 + 414: -3.6811028,-66.96635 + 417: -6.9387937,-72.70105 + 419: -6.0637937,-73.82605 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 521: -1.9936025,-67.85697 - 523: -3.0169184,-73.9823 + 416: -1.9936025,-67.85697 + 418: -3.0169184,-73.9823 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 520: -6.9623528,-67.85697 + 415: -6.9623528,-67.85697 - node: color: '#FFFFFFFF' id: Caution decals: - 845: 92,26 - 13202: -58,22 + 732: 92,26 + 12258: -58,22 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 851: -53,54 - 870: 69,-47 - 871: 69,-44 + 738: -53,54 + 757: 69,-47 + 758: 69,-44 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 13199: -58,25 - 13200: -58,25 - 13201: -58,25 + 12255: -58,25 + 12256: -58,25 + 12257: -58,25 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 19255: 54.897575,4.5646844 + 18299: 54.897575,4.5646844 - node: color: '#3EB38896' id: CheckerNESW decals: - 13910: -68,56 - 13911: -67,56 - 13912: -68,55 - 13913: -68,54 - 13914: -67,54 - 13915: -67,55 - 13916: -66,56 - 13917: -66,55 - 13918: -66,54 - 13919: -65,54 - 13920: -65,55 - 13921: -65,56 - 13922: -64,54 - 13923: -64,55 - 13924: -64,56 - 13925: -63,56 - 13926: -63,55 - 13927: -63,54 - 13928: -62,54 - 13929: -62,55 - 13930: -62,56 - 13931: -62,57 - 13932: -63,57 - 13933: -63,58 - 13934: -62,58 - 13935: -62,59 - 13936: -63,59 - 13937: -63,60 - 13938: -62,60 - 13939: -62,61 - 13940: -63,61 - 13941: -70,55 + 12966: -68,56 + 12967: -67,56 + 12968: -68,55 + 12969: -68,54 + 12970: -67,54 + 12971: -67,55 + 12972: -66,56 + 12973: -66,55 + 12974: -66,54 + 12975: -65,54 + 12976: -65,55 + 12977: -65,56 + 12978: -64,54 + 12979: -64,55 + 12980: -64,56 + 12981: -63,56 + 12982: -63,55 + 12983: -63,54 + 12984: -62,54 + 12985: -62,55 + 12986: -62,56 + 12987: -62,57 + 12988: -63,57 + 12989: -63,58 + 12990: -62,58 + 12991: -62,59 + 12992: -63,59 + 12993: -63,60 + 12994: -62,60 + 12995: -62,61 + 12996: -63,61 + 12997: -70,55 - node: color: '#808080FF' id: CheckerNESW decals: - 204: -14,54 - 205: -14,53 - 206: -14,52 + 187: -14,54 + 188: -14,53 + 189: -14,52 - node: color: '#52B4E996' id: CheckerNWSE decals: - 649: 1,-38 + 544: 1,-38 - node: color: '#9D9D97FF' id: CheckerNWSE decals: - 2637: 2,52 - 2638: 2,50 - 2639: 2,51 - 2640: 2,51 - 2641: 1,51 - 2642: 1,50 - 2643: 0,50 - 2644: -1,50 - 2645: -1,51 - 2646: 0,51 - 2647: 0,52 - 2648: -1,54 - 2649: 0,53 - 2650: -1,53 - 2651: 0,54 - 2652: 1,53 - 2653: 2,53 - 2654: 3,54 - 2655: 3,50 - 2656: 3,51 - 2657: 3,52 - 2658: 3,53 - 2659: 1,52 - 2660: -1,52 + 2514: 2,52 + 2515: 2,50 + 2516: 2,51 + 2517: 2,51 + 2518: 1,51 + 2519: 1,50 + 2520: 0,50 + 2521: -1,50 + 2522: -1,51 + 2523: 0,51 + 2524: 0,52 + 2525: -1,54 + 2526: 0,53 + 2527: -1,53 + 2528: 0,54 + 2529: 1,53 + 2530: 2,53 + 2531: 3,54 + 2532: 3,50 + 2533: 3,51 + 2534: 3,52 + 2535: 3,53 + 2536: 1,52 + 2537: -1,52 - node: color: '#DA8BC9FF' id: CheckerNWSE decals: - 16043: -67,-46 - 16044: -66,-46 - 16045: -66,-47 - 16046: -66,-48 - 16047: -65,-47 - 16048: -65,-48 - 16049: -64,-48 - 16050: -64,-47 - 16051: -64,-46 - 16052: -65,-46 - 16053: -63,-46 - 16054: -62,-46 - 16055: -62,-47 - 16056: -62,-48 - 16057: -63,-45 - 16058: -64,-45 - 16059: -65,-45 + 15092: -67,-46 + 15093: -66,-46 + 15094: -66,-47 + 15095: -66,-48 + 15096: -65,-47 + 15097: -65,-48 + 15098: -64,-48 + 15099: -64,-47 + 15100: -64,-46 + 15101: -65,-46 + 15102: -63,-46 + 15103: -62,-46 + 15104: -62,-47 + 15105: -62,-48 + 15106: -63,-45 + 15107: -64,-45 + 15108: -65,-45 - node: color: '#FFFF00D8' id: ConcreteTrimCornerNe decals: - 13942: -62,61 + 12998: -62,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNe decals: - 13955: -62,61 + 13011: -62,61 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 2090: -21,39 - 2186: -20,40 - 7840: 75,-16 - 7886: 68,-24 - 12594: -40,34 - 12607: -38,33 - 15598: 97,7 + 1970: -21,39 + 2065: -20,40 + 7688: 75,-16 + 7734: 68,-24 + 11912: -40,34 + 11925: -38,33 + 14647: 97,7 - node: color: '#FFFF00D9' id: ConcreteTrimCornerNw decals: - 13943: -63,61 + 12999: -63,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNw decals: - 13956: -63,61 - 13969: -68,56 + 13012: -63,61 + 13025: -68,56 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 2089: -17,39 - 2185: -18,40 - 7885: 74,-24 - 7892: 67,-16 + 1969: -17,39 + 2064: -18,40 + 7733: 74,-24 + 7740: 67,-16 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSe decals: - 13958: -62,54 + 13014: -62,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 2091: -21,43 - 2184: -20,42 - 7921: 68,-17 - 7946: 75,-25 + 1971: -21,43 + 2063: -20,42 + 7769: 68,-17 + 7794: 75,-25 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSw decals: - 13965: -68,54 + 13021: -68,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 2092: -17,43 - 2188: -18,42 - 7920: 74,-17 - 7947: 67,-25 - 12598: -38,32 + 1972: -17,43 + 2067: -18,42 + 7768: 74,-17 + 7795: 67,-25 + 11916: -38,32 - node: color: '#FFFFFFFF' id: ConcreteTrimEndE decals: - 2173: -18,41 + 2052: -18,41 - node: color: '#FFFFFFFF' id: ConcreteTrimEndN decals: - 2171: -19,42 + 2050: -19,42 - node: color: '#FFFFFFFF' id: ConcreteTrimEndS decals: - 2172: -19,40 - 12595: -40,32 + 2051: -19,40 + 11913: -40,32 - node: color: '#FFFF00FF' id: ConcreteTrimEndW decals: - 13967: -70,55 + 13023: -70,55 - node: color: '#FFFFFFFF' id: ConcreteTrimEndW decals: - 2170: -20,41 + 2049: -20,41 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNe decals: - 13971: -67,56 + 13027: -67,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 2097: -21,38 - 2099: -22,39 - 2174: -19,41 - 2192: -21,40 - 2193: -20,39 - 2206: -18,43 - 2207: -17,42 - 2852: -33,43 - 5947: -3,9 - 5992: -1,-5 - 6005: -1,7 - 6006: -1,3 - 6007: -1,-1 - 7902: 67,-24 - 7903: 68,-25 - 7904: 67,-22 - 7905: 67,-19 - 7966: 75,-22 - 7967: 75,-19 - 12605: -40,33 - 12606: -38,32 + 1976: -21,38 + 1978: -22,39 + 2053: -19,41 + 2071: -21,40 + 2072: -20,39 + 2085: -18,43 + 2086: -17,42 + 2729: -33,43 + 5795: -3,9 + 5840: -1,-5 + 5853: -1,7 + 5854: -1,3 + 5855: -1,-1 + 7750: 67,-24 + 7751: 68,-25 + 7752: 67,-22 + 7753: 67,-19 + 7814: 75,-22 + 7815: 75,-19 + 11923: -40,33 + 11924: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNw decals: - 13968: -68,55 - 13970: -67,56 - 13976: -63,56 + 13024: -68,55 + 13026: -67,56 + 13032: -63,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 2096: -16,39 - 2098: -17,38 - 2175: -19,41 - 2203: -21,42 - 2204: -21,42 - 2205: -20,43 - 2208: -17,40 - 2209: -18,39 - 5948: 1,9 - 5993: -1,-5 - 6002: -1,-1 - 6003: -1,3 - 6004: -1,7 - 7923: 74,-25 - 7924: 75,-24 - 7925: 75,-22 - 7926: 75,-19 - 7927: 67,-22 - 7928: 67,-19 + 1975: -16,39 + 1977: -17,38 + 2054: -19,41 + 2082: -21,42 + 2083: -21,42 + 2084: -20,43 + 2087: -17,40 + 2088: -18,39 + 5796: 1,9 + 5841: -1,-5 + 5850: -1,-1 + 5851: -1,3 + 5852: -1,7 + 7771: 74,-25 + 7772: 75,-24 + 7773: 75,-22 + 7774: 75,-19 + 7775: 67,-22 + 7776: 67,-19 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSe decals: - 13959: -63,54 + 13015: -63,54 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 2100: -21,44 - 2176: -19,41 - 2194: -21,42 - 2195: -20,43 - 2196: -17,40 - 2197: -17,40 - 2198: -18,39 - 2267: -22,43 - 2851: -33,40 - 5945: -3,-6 - 5995: -1,-5 - 5996: -1,-1 - 5997: -1,3 - 5998: -1,7 - 7907: 67,-22 - 7908: 67,-19 - 7909: 67,-17 - 7910: 68,-16 - 7964: 75,-19 - 7965: 75,-22 - 12604: -40,33 + 1979: -21,44 + 2055: -19,41 + 2073: -21,42 + 2074: -20,43 + 2075: -17,40 + 2076: -17,40 + 2077: -18,39 + 2145: -22,43 + 2728: -33,40 + 5793: -3,-6 + 5843: -1,-5 + 5844: -1,-1 + 5845: -1,3 + 5846: -1,7 + 7755: 67,-22 + 7756: 67,-19 + 7757: 67,-17 + 7758: 68,-16 + 7812: 75,-19 + 7813: 75,-22 + 11922: -40,33 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSw decals: - 13960: -63,54 - 13966: -68,55 + 13016: -63,54 + 13022: -68,55 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 2101: -17,44 - 2102: -16,43 - 2177: -19,41 - 2199: -17,42 - 2200: -18,43 - 2201: -20,39 - 2202: -21,40 - 2843: -32,44 - 5946: 1,-6 - 5994: -1,-5 - 5999: -1,7 - 6000: -1,3 - 6001: -1,-1 - 7899: 75,-22 - 7900: 75,-19 - 7901: 75,-17 - 7962: 67,-22 - 7963: 67,-19 - 12602: -40,34 - 12603: -38,33 + 1980: -17,44 + 1981: -16,43 + 2056: -19,41 + 2078: -17,42 + 2079: -18,43 + 2080: -20,39 + 2081: -21,40 + 2720: -32,44 + 5794: 1,-6 + 5842: -1,-5 + 5847: -1,7 + 5848: -1,3 + 5849: -1,-1 + 7747: 75,-22 + 7748: 75,-19 + 7749: 75,-17 + 7810: 67,-22 + 7811: 67,-19 + 11920: -40,34 + 11921: -38,33 - node: color: '#FFFF00D9' id: ConcreteTrimLineE decals: - 13944: -62,60 - 13945: -62,59 - 13946: -62,59 - 13947: -62,58 - 13948: -62,57 - 13949: -62,56 + 13000: -62,60 + 13001: -62,59 + 13002: -62,59 + 13003: -62,58 + 13004: -62,57 + 13005: -62,56 - node: color: '#FFFF00FF' id: ConcreteTrimLineE decals: - 13950: -62,56 - 13951: -62,57 - 13952: -62,58 - 13953: -62,59 - 13954: -62,60 - 13957: -62,55 + 13006: -62,56 + 13007: -62,57 + 13008: -62,58 + 13009: -62,59 + 13010: -62,60 + 13013: -62,55 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 2103: -22,40 - 2104: -22,41 - 2189: -21,41 - 2268: -22,42 - 5377: 0,-6 - 5378: 0,-6 - 5379: 0,-5 - 5380: 0,-4 - 5381: 0,-3 - 5382: 0,-2 - 5383: 0,-1 - 5384: 0,0 - 5385: 0,1 - 5386: 0,1 - 5387: 0,2 - 5388: 0,2 - 5389: 0,3 - 5390: 0,3 - 5391: 0,4 - 5392: 0,5 - 5393: 0,5 - 5394: 0,6 - 5395: 0,7 - 5396: 0,8 - 5397: 0,8 - 5398: 0,9 - 5988: 0,7 - 5989: 0,3 - 5990: 0,-1 - 5991: 0,-5 - 7872: 67,-21 - 7873: 67,-20 - 7874: 67,-23 - 7922: 67,-18 - 7929: 75,-17 - 7930: 75,-18 - 7931: 75,-20 - 7932: 75,-21 - 7933: 75,-23 - 7934: 75,-24 - 7958: 66,-22 - 7959: 66,-19 + 1982: -22,40 + 1983: -22,41 + 2068: -21,41 + 2146: -22,42 + 5225: 0,-6 + 5226: 0,-6 + 5227: 0,-5 + 5228: 0,-4 + 5229: 0,-3 + 5230: 0,-2 + 5231: 0,-1 + 5232: 0,0 + 5233: 0,1 + 5234: 0,1 + 5235: 0,2 + 5236: 0,2 + 5237: 0,3 + 5238: 0,3 + 5239: 0,4 + 5240: 0,5 + 5241: 0,5 + 5242: 0,6 + 5243: 0,7 + 5244: 0,8 + 5245: 0,8 + 5246: 0,9 + 5836: 0,7 + 5837: 0,3 + 5838: 0,-1 + 5839: 0,-5 + 7720: 67,-21 + 7721: 67,-20 + 7722: 67,-23 + 7770: 67,-18 + 7777: 75,-17 + 7778: 75,-18 + 7779: 75,-20 + 7780: 75,-21 + 7781: 75,-23 + 7782: 75,-24 + 7806: 66,-22 + 7807: 66,-19 - node: color: '#FFFF00FF' id: ConcreteTrimLineN decals: - 13972: -66,56 - 13973: -65,56 - 13974: -65,56 - 13975: -64,56 + 13028: -66,56 + 13029: -65,56 + 13030: -65,56 + 13031: -64,56 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 2086: -20,38 - 2087: -19,38 - 2088: -18,38 - 2191: -19,39 - 7841: 74,-16 - 7842: 73,-16 - 7843: 72,-16 - 7844: 71,-16 - 7845: 70,-16 - 7846: 69,-16 - 7847: 68,-16 - 7848: 68,-19 - 7849: 69,-19 - 7850: 70,-19 - 7851: 71,-19 - 7852: 72,-19 - 7853: 73,-19 - 7854: 74,-19 - 7855: 68,-22 - 7856: 70,-22 - 7857: 71,-22 - 7858: 72,-22 - 7859: 73,-22 - 7860: 69,-22 - 7861: 73,-22 - 7862: 74,-22 - 7887: 69,-25 - 7888: 70,-25 - 7889: 71,-25 - 7890: 72,-25 - 7891: 73,-25 - 12593: -41,34 - 12599: -39,33 - 12600: -38,33 + 1966: -20,38 + 1967: -19,38 + 1968: -18,38 + 2070: -19,39 + 7689: 74,-16 + 7690: 73,-16 + 7691: 72,-16 + 7692: 71,-16 + 7693: 70,-16 + 7694: 69,-16 + 7695: 68,-16 + 7696: 68,-19 + 7697: 69,-19 + 7698: 70,-19 + 7699: 71,-19 + 7700: 72,-19 + 7701: 73,-19 + 7702: 74,-19 + 7703: 68,-22 + 7704: 70,-22 + 7705: 71,-22 + 7706: 72,-22 + 7707: 73,-22 + 7708: 69,-22 + 7709: 73,-22 + 7710: 74,-22 + 7735: 69,-25 + 7736: 70,-25 + 7737: 71,-25 + 7738: 72,-25 + 7739: 73,-25 + 11911: -41,34 + 11917: -39,33 + 11918: -38,33 - node: color: '#FFFF00FF' id: ConcreteTrimLineS decals: - 13961: -64,54 - 13962: -65,54 - 13963: -66,54 - 13964: -67,54 + 13017: -64,54 + 13018: -65,54 + 13019: -66,54 + 13020: -67,54 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 2105: -20,44 - 2106: -19,44 - 2107: -18,44 - 2187: -19,43 - 7865: 68,-19 - 7866: 69,-19 - 7867: 70,-19 - 7868: 71,-19 - 7869: 72,-19 - 7870: 73,-19 - 7871: 74,-19 - 7875: 68,-22 - 7876: 69,-22 - 7877: 70,-22 - 7878: 71,-22 - 7879: 73,-22 - 7880: 73,-22 - 7881: 72,-22 - 7882: 74,-22 - 7883: 73,-22 - 7911: 69,-16 - 7912: 70,-16 - 7913: 71,-16 - 7914: 71,-16 - 7915: 72,-16 - 7916: 72,-16 - 7917: 72,-16 - 7918: 72,-16 - 7919: 73,-16 - 7935: 68,-25 - 7936: 68,-25 - 7937: 68,-25 - 7938: 69,-25 - 7939: 70,-25 - 7940: 71,-25 - 7941: 71,-25 - 7942: 72,-25 - 7943: 72,-25 - 7944: 74,-25 - 7945: 74,-25 - 12592: -41,34 - 12596: -39,33 - 12597: -38,32 + 1984: -20,44 + 1985: -19,44 + 1986: -18,44 + 2066: -19,43 + 7713: 68,-19 + 7714: 69,-19 + 7715: 70,-19 + 7716: 71,-19 + 7717: 72,-19 + 7718: 73,-19 + 7719: 74,-19 + 7723: 68,-22 + 7724: 69,-22 + 7725: 70,-22 + 7726: 71,-22 + 7727: 73,-22 + 7728: 73,-22 + 7729: 72,-22 + 7730: 74,-22 + 7731: 73,-22 + 7759: 69,-16 + 7760: 70,-16 + 7761: 71,-16 + 7762: 71,-16 + 7763: 72,-16 + 7764: 72,-16 + 7765: 72,-16 + 7766: 72,-16 + 7767: 73,-16 + 7783: 68,-25 + 7784: 68,-25 + 7785: 68,-25 + 7786: 69,-25 + 7787: 70,-25 + 7788: 71,-25 + 7789: 71,-25 + 7790: 72,-25 + 7791: 72,-25 + 7792: 74,-25 + 7793: 74,-25 + 11910: -41,34 + 11914: -39,33 + 11915: -38,32 + 23792: -5,59 - node: color: '#FFFF00FF' id: ConcreteTrimLineW decals: - 13977: -63,57 - 13978: -63,58 - 13979: -63,59 - 13980: -63,59 - 13981: -63,60 + 13033: -63,57 + 13034: -63,58 + 13035: -63,59 + 13036: -63,59 + 13037: -63,60 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 2093: -16,42 - 2094: -16,41 - 2095: -16,40 - 2190: -17,41 - 2839: -32,40 - 2840: -32,41 - 2841: -32,42 - 2842: -32,43 - 5399: -2,8 - 5400: -2,7 - 5401: -2,6 - 5402: -2,5 - 5403: -2,5 - 5404: -2,4 - 5405: -2,3 - 5406: -2,2 - 5407: -2,1 - 5408: -2,1 - 5409: -2,0 - 5410: -2,-1 - 5411: -2,-2 - 5412: -2,-2 - 5413: -2,-3 - 5414: -2,-4 - 5415: -2,-4 - 5416: -2,-5 - 5417: -2,-5 - 5418: -2,-6 - 5984: -2,-5 - 5985: -2,-1 - 5986: -2,3 - 5987: -2,7 - 7863: 75,-21 - 7864: 75,-20 - 7884: 75,-23 - 7893: 67,-17 - 7894: 67,-18 - 7895: 67,-20 - 7896: 67,-21 - 7897: 67,-23 - 7898: 67,-24 - 7906: 75,-18 - 7960: 76,-19 - 7961: 76,-22 - 12601: -40,33 - 18605: -2,9 + 1973: -16,41 + 1974: -16,40 + 2069: -17,41 + 2716: -32,40 + 2717: -32,41 + 2718: -32,42 + 2719: -32,43 + 5247: -2,8 + 5248: -2,7 + 5249: -2,6 + 5250: -2,5 + 5251: -2,5 + 5252: -2,4 + 5253: -2,3 + 5254: -2,2 + 5255: -2,1 + 5256: -2,1 + 5257: -2,0 + 5258: -2,-1 + 5259: -2,-2 + 5260: -2,-2 + 5261: -2,-3 + 5262: -2,-4 + 5263: -2,-4 + 5264: -2,-5 + 5265: -2,-5 + 5266: -2,-6 + 5832: -2,-5 + 5833: -2,-1 + 5834: -2,3 + 5835: -2,7 + 7711: 75,-21 + 7712: 75,-20 + 7732: 75,-23 + 7741: 67,-17 + 7742: 67,-18 + 7743: 67,-20 + 7744: 67,-21 + 7745: 67,-23 + 7746: 67,-24 + 7754: 75,-18 + 7808: 76,-19 + 7809: 76,-22 + 11919: -40,33 + 17654: -2,9 + 23791: -16,42 - node: color: '#FFFFFF25' id: Damaged decals: - 18606: 63,-40 - 18607: 64,-40 - 18608: 59,-42 - 18609: 60,-42 - 18610: 58,-42 + 17655: 63,-40 + 17656: 64,-40 + 17657: 59,-42 + 17658: 60,-42 + 17659: 58,-42 - node: color: '#FFFFFFFF' id: Delivery @@ -20145,126 +20164,126 @@ entities: 30: 17,45 31: 16,43 32: 17,41 - 136: -28,8 - 139: -25,15 - 140: -28,15 - 149: -39,23 - 160: 15,71 - 161: 15,70 - 162: 14,67 - 163: 15,66 - 164: 12,72 - 166: 30,60 - 167: 29,60 - 168: 28,60 - 698: -41,-37 - 725: 13,13 - 726: 13,14 - 727: 13,15 - 728: 13,16 - 729: -15,13 - 730: -15,14 - 731: -15,15 - 732: -15,16 - 733: 58,2 - 734: 62,2 - 735: 66,2 - 747: 61,12 - 958: 30,32 - 1055: -32,-46 - 1056: -32,-39 - 1059: -32,-44 - 1060: -32,-45 - 1065: -34,-36 - 1066: -33,-36 - 1215: 61,6 - 1216: 63,6 - 1243: 63,3 - 3124: -2,64 - 3125: -2,63 - 3126: -2,62 - 3127: -2,61 - 3218: -2,64 - 3219: -2,63 - 3220: -2,62 - 3221: -2,61 - 6008: -8,-16 - 6009: -8,-17 - 6010: -8,-13 - 6011: -8,-12 - 6018: -16,-16 - 6019: -16,-15 - 6020: -16,-14 - 6021: -16,-13 - 6022: -14,-16 - 6023: -14,-15 - 6024: -14,-14 - 6025: -14,-13 - 6026: -12,-13 - 6027: -12,-14 - 6028: -12,-15 - 6029: -12,-16 - 6030: -10,-16 - 6031: -10,-15 - 6032: -10,-14 - 6033: -10,-13 - 6034: -10,-13 - 6209: -13,-18 - 6210: -12,-18 - 6211: -11,-18 - 17242: -46,-9 - 17243: -46,-10 - 17244: -45,-10 - 17245: -45,-9 - 17246: -45,-6 - 17247: -47,-6 - 17248: -46,-6 - 17249: -45,-7 - 17250: -46,-7 - 17251: -48,-6 - 17252: -49,-6 - 17253: -49,-10 - 17254: -48,-10 - 17255: -47,-10 - 17256: -47,-9 - 17257: -47,-7 - 17688: -67,-13 - 17689: -68,-13 - 17690: -68,-12 - 17691: -67,-12 - 17692: -67,-11 - 17693: -68,-11 - 17694: -68,-10 - 17695: -67,-10 - 17696: -69,-13 - 17697: -69,-12 - 17698: -70,-12 - 17699: -70,-13 - 17700: -71,-13 - 17701: -71,-12 - 17702: -72,-12 - 17703: -72,-13 - 17704: -73,-13 - 17705: -73,-11 - 17706: -72,-11 - 17707: -72,-10 - 17708: -73,-10 - 17709: -73,-12 - 19260: 70,1 - 19261: 70,0 - 19262: 70,-1 + 119: -28,8 + 122: -25,15 + 123: -28,15 + 132: -39,23 + 143: 15,71 + 144: 15,70 + 145: 14,67 + 146: 15,66 + 147: 12,72 + 149: 30,60 + 150: 29,60 + 151: 28,60 + 593: -41,-37 + 620: 13,13 + 621: 13,14 + 622: 13,15 + 623: 13,16 + 624: -15,13 + 625: -15,14 + 626: -15,15 + 627: -15,16 + 628: 58,2 + 629: 62,2 + 630: 66,2 + 642: 61,12 + 845: 30,32 + 937: -32,-46 + 938: -32,-39 + 941: -32,-44 + 942: -32,-45 + 947: -34,-36 + 948: -33,-36 + 1097: 61,6 + 1098: 63,6 + 1125: 63,3 + 3000: -2,64 + 3001: -2,63 + 3002: -2,62 + 3003: -2,61 + 3092: -2,64 + 3093: -2,63 + 3094: -2,62 + 3095: -2,61 + 5856: -8,-16 + 5857: -8,-17 + 5858: -8,-13 + 5859: -8,-12 + 5866: -16,-16 + 5867: -16,-15 + 5868: -16,-14 + 5869: -16,-13 + 5870: -14,-16 + 5871: -14,-15 + 5872: -14,-14 + 5873: -14,-13 + 5874: -12,-13 + 5875: -12,-14 + 5876: -12,-15 + 5877: -12,-16 + 5878: -10,-16 + 5879: -10,-15 + 5880: -10,-14 + 5881: -10,-13 + 5882: -10,-13 + 6057: -13,-18 + 6058: -12,-18 + 6059: -11,-18 + 16291: -46,-9 + 16292: -46,-10 + 16293: -45,-10 + 16294: -45,-9 + 16295: -45,-6 + 16296: -47,-6 + 16297: -46,-6 + 16298: -45,-7 + 16299: -46,-7 + 16300: -48,-6 + 16301: -49,-6 + 16302: -49,-10 + 16303: -48,-10 + 16304: -47,-10 + 16305: -47,-9 + 16306: -47,-7 + 16737: -67,-13 + 16738: -68,-13 + 16739: -68,-12 + 16740: -67,-12 + 16741: -67,-11 + 16742: -68,-11 + 16743: -68,-10 + 16744: -67,-10 + 16745: -69,-13 + 16746: -69,-12 + 16747: -70,-12 + 16748: -70,-13 + 16749: -71,-13 + 16750: -71,-12 + 16751: -72,-12 + 16752: -72,-13 + 16753: -73,-13 + 16754: -73,-11 + 16755: -72,-11 + 16756: -72,-10 + 16757: -73,-10 + 16758: -73,-12 + 18304: 70,1 + 18305: 70,0 + 18306: 70,-1 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 621: -115,19 - 622: -115,18 - 623: -115,17 - 945: 25,49 - 946: 25,50 - 947: 25,51 - 951: 33,28 + 516: -115,19 + 517: -115,18 + 518: -115,17 + 832: 25,49 + 833: 25,50 + 834: 25,51 + 838: 33,28 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -20279,10 +20298,10 @@ entities: 46: 24,54 47: 25,54 61: 9,31 - 152: -36,26 - 153: -36,32 - 154: -36,40 - 155: -38,42 + 135: -36,26 + 136: -36,32 + 137: -36,40 + 138: -38,42 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -20295,4031 +20314,4001 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 123: 24,-56 - 124: 30,-56 + 106: 24,-56 + 107: 30,-56 - node: color: '#0096FFFF' id: DeliveryGreyscale decals: - 1213: 57,6 - 1214: 59,6 - 1223: 59,3 + 1095: 57,6 + 1096: 59,6 + 1105: 59,3 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 746: 45,-1 + 641: 45,-1 - node: color: '#FF0000FF' id: DeliveryGreyscale decals: - 1224: 65,6 - 1225: 67,6 - 1226: 68,7 - 1227: 70,7 - 1228: 67,3 + 1106: 65,6 + 1107: 67,6 + 1108: 68,7 + 1109: 70,7 + 1110: 67,3 - node: color: '#DA8B8BFF' id: DiagonalCheckerAOverlay decals: - 15542: 78,1 - 15543: 82,1 - 15544: 83,1 - 15545: 81,1 - 15546: 84,1 - 15547: 86,1 - 15548: 88,1 - 15549: 87,1 - 15550: 77,1 - 15551: 79,1 + 14591: 78,1 + 14592: 82,1 + 14593: 83,1 + 14594: 81,1 + 14595: 84,1 + 14596: 86,1 + 14597: 88,1 + 14598: 87,1 + 14599: 77,1 + 14600: 79,1 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay decals: - 966: 0,-15 - 967: 0,-16 - 968: -1,-15 - 969: -1,-16 + 849: 0,-15 + 850: 0,-16 + 851: -1,-15 + 852: -1,-16 - node: color: '#B18BDAFF' id: DiagonalCheckerBOverlay decals: - 12642: -8,-34 - 12643: -7,-34 - 12644: -7,-33 - 12645: -8,-33 - 12646: -8,-32 - 12647: -7,-32 - 12648: -7,-32 + 11960: -8,-34 + 11961: -7,-34 + 11962: -7,-33 + 11963: -8,-33 + 11964: -8,-32 + 11965: -7,-32 + 11966: -7,-32 - node: color: '#DABC8BFF' id: DiagonalCheckerBOverlay decals: - 9567: 5,-32 - 9568: 5,-33 - 9569: 5,-34 - 9570: 6,-34 - 9571: 6,-33 - 9572: 6,-32 + 9405: 5,-32 + 9406: 5,-33 + 9407: 5,-34 + 9408: 6,-34 + 9409: 6,-33 + 9410: 6,-32 - node: color: '#FFFFFF02' id: DiagonalOverlay decals: - 14391: -16,23 - 14392: -15,23 - 14393: -14,23 - 14394: -13,23 - 14395: -6,23 - 14396: -5,23 - 14397: -4,23 - 14398: -3,23 - 14399: -19,16 - 14400: -19,17 - 14401: -19,18 - 14402: -19,19 - 14403: -19,9 - 14404: -19,10 - 14405: -19,11 - 14406: -19,12 - 14407: -22,30 - 14408: -22,31 - 14409: -22,32 - 14410: -22,33 - 14411: -21,34 - 14412: -21,33 - 14413: -21,32 - 14414: -21,30 - 14415: -21,29 - 14416: -21,31 - 14417: -19,27 - 14418: -19,28 - 14419: -19,29 - 14420: -19,32 - 14421: -19,31 - 14422: -19,36 - 14423: -19,35 - 14424: -19,34 - 14425: -23,41 - 14426: -19,48 - 14427: -19,47 - 14428: -19,46 - 14429: -17,47 - 14430: -17,48 - 14431: -16,48 - 14432: -16,49 - 14433: -17,49 - 14434: -17,50 - 14435: -16,50 - 14436: -17,51 - 14437: -19,52 - 14438: -19,51 - 14439: -19,50 - 14440: -22,49 - 14441: -22,50 - 14442: -21,50 - 14443: -21,51 - 14444: -21,49 - 14445: -22,48 - 14446: -21,47 - 14447: -21,48 - 14448: -18,57 - 14449: -19,57 - 14450: -20,57 - 14451: -11,57 - 14452: -12,57 - 14453: -13,57 - 14454: -4,57 - 14455: -5,57 - 14456: -6,57 - 14457: 2,57 - 14458: 1,57 - 14459: 0,57 - 14460: -5,64 - 14461: -5,63 - 14462: -5,62 - 14463: -5,61 - 14464: -6,68 - 14465: -5,68 - 14466: -4,68 - 14467: -13,68 - 14468: -11,68 - 14469: -12,68 - 14470: -20,68 - 14471: -19,68 - 14472: -18,68 - 14473: -25,68 - 14474: -26,68 - 14475: -24,68 - 14476: -29,68 - 14477: -30,68 - 14478: -31,68 - 14479: -30,75 - 14480: -30,74 - 14481: -30,73 - 14482: -30,72 - 14483: -30,82 - 14484: -30,81 - 14485: -30,80 - 14486: -30,79 - 14487: -30,86 - 14488: -30,85 - 14489: -30,88 - 14490: -30,95 - 14491: -30,94 - 14492: -30,92 - 14493: -30,93 - 14494: -12,94 - 14495: -12,93 - 14496: -12,92 - 14497: -12,95 - 14498: -12,85 - 14499: -12,86 - 14500: -12,87 - 14501: -12,88 - 14502: -12,79 - 14503: -12,80 - 14504: -12,81 - 14505: -12,82 - 14506: -12,72 - 14507: -12,73 - 14508: -12,74 - 14509: -12,75 - 14510: 2,68 - 14511: 1,68 - 14512: 0,68 - 14513: 7,68 - 14514: 6,68 - 14515: 5,68 - 14516: 6,74 - 14517: 6,72 - 14518: 6,73 - 14519: 6,75 - 14520: 6,81 - 14521: 6,82 - 14522: 6,80 - 14523: 6,79 - 14524: -11,49 - 14525: -10,49 - 14526: -6,49 - 14527: -5,49 - 14528: -19,2 - 14529: -19,4 - 14530: -19,5 - 14531: -12,14 - 14532: -12,15 - 14533: -6,14 - 14534: -7,14 - 14535: -8,14 - 14536: -9,14 - 14537: -10,14 - 14538: 1,16 - 14539: 0,16 - 14540: -2,16 - 14541: -3,16 - 14542: -1,16 - 14543: 8,14 - 14544: 7,14 - 14545: 6,14 - 14546: 4,14 - 14547: 5,14 - 14548: 10,15 - 14549: 10,14 - 14550: 17,18 - 14551: 17,19 - 14552: 17,17 - 14553: 17,16 - 14554: 14,23 - 14555: 13,23 - 14556: 12,23 - 14557: 11,23 - 14558: 1,23 - 14559: 2,23 - 14560: 3,23 - 14561: 4,23 - 14562: 17,9 - 14563: 17,10 - 14564: 17,11 - 14565: 17,12 - 14566: 17,3 - 14567: 17,2 - 14568: 17,4 - 14569: 17,5 - 14570: 24,5 - 14571: 23,5 - 14572: 22,5 - 14573: 21,5 - 14574: 31,5 - 14575: 30,5 - 14576: 29,5 - 14577: 28,5 - 14578: 17,-5 - 14579: 17,-4 - 14580: 17,-3 - 14581: 17,-2 - 14582: 17,-17 - 14583: 17,-16 - 14584: 17,-15 - 14585: 17,-14 - 14586: 17,-13 - 14587: 17,-12 - 14588: 21,-11 - 14589: 22,-11 - 14590: 23,-11 - 14591: 24,-11 - 14592: 28,-11 - 14593: 29,-11 - 14594: 30,-11 - 14595: 47,-20 - 14596: 46,-20 - 14597: 45,-20 - 14598: 44,-20 - 14599: 49,-20 - 14600: 50,-20 - 14601: 51,-20 - 14602: 52,-20 - 14603: 10,-20 - 14604: 11,-20 - 14605: 12,-20 - 14606: 13,-20 - 14607: 3,-20 - 14608: 4,-20 - 14609: 5,-20 - 14610: 6,-20 - 14611: -8,-20 - 14612: -7,-20 - 14613: -6,-20 - 14614: -5,-20 - 14615: -14,-20 - 14616: -13,-20 - 14617: -12,-20 - 14618: -15,-20 - 14619: -12,-26 - 14620: -12,-25 - 14621: -11,-25 - 14622: -11,-26 - 14623: -10,-26 - 14624: -10,-25 - 14625: -9,-25 - 14626: -9,-26 - 14627: -8,-26 - 14628: -8,-25 - 14629: 6,-25 - 14630: 7,-25 - 14631: 8,-25 - 14632: 9,-25 - 14633: 10,-25 - 14634: 10,-26 - 14635: 9,-26 - 14636: 8,-26 - 14637: 7,-26 - 14638: 6,-26 - 14639: -1,-27 - 14640: -1,-24 - 14641: -1,-25 - 14642: -1,-26 - 14643: -1,-34 - 14644: -1,-33 - 14645: -1,-32 - 14646: -1,-31 - 14647: -1,-35 - 14648: -1,-42 - 14649: -1,-40 - 14650: -1,-39 - 14651: -1,-50 - 14652: -1,-49 - 14653: -1,-48 - 14654: -1,-47 - 14655: -1,-46 - 14656: -1,-45 - 14657: -1,-44 - 14658: -1,-55 - 14659: -1,-54 - 14660: -1,-53 - 14661: -1,-52 - 14662: -1,-59 - 14663: -1,-60 - 14664: -1,-61 - 14665: -19,-12 - 14666: -19,-13 - 14667: -19,-14 - 14668: -19,-15 - 14669: -19,-16 - 14670: -19,-17 - 14671: -19,-2 - 14672: -19,-3 - 14673: -19,-4 - 14674: -19,-5 - 14675: -27,5 - 14676: -26,5 - 14677: -25,5 - 14678: -24,5 - 14679: -23,5 - 14680: -31,5 - 14681: -32,5 - 14682: -33,5 - 14683: -38,5 - 14684: -37,5 - 14685: -36,5 - 14686: -19,61 - 14687: -19,62 - 14688: -19,63 - 14689: -19,64 - 14690: 17,-40 - 14691: 17,-41 - 14692: 17,-42 - 14693: 17,-43 - 14694: 17,-45 - 14695: 17,-44 - 14696: 11,-35 - 14697: 12,-35 - 14698: 13,-35 - 14699: 17,-31 - 14700: 17,-32 - 14701: 17,-34 - 14702: 17,-33 - 14703: 27,-35 - 14704: 26,-35 - 14705: 25,-35 - 14706: 23,-35 - 14707: 22,-35 - 14708: 24,-35 - 14709: 32,-35 - 14710: 36,-35 - 14711: 35,-35 - 14712: 34,-35 - 14713: 33,-35 - 14714: 31,-35 - 14715: 27,-43 - 14716: 27,-44 - 14717: 27,-42 - 14718: 27,-41 - 14719: 27,-40 - 14720: 27,-51 - 14721: 27,-50 - 14722: 27,-49 - 14723: 27,-48 - 14724: 27,-47 - 14725: -18,-35 - 14726: -14,-35 - 14727: -15,-35 - 14728: -16,-35 - 14729: -17,-35 - 14730: -29,-35 - 14731: -28,-35 - 14732: -27,-35 - 14733: -26,-35 - 14734: -25,-35 - 14735: -24,-35 - 14736: -23,-26 - 14737: -23,-27 - 14738: -23,-28 - 14739: -23,-29 - 14740: -23,-30 - 14741: -29,-41 - 14742: -29,-40 - 14743: -29,-39 - 14744: -14,-43 - 14745: -14,-42 - 14746: -14,-41 - 14747: -14,-40 - 14748: -14,-39 - 14749: -14,-53 - 14750: -14,-52 - 14751: -14,-51 - 14752: -14,-50 - 14753: -14,-49 - 14754: -14,-48 - 14755: -14,-47 - 14756: 29,-49 - 14757: 29,-48 - 14758: 29,-47 - 14759: 29,-51 - 14760: 29,-52 - 14761: 29,-53 - 14762: 30,-46 - 14763: 31,-46 - 14764: 32,-46 - 14765: 33,-46 - 14766: 34,-46 - 15009: -30,87 - 15211: -1,-41 - 15360: -42,14 - 15361: -42,16 - 15362: -42,17 - 15363: -42,20 - 15364: -42,21 - 15365: -42,22 - 15366: -42,11 - 15367: -42,10 - 15368: -42,9 - 15381: -42,15 - 18712: -15,-9 - 18713: -14,-9 - 18714: -13,-9 - 18715: -12,-9 - 18716: -9,-9 - 18717: -8,-9 - 18718: -7,-9 - 18719: -6,-9 - 18720: -3,-9 - 18721: -2,-9 - 18722: -1,-9 - 18723: 0,-9 - 18724: 1,-9 - 18725: 4,-9 - 18726: 5,-9 - 18727: 6,-9 - 18728: 7,-9 - 18729: 10,-9 - 18730: 11,-9 - 18731: 12,-9 - 18732: 13,-9 - 19324: -14,28 - 19325: -14,27 - 19326: -14,26 - 19327: -13,26 - 19328: -12,26 - 19329: -11,27 - 19330: -11,28 - 19331: -11,29 - 19332: -11,30 - 19333: -12,30 - 19334: -11,31 - 19335: -11,32 - 19336: -11,33 - 19337: -12,34 - 19338: -13,34 - 19339: -14,34 - 19340: -14,33 - 19341: -14,32 - 19342: -14,31 - 19343: -15,31 - 19344: -15,30 - 19345: -15,29 - 19346: -10,30 - 19347: -9,30 - 19348: -9,34 - 19349: -10,34 - 19350: -9,26 - 19351: -10,26 - 19414: -14,29 - 19588: 34,-14 - 19589: 34,-13 - 19590: 34,-12 - 19591: 34,-11 - 19592: 34,-10 - 19593: 35,-9 - 19594: 36,-9 - 19595: 37,-9 - 19596: 39,-9 - 19597: 38,-9 - 19598: 40,-10 - 19599: 40,-11 - 19600: 40,-12 - 19601: 39,-12 - 19602: 38,-12 - 19603: 36,-12 - 19604: 35,-12 - 19605: 37,-12 - 19606: 35,-15 - 19607: 36,-15 - 19608: 37,-15 - 19609: 38,-15 - 19610: 39,-15 - 19611: 40,-14 - 19612: 40,-13 - 20190: -19,3 + 13447: -16,23 + 13448: -15,23 + 13449: -14,23 + 13450: -13,23 + 13451: -6,23 + 13452: -5,23 + 13453: -4,23 + 13454: -3,23 + 13455: -19,16 + 13456: -19,17 + 13457: -19,18 + 13458: -19,19 + 13459: -19,9 + 13460: -19,10 + 13461: -19,11 + 13462: -19,12 + 13463: -22,30 + 13464: -22,31 + 13465: -22,32 + 13466: -22,33 + 13467: -21,34 + 13468: -21,33 + 13469: -21,32 + 13470: -21,30 + 13471: -21,29 + 13472: -21,31 + 13473: -19,27 + 13474: -19,28 + 13475: -19,29 + 13476: -19,32 + 13477: -19,31 + 13478: -19,36 + 13479: -19,35 + 13480: -19,34 + 13481: -23,41 + 13482: -19,48 + 13483: -19,47 + 13484: -19,46 + 13485: -17,47 + 13486: -17,48 + 13487: -16,48 + 13488: -16,49 + 13489: -17,49 + 13490: -17,50 + 13491: -16,50 + 13492: -17,51 + 13493: -19,52 + 13494: -19,51 + 13495: -19,50 + 13496: -22,49 + 13497: -22,50 + 13498: -21,50 + 13499: -21,51 + 13500: -21,49 + 13501: -22,48 + 13502: -21,47 + 13503: -21,48 + 13504: -18,57 + 13505: -19,57 + 13506: -20,57 + 13507: -11,57 + 13508: -12,57 + 13509: -13,57 + 13510: -4,57 + 13511: -5,57 + 13512: -6,57 + 13513: 2,57 + 13514: 1,57 + 13515: 0,57 + 13516: -5,64 + 13517: -5,63 + 13518: -5,62 + 13519: -5,61 + 13520: -6,68 + 13521: -5,68 + 13522: -4,68 + 13523: -13,68 + 13524: -11,68 + 13525: -12,68 + 13526: -20,68 + 13527: -19,68 + 13528: -18,68 + 13529: -25,68 + 13530: -26,68 + 13531: -24,68 + 13532: -29,68 + 13533: -30,68 + 13534: -31,68 + 13535: -30,75 + 13536: -30,74 + 13537: -30,73 + 13538: -30,72 + 13539: -30,82 + 13540: -30,81 + 13541: -30,80 + 13542: -30,79 + 13543: -30,86 + 13544: -30,85 + 13545: -30,88 + 13546: -30,95 + 13547: -30,94 + 13548: -30,92 + 13549: -30,93 + 13550: -12,94 + 13551: -12,93 + 13552: -12,92 + 13553: -12,95 + 13554: -12,85 + 13555: -12,86 + 13556: -12,87 + 13557: -12,88 + 13558: -12,79 + 13559: -12,80 + 13560: -12,81 + 13561: -12,82 + 13562: -12,72 + 13563: -12,73 + 13564: -12,74 + 13565: -12,75 + 13566: 2,68 + 13567: 1,68 + 13568: 0,68 + 13569: 7,68 + 13570: 6,68 + 13571: 5,68 + 13572: 6,74 + 13573: 6,72 + 13574: 6,73 + 13575: 6,75 + 13576: 6,81 + 13577: 6,82 + 13578: 6,80 + 13579: 6,79 + 13580: -11,49 + 13581: -10,49 + 13582: -6,49 + 13583: -5,49 + 13584: -19,2 + 13585: -19,4 + 13586: -19,5 + 13587: -12,14 + 13588: -12,15 + 13589: -6,14 + 13590: -7,14 + 13591: -8,14 + 13592: -9,14 + 13593: -10,14 + 13594: 1,16 + 13595: 0,16 + 13596: -2,16 + 13597: -3,16 + 13598: -1,16 + 13599: 8,14 + 13600: 7,14 + 13601: 6,14 + 13602: 4,14 + 13603: 5,14 + 13604: 10,15 + 13605: 10,14 + 13606: 17,18 + 13607: 17,19 + 13608: 17,17 + 13609: 17,16 + 13610: 14,23 + 13611: 13,23 + 13612: 12,23 + 13613: 11,23 + 13614: 1,23 + 13615: 2,23 + 13616: 3,23 + 13617: 4,23 + 13618: 17,9 + 13619: 17,10 + 13620: 17,11 + 13621: 17,12 + 13622: 17,3 + 13623: 17,2 + 13624: 17,4 + 13625: 17,5 + 13626: 24,5 + 13627: 23,5 + 13628: 22,5 + 13629: 21,5 + 13630: 31,5 + 13631: 30,5 + 13632: 29,5 + 13633: 28,5 + 13634: 17,-5 + 13635: 17,-4 + 13636: 17,-3 + 13637: 17,-2 + 13638: 17,-17 + 13639: 17,-16 + 13640: 17,-15 + 13641: 17,-14 + 13642: 17,-13 + 13643: 17,-12 + 13644: 21,-11 + 13645: 22,-11 + 13646: 23,-11 + 13647: 24,-11 + 13648: 28,-11 + 13649: 29,-11 + 13650: 30,-11 + 13651: 47,-20 + 13652: 46,-20 + 13653: 45,-20 + 13654: 44,-20 + 13655: 49,-20 + 13656: 50,-20 + 13657: 51,-20 + 13658: 52,-20 + 13659: 10,-20 + 13660: 11,-20 + 13661: 12,-20 + 13662: 13,-20 + 13663: 3,-20 + 13664: 4,-20 + 13665: 5,-20 + 13666: 6,-20 + 13667: -8,-20 + 13668: -7,-20 + 13669: -6,-20 + 13670: -5,-20 + 13671: -14,-20 + 13672: -13,-20 + 13673: -12,-20 + 13674: -15,-20 + 13675: -12,-26 + 13676: -12,-25 + 13677: -11,-25 + 13678: -11,-26 + 13679: -10,-26 + 13680: -10,-25 + 13681: -9,-25 + 13682: -9,-26 + 13683: -8,-26 + 13684: -8,-25 + 13685: 6,-25 + 13686: 7,-25 + 13687: 8,-25 + 13688: 9,-25 + 13689: 10,-25 + 13690: 10,-26 + 13691: 9,-26 + 13692: 8,-26 + 13693: 7,-26 + 13694: 6,-26 + 13695: -1,-27 + 13696: -1,-24 + 13697: -1,-25 + 13698: -1,-26 + 13699: -1,-34 + 13700: -1,-33 + 13701: -1,-32 + 13702: -1,-31 + 13703: -1,-35 + 13704: -1,-42 + 13705: -1,-40 + 13706: -1,-39 + 13707: -1,-50 + 13708: -1,-49 + 13709: -1,-48 + 13710: -1,-47 + 13711: -1,-46 + 13712: -1,-45 + 13713: -1,-44 + 13714: -1,-55 + 13715: -1,-54 + 13716: -1,-53 + 13717: -1,-52 + 13718: -1,-59 + 13719: -1,-60 + 13720: -1,-61 + 13721: -19,-12 + 13722: -19,-13 + 13723: -19,-14 + 13724: -19,-15 + 13725: -19,-16 + 13726: -19,-17 + 13727: -19,-2 + 13728: -19,-3 + 13729: -19,-4 + 13730: -19,-5 + 13731: -27,5 + 13732: -26,5 + 13733: -25,5 + 13734: -24,5 + 13735: -23,5 + 13736: -31,5 + 13737: -32,5 + 13738: -33,5 + 13739: -38,5 + 13740: -37,5 + 13741: -36,5 + 13742: -19,61 + 13743: -19,62 + 13744: -19,63 + 13745: -19,64 + 13746: 17,-40 + 13747: 17,-41 + 13748: 17,-42 + 13749: 17,-43 + 13750: 17,-45 + 13751: 17,-44 + 13752: 11,-35 + 13753: 12,-35 + 13754: 13,-35 + 13755: 17,-31 + 13756: 17,-32 + 13757: 17,-34 + 13758: 17,-33 + 13759: 27,-35 + 13760: 26,-35 + 13761: 25,-35 + 13762: 23,-35 + 13763: 22,-35 + 13764: 24,-35 + 13765: 32,-35 + 13766: 36,-35 + 13767: 35,-35 + 13768: 34,-35 + 13769: 33,-35 + 13770: 31,-35 + 13771: 27,-43 + 13772: 27,-44 + 13773: 27,-42 + 13774: 27,-41 + 13775: 27,-40 + 13776: 27,-51 + 13777: 27,-50 + 13778: 27,-49 + 13779: 27,-48 + 13780: 27,-47 + 13781: -18,-35 + 13782: -14,-35 + 13783: -15,-35 + 13784: -16,-35 + 13785: -17,-35 + 13786: -29,-35 + 13787: -28,-35 + 13788: -27,-35 + 13789: -26,-35 + 13790: -25,-35 + 13791: -24,-35 + 13792: -23,-26 + 13793: -23,-27 + 13794: -23,-28 + 13795: -23,-29 + 13796: -23,-30 + 13797: -29,-41 + 13798: -29,-40 + 13799: -29,-39 + 13800: -14,-43 + 13801: -14,-42 + 13802: -14,-41 + 13803: -14,-40 + 13804: -14,-39 + 13805: -14,-53 + 13806: -14,-52 + 13807: -14,-51 + 13808: -14,-50 + 13809: -14,-49 + 13810: -14,-48 + 13811: -14,-47 + 13812: 29,-49 + 13813: 29,-48 + 13814: 29,-47 + 13815: 29,-51 + 13816: 29,-52 + 13817: 29,-53 + 13818: 30,-46 + 13819: 31,-46 + 13820: 32,-46 + 13821: 33,-46 + 13822: 34,-46 + 14065: -30,87 + 14267: -1,-41 + 14409: -42,14 + 14410: -42,16 + 14411: -42,17 + 14412: -42,20 + 14413: -42,21 + 14414: -42,22 + 14415: -42,11 + 14416: -42,10 + 14417: -42,9 + 14430: -42,15 + 17756: -15,-9 + 17757: -14,-9 + 17758: -13,-9 + 17759: -12,-9 + 17760: -9,-9 + 17761: -8,-9 + 17762: -7,-9 + 17763: -6,-9 + 17764: -3,-9 + 17765: -2,-9 + 17766: -1,-9 + 17767: 0,-9 + 17768: 1,-9 + 17769: 4,-9 + 17770: 5,-9 + 17771: 6,-9 + 17772: 7,-9 + 17773: 10,-9 + 17774: 11,-9 + 17775: 12,-9 + 17776: 13,-9 + 18368: -14,28 + 18369: -14,27 + 18370: -14,26 + 18371: -13,26 + 18372: -12,26 + 18373: -11,27 + 18374: -11,28 + 18375: -11,29 + 18376: -11,30 + 18377: -12,30 + 18378: -11,31 + 18379: -11,32 + 18380: -11,33 + 18381: -12,34 + 18382: -13,34 + 18383: -14,34 + 18384: -14,33 + 18385: -14,32 + 18386: -14,31 + 18387: -15,31 + 18388: -15,30 + 18389: -15,29 + 18390: -10,30 + 18391: -9,30 + 18392: -9,34 + 18393: -10,34 + 18394: -9,26 + 18395: -10,26 + 18458: -14,29 + 18632: 34,-14 + 18633: 34,-13 + 18634: 34,-12 + 18635: 34,-11 + 18636: 34,-10 + 18637: 35,-9 + 18638: 36,-9 + 18639: 37,-9 + 18640: 39,-9 + 18641: 38,-9 + 18642: 40,-10 + 18643: 40,-11 + 18644: 40,-12 + 18645: 39,-12 + 18646: 38,-12 + 18647: 36,-12 + 18648: 35,-12 + 18649: 37,-12 + 18650: 35,-15 + 18651: 36,-15 + 18652: 37,-15 + 18653: 38,-15 + 18654: 39,-15 + 18655: 40,-14 + 18656: 40,-13 + 19196: -19,3 - node: angle: 3.141592653589793 rad color: '#4A0000C0' id: Dirt decals: - 13645: -34,-79 - 13646: -35,-79 - 13647: -35,-78 - 13648: -35,-77 - 13649: -34,-77 - 13650: -33,-77 - 13651: -32,-77 - 13652: -31,-77 - 13653: -31,-78 - 13654: -31,-79 - 13655: -32,-80 - 13656: -30,-79 - 13657: -36,-79 - 13658: -36,-78 - 13659: -33,-76 - 13660: -34,-76 - 13661: -35,-76 - 13662: -32,-76 - 13663: -33,-79 - 13664: -34,-80 - 13665: -35,-80 - 13666: -37,-80 - 13667: -37,-77 - 13668: -37,-76 - 13669: -37,-73 - 13670: -29,-73 - 13671: -29,-74 - 13672: -29,-75 - 13673: -33,-73 - 13674: -32,-73 - 13675: -30,-75 + 12701: -34,-79 + 12702: -35,-79 + 12703: -35,-78 + 12704: -35,-77 + 12705: -34,-77 + 12706: -33,-77 + 12707: -32,-77 + 12708: -31,-77 + 12709: -31,-78 + 12710: -31,-79 + 12711: -32,-80 + 12712: -30,-79 + 12713: -36,-79 + 12714: -36,-78 + 12715: -33,-76 + 12716: -34,-76 + 12717: -35,-76 + 12718: -32,-76 + 12719: -33,-79 + 12720: -34,-80 + 12721: -35,-80 + 12722: -37,-80 + 12723: -37,-77 + 12724: -37,-76 + 12725: -37,-73 + 12726: -29,-73 + 12727: -29,-74 + 12728: -29,-75 + 12729: -33,-73 + 12730: -32,-73 + 12731: -30,-75 - node: angle: 3.141592653589793 rad color: '#4A0000FF' id: Dirt decals: - 13642: -34,-78 - 13643: -32,-78 - 13644: -32,-79 + 12698: -34,-78 + 12699: -32,-78 + 12700: -32,-79 - node: color: '#DABC8B7F' id: Dirt decals: - 13413: -40,-68 - 13414: -38,-66 - 13415: -39,-66 - 13416: -41,-66 - 13417: -41,-67 - 13418: -40,-66 - 13419: -41,-65 - 13420: -41,-63 + 12469: -40,-68 + 12470: -38,-66 + 12471: -39,-66 + 12472: -41,-66 + 12473: -41,-67 + 12474: -40,-66 + 12475: -41,-65 + 12476: -41,-63 - node: color: '#DABC8B95' id: Dirt decals: - 13411: -37,-66 - 13412: -37,-67 + 12467: -37,-66 + 12468: -37,-67 - node: color: '#DABC8BA7' id: Dirt decals: - 13421: -39,-65 - 13422: -40,-65 - 13423: -37,-65 - 13424: -38,-65 - 13425: -38,-67 - 13426: -34,-66 - 13427: -34,-65 - 13428: -33,-66 - 13429: -34,-67 - 13430: -34,-68 - 13431: -30,-66 - 13432: -31,-66 - 13433: -30,-65 - 13434: -31,-65 - 13435: -32,-66 - 13436: -32,-66 - 13437: -32,-65 - 13438: -33,-68 - 13439: -33,-67 - 13440: -32,-67 - 13441: -32,-68 - 13442: -31,-68 - 13443: -31,-67 + 12477: -39,-65 + 12478: -40,-65 + 12479: -37,-65 + 12480: -38,-65 + 12481: -38,-67 + 12482: -34,-66 + 12483: -34,-65 + 12484: -33,-66 + 12485: -34,-67 + 12486: -34,-68 + 12487: -30,-66 + 12488: -31,-66 + 12489: -30,-65 + 12490: -31,-65 + 12491: -32,-66 + 12492: -32,-66 + 12493: -32,-65 + 12494: -33,-68 + 12495: -33,-67 + 12496: -32,-67 + 12497: -32,-68 + 12498: -31,-68 + 12499: -31,-67 - node: color: '#DABC8BAE' id: Dirt decals: - 13410: -37,-65 + 12466: -37,-65 - node: color: '#DABC8BD0' id: Dirt decals: - 13406: -37,-68 - 13407: -36,-67 - 13408: -36,-68 - 13409: -36,-66 + 12462: -37,-68 + 12463: -36,-67 + 12464: -36,-68 + 12465: -36,-66 - node: color: '#DC5F31FF' id: Dirt decals: - 18626: 60,-40 - 18627: 59,-40 - 18628: 59,-41 - 18629: 58,-41 - 18630: 60,-41 - 18631: 61,-41 - 18632: 62,-40 - 18633: 62,-41 - 18634: 58,-42 - 18635: 59,-42 - 18636: 60,-42 - 18637: 63,-40 - 18643: -44,-66 - 18644: -43,-65 - 18645: -44,-64 - 18646: -45,-64 - 18647: -45,-63 - 18648: -46,-63 - 18649: -44,-66 - 18650: -46,-68 - 18651: -46,-69 - 18652: -45,-68 - 18653: -46,-67 - 18654: -44,-65 + 17675: 60,-40 + 17676: 59,-40 + 17677: 59,-41 + 17678: 58,-41 + 17679: 60,-41 + 17680: 61,-41 + 17681: 62,-40 + 17682: 62,-41 + 17683: 58,-42 + 17684: 59,-42 + 17685: 60,-42 + 17686: 63,-40 + 17687: -44,-66 + 17688: -43,-65 + 17689: -44,-64 + 17690: -45,-64 + 17691: -45,-63 + 17692: -46,-63 + 17693: -44,-66 + 17694: -46,-68 + 17695: -46,-69 + 17696: -45,-68 + 17697: -46,-67 + 17698: -44,-65 - node: color: '#FFFFFF2B' id: Dirt decals: - 16237: -67,-40 - 16238: -68,-40 - 16239: -68,-41 - 16240: -69,-40 - 16241: -66,-40 - 16242: -65,-40 - 16243: -65,-41 - 16244: -64,-41 - 16245: -63,-41 - 16246: -63,-41 - 16247: -63,-42 - 16248: -63,-44 - 16249: -64,-44 - 16250: -65,-44 - 16251: -66,-44 - 16252: -67,-44 - 16253: -68,-46 - 16254: -69,-44 + 15286: -67,-40 + 15287: -68,-40 + 15288: -68,-41 + 15289: -69,-40 + 15290: -66,-40 + 15291: -65,-40 + 15292: -65,-41 + 15293: -64,-41 + 15294: -63,-41 + 15295: -63,-41 + 15296: -63,-42 + 15297: -63,-44 + 15298: -64,-44 + 15299: -65,-44 + 15300: -66,-44 + 15301: -67,-44 + 15302: -68,-46 + 15303: -69,-44 - node: color: '#FFFFFF4D' id: Dirt decals: - 18345: -59,-46 - 18346: -60,-46 - 18347: -60,-45 - 18348: -60,-44 - 18349: -59,-44 - 18350: -59,-45 - 18351: -58,-45 - 18352: -58,-44 - 18353: -60,-43 - 18354: -60,-43 + 17394: -59,-46 + 17395: -60,-46 + 17396: -60,-45 + 17397: -60,-44 + 17398: -59,-44 + 17399: -59,-45 + 17400: -58,-45 + 17401: -58,-44 + 17402: -60,-43 + 17403: -60,-43 - node: color: '#FFFFFF50' id: Dirt decals: - 15952: 91,-1 - 15953: 92,-1 - 15954: 93,-1 - 15955: 92,0 - 15956: 91,7 - 15957: 91,6 - 15958: 92,7 - 15959: 96,5 - 15960: 97,5 - 15961: 97,4 - 15962: 97,3 - 15963: 96,4 - 16010: 83,4 - 16011: 84,4 - 16012: 85,5 - 16013: 85,4 - 16014: 86,4 - 16015: 86,5 - 16016: 87,6 - 16017: 87,5 - 16018: 89,9 - 16019: 90,9 - 16020: 91,9 - 16021: 92,10 - 16022: 91,9 + 15001: 91,-1 + 15002: 92,-1 + 15003: 93,-1 + 15004: 92,0 + 15005: 91,7 + 15006: 91,6 + 15007: 92,7 + 15008: 96,5 + 15009: 97,5 + 15010: 97,4 + 15011: 97,3 + 15012: 96,4 + 15059: 83,4 + 15060: 84,4 + 15061: 85,5 + 15062: 85,4 + 15063: 86,4 + 15064: 86,5 + 15065: 87,6 + 15066: 87,5 + 15067: 89,9 + 15068: 90,9 + 15069: 91,9 + 15070: 92,10 + 15071: 91,9 - node: color: '#FFFFFF60' id: Dirt decals: - 16583: -41,-11 - 16584: -40,-11 - 16585: -39,-10 - 16586: -39,-10 - 16587: -40,-10 - 16588: -40,-9 - 16589: -41,-9 - 16590: -41,-10 - 16591: -39,-9 - 16592: -39,-11 - 16593: -38,-11 + 15632: -41,-11 + 15633: -40,-11 + 15634: -39,-10 + 15635: -39,-10 + 15636: -40,-10 + 15637: -40,-9 + 15638: -41,-9 + 15639: -41,-10 + 15640: -39,-9 + 15641: -39,-11 + 15642: -38,-11 - node: color: '#FFFFFF66' id: Dirt decals: - 16102: -62,-43 - 16103: -62,-42 - 16104: -62,-44 - 16105: -63,-43 - 16106: -72,-42 - 16107: -71,-42 - 16108: -70,-42 - 16109: -71,-41 - 16110: -72,-41 - 16111: -72,-40 - 16112: -71,-40 - 16113: -70,-40 - 16114: -70,-43 - 16115: -70,-44 - 16116: -70,-45 - 16117: -69,-45 - 16118: -68,-45 - 16119: -68,-46 - 16120: -69,-46 - 16121: -66,-42 - 16122: -66,-43 - 16123: -65,-43 - 16124: -66,-41 - 16125: -65,-42 - 16126: -68,-43 - 16127: -67,-43 - 16128: -68,-42 - 16129: -67,-41 - 16130: -68,-44 - 16131: -64,-42 - 16132: -64,-43 - 16133: -63,-43 + 15151: -62,-43 + 15152: -62,-42 + 15153: -62,-44 + 15154: -63,-43 + 15155: -72,-42 + 15156: -71,-42 + 15157: -70,-42 + 15158: -71,-41 + 15159: -72,-41 + 15160: -72,-40 + 15161: -71,-40 + 15162: -70,-40 + 15163: -70,-43 + 15164: -70,-44 + 15165: -70,-45 + 15166: -69,-45 + 15167: -68,-45 + 15168: -68,-46 + 15169: -69,-46 + 15170: -66,-42 + 15171: -66,-43 + 15172: -65,-43 + 15173: -66,-41 + 15174: -65,-42 + 15175: -68,-43 + 15176: -67,-43 + 15177: -68,-42 + 15178: -67,-41 + 15179: -68,-44 + 15180: -64,-42 + 15181: -64,-43 + 15182: -63,-43 - node: color: '#FFFFFF6C' id: Dirt decals: - 18764: 39,-53 - 18765: 40,-53 - 18766: 39,-52 - 18767: 40,-52 - 18768: 40,-52 - 18769: 40,-51 - 18770: 39,-51 - 18771: 39,-50 - 18772: 41,-50 - 18773: 42,-50 - 18774: 42,-51 - 18775: 41,-51 - 18776: 41,-52 - 18777: 41,-53 - 18778: 42,-53 - 18779: 42,-54 - 18780: 42,-54 - 18781: 41,-55 - 18782: 41,-56 - 18783: 42,-56 - 18784: 39,-55 - 18785: 39,-54 - 18786: 41,-54 - 18787: 41,-54 - 18788: 44,-50 - 18789: 45,-50 - 18790: 45,-51 - 18791: 44,-51 - 18792: 44,-53 - 18793: 45,-54 - 18794: 45,-55 - 18795: 45,-55 - 18796: 44,-54 - 18797: 44,-53 - 18798: 45,-53 - 18799: 43,-50 - 18800: 43,-51 - 18801: 43,-52 - 18802: 43,-54 - 18803: 43,-54 - 18804: 43,-56 - 18805: 46,-55 - 18806: 46,-56 - 18807: 46,-52 - 18808: 50,-50 - 18809: 50,-51 - 18810: 50,-52 - 18811: 49,-53 - 18812: 49,-53 - 18813: 51,-53 - 18814: 51,-52 - 18815: 50,-53 - 18816: 50,-55 - 18817: 49,-55 - 18818: 49,-56 - 18819: 50,-56 - 18820: 51,-56 - 18821: 51,-54 - 18822: 49,-54 - 18823: 52,-56 - 18824: 52,-55 - 18825: 52,-54 - 18826: 52,-53 - 18827: 52,-52 - 18828: 52,-51 - 18829: 52,-51 - 18830: 52,-50 - 18831: 53,-51 - 18832: 53,-53 - 18833: 53,-54 - 18834: 53,-55 - 18835: 53,-56 + 17808: 39,-53 + 17809: 40,-53 + 17810: 39,-52 + 17811: 40,-52 + 17812: 40,-52 + 17813: 40,-51 + 17814: 39,-51 + 17815: 39,-50 + 17816: 41,-50 + 17817: 42,-50 + 17818: 42,-51 + 17819: 41,-51 + 17820: 41,-52 + 17821: 41,-53 + 17822: 42,-53 + 17823: 42,-54 + 17824: 42,-54 + 17825: 41,-55 + 17826: 41,-56 + 17827: 42,-56 + 17828: 39,-55 + 17829: 39,-54 + 17830: 41,-54 + 17831: 41,-54 + 17832: 44,-50 + 17833: 45,-50 + 17834: 45,-51 + 17835: 44,-51 + 17836: 44,-53 + 17837: 45,-54 + 17838: 45,-55 + 17839: 45,-55 + 17840: 44,-54 + 17841: 44,-53 + 17842: 45,-53 + 17843: 43,-50 + 17844: 43,-51 + 17845: 43,-52 + 17846: 43,-54 + 17847: 43,-54 + 17848: 43,-56 + 17849: 46,-55 + 17850: 46,-56 + 17851: 46,-52 + 17852: 50,-50 + 17853: 50,-51 + 17854: 50,-52 + 17855: 49,-53 + 17856: 49,-53 + 17857: 51,-53 + 17858: 51,-52 + 17859: 50,-53 + 17860: 50,-55 + 17861: 49,-55 + 17862: 49,-56 + 17863: 50,-56 + 17864: 51,-56 + 17865: 51,-54 + 17866: 49,-54 + 17867: 52,-56 + 17868: 52,-55 + 17869: 52,-54 + 17870: 52,-53 + 17871: 52,-52 + 17872: 52,-51 + 17873: 52,-51 + 17874: 52,-50 + 17875: 53,-51 + 17876: 53,-53 + 17877: 53,-54 + 17878: 53,-55 + 17879: 53,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: Dirt decals: - 13738: -34,-63 - 13739: -32,-63 - 13740: -33,-62 - 13741: -33,-61 - 13742: -33,-60 - 13743: -34,-61 - 13744: -31,-61 - 13745: -31,-60 + 12794: -34,-63 + 12795: -32,-63 + 12796: -33,-62 + 12797: -33,-61 + 12798: -33,-60 + 12799: -34,-61 + 12800: -31,-61 + 12801: -31,-60 - node: color: '#FFFFFFFF' id: Dirt decals: - 648: 38,-21 - 879: -32,49 - 3917: 18,70 - 3918: 23,66 - 3958: 15,60 - 3961: 20,61 - 3988: -34,59 - 3989: -35,59 - 3990: -34,60 - 3991: -38,60 - 3992: -38,59 - 4017: -32,62 - 4020: -24,65 - 13048: 43,-33 - 13106: 39,-53 - 13215: 52,-37 - 13224: 52,-37 - 13259: 56,-36 - 13347: -33,-65 - 13444: -37,-64 - 13447: -41,-64 - 19761: -30,-23 - 19762: -29,-23 - 19763: -28,-23 - 19899: -71,-38 - 19900: -72,-37 - 19901: -72,-35 - 19902: -72,-34 - 19903: -71,-34 - 19904: -67,-34 - 19905: -65,-34 - 19906: -68,-34 - 19907: -62,-37 - 19908: -68,-38 - 19909: -69,-38 - 19967: 33,39 - 19968: 34,39 - 19969: 34,38 - 19970: 36,39 - 21398: -60,-25 - 21399: -60,-25 - 21400: -63,-23 - 21401: -64,-23 - 21402: -64,-23 - 21403: -63,-23 - 21404: -62,-27 - 21405: -62,-27 - 21406: -62,-27 - 21407: -62,-30 + 543: 38,-21 + 766: -32,49 + 3784: 18,70 + 3785: 23,66 + 3825: 15,60 + 3828: 20,61 + 3855: -34,59 + 3856: -35,59 + 3857: -34,60 + 3858: -38,60 + 3859: -38,59 + 3884: -32,62 + 3887: -24,65 + 12104: 43,-33 + 12162: 39,-53 + 12271: 52,-37 + 12280: 52,-37 + 12315: 56,-36 + 12403: -33,-65 + 12500: -37,-64 + 12503: -41,-64 + 18771: -30,-23 + 18772: -29,-23 + 18773: -28,-23 + 18905: -71,-38 + 18906: -72,-37 + 18907: -72,-35 + 18908: -72,-34 + 18909: -71,-34 + 18910: -67,-34 + 18911: -65,-34 + 18912: -68,-34 + 18913: -62,-37 + 18914: -68,-38 + 18915: -69,-38 + 18973: 33,39 + 18974: 34,39 + 18975: 34,38 + 18976: 36,39 + 20404: -60,-25 + 20405: -60,-25 + 20406: -63,-23 + 20407: -64,-23 + 20408: -64,-23 + 20409: -63,-23 + 20410: -62,-27 + 20411: -62,-27 + 20412: -62,-27 + 20413: -62,-30 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 244: 52,-43 - 320: 65,-10 - 328: -39,-78 - 329: -27,-77 - 336: 24,-55 - 349: -77,-32 - 350: -77,-26 - 952: 35,34 - 953: 36,37 - 954: 40,29 - 955: 42,30 - 963: 33,-70 - 1062: -33,-47 - 1395: -42,63 - 1396: -41,63 - 1397: -42,60 - 1581: -38,29 - 1582: -39,26 - 1583: -38,25 - 1610: -60,-34 - 1611: -59,-36 - 1612: -58,-35 - 1613: -59,-34 - 1614: -60,-39 - 1615: -58,-39 - 1616: -58,-37 - 1617: -60,-36 - 1656: -59,-43 - 1657: -58,-42 - 1658: -58,-41 - 1659: -60,-42 - 1838: -72,-28 - 1839: -69,-25 - 1840: -70,-28 - 1841: -70,-29 - 1842: -70,-25 - 1843: -69,-23 - 1844: -69,-24 - 1930: 34,-20 - 1931: 33,-20 - 1932: 33,-19 - 1933: 36,-21 - 1934: 35,-23 - 1935: 37,-23 - 1936: 37,-24 - 1937: 41,-24 - 1938: 40,-24 - 1939: 40,-27 - 1940: 41,-28 - 1941: 43,-29 - 1942: 26,-20 - 1943: 24,-21 - 1944: 23,-23 - 1945: 24,-23 - 1946: 23,-23 - 1947: 22,-21 - 1948: 21,-22 - 1949: 20,-21 - 1950: 21,-21 - 1951: 22,-18 - 1952: 52,-29 - 1953: 52,-29 - 1954: 52,-31 - 1955: 52,-34 - 1956: 51,-39 - 1957: 52,-42 - 1958: 52,-45 - 1959: 51,-48 - 1960: 51,-48 - 1961: 47,-48 - 1962: 44,-48 - 1963: 41,-48 - 1964: 37,-47 - 1965: 36,-49 - 1966: 37,-56 - 1967: 34,-56 - 1968: 32,-55 - 1969: 30,-55 - 4037: 11,79 - 16277: -71,-35 - 16278: -67,-36 - 16279: -71,-37 - 16280: -66,-35 - 16281: -63,-37 - 16282: -63,-34 - 16283: -63,-34 - 16284: -69,-37 - 16285: -69,-35 - 16286: -70,-36 - 16287: -66,-37 - 16288: -65,-37 - 16289: -65,-36 - 16290: -65,-35 - 16291: -69,-36 - 16292: -69,-36 - 16294: -63,-36 - 16300: -68,-35 - 16301: -65,-37 - 16302: -63,-36 - 24581: 25,-66 - 24582: 26,-67 - 24583: 27,-67 - 24584: 27,-68 - 24585: 25,-69 - 24586: 35,-66 - 24587: 34,-66 - 24588: 35,-65 - 24589: 36,-61 - 24590: 35,-60 - 24591: 26,-60 - 24592: 26,-61 - 24593: 28,-61 - 24594: 27,-61 - 24595: 28,-57 - 24596: 27,-55 - 24597: 39,-67 - 24598: 40,-66 - 24599: 41,-66 - 24600: 36,-70 - 24601: 36,-71 - 24602: 35,-71 - 24603: 39,-74 - 24604: 39,-71 - 24605: 41,-71 - 24606: 44,-62 - 24607: 44,-63 - 24608: 40,-61 - 24609: 39,-62 - 24610: 37,-62 - 24611: 35,-63 - 24612: 42,-62 + 227: 52,-43 + 301: -39,-78 + 302: -27,-77 + 309: 24,-55 + 322: -77,-32 + 323: -77,-26 + 839: 35,34 + 840: 36,37 + 841: 40,29 + 842: 42,30 + 848: 33,-70 + 944: -33,-47 + 1277: -42,63 + 1278: -41,63 + 1279: -42,60 + 1463: -38,29 + 1464: -39,26 + 1465: -38,25 + 1492: -60,-34 + 1493: -59,-36 + 1494: -58,-35 + 1495: -59,-34 + 1496: -60,-39 + 1497: -58,-39 + 1498: -58,-37 + 1499: -60,-36 + 1538: -59,-43 + 1539: -58,-42 + 1540: -58,-41 + 1541: -60,-42 + 1720: -72,-28 + 1721: -69,-25 + 1722: -70,-28 + 1723: -70,-29 + 1724: -70,-25 + 1725: -69,-23 + 1726: -69,-24 + 1812: 34,-20 + 1813: 33,-20 + 1814: 33,-19 + 1815: 36,-21 + 1816: 35,-23 + 1817: 37,-23 + 1818: 37,-24 + 1819: 41,-24 + 1820: 40,-24 + 1821: 40,-27 + 1822: 41,-28 + 1823: 43,-29 + 1824: 26,-20 + 1825: 24,-21 + 1826: 23,-23 + 1827: 24,-23 + 1828: 23,-23 + 1829: 22,-21 + 1830: 21,-22 + 1831: 20,-21 + 1832: 21,-21 + 1833: 22,-18 + 1834: 52,-29 + 1835: 52,-29 + 1836: 52,-31 + 1837: 52,-34 + 1838: 51,-39 + 1839: 52,-42 + 1840: 52,-45 + 1841: 51,-48 + 1842: 51,-48 + 1843: 47,-48 + 1844: 44,-48 + 1845: 41,-48 + 1846: 37,-47 + 1847: 36,-49 + 1848: 37,-56 + 1849: 34,-56 + 1850: 32,-55 + 1851: 30,-55 + 15326: -71,-35 + 15327: -67,-36 + 15328: -71,-37 + 15329: -66,-35 + 15330: -63,-37 + 15331: -63,-34 + 15332: -63,-34 + 15333: -69,-37 + 15334: -69,-35 + 15335: -70,-36 + 15336: -66,-37 + 15337: -65,-37 + 15338: -65,-36 + 15339: -65,-35 + 15340: -69,-36 + 15341: -69,-36 + 15343: -63,-36 + 15349: -68,-35 + 15350: -65,-37 + 15351: -63,-36 + 23581: 25,-66 + 23582: 26,-67 + 23583: 27,-67 + 23584: 27,-68 + 23585: 25,-69 + 23586: 35,-66 + 23587: 34,-66 + 23588: 35,-65 + 23589: 36,-61 + 23590: 35,-60 + 23591: 26,-60 + 23592: 26,-61 + 23593: 28,-61 + 23594: 27,-61 + 23595: 28,-57 + 23596: 27,-55 + 23597: 39,-67 + 23598: 40,-66 + 23599: 41,-66 + 23600: 36,-70 + 23601: 36,-71 + 23602: 35,-71 + 23603: 39,-74 + 23604: 39,-71 + 23605: 41,-71 + 23606: 44,-62 + 23607: 44,-63 + 23608: 40,-61 + 23609: 39,-62 + 23610: 37,-62 + 23611: 35,-63 + 23612: 42,-62 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Dirt decals: - 13597: -33,-72 - 13735: -30,-61 + 12653: -33,-72 + 12791: -30,-61 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavy decals: - 13746: -32,-60 - 13747: -32,-61 - 13748: -34,-60 - 13749: -32,-62 - 13750: -31,-62 - 13776: -39,-56 - 13777: -39,-55 - 13779: -38,-56 - 13780: -38,-55 - 13781: -38,-55 - 13783: -37,-55 - 13784: -37,-56 + 12802: -32,-60 + 12803: -32,-61 + 12804: -34,-60 + 12805: -32,-62 + 12806: -31,-62 + 12832: -39,-56 + 12833: -39,-55 + 12835: -38,-56 + 12836: -38,-55 + 12837: -38,-55 + 12839: -37,-55 + 12840: -37,-56 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 3866: 23,71 - 3868: 17,69 - 3898: 18,67 - 3899: 20,66 - 3900: 19,66 - 3901: 23,67 - 3912: 23,67 - 3913: 22,67 - 3953: 21,61 - 3954: 19,63 - 3959: 12,59 - 3960: 18,62 - 3993: -38,62 - 3994: -39,62 - 3995: -42,61 - 3999: -37,60 - 4000: -36,59 - 4001: -36,60 - 4018: -30,62 - 4019: -28,60 - 4021: -24,63 - 10921: 33,-66 - 10922: 33,-66 - 10925: 38,-72 - 11188: -60,-39 - 11189: -60,-42 - 11190: -60,-41 - 11191: -60,-41 - 12933: -38,-23 - 12964: -42,-31 - 12967: -40,-33 - 13049: 43,-34 - 13050: 44,-33 - 13051: 42,-31 - 13052: 44,-32 - 13053: 44,-31 - 13054: 45,-32 - 13055: 45,-33 - 13056: 46,-32 - 13057: 47,-31 - 13058: 48,-32 - 13059: 48,-33 - 13060: 48,-32 - 13061: 47,-34 - 13062: 46,-35 - 13063: 46,-35 - 13064: 48,-35 - 13065: 48,-36 - 13066: 48,-36 - 13067: 47,-36 - 13068: 47,-36 - 13069: 44,-35 - 13070: 45,-33 - 13071: 46,-33 - 13072: 48,-33 - 13073: 48,-34 - 13074: 49,-34 - 13075: 49,-33 - 13076: 49,-34 - 13077: 49,-35 - 13078: 47,-33 - 13079: 47,-32 - 13105: 48,-31 - 13179: 39,-51 - 13180: 41,-52 - 13181: 41,-53 - 13182: 46,-53 - 13183: 47,-53 - 13184: 46,-54 - 13185: 46,-51 - 13186: 46,-52 - 13214: 52,-37 - 13225: 52,-37 - 13226: 53,-36 - 13228: 55,-39 - 13229: 56,-39 - 13230: 55,-38 - 13231: 56,-36 - 13232: 53,-35 - 13247: 55,-36 - 13248: 54,-36 - 13249: 53,-37 - 13250: 53,-38 - 13251: 54,-38 - 13252: 54,-37 - 13253: 54,-35 - 13348: -37,-63 - 13349: -36,-62 - 13366: -38,-63 - 13367: -38,-63 - 13368: -37,-63 - 13369: -38,-62 - 13370: -38,-62 - 13371: -38,-61 - 13372: -37,-60 - 13373: -36,-60 - 13374: -38,-60 - 13375: -38,-61 - 13376: -37,-62 - 13377: -37,-62 - 13378: -36,-61 - 13379: -36,-63 - 13380: -36,-63 - 13381: -37,-61 - 13397: -41,-62 - 13398: -40,-63 - 13445: -37,-64 - 13446: -41,-64 - 13451: -37,-59 - 15964: 76,0 - 15965: 77,0 - 15966: 78,0 - 15979: 99,-2 - 15980: 99,-3 - 15981: 99,-4 - 15982: 100,-4 - 15983: 100,-4 - 15984: 100,-2 - 15997: 91,-3 - 15998: 84,2 - 16003: 83,-3 - 16004: 83,-4 - 16005: 84,-4 - 16006: 88,-3 - 16007: 87,-4 - 16023: 89,9 - 16024: 89,10 - 16025: 91,10 - 16026: 93,10 - 16027: 93,9 - 16028: 92,9 - 16032: 76,4 - 16033: 76,6 - 16034: 93,6 - 16040: 95,7 - 16041: 97,7 - 16042: 97,6 - 16145: -71,-40 - 16146: -70,-40 - 16147: -70,-41 - 16148: -69,-41 - 16149: -69,-42 - 16150: -70,-43 - 16151: -70,-43 - 16152: -70,-43 - 16153: -66,-41 - 16154: -64,-40 - 16155: -62,-40 - 16156: -62,-41 - 16157: -63,-43 - 16158: -65,-43 - 16159: -66,-43 - 16160: -68,-45 - 16161: -69,-46 - 16162: -70,-46 - 16177: -67,-46 - 16178: -66,-46 - 16179: -66,-47 - 16180: -65,-48 - 16181: -65,-47 - 16182: -64,-46 - 16183: -63,-47 - 16184: -62,-47 - 16185: -62,-48 - 16306: -60,-49 - 16307: -60,-48 - 16308: -59,-50 - 16318: 10,69 - 16319: 10,70 - 16320: 11,70 - 16321: 11,69 - 16322: 10,67 - 16323: 11,66 - 16324: 12,66 - 16325: 12,68 - 16362: -39,-7 - 16363: -39,-6 - 16364: -40,-6 - 16365: -40,-7 - 16376: -39,1 - 16377: -39,1 - 16378: -38,0 - 16379: -38,0 - 16380: -37,2 - 16381: -37,2 - 16382: -39,0 - 16383: -37,1 - 16384: -37,2 - 16391: -43,-12 - 16392: -43,-11 - 16393: -43,-10 - 16394: -43,-10 - 16395: -44,-12 - 16396: -44,-12 - 16397: -43,-10 - 16398: -42,-9 - 16399: -42,-10 - 16400: -43,-12 - 16401: -44,-13 - 16402: -44,-13 - 16403: -44,-14 - 16404: -44,-16 - 16405: -44,-17 - 16406: -44,-18 - 16407: -44,-20 - 16408: -42,-20 - 16409: -42,-20 - 16410: -39,-20 - 16411: -37,-20 - 16412: -36,-20 - 16413: -36,-20 - 16414: -38,-20 - 16415: -38,-20 - 16416: -41,-20 - 16417: -42,-20 - 16418: -43,-20 - 16419: -44,-20 - 16420: -36,-20 - 16421: -31,-20 - 16422: -30,-20 - 16423: -30,-20 - 16424: -32,-20 - 16425: -32,-20 - 16426: -32,-18 - 16427: -31,-18 - 16428: -30,-18 - 16429: -29,-18 - 16430: -28,-18 - 16431: -28,-19 - 16432: -28,-20 - 16433: -29,-20 - 16434: -24,-22 - 16435: -24,-22 - 16436: -25,-22 - 16437: -25,-22 - 16438: -24,-21 - 16439: -23,-21 - 16440: -23,-22 - 16441: -22,-22 - 16442: -22,-21 - 16443: -23,-21 - 16444: -25,-21 - 16445: -25,-20 - 16446: -22,-20 - 16447: -22,-20 - 16448: -29,-18 - 17171: -2,32 - 17172: -1,32 - 17173: -1,32 - 17174: -2,27 - 17175: -2,27 - 17176: -1,27 - 17177: 0,27 - 17178: -1,27 - 17179: -2,27 - 17189: 0,39 - 17190: 0,40 - 17191: 0,40 - 17192: 2,40 - 17193: 2,40 - 17194: 0,38 - 17195: -1,36 - 17196: -1,35 - 17197: 0,34 - 17198: 0,34 - 17199: 0,42 - 17200: 1,42 - 17201: 1,42 - 17202: 0,42 - 17203: 0,48 - 17204: 0,48 - 17205: 0,48 - 17206: 0,47 - 17214: 6,52 - 17215: 7,52 - 17216: 6,50 - 18301: -53,-38 - 18302: -53,-37 - 18303: -52,-36 - 18304: -51,-36 - 18305: -52,-38 - 18306: -51,-38 - 18307: -51,-37 - 18308: -50,-37 - 18309: -50,-38 - 18310: -52,-37 - 18311: -52,-37 - 18312: -51,-37 - 18313: -50,-38 - 18314: -49,-38 - 18315: -48,-38 - 18316: -50,-37 - 18325: -52,-40 - 18326: -50,-40 - 18327: -51,-41 - 18343: -58,-46 - 18611: 61,-41 - 18612: 60,-41 - 18613: 59,-41 - 18614: 60,-40 - 18615: 59,-40 - 18616: 59,-40 - 18617: 59,-40 - 18618: 59,-40 - 18619: 60,-40 - 18620: 62,-40 - 18621: 61,-41 - 18622: 61,-41 - 18836: 43,-42 - 18837: 43,-41 - 18838: 43,-39 - 18839: 43,-38 - 18840: 45,-38 - 18841: 47,-38 - 18842: 49,-38 - 18843: 49,-39 - 18844: 48,-41 - 18845: 48,-43 - 18846: 46,-43 - 18847: 45,-43 - 18848: 44,-41 - 18849: 46,-40 - 18850: 47,-40 - 18876: 44,-48 - 18877: 45,-48 - 18878: 46,-48 - 18879: 43,-52 - 18880: 43,-53 - 18881: 43,-53 - 18882: 56,-41 - 19835: -72,-34 - 19836: -71,-34 - 19837: -72,-34 - 19838: -72,-36 - 19839: -72,-36 - 19840: -72,-37 - 19841: -72,-38 - 19842: -66,-38 - 19843: -66,-38 - 19844: -64,-38 - 19845: -64,-38 - 19846: -66,-38 - 19847: -67,-38 - 19848: -69,-38 - 19849: -71,-38 - 19850: -70,-38 - 19851: -68,-38 - 19852: -68,-38 - 19853: -65,-38 - 19854: -65,-38 - 19855: -64,-38 - 19856: -63,-38 - 19857: -62,-38 - 19858: -62,-36 - 19859: -62,-36 - 19860: -62,-38 - 19861: -62,-37 - 19862: -65,-34 - 19863: -66,-34 - 19864: -67,-34 - 19865: -69,-34 - 19866: -69,-34 - 19867: -67,-34 - 19868: -69,-34 - 19869: -69,-34 - 19870: -67,-34 - 19871: -67,-34 - 19872: -66,-34 - 19873: -65,-34 - 19874: -69,-34 - 19875: -66,-34 - 19876: -65,-34 - 19877: -63,-37 - 19878: -65,-38 - 19879: -67,-38 - 19880: -69,-38 - 19881: -70,-38 - 19882: -72,-38 - 19883: -72,-37 - 19884: -72,-36 - 19885: -72,-35 - 19886: -72,-35 - 19887: -70,-35 - 19888: -70,-35 - 19889: -70,-35 - 19890: -68,-35 - 19891: -67,-35 - 19892: -67,-36 - 19893: -64,-37 - 19894: -63,-37 - 19895: -62,-37 - 19896: -62,-37 - 19897: -62,-38 - 19898: -62,-36 - 19961: 35,39 - 19962: 34,39 - 19963: 34,38 - 19964: 33,39 - 19965: 36,39 - 19966: 35,37 - 21335: -71,-29 - 21336: -72,-26 - 21337: -70,-27 - 21338: -70,-26 - 21339: -69,-26 - 21340: -69,-27 - 21341: -68,-26 - 21342: -68,-26 - 21343: -67,-25 - 21344: -67,-26 - 21345: -68,-27 - 21346: -68,-27 - 21347: -67,-27 - 21348: -68,-25 - 21349: -67,-24 - 21372: -62,-29 - 21373: -63,-29 - 21374: -63,-30 - 21375: -62,-29 - 21395: -60,-29 - 21396: -60,-29 - 21397: -59,-30 - 21408: -63,-27 - 21409: -64,-27 - 21410: -64,-26 - 21411: -65,-25 - 21412: -66,-24 - 21413: -65,-23 - 21414: -63,-23 - 21415: -62,-23 - 21416: -60,-23 - 21417: -59,-23 - 21418: -61,-25 - 21419: -59,-24 - 21420: -59,-25 - 21421: -59,-26 - 21450: -64,-26 - 21451: -64,-25 - 21452: -63,-24 - 21453: -62,-24 - 21454: -62,-25 - 21455: -60,-26 - 21456: -60,-24 + 3733: 23,71 + 3735: 17,69 + 3765: 18,67 + 3766: 20,66 + 3767: 19,66 + 3768: 23,67 + 3779: 23,67 + 3780: 22,67 + 3820: 21,61 + 3821: 19,63 + 3826: 12,59 + 3827: 18,62 + 3860: -38,62 + 3861: -39,62 + 3862: -42,61 + 3866: -37,60 + 3867: -36,59 + 3868: -36,60 + 3885: -30,62 + 3886: -28,60 + 3888: -24,63 + 10589: 33,-66 + 10590: 33,-66 + 10591: 38,-72 + 10685: -60,-39 + 10686: -60,-42 + 10687: -60,-41 + 10688: -60,-41 + 12100: -38,-23 + 12101: -42,-31 + 12102: -40,-33 + 12105: 43,-34 + 12106: 44,-33 + 12107: 42,-31 + 12108: 44,-32 + 12109: 44,-31 + 12110: 45,-32 + 12111: 45,-33 + 12112: 46,-32 + 12113: 47,-31 + 12114: 48,-32 + 12115: 48,-33 + 12116: 48,-32 + 12117: 47,-34 + 12118: 46,-35 + 12119: 46,-35 + 12120: 48,-35 + 12121: 48,-36 + 12122: 48,-36 + 12123: 47,-36 + 12124: 47,-36 + 12125: 44,-35 + 12126: 45,-33 + 12127: 46,-33 + 12128: 48,-33 + 12129: 48,-34 + 12130: 49,-34 + 12131: 49,-33 + 12132: 49,-34 + 12133: 49,-35 + 12134: 47,-33 + 12135: 47,-32 + 12161: 48,-31 + 12235: 39,-51 + 12236: 41,-52 + 12237: 41,-53 + 12238: 46,-53 + 12239: 47,-53 + 12240: 46,-54 + 12241: 46,-51 + 12242: 46,-52 + 12270: 52,-37 + 12281: 52,-37 + 12282: 53,-36 + 12284: 55,-39 + 12285: 56,-39 + 12286: 55,-38 + 12287: 56,-36 + 12288: 53,-35 + 12303: 55,-36 + 12304: 54,-36 + 12305: 53,-37 + 12306: 53,-38 + 12307: 54,-38 + 12308: 54,-37 + 12309: 54,-35 + 12404: -37,-63 + 12405: -36,-62 + 12422: -38,-63 + 12423: -38,-63 + 12424: -37,-63 + 12425: -38,-62 + 12426: -38,-62 + 12427: -38,-61 + 12428: -37,-60 + 12429: -36,-60 + 12430: -38,-60 + 12431: -38,-61 + 12432: -37,-62 + 12433: -37,-62 + 12434: -36,-61 + 12435: -36,-63 + 12436: -36,-63 + 12437: -37,-61 + 12453: -41,-62 + 12454: -40,-63 + 12501: -37,-64 + 12502: -41,-64 + 12507: -37,-59 + 15013: 76,0 + 15014: 77,0 + 15015: 78,0 + 15028: 99,-2 + 15029: 99,-3 + 15030: 99,-4 + 15031: 100,-4 + 15032: 100,-4 + 15033: 100,-2 + 15046: 91,-3 + 15047: 84,2 + 15052: 83,-3 + 15053: 83,-4 + 15054: 84,-4 + 15055: 88,-3 + 15056: 87,-4 + 15072: 89,9 + 15073: 89,10 + 15074: 91,10 + 15075: 93,10 + 15076: 93,9 + 15077: 92,9 + 15081: 76,4 + 15082: 76,6 + 15083: 93,6 + 15089: 95,7 + 15090: 97,7 + 15091: 97,6 + 15194: -71,-40 + 15195: -70,-40 + 15196: -70,-41 + 15197: -69,-41 + 15198: -69,-42 + 15199: -70,-43 + 15200: -70,-43 + 15201: -70,-43 + 15202: -66,-41 + 15203: -64,-40 + 15204: -62,-40 + 15205: -62,-41 + 15206: -63,-43 + 15207: -65,-43 + 15208: -66,-43 + 15209: -68,-45 + 15210: -69,-46 + 15211: -70,-46 + 15226: -67,-46 + 15227: -66,-46 + 15228: -66,-47 + 15229: -65,-48 + 15230: -65,-47 + 15231: -64,-46 + 15232: -63,-47 + 15233: -62,-47 + 15234: -62,-48 + 15355: -60,-49 + 15356: -60,-48 + 15357: -59,-50 + 15367: 10,69 + 15368: 10,70 + 15369: 11,70 + 15370: 11,69 + 15371: 10,67 + 15372: 11,66 + 15373: 12,66 + 15374: 12,68 + 15411: -39,-7 + 15412: -39,-6 + 15413: -40,-6 + 15414: -40,-7 + 15425: -39,1 + 15426: -39,1 + 15427: -38,0 + 15428: -38,0 + 15429: -37,2 + 15430: -37,2 + 15431: -39,0 + 15432: -37,1 + 15433: -37,2 + 15440: -43,-12 + 15441: -43,-11 + 15442: -43,-10 + 15443: -43,-10 + 15444: -44,-12 + 15445: -44,-12 + 15446: -43,-10 + 15447: -42,-9 + 15448: -42,-10 + 15449: -43,-12 + 15450: -44,-13 + 15451: -44,-13 + 15452: -44,-14 + 15453: -44,-16 + 15454: -44,-17 + 15455: -44,-18 + 15456: -44,-20 + 15457: -42,-20 + 15458: -42,-20 + 15459: -39,-20 + 15460: -37,-20 + 15461: -36,-20 + 15462: -36,-20 + 15463: -38,-20 + 15464: -38,-20 + 15465: -41,-20 + 15466: -42,-20 + 15467: -43,-20 + 15468: -44,-20 + 15469: -36,-20 + 15470: -31,-20 + 15471: -30,-20 + 15472: -30,-20 + 15473: -32,-20 + 15474: -32,-20 + 15475: -32,-18 + 15476: -31,-18 + 15477: -30,-18 + 15478: -29,-18 + 15479: -28,-18 + 15480: -28,-19 + 15481: -28,-20 + 15482: -29,-20 + 15483: -24,-22 + 15484: -24,-22 + 15485: -25,-22 + 15486: -25,-22 + 15487: -24,-21 + 15488: -23,-21 + 15489: -23,-22 + 15490: -22,-22 + 15491: -22,-21 + 15492: -23,-21 + 15493: -25,-21 + 15494: -25,-20 + 15495: -22,-20 + 15496: -22,-20 + 15497: -29,-18 + 16220: -2,32 + 16221: -1,32 + 16222: -1,32 + 16223: -2,27 + 16224: -2,27 + 16225: -1,27 + 16226: 0,27 + 16227: -1,27 + 16228: -2,27 + 16238: 0,39 + 16239: 0,40 + 16240: 0,40 + 16241: 2,40 + 16242: 2,40 + 16243: 0,38 + 16244: -1,36 + 16245: -1,35 + 16246: 0,34 + 16247: 0,34 + 16248: 0,42 + 16249: 1,42 + 16250: 1,42 + 16251: 0,42 + 16252: 0,48 + 16253: 0,48 + 16254: 0,48 + 16255: 0,47 + 16263: 6,52 + 16264: 7,52 + 16265: 6,50 + 17350: -53,-38 + 17351: -53,-37 + 17352: -52,-36 + 17353: -51,-36 + 17354: -52,-38 + 17355: -51,-38 + 17356: -51,-37 + 17357: -50,-37 + 17358: -50,-38 + 17359: -52,-37 + 17360: -52,-37 + 17361: -51,-37 + 17362: -50,-38 + 17363: -49,-38 + 17364: -48,-38 + 17365: -50,-37 + 17374: -52,-40 + 17375: -50,-40 + 17376: -51,-41 + 17392: -58,-46 + 17660: 61,-41 + 17661: 60,-41 + 17662: 59,-41 + 17663: 60,-40 + 17664: 59,-40 + 17665: 59,-40 + 17666: 59,-40 + 17667: 59,-40 + 17668: 60,-40 + 17669: 62,-40 + 17670: 61,-41 + 17671: 61,-41 + 17880: 43,-42 + 17881: 43,-41 + 17882: 43,-39 + 17883: 43,-38 + 17884: 45,-38 + 17885: 47,-38 + 17886: 49,-38 + 17887: 49,-39 + 17888: 48,-41 + 17889: 48,-43 + 17890: 46,-43 + 17891: 45,-43 + 17892: 44,-41 + 17893: 46,-40 + 17894: 47,-40 + 17920: 44,-48 + 17921: 45,-48 + 17922: 46,-48 + 17923: 43,-52 + 17924: 43,-53 + 17925: 43,-53 + 17926: 56,-41 + 18841: -72,-34 + 18842: -71,-34 + 18843: -72,-34 + 18844: -72,-36 + 18845: -72,-36 + 18846: -72,-37 + 18847: -72,-38 + 18848: -66,-38 + 18849: -66,-38 + 18850: -64,-38 + 18851: -64,-38 + 18852: -66,-38 + 18853: -67,-38 + 18854: -69,-38 + 18855: -71,-38 + 18856: -70,-38 + 18857: -68,-38 + 18858: -68,-38 + 18859: -65,-38 + 18860: -65,-38 + 18861: -64,-38 + 18862: -63,-38 + 18863: -62,-38 + 18864: -62,-36 + 18865: -62,-36 + 18866: -62,-38 + 18867: -62,-37 + 18868: -65,-34 + 18869: -66,-34 + 18870: -67,-34 + 18871: -69,-34 + 18872: -69,-34 + 18873: -67,-34 + 18874: -69,-34 + 18875: -69,-34 + 18876: -67,-34 + 18877: -67,-34 + 18878: -66,-34 + 18879: -65,-34 + 18880: -69,-34 + 18881: -66,-34 + 18882: -65,-34 + 18883: -63,-37 + 18884: -65,-38 + 18885: -67,-38 + 18886: -69,-38 + 18887: -70,-38 + 18888: -72,-38 + 18889: -72,-37 + 18890: -72,-36 + 18891: -72,-35 + 18892: -72,-35 + 18893: -70,-35 + 18894: -70,-35 + 18895: -70,-35 + 18896: -68,-35 + 18897: -67,-35 + 18898: -67,-36 + 18899: -64,-37 + 18900: -63,-37 + 18901: -62,-37 + 18902: -62,-37 + 18903: -62,-38 + 18904: -62,-36 + 18967: 35,39 + 18968: 34,39 + 18969: 34,38 + 18970: 33,39 + 18971: 36,39 + 18972: 35,37 + 20341: -71,-29 + 20342: -72,-26 + 20343: -70,-27 + 20344: -70,-26 + 20345: -69,-26 + 20346: -69,-27 + 20347: -68,-26 + 20348: -68,-26 + 20349: -67,-25 + 20350: -67,-26 + 20351: -68,-27 + 20352: -68,-27 + 20353: -67,-27 + 20354: -68,-25 + 20355: -67,-24 + 20378: -62,-29 + 20379: -63,-29 + 20380: -63,-30 + 20381: -62,-29 + 20401: -60,-29 + 20402: -60,-29 + 20403: -59,-30 + 20414: -63,-27 + 20415: -64,-27 + 20416: -64,-26 + 20417: -65,-25 + 20418: -66,-24 + 20419: -65,-23 + 20420: -63,-23 + 20421: -62,-23 + 20422: -60,-23 + 20423: -59,-23 + 20424: -61,-25 + 20425: -59,-24 + 20426: -59,-25 + 20427: -59,-26 + 20456: -64,-26 + 20457: -64,-25 + 20458: -63,-24 + 20459: -62,-24 + 20460: -62,-25 + 20461: -60,-26 + 20462: -60,-24 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 237: 42,-29 - 238: 44,-28 - 239: 46,-29 - 258: 46,-48 - 260: 40,-39 - 261: 41,-37 - 262: 41,-44 - 276: 51,-36 - 277: 52,-40 - 286: 56,-11 - 295: -24,59 - 300: -31,18 - 301: -36,33 - 311: -29,24 - 313: -26,-18 - 315: -37,-18 - 316: -29,-20 - 332: 7,-56 - 338: -46,-20 - 343: -38,-5 - 345: -42,-6 - 347: -53,-34 - 358: -40,-17 - 383: -39,-46 - 384: -42,-47 - 387: -43,-44 - 715: -15,-32 - 991: -36,-37 - 992: -37,-37 - 993: -39,-37 - 994: -38,-36 - 995: -39,-36 - 996: -38,-37 - 997: -40,-36 - 998: -41,-37 - 999: -41,-36 - 1000: -36,-37 - 1001: -37,-37 - 1002: -38,-37 - 1003: -38,-36 - 1004: -35,-37 - 1005: -39,-37 - 1006: -39,-36 - 1007: -40,-36 - 1008: -40,-37 - 1009: -41,-37 - 1261: 25,59 - 1262: 25,60 - 1263: 27,56 - 1264: 26,56 - 1265: 30,56 - 1266: 31,56 - 1267: 31,58 - 1292: 18,56 - 1293: 18,56 - 1294: 20,56 - 1295: 11,56 - 1296: 10,56 - 1307: 15,65 - 1308: 14,68 - 1309: 14,68 - 1310: 14,67 - 1311: 15,66 - 1315: 12,72 - 1316: 13,72 - 1317: 14,60 - 1318: 14,59 - 1319: 16,59 - 1320: 16,58 - 1321: 16,58 - 1322: 18,59 - 1323: 17,61 - 1324: 17,62 - 1325: 12,62 - 1326: 19,61 - 1327: 21,63 - 1363: 15,62 - 1364: 16,62 - 1365: 18,61 - 1366: 22,69 - 1367: 23,70 - 1368: 19,70 - 1369: 18,69 - 1370: 17,69 - 1371: 17,71 - 1372: 20,71 - 1373: 20,72 - 1374: 18,72 - 1375: 14,68 - 1376: 15,68 - 1377: 15,69 - 1378: 22,72 - 1392: 24,66 - 1393: 9,66 - 1398: -40,60 - 1399: -41,59 - 1400: -40,62 - 1401: -42,62 - 1411: -28,58 - 1412: -30,57 - 1413: -30,57 - 1414: -30,58 - 1415: -31,57 - 1416: -24,57 - 1417: -25,57 - 1418: -24,55 - 1419: -24,56 - 1420: -25,57 - 1421: -31,58 - 1422: -36,57 - 1423: -37,57 - 1424: -40,57 - 1425: -42,57 - 1426: -42,56 - 1427: -42,53 - 1428: -42,51 - 1429: -42,48 - 1430: -42,48 - 1431: -41,49 - 1432: -42,49 - 1433: -41,50 - 1434: -42,47 - 1435: -42,45 - 1436: -42,44 - 1437: -42,43 - 1438: -42,42 - 1439: -40,42 - 1440: -40,42 - 1441: -38,42 - 1442: -37,42 - 1443: -36,42 - 1444: -36,39 - 1445: -36,37 - 1446: -37,37 - 1447: -38,37 - 1448: -39,37 - 1449: -41,37 - 1450: -45,37 - 1451: -45,38 - 1452: -45,40 - 1453: -44,40 - 1454: -44,41 - 1455: -45,41 - 1456: -43,36 - 1457: -43,34 - 1458: -43,32 - 1459: -43,30 - 1460: -43,28 - 1461: -43,30 - 1462: -43,26 - 1463: -43,25 - 1464: -41,25 - 1465: -41,25 - 1466: -36,25 - 1467: -36,24 - 1468: -36,23 - 1469: -37,23 - 1470: -39,23 - 1471: -38,23 - 1472: -33,23 - 1473: -32,23 - 1474: -31,22 - 1475: -31,22 - 1476: -31,21 - 1477: -31,23 - 1478: -30,23 - 1479: -29,25 - 1480: -28,25 - 1481: -24,26 - 1482: -23,26 - 1483: -26,17 - 1484: -25,17 - 1485: -25,17 - 1486: -31,13 - 1487: -31,12 - 1488: -31,10 - 1489: -31,8 - 1540: -39,54 - 1541: -40,54 - 1542: -40,53 - 1543: -39,52 - 1544: -38,53 - 1545: -38,54 - 1546: -38,54 - 1547: -37,53 - 1548: -37,55 - 1558: -39,44 - 1559: -37,44 - 1560: -36,44 - 1561: -36,45 - 1562: -38,46 - 1563: -40,44 - 1592: -39,29 - 1593: -39,29 - 1594: -41,27 - 1595: -66,-45 - 1596: -65,-41 - 1597: -68,-43 - 1598: -68,-43 - 1599: -60,-36 - 1600: -60,-35 - 1601: -60,-37 - 1602: -59,-37 - 1603: -59,-38 - 1604: -60,-39 - 1605: -58,-38 - 1606: -58,-39 - 1607: -58,-36 - 1608: -59,-35 - 1609: -58,-34 - 1618: -59,-42 - 1619: -60,-42 - 1620: -60,-43 - 1621: -60,-41 - 1622: -59,-41 - 1623: -59,-40 - 1624: -58,-43 - 1648: -58,-50 - 1649: -59,-51 - 1650: -60,-50 - 1651: -60,-49 - 1652: -58,-48 - 1653: -58,-48 - 1654: -59,-48 - 1655: -59,-49 - 1660: -38,-1 - 1661: -39,0 - 1662: -37,1 - 1663: -38,1 - 1664: -37,0 - 1665: -39,2 - 1666: -39,2 - 1697: -54,-47 - 1698: -52,-48 - 1699: -52,-48 - 1700: -51,-49 - 1701: -49,-48 - 1702: -48,-48 - 1703: -49,-47 - 1704: -50,-47 - 1705: -52,-47 - 1706: -49,-47 - 1707: -50,-46 - 1708: -49,-45 - 1709: -50,-44 - 1710: -50,-44 - 1711: -54,-45 - 1712: -55,-47 - 1713: -56,-46 - 1714: -55,-45 - 1715: -54,-44 - 1716: -55,-43 - 1717: -56,-44 - 1718: -54,-46 - 1719: -53,-47 - 1720: -50,-48 - 1721: -49,-48 - 1722: -48,-47 - 1723: -47,-48 - 1724: -50,-48 - 1725: -51,-48 - 1726: -48,-49 - 1727: -48,-47 - 1728: -47,-47 - 1729: -46,-48 - 1730: -47,-46 - 1731: -47,-45 - 1732: -46,-45 - 1733: -47,-45 - 1734: -47,-44 - 1735: -46,-44 - 1736: -46,-43 - 1737: -47,-44 - 1738: -47,-48 - 1739: -49,-48 - 1740: -49,-46 - 1741: -50,-46 - 1742: -49,-45 - 1743: -50,-44 - 1744: -51,-44 - 1745: -50,-43 - 1746: -53,-44 - 1747: -54,-44 - 1748: -54,-43 - 1749: -53,-44 - 1750: -53,-44 - 1751: -54,-44 - 1752: -52,-44 - 1753: -51,-44 - 1754: -50,-43 - 1755: -54,-44 - 1756: -55,-44 - 1757: -55,-44 - 1758: -55,-45 - 1759: -55,-46 - 1760: -56,-46 - 1761: -55,-47 - 1762: -52,-48 - 1763: -50,-49 - 1764: -49,-49 - 1765: -52,-48 - 1766: -53,-49 - 1767: -53,-49 - 1768: -54,-48 - 1769: -52,-49 - 1770: -47,-47 - 1771: -46,-47 - 1772: -56,-49 - 1773: -56,-49 - 1774: -56,-48 - 1775: -50,-48 - 1776: -47,-48 - 1777: -46,-47 - 1778: -58,-23 - 1779: -66,-23 - 1804: -70,-29 - 1805: -70,-28 - 1806: -71,-28 - 1807: -72,-29 - 1808: -72,-28 - 1809: -71,-27 - 1810: -70,-27 - 1811: -70,-24 - 1812: -71,-25 - 1813: -72,-23 - 1814: -70,-23 - 1815: -68,-23 - 1816: -70,-26 - 1817: -69,-27 - 1818: -69,-29 - 1819: -68,-23 - 1820: -69,-23 - 1845: -55,-31 - 1846: -55,-23 - 1847: -52,-21 - 1848: -51,-21 - 1849: -64,-21 - 1850: -69,-20 - 1851: -75,-22 - 1852: -77,-20 - 1853: -77,-19 - 1854: -78,-20 - 1855: -78,-21 - 1856: -78,-24 - 1857: -78,-27 - 1858: -78,-28 - 1859: -78,-28 - 1860: -78,-26 - 1861: -77,-31 - 1862: -77,-32 - 1863: -78,-32 - 1864: -59,-32 - 1865: 41,-48 - 1866: 41,-48 - 1867: 37,-48 - 1868: 36,-47 - 1869: 36,-48 - 1870: 47,-48 - 1871: 45,-48 - 1872: 41,-45 - 1873: 41,-45 - 1874: 41,-39 - 1875: 41,-38 - 1876: 40,-37 - 1877: 40,-36 - 1878: 41,-33 - 1879: 42,-28 - 1880: 43,-28 - 1881: 51,-28 - 1882: 52,-28 - 1883: 52,-29 - 1884: 51,-30 - 1885: 52,-31 - 1886: 52,-32 - 1887: 51,-34 - 1888: 51,-35 - 1889: 51,-37 - 1890: 51,-39 - 1891: 52,-38 - 1892: 52,-43 - 1893: 52,-45 - 1894: 49,-42 - 1895: 49,-44 - 1896: 47,-45 - 1897: 45,-45 - 1898: 43,-41 - 1899: 46,-45 - 1900: 45,-44 - 1901: 45,-41 - 1902: 48,-42 - 1903: 49,-40 - 1904: 47,-40 - 1905: 45,-39 - 1906: 48,-38 - 1907: 47,-38 - 1908: 45,-38 - 1909: 44,-38 - 1910: 52,-47 - 1911: 55,-43 - 1912: 55,-44 - 1913: 55,-44 - 1914: 35,-55 - 1915: 34,-56 - 1916: 32,-55 - 1917: 30,-55 - 1918: 41,-42 - 1919: 43,-28 - 1920: 39,-23 - 1921: 38,-23 - 1922: 36,-23 - 1923: 36,-22 - 1924: 35,-21 - 1925: 36,-20 - 1926: 34,-21 - 1927: 35,-22 - 1928: 35,-23 - 1929: 34,-20 - 4023: -22,45 - 4030: -21,64 - 4038: 11,81 - 16255: -70,-36 - 16256: -67,-37 - 16257: -64,-36 - 16258: -63,-35 - 16259: -63,-35 - 16267: -69,-37 - 16268: -63,-34 - 16269: -63,-37 - 24008: -51,-31 - 24009: -52,-31 - 24010: -52,-30 - 24011: -51,-30 - 24012: -52,-30 - 24013: -52,-28 - 24014: -52,-27 - 24015: -53,-27 - 24017: -52,-25 - 24018: -51,-28 - 24019: -50,-29 - 24040: -47,-28 - 24041: -47,-29 - 24042: -46,-30 - 24043: -45,-29 - 24044: -46,-28 - 24045: -47,-27 - 24046: -46,-26 - 24047: -45,-26 - 24048: -45,-29 - 24049: -46,-30 - 24050: -45,-31 - 24051: -45,-31 - 24070: -32,-27 - 24071: -32,-29 - 24072: -33,-29 - 24073: -34,-29 - 24074: -35,-29 - 24075: -34,-27 - 24076: -36,-28 - 24077: -36,-29 - 24078: -38,-29 - 24079: -40,-29 - 24080: -41,-28 - 24081: -39,-27 - 24082: -41,-27 - 24083: -43,-24 - 24084: -43,-23 - 24085: -41,-22 - 24086: -42,-23 - 24087: -41,-23 - 24088: -38,-22 - 24089: -38,-23 - 24090: -38,-24 - 24091: -38,-24 - 24092: -37,-24 - 24093: -34,-22 - 24094: -34,-23 - 24095: -34,-24 - 24136: -27,-31 - 24137: -27,-31 - 24138: -30,-32 - 24139: -30,-32 - 24140: -28,-32 - 24141: -27,-31 - 24142: -26,-30 - 24143: -27,-30 - 24144: -30,-30 - 24145: -31,-28 - 24146: -30,-28 - 24147: -28,-28 - 24148: -27,-28 - 24149: -26,-26 - 24150: -28,-26 - 24151: -30,-26 - 24152: -30,-29 - 24402: 26,-60 - 24403: 26,-60 - 24404: 26,-61 - 24405: 28,-61 - 24406: 27,-60 - 24407: 27,-62 - 24408: 28,-62 - 24409: 27,-58 - 24410: 27,-58 - 24411: 26,-57 - 24414: 28,-57 - 24415: 28,-58 - 24416: 27,-58 - 24417: 26,-58 - 24418: 30,-61 - 24419: 32,-61 - 24420: 33,-61 - 24421: 34,-60 - 24422: 36,-61 - 24423: 35,-61 - 24424: 34,-62 - 24425: 35,-63 - 24426: 35,-61 - 24427: 35,-60 - 24428: 36,-61 - 24429: 36,-63 - 24430: 36,-64 - 24431: 35,-64 - 24432: 35,-65 - 24433: 34,-68 - 24434: 36,-70 - 24435: 35,-71 - 24436: 35,-70 - 24437: 34,-68 - 24438: 36,-69 - 24439: 35,-72 - 24440: 35,-72 - 24441: 36,-71 - 24442: 34,-71 - 24443: 34,-68 - 24444: 33,-68 - 24445: 33,-68 - 24446: 33,-69 - 24447: 30,-68 - 24448: 31,-67 - 24449: 27,-69 - 24450: 31,-70 - 24578: 27,-68 - 24579: 25,-69 - 24580: 27,-67 + 220: 42,-29 + 221: 44,-28 + 222: 46,-29 + 241: 46,-48 + 243: 40,-39 + 244: 41,-37 + 245: 41,-44 + 259: 51,-36 + 260: 52,-40 + 273: -24,59 + 276: -31,18 + 277: -36,33 + 287: -29,24 + 289: -26,-18 + 291: -37,-18 + 292: -29,-20 + 305: 7,-56 + 311: -46,-20 + 316: -38,-5 + 318: -42,-6 + 320: -53,-34 + 326: -40,-17 + 349: -39,-46 + 350: -42,-47 + 353: -43,-44 + 610: -15,-32 + 874: -36,-37 + 875: -37,-37 + 876: -39,-37 + 877: -38,-36 + 878: -39,-36 + 879: -38,-37 + 880: -40,-36 + 881: -41,-37 + 882: -41,-36 + 883: -36,-37 + 884: -37,-37 + 885: -38,-37 + 886: -38,-36 + 887: -35,-37 + 888: -39,-37 + 889: -39,-36 + 890: -40,-36 + 891: -40,-37 + 892: -41,-37 + 1143: 25,59 + 1144: 25,60 + 1145: 27,56 + 1146: 26,56 + 1147: 30,56 + 1148: 31,56 + 1149: 31,58 + 1174: 18,56 + 1175: 18,56 + 1176: 20,56 + 1177: 11,56 + 1178: 10,56 + 1189: 15,65 + 1190: 14,68 + 1191: 14,68 + 1192: 14,67 + 1193: 15,66 + 1197: 12,72 + 1198: 13,72 + 1199: 14,60 + 1200: 14,59 + 1201: 16,59 + 1202: 16,58 + 1203: 16,58 + 1204: 18,59 + 1205: 17,61 + 1206: 17,62 + 1207: 12,62 + 1208: 19,61 + 1209: 21,63 + 1245: 15,62 + 1246: 16,62 + 1247: 18,61 + 1248: 22,69 + 1249: 23,70 + 1250: 19,70 + 1251: 18,69 + 1252: 17,69 + 1253: 17,71 + 1254: 20,71 + 1255: 20,72 + 1256: 18,72 + 1257: 14,68 + 1258: 15,68 + 1259: 15,69 + 1260: 22,72 + 1274: 24,66 + 1275: 9,66 + 1280: -40,60 + 1281: -41,59 + 1282: -40,62 + 1283: -42,62 + 1293: -28,58 + 1294: -30,57 + 1295: -30,57 + 1296: -30,58 + 1297: -31,57 + 1298: -24,57 + 1299: -25,57 + 1300: -24,55 + 1301: -24,56 + 1302: -25,57 + 1303: -31,58 + 1304: -36,57 + 1305: -37,57 + 1306: -40,57 + 1307: -42,57 + 1308: -42,56 + 1309: -42,53 + 1310: -42,51 + 1311: -42,48 + 1312: -42,48 + 1313: -41,49 + 1314: -42,49 + 1315: -41,50 + 1316: -42,47 + 1317: -42,45 + 1318: -42,44 + 1319: -42,43 + 1320: -42,42 + 1321: -40,42 + 1322: -40,42 + 1323: -38,42 + 1324: -37,42 + 1325: -36,42 + 1326: -36,39 + 1327: -36,37 + 1328: -37,37 + 1329: -38,37 + 1330: -39,37 + 1331: -41,37 + 1332: -45,37 + 1333: -45,38 + 1334: -45,40 + 1335: -44,40 + 1336: -44,41 + 1337: -45,41 + 1338: -43,36 + 1339: -43,34 + 1340: -43,32 + 1341: -43,30 + 1342: -43,28 + 1343: -43,30 + 1344: -43,26 + 1345: -43,25 + 1346: -41,25 + 1347: -41,25 + 1348: -36,25 + 1349: -36,24 + 1350: -36,23 + 1351: -37,23 + 1352: -39,23 + 1353: -38,23 + 1354: -33,23 + 1355: -32,23 + 1356: -31,22 + 1357: -31,22 + 1358: -31,21 + 1359: -31,23 + 1360: -30,23 + 1361: -29,25 + 1362: -28,25 + 1363: -24,26 + 1364: -23,26 + 1365: -26,17 + 1366: -25,17 + 1367: -25,17 + 1368: -31,13 + 1369: -31,12 + 1370: -31,10 + 1371: -31,8 + 1422: -39,54 + 1423: -40,54 + 1424: -40,53 + 1425: -39,52 + 1426: -38,53 + 1427: -38,54 + 1428: -38,54 + 1429: -37,53 + 1430: -37,55 + 1440: -39,44 + 1441: -37,44 + 1442: -36,44 + 1443: -36,45 + 1444: -38,46 + 1445: -40,44 + 1474: -39,29 + 1475: -39,29 + 1476: -41,27 + 1477: -66,-45 + 1478: -65,-41 + 1479: -68,-43 + 1480: -68,-43 + 1481: -60,-36 + 1482: -60,-35 + 1483: -60,-37 + 1484: -59,-37 + 1485: -59,-38 + 1486: -60,-39 + 1487: -58,-38 + 1488: -58,-39 + 1489: -58,-36 + 1490: -59,-35 + 1491: -58,-34 + 1500: -59,-42 + 1501: -60,-42 + 1502: -60,-43 + 1503: -60,-41 + 1504: -59,-41 + 1505: -59,-40 + 1506: -58,-43 + 1530: -58,-50 + 1531: -59,-51 + 1532: -60,-50 + 1533: -60,-49 + 1534: -58,-48 + 1535: -58,-48 + 1536: -59,-48 + 1537: -59,-49 + 1542: -38,-1 + 1543: -39,0 + 1544: -37,1 + 1545: -38,1 + 1546: -37,0 + 1547: -39,2 + 1548: -39,2 + 1579: -54,-47 + 1580: -52,-48 + 1581: -52,-48 + 1582: -51,-49 + 1583: -49,-48 + 1584: -48,-48 + 1585: -49,-47 + 1586: -50,-47 + 1587: -52,-47 + 1588: -49,-47 + 1589: -50,-46 + 1590: -49,-45 + 1591: -50,-44 + 1592: -50,-44 + 1593: -54,-45 + 1594: -55,-47 + 1595: -56,-46 + 1596: -55,-45 + 1597: -54,-44 + 1598: -55,-43 + 1599: -56,-44 + 1600: -54,-46 + 1601: -53,-47 + 1602: -50,-48 + 1603: -49,-48 + 1604: -48,-47 + 1605: -47,-48 + 1606: -50,-48 + 1607: -51,-48 + 1608: -48,-49 + 1609: -48,-47 + 1610: -47,-47 + 1611: -46,-48 + 1612: -47,-46 + 1613: -47,-45 + 1614: -46,-45 + 1615: -47,-45 + 1616: -47,-44 + 1617: -46,-44 + 1618: -46,-43 + 1619: -47,-44 + 1620: -47,-48 + 1621: -49,-48 + 1622: -49,-46 + 1623: -50,-46 + 1624: -49,-45 + 1625: -50,-44 + 1626: -51,-44 + 1627: -50,-43 + 1628: -53,-44 + 1629: -54,-44 + 1630: -54,-43 + 1631: -53,-44 + 1632: -53,-44 + 1633: -54,-44 + 1634: -52,-44 + 1635: -51,-44 + 1636: -50,-43 + 1637: -54,-44 + 1638: -55,-44 + 1639: -55,-44 + 1640: -55,-45 + 1641: -55,-46 + 1642: -56,-46 + 1643: -55,-47 + 1644: -52,-48 + 1645: -50,-49 + 1646: -49,-49 + 1647: -52,-48 + 1648: -53,-49 + 1649: -53,-49 + 1650: -54,-48 + 1651: -52,-49 + 1652: -47,-47 + 1653: -46,-47 + 1654: -56,-49 + 1655: -56,-49 + 1656: -56,-48 + 1657: -50,-48 + 1658: -47,-48 + 1659: -46,-47 + 1660: -58,-23 + 1661: -66,-23 + 1686: -70,-29 + 1687: -70,-28 + 1688: -71,-28 + 1689: -72,-29 + 1690: -72,-28 + 1691: -71,-27 + 1692: -70,-27 + 1693: -70,-24 + 1694: -71,-25 + 1695: -72,-23 + 1696: -70,-23 + 1697: -68,-23 + 1698: -70,-26 + 1699: -69,-27 + 1700: -69,-29 + 1701: -68,-23 + 1702: -69,-23 + 1727: -55,-31 + 1728: -55,-23 + 1729: -52,-21 + 1730: -51,-21 + 1731: -64,-21 + 1732: -69,-20 + 1733: -75,-22 + 1734: -77,-20 + 1735: -77,-19 + 1736: -78,-20 + 1737: -78,-21 + 1738: -78,-24 + 1739: -78,-27 + 1740: -78,-28 + 1741: -78,-28 + 1742: -78,-26 + 1743: -77,-31 + 1744: -77,-32 + 1745: -78,-32 + 1746: -59,-32 + 1747: 41,-48 + 1748: 41,-48 + 1749: 37,-48 + 1750: 36,-47 + 1751: 36,-48 + 1752: 47,-48 + 1753: 45,-48 + 1754: 41,-45 + 1755: 41,-45 + 1756: 41,-39 + 1757: 41,-38 + 1758: 40,-37 + 1759: 40,-36 + 1760: 41,-33 + 1761: 42,-28 + 1762: 43,-28 + 1763: 51,-28 + 1764: 52,-28 + 1765: 52,-29 + 1766: 51,-30 + 1767: 52,-31 + 1768: 52,-32 + 1769: 51,-34 + 1770: 51,-35 + 1771: 51,-37 + 1772: 51,-39 + 1773: 52,-38 + 1774: 52,-43 + 1775: 52,-45 + 1776: 49,-42 + 1777: 49,-44 + 1778: 47,-45 + 1779: 45,-45 + 1780: 43,-41 + 1781: 46,-45 + 1782: 45,-44 + 1783: 45,-41 + 1784: 48,-42 + 1785: 49,-40 + 1786: 47,-40 + 1787: 45,-39 + 1788: 48,-38 + 1789: 47,-38 + 1790: 45,-38 + 1791: 44,-38 + 1792: 52,-47 + 1793: 55,-43 + 1794: 55,-44 + 1795: 55,-44 + 1796: 35,-55 + 1797: 34,-56 + 1798: 32,-55 + 1799: 30,-55 + 1800: 41,-42 + 1801: 43,-28 + 1802: 39,-23 + 1803: 38,-23 + 1804: 36,-23 + 1805: 36,-22 + 1806: 35,-21 + 1807: 36,-20 + 1808: 34,-21 + 1809: 35,-22 + 1810: 35,-23 + 1811: 34,-20 + 15304: -70,-36 + 15305: -67,-37 + 15306: -64,-36 + 15307: -63,-35 + 15308: -63,-35 + 15316: -69,-37 + 15317: -63,-34 + 15318: -63,-37 + 23014: -51,-31 + 23015: -52,-31 + 23016: -52,-30 + 23017: -51,-30 + 23018: -52,-30 + 23019: -52,-28 + 23020: -52,-27 + 23021: -53,-27 + 23022: -52,-25 + 23023: -51,-28 + 23024: -50,-29 + 23045: -47,-28 + 23046: -47,-29 + 23047: -46,-30 + 23048: -45,-29 + 23049: -46,-28 + 23050: -47,-27 + 23051: -46,-26 + 23052: -45,-26 + 23053: -45,-29 + 23054: -46,-30 + 23055: -45,-31 + 23056: -45,-31 + 23075: -32,-27 + 23076: -32,-29 + 23077: -33,-29 + 23078: -34,-29 + 23079: -35,-29 + 23080: -34,-27 + 23081: -36,-28 + 23082: -36,-29 + 23083: -38,-29 + 23084: -40,-29 + 23085: -41,-28 + 23086: -39,-27 + 23087: -41,-27 + 23088: -43,-24 + 23089: -43,-23 + 23090: -41,-22 + 23091: -42,-23 + 23092: -41,-23 + 23093: -38,-22 + 23094: -38,-23 + 23095: -38,-24 + 23096: -38,-24 + 23097: -37,-24 + 23098: -34,-22 + 23099: -34,-23 + 23100: -34,-24 + 23141: -27,-31 + 23142: -27,-31 + 23143: -30,-32 + 23144: -30,-32 + 23145: -28,-32 + 23146: -27,-31 + 23147: -26,-30 + 23148: -27,-30 + 23149: -30,-30 + 23150: -31,-28 + 23151: -30,-28 + 23152: -28,-28 + 23153: -27,-28 + 23154: -26,-26 + 23155: -28,-26 + 23156: -30,-26 + 23157: -30,-29 + 23405: 26,-60 + 23406: 26,-60 + 23407: 26,-61 + 23408: 28,-61 + 23409: 27,-60 + 23410: 27,-62 + 23411: 28,-62 + 23412: 27,-58 + 23413: 27,-58 + 23414: 26,-57 + 23415: 28,-57 + 23416: 28,-58 + 23417: 27,-58 + 23418: 26,-58 + 23419: 30,-61 + 23420: 32,-61 + 23421: 33,-61 + 23422: 34,-60 + 23423: 36,-61 + 23424: 35,-61 + 23425: 34,-62 + 23426: 35,-63 + 23427: 35,-61 + 23428: 35,-60 + 23429: 36,-61 + 23430: 36,-63 + 23431: 36,-64 + 23432: 35,-64 + 23433: 35,-65 + 23434: 34,-68 + 23435: 36,-70 + 23436: 35,-71 + 23437: 35,-70 + 23438: 34,-68 + 23439: 36,-69 + 23440: 35,-72 + 23441: 35,-72 + 23442: 36,-71 + 23443: 34,-71 + 23444: 34,-68 + 23445: 33,-68 + 23446: 33,-68 + 23447: 33,-69 + 23448: 30,-68 + 23449: 31,-67 + 23450: 27,-69 + 23451: 31,-70 + 23578: 27,-68 + 23579: 25,-69 + 23580: 27,-67 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 13532: -36,-75 - 13533: -37,-73 - 13534: -36,-73 - 13535: -35,-73 - 13536: -34,-73 - 13537: -33,-73 - 13538: -33,-73 - 13539: -33,-73 - 13540: -32,-73 - 13541: -33,-72 - 13542: -33,-72 - 13543: -31,-74 - 13544: -30,-73 - 13545: -30,-74 - 13546: -30,-75 - 13547: -31,-74 - 13548: -29,-75 - 13549: -29,-75 - 13550: -29,-76 - 13551: -29,-77 - 13552: -29,-78 - 13553: -29,-79 - 13554: -29,-80 - 13555: -30,-80 - 13556: -30,-79 - 13557: -30,-78 - 13558: -30,-77 - 13559: -30,-76 - 13560: -30,-75 - 13561: -32,-78 - 13562: -32,-79 - 13563: -33,-78 - 13564: -34,-78 - 13565: -34,-79 - 13566: -33,-80 - 13567: -35,-80 - 13568: -35,-79 - 13569: -35,-78 - 13570: -34,-77 - 13571: -33,-77 - 13572: -32,-78 - 13573: -31,-79 - 13574: -32,-80 - 13575: -37,-80 - 13576: -37,-79 - 13577: -37,-79 - 13578: -36,-78 - 13579: -37,-78 - 13580: -37,-77 - 13581: -36,-77 - 13582: -37,-76 - 13583: -37,-76 - 13584: -36,-76 - 13585: -36,-75 - 13586: -37,-74 - 13587: -36,-73 - 13588: -36,-74 - 13589: -36,-75 - 13590: -35,-74 - 13591: -35,-74 - 13592: -35,-75 - 13593: -35,-76 - 13594: -33,-76 - 13595: -33,-76 - 13596: -33,-75 - 13598: -37,-73 - 13599: -37,-74 - 13600: -36,-75 - 13601: -37,-76 - 13602: -37,-77 - 13603: -36,-78 - 13604: -37,-79 - 13605: -37,-79 - 13606: -37,-79 - 13607: -36,-77 - 13608: -35,-76 - 13609: -32,-76 - 13610: -31,-76 - 13611: -30,-76 - 13612: -30,-77 - 13613: -30,-78 - 13614: -29,-78 - 13615: -29,-77 - 13616: -33,-75 - 13617: -33,-75 - 13618: -32,-75 - 13619: -29,-74 - 13620: -29,-73 - 13621: -29,-73 - 13622: -32,-74 - 13623: -33,-74 - 13624: -31,-73 - 13625: -33,-74 - 13626: -34,-75 - 13627: -34,-74 - 13640: -31,-75 - 13641: -36,-74 - 13676: -39,-74 - 13677: -39,-71 - 13678: -36,-71 - 13679: -35,-71 - 13680: -34,-71 - 13681: -33,-71 - 13682: -32,-71 - 13683: -31,-71 - 13700: -27,-75 - 13701: -27,-74 - 13702: -27,-73 - 13703: -27,-73 - 13704: -27,-68 - 13705: -27,-67 - 13706: -27,-67 - 13707: -27,-69 - 13708: -28,-66 - 13709: -28,-65 - 13710: -28,-62 - 13711: -28,-63 - 13712: -28,-65 - 13725: -34,-60 - 13726: -34,-62 - 13727: -32,-60 - 13728: -32,-61 - 13729: -32,-62 - 13730: -31,-62 - 13731: -31,-63 - 13732: -33,-63 - 13733: -30,-61 - 13736: -34,-63 - 13737: -31,-60 - 13832: -15,-62 - 13833: -10,-62 - 13834: -9,-57 - 13835: -10,-57 - 13836: -7,-56 - 13837: -7,-56 - 13838: -6,-55 - 13839: -5,-55 - 13840: -5,-56 - 13841: -6,-55 - 13842: -6,-56 - 14147: -69,-21 - 14148: -70,-21 - 14149: -69,-21 - 14150: -68,-21 - 14151: -67,-21 - 14152: -63,-21 - 14153: -63,-21 - 14154: -61,-21 - 14155: -60,-21 - 14156: -59,-21 - 14157: -58,-21 - 14158: -58,-21 - 14159: -75,-21 - 14160: -75,-23 - 14161: -75,-24 - 14162: -75,-25 - 14163: -75,-26 - 14164: -75,-27 - 14165: -75,-28 - 14166: -75,-26 - 14167: -75,-25 - 14168: -75,-22 - 14169: -75,-21 - 14170: -75,-21 - 14171: -74,-32 - 14172: -75,-31 - 14173: -73,-32 - 14174: -77,-26 - 14175: -78,-26 - 14176: -78,-27 - 14177: -78,-28 - 14178: -78,-23 - 14179: -77,-23 - 14180: -77,-24 - 14181: -78,-24 - 14182: -77,-19 - 14183: -78,-19 - 14184: -78,-19 - 14185: -78,-21 + 12588: -36,-75 + 12589: -37,-73 + 12590: -36,-73 + 12591: -35,-73 + 12592: -34,-73 + 12593: -33,-73 + 12594: -33,-73 + 12595: -33,-73 + 12596: -32,-73 + 12597: -33,-72 + 12598: -33,-72 + 12599: -31,-74 + 12600: -30,-73 + 12601: -30,-74 + 12602: -30,-75 + 12603: -31,-74 + 12604: -29,-75 + 12605: -29,-75 + 12606: -29,-76 + 12607: -29,-77 + 12608: -29,-78 + 12609: -29,-79 + 12610: -29,-80 + 12611: -30,-80 + 12612: -30,-79 + 12613: -30,-78 + 12614: -30,-77 + 12615: -30,-76 + 12616: -30,-75 + 12617: -32,-78 + 12618: -32,-79 + 12619: -33,-78 + 12620: -34,-78 + 12621: -34,-79 + 12622: -33,-80 + 12623: -35,-80 + 12624: -35,-79 + 12625: -35,-78 + 12626: -34,-77 + 12627: -33,-77 + 12628: -32,-78 + 12629: -31,-79 + 12630: -32,-80 + 12631: -37,-80 + 12632: -37,-79 + 12633: -37,-79 + 12634: -36,-78 + 12635: -37,-78 + 12636: -37,-77 + 12637: -36,-77 + 12638: -37,-76 + 12639: -37,-76 + 12640: -36,-76 + 12641: -36,-75 + 12642: -37,-74 + 12643: -36,-73 + 12644: -36,-74 + 12645: -36,-75 + 12646: -35,-74 + 12647: -35,-74 + 12648: -35,-75 + 12649: -35,-76 + 12650: -33,-76 + 12651: -33,-76 + 12652: -33,-75 + 12654: -37,-73 + 12655: -37,-74 + 12656: -36,-75 + 12657: -37,-76 + 12658: -37,-77 + 12659: -36,-78 + 12660: -37,-79 + 12661: -37,-79 + 12662: -37,-79 + 12663: -36,-77 + 12664: -35,-76 + 12665: -32,-76 + 12666: -31,-76 + 12667: -30,-76 + 12668: -30,-77 + 12669: -30,-78 + 12670: -29,-78 + 12671: -29,-77 + 12672: -33,-75 + 12673: -33,-75 + 12674: -32,-75 + 12675: -29,-74 + 12676: -29,-73 + 12677: -29,-73 + 12678: -32,-74 + 12679: -33,-74 + 12680: -31,-73 + 12681: -33,-74 + 12682: -34,-75 + 12683: -34,-74 + 12696: -31,-75 + 12697: -36,-74 + 12732: -39,-74 + 12733: -39,-71 + 12734: -36,-71 + 12735: -35,-71 + 12736: -34,-71 + 12737: -33,-71 + 12738: -32,-71 + 12739: -31,-71 + 12756: -27,-75 + 12757: -27,-74 + 12758: -27,-73 + 12759: -27,-73 + 12760: -27,-68 + 12761: -27,-67 + 12762: -27,-67 + 12763: -27,-69 + 12764: -28,-66 + 12765: -28,-65 + 12766: -28,-62 + 12767: -28,-63 + 12768: -28,-65 + 12781: -34,-60 + 12782: -34,-62 + 12783: -32,-60 + 12784: -32,-61 + 12785: -32,-62 + 12786: -31,-62 + 12787: -31,-63 + 12788: -33,-63 + 12789: -30,-61 + 12792: -34,-63 + 12793: -31,-60 + 12888: -15,-62 + 12889: -10,-62 + 12890: -9,-57 + 12891: -10,-57 + 12892: -7,-56 + 12893: -7,-56 + 12894: -6,-55 + 12895: -5,-55 + 12896: -5,-56 + 12897: -6,-55 + 12898: -6,-56 + 13203: -69,-21 + 13204: -70,-21 + 13205: -69,-21 + 13206: -68,-21 + 13207: -67,-21 + 13208: -63,-21 + 13209: -63,-21 + 13210: -61,-21 + 13211: -60,-21 + 13212: -59,-21 + 13213: -58,-21 + 13214: -58,-21 + 13215: -75,-21 + 13216: -75,-23 + 13217: -75,-24 + 13218: -75,-25 + 13219: -75,-26 + 13220: -75,-27 + 13221: -75,-28 + 13222: -75,-26 + 13223: -75,-25 + 13224: -75,-22 + 13225: -75,-21 + 13226: -75,-21 + 13227: -74,-32 + 13228: -75,-31 + 13229: -73,-32 + 13230: -77,-26 + 13231: -78,-26 + 13232: -78,-27 + 13233: -78,-28 + 13234: -78,-23 + 13235: -77,-23 + 13236: -77,-24 + 13237: -78,-24 + 13238: -77,-19 + 13239: -78,-19 + 13240: -78,-19 + 13241: -78,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavyMonotile decals: - 13751: -32,-60 - 13752: -32,-61 - 13753: -31,-62 - 13754: -31,-62 - 13755: -32,-62 - 13756: -33,-63 - 13757: -34,-62 - 13758: -31,-63 - 13759: -30,-61 + 12807: -32,-60 + 12808: -32,-61 + 12809: -31,-62 + 12810: -31,-62 + 12811: -32,-62 + 12812: -33,-63 + 12813: -34,-62 + 12814: -31,-63 + 12815: -30,-61 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 1041: -12,-50 - 3867: 23,72 - 3875: 18,69 - 3902: 20,67 - 3903: 26,66 - 3904: 27,67 - 3914: 21,68 - 3915: 18,66 - 3916: 17,65 - 3919: 22,66 - 3955: 18,63 - 3956: 21,60 - 3957: 21,58 - 3962: 20,60 - 3963: 18,60 - 3987: -35,61 - 3996: -42,59 - 4002: -36,62 - 4015: -36,55 - 4016: -32,60 - 11192: -65,-37 - 11193: -59,-37 - 11194: -59,-37 - 11195: -59,-38 - 11196: -58,-38 - 11197: -58,-38 - 11198: -59,-42 - 11199: -60,-41 - 11200: -60,-41 - 11201: -59,-41 - 11202: -59,-40 - 11203: -59,-41 - 11204: -58,-41 - 11205: -58,-41 - 11206: -65,-41 - 11207: -65,-41 - 11208: -65,-41 - 12924: -35,-23 - 12925: -35,-22 - 13047: 48,-31 - 13080: 46,-32 - 13081: 47,-33 - 13082: 47,-32 - 13083: 48,-31 - 13084: 48,-32 - 13085: 47,-34 - 13086: 49,-34 - 13087: 49,-34 - 13088: 49,-35 - 13089: 47,-35 - 13090: 47,-35 - 13091: 46,-34 - 13092: 44,-34 - 13093: 44,-34 - 13094: 43,-33 - 13095: 45,-33 - 13096: 45,-32 - 13097: 47,-32 - 13098: 46,-34 - 13099: 46,-35 - 13100: 47,-33 - 13101: 48,-33 - 13102: 49,-33 - 13103: 49,-33 - 13104: 48,-32 - 13107: 39,-52 - 13108: 40,-51 - 13109: 40,-52 - 13110: 40,-53 - 13111: 40,-53 - 13112: 39,-54 - 13113: 39,-55 - 13114: 40,-55 - 13115: 41,-52 - 13116: 41,-54 - 13117: 41,-55 - 13118: 42,-53 - 13119: 42,-53 - 13120: 41,-56 - 13121: 42,-56 - 13122: 42,-50 - 13123: 44,-50 - 13124: 44,-50 - 13125: 45,-50 - 13126: 45,-52 - 13127: 44,-52 - 13128: 44,-51 - 13129: 45,-52 - 13130: 44,-54 - 13131: 44,-55 - 13132: 46,-55 - 13133: 45,-54 - 13134: 45,-55 - 13135: 46,-55 - 13136: 46,-52 - 13137: 47,-52 - 13213: 52,-37 - 13227: 54,-35 - 13233: 54,-39 - 13254: 54,-36 - 13255: 55,-35 - 13256: 53,-36 - 13257: 53,-38 - 13258: 54,-37 - 13350: -37,-63 - 13351: -37,-62 - 13352: -38,-62 - 13353: -38,-61 - 13354: -38,-60 - 13355: -36,-60 - 13356: -38,-60 - 13357: -37,-59 - 13358: -37,-61 - 13359: -36,-62 - 13360: -36,-61 - 13361: -37,-61 - 13362: -38,-63 - 13363: -36,-63 - 13364: -36,-63 - 13365: -36,-62 - 13399: -41,-63 - 13400: -41,-62 - 13401: -40,-63 - 13448: -41,-64 - 13449: -37,-64 - 13450: -37,-59 - 15967: 76,1 - 15968: 76,0 - 15969: 77,0 - 15970: 78,0 - 15971: 79,4 - 15972: 79,5 - 15973: 78,4 - 15985: 99,-2 - 15986: 99,-3 - 15987: 99,-4 - 15988: 100,-4 - 15989: 100,-2 - 15999: 85,2 - 16000: 86,2 - 16001: 79,-3 - 16002: 79,-4 - 16029: 92,9 - 16030: 76,6 - 16031: 76,4 - 16035: 93,6 - 16036: 96,6 - 16037: 95,6 - 16038: 96,7 - 16039: 97,7 - 16134: -72,-40 - 16135: -72,-41 - 16136: -71,-41 - 16137: -71,-42 - 16138: -72,-42 - 16139: -71,-40 - 16140: -70,-40 - 16141: -70,-41 - 16142: -69,-41 - 16143: -69,-41 - 16144: -69,-43 - 16186: -65,-47 - 16187: -65,-47 - 16188: -64,-47 - 16189: -64,-47 - 16190: -63,-46 - 16191: -62,-47 - 16192: -62,-48 - 16193: -63,-48 - 16194: -66,-48 - 16209: -65,-46 - 16210: -64,-46 - 16211: -64,-45 - 16212: -63,-45 - 16213: -63,-46 - 16214: -63,-47 - 16215: -65,-47 - 16216: -66,-48 - 16217: -66,-48 - 16218: -63,-48 - 16219: -63,-47 - 16220: -62,-47 - 16221: -62,-41 - 16222: -62,-40 - 16223: -64,-40 - 16224: -70,-43 - 16225: -69,-43 - 16226: -68,-45 - 16227: -69,-46 - 16228: -70,-46 - 16229: -72,-42 - 16309: -59,-50 - 16310: -60,-49 - 16311: -60,-48 - 16326: 10,68 - 16327: 10,68 - 16328: 11,69 - 16329: 11,69 - 16330: 12,69 - 16331: 12,68 - 16332: 12,67 - 16333: 12,66 - 16334: 10,66 - 16335: 11,66 - 16336: 11,67 - 16337: 11,67 - 16338: 12,67 - 16339: 11,69 - 16340: 12,70 - 16341: 13,67 - 16342: 13,67 - 16343: 11,68 - 16344: 12,69 - 16345: 11,70 - 16366: -40,-6 - 16367: -40,-7 - 16368: -39,-7 - 16369: -39,-6 - 16370: -38,2 - 16371: -37,2 - 16372: -37,1 - 16373: -37,0 - 16374: -39,0 - 16375: -38,2 - 16449: -32,-20 - 16450: -30,-20 - 16451: -30,-20 - 16452: -30,-19 - 16453: -32,-18 - 16454: -34,-18 - 16455: -35,-18 - 16456: -31,-18 - 16457: -29,-18 - 16458: -29,-18 - 16459: -28,-20 - 16460: -28,-19 - 16461: -29,-20 - 16462: -24,-21 - 16463: -24,-22 - 16464: -22,-22 - 16465: -22,-21 - 16466: -35,-20 - 16467: -36,-20 - 16468: -39,-20 - 16469: -41,-20 - 16470: -43,-20 - 16471: -44,-20 - 16472: -48,-20 - 16473: -49,-22 - 16474: -49,-23 - 16475: -49,-23 - 16476: -50,-22 - 16477: -49,-22 - 16478: -49,-22 - 16479: -50,-23 - 16480: -53,-23 - 16481: -54,-23 - 16482: -53,-21 - 16483: -53,-20 - 16484: -53,-20 - 16485: -52,-20 - 16486: -53,-20 - 16487: -55,-20 - 16488: -56,-20 - 16489: -56,-21 - 16490: -55,-22 - 16491: -56,-23 - 16492: -56,-26 - 16493: -56,-25 - 16494: -56,-27 - 16495: -55,-29 - 16496: -55,-30 - 16497: -60,-32 - 17167: -2,32 - 17168: -1,32 - 17169: -1,32 - 17170: -2,32 - 17180: -2,27 - 17181: 0,27 - 17182: 0,40 - 17183: 1,40 - 17184: 1,40 - 17185: 2,40 - 17186: 0,36 - 17187: 0,35 - 17188: 0,34 - 17207: 0,48 - 17208: 0,47 - 17209: 0,41 - 17210: 1,42 - 17211: 6,50 - 17212: 6,52 - 17213: 7,52 - 18317: -50,-36 - 18318: -50,-37 - 18319: -51,-38 - 18320: -53,-37 - 18321: -53,-36 - 18322: -48,-38 - 18323: -52,-40 - 18324: -51,-41 - 18342: -58,-46 - 18623: 59,-40 - 18624: 60,-40 - 18625: 60,-41 - 18851: 44,-42 - 18852: 44,-44 - 18853: 46,-44 - 18854: 44,-42 - 18855: 46,-40 - 18856: 47,-39 - 18857: 48,-39 - 18858: 48,-38 - 18859: 49,-38 - 18860: 49,-41 - 18861: 49,-42 - 18862: 49,-42 - 18863: 49,-41 - 18864: 49,-44 - 18865: 49,-45 - 18866: 48,-45 - 18867: 46,-45 - 18868: 44,-45 - 18869: 43,-45 - 18870: 43,-44 - 18871: 43,-42 - 18872: 52,-47 - 18873: 46,-48 - 18874: 45,-48 - 18875: 44,-48 - 18883: 56,-43 - 18884: 56,-43 - 18885: 55,-44 - 18886: 55,-43 - 18887: 56,-41 - 19768: -30,-23 - 19769: -29,-23 - 19770: -28,-23 - 19771: -29,-23 - 21350: -67,-29 - 21351: -67,-29 - 21352: -67,-28 - 21353: -67,-28 - 21354: -68,-26 - 21355: -67,-26 - 21356: -68,-25 - 21357: -67,-24 - 21358: -69,-23 - 21359: -69,-23 - 21360: -70,-24 - 21361: -72,-24 - 21362: -72,-25 - 21363: -70,-23 - 21364: -71,-23 - 21365: -72,-25 - 21366: -72,-27 - 21367: -72,-26 - 21376: -61,-29 - 21377: -63,-29 - 21378: -63,-30 - 21379: -61,-29 - 21422: -60,-27 - 21423: -61,-27 - 21424: -60,-27 - 21425: -59,-26 - 21426: -59,-25 - 21427: -60,-25 - 21428: -61,-25 - 21429: -60,-23 - 21430: -60,-23 - 21431: -63,-23 - 21432: -64,-23 - 21433: -60,-23 - 21434: -62,-23 - 21435: -61,-23 - 21436: -65,-24 - 21437: -65,-25 - 21438: -65,-25 - 21439: -60,-25 - 21440: -60,-25 - 21441: -61,-27 - 21442: -62,-27 - 21443: -64,-27 - 21444: -62,-26 - 21445: -63,-26 - 21446: -63,-24 - 21447: -62,-24 - 21448: -61,-24 - 21449: -62,-25 + 924: -12,-50 + 3734: 23,72 + 3742: 18,69 + 3769: 20,67 + 3770: 26,66 + 3771: 27,67 + 3781: 21,68 + 3782: 18,66 + 3783: 17,65 + 3786: 22,66 + 3822: 18,63 + 3823: 21,60 + 3824: 21,58 + 3829: 20,60 + 3830: 18,60 + 3854: -35,61 + 3863: -42,59 + 3869: -36,62 + 3882: -36,55 + 3883: -32,60 + 10689: -65,-37 + 10690: -59,-37 + 10691: -59,-37 + 10692: -59,-38 + 10693: -58,-38 + 10694: -58,-38 + 10695: -59,-42 + 10696: -60,-41 + 10697: -60,-41 + 10698: -59,-41 + 10699: -59,-40 + 10700: -59,-41 + 10701: -58,-41 + 10702: -58,-41 + 10703: -65,-41 + 10704: -65,-41 + 10705: -65,-41 + 12098: -35,-23 + 12099: -35,-22 + 12103: 48,-31 + 12136: 46,-32 + 12137: 47,-33 + 12138: 47,-32 + 12139: 48,-31 + 12140: 48,-32 + 12141: 47,-34 + 12142: 49,-34 + 12143: 49,-34 + 12144: 49,-35 + 12145: 47,-35 + 12146: 47,-35 + 12147: 46,-34 + 12148: 44,-34 + 12149: 44,-34 + 12150: 43,-33 + 12151: 45,-33 + 12152: 45,-32 + 12153: 47,-32 + 12154: 46,-34 + 12155: 46,-35 + 12156: 47,-33 + 12157: 48,-33 + 12158: 49,-33 + 12159: 49,-33 + 12160: 48,-32 + 12163: 39,-52 + 12164: 40,-51 + 12165: 40,-52 + 12166: 40,-53 + 12167: 40,-53 + 12168: 39,-54 + 12169: 39,-55 + 12170: 40,-55 + 12171: 41,-52 + 12172: 41,-54 + 12173: 41,-55 + 12174: 42,-53 + 12175: 42,-53 + 12176: 41,-56 + 12177: 42,-56 + 12178: 42,-50 + 12179: 44,-50 + 12180: 44,-50 + 12181: 45,-50 + 12182: 45,-52 + 12183: 44,-52 + 12184: 44,-51 + 12185: 45,-52 + 12186: 44,-54 + 12187: 44,-55 + 12188: 46,-55 + 12189: 45,-54 + 12190: 45,-55 + 12191: 46,-55 + 12192: 46,-52 + 12193: 47,-52 + 12269: 52,-37 + 12283: 54,-35 + 12289: 54,-39 + 12310: 54,-36 + 12311: 55,-35 + 12312: 53,-36 + 12313: 53,-38 + 12314: 54,-37 + 12406: -37,-63 + 12407: -37,-62 + 12408: -38,-62 + 12409: -38,-61 + 12410: -38,-60 + 12411: -36,-60 + 12412: -38,-60 + 12413: -37,-59 + 12414: -37,-61 + 12415: -36,-62 + 12416: -36,-61 + 12417: -37,-61 + 12418: -38,-63 + 12419: -36,-63 + 12420: -36,-63 + 12421: -36,-62 + 12455: -41,-63 + 12456: -41,-62 + 12457: -40,-63 + 12504: -41,-64 + 12505: -37,-64 + 12506: -37,-59 + 15016: 76,1 + 15017: 76,0 + 15018: 77,0 + 15019: 78,0 + 15020: 79,4 + 15021: 79,5 + 15022: 78,4 + 15034: 99,-2 + 15035: 99,-3 + 15036: 99,-4 + 15037: 100,-4 + 15038: 100,-2 + 15048: 85,2 + 15049: 86,2 + 15050: 79,-3 + 15051: 79,-4 + 15078: 92,9 + 15079: 76,6 + 15080: 76,4 + 15084: 93,6 + 15085: 96,6 + 15086: 95,6 + 15087: 96,7 + 15088: 97,7 + 15183: -72,-40 + 15184: -72,-41 + 15185: -71,-41 + 15186: -71,-42 + 15187: -72,-42 + 15188: -71,-40 + 15189: -70,-40 + 15190: -70,-41 + 15191: -69,-41 + 15192: -69,-41 + 15193: -69,-43 + 15235: -65,-47 + 15236: -65,-47 + 15237: -64,-47 + 15238: -64,-47 + 15239: -63,-46 + 15240: -62,-47 + 15241: -62,-48 + 15242: -63,-48 + 15243: -66,-48 + 15258: -65,-46 + 15259: -64,-46 + 15260: -64,-45 + 15261: -63,-45 + 15262: -63,-46 + 15263: -63,-47 + 15264: -65,-47 + 15265: -66,-48 + 15266: -66,-48 + 15267: -63,-48 + 15268: -63,-47 + 15269: -62,-47 + 15270: -62,-41 + 15271: -62,-40 + 15272: -64,-40 + 15273: -70,-43 + 15274: -69,-43 + 15275: -68,-45 + 15276: -69,-46 + 15277: -70,-46 + 15278: -72,-42 + 15358: -59,-50 + 15359: -60,-49 + 15360: -60,-48 + 15375: 10,68 + 15376: 10,68 + 15377: 11,69 + 15378: 11,69 + 15379: 12,69 + 15380: 12,68 + 15381: 12,67 + 15382: 12,66 + 15383: 10,66 + 15384: 11,66 + 15385: 11,67 + 15386: 11,67 + 15387: 12,67 + 15388: 11,69 + 15389: 12,70 + 15390: 13,67 + 15391: 13,67 + 15392: 11,68 + 15393: 12,69 + 15394: 11,70 + 15415: -40,-6 + 15416: -40,-7 + 15417: -39,-7 + 15418: -39,-6 + 15419: -38,2 + 15420: -37,2 + 15421: -37,1 + 15422: -37,0 + 15423: -39,0 + 15424: -38,2 + 15498: -32,-20 + 15499: -30,-20 + 15500: -30,-20 + 15501: -30,-19 + 15502: -32,-18 + 15503: -34,-18 + 15504: -35,-18 + 15505: -31,-18 + 15506: -29,-18 + 15507: -29,-18 + 15508: -28,-20 + 15509: -28,-19 + 15510: -29,-20 + 15511: -24,-21 + 15512: -24,-22 + 15513: -22,-22 + 15514: -22,-21 + 15515: -35,-20 + 15516: -36,-20 + 15517: -39,-20 + 15518: -41,-20 + 15519: -43,-20 + 15520: -44,-20 + 15521: -48,-20 + 15522: -49,-22 + 15523: -49,-23 + 15524: -49,-23 + 15525: -50,-22 + 15526: -49,-22 + 15527: -49,-22 + 15528: -50,-23 + 15529: -53,-23 + 15530: -54,-23 + 15531: -53,-21 + 15532: -53,-20 + 15533: -53,-20 + 15534: -52,-20 + 15535: -53,-20 + 15536: -55,-20 + 15537: -56,-20 + 15538: -56,-21 + 15539: -55,-22 + 15540: -56,-23 + 15541: -56,-26 + 15542: -56,-25 + 15543: -56,-27 + 15544: -55,-29 + 15545: -55,-30 + 15546: -60,-32 + 16216: -2,32 + 16217: -1,32 + 16218: -1,32 + 16219: -2,32 + 16229: -2,27 + 16230: 0,27 + 16231: 0,40 + 16232: 1,40 + 16233: 1,40 + 16234: 2,40 + 16235: 0,36 + 16236: 0,35 + 16237: 0,34 + 16256: 0,48 + 16257: 0,47 + 16258: 0,41 + 16259: 1,42 + 16260: 6,50 + 16261: 6,52 + 16262: 7,52 + 17366: -50,-36 + 17367: -50,-37 + 17368: -51,-38 + 17369: -53,-37 + 17370: -53,-36 + 17371: -48,-38 + 17372: -52,-40 + 17373: -51,-41 + 17391: -58,-46 + 17672: 59,-40 + 17673: 60,-40 + 17674: 60,-41 + 17895: 44,-42 + 17896: 44,-44 + 17897: 46,-44 + 17898: 44,-42 + 17899: 46,-40 + 17900: 47,-39 + 17901: 48,-39 + 17902: 48,-38 + 17903: 49,-38 + 17904: 49,-41 + 17905: 49,-42 + 17906: 49,-42 + 17907: 49,-41 + 17908: 49,-44 + 17909: 49,-45 + 17910: 48,-45 + 17911: 46,-45 + 17912: 44,-45 + 17913: 43,-45 + 17914: 43,-44 + 17915: 43,-42 + 17916: 52,-47 + 17917: 46,-48 + 17918: 45,-48 + 17919: 44,-48 + 17927: 56,-43 + 17928: 56,-43 + 17929: 55,-44 + 17930: 55,-43 + 17931: 56,-41 + 18774: -30,-23 + 18775: -29,-23 + 18776: -28,-23 + 18777: -29,-23 + 20356: -67,-29 + 20357: -67,-29 + 20358: -67,-28 + 20359: -67,-28 + 20360: -68,-26 + 20361: -67,-26 + 20362: -68,-25 + 20363: -67,-24 + 20364: -69,-23 + 20365: -69,-23 + 20366: -70,-24 + 20367: -72,-24 + 20368: -72,-25 + 20369: -70,-23 + 20370: -71,-23 + 20371: -72,-25 + 20372: -72,-27 + 20373: -72,-26 + 20382: -61,-29 + 20383: -63,-29 + 20384: -63,-30 + 20385: -61,-29 + 20428: -60,-27 + 20429: -61,-27 + 20430: -60,-27 + 20431: -59,-26 + 20432: -59,-25 + 20433: -60,-25 + 20434: -61,-25 + 20435: -60,-23 + 20436: -60,-23 + 20437: -63,-23 + 20438: -64,-23 + 20439: -60,-23 + 20440: -62,-23 + 20441: -61,-23 + 20442: -65,-24 + 20443: -65,-25 + 20444: -65,-25 + 20445: -60,-25 + 20446: -60,-25 + 20447: -61,-27 + 20448: -62,-27 + 20449: -64,-27 + 20450: -62,-26 + 20451: -63,-26 + 20452: -63,-24 + 20453: -62,-24 + 20454: -61,-24 + 20455: -62,-25 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 846: 73,14 - 848: 38,21 - 849: 14,29 - 957: 33,36 - 1252: 57,5 - 1253: 62,6 - 1254: 70,6 - 1268: 31,58 - 1269: 31,59 - 1270: 31,59 - 1271: 31,60 - 1272: 29,60 - 1273: 28,60 - 1274: 29,60 - 1275: 27,56 - 1276: 26,56 - 1277: 25,59 - 1278: 25,60 - 1279: 25,61 - 1280: 26,61 - 1281: 28,59 - 1282: 27,59 - 1283: 30,59 - 1284: 30,56 - 1285: 31,56 - 1286: 31,58 - 1287: 31,59 - 1288: 31,60 - 1289: 31,60 - 1290: 20,56 - 1291: 21,56 - 1297: 9,59 - 1298: 9,60 - 1299: 9,59 - 1300: 7,57 - 1301: 6,56 - 1304: 6,56 - 1305: 6,56 - 1306: 15,65 - 1312: 13,72 - 1313: 13,72 - 1314: 12,72 - 1328: 19,63 - 1329: 20,62 - 1330: 20,61 - 1331: 21,61 - 1332: 20,60 - 1333: 20,59 - 1334: 20,58 - 1335: 19,59 - 1336: 19,58 - 1337: 18,58 - 1338: 20,58 - 1339: 21,60 - 1340: 13,58 - 1341: 12,59 - 1342: 12,58 - 1343: 18,59 - 1344: 17,60 - 1345: 17,58 - 1346: 17,58 - 1347: 19,58 - 1348: 21,59 - 1349: 18,63 - 1350: 17,63 - 1351: 16,63 - 1352: 14,61 - 1353: 13,61 - 1354: 12,61 - 1355: 17,60 - 1356: 17,61 - 1357: 24,57 - 1358: 23,57 - 1359: 23,56 - 1360: 25,56 - 1361: 25,57 - 1362: 25,58 - 1379: 20,70 - 1380: 19,69 - 1381: 18,70 - 1382: 20,71 - 1383: 18,72 - 1384: 21,69 - 1385: 20,70 - 1386: 15,62 - 1387: 14,62 - 1388: 13,61 - 1389: 13,62 - 1390: 15,59 - 1391: 15,60 - 1402: -41,60 - 1403: -40,61 - 1404: -41,59 - 1405: -40,62 - 1406: -42,63 - 1407: -38,60 - 1408: -38,62 - 1490: -31,9 - 1491: -31,9 - 1492: -31,11 - 1493: -31,16 - 1494: -28,17 - 1495: -31,18 - 1496: -31,22 - 1497: -31,23 - 1498: -32,23 - 1499: -31,23 - 1500: -27,25 - 1501: -27,25 - 1502: -23,26 - 1503: -31,21 - 1504: -31,20 - 1505: -31,19 - 1506: -31,19 - 1507: -25,27 - 1508: -25,27 - 1509: -24,25 - 1510: -36,24 - 1511: -36,27 - 1512: -36,29 - 1513: -36,31 - 1514: -36,32 - 1515: -36,33 - 1516: -39,37 - 1517: -39,37 - 1518: -45,37 - 1519: -39,42 - 1520: -39,42 - 1521: -37,42 - 1522: -36,41 - 1523: -42,45 - 1524: -41,50 - 1525: -41,50 - 1526: -41,49 - 1527: -41,48 - 1528: -42,49 - 1529: -39,57 - 1530: -36,57 - 1549: -39,54 - 1550: -39,54 - 1551: -40,54 - 1552: -40,53 - 1553: -38,54 - 1554: -37,55 - 1555: -37,53 - 1556: -38,52 - 1584: -41,29 - 1585: -40,29 - 1586: -40,29 - 1587: -40,27 - 1588: -39,29 - 1589: -39,29 - 1590: -39,29 - 1591: -41,27 - 1625: -60,-43 - 1626: -60,-42 - 1627: -59,-42 - 1628: -59,-41 - 1629: -60,-41 - 1630: -60,-41 - 1631: -59,-40 - 1667: -36,1 - 1668: -38,1 - 1669: -38,1 - 1670: -37,1 - 1671: -39,1 - 1672: -39,1 - 1673: -39,0 - 1674: -39,-1 - 1675: -37,0 - 1676: -37,0 - 1780: -57,-26 - 1781: -57,-26 - 1821: -70,-24 - 1822: -70,-24 - 1823: -71,-25 - 1824: -70,-25 - 1825: -70,-26 - 1826: -71,-25 - 1827: -72,-24 - 1828: -72,-23 - 1829: -70,-27 - 1830: -71,-26 - 1831: -71,-27 - 1832: -72,-28 - 1833: -70,-29 - 1834: -69,-29 - 1835: -69,-28 - 1836: -69,-26 - 1837: -69,-24 - 4024: -22,37 - 4027: -17,45 - 4031: -14,68 - 4039: -27,69 - 4040: -2,26 - 16260: -71,-35 - 16261: -70,-36 - 16262: -67,-35 - 16263: -66,-36 - 16273: -71,-36 - 16274: -68,-37 - 24020: -51,-29 - 24021: -52,-29 - 24022: -53,-28 - 24023: -53,-28 - 24024: -51,-28 - 24025: -53,-27 - 24026: -52,-25 - 24027: -51,-25 - 24028: -51,-27 - 24029: -50,-27 - 24030: -53,-30 - 24031: -48,-31 - 24032: -47,-30 - 24033: -47,-29 - 24034: -46,-29 - 24035: -45,-28 - 24036: -45,-27 - 24037: -46,-26 - 24038: -47,-25 - 24039: -46,-26 - 24052: -41,-29 - 24053: -42,-29 - 24054: -42,-27 - 24055: -41,-27 - 24056: -40,-28 - 24057: -39,-29 - 24058: -38,-29 - 24059: -38,-28 - 24060: -37,-27 - 24061: -34,-28 - 24062: -34,-29 - 24063: -32,-29 - 24064: -32,-28 - 24065: -32,-27 - 24066: -36,-28 - 24067: -34,-28 - 24068: -34,-27 - 24069: -34,-28 - 24096: -37,-24 - 24097: -39,-23 - 24098: -39,-23 - 24099: -38,-22 - 24100: -37,-23 - 24101: -34,-22 - 24102: -33,-22 - 24103: -35,-24 - 24104: -30,-23 - 24105: -30,-23 - 24106: -28,-23 - 24107: -29,-24 - 24108: -30,-24 - 24109: -31,-23 - 24110: -30,-22 - 24111: -28,-23 - 24112: -28,-24 - 24113: -27,-24 - 24186: -42,-34 - 24187: -42,-32 - 24188: -41,-32 - 24189: -41,-33 - 24190: -43,-34 - 24191: -43,-34 - 24192: -38,-32 - 24193: -39,-32 - 24194: -37,-32 - 24195: -37,-34 - 24196: -38,-34 - 24197: -39,-34 - 24198: -37,-33 - 24199: -35,-33 - 24200: -34,-33 - 24201: -33,-34 - 24202: -33,-33 - 24203: -33,-32 - 24204: -34,-34 - 24205: -35,-34 - 24206: -34,-30 - 24451: 30,-69 - 24452: 28,-70 - 24453: 27,-69 - 24454: 27,-67 - 24455: 28,-66 - 24456: 33,-67 - 24457: 32,-68 - 24458: 31,-70 - 24459: 28,-69 - 24460: 28,-69 - 24461: 32,-68 - 24462: 32,-66 - 24463: 30,-67 - 24464: 36,-67 - 24465: 36,-68 - 24466: 35,-65 - 24467: 36,-64 - 24468: 34,-62 - 24469: 36,-61 - 24470: 35,-60 - 24471: 35,-60 - 24472: 36,-60 - 24473: 36,-63 - 24474: 40,-63 - 24475: 39,-62 - 24476: 40,-63 - 24477: 39,-61 - 24478: 40,-60 - 24479: 41,-61 - 24480: 41,-63 - 24481: 42,-62 - 24482: 44,-62 - 24483: 44,-63 - 24484: 45,-63 - 24485: 41,-62 - 24486: 42,-62 - 24487: 44,-61 - 24488: 44,-61 - 24489: 32,-61 - 24554: 27,-66 - 24555: 28,-66 - 24556: 30,-66 - 24557: 30,-68 - 24558: 29,-66 - 24559: 30,-66 - 24560: 31,-66 - 24561: 31,-67 - 24562: 29,-69 - 24563: 30,-69 - 24564: 29,-70 - 24565: 27,-70 - 24566: 30,-69 - 24567: 31,-68 - 24568: 28,-67 - 24569: 28,-67 - 24570: 26,-67 - 24571: 26,-66 - 24572: 25,-66 - 24573: 26,-66 - 24574: 27,-67 - 24575: 27,-68 - 24576: 27,-69 - 24577: 25,-69 + 733: 73,14 + 735: 38,21 + 736: 14,29 + 844: 33,36 + 1134: 57,5 + 1135: 62,6 + 1136: 70,6 + 1150: 31,58 + 1151: 31,59 + 1152: 31,59 + 1153: 31,60 + 1154: 29,60 + 1155: 28,60 + 1156: 29,60 + 1157: 27,56 + 1158: 26,56 + 1159: 25,59 + 1160: 25,60 + 1161: 25,61 + 1162: 26,61 + 1163: 28,59 + 1164: 27,59 + 1165: 30,59 + 1166: 30,56 + 1167: 31,56 + 1168: 31,58 + 1169: 31,59 + 1170: 31,60 + 1171: 31,60 + 1172: 20,56 + 1173: 21,56 + 1179: 9,59 + 1180: 9,60 + 1181: 9,59 + 1182: 7,57 + 1183: 6,56 + 1186: 6,56 + 1187: 6,56 + 1188: 15,65 + 1194: 13,72 + 1195: 13,72 + 1196: 12,72 + 1210: 19,63 + 1211: 20,62 + 1212: 20,61 + 1213: 21,61 + 1214: 20,60 + 1215: 20,59 + 1216: 20,58 + 1217: 19,59 + 1218: 19,58 + 1219: 18,58 + 1220: 20,58 + 1221: 21,60 + 1222: 13,58 + 1223: 12,59 + 1224: 12,58 + 1225: 18,59 + 1226: 17,60 + 1227: 17,58 + 1228: 17,58 + 1229: 19,58 + 1230: 21,59 + 1231: 18,63 + 1232: 17,63 + 1233: 16,63 + 1234: 14,61 + 1235: 13,61 + 1236: 12,61 + 1237: 17,60 + 1238: 17,61 + 1239: 24,57 + 1240: 23,57 + 1241: 23,56 + 1242: 25,56 + 1243: 25,57 + 1244: 25,58 + 1261: 20,70 + 1262: 19,69 + 1263: 18,70 + 1264: 20,71 + 1265: 18,72 + 1266: 21,69 + 1267: 20,70 + 1268: 15,62 + 1269: 14,62 + 1270: 13,61 + 1271: 13,62 + 1272: 15,59 + 1273: 15,60 + 1284: -41,60 + 1285: -40,61 + 1286: -41,59 + 1287: -40,62 + 1288: -42,63 + 1289: -38,60 + 1290: -38,62 + 1372: -31,9 + 1373: -31,9 + 1374: -31,11 + 1375: -31,16 + 1376: -28,17 + 1377: -31,18 + 1378: -31,22 + 1379: -31,23 + 1380: -32,23 + 1381: -31,23 + 1382: -27,25 + 1383: -27,25 + 1384: -23,26 + 1385: -31,21 + 1386: -31,20 + 1387: -31,19 + 1388: -31,19 + 1389: -25,27 + 1390: -25,27 + 1391: -24,25 + 1392: -36,24 + 1393: -36,27 + 1394: -36,29 + 1395: -36,31 + 1396: -36,32 + 1397: -36,33 + 1398: -39,37 + 1399: -39,37 + 1400: -45,37 + 1401: -39,42 + 1402: -39,42 + 1403: -37,42 + 1404: -36,41 + 1405: -42,45 + 1406: -41,50 + 1407: -41,50 + 1408: -41,49 + 1409: -41,48 + 1410: -42,49 + 1411: -39,57 + 1412: -36,57 + 1431: -39,54 + 1432: -39,54 + 1433: -40,54 + 1434: -40,53 + 1435: -38,54 + 1436: -37,55 + 1437: -37,53 + 1438: -38,52 + 1466: -41,29 + 1467: -40,29 + 1468: -40,29 + 1469: -40,27 + 1470: -39,29 + 1471: -39,29 + 1472: -39,29 + 1473: -41,27 + 1507: -60,-43 + 1508: -60,-42 + 1509: -59,-42 + 1510: -59,-41 + 1511: -60,-41 + 1512: -60,-41 + 1513: -59,-40 + 1549: -36,1 + 1550: -38,1 + 1551: -38,1 + 1552: -37,1 + 1553: -39,1 + 1554: -39,1 + 1555: -39,0 + 1556: -39,-1 + 1557: -37,0 + 1558: -37,0 + 1662: -57,-26 + 1663: -57,-26 + 1703: -70,-24 + 1704: -70,-24 + 1705: -71,-25 + 1706: -70,-25 + 1707: -70,-26 + 1708: -71,-25 + 1709: -72,-24 + 1710: -72,-23 + 1711: -70,-27 + 1712: -71,-26 + 1713: -71,-27 + 1714: -72,-28 + 1715: -70,-29 + 1716: -69,-29 + 1717: -69,-28 + 1718: -69,-26 + 1719: -69,-24 + 3890: -2,26 + 15309: -71,-35 + 15310: -70,-36 + 15311: -67,-35 + 15312: -66,-36 + 15322: -71,-36 + 15323: -68,-37 + 23025: -51,-29 + 23026: -52,-29 + 23027: -53,-28 + 23028: -53,-28 + 23029: -51,-28 + 23030: -53,-27 + 23031: -52,-25 + 23032: -51,-25 + 23033: -51,-27 + 23034: -50,-27 + 23035: -53,-30 + 23036: -48,-31 + 23037: -47,-30 + 23038: -47,-29 + 23039: -46,-29 + 23040: -45,-28 + 23041: -45,-27 + 23042: -46,-26 + 23043: -47,-25 + 23044: -46,-26 + 23057: -41,-29 + 23058: -42,-29 + 23059: -42,-27 + 23060: -41,-27 + 23061: -40,-28 + 23062: -39,-29 + 23063: -38,-29 + 23064: -38,-28 + 23065: -37,-27 + 23066: -34,-28 + 23067: -34,-29 + 23068: -32,-29 + 23069: -32,-28 + 23070: -32,-27 + 23071: -36,-28 + 23072: -34,-28 + 23073: -34,-27 + 23074: -34,-28 + 23101: -37,-24 + 23102: -39,-23 + 23103: -39,-23 + 23104: -38,-22 + 23105: -37,-23 + 23106: -34,-22 + 23107: -33,-22 + 23108: -35,-24 + 23109: -30,-23 + 23110: -30,-23 + 23111: -28,-23 + 23112: -29,-24 + 23113: -30,-24 + 23114: -31,-23 + 23115: -30,-22 + 23116: -28,-23 + 23117: -28,-24 + 23118: -27,-24 + 23191: -42,-34 + 23192: -42,-32 + 23193: -41,-32 + 23194: -41,-33 + 23195: -43,-34 + 23196: -43,-34 + 23197: -38,-32 + 23198: -39,-32 + 23199: -37,-32 + 23200: -37,-34 + 23201: -38,-34 + 23202: -39,-34 + 23203: -37,-33 + 23204: -35,-33 + 23205: -34,-33 + 23206: -33,-34 + 23207: -33,-33 + 23208: -33,-32 + 23209: -34,-34 + 23210: -35,-34 + 23211: -34,-30 + 23452: 30,-69 + 23453: 28,-70 + 23454: 27,-69 + 23455: 27,-67 + 23456: 28,-66 + 23457: 33,-67 + 23458: 32,-68 + 23459: 31,-70 + 23460: 28,-69 + 23461: 28,-69 + 23462: 32,-68 + 23463: 32,-66 + 23464: 30,-67 + 23465: 36,-67 + 23466: 36,-68 + 23467: 35,-65 + 23468: 36,-64 + 23469: 34,-62 + 23470: 36,-61 + 23471: 35,-60 + 23472: 35,-60 + 23473: 36,-60 + 23474: 36,-63 + 23475: 40,-63 + 23476: 39,-62 + 23477: 40,-63 + 23478: 39,-61 + 23479: 40,-60 + 23480: 41,-61 + 23481: 41,-63 + 23482: 42,-62 + 23483: 44,-62 + 23484: 44,-63 + 23485: 45,-63 + 23486: 41,-62 + 23487: 42,-62 + 23488: 44,-61 + 23489: 44,-61 + 23490: 32,-61 + 23554: 27,-66 + 23555: 28,-66 + 23556: 30,-66 + 23557: 30,-68 + 23558: 29,-66 + 23559: 30,-66 + 23560: 31,-66 + 23561: 31,-67 + 23562: 29,-69 + 23563: 30,-69 + 23564: 29,-70 + 23565: 27,-70 + 23566: 30,-69 + 23567: 31,-68 + 23568: 28,-67 + 23569: 28,-67 + 23570: 26,-67 + 23571: 26,-66 + 23572: 25,-66 + 23573: 26,-66 + 23574: 27,-67 + 23575: 27,-68 + 23576: 27,-69 + 23577: 25,-69 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 13628: -34,-75 - 13629: -34,-74 - 13630: -36,-73 - 13631: -37,-76 - 13632: -37,-78 - 13633: -37,-78 - 13634: -37,-79 - 13635: -29,-78 - 13636: -30,-76 - 13637: -30,-75 - 13638: -31,-75 - 13639: -31,-75 - 13684: -36,-71 - 13685: -36,-71 - 13686: -34,-71 - 13687: -33,-71 - 13688: -31,-71 - 13689: -30,-71 - 13690: -39,-71 - 13691: -39,-74 - 13692: -28,-70 - 13693: -27,-73 - 13694: -27,-73 - 13695: -26,-74 - 13696: -27,-74 - 13697: -26,-75 - 13698: -27,-73 - 13699: -27,-75 - 13713: -27,-65 - 13714: -28,-66 - 13715: -28,-63 - 13716: -27,-62 - 13717: -27,-62 - 13718: -27,-65 - 13719: -27,-67 - 13720: -27,-68 - 13721: -27,-69 - 13734: -30,-61 - 13785: -38,-56 - 13786: -39,-56 - 13787: -38,-55 - 13788: -37,-55 - 13789: -37,-56 - 13790: -40,-58 - 13791: -39,-58 - 13792: -38,-58 - 13793: -36,-58 - 13794: -34,-58 - 13795: -35,-57 - 13796: -34,-56 - 13797: -34,-57 - 13798: -34,-58 - 13799: -32,-58 - 13800: -31,-58 - 13801: -29,-58 - 13802: -28,-59 - 13803: -28,-59 - 13804: -28,-60 - 13805: -29,-61 - 13806: -29,-61 - 13807: -27,-62 - 13808: -27,-62 - 13809: -27,-61 - 13810: -25,-62 - 13811: -24,-62 - 13812: -23,-62 - 13813: -26,-62 - 13814: -26,-62 - 13815: -23,-62 - 13816: -21,-62 - 13817: -20,-62 - 13818: -18,-62 - 13819: -16,-62 - 13820: -16,-62 - 13821: -20,-62 - 13822: -17,-63 - 13823: -16,-63 - 13824: -16,-62 - 13825: -15,-62 - 13826: -19,-62 - 13827: -17,-63 - 13828: -14,-62 - 13829: -12,-62 - 13830: -11,-62 - 13831: -10,-62 - 13843: -27,-61 - 13844: -28,-58 - 13864: -58,-34 - 13865: -58,-36 - 13866: -58,-37 - 13867: -59,-39 - 13868: -58,-39 - 13869: -60,-39 - 13870: -60,-37 - 13871: -60,-36 - 13872: -60,-35 - 13873: -59,-34 - 13874: -60,-42 - 13994: -35,-49 - 13995: -35,-50 - 13996: -33,-50 - 13997: -33,-49 - 13998: -40,-49 - 13999: -43,-47 - 14000: -44,-47 - 14001: -44,-44 - 14002: -44,-45 - 14003: -44,-47 - 14004: -44,-49 - 14005: -44,-49 - 14006: -43,-41 - 14007: -44,-41 - 14008: -46,-41 - 14009: -47,-41 - 14010: -49,-41 - 14011: -50,-40 - 14012: -51,-41 - 14013: -51,-41 - 14014: -51,-40 - 14015: -50,-40 - 14016: -50,-40 - 14017: -51,-40 - 14018: -53,-40 - 14019: -53,-40 - 14020: -55,-40 - 14021: -55,-40 - 14022: -56,-39 - 14023: -56,-39 - 14024: -55,-38 - 14025: -55,-39 - 14026: -56,-37 - 14027: -55,-34 - 14028: -55,-35 - 14029: -56,-34 - 14030: -56,-33 - 14031: -55,-35 - 14032: -55,-35 - 14033: -61,-32 - 14034: -61,-32 - 14035: -62,-31 - 14036: -61,-31 - 14037: -60,-32 - 14131: -70,-21 - 14132: -69,-21 - 14133: -69,-21 - 14134: -68,-21 - 14135: -62,-21 - 14136: -63,-21 - 14137: -59,-21 - 14138: -62,-21 - 14139: -62,-21 - 14140: -59,-21 - 14141: -58,-20 - 14142: -57,-20 - 14143: -58,-21 - 14144: -59,-21 - 14145: -59,-21 - 14146: -61,-21 - 14186: -78,-20 - 14187: -78,-20 - 14188: -78,-19 - 14189: -77,-20 - 14190: -77,-23 - 14191: -78,-23 - 14192: -77,-24 - 14193: -78,-27 - 14194: -77,-27 - 14195: -77,-28 - 14196: -78,-31 - 14197: -77,-30 - 14198: -77,-31 - 14199: -77,-32 - 14200: -78,-30 - 14201: -77,-30 - 14202: -71,-32 - 14203: -71,-32 - 14204: -70,-31 - 14205: -68,-31 - 14206: -69,-32 - 14207: -72,-32 - 14208: -74,-32 - 14209: -72,-32 - 14210: -69,-31 - 14211: -74,-32 - 14212: -62,-31 - 14213: -62,-32 - 14214: -61,-32 - 14215: -59,-31 - 14216: -58,-32 - 14217: -59,-32 - 14218: -61,-32 - 14219: -58,-32 - 14220: -58,-32 - 14221: -62,-31 - 14222: -63,-31 - 14223: -64,-31 - 14224: -61,-31 - 14225: -65,-31 - 14226: -68,-31 - 14227: -69,-32 - 14228: -71,-32 - 14229: -58,-31 - 14230: -60,-31 - 14231: -56,-31 - 14232: -55,-29 - 14233: -56,-29 - 14234: -55,-31 - 14235: -56,-32 - 14236: -55,-32 - 14237: -56,-31 - 14238: -55,-30 - 14239: -55,-30 - 14240: -55,-29 - 14241: -56,-26 - 14242: -56,-25 - 14243: -55,-26 - 14244: -55,-27 - 14245: -56,-26 - 14246: -56,-24 - 14247: -55,-24 - 14248: -56,-23 - 14249: -55,-22 - 14250: -56,-21 - 14251: -56,-20 - 14252: -55,-20 - 14253: -55,-21 - 14254: -55,-21 - 14255: -52,-20 - 14256: -52,-21 - 14257: -55,-20 - 14258: -54,-20 - 14259: -52,-21 - 14260: -51,-22 - 14261: -52,-23 - 14262: -54,-23 - 14263: -36,-19 - 14264: -36,-18 - 14265: -36,-19 - 14266: -37,-16 - 14267: -37,-15 - 14268: -37,-14 - 14269: -37,-13 - 14270: -37,-11 - 14271: -39,-14 - 14272: -40,-14 - 14273: -39,-15 - 14274: -39,-16 - 14275: -40,-17 - 14276: -42,-16 - 14277: -41,-14 - 14278: -40,-16 - 14279: -41,-16 - 14280: -41,-16 - 14281: -41,-13 - 14282: -44,-11 - 14283: -39,-9 - 14284: -43,-8 - 14285: -40,-1 - 14286: -38,-1 - 14287: -38,-2 - 14288: -38,-3 - 14289: -38,1 - 14290: -38,-3 - 14291: -37,-5 - 14292: -37,-7 - 14293: -37,-9 - 14294: -37,-12 - 14295: -37,-15 - 14296: -37,-15 - 14297: -37,-17 - 14298: -35,-19 - 14299: -32,-19 - 14300: -32,-19 - 14301: -29,-20 - 14302: -32,-19 - 14303: -27,-19 - 14304: -23,-21 - 14305: -24,-22 - 14306: -25,-21 + 12684: -34,-75 + 12685: -34,-74 + 12686: -36,-73 + 12687: -37,-76 + 12688: -37,-78 + 12689: -37,-78 + 12690: -37,-79 + 12691: -29,-78 + 12692: -30,-76 + 12693: -30,-75 + 12694: -31,-75 + 12695: -31,-75 + 12740: -36,-71 + 12741: -36,-71 + 12742: -34,-71 + 12743: -33,-71 + 12744: -31,-71 + 12745: -30,-71 + 12746: -39,-71 + 12747: -39,-74 + 12748: -28,-70 + 12749: -27,-73 + 12750: -27,-73 + 12751: -26,-74 + 12752: -27,-74 + 12753: -26,-75 + 12754: -27,-73 + 12755: -27,-75 + 12769: -27,-65 + 12770: -28,-66 + 12771: -28,-63 + 12772: -27,-62 + 12773: -27,-62 + 12774: -27,-65 + 12775: -27,-67 + 12776: -27,-68 + 12777: -27,-69 + 12790: -30,-61 + 12841: -38,-56 + 12842: -39,-56 + 12843: -38,-55 + 12844: -37,-55 + 12845: -37,-56 + 12846: -40,-58 + 12847: -39,-58 + 12848: -38,-58 + 12849: -36,-58 + 12850: -34,-58 + 12851: -35,-57 + 12852: -34,-56 + 12853: -34,-57 + 12854: -34,-58 + 12855: -32,-58 + 12856: -31,-58 + 12857: -29,-58 + 12858: -28,-59 + 12859: -28,-59 + 12860: -28,-60 + 12861: -29,-61 + 12862: -29,-61 + 12863: -27,-62 + 12864: -27,-62 + 12865: -27,-61 + 12866: -25,-62 + 12867: -24,-62 + 12868: -23,-62 + 12869: -26,-62 + 12870: -26,-62 + 12871: -23,-62 + 12872: -21,-62 + 12873: -20,-62 + 12874: -18,-62 + 12875: -16,-62 + 12876: -16,-62 + 12877: -20,-62 + 12878: -17,-63 + 12879: -16,-63 + 12880: -16,-62 + 12881: -15,-62 + 12882: -19,-62 + 12883: -17,-63 + 12884: -14,-62 + 12885: -12,-62 + 12886: -11,-62 + 12887: -10,-62 + 12899: -27,-61 + 12900: -28,-58 + 12920: -58,-34 + 12921: -58,-36 + 12922: -58,-37 + 12923: -59,-39 + 12924: -58,-39 + 12925: -60,-39 + 12926: -60,-37 + 12927: -60,-36 + 12928: -60,-35 + 12929: -59,-34 + 12930: -60,-42 + 13050: -35,-49 + 13051: -35,-50 + 13052: -33,-50 + 13053: -33,-49 + 13054: -40,-49 + 13055: -43,-47 + 13056: -44,-47 + 13057: -44,-44 + 13058: -44,-45 + 13059: -44,-47 + 13060: -44,-49 + 13061: -44,-49 + 13062: -43,-41 + 13063: -44,-41 + 13064: -46,-41 + 13065: -47,-41 + 13066: -49,-41 + 13067: -50,-40 + 13068: -51,-41 + 13069: -51,-41 + 13070: -51,-40 + 13071: -50,-40 + 13072: -50,-40 + 13073: -51,-40 + 13074: -53,-40 + 13075: -53,-40 + 13076: -55,-40 + 13077: -55,-40 + 13078: -56,-39 + 13079: -56,-39 + 13080: -55,-38 + 13081: -55,-39 + 13082: -56,-37 + 13083: -55,-34 + 13084: -55,-35 + 13085: -56,-34 + 13086: -56,-33 + 13087: -55,-35 + 13088: -55,-35 + 13089: -61,-32 + 13090: -61,-32 + 13091: -62,-31 + 13092: -61,-31 + 13093: -60,-32 + 13187: -70,-21 + 13188: -69,-21 + 13189: -69,-21 + 13190: -68,-21 + 13191: -62,-21 + 13192: -63,-21 + 13193: -59,-21 + 13194: -62,-21 + 13195: -62,-21 + 13196: -59,-21 + 13197: -58,-20 + 13198: -57,-20 + 13199: -58,-21 + 13200: -59,-21 + 13201: -59,-21 + 13202: -61,-21 + 13242: -78,-20 + 13243: -78,-20 + 13244: -78,-19 + 13245: -77,-20 + 13246: -77,-23 + 13247: -78,-23 + 13248: -77,-24 + 13249: -78,-27 + 13250: -77,-27 + 13251: -77,-28 + 13252: -78,-31 + 13253: -77,-30 + 13254: -77,-31 + 13255: -77,-32 + 13256: -78,-30 + 13257: -77,-30 + 13258: -71,-32 + 13259: -71,-32 + 13260: -70,-31 + 13261: -68,-31 + 13262: -69,-32 + 13263: -72,-32 + 13264: -74,-32 + 13265: -72,-32 + 13266: -69,-31 + 13267: -74,-32 + 13268: -62,-31 + 13269: -62,-32 + 13270: -61,-32 + 13271: -59,-31 + 13272: -58,-32 + 13273: -59,-32 + 13274: -61,-32 + 13275: -58,-32 + 13276: -58,-32 + 13277: -62,-31 + 13278: -63,-31 + 13279: -64,-31 + 13280: -61,-31 + 13281: -65,-31 + 13282: -68,-31 + 13283: -69,-32 + 13284: -71,-32 + 13285: -58,-31 + 13286: -60,-31 + 13287: -56,-31 + 13288: -55,-29 + 13289: -56,-29 + 13290: -55,-31 + 13291: -56,-32 + 13292: -55,-32 + 13293: -56,-31 + 13294: -55,-30 + 13295: -55,-30 + 13296: -55,-29 + 13297: -56,-26 + 13298: -56,-25 + 13299: -55,-26 + 13300: -55,-27 + 13301: -56,-26 + 13302: -56,-24 + 13303: -55,-24 + 13304: -56,-23 + 13305: -55,-22 + 13306: -56,-21 + 13307: -56,-20 + 13308: -55,-20 + 13309: -55,-21 + 13310: -55,-21 + 13311: -52,-20 + 13312: -52,-21 + 13313: -55,-20 + 13314: -54,-20 + 13315: -52,-21 + 13316: -51,-22 + 13317: -52,-23 + 13318: -54,-23 + 13319: -36,-19 + 13320: -36,-18 + 13321: -36,-19 + 13322: -37,-16 + 13323: -37,-15 + 13324: -37,-14 + 13325: -37,-13 + 13326: -37,-11 + 13327: -39,-14 + 13328: -40,-14 + 13329: -39,-15 + 13330: -39,-16 + 13331: -40,-17 + 13332: -42,-16 + 13333: -41,-14 + 13334: -40,-16 + 13335: -41,-16 + 13336: -41,-16 + 13337: -41,-13 + 13338: -44,-11 + 13339: -39,-9 + 13340: -43,-8 + 13341: -40,-1 + 13342: -38,-1 + 13343: -38,-2 + 13344: -38,-3 + 13345: -38,1 + 13346: -38,-3 + 13347: -37,-5 + 13348: -37,-7 + 13349: -37,-9 + 13350: -37,-12 + 13351: -37,-15 + 13352: -37,-15 + 13353: -37,-17 + 13354: -35,-19 + 13355: -32,-19 + 13356: -32,-19 + 13357: -29,-20 + 13358: -32,-19 + 13359: -27,-19 + 13360: -23,-21 + 13361: -24,-22 + 13362: -25,-21 - node: color: '#FFFFFFFF' id: DirtLight decals: - 1030: -33,-52 - 1031: -34,-52 - 1032: -34,-54 - 1033: -35,-54 - 1034: -35,-53 - 1035: -33,-53 - 1036: -33,-54 - 1037: -28,-52 - 1038: -29,-53 - 1039: -24,-49 - 1045: -12,-46 - 3871: 22,70 - 3905: 25,67 - 3906: 27,66 - 3907: 20,66 - 3908: 21,67 - 3997: -36,59 - 3998: -36,60 - 4022: -27,65 - 11036: 37,-73 - 13242: 54,-37 - 13243: 53,-38 - 13244: 54,-38 - 13245: 55,-36 - 13246: 55,-35 - 16163: -66,-47 - 16164: -66,-48 - 16165: -66,-46 - 16166: -67,-46 - 16167: -64,-46 - 16168: -63,-46 - 16169: -63,-46 - 16170: -65,-47 - 16171: -63,-47 - 16172: -62,-46 - 16173: -62,-48 - 16174: -62,-48 - 16175: -63,-47 - 16176: -63,-48 - 16195: -64,-47 - 16196: -63,-47 - 16197: -63,-46 - 16198: -62,-46 - 16199: -62,-48 - 16200: -62,-48 - 16201: -63,-48 - 16202: -64,-48 - 16203: -63,-47 - 16204: -65,-46 - 16205: -65,-45 - 16206: -64,-45 - 16207: -63,-45 - 16208: -63,-46 - 16346: 10,70 - 16347: 10,69 - 16348: 11,70 - 16349: 12,70 - 16350: 12,68 - 16351: 11,67 - 16352: 10,67 - 16353: 12,69 - 16354: 12,67 - 16355: 10,68 - 16356: 9,68 - 16534: -43,0 - 16535: -43,-1 - 16536: -43,-3 - 16537: -43,-4 - 16538: -42,1 - 16539: -41,1 - 16540: -41,0 - 16541: -41,-2 - 16542: -42,-5 - 16543: -43,-8 - 16544: -40,-10 - 16545: -38,-10 - 16546: -38,-11 - 16547: -37,-20 - 16548: -34,-18 - 16549: -33,-18 - 16550: -33,-18 - 16551: -33,-20 - 16552: -34,-20 - 16553: -34,-20 - 16554: -34,-19 - 16555: -36,-19 - 16556: -40,-14 - 16557: -40,-15 - 16558: -40,-15 - 16559: -39,-15 - 16560: -39,-16 - 16561: -42,-16 - 16562: -42,-15 - 16563: -41,-15 - 16564: -41,-16 - 16565: -42,-17 - 16566: -40,-18 - 16567: -39,-18 - 16568: -39,-17 - 18328: -52,-40 - 18329: -55,-34 - 18330: -56,-34 - 18331: -52,-34 - 18344: -58,-46 - 21380: -63,-30 - 21381: -63,-29 - 21382: -62,-29 + 913: -33,-52 + 914: -34,-52 + 915: -34,-54 + 916: -35,-54 + 917: -35,-53 + 918: -33,-53 + 919: -33,-54 + 920: -28,-52 + 921: -29,-53 + 922: -24,-49 + 928: -12,-46 + 3738: 22,70 + 3772: 25,67 + 3773: 27,66 + 3774: 20,66 + 3775: 21,67 + 3864: -36,59 + 3865: -36,60 + 3889: -27,65 + 10592: 37,-73 + 12298: 54,-37 + 12299: 53,-38 + 12300: 54,-38 + 12301: 55,-36 + 12302: 55,-35 + 15212: -66,-47 + 15213: -66,-48 + 15214: -66,-46 + 15215: -67,-46 + 15216: -64,-46 + 15217: -63,-46 + 15218: -63,-46 + 15219: -65,-47 + 15220: -63,-47 + 15221: -62,-46 + 15222: -62,-48 + 15223: -62,-48 + 15224: -63,-47 + 15225: -63,-48 + 15244: -64,-47 + 15245: -63,-47 + 15246: -63,-46 + 15247: -62,-46 + 15248: -62,-48 + 15249: -62,-48 + 15250: -63,-48 + 15251: -64,-48 + 15252: -63,-47 + 15253: -65,-46 + 15254: -65,-45 + 15255: -64,-45 + 15256: -63,-45 + 15257: -63,-46 + 15395: 10,70 + 15396: 10,69 + 15397: 11,70 + 15398: 12,70 + 15399: 12,68 + 15400: 11,67 + 15401: 10,67 + 15402: 12,69 + 15403: 12,67 + 15404: 10,68 + 15405: 9,68 + 15583: -43,0 + 15584: -43,-1 + 15585: -43,-3 + 15586: -43,-4 + 15587: -42,1 + 15588: -41,1 + 15589: -41,0 + 15590: -41,-2 + 15591: -42,-5 + 15592: -43,-8 + 15593: -40,-10 + 15594: -38,-10 + 15595: -38,-11 + 15596: -37,-20 + 15597: -34,-18 + 15598: -33,-18 + 15599: -33,-18 + 15600: -33,-20 + 15601: -34,-20 + 15602: -34,-20 + 15603: -34,-19 + 15604: -36,-19 + 15605: -40,-14 + 15606: -40,-15 + 15607: -40,-15 + 15608: -39,-15 + 15609: -39,-16 + 15610: -42,-16 + 15611: -42,-15 + 15612: -41,-15 + 15613: -41,-16 + 15614: -42,-17 + 15615: -40,-18 + 15616: -39,-18 + 15617: -39,-17 + 17377: -52,-40 + 17378: -55,-34 + 17379: -56,-34 + 17380: -52,-34 + 17393: -58,-46 + 20386: -63,-30 + 20387: -63,-29 + 20388: -62,-29 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 240: 43,-29 - 241: 50,-28 - 242: 53,-29 - 243: 51,-33 - 254: 35,-55 - 255: 30,-55 - 256: 44,-47 - 257: 45,-47 - 264: 41,-33 - 265: 40,-35 - 266: 34,-55 - 267: 49,-47 - 272: 50,-48 - 273: 51,-47 - 274: 52,-42 - 275: 52,-44 - 287: 63,-10 - 293: -28,64 - 294: -26,60 - 296: -31,37 - 297: -16,36 - 298: -15,26 - 299: -17,29 - 302: -36,28 - 303: -36,28 - 304: -36,28 - 305: -37,23 - 306: -37,23 - 307: -37,23 - 308: -37,23 - 309: -34,23 - 312: -31,8 - 314: -25,-18 - 317: -25,-21 - 319: -5,59 - 321: -10,-62 - 323: -23,-61 - 324: -27,-56 - 325: -28,-67 - 330: -6,-67 - 331: 3,-55 - 333: 8,-56 - 334: 7,-55 - 335: 12,-56 - 337: 21,-55 - 339: -47,-20 - 340: -44,-17 - 341: -37,-9 - 342: -37,-9 - 344: -43,-3 - 346: -43,-8 - 348: -73,-31 - 351: -75,-26 - 352: -64,-20 - 359: -41,-17 - 360: -40,-16 - 361: -39,-14 - 362: -16,42 - 363: 62,-13 - 365: 46,-12 - 366: 44,-10 - 367: 53,-11 - 368: 23,-23 - 369: 35,-20 - 370: 38,-24 - 373: -33,-58 - 374: -39,-58 - 376: -35,-54 - 377: -33,-52 - 378: -34,-54 - 379: -34,-49 - 380: -34,-50 - 381: -33,-50 - 382: -33,-50 - 385: -41,-47 - 386: -43,-47 - 388: -44,-45 - 389: -51,-49 - 395: -33,-29 - 711: -9,-48 - 712: -9,-48 - 716: -37,-38 - 847: 53,22 - 850: 19,47 - 990: -37,-37 - 1046: -7,-43 - 1047: -6,-41 - 1255: 66,8 - 1256: 62,9 - 1257: 67,4 - 1258: 52,5 - 1259: 47,0 - 1260: 56,26 - 1302: 6,56 - 1303: 7,57 - 1394: 10,67 - 1409: -35,62 - 1410: -36,61 - 1632: -59,-43 - 1633: -59,-43 - 1634: -58,-42 - 1635: -58,-41 - 1636: -58,-41 - 1637: -58,-43 - 1782: -57,-26 - 4026: -23,35 - 4028: -20,52 - 4029: -16,57 - 4033: -11,84 - 4034: -13,91 - 4035: -9,68 - 4036: 4,68 - 16264: -66,-35 - 16265: -66,-35 - 16266: -66,-35 - 24126: -29,-23 - 24127: -29,-23 - 24128: -28,-23 - 24129: -29,-27 - 24130: -30,-27 - 24131: -30,-29 - 24132: -30,-30 - 24133: -30,-31 - 24134: -28,-31 - 24135: -27,-31 - 24167: -39,-33 - 24168: -41,-33 - 24169: -42,-32 - 24170: -43,-33 - 24171: -42,-34 - 24172: -42,-32 - 24173: -40,-32 - 24174: -39,-34 - 24175: -38,-33 - 24176: -38,-32 - 24177: -37,-32 - 24178: -37,-34 - 24179: -35,-33 - 24180: -34,-32 - 24181: -33,-33 - 24182: -42,-31 - 24183: -40,-33 - 24184: -41,-34 - 24185: -43,-33 - 24212: -46,-22 - 24213: -47,-22 - 24214: -45,-23 - 24215: -45,-23 - 24533: 40,-67 - 24534: 40,-67 - 24535: 37,-68 - 24536: 39,-66 - 24537: 40,-66 - 24538: 38,-68 - 24539: 39,-67 - 24540: 40,-66 - 24541: 42,-67 - 24542: 41,-68 - 24543: 38,-68 - 24544: 41,-69 - 24545: 41,-71 - 24546: 38,-70 - 24547: 39,-71 - 24548: 37,-71 - 24549: 32,-69 - 24550: 29,-67 - 24551: 31,-66 - 24552: 31,-66 + 223: 43,-29 + 224: 50,-28 + 225: 53,-29 + 226: 51,-33 + 237: 35,-55 + 238: 30,-55 + 239: 44,-47 + 240: 45,-47 + 247: 41,-33 + 248: 40,-35 + 249: 34,-55 + 250: 49,-47 + 255: 50,-48 + 256: 51,-47 + 257: 52,-42 + 258: 52,-44 + 271: -28,64 + 272: -26,60 + 274: -31,37 + 275: -17,29 + 278: -36,28 + 279: -36,28 + 280: -36,28 + 281: -37,23 + 282: -37,23 + 283: -37,23 + 284: -37,23 + 285: -34,23 + 288: -31,8 + 290: -25,-18 + 293: -25,-21 + 294: -10,-62 + 296: -23,-61 + 297: -27,-56 + 298: -28,-67 + 303: -6,-67 + 304: 3,-55 + 306: 8,-56 + 307: 7,-55 + 308: 12,-56 + 310: 21,-55 + 312: -47,-20 + 313: -44,-17 + 314: -37,-9 + 315: -37,-9 + 317: -43,-3 + 319: -43,-8 + 321: -73,-31 + 324: -75,-26 + 325: -64,-20 + 327: -41,-17 + 328: -40,-16 + 329: -39,-14 + 331: 46,-12 + 332: 44,-10 + 333: 53,-11 + 334: 23,-23 + 335: 35,-20 + 336: 38,-24 + 339: -33,-58 + 340: -39,-58 + 342: -35,-54 + 343: -33,-52 + 344: -34,-54 + 345: -34,-49 + 346: -34,-50 + 347: -33,-50 + 348: -33,-50 + 351: -41,-47 + 352: -43,-47 + 354: -44,-45 + 355: -51,-49 + 356: -33,-29 + 606: -9,-48 + 607: -9,-48 + 611: -37,-38 + 734: 53,22 + 737: 19,47 + 873: -37,-37 + 929: -7,-43 + 930: -6,-41 + 1137: 66,8 + 1138: 62,9 + 1139: 67,4 + 1140: 52,5 + 1141: 47,0 + 1142: 56,26 + 1184: 6,56 + 1185: 7,57 + 1276: 10,67 + 1291: -35,62 + 1292: -36,61 + 1514: -59,-43 + 1515: -59,-43 + 1516: -58,-42 + 1517: -58,-41 + 1518: -58,-41 + 1519: -58,-43 + 1664: -57,-26 + 15313: -66,-35 + 15314: -66,-35 + 15315: -66,-35 + 23131: -29,-23 + 23132: -29,-23 + 23133: -28,-23 + 23134: -29,-27 + 23135: -30,-27 + 23136: -30,-29 + 23137: -30,-30 + 23138: -30,-31 + 23139: -28,-31 + 23140: -27,-31 + 23172: -39,-33 + 23173: -41,-33 + 23174: -42,-32 + 23175: -43,-33 + 23176: -42,-34 + 23177: -42,-32 + 23178: -40,-32 + 23179: -39,-34 + 23180: -38,-33 + 23181: -38,-32 + 23182: -37,-32 + 23183: -37,-34 + 23184: -35,-33 + 23185: -34,-32 + 23186: -33,-33 + 23187: -42,-31 + 23188: -40,-33 + 23189: -41,-34 + 23190: -43,-33 + 23217: -46,-22 + 23218: -47,-22 + 23219: -45,-23 + 23220: -45,-23 + 23534: 40,-67 + 23535: 40,-67 + 23536: 37,-68 + 23537: 39,-66 + 23538: 40,-66 + 23539: 38,-68 + 23540: 39,-67 + 23541: 40,-66 + 23542: 42,-67 + 23543: 41,-68 + 23544: 38,-68 + 23545: 41,-69 + 23546: 41,-71 + 23547: 38,-70 + 23548: 39,-71 + 23549: 37,-71 + 23550: 32,-69 + 23551: 29,-67 + 23552: 31,-66 + 23553: 31,-66 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 525: -3,-65 + 420: -3,-65 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 475: -1,-2 - 1010: -30,-52 - 1011: -26,-53 - 1012: -27,-52 - 1013: -30,-53 - 1014: -24,-54 - 1015: -23,-53 - 1016: -28,-50 - 1017: -30,-51 - 1018: -27,-52 - 1019: -27,-50 - 1020: -30,-53 - 1021: -30,-55 - 1022: -27,-55 - 1023: -34,-53 - 1024: -34,-52 - 1025: -34,-54 - 1026: -33,-53 - 1027: -34,-52 - 1028: -34,-52 - 1029: -34,-54 - 1042: -21,-29 - 1043: -12,-51 - 1044: -12,-49 - 3869: 18,71 - 3870: 17,71 - 3872: 19,71 - 3873: 20,71 - 3874: 21,69 - 3909: 21,65 - 3910: 22,65 - 3911: 23,65 - 4003: -38,63 - 13138: 45,-52 - 13139: 44,-51 - 13140: 45,-50 - 13141: 45,-52 - 13142: 45,-53 - 13143: 46,-52 - 13144: 45,-55 - 13145: 46,-55 - 13146: 45,-55 - 13147: 45,-54 - 13148: 45,-52 - 13149: 45,-51 - 13150: 41,-54 - 13151: 41,-55 - 13152: 41,-55 - 13153: 40,-54 - 13154: 40,-53 - 13155: 40,-52 - 13156: 40,-51 - 13157: 40,-51 - 13158: 40,-53 - 13159: 41,-53 - 13160: 40,-54 - 13161: 39,-55 - 13162: 39,-55 - 13163: 40,-53 - 13164: 41,-52 - 13165: 41,-51 - 13166: 41,-50 - 13167: 41,-51 - 13168: 42,-52 - 13169: 40,-55 - 13170: 40,-56 - 13171: 39,-56 - 13172: 39,-56 - 13173: 42,-55 - 13174: 39,-51 - 13175: 46,-50 - 13176: 46,-51 - 13177: 47,-52 - 13178: 46,-54 - 13216: 52,-37 - 13234: 54,-39 - 13235: 55,-39 - 13236: 56,-39 - 13237: 55,-38 - 13238: 56,-36 - 13239: 53,-35 - 13240: 55,-37 - 13241: 55,-35 - 13382: -37,-63 - 13383: -37,-62 - 13384: -36,-62 - 13385: -37,-61 - 13386: -38,-60 - 13402: -41,-62 - 13403: -41,-63 - 13404: -40,-63 - 13405: -41,-63 - 15974: 78,4 - 15975: 79,4 - 15976: 79,5 - 15977: 78,5 - 15978: 92,6 - 15990: 99,-4 - 15991: 100,-4 - 15992: 100,-3 - 15993: 99,-3 - 15994: 99,-2 - 15995: 100,-2 - 15996: 93,-4 - 16230: -69,-43 - 16231: -69,-42 - 16232: -69,-41 - 16233: -66,-41 - 16234: -66,-43 - 16235: -65,-43 - 16236: -64,-40 - 16498: -43,-11 - 16499: -43,-12 - 16500: -43,-11 - 16501: -38,-10 - 16502: -37,-9 - 16503: -38,-9 - 16504: -38,-10 - 16505: -38,-10 - 16506: -38,-9 - 16507: -38,-11 - 16508: -43,-4 - 16509: -43,-3 - 16510: -43,-2 - 16511: -43,-1 - 16512: -43,-2 - 16513: -43,-5 - 16514: -43,-6 - 16515: -43,-7 - 16516: -43,-7 - 16517: -43,-4 - 16518: -43,-2 - 16519: -43,0 - 16520: -43,1 - 16521: -42,1 - 16522: -42,0 - 16523: -43,0 - 16524: -42,1 - 16525: -41,1 - 16526: -42,-1 - 16527: -41,-2 - 16528: -41,-1 - 16529: -41,0 - 16530: -41,-2 - 16531: -41,-2 - 16532: -41,-1 - 16533: -41,0 - 16569: -41,-15 - 16570: -42,-16 - 16571: -42,-17 - 16572: -40,-18 - 16573: -39,-18 - 16574: -39,-17 - 16575: -40,-17 - 16576: -41,-17 - 16577: -40,-16 - 16578: -43,-15 - 16579: -42,-15 - 16580: -42,-14 - 16581: -41,-14 - 16582: -40,-14 - 19753: -30,-25 - 19772: -30,-23 - 19773: -29,-23 - 19774: -28,-23 - 21383: -63,-29 - 21384: -63,-30 - 21385: -61,-29 - 21386: -62,-30 - 21387: -64,-30 - 21388: -65,-30 - 21389: -65,-30 - 21390: -60,-29 - 21391: -59,-29 - 21392: -59,-30 - 21393: -59,-30 - 21394: -59,-29 + 370: -1,-2 + 893: -30,-52 + 894: -26,-53 + 895: -27,-52 + 896: -30,-53 + 897: -24,-54 + 898: -23,-53 + 899: -28,-50 + 900: -30,-51 + 901: -27,-52 + 902: -27,-50 + 903: -30,-53 + 904: -30,-55 + 905: -27,-55 + 906: -34,-53 + 907: -34,-52 + 908: -34,-54 + 909: -33,-53 + 910: -34,-52 + 911: -34,-52 + 912: -34,-54 + 925: -21,-29 + 926: -12,-51 + 927: -12,-49 + 3736: 18,71 + 3737: 17,71 + 3739: 19,71 + 3740: 20,71 + 3741: 21,69 + 3776: 21,65 + 3777: 22,65 + 3778: 23,65 + 3870: -38,63 + 12194: 45,-52 + 12195: 44,-51 + 12196: 45,-50 + 12197: 45,-52 + 12198: 45,-53 + 12199: 46,-52 + 12200: 45,-55 + 12201: 46,-55 + 12202: 45,-55 + 12203: 45,-54 + 12204: 45,-52 + 12205: 45,-51 + 12206: 41,-54 + 12207: 41,-55 + 12208: 41,-55 + 12209: 40,-54 + 12210: 40,-53 + 12211: 40,-52 + 12212: 40,-51 + 12213: 40,-51 + 12214: 40,-53 + 12215: 41,-53 + 12216: 40,-54 + 12217: 39,-55 + 12218: 39,-55 + 12219: 40,-53 + 12220: 41,-52 + 12221: 41,-51 + 12222: 41,-50 + 12223: 41,-51 + 12224: 42,-52 + 12225: 40,-55 + 12226: 40,-56 + 12227: 39,-56 + 12228: 39,-56 + 12229: 42,-55 + 12230: 39,-51 + 12231: 46,-50 + 12232: 46,-51 + 12233: 47,-52 + 12234: 46,-54 + 12272: 52,-37 + 12290: 54,-39 + 12291: 55,-39 + 12292: 56,-39 + 12293: 55,-38 + 12294: 56,-36 + 12295: 53,-35 + 12296: 55,-37 + 12297: 55,-35 + 12438: -37,-63 + 12439: -37,-62 + 12440: -36,-62 + 12441: -37,-61 + 12442: -38,-60 + 12458: -41,-62 + 12459: -41,-63 + 12460: -40,-63 + 12461: -41,-63 + 15023: 78,4 + 15024: 79,4 + 15025: 79,5 + 15026: 78,5 + 15027: 92,6 + 15039: 99,-4 + 15040: 100,-4 + 15041: 100,-3 + 15042: 99,-3 + 15043: 99,-2 + 15044: 100,-2 + 15045: 93,-4 + 15279: -69,-43 + 15280: -69,-42 + 15281: -69,-41 + 15282: -66,-41 + 15283: -66,-43 + 15284: -65,-43 + 15285: -64,-40 + 15547: -43,-11 + 15548: -43,-12 + 15549: -43,-11 + 15550: -38,-10 + 15551: -37,-9 + 15552: -38,-9 + 15553: -38,-10 + 15554: -38,-10 + 15555: -38,-9 + 15556: -38,-11 + 15557: -43,-4 + 15558: -43,-3 + 15559: -43,-2 + 15560: -43,-1 + 15561: -43,-2 + 15562: -43,-5 + 15563: -43,-6 + 15564: -43,-7 + 15565: -43,-7 + 15566: -43,-4 + 15567: -43,-2 + 15568: -43,0 + 15569: -43,1 + 15570: -42,1 + 15571: -42,0 + 15572: -43,0 + 15573: -42,1 + 15574: -41,1 + 15575: -42,-1 + 15576: -41,-2 + 15577: -41,-1 + 15578: -41,0 + 15579: -41,-2 + 15580: -41,-2 + 15581: -41,-1 + 15582: -41,0 + 15618: -41,-15 + 15619: -42,-16 + 15620: -42,-17 + 15621: -40,-18 + 15622: -39,-18 + 15623: -39,-17 + 15624: -40,-17 + 15625: -41,-17 + 15626: -40,-16 + 15627: -43,-15 + 15628: -42,-15 + 15629: -42,-14 + 15630: -41,-14 + 15631: -40,-14 + 18770: -30,-25 + 18778: -30,-23 + 18779: -29,-23 + 18780: -28,-23 + 20389: -63,-29 + 20390: -63,-30 + 20391: -61,-29 + 20392: -62,-30 + 20393: -64,-30 + 20394: -65,-30 + 20395: -65,-30 + 20396: -60,-29 + 20397: -59,-29 + 20398: -59,-30 + 20399: -59,-30 + 20400: -59,-29 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 250: 35,-56 - 251: 37,-54 - 263: 40,-42 - 271: 50,-47 - 283: 55,-21 - 284: 63,-29 - 285: 56,-28 - 310: -26,25 - 318: -7,63 - 322: -22,-61 - 326: -28,-68 - 327: -28,-68 - 364: 45,-12 - 375: -34,-53 - 526: -4,-65 - 713: -11,-48 - 714: -11,-48 - 956: 33,37 - 960: -1,-14 - 1049: -7,-51 - 1063: -35,-45 - 1064: -33,-37 - 1638: -60,-43 - 1639: -60,-41 - 1640: -59,-40 - 1641: -58,-49 - 1642: -59,-48 - 1643: -59,-49 - 1644: -60,-51 - 1645: -60,-50 - 1646: -60,-48 - 1647: -58,-49 - 4025: -16,38 - 4032: -13,74 - 16270: -69,-35 - 16271: -69,-35 - 16272: -66,-36 - 16275: -69,-36 - 16276: -63,-33 - 16293: -70,-37 - 24114: -29,-22 - 24115: -29,-23 - 24116: -31,-24 - 24117: -31,-23 - 24118: -28,-24 - 24119: -27,-23 - 24120: -27,-22 - 24121: -30,-22 - 24122: -31,-22 - 24123: -28,-22 - 24124: -28,-23 - 24125: -29,-24 - 24153: -29,-28 - 24154: -30,-28 - 24155: -31,-27 - 24156: -31,-27 - 24157: -27,-26 - 24158: -27,-26 - 24159: -26,-27 - 24160: -28,-29 - 24161: -37,-26 - 24162: -35,-26 - 24163: -34,-26 - 24164: -40,-32 - 24165: -38,-33 - 24166: -39,-34 - 24207: -46,-23 - 24208: -47,-23 - 24209: -47,-22 - 24210: -45,-22 - 24211: -45,-22 - 24490: 41,-62 - 24491: 39,-62 - 24492: 38,-61 - 24493: 39,-60 - 24494: 41,-62 - 24495: 39,-63 - 24496: 35,-62 - 24497: 34,-61 - 24498: 34,-61 - 24499: 32,-61 - 24500: 30,-61 - 24501: 30,-62 - 24502: 35,-64 - 24503: 35,-65 - 24504: 35,-68 - 24505: 36,-66 - 24506: 36,-66 - 24507: 34,-65 - 24508: 35,-64 - 24509: 33,-64 - 24510: 36,-68 - 24511: 35,-70 - 24512: 35,-72 - 24513: 34,-72 - 24514: 38,-72 - 24515: 39,-70 - 24516: 39,-73 - 24517: 39,-74 - 24518: 38,-74 - 24519: 38,-73 - 24520: 40,-74 - 24521: 42,-74 - 24522: 41,-73 - 24523: 41,-72 - 24524: 41,-71 - 24525: 42,-70 - 24526: 42,-70 - 24527: 41,-69 - 24528: 41,-68 - 24529: 41,-68 - 24530: 41,-67 - 24531: 41,-66 - 24532: 38,-66 + 233: 35,-56 + 234: 37,-54 + 246: 40,-42 + 254: 50,-47 + 286: -26,25 + 295: -22,-61 + 299: -28,-68 + 300: -28,-68 + 330: 45,-12 + 341: -34,-53 + 421: -4,-65 + 608: -11,-48 + 609: -11,-48 + 843: 33,37 + 847: -1,-14 + 945: -35,-45 + 946: -33,-37 + 1520: -60,-43 + 1521: -60,-41 + 1522: -59,-40 + 1523: -58,-49 + 1524: -59,-48 + 1525: -59,-49 + 1526: -60,-51 + 1527: -60,-50 + 1528: -60,-48 + 1529: -58,-49 + 15319: -69,-35 + 15320: -69,-35 + 15321: -66,-36 + 15324: -69,-36 + 15325: -63,-33 + 15342: -70,-37 + 23119: -29,-22 + 23120: -29,-23 + 23121: -31,-24 + 23122: -31,-23 + 23123: -28,-24 + 23124: -27,-23 + 23125: -27,-22 + 23126: -30,-22 + 23127: -31,-22 + 23128: -28,-22 + 23129: -28,-23 + 23130: -29,-24 + 23158: -29,-28 + 23159: -30,-28 + 23160: -31,-27 + 23161: -31,-27 + 23162: -27,-26 + 23163: -27,-26 + 23164: -26,-27 + 23165: -28,-29 + 23166: -37,-26 + 23167: -35,-26 + 23168: -34,-26 + 23169: -40,-32 + 23170: -38,-33 + 23171: -39,-34 + 23212: -46,-23 + 23213: -47,-23 + 23214: -47,-22 + 23215: -45,-22 + 23216: -45,-22 + 23491: 41,-62 + 23492: 39,-62 + 23493: 38,-61 + 23494: 39,-60 + 23495: 41,-62 + 23496: 39,-63 + 23497: 35,-62 + 23498: 34,-61 + 23499: 34,-61 + 23500: 32,-61 + 23501: 30,-61 + 23502: 30,-62 + 23503: 35,-64 + 23504: 35,-65 + 23505: 35,-68 + 23506: 36,-66 + 23507: 36,-66 + 23508: 34,-65 + 23509: 35,-64 + 23510: 33,-64 + 23511: 36,-68 + 23512: 35,-70 + 23513: 35,-72 + 23514: 34,-72 + 23515: 38,-72 + 23516: 39,-70 + 23517: 39,-73 + 23518: 39,-74 + 23519: 38,-74 + 23520: 38,-73 + 23521: 40,-74 + 23522: 42,-74 + 23523: 41,-73 + 23524: 41,-72 + 23525: 41,-71 + 23526: 42,-70 + 23527: 42,-70 + 23528: 41,-69 + 23529: 41,-68 + 23530: 41,-68 + 23531: 41,-67 + 23532: 41,-66 + 23533: 38,-66 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtMedium decals: - 13722: -28,-65 - 13723: -28,-64 - 13724: -28,-63 - 13875: -59,-35 - 13876: -59,-34 - 13982: -46,-41 - 13983: -47,-41 - 13984: -48,-41 - 13985: -47,-41 - 13986: -43,-41 - 13987: -40,-49 - 13988: -43,-47 - 13989: -35,-49 - 13990: -35,-50 - 13991: -33,-49 - 13992: -33,-49 - 13993: -33,-50 + 12778: -28,-65 + 12779: -28,-64 + 12780: -28,-63 + 12931: -59,-35 + 12932: -59,-34 + 13038: -46,-41 + 13039: -47,-41 + 13040: -48,-41 + 13041: -47,-41 + 13042: -43,-41 + 13043: -40,-49 + 13044: -43,-47 + 13045: -35,-49 + 13046: -35,-50 + 13047: -33,-49 + 13048: -33,-49 + 13049: -33,-50 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 1128: 1,9 + 1010: 1,9 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 1129: -3,1 + 1011: -3,1 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 1130: 1,-6 - 1170: 70,-18 - 15737: 81,3 - 21253: -16.774988,18.928102 + 1012: 1,-6 + 1052: 70,-18 + 14786: 81,3 + 20259: -16.774988,18.928102 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 538: -2,-84 - 539: -1,-84 - 540: 0,-84 - 1125: -6,-4 - 21252: -16.884361,19.974977 + 433: -2,-84 + 434: -1,-84 + 435: 0,-84 + 1007: -6,-4 + 20258: -16.884361,19.974977 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 510: -6.021795,-67.068596 - 511: -5.396795,-67.037346 - 516: -2.928045,-67.08422 - 1126: 2,0 + 405: -6.021795,-67.068596 + 406: -5.396795,-67.037346 + 411: -2.928045,-67.08422 + 1008: 2,0 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 512: -4.63117,-67.068596 - 517: -1.9944773,-68.006096 - 1127: -6,5 + 407: -4.63117,-67.068596 + 412: -1.9944773,-68.006096 + 1009: -6,5 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 513: -3.7717953,-67.05297 - 514: -3.09992,-66.99047 - 515: -5.31867,-67.068596 - 541: -2,-84 - 542: -1,-84 - 543: 0,-84 - 1131: -5,-5 - 21546: 14.879294,19.98756 + 408: -3.7717953,-67.05297 + 409: -3.09992,-66.99047 + 410: -5.31867,-67.068596 + 436: -2,-84 + 437: -1,-84 + 438: 0,-84 + 1013: -5,-5 + 20552: 14.879294,19.98756 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 503: -6.064717,-73.98025 - 1133: -4,4 - 21548: 14.941794,19.05006 + 398: -6.064717,-73.98025 + 1015: -4,4 + 20554: 14.941794,19.05006 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 1132: 3,1 - 1171: 72,-18 - 15459: 68,-21 - 21547: 15.051168,17.92506 + 1014: 3,1 + 1053: 72,-18 + 14508: 68,-21 + 20553: 15.051168,17.92506 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 504: -7.008356,-73.15212 - 505: -6.961481,-72.62087 - 1121: -5,3 + 399: -7.008356,-73.15212 + 400: -6.961481,-72.62087 + 1003: -5,3 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 509: -1.9973309,-73.04275 - 1122: 2,6 + 404: -1.9973309,-73.04275 + 1004: 2,6 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 508: -1.9927311,-72.5115 - 1123: -5,-2 + 403: -1.9927311,-72.5115 + 1005: -5,-2 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 506: -7.0083566,-72.05837 - 507: -1.9771061,-72.02712 - 1124: 3,-4 + 401: -7.0083566,-72.05837 + 402: -1.9771061,-72.02712 + 1006: 3,-4 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 705: 24,-26 - 706: 24,-25 - 707: 25,-25 - 708: 26,-25 - 709: 26,-26 - 710: 25,-26 - 717: 24,-31 - 718: 25,-31 - 719: 25,-32 - 720: 24,-32 - 721: 31,-32 - 722: 32,-32 - 723: 32,-31 - 724: 31,-31 + 600: 24,-26 + 601: 24,-25 + 602: 25,-25 + 603: 26,-25 + 604: 26,-26 + 605: 25,-26 + 612: 24,-31 + 613: 25,-31 + 614: 25,-32 + 615: 24,-32 + 616: 31,-32 + 617: 32,-32 + 618: 32,-31 + 619: 31,-31 - node: color: '#55555596' id: FullTileOverlayGreyscale @@ -24336,8 +24325,8 @@ entities: color: '#6E9BAFFF' id: FullTileOverlayGreyscale decals: - 103: 31,-43 - 104: 36,-43 + 102: 31,-43 + 103: 36,-43 - node: color: '#919191FF' id: FullTileOverlayGreyscale @@ -24347,407 +24336,407 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 1244: 58,6 - 1245: 62,6 - 1246: 66,6 - 1247: 69,7 + 1126: 58,6 + 1127: 62,6 + 1128: 66,6 + 1129: 69,7 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 2165: -18,43 + 2044: -18,43 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 15460: 69,-21 - 18592: 3,-3 + 14509: 69,-21 + 17641: 3,-3 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 15736: 89,3 + 14785: 89,3 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 1136: 4,4 - 1251: -34,40 - 2181: -20,42 - 2850: -34,41 + 1018: 4,4 + 1133: -34,40 + 2060: -20,42 + 2727: -34,41 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 1137: -3,9 - 1167: 70,-17 + 1019: -3,9 + 1049: 70,-17 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1138: -6,-5 + 1020: -6,-5 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1134: -3,4 - 1168: 70,-24 - 1572: -39,32 - 2168: -18,39 + 1016: -3,4 + 1050: 70,-24 + 1454: -39,32 + 2047: -18,39 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 1135: 1,-4 - 1169: 68,-20 - 1573: -40,35 - 2169: -21,41 - 2849: -33,42 - 18593: 2,2 + 1017: 1,-4 + 1051: 68,-20 + 1455: -40,35 + 2048: -21,41 + 2726: -33,42 + 17642: 2,2 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 1098: -5,5 - 1099: 2,4 - 1100: 4,1 - 1101: 1,-1 - 1102: -3,-2 - 1103: -5,0 - 1104: -6,-4 - 1105: 3,-6 - 1106: 2,8 - 1162: 69,-18 - 1249: -34,42 - 2164: -20,39 - 21251: -16.861458,19.162476 + 980: -5,5 + 981: 2,4 + 982: 4,1 + 983: 1,-1 + 984: -3,-2 + 985: -5,0 + 986: -6,-4 + 987: 3,-6 + 988: 2,8 + 1044: 69,-18 + 1131: -34,42 + 2043: -20,39 + 20257: -16.861458,19.162476 - node: cleanable: True color: '#FFFFFFFF' id: Grassc1 decals: - 245: 36.591118,-46.696697 - 246: 35.8887,-47.060184 - 247: 35.840252,-47.630493 - 248: 37.362995,-46.68542 - 249: 37.400673,-55.197823 - 252: 37,-56 - 253: 36.075,-56.228687 - 268: 52.41801,-47.978123 - 269: 51.473373,-48.293144 - 270: 52.41801,-47.420773 - 278: 52.705982,-27.63774 - 279: 53.384186,-27.880066 + 228: 36.591118,-46.696697 + 229: 35.8887,-47.060184 + 230: 35.840252,-47.630493 + 231: 37.362995,-46.68542 + 232: 37.400673,-55.197823 + 235: 37,-56 + 236: 36.075,-56.228687 + 251: 52.41801,-47.978123 + 252: 51.473373,-48.293144 + 253: 52.41801,-47.420773 + 261: 52.705982,-27.63774 + 262: 53.384186,-27.880066 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 1107: -4,9 - 1108: 1,5 - 1109: 2,1 - 1110: 4,-1 - 1111: -5,-4 - 1112: 2,-5 - 1163: 73,-20 + 989: -4,9 + 990: 1,5 + 991: 2,1 + 992: 4,-1 + 993: -5,-4 + 994: 2,-5 + 1045: 73,-20 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 1113: -6,-2 - 1114: 2,-3 - 1115: -4,2 - 1164: 70,-23 - 1166: 71,-21 - 1574: -39,31 - 2180: -20,40 - 2848: -33,40 - 18594: 4,-4 + 995: -6,-2 + 996: 2,-3 + 997: -4,2 + 1046: 70,-23 + 1048: 71,-21 + 1456: -39,31 + 2059: -20,40 + 2725: -33,40 + 17643: 4,-4 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 1116: -6,2 - 1117: 3,-2 - 1118: -4,-5 - 1119: 4,5 - 1120: -3,7 - 1165: 72,-24 - 1567: -41,33 - 2163: -21,42 - 2167: -17,42 - 15457: 68,-23 - 15458: 69,-23 + 998: -6,2 + 999: 3,-2 + 1000: -4,-5 + 1001: 4,5 + 1002: -3,7 + 1047: 72,-24 + 1449: -41,33 + 2042: -21,42 + 2046: -17,42 + 14506: 68,-23 + 14507: 69,-23 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1067: -5,-3 - 1068: 4,-5 - 1069: 3,0 - 1070: -5,4 - 1071: 2,9 - 1072: -4,8 - 1147: 68,-18 - 1148: 72,-21 - 1149: 73,-24 - 1568: -40,31 - 1575: -41,32 - 2147: -19,43 - 2155: -18,42 - 2156: -18,42 - 2157: -18,43 - 15435: 71,-24 - 15436: 72,-23 - 15437: 69,-23 - 15438: 70,-23 - 15439: 73,-23 - 15443: 72,-20 - 15444: 71,-20 - 15445: 69,-21 - 15446: 70,-17 - 15447: 71,-17 - 15448: 68,-18 - 15449: 72,-18 - 15450: 74,-18 - 15451: 72,-17 - 21540: 14.848043,17.971935 - 21541: 14.910544,18.565685 - 21542: 14.879294,19.440685 - 21543: 14.457419,19.596935 - 21544: 14.785545,20.45631 + 949: -5,-3 + 950: 4,-5 + 951: 3,0 + 952: -5,4 + 953: 2,9 + 954: -4,8 + 1029: 68,-18 + 1030: 72,-21 + 1031: 73,-24 + 1450: -40,31 + 1457: -41,32 + 2026: -19,43 + 2034: -18,42 + 2035: -18,42 + 2036: -18,43 + 14484: 71,-24 + 14485: 72,-23 + 14486: 69,-23 + 14487: 70,-23 + 14488: 73,-23 + 14492: 72,-20 + 14493: 71,-20 + 14494: 69,-21 + 14495: 70,-17 + 14496: 71,-17 + 14497: 68,-18 + 14498: 72,-18 + 14499: 74,-18 + 14500: 72,-17 + 20546: 14.848043,17.971935 + 20547: 14.910544,18.565685 + 20548: 14.879294,19.440685 + 20549: 14.457419,19.596935 + 20550: 14.785545,20.45631 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1073: -5,1 - 1074: 3,4 - 1075: 1,1 - 1076: 1,-2 - 1077: 2,-6 - 1078: -3,-6 - 1079: -6,-1 - 1150: 68,-21 - 1151: 72,-17 - 1152: 69,-23 - 1577: -39,35 - 2146: -17,41 - 2158: -18,39 - 2178: -20,40 - 2182: -20,42 - 2183: -20,42 - 15452: 73,-17 - 15453: 71,-18 - 15454: 71,-18 - 15455: 69,-17 - 15456: 71,-17 - 15732: 82,3 - 18489: -6,0 - 18490: -6,1 - 18491: -6,-1 - 18492: -3,-1 - 18493: -3,0 - 18494: -5,-1 - 18495: -3,-3 - 18496: -4,-2 - 18497: -3,4 - 18498: -3,4 - 18499: -3,3 - 18500: -3,5 - 18501: -3,6 - 18502: -3,7 - 18503: -4,7 - 18504: -4,8 - 18505: -3,9 - 18506: -3,8 - 18507: -4,8 - 18508: -4,9 - 18509: -4,8 - 18510: -4,7 - 18511: -4,8 - 18512: -3,9 - 18513: -3,8 - 18514: -4,5 - 18515: -4,6 - 18516: -3,5 - 18517: -4,4 - 18518: -5,4 - 18519: -4,3 - 18520: -3,2 - 18549: 2,-2 - 18550: 3,-1 - 18551: 2,-4 - 18552: 1,-5 - 18553: 3,-6 - 18554: 4,-6 - 18555: 4,-6 + 955: -5,1 + 956: 3,4 + 957: 1,1 + 958: 1,-2 + 959: 2,-6 + 960: -3,-6 + 961: -6,-1 + 1032: 68,-21 + 1033: 72,-17 + 1034: 69,-23 + 1459: -39,35 + 2025: -17,41 + 2037: -18,39 + 2057: -20,40 + 2061: -20,42 + 2062: -20,42 + 14501: 73,-17 + 14502: 71,-18 + 14503: 71,-18 + 14504: 69,-17 + 14505: 71,-17 + 14781: 82,3 + 17538: -6,0 + 17539: -6,1 + 17540: -6,-1 + 17541: -3,-1 + 17542: -3,0 + 17543: -5,-1 + 17544: -3,-3 + 17545: -4,-2 + 17546: -3,4 + 17547: -3,4 + 17548: -3,3 + 17549: -3,5 + 17550: -3,6 + 17551: -3,7 + 17552: -4,7 + 17553: -4,8 + 17554: -3,9 + 17555: -3,8 + 17556: -4,8 + 17557: -4,9 + 17558: -4,8 + 17559: -4,7 + 17560: -4,8 + 17561: -3,9 + 17562: -3,8 + 17563: -4,5 + 17564: -4,6 + 17565: -3,5 + 17566: -4,4 + 17567: -5,4 + 17568: -4,3 + 17569: -3,2 + 17598: 2,-2 + 17599: 3,-1 + 17600: 2,-4 + 17601: 1,-5 + 17602: 3,-6 + 17603: 4,-6 + 17604: 4,-6 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1080: -3,2 - 1081: 1,6 - 1082: 4,2 - 1083: 3,-3 - 1084: -5,-5 - 1153: 69,-24 - 1154: 74,-20 - 1155: 69,-17 - 1569: -39,32 - 2145: -17,42 - 2159: -19,39 - 2160: -20,43 - 2179: -20,42 - 2846: -33,42 - 2847: -34,41 - 15735: 89,3 - 21248: -16.892008,19.490566 - 21254: -16.71812,17.842958 - 21545: 15.035544,19.95631 + 962: -3,2 + 963: 1,6 + 964: 4,2 + 965: 3,-3 + 966: -5,-5 + 1035: 69,-24 + 1036: 74,-20 + 1037: 69,-17 + 1451: -39,32 + 2024: -17,42 + 2038: -19,39 + 2039: -20,43 + 2058: -20,42 + 2723: -33,42 + 2724: -34,41 + 14784: 89,3 + 20254: -16.892008,19.490566 + 20260: -16.71812,17.842958 + 20551: 15.035544,19.95631 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 1085: -4,-1 - 1086: 2,-4 - 1087: 4,-2 - 1088: -6,3 - 1089: 2,7 - 1156: 71,-23 - 1157: 69,-20 - 1571: -38,34 - 1576: -39,34 - 2151: -21,41 - 2152: -21,41 - 15734: 88,3 - 18521: -4,-2 - 18522: -3,-2 - 18523: -3,-4 - 18524: -3,-4 - 18525: -3,-6 - 18526: -4,-6 - 18527: -5,-6 - 18528: -4,-6 - 18529: -4,-5 - 18530: -5,-5 - 18531: -3,-5 - 18532: -3,-4 - 18533: -5,-3 - 18534: -6,-2 - 18535: -5,-1 - 18536: -6,0 - 18537: 3,1 - 18538: 2,1 - 18539: 2,3 - 18540: 1,2 - 18541: 2,3 + 967: -4,-1 + 968: 2,-4 + 969: 4,-2 + 970: -6,3 + 971: 2,7 + 1038: 71,-23 + 1039: 69,-20 + 1453: -38,34 + 1458: -39,34 + 2030: -21,41 + 2031: -21,41 + 14783: 88,3 + 17570: -4,-2 + 17571: -3,-2 + 17572: -3,-4 + 17573: -3,-4 + 17574: -3,-6 + 17575: -4,-6 + 17576: -5,-6 + 17577: -4,-6 + 17578: -4,-5 + 17579: -5,-5 + 17580: -3,-5 + 17581: -3,-4 + 17582: -5,-3 + 17583: -6,-2 + 17584: -5,-1 + 17585: -6,0 + 17586: 3,1 + 17587: 2,1 + 17588: 2,3 + 17589: 1,2 + 17590: 2,3 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1090: -4,6 - 1091: -4,3 - 1092: 2,-1 - 1093: 3,-4 - 1094: -6,-6 - 1158: 68,-23 - 1159: 70,-21 - 1250: -33,43 - 1570: -41,35 - 2144: -17,40 - 2148: -20,43 - 2149: -20,39 - 2166: -19,43 - 15733: 81,3 - 18587: 4,-4 - 18588: 4,-3 - 18589: 4,-3 - 18590: 3,-5 - 18591: 3,-1 - 21250: -17.048258,19.490566 - 21256: -16.921246,18.874208 + 972: -4,6 + 973: -4,3 + 974: 2,-1 + 975: 3,-4 + 976: -6,-6 + 1040: 68,-23 + 1041: 70,-21 + 1132: -33,43 + 1452: -41,35 + 2023: -17,40 + 2027: -20,43 + 2028: -20,39 + 2045: -19,43 + 14782: 81,3 + 17636: 4,-4 + 17637: 4,-3 + 17638: 4,-3 + 17639: 3,-5 + 17640: 3,-1 + 20256: -17.048258,19.490566 + 20262: -16.921246,18.874208 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1095: -4,-4 - 1096: 2,2 - 1097: -4,5 - 1160: 73,-18 - 1161: 74,-23 - 1248: -33,40 - 2143: -21,42 - 2150: -21,40 - 2153: -18,40 - 2154: -18,40 - 2161: -21,40 - 2162: -17,42 - 15440: 73,-21 - 15441: 74,-21 - 15442: 72,-20 - 18542: 1,3 - 18543: 1,4 - 18544: 1,5 - 18545: 1,6 - 18546: 1,7 - 18547: 1,8 - 18548: 1,8 - 18556: 1,-6 - 18557: 1,-3 - 18558: 4,-2 - 18559: 4,-2 - 18560: 3,-2 - 18561: 3,2 - 18562: 3,2 - 18563: 3,3 - 18564: 3,3 - 18565: 3,4 - 18566: 4,4 - 18567: 4,2 - 18568: 3,0 - 18569: 3,-1 - 18570: 3,-1 - 18571: 3,-1 - 18572: 3,0 - 18573: 4,0 - 18574: 4,0 - 18575: 4,0 - 18576: 1,0 - 18577: 2,-2 - 18578: 3,-2 - 18579: 3,-3 - 18580: 2,-3 - 18581: 3,-3 - 18582: 3,-3 - 18583: 4,-4 - 18584: 2,-5 - 18585: 2,-5 - 18586: 3,-4 - 21249: -16.985758,20.224941 - 21255: -16.952496,18.202333 + 977: -4,-4 + 978: 2,2 + 979: -4,5 + 1042: 73,-18 + 1043: 74,-23 + 1130: -33,40 + 2022: -21,42 + 2029: -21,40 + 2032: -18,40 + 2033: -18,40 + 2040: -21,40 + 2041: -17,42 + 14489: 73,-21 + 14490: 74,-21 + 14491: 72,-20 + 17591: 1,3 + 17592: 1,4 + 17593: 1,5 + 17594: 1,6 + 17595: 1,7 + 17596: 1,8 + 17597: 1,8 + 17605: 1,-6 + 17606: 1,-3 + 17607: 4,-2 + 17608: 4,-2 + 17609: 3,-2 + 17610: 3,2 + 17611: 3,2 + 17612: 3,3 + 17613: 3,3 + 17614: 3,4 + 17615: 4,4 + 17616: 4,2 + 17617: 3,0 + 17618: 3,-1 + 17619: 3,-1 + 17620: 3,-1 + 17621: 3,0 + 17622: 4,0 + 17623: 4,0 + 17624: 4,0 + 17625: 1,0 + 17626: 2,-2 + 17627: 3,-2 + 17628: 3,-3 + 17629: 2,-3 + 17630: 3,-3 + 17631: 3,-3 + 17632: 4,-4 + 17633: 2,-5 + 17634: 2,-5 + 17635: 3,-4 + 20255: -16.985758,20.224941 + 20261: -16.952496,18.202333 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale decals: - 1784: -71,-23 - 1785: -70,-23 - 1786: -69,-23 + 1666: -71,-23 + 1667: -70,-23 + 1668: -69,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 628: -125,35 - 629: -124,35 - 630: -123,35 - 631: -115,35 - 632: -114,35 - 633: -113,35 - 639: -122,50 - 640: -121,50 - 641: -120,50 - 642: -119,50 - 643: -118,50 - 644: -117,50 - 645: -116,50 + 523: -125,35 + 524: -124,35 + 525: -123,35 + 526: -115,35 + 527: -114,35 + 528: -113,35 + 534: -122,50 + 535: -121,50 + 536: -120,50 + 537: -119,50 + 538: -118,50 + 539: -117,50 + 540: -116,50 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -24759,9 +24748,9 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale decals: - 15590: 96,7 - 15591: 97,7 - 15597: 95,7 + 14639: 96,7 + 14640: 97,7 + 14646: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -24773,9 +24762,9 @@ entities: color: '#B240B4FF' id: HalfTileOverlayGreyscale decals: - 669: -24,-59 - 670: -23,-59 - 671: -22,-59 + 564: -24,-59 + 565: -23,-59 + 566: -22,-59 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -24786,9 +24775,9 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale decals: - 3790: 10,70 - 3791: 11,70 - 3792: 12,70 + 3657: 10,70 + 3658: 11,70 + 3659: 12,70 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -24807,228 +24796,228 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale decals: - 1531: -38,54 - 1532: -39,54 + 1413: -38,54 + 1414: -39,54 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale180 decals: - 1792: -70,-29 - 1793: -69,-29 + 1674: -70,-29 + 1675: -69,-29 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 634: -115,43 - 635: -114,43 - 636: -113,43 + 529: -115,43 + 530: -114,43 + 531: -113,43 - node: cleanable: True color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 557: -125,43 - 558: -124,43 - 559: -123,43 - 610: -122,45 - 611: -121,45 - 612: -120,45 - 613: -119,45 - 614: -118,45 - 615: -117,45 - 616: -116,45 + 452: -125,43 + 453: -124,43 + 454: -123,43 + 505: -122,45 + 506: -121,45 + 507: -120,45 + 508: -119,45 + 509: -118,45 + 510: -117,45 + 511: -116,45 - node: color: '#639137BF' id: HalfTileOverlayGreyscale180 decals: - 1557: -39,44 + 1439: -39,44 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale180 decals: - 15588: 95,6 - 15589: 97,6 + 14637: 95,6 + 14638: 97,6 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 174: 30,56 - 175: 27,56 - 176: 26,56 + 157: 30,56 + 158: 27,56 + 159: 26,56 - node: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale180 decals: - 3799: 10,66 - 3800: 11,66 - 3801: 12,66 + 3666: 10,66 + 3667: 11,66 + 3668: 12,66 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 decals: - 1536: -39,52 - 1537: -38,52 + 1418: -39,52 + 1419: -38,52 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale270 decals: - 1787: -72,-24 - 1788: -72,-25 - 1789: -72,-27 - 1790: -72,-28 + 1669: -72,-24 + 1670: -72,-25 + 1671: -72,-27 + 1672: -72,-28 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 637: -123,48 + 532: -123,48 - node: cleanable: True color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 560: -120,28 - 561: -120,29 - 562: -120,30 - 563: -120,31 - 564: -120,32 - 565: -120,33 - 566: -120,34 - 567: -120,35 - 568: -120,36 - 569: -120,43 - 570: -120,42 - 571: -120,41 - 572: -120,40 - 573: -120,39 - 574: -120,38 - 575: -120,37 - 598: -120,26 - 599: -120,25 - 600: -120,24 - 601: -120,23 - 602: -120,22 - 603: -120,21 - 617: -123,47 + 455: -120,28 + 456: -120,29 + 457: -120,30 + 458: -120,31 + 459: -120,32 + 460: -120,33 + 461: -120,34 + 462: -120,35 + 463: -120,36 + 464: -120,43 + 465: -120,42 + 466: -120,41 + 467: -120,40 + 468: -120,39 + 469: -120,38 + 470: -120,37 + 493: -120,26 + 494: -120,25 + 495: -120,24 + 496: -120,23 + 497: -120,22 + 498: -120,21 + 512: -123,47 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale270 decals: - 15592: 95,6 - 15596: 95,7 + 14641: 95,6 + 14645: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 169: 25,60 - 170: 25,59 + 152: 25,60 + 153: 25,59 - node: color: '#A5CDE6FF' id: HalfTileOverlayGreyscale270 decals: - 98: 30,-43 + 97: 30,-43 - node: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale270 decals: - 3785: 10,67 - 3786: 10,66 - 3787: 10,68 - 3788: 10,69 - 3789: 10,70 + 3652: 10,67 + 3653: 10,66 + 3654: 10,68 + 3655: 10,69 + 3656: 10,70 - node: cleanable: True color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 604: -124,23 - 605: -124,22 - 606: -124,21 + 499: -124,23 + 500: -124,22 + 501: -124,21 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: - 1534: -40,53 + 1416: -40,53 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 638: -115,48 + 533: -115,48 - node: cleanable: True color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 576: -118,43 - 577: -118,42 - 578: -118,41 - 579: -118,40 - 580: -118,38 - 581: -118,39 - 582: -118,37 - 583: -118,36 - 584: -118,35 - 585: -118,34 - 586: -118,33 - 587: -118,32 - 588: -118,31 - 589: -118,30 - 590: -118,29 - 591: -118,28 - 592: -118,26 - 593: -118,25 - 594: -118,24 - 595: -118,23 - 596: -118,22 - 597: -118,21 - 618: -115,47 - 932: 31,-2 + 471: -118,43 + 472: -118,42 + 473: -118,41 + 474: -118,40 + 475: -118,38 + 476: -118,39 + 477: -118,37 + 478: -118,36 + 479: -118,35 + 480: -118,34 + 481: -118,33 + 482: -118,32 + 483: -118,31 + 484: -118,30 + 485: -118,29 + 486: -118,28 + 487: -118,26 + 488: -118,25 + 489: -118,24 + 490: -118,23 + 491: -118,22 + 492: -118,21 + 513: -115,47 + 819: 31,-2 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale90 decals: - 15593: 97,6 - 15594: 97,7 + 14642: 97,6 + 14643: 97,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 171: 31,59 - 172: 31,58 + 154: 31,59 + 155: 31,58 - node: color: '#A5CDE6FF' id: HalfTileOverlayGreyscale90 decals: - 99: 32,-43 + 98: 32,-43 - node: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale90 decals: - 3793: 12,70 - 3794: 12,69 - 3795: 12,68 - 3796: 12,68 - 3797: 12,67 - 3798: 12,66 + 3660: 12,70 + 3661: 12,69 + 3662: 12,68 + 3663: 12,68 + 3664: 12,67 + 3665: 12,66 - node: cleanable: True color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 607: -122,23 - 608: -122,22 - 609: -122,21 + 502: -122,23 + 503: -122,22 + 504: -122,21 - node: color: '#FA750096' id: HalfTileOverlayGreyscale90 decals: - 1539: -37,53 + 1421: -37,53 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 527: -16,77 - 528: -16,84 + 422: -16,77 + 423: -16,84 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -25038,7 +25027,7 @@ entities: 41: 16,50 42: 16,49 43: 16,48 - 151: -36,25 + 134: -36,25 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -25053,415 +25042,415 @@ entities: decals: 24: 24,53 25: 24,52 - 984: -35,-40 - 1054: -35,-45 - 3128: -2,60 + 867: -35,-40 + 936: -35,-45 + 3004: -2,60 - node: angle: 3.141592653589793 rad color: '#8BDA8EFF' id: LoadingAreaGreyscale decals: - 15595: 96,6 + 14644: 96,6 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNe decals: - 15850: 78,10 - 15870: 86,10 - 15898: 93,23 + 14899: 78,10 + 14919: 86,10 + 14947: 93,23 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNw decals: - 15848: 76,10 - 15851: 80,10 - 15899: 91,23 - 15908: 81,14 + 14897: 76,10 + 14900: 80,10 + 14948: 91,23 + 14957: 81,14 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSe decals: - 15853: 78,8 - 15869: 86,9 - 15891: 93,12 + 14902: 78,8 + 14918: 86,9 + 14940: 93,12 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSw decals: - 15852: 76,8 - 15906: 81,12 + 14901: 76,8 + 14955: 81,12 - node: color: '#DA8B8BFF' id: MiniTileDarkEndW decals: - 15941: 91,15 + 14990: 91,15 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNe decals: - 15861: 78,9 - 15878: 83,10 - 15919: 93,13 - 15923: 93,17 - 15927: 93,21 - 15932: 92,23 + 14910: 78,9 + 14927: 83,10 + 14968: 93,13 + 14972: 93,17 + 14976: 93,21 + 14981: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNw decals: - 15855: 76,9 - 15862: 80,9 - 15877: 83,10 - 15918: 91,14 - 15929: 91,21 - 15933: 92,23 + 14904: 76,9 + 14911: 80,9 + 14926: 83,10 + 14967: 91,14 + 14978: 91,21 + 14982: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSe decals: - 15859: 78,9 - 15920: 93,13 - 15924: 93,17 - 15925: 93,20 - 15926: 93,21 + 14908: 78,9 + 14969: 93,13 + 14973: 93,17 + 14974: 93,20 + 14975: 93,21 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSw decals: - 15860: 76,9 - 15930: 91,21 + 14909: 76,9 + 14979: 91,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineE decals: - 15856: 75,9 - 15857: 79,9 - 15892: 93,14 - 15893: 93,16 - 15894: 93,18 - 15895: 93,19 - 15896: 93,20 - 15897: 93,22 - 15931: 90,21 + 14905: 75,9 + 14906: 79,9 + 14941: 93,14 + 14942: 93,16 + 14943: 93,18 + 14944: 93,19 + 14945: 93,20 + 14946: 93,22 + 14980: 90,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineN decals: - 15845: 83,11 - 15849: 77,10 - 15871: 85,10 - 15872: 84,10 - 15873: 81,10 - 15874: 82,10 - 15875: 83,11 - 15909: 82,14 - 15910: 84,14 - 15911: 83,14 - 15912: 85,14 - 15913: 86,14 - 15914: 87,14 - 15915: 89,14 - 15916: 88,14 - 15917: 90,14 - 15940: 92,15 - 15945: 91,15 - 15946: 93,15 + 14894: 83,11 + 14898: 77,10 + 14920: 85,10 + 14921: 84,10 + 14922: 81,10 + 14923: 82,10 + 14924: 83,11 + 14958: 82,14 + 14959: 84,14 + 14960: 83,14 + 14961: 85,14 + 14962: 86,14 + 14963: 87,14 + 14964: 89,14 + 14965: 88,14 + 14966: 90,14 + 14989: 92,15 + 14994: 91,15 + 14995: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineS decals: - 15846: 83,11 - 15854: 77,8 - 15863: 80,9 - 15864: 81,9 - 15865: 82,9 - 15866: 83,9 - 15867: 84,9 - 15868: 85,9 - 15876: 83,11 - 15879: 82,12 - 15880: 84,12 - 15881: 85,12 - 15882: 86,12 - 15883: 87,12 - 15884: 89,12 - 15885: 88,12 - 15886: 90,12 - 15887: 91,12 - 15888: 92,12 - 15889: 93,12 - 15934: 92,24 - 15939: 92,15 - 15943: 91,15 - 15944: 93,15 + 14895: 83,11 + 14903: 77,8 + 14912: 80,9 + 14913: 81,9 + 14914: 82,9 + 14915: 83,9 + 14916: 84,9 + 14917: 85,9 + 14925: 83,11 + 14928: 82,12 + 14929: 84,12 + 14930: 85,12 + 14931: 86,12 + 14932: 87,12 + 14933: 89,12 + 14934: 88,12 + 14935: 90,12 + 14936: 91,12 + 14937: 92,12 + 14938: 93,12 + 14983: 92,24 + 14988: 92,15 + 14992: 91,15 + 14993: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineW decals: - 15858: 79,9 - 15890: 94,13 - 15900: 91,22 - 15901: 91,20 - 15902: 91,19 - 15903: 91,18 - 15904: 91,17 - 15905: 91,16 - 15907: 81,13 - 15921: 94,13 - 15922: 94,17 - 15928: 94,21 + 14907: 79,9 + 14939: 94,13 + 14949: 91,22 + 14950: 91,20 + 14951: 91,19 + 14952: 91,18 + 14953: 91,17 + 14954: 91,16 + 14956: 81,13 + 14970: 94,13 + 14971: 94,17 + 14977: 94,21 - node: color: '#8CB7E8FF' id: MiniTileDiagonalCheckerBOverlay decals: - 9942: 32,-40 - 9943: 33,-40 - 9944: 34,-40 - 9945: 35,-40 - 9946: 36,-40 + 9780: 32,-40 + 9781: 33,-40 + 9782: 34,-40 + 9783: 35,-40 + 9784: 36,-40 - node: color: '#1D1D214C' id: MiniTileDiagonalOverlay decals: - 1184: 4,-51 - 1185: 5,-51 - 1186: 6,-51 - 1187: 7,-51 - 1188: 8,-51 - 1189: 9,-51 - 1190: 10,-51 + 1066: 4,-51 + 1067: 5,-51 + 1068: 6,-51 + 1069: 7,-51 + 1070: 8,-51 + 1071: 9,-51 + 1072: 10,-51 - node: color: '#9D9D975A' id: MiniTileDiagonalOverlay decals: - 1191: 12,-59 - 1192: 12,-60 - 1193: 12,-61 + 1073: 12,-59 + 1074: 12,-60 + 1075: 12,-61 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 15463: 7,-15 + 14512: 7,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 15464: 9,-15 + 14513: 9,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 15462: 7,-13 + 14511: 7,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 15461: 9,-13 + 14510: 9,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 15475: 9,-14 - 18448: 8,-13 + 14524: 9,-14 + 17497: 8,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 15474: 7,-14 - 18447: 8,-13 + 14523: 7,-14 + 17496: 8,-13 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 922: 30,1 - 923: 28,-2 + 809: 30,1 + 810: 28,-2 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 15470: 8,-16 - 15471: 9,-14 + 14519: 8,-16 + 14520: 9,-14 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 921: 28,1 + 808: 28,1 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 15472: 8,-16 - 15473: 7,-14 + 14521: 8,-16 + 14522: 7,-14 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 924: 28,-2 + 811: 28,-2 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 15467: 7,-16 - 15468: 6,-14 + 14516: 7,-16 + 14517: 6,-14 - node: color: '#DA8B8BFF' id: MiniTileSteelLineN decals: - 15847: 83,11 + 14896: 83,11 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 15465: 8,-17 + 14514: 8,-17 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 18446: 8,-12 + 17495: 8,-12 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 15466: 9,-16 - 15469: 10,-14 + 14515: 9,-16 + 14518: 10,-14 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: - 701: 13,4 + 596: 13,4 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndE decals: - 702: 14,4 + 597: 14,4 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndN decals: - 703: 13,5 + 598: 13,5 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: - 704: 13,4 + 599: 13,4 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 13219: 53,-37 + 12275: 53,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 13218: 53,-37 + 12274: 53,-37 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 843: 83,11 + 730: 83,11 - node: color: '#EFB341FF' id: MiniTileWhiteLineE decals: - 547: 6,86 + 442: 6,86 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 13217: 52,-37 + 12273: 52,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 5684: 13,3 - 13222: 54,-35 - 13223: 55,-35 + 5532: 13,3 + 12278: 54,-35 + 12279: 55,-35 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 844: 83,11 + 731: 83,11 - node: color: '#EFB341FF' id: MiniTileWhiteLineW decals: - 546: 6,86 + 441: 6,86 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 13220: 53,-36 - 13221: 53,-38 + 12276: 53,-36 + 12277: 53,-38 - node: color: '#630000FF' id: Omni decals: - 13531: -32.978848,-78.98036 + 12587: -32.978848,-78.98036 - node: color: '#00000019' id: OriginStationSign4 decals: - 13760: -68,61 - 13761: -68,60 - 13762: -68,59 - 13763: -68,58 - 13764: -67,58 - 13765: -67,57 - 13766: -66,58 - 13767: -66,59 - 13768: -67,59 - 13769: -67,60 - 13770: -66,60 - 13771: -66,61 - 13772: -67,61 - 13773: -65,62 - 13774: -65,61 - 13775: -65,60 - 13778: -65,59 - 13782: -65,58 - 13845: -68,62 - 13846: -67,62 - 13847: -66,62 + 12816: -68,61 + 12817: -68,60 + 12818: -68,59 + 12819: -68,58 + 12820: -67,58 + 12821: -67,57 + 12822: -66,58 + 12823: -66,59 + 12824: -67,59 + 12825: -67,60 + 12826: -66,60 + 12827: -66,61 + 12828: -67,61 + 12829: -65,62 + 12830: -65,61 + 12831: -65,60 + 12834: -65,59 + 12838: -65,58 + 12901: -68,62 + 12902: -67,62 + 12903: -66,62 - node: color: '#00000028' id: OriginStationSign4 decals: - 13877: -72,57 - 13878: -72,58 - 13879: -71,58 - 13880: -71,57 - 13881: -70,57 - 13882: -70,58 - 13883: -72,58 - 13884: -72,57 - 13885: -71,57 - 13886: -71,58 - 13887: -70,58 - 13888: -70,57 - 13889: -72,56 - 13890: -71,56 - 13891: -70,56 - 13892: -72,57 - 13893: -72,58 - 13894: -71,58 - 13895: -71,57 - 13896: -70,57 - 13897: -70,58 - 13898: -72,58 - 13899: -71,58 - 13900: -70,58 - 13901: -71,57 - 13902: -71,58 - 13903: -70,58 - 13904: -72,58 - 13905: -71,56 - 13906: -72,56 - 13907: -71,58 - 13908: -70,58 - 13909: -70,57 + 12933: -72,57 + 12934: -72,58 + 12935: -71,58 + 12936: -71,57 + 12937: -70,57 + 12938: -70,58 + 12939: -72,58 + 12940: -72,57 + 12941: -71,57 + 12942: -71,58 + 12943: -70,58 + 12944: -70,57 + 12945: -72,56 + 12946: -71,56 + 12947: -70,56 + 12948: -72,57 + 12949: -72,58 + 12950: -71,58 + 12951: -71,57 + 12952: -70,57 + 12953: -70,58 + 12954: -72,58 + 12955: -71,58 + 12956: -70,58 + 12957: -71,57 + 12958: -71,58 + 12959: -70,58 + 12960: -72,58 + 12961: -71,56 + 12962: -72,56 + 12963: -71,58 + 12964: -70,58 + 12965: -70,57 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -25471,846 +25460,846 @@ entities: color: '#C3E6A5FF' id: QuarterTileOverlayGreyscale decals: - 113: 39,-69 + 105: 39,-69 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 627: 31,-39 + 522: 31,-39 - node: color: '#A5CDE6FF' id: QuarterTileOverlayGreyscale180 decals: - 100: 38,-43 - 102: 6,-41 + 99: 38,-43 + 101: 6,-41 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 159: -2,52 + 142: -2,52 - node: color: '#A5CDE6FF' id: QuarterTileOverlayGreyscale270 decals: - 101: 34,-43 + 100: 34,-43 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 158: 19,-50 + 141: 19,-50 - node: color: '#DCB9D7FF' id: QuarterTileOverlayGreyscale270 decals: - 125: 16,-46 + 108: 16,-46 - node: color: '#FFFFFFFF' id: Remains decals: - 259: 37,-56 - 13530: -33.82276,-75.75149 - 15951: 99.21471,-3.5288568 - 18655: -42.945545,-64.87067 + 242: 37,-56 + 12586: -33.82276,-75.75149 + 15000: 99.21471,-3.5288568 + 17699: -42.945545,-64.87067 - node: color: '#FFFFFFFF' id: Rock01 decals: - 18595: -4,-5 - 18601: 1,4 + 17644: -4,-5 + 17650: 1,4 - node: color: '#FFFFFFFF' id: Rock02 decals: - 884: -36,48 - 18596: 3,-1 + 771: -36,48 + 17645: 3,-1 - node: color: '#FFFFFFFF' id: Rock03 decals: - 18598: -6,0 - 18602: -4,8 + 17647: -6,0 + 17651: -4,8 - node: color: '#FFFFFFFF' id: Rock04 decals: - 885: -36,50 - 18597: 3,4 - 18603: 2,2 + 772: -36,50 + 17646: 3,4 + 17652: 2,2 - node: color: '#FFFFFFFF' id: Rock05 decals: - 18599: -6,-6 - 18604: -3,-2 + 17648: -6,-6 + 17653: -3,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: - 476: 0,0 - 15738: 82,3 - 18600: 3,-3 + 371: 0,0 + 14787: 82,3 + 17649: 3,-3 - node: color: '#000000FF' id: Rust decals: - 2584: -19,41 - 2585: -19,41 - 2586: -19,41 - 2587: -19,41 - 2588: -19,40 - 2589: -19,40 - 2590: -19,40 - 2591: -18,41 - 2592: -18,41 - 2593: -19,42 - 2594: -19,42 - 2595: -20,41 - 2596: -20,41 - 2597: -20,41 - 2598: -20,41 - 2599: -19,42 - 2600: -18,41 - 2601: -19,40 + 2461: -19,41 + 2462: -19,41 + 2463: -19,41 + 2464: -19,41 + 2465: -19,40 + 2466: -19,40 + 2467: -19,40 + 2468: -18,41 + 2469: -18,41 + 2470: -19,42 + 2471: -19,42 + 2472: -20,41 + 2473: -20,41 + 2474: -20,41 + 2475: -20,41 + 2476: -19,42 + 2477: -18,41 + 2478: -19,40 - node: cleanable: True color: '#FFFFFF5D' id: Rust decals: - 16295: -71,-36 - 16296: -67,-35 - 16297: -63,-35 - 16298: -65,-37 - 16299: -65,-37 + 15344: -71,-36 + 15345: -67,-35 + 15346: -63,-35 + 15347: -65,-37 + 15348: -65,-37 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 551: -94,-8 + 446: -94,-8 - node: color: '#FFFFFFFF' id: StandClear decals: - 549: -93,-9 + 444: -93,-9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 550: -92,-8 - 985: -38,-40 - 1061: -38,-45 + 445: -92,-8 + 868: -38,-40 + 943: -38,-45 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 552: -93,-7 + 447: -93,-7 - node: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale decals: - 1783: -72,-23 + 1665: -72,-23 - node: color: '#B240B4FF' id: ThreeQuarterTileOverlayGreyscale decals: - 668: -25,-59 + 563: -25,-59 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale decals: - 1533: -40,54 + 1415: -40,54 - node: cleanable: True color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 929: 30,0 - 930: 31,-3 + 816: 30,0 + 817: 31,-3 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: 62: 11,33 - 173: 31,56 + 156: 31,56 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1538: -37,52 + 1420: -37,52 - node: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1791: -72,-29 + 1673: -72,-29 - node: color: '#C3E6A5FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 112: 37,-74 + 104: 37,-74 - node: color: '#D5188D99' id: ThreeQuarterTileOverlayGreyscale270 decals: - 502: 9,66 + 397: 9,66 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1535: -40,52 + 1417: -40,52 - node: cleanable: True color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 928: 30,-4 - 931: 31,-1 + 815: 30,-4 + 818: 31,-1 - node: color: '#B240B4FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 672: -21,-59 + 567: -21,-59 - node: cleanable: True color: '#C27D3BFF' id: Tunnel decals: - 986: -38.002388,-36.958828 + 869: -38.002388,-36.958828 - node: color: '#FFFFFFFF' id: WarnBox decals: - 13197: -58,23 - 13198: -58,24 + 12253: -58,23 + 12254: -58,24 - node: color: '#FFFFFFFF' id: WarnCorner decals: - 179: 26,57 + 162: 26,57 - node: color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 177: 25,56 + 160: 25,56 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 1194: 7,-49 + 1076: 7,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 1195: 5,-49 + 1077: 5,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 1198: 7,-50 + 1080: 7,-50 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 1197: 5,-50 + 1079: 5,-50 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 679: -27,-50 - 686: -9,-46 - 691: -27,-54 - 1796: -71,-27 - 1801: -71,-23 - 13206: -52,29 + 574: -27,-50 + 581: -9,-46 + 586: -27,-54 + 1678: -71,-27 + 1683: -71,-23 + 12262: -52,29 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerNE decals: - 830: -48,55 + 717: -48,55 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 680: -31,-50 - 687: -11,-46 - 690: -30,-54 - 1795: -72,-27 - 1800: -72,-23 - 13207: -54,29 + 575: -31,-50 + 582: -11,-46 + 585: -30,-54 + 1677: -72,-27 + 1682: -72,-23 + 12263: -54,29 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerNW decals: - 831: -53,55 - 842: -57,51 + 718: -53,55 + 729: -57,51 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 688: -9,-48 - 693: -27,-55 - 1799: -71,-25 - 13205: -52,27 + 583: -9,-48 + 588: -27,-55 + 1681: -71,-25 + 12261: -52,27 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSE decals: - 809: -48,46 + 696: -48,46 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 685: -11,-48 - 692: -30,-55 - 1794: -72,-29 - 1802: -72,-25 - 13204: -54,27 + 580: -11,-48 + 587: -30,-55 + 1676: -72,-29 + 1684: -72,-25 + 12260: -54,27 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSW decals: - 808: -57,46 + 695: -57,46 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 6202: -14,-19 - 13193: -63,21 - 18104: -52,-5 - 18119: -56,-12 - 18129: -51,-10 - 18217: -74,-4 - 18223: -73,-3 - 18224: -71,-3 - 18225: -69,-3 + 6050: -14,-19 + 12249: -63,21 + 17153: -52,-5 + 17168: -56,-12 + 17178: -51,-10 + 17266: -74,-4 + 17272: -73,-3 + 17273: -71,-3 + 17274: -69,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6203: -10,-19 - 18120: -54,-16 - 18130: -49,-10 - 18218: -66,-4 - 18221: -67,-3 - 18222: -71,-3 + 6051: -10,-19 + 17169: -54,-16 + 17179: -49,-10 + 17267: -66,-4 + 17270: -67,-3 + 17271: -71,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 6207: -14,-17 - 13192: -63,27 - 18105: -52,0 - 18107: -56,-4 - 18128: -51,-6 - 18139: -55,9 - 18216: -74,2 - 18226: -73,1 - 18227: -71,1 - 18228: -69,1 + 6055: -14,-17 + 12248: -63,27 + 17154: -52,0 + 17156: -56,-4 + 17177: -51,-6 + 17188: -55,9 + 17265: -74,2 + 17275: -73,1 + 17276: -71,1 + 17277: -69,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 6208: -10,-17 - 18106: -54,0 - 18127: -49,-6 - 18140: -50,9 - 18219: -66,2 - 18220: -67,1 - 18229: -71,1 - 18230: -69,1 + 6056: -10,-17 + 17155: -54,0 + 17176: -49,-6 + 17189: -50,9 + 17268: -66,2 + 17269: -67,1 + 17278: -71,1 + 17279: -69,1 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 944: 35,37 + 831: 35,37 - node: color: '#DE3A3A96' id: WarnLineE decals: - 752: 59,19 - 753: 59,18 - 754: 59,17 - 755: 59,16 - 756: 59,15 - 757: 60,15 - 758: 60,16 - 759: 60,17 - 760: 60,18 - 761: 60,19 - 762: 61,19 - 763: 61,18 - 764: 61,17 - 765: 61,16 - 766: 61,15 - 767: 62,15 - 768: 62,16 - 769: 62,17 - 770: 62,18 - 771: 62,19 - 772: 63,19 - 773: 63,18 - 774: 63,17 - 775: 63,16 - 776: 63,15 - 777: 64,15 - 778: 64,16 - 779: 64,17 - 780: 64,18 - 781: 64,19 - 782: 65,19 - 783: 65,18 - 784: 65,17 - 785: 65,16 - 786: 65,15 - 787: 66,15 - 788: 66,16 - 789: 66,17 - 790: 66,18 - 791: 66,19 + 647: 59,19 + 648: 59,18 + 649: 59,17 + 650: 59,16 + 651: 59,15 + 652: 60,15 + 653: 60,16 + 654: 60,17 + 655: 60,18 + 656: 60,19 + 657: 61,19 + 658: 61,18 + 659: 61,17 + 660: 61,16 + 661: 61,15 + 662: 62,15 + 663: 62,16 + 664: 62,17 + 665: 62,18 + 666: 62,19 + 667: 63,19 + 668: 63,18 + 669: 63,17 + 670: 63,16 + 671: 63,15 + 672: 64,15 + 673: 64,16 + 674: 64,17 + 675: 64,18 + 676: 64,19 + 677: 65,19 + 678: 65,18 + 679: 65,17 + 680: 65,16 + 681: 65,15 + 682: 66,15 + 683: 66,16 + 684: 66,17 + 685: 66,18 + 686: 66,19 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 684: -27,-51 - 1797: -71,-28 - 6172: -13,-16 - 6173: -13,-15 - 6174: -13,-14 - 6175: -13,-13 - 6185: -15,-16 - 6186: -15,-15 - 6187: -15,-14 - 6188: -15,-13 - 6189: -15,-13 - 6190: -11,-16 - 6191: -11,-15 - 6192: -11,-14 - 6193: -11,-13 - 13187: -63,22 - 13188: -63,23 - 13189: -63,24 - 13190: -63,25 - 13191: -63,26 - 13208: -52,28 - 18078: -52,-1 - 18079: -52,-2 - 18080: -52,-2 - 18081: -52,-4 - 18082: -52,-3 - 18121: -51,-9 - 18122: -51,-8 - 18123: -51,-7 - 18190: -74,-3 - 18191: -74,-2 - 18192: -74,-1 - 18193: -74,0 - 18194: -74,1 - 18207: -73,0 - 18208: -73,-1 - 18209: -73,-2 - 19253: 55,4 - 19254: 55,5 - 19259: 69,0 - 19263: 69,-1 - 19264: 69,1 + 579: -27,-51 + 1679: -71,-28 + 6020: -13,-16 + 6021: -13,-15 + 6022: -13,-14 + 6023: -13,-13 + 6033: -15,-16 + 6034: -15,-15 + 6035: -15,-14 + 6036: -15,-13 + 6037: -15,-13 + 6038: -11,-16 + 6039: -11,-15 + 6040: -11,-14 + 6041: -11,-13 + 12243: -63,22 + 12244: -63,23 + 12245: -63,24 + 12246: -63,25 + 12247: -63,26 + 12264: -52,28 + 17127: -52,-1 + 17128: -52,-2 + 17129: -52,-2 + 17130: -52,-4 + 17131: -52,-3 + 17170: -51,-9 + 17171: -51,-8 + 17172: -51,-7 + 17239: -74,-3 + 17240: -74,-2 + 17241: -74,-1 + 17242: -74,0 + 17243: -74,1 + 17256: -73,0 + 17257: -73,-1 + 17258: -73,-2 + 18297: 55,4 + 18298: 55,5 + 18303: 69,0 + 18307: 69,-1 + 18308: 69,1 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineE decals: - 619: -116,19 - 620: -116,18 - 624: -116,17 - 822: -48,47 - 823: -48,48 - 824: -48,49 - 825: -48,50 - 826: -48,51 - 827: -48,52 - 828: -48,53 - 829: -48,54 + 514: -116,19 + 515: -116,18 + 519: -116,17 + 709: -48,47 + 710: -48,48 + 711: -48,49 + 712: -48,50 + 713: -48,51 + 714: -48,52 + 715: -48,53 + 716: -48,54 - node: color: '#52B4E9FF' id: WarnLineGreyscaleE decals: - 23079: 14,-26 - 23080: 14,-25 - 23760: 0,-44 - 23761: 0,-51 + 22085: 14,-26 + 22086: 14,-25 + 22766: 0,-44 + 22767: 0,-51 - node: color: '#8CB7E8FF' id: WarnLineGreyscaleE decals: - 21239: -18,14 - 21240: -18,15 + 20245: -18,14 + 20246: -18,15 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleE decals: - 21908: 10,30 - 22499: 32,6 - 22500: 32,4 - 23976: 2,-76 - 23977: 2,-75 - 23978: 2,-67 - 23979: 2,-66 - 23980: 1,-60 + 20914: 10,30 + 21505: 32,6 + 21506: 32,4 + 22982: 2,-76 + 22983: 2,-75 + 22984: 2,-67 + 22985: 2,-66 + 22986: 1,-60 - node: color: '#334E6DFF' id: WarnLineGreyscaleN decals: - 22509: 8,-8 - 22510: 10,-8 - 22511: 11,-8 - 22538: -10,-8 + 21515: 8,-8 + 21516: 10,-8 + 21517: 11,-8 + 21544: -10,-8 - node: color: '#3EB388FF' id: WarnLineGreyscaleN decals: - 21615: -54,18 - 21616: -53,18 + 20621: -54,18 + 20622: -53,18 - node: color: '#A46106FF' id: WarnLineGreyscaleN decals: - 21838: 14,24 - 21839: 15,24 - 21840: 16,24 - 21841: 4,24 - 21842: 5,24 - 21843: 7,24 - 21844: 8,24 + 20844: 14,24 + 20845: 15,24 + 20846: 16,24 + 20847: 4,24 + 20848: 5,24 + 20849: 7,24 + 20850: 8,24 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleN decals: - 23155: 12,-34 - 23817: 2,58 + 22161: 12,-34 + 22823: 2,58 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1196: 6,-49 + 1078: 6,-49 - node: color: '#439909FF' id: WarnLineGreyscaleS decals: - 24625: 27,-58 + 23625: 27,-58 - node: color: '#52B4E9FF' id: WarnLineGreyscaleS decals: - 23798: 6,67 + 22804: 6,67 - node: color: '#D381C9FF' id: WarnLineGreyscaleS decals: - 22561: -6,-28 - 22573: -15,-28 - 22574: -13,-28 + 21567: -6,-28 + 21579: -15,-28 + 21580: -13,-28 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleS decals: - 21916: 13,34 - 23060: 13,-28 - 23061: 11,-28 + 20922: 13,34 + 22066: 13,-28 + 22067: 11,-28 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1199: 6,-50 + 1081: 6,-50 - node: color: '#334E6DFF' id: WarnLineGreyscaleW decals: - 22512: 16,-4 + 21518: 16,-4 - node: color: '#3EB388FF' id: WarnLineGreyscaleW decals: - 21806: -43,23 - 21807: -44,18 + 20812: -43,23 + 20813: -44,18 - node: color: '#52B4E9FF' id: WarnLineGreyscaleW decals: - 24002: -3,-60 + 23008: -3,-60 - node: color: '#8CB7E8FF' id: WarnLineGreyscaleW decals: - 21241: 16,14 - 21242: 16,15 + 20247: 16,14 + 20248: 16,15 - node: color: '#9FED58FF' id: WarnLineGreyscaleW decals: - 23832: -23,50 - 23833: -23,51 - 23834: -23,47 - 23835: -23,48 + 22838: -23,50 + 22839: -23,51 + 22840: -23,47 + 22841: -23,48 - node: color: '#D381C9FF' id: WarnLineGreyscaleW decals: - 22547: -2,-48 - 22552: -2,-41 - 22553: -2,-40 - 22560: -3,-35 + 21553: -2,-48 + 21558: -2,-41 + 21559: -2,-40 + 21566: -3,-35 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleW decals: - 21558: -44,9 - 23052: -16,-24 - 23062: 16,-31 + 20564: -44,9 + 22058: -16,-24 + 22068: 16,-31 - node: color: '#EFB341FF' id: WarnLineGreyscaleW decals: - 21549: -45,12 - 21550: -45,14 + 20555: -45,12 + 20556: -45,14 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 652: 65,12 - 653: 64,12 - 694: -29,-55 - 695: -28,-55 - 743: 66,12 - 5167: 33,37 - 6204: -13,-17 - 6205: -12,-17 - 6206: -11,-17 - 13194: -62,27 - 13195: -61,27 - 13196: -60,27 - 13203: -59,27 - 13209: -53,27 - 18069: -59,0 - 18070: -58,0 - 18071: -57,0 - 18072: -57,0 - 18073: -55,0 - 18074: -56,0 - 18075: -51,0 - 18076: -50,0 - 18077: -49,0 - 18108: -55,-4 - 18131: -54,9 - 18132: -53,9 - 18133: -52,9 - 18134: -51,9 - 18183: -73,2 - 18184: -72,2 - 18185: -71,2 - 18186: -70,2 - 18187: -69,2 - 18188: -68,2 - 18189: -67,2 - 18213: -72,1 - 18214: -70,1 - 18215: -68,1 - 21370: -71,1 - 21371: -69,1 + 547: 65,12 + 548: 64,12 + 589: -29,-55 + 590: -28,-55 + 638: 66,12 + 5017: 33,37 + 6052: -13,-17 + 6053: -12,-17 + 6054: -11,-17 + 12250: -62,27 + 12251: -61,27 + 12252: -60,27 + 12259: -59,27 + 12265: -53,27 + 17118: -59,0 + 17119: -58,0 + 17120: -57,0 + 17121: -57,0 + 17122: -55,0 + 17123: -56,0 + 17124: -51,0 + 17125: -50,0 + 17126: -49,0 + 17157: -55,-4 + 17180: -54,9 + 17181: -53,9 + 17182: -52,9 + 17183: -51,9 + 17232: -73,2 + 17233: -72,2 + 17234: -71,2 + 17235: -70,2 + 17236: -69,2 + 17237: -68,2 + 17238: -67,2 + 17262: -72,1 + 17263: -70,1 + 17264: -68,1 + 20376: -71,1 + 20377: -69,1 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineN decals: - 814: -56,46 - 815: -55,46 - 816: -54,46 - 817: -53,46 - 818: -52,46 - 819: -50,46 - 820: -49,46 - 821: -51,46 - 942: 34,37 - 943: 33,37 + 701: -56,46 + 702: -55,46 + 703: -54,46 + 704: -53,46 + 705: -52,46 + 706: -50,46 + 707: -49,46 + 708: -51,46 + 829: 34,37 + 830: 33,37 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 678: -31,-51 - 1798: -72,-28 - 1803: -72,-24 - 6176: -11,-16 - 6177: -11,-15 - 6178: -11,-14 - 6179: -11,-14 - 6180: -11,-13 - 6181: -13,-16 - 6182: -13,-15 - 6183: -13,-14 - 6184: -13,-13 - 6194: -9,-16 - 6195: -9,-15 - 6196: -9,-14 - 6197: -9,-14 - 6198: -9,-13 - 6212: -15,-16 - 6213: -15,-15 - 6214: -15,-14 - 6215: -15,-13 - 13210: -54,28 - 18065: -54,-4 - 18066: -54,-3 - 18067: -54,-2 - 18068: -54,-1 - 18103: -54,-4 - 18114: -54,-15 - 18115: -54,-14 - 18116: -54,-13 - 18117: -54,-12 - 18124: -49,-9 - 18125: -49,-8 - 18126: -49,-7 - 18195: -66,1 - 18196: -66,0 - 18197: -66,-1 - 18198: -66,-2 - 18199: -66,-3 - 18200: -67,0 - 18201: -67,-1 - 18202: -67,-2 - 18203: -67,-2 - 18204: -67,-1 - 18205: -67,0 - 18206: -67,-1 + 573: -31,-51 + 1680: -72,-28 + 1685: -72,-24 + 6024: -11,-16 + 6025: -11,-15 + 6026: -11,-14 + 6027: -11,-14 + 6028: -11,-13 + 6029: -13,-16 + 6030: -13,-15 + 6031: -13,-14 + 6032: -13,-13 + 6042: -9,-16 + 6043: -9,-15 + 6044: -9,-14 + 6045: -9,-14 + 6046: -9,-13 + 6060: -15,-16 + 6061: -15,-15 + 6062: -15,-14 + 6063: -15,-13 + 12266: -54,28 + 17114: -54,-4 + 17115: -54,-3 + 17116: -54,-2 + 17117: -54,-1 + 17152: -54,-4 + 17163: -54,-15 + 17164: -54,-14 + 17165: -54,-13 + 17166: -54,-12 + 17173: -49,-9 + 17174: -49,-8 + 17175: -49,-7 + 17244: -66,1 + 17245: -66,0 + 17246: -66,-1 + 17247: -66,-2 + 17248: -66,-3 + 17249: -67,0 + 17250: -67,-1 + 17251: -67,-2 + 17252: -67,-2 + 17253: -67,-1 + 17254: -67,0 + 17255: -67,-1 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineS decals: - 810: -57,47 - 811: -57,48 - 812: -57,49 - 813: -57,50 - 836: -53,54 - 837: -53,53 - 838: -53,52 - 939: 35,34 - 940: 35,35 - 941: 35,36 + 697: -57,47 + 698: -57,48 + 699: -57,49 + 700: -57,50 + 723: -53,54 + 724: -53,53 + 725: -53,52 + 826: 35,34 + 827: 35,35 + 828: 35,36 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 650: 65,12 - 651: 64,12 - 654: 63,12 - 655: 62,12 - 673: -27,-52 - 674: -28,-52 - 675: -29,-52 - 676: -30,-52 - 677: -31,-52 - 681: -28,-50 - 682: -29,-50 - 683: -30,-50 - 689: -10,-49 - 696: -28,-54 - 697: -29,-54 - 742: 66,12 - 750: 78,22 - 751: 77,22 - 6199: -13,-19 - 6200: -12,-19 - 6201: -11,-19 - 13211: -53,29 - 18109: -59,-16 - 18110: -58,-16 - 18111: -57,-16 - 18112: -56,-16 - 18113: -55,-16 - 18118: -55,-12 - 18135: -55,17 - 18136: -54,17 - 18137: -53,17 - 18138: -52,17 - 18152: -55,17 - 18153: -52,17 - 18176: -73,-4 - 18177: -72,-4 - 18178: -71,-4 - 18179: -70,-4 - 18180: -69,-4 - 18181: -68,-4 - 18182: -67,-4 - 18210: -72,-3 - 18211: -70,-3 - 18212: -68,-3 - 21193: 58,1 - 21194: 62,1 - 21195: 66,1 - 21368: -71,-3 - 21369: -69,-3 + 545: 65,12 + 546: 64,12 + 549: 63,12 + 550: 62,12 + 568: -27,-52 + 569: -28,-52 + 570: -29,-52 + 571: -30,-52 + 572: -31,-52 + 576: -28,-50 + 577: -29,-50 + 578: -30,-50 + 584: -10,-49 + 591: -28,-54 + 592: -29,-54 + 637: 66,12 + 645: 78,22 + 646: 77,22 + 6047: -13,-19 + 6048: -12,-19 + 6049: -11,-19 + 12267: -53,29 + 17158: -59,-16 + 17159: -58,-16 + 17160: -57,-16 + 17161: -56,-16 + 17162: -55,-16 + 17167: -55,-12 + 17184: -55,17 + 17185: -54,17 + 17186: -53,17 + 17187: -52,17 + 17201: -55,17 + 17202: -52,17 + 17225: -73,-4 + 17226: -72,-4 + 17227: -71,-4 + 17228: -70,-4 + 17229: -69,-4 + 17230: -68,-4 + 17231: -67,-4 + 17259: -72,-3 + 17260: -70,-3 + 17261: -68,-3 + 20199: 58,1 + 20200: 62,1 + 20201: 66,1 + 20374: -71,-3 + 20375: -69,-3 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineW decals: - 832: -52,55 - 833: -51,55 - 834: -50,55 - 835: -49,55 - 839: -54,51 - 840: -55,51 - 841: -56,51 + 719: -52,55 + 720: -51,55 + 721: -50,55 + 722: -49,55 + 726: -54,51 + 727: -55,51 + 728: -56,51 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: WarningLine decals: - 195: 26,60 - 196: 26,59 - 197: 26,58 - 198: 30,57 - 199: 30,58 + 178: 26,60 + 179: 26,59 + 180: 26,58 + 181: 30,57 + 182: 30,58 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: - 184: 26,61 - 185: 27,61 - 186: 28,61 - 187: 29,61 - 188: 30,61 - 189: 31,61 - 200: 27,58 - 201: 28,58 - 202: 29,58 - 203: 30,58 + 167: 26,61 + 168: 27,61 + 169: 28,61 + 170: 29,61 + 171: 30,61 + 172: 31,61 + 183: 27,58 + 184: 28,58 + 185: 29,58 + 186: 30,58 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 180: 26,58 - 181: 26,59 - 182: 26,60 - 183: 26,61 + 163: 26,58 + 164: 26,59 + 165: 26,60 + 166: 26,61 - node: color: '#FFFFFFFF' id: WarningLine decals: - 178: 24,56 - 190: 31,61 - 191: 30,61 - 192: 29,61 - 193: 28,61 - 194: 27,61 + 161: 24,56 + 173: 31,61 + 174: 30,61 + 175: 29,61 + 176: 28,61 + 177: 27,61 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -26328,2188 +26317,2188 @@ entities: color: '#151C2553' id: WoodTrimThinCornerNe decals: - 228: 24,2 + 211: 24,2 - node: color: '#DABC8BFF' id: WoodTrimThinCornerNe decals: - 2572: -10,46 - 2627: -2,42 - 2721: -3,54 - 3974: -34,63 - 4126: -26,23 - 5676: 14,11 - 5685: 14,2 - 5725: 11,7 - 5740: 11,3 - 5826: -15,-4 - 5840: -9,-3 - 5870: -9,5 - 5880: -9,0 - 5910: -8,11 - 5935: 1,14 - 6456: -22,-4 - 6477: -34,2 - 6512: -26,2 - 6527: -22,-11 - 6582: -22,-5 - 6583: -22,-5 - 6756: -31,-12 - 7241: 37,2 - 7271: 36,1 - 7330: 33,11 - 7722: 43,22 - 7723: 43,23 - 7730: 36,22 - 7752: 36,21 - 8522: 53,-23 - 8536: 49,-23 - 8549: 45,-23 - 10192: 37,-29 - 10193: 38,-28 - 10234: 24,-51 - 10426: 18,-49 - 10636: 74,-37 - 10647: 42,-50 - 10661: 51,-54 - 10729: 45,-51 - 11097: -49,-43 - 11129: -46,-43 - 11144: -46,-47 - 12265: -17,-46 - 12401: -15,-74 - 12443: -13,-79 - 12450: -21,-80 - 13293: -38,-66 - 13307: -36,-65 - 13332: -30,-65 - 13504: -31,-77 - 13851: -65,62 - 15391: -6,-77 - 15403: -1,-77 - 15632: 97,5 - 15662: 96,3 - 15748: 89,7 - 15825: 98,13 - 15832: 98,14 - 18046: -63,18 - 18064: -57,7 - 18334: -58,-44 - 18484: 1,-11 - 18485: 2,-12 - 18755: -112,33 - 19438: -14,29 - 19450: 53,27 - 19453: 56,27 - 19571: 57,30 - 19583: 55,31 - 19775: -24,13 - 19789: -25,12 + 2449: -10,46 + 2504: -2,42 + 2598: -3,54 + 3841: -34,63 + 3976: -26,23 + 5524: 14,11 + 5533: 14,2 + 5573: 11,7 + 5588: 11,3 + 5674: -15,-4 + 5688: -9,-3 + 5718: -9,5 + 5728: -9,0 + 5758: -8,11 + 5783: 1,14 + 6304: -22,-4 + 6325: -34,2 + 6360: -26,2 + 6375: -22,-11 + 6430: -22,-5 + 6431: -22,-5 + 6604: -31,-12 + 7089: 37,2 + 7119: 36,1 + 7178: 33,11 + 7570: 43,22 + 7571: 43,23 + 7578: 36,22 + 7600: 36,21 + 8364: 53,-23 + 8378: 49,-23 + 8391: 45,-23 + 10030: 37,-29 + 10031: 38,-28 + 10072: 24,-51 + 10264: 18,-49 + 10474: 74,-37 + 10485: 42,-50 + 10499: 51,-54 + 10567: 45,-51 + 10594: -49,-43 + 10626: -46,-43 + 10641: -46,-47 + 11603: -17,-46 + 11739: -15,-74 + 11781: -13,-79 + 11788: -21,-80 + 12349: -38,-66 + 12363: -36,-65 + 12388: -30,-65 + 12560: -31,-77 + 12907: -65,62 + 14440: -6,-77 + 14452: -1,-77 + 14681: 97,5 + 14711: 96,3 + 14797: 89,7 + 14874: 98,13 + 14881: 98,14 + 17095: -63,18 + 17113: -57,7 + 17383: -58,-44 + 17533: 1,-11 + 17534: 2,-12 + 17799: -112,33 + 18482: -14,29 + 18494: 53,27 + 18497: 56,27 + 18615: 57,30 + 18627: 55,31 + 18781: -24,13 + 18795: -25,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1682: -49,-43 + 1564: -49,-43 - node: color: '#DABC8BFF' id: WoodTrimThinCornerNw decals: - 2628: -4,42 - 3973: -39,63 - 4125: -27,23 - 4130: -29,21 - 5654: 6,11 - 5689: 12,2 - 5724: 7,7 - 5739: 7,3 - 5825: -16,-4 - 5843: -13,-3 - 5858: -14,5 - 5903: -16,11 - 5934: -3,14 - 6439: -30,2 - 6440: -35,2 - 6441: -31,-4 - 6494: -35,2 - 6510: -35,2 - 6511: -30,2 - 6526: -26,-11 - 6580: -26,-5 - 6581: -26,-5 - 6596: -26,-5 - 6755: -34,-12 - 7240: 33,2 - 7270: 34,1 - 7323: 29,11 - 7724: 39,23 - 7725: 39,22 - 7726: 38,22 - 7727: 34,22 - 7753: 34,21 - 8521: 51,-23 - 8542: 47,-23 - 8548: 43,-23 - 10190: 34,-28 - 10191: 35,-29 - 10425: 14,-49 - 10635: 72,-37 - 10660: 49,-54 - 10728: 44,-51 - 11096: -56,-43 - 12399: -16,-79 - 12400: -19,-74 - 12449: -23,-80 - 12578: -4,40 - 12623: -41,29 - 12633: -39,26 - 13301: -41,-66 - 13331: -34,-65 - 13505: -35,-77 - 13848: -68,62 - 15389: -8,-77 - 15390: -3,-77 - 15622: 91,5 - 15659: 93,3 - 15740: 81,7 - 15829: 95,14 - 16084: -72,-40 - 16385: -41,-9 - 18043: -66,18 - 18063: -58,7 - 18479: -3,-11 - 18486: -4,-12 - 18754: -115,33 - 19451: 52,27 - 19452: 55,27 - 19567: 51,30 - 19582: 53,31 - 19776: -27,13 - 19788: -26,12 + 2505: -4,42 + 3840: -39,63 + 3975: -27,23 + 3980: -29,21 + 5502: 6,11 + 5537: 12,2 + 5572: 7,7 + 5587: 7,3 + 5673: -16,-4 + 5691: -13,-3 + 5706: -14,5 + 5751: -16,11 + 5782: -3,14 + 6287: -30,2 + 6288: -35,2 + 6289: -31,-4 + 6342: -35,2 + 6358: -35,2 + 6359: -30,2 + 6374: -26,-11 + 6428: -26,-5 + 6429: -26,-5 + 6444: -26,-5 + 6603: -34,-12 + 7088: 33,2 + 7118: 34,1 + 7171: 29,11 + 7572: 39,23 + 7573: 39,22 + 7574: 38,22 + 7575: 34,22 + 7601: 34,21 + 8363: 51,-23 + 8384: 47,-23 + 8390: 43,-23 + 10028: 34,-28 + 10029: 35,-29 + 10263: 14,-49 + 10473: 72,-37 + 10498: 49,-54 + 10566: 44,-51 + 10593: -56,-43 + 11737: -16,-79 + 11738: -19,-74 + 11787: -23,-80 + 11896: -4,40 + 11941: -41,29 + 11951: -39,26 + 12357: -41,-66 + 12387: -34,-65 + 12561: -35,-77 + 12904: -68,62 + 14438: -8,-77 + 14439: -3,-77 + 14671: 91,5 + 14708: 93,3 + 14789: 81,7 + 14878: 95,14 + 15133: -72,-40 + 15434: -41,-9 + 17092: -66,18 + 17112: -58,7 + 17528: -3,-11 + 17535: -4,-12 + 17798: -115,33 + 18495: 52,27 + 18496: 55,27 + 18611: 51,30 + 18626: 53,31 + 18782: -27,13 + 18794: -26,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 1579: -41,29 - 1677: -56,-43 + 1461: -41,29 + 1559: -56,-43 - node: cleanable: True color: '#5F697828' id: WoodTrimThinCornerSe decals: - 213: 12,-53 + 196: 12,-53 - node: color: '#DABC8BFF' id: WoodTrimThinCornerSe decals: - 2573: -10,36 - 2722: -3,53 - 3978: -34,59 - 4122: -22,19 - 5657: 14,7 - 5693: 14,0 - 5730: 11,5 - 5742: 11,0 - 5829: -15,-6 - 5837: -9,-6 - 5871: -9,3 - 5872: -9,-1 - 5875: -11,-2 - 5900: -9,7 - 5901: -8,8 - 5939: 1,12 - 6466: -27,-9 - 6493: -34,-9 - 6513: -26,0 - 6529: -22,-13 - 6579: -22,-9 - 6757: -31,-15 - 7242: 37,-2 - 7276: 36,-1 - 7329: 33,8 - 7732: 43,18 - 7740: 36,18 - 7741: 36,19 - 7742: 36,19 - 7746: 43,17 - 8523: 53,-26 - 8538: 49,-26 - 8558: 45,-26 - 10194: 38,-32 - 10195: 37,-31 - 10235: 24,-53 - 10428: 18,-53 - 10638: 74,-40 - 10649: 42,-56 - 10662: 51,-56 - 10663: 51,-56 - 10671: 52,-56 - 10731: 45,-55 - 11098: -49,-47 - 11138: -46,-45 - 11145: -46,-49 - 12277: -17,-48 - 12402: -15,-76 - 12447: -13,-82 - 12448: -21,-82 - 12579: -2,36 - 12641: -38,25 - 13295: -38,-68 - 13317: -36,-68 - 13336: -30,-68 - 13514: -31,-80 - 13855: -65,58 - 15393: -6,-79 - 15399: -1,-79 - 15630: 94,-2 - 15631: 95,-1 - 15639: 97,0 - 15663: 96,1 - 15749: 89,4 - 15824: 98,12 - 15837: 96,12 - 15844: 98,12 - 18050: -63,16 - 18060: -57,5 - 18756: -112,31 - 19439: -14,31 - 19459: 53,22 - 19462: 56,22 - 19565: 52,29 - 19566: 57,29 - 19568: 57,29 - 19786: -24,10 - 19787: -25,11 + 2450: -10,36 + 2599: -3,53 + 3845: -34,59 + 3972: -22,19 + 5505: 14,7 + 5541: 14,0 + 5578: 11,5 + 5590: 11,0 + 5677: -15,-6 + 5685: -9,-6 + 5719: -9,3 + 5720: -9,-1 + 5723: -11,-2 + 5748: -9,7 + 5749: -8,8 + 5787: 1,12 + 6314: -27,-9 + 6341: -34,-9 + 6361: -26,0 + 6377: -22,-13 + 6427: -22,-9 + 6605: -31,-15 + 7090: 37,-2 + 7124: 36,-1 + 7177: 33,8 + 7580: 43,18 + 7588: 36,18 + 7589: 36,19 + 7590: 36,19 + 7594: 43,17 + 8365: 53,-26 + 8380: 49,-26 + 8400: 45,-26 + 10032: 38,-32 + 10033: 37,-31 + 10073: 24,-53 + 10266: 18,-53 + 10476: 74,-40 + 10487: 42,-56 + 10500: 51,-56 + 10501: 51,-56 + 10509: 52,-56 + 10569: 45,-55 + 10595: -49,-47 + 10635: -46,-45 + 10642: -46,-49 + 11615: -17,-48 + 11740: -15,-76 + 11785: -13,-82 + 11786: -21,-82 + 11897: -2,36 + 11959: -38,25 + 12351: -38,-68 + 12373: -36,-68 + 12392: -30,-68 + 12570: -31,-80 + 12911: -65,58 + 14442: -6,-79 + 14448: -1,-79 + 14679: 94,-2 + 14680: 95,-1 + 14688: 97,0 + 14712: 96,1 + 14798: 89,4 + 14873: 98,12 + 14886: 96,12 + 14893: 98,12 + 17099: -63,16 + 17109: -57,5 + 17800: -112,31 + 18483: -14,31 + 18503: 53,22 + 18506: 56,22 + 18609: 52,29 + 18610: 57,29 + 18612: 57,29 + 18792: -24,10 + 18793: -25,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 1686: -49,-47 + 1568: -49,-47 - node: cleanable: True color: '#5F697828' id: WoodTrimThinCornerSw decals: - 209: 2,-53 + 192: 2,-53 - node: color: '#DABC8BFF' id: WoodTrimThinCornerSw decals: - 2723: -4,53 - 4132: -29,19 - 5656: 6,8 - 5658: 13,7 - 5691: 12,0 - 5727: 7,5 - 5735: 7,0 - 5828: -16,-6 - 5836: -13,-6 - 5859: -14,-1 - 5874: -13,-2 - 5902: -16,7 - 5938: -3,12 - 6465: -31,-9 - 6495: -35,-9 - 6514: -30,0 - 6528: -26,-13 - 6577: -26,-9 - 6578: -26,-9 - 6758: -34,-15 - 7243: 33,-2 - 7275: 34,-1 - 7733: 39,18 - 7738: 34,18 - 7739: 34,19 - 7747: 39,17 - 7748: 38,18 - 8524: 51,-26 - 8537: 47,-26 - 8546: 47,-26 - 8547: 43,-26 - 10196: 34,-32 - 10197: 35,-31 - 10427: 14,-53 - 10637: 72,-40 - 10664: 49,-56 - 10730: 44,-55 - 11108: -56,-47 - 11109: -56,-47 - 11146: -54,-49 - 12403: -19,-76 - 12446: -16,-82 - 12451: -23,-82 - 12580: -4,36 - 12632: -39,25 - 13298: -41,-68 - 13337: -34,-68 - 13503: -32,-80 - 13512: -35,-80 - 13856: -68,58 - 15394: -8,-79 - 15398: -3,-79 - 15629: 91,-2 - 15664: 93,1 - 15750: 81,4 - 15826: 97,12 - 15836: 95,12 - 16390: -41,-11 - 18049: -66,16 - 18061: -58,5 - 18338: -60,-46 - 18757: -115,31 - 19460: 55,22 - 19461: 52,22 - 19569: 51,29 - 19570: 56,29 - 19783: -27,10 - 19790: -26,11 + 2600: -4,53 + 3982: -29,19 + 5504: 6,8 + 5506: 13,7 + 5539: 12,0 + 5575: 7,5 + 5583: 7,0 + 5676: -16,-6 + 5684: -13,-6 + 5707: -14,-1 + 5722: -13,-2 + 5750: -16,7 + 5786: -3,12 + 6313: -31,-9 + 6343: -35,-9 + 6362: -30,0 + 6376: -26,-13 + 6425: -26,-9 + 6426: -26,-9 + 6606: -34,-15 + 7091: 33,-2 + 7123: 34,-1 + 7581: 39,18 + 7586: 34,18 + 7587: 34,19 + 7595: 39,17 + 7596: 38,18 + 8366: 51,-26 + 8379: 47,-26 + 8388: 47,-26 + 8389: 43,-26 + 10034: 34,-32 + 10035: 35,-31 + 10265: 14,-53 + 10475: 72,-40 + 10502: 49,-56 + 10568: 44,-55 + 10605: -56,-47 + 10606: -56,-47 + 10643: -54,-49 + 11741: -19,-76 + 11784: -16,-82 + 11789: -23,-82 + 11898: -4,36 + 11950: -39,25 + 12354: -41,-68 + 12393: -34,-68 + 12559: -32,-80 + 12568: -35,-80 + 12912: -68,58 + 14443: -8,-79 + 14447: -3,-79 + 14678: 91,-2 + 14713: 93,1 + 14799: 81,4 + 14875: 97,12 + 14885: 95,12 + 15439: -41,-11 + 17098: -66,16 + 17110: -58,5 + 17387: -60,-46 + 17801: -115,31 + 18504: 55,22 + 18505: 52,22 + 18613: 51,29 + 18614: 56,29 + 18789: -27,10 + 18796: -26,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 1693: -56,-47 + 1575: -56,-47 - node: color: '#DABC8BFF' id: WoodTrimThinEndE decals: - 15842: 98,14 + 14891: 98,14 - node: color: '#DABC8BFF' id: WoodTrimThinEndN decals: - 10228: 20,-51 - 12267: -21,-46 - 12629: -38,29 + 10066: 20,-51 + 11605: -21,-46 + 11947: -38,29 - node: color: '#DABC8BFF' id: WoodTrimThinEndS decals: - 10229: 20,-53 - 12266: -21,-48 - 13863: -67,57 + 10067: 20,-53 + 11604: -21,-48 + 12919: -67,57 - node: color: '#DABC8BFF' id: WoodTrimThinEndW decals: - 19396: -12,30 + 18440: -12,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNe decals: - 1986: -12,29 - 1994: -12,33 - 1996: -9,33 - 2479: -11,44 - 2480: -11,42 - 2481: -11,40 - 2482: -11,36 - 2503: -13,40 - 2506: -12,41 - 2577: -10,45 - 2578: -10,43 - 2606: -11,38 - 4145: -24,20 - 4146: -26,20 - 5670: 8,11 - 5688: 13,2 - 5752: 11,1 - 5756: 8,3 - 5831: -15,-5 - 5857: -10,-3 - 5883: -10,0 - 5887: -11,5 - 5914: -10,11 - 6471: -29,-4 - 6472: -24,-4 - 6538: -24,-11 - 6622: -24,-7 - 7250: 35,2 - 7758: 43,20 - 7762: 36,20 - 8530: 52,-23 - 8534: 48,-23 - 8535: 48,-23 - 8552: 44,-23 - 10216: 37,-28 - 10236: 22,-51 - 10237: 22,-51 - 10443: 17,-49 - 10678: 50,-50 - 11139: -47,-43 - 11142: -47,-47 - 12272: -19,-46 - 12280: -19,-46 - 12431: -17,-74 - 12585: -3,40 - 12636: -38,27 - 13309: -36,-66 - 13310: -37,-65 - 13314: -41,-65 - 13516: -31,-79 - 15669: 95,3 - 16095: -62,-43 - 16099: -68,-46 - 18488: 1,-12 - 19389: -9,27 - 19390: -9,30 - 19586: 55,30 - 19834: 96,2 + 1868: -12,29 + 1876: -12,33 + 1878: -9,33 + 2356: -11,44 + 2357: -11,42 + 2358: -11,40 + 2359: -11,36 + 2380: -13,40 + 2383: -12,41 + 2454: -10,45 + 2455: -10,43 + 2483: -11,38 + 3995: -24,20 + 3996: -26,20 + 5518: 8,11 + 5536: 13,2 + 5600: 11,1 + 5604: 8,3 + 5679: -15,-5 + 5705: -10,-3 + 5731: -10,0 + 5735: -11,5 + 5762: -10,11 + 6319: -29,-4 + 6320: -24,-4 + 6386: -24,-11 + 6470: -24,-7 + 7098: 35,2 + 7606: 43,20 + 7610: 36,20 + 8372: 52,-23 + 8376: 48,-23 + 8377: 48,-23 + 8394: 44,-23 + 10054: 37,-28 + 10074: 22,-51 + 10075: 22,-51 + 10281: 17,-49 + 10516: 50,-50 + 10636: -47,-43 + 10639: -47,-47 + 11610: -19,-46 + 11618: -19,-46 + 11769: -17,-74 + 11903: -3,40 + 11954: -38,27 + 12365: -36,-66 + 12366: -37,-65 + 12370: -41,-65 + 12572: -31,-79 + 14718: 95,3 + 15144: -62,-43 + 15148: -68,-46 + 17537: 1,-12 + 18433: -9,27 + 18434: -9,30 + 18630: 55,30 + 18840: 96,2 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNw decals: - 1985: -13,33 - 1995: -10,33 - 2007: -10,29 - 2483: -13,36 - 2484: -13,38 - 2485: -13,40 - 2486: -13,42 - 2487: -13,44 - 2488: -13,44 - 2507: -12,41 - 2508: -11,40 - 2509: -11,40 - 4128: -27,21 - 4147: -24,20 - 5669: 8,11 - 5687: 13,2 - 5755: 8,3 - 5835: -13,-5 - 5856: -10,-3 - 5865: -14,4 - 5886: -11,5 - 5913: -10,11 - 6470: -29,-4 - 6473: -24,-4 - 6523: -30,1 - 6537: -24,-11 - 6594: -26,-6 - 6595: -26,-6 - 6624: -24,-7 - 7251: 35,2 - 7254: 33,1 - 7756: 38,20 - 8531: 52,-23 - 8543: 48,-23 - 8551: 44,-23 - 10217: 37,-28 - 10238: 22,-51 - 10444: 17,-49 - 10658: 39,-53 - 10679: 50,-50 - 11141: -47,-47 - 12273: -19,-46 - 12279: -19,-46 - 12432: -17,-74 - 12582: -4,37 - 12584: -3,40 - 12626: -41,28 - 12627: -41,28 - 12640: -38,26 - 13311: -37,-65 - 13344: -34,-66 - 13511: -35,-79 - 15671: 94,3 - 15672: 93,2 - 15833: 95,13 - 18487: -3,-12 - 19443: -14,30 - 19585: 53,30 + 1867: -13,33 + 1877: -10,33 + 1889: -10,29 + 2360: -13,36 + 2361: -13,38 + 2362: -13,40 + 2363: -13,42 + 2364: -13,44 + 2365: -13,44 + 2384: -12,41 + 2385: -11,40 + 2386: -11,40 + 3978: -27,21 + 3997: -24,20 + 5517: 8,11 + 5535: 13,2 + 5603: 8,3 + 5683: -13,-5 + 5704: -10,-3 + 5713: -14,4 + 5734: -11,5 + 5761: -10,11 + 6318: -29,-4 + 6321: -24,-4 + 6371: -30,1 + 6385: -24,-11 + 6442: -26,-6 + 6443: -26,-6 + 6472: -24,-7 + 7099: 35,2 + 7102: 33,1 + 7604: 38,20 + 8373: 52,-23 + 8385: 48,-23 + 8393: 44,-23 + 10055: 37,-28 + 10076: 22,-51 + 10282: 17,-49 + 10496: 39,-53 + 10517: 50,-50 + 10638: -47,-47 + 11611: -19,-46 + 11617: -19,-46 + 11770: -17,-74 + 11900: -4,37 + 11902: -3,40 + 11944: -41,28 + 11945: -41,28 + 11958: -38,26 + 12367: -37,-65 + 12400: -34,-66 + 12567: -35,-79 + 14720: 94,3 + 14721: 93,2 + 14882: 95,13 + 17536: -3,-12 + 18487: -14,30 + 18629: 53,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSe decals: - 1987: -12,31 - 1999: -9,33 - 2495: -11,40 - 2496: -11,42 - 2497: -11,44 - 2498: -11,46 - 2502: -12,41 - 2504: -13,42 - 2574: -10,39 - 2575: -10,39 - 2576: -10,45 - 2607: -11,38 - 4139: -25,19 - 5681: 8,8 - 5682: 10,8 - 5748: 8,5 - 5751: 11,1 - 5762: 10,0 - 5830: -15,-5 - 5849: -10,-6 - 5877: -12,-2 - 5878: -10,-1 - 5884: -10,3 - 5892: -11,-1 - 5921: -11,7 - 6237: -4,-12 - 6475: -24,-4 - 6598: -24,-9 - 6600: -27,-4 - 6601: -27,-6 - 6602: -27,-6 - 6625: -24,-7 - 7257: 36,-2 - 7337: 29,8 - 7757: 43,20 - 7761: 36,20 - 10215: 36,-32 - 10446: 17,-53 - 10447: 7,-57 - 10646: 73,-40 - 11140: -47,-45 - 12440: -17,-67 - 12591: -2,40 - 12635: -38,27 - 13308: -36,-66 - 13513: -34,-79 - 13517: -31,-79 - 13861: -67,58 - 15637: 94,-1 - 15638: 95,0 - 15670: 95,1 - 15677: 96,2 - 15839: 96,14 - 15841: 97,14 - 16096: -62,-43 - 16100: -68,-44 - 19388: -9,27 - 19391: -9,30 - 19581: 52,30 + 1869: -12,31 + 1881: -9,33 + 2372: -11,40 + 2373: -11,42 + 2374: -11,44 + 2375: -11,46 + 2379: -12,41 + 2381: -13,42 + 2451: -10,39 + 2452: -10,39 + 2453: -10,45 + 2484: -11,38 + 3989: -25,19 + 5529: 8,8 + 5530: 10,8 + 5596: 8,5 + 5599: 11,1 + 5610: 10,0 + 5678: -15,-5 + 5697: -10,-6 + 5725: -12,-2 + 5726: -10,-1 + 5732: -10,3 + 5740: -11,-1 + 5769: -11,7 + 6085: -4,-12 + 6323: -24,-4 + 6446: -24,-9 + 6448: -27,-4 + 6449: -27,-6 + 6450: -27,-6 + 6473: -24,-7 + 7105: 36,-2 + 7185: 29,8 + 7605: 43,20 + 7609: 36,20 + 10053: 36,-32 + 10284: 17,-53 + 10285: 7,-57 + 10484: 73,-40 + 10637: -47,-45 + 11778: -17,-67 + 11909: -2,40 + 11953: -38,27 + 12364: -36,-66 + 12569: -34,-79 + 12573: -31,-79 + 12917: -67,58 + 14686: 94,-1 + 14687: 95,0 + 14719: 95,1 + 14726: 96,2 + 14888: 96,14 + 14890: 97,14 + 15145: -62,-43 + 15149: -68,-44 + 18432: -9,27 + 18435: -9,30 + 18625: 52,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerSw decals: - 2003: -10,27 - 2008: -10,31 - 2489: -13,46 - 2490: -13,44 - 2491: -13,44 - 2492: -13,42 - 2493: -13,40 - 2494: -13,38 - 2501: -12,41 - 2505: -11,42 - 4138: -25,19 - 5679: 8,8 - 5680: 10,8 - 5747: 8,5 - 5761: 10,0 - 5834: -13,-5 - 5848: -10,-6 - 5866: -14,4 - 5873: -13,-1 - 5876: -12,-2 - 5891: -10,-1 - 5920: -11,7 - 6238: 2,-12 - 6474: -24,-4 - 6522: -30,1 - 6593: -26,-6 - 6597: -24,-9 - 6623: -24,-7 - 7255: 33,1 - 7256: 36,-2 - 7755: 38,20 - 10214: 36,-32 - 10445: 17,-53 - 10645: 73,-40 - 10659: 39,-53 - 10684: 44,-50 - 12439: -17,-67 - 12581: -4,37 - 12625: -41,28 - 12634: -39,27 - 13345: -34,-66 - 13510: -35,-79 - 13862: -67,58 - 15675: 93,2 - 15676: 94,1 - 15834: 95,13 - 15840: 97,14 - 16101: -70,-42 - 19441: -13,27 - 19442: -14,30 - 19580: 56,30 + 1885: -10,27 + 1890: -10,31 + 2366: -13,46 + 2367: -13,44 + 2368: -13,44 + 2369: -13,42 + 2370: -13,40 + 2371: -13,38 + 2378: -12,41 + 2382: -11,42 + 3988: -25,19 + 5527: 8,8 + 5528: 10,8 + 5595: 8,5 + 5609: 10,0 + 5682: -13,-5 + 5696: -10,-6 + 5714: -14,4 + 5721: -13,-1 + 5724: -12,-2 + 5739: -10,-1 + 5768: -11,7 + 6086: 2,-12 + 6322: -24,-4 + 6370: -30,1 + 6441: -26,-6 + 6445: -24,-9 + 6471: -24,-7 + 7103: 33,1 + 7104: 36,-2 + 7603: 38,20 + 10052: 36,-32 + 10283: 17,-53 + 10483: 73,-40 + 10497: 39,-53 + 10522: 44,-50 + 11777: -17,-67 + 11899: -4,37 + 11943: -41,28 + 11952: -39,27 + 12401: -34,-66 + 12566: -35,-79 + 12918: -67,58 + 14724: 93,2 + 14725: 94,1 + 14883: 95,13 + 14889: 97,14 + 15150: -70,-42 + 18485: -13,27 + 18486: -14,30 + 18624: 56,30 - node: cleanable: True color: '#151C2553' id: WoodTrimThinLineE decals: - 229: 24,1 - 230: 24,0 - 231: 24,-1 - 232: 24,-3 - 233: 24,-4 - 234: 24,-6 + 212: 24,1 + 213: 24,0 + 214: 24,-1 + 215: 24,-3 + 216: 24,-4 + 217: 24,-6 - node: cleanable: True color: '#5F697828' id: WoodTrimThinLineE decals: - 212: 12,-52 + 195: 12,-52 - node: color: '#DABC8BFF' id: WoodTrimThinLineE decals: - 1997: -9,32 - 1998: -9,31 - 2000: -9,29 - 2001: -9,28 - 2453: -14,44 - 2454: -14,42 - 2455: -14,40 - 2456: -14,38 - 2457: -14,36 - 2460: -14,46 - 2499: -13,41 - 2568: -10,44 - 2569: -10,38 - 2570: -10,37 - 2630: -2,41 - 3975: -34,62 - 3976: -34,61 - 3977: -34,60 - 4140: -26,22 - 4141: -26,21 - 5659: 14,8 - 5660: 14,9 - 5661: 14,10 - 5694: 14,1 - 5729: 11,6 - 5741: 11,2 - 5833: -14,-5 - 5838: -9,-5 - 5839: -9,-4 - 5864: -15,4 - 5881: -10,1 - 5882: -10,2 - 5885: -9,4 - 5889: -10,-2 - 5911: -8,10 - 5912: -8,9 - 5943: 1,13 - 6230: 2,-12 - 6461: -27,-5 - 6462: -27,-7 - 6463: -27,-8 - 6464: -27,-9 - 6478: -34,1 - 6479: -34,0 - 6480: -34,-1 - 6481: -34,-1 - 6482: -34,-2 - 6483: -34,-2 - 6484: -34,-3 - 6485: -34,-4 - 6486: -34,-4 - 6487: -34,-5 - 6488: -34,-6 - 6489: -34,-6 - 6490: -34,-7 - 6491: -34,-7 - 6492: -34,-8 - 6518: -26,1 - 6533: -22,-12 - 6587: -22,-6 - 6588: -22,-7 - 6589: -22,-8 - 6605: -27,-6 - 6618: -25,-7 - 6684: -31,1 - 6763: -31,-14 - 6764: -31,-13 - 7253: 32,1 - 7258: 37,-1 - 7259: 37,0 - 7260: 37,1 - 7272: 36,0 - 7327: 33,10 - 7328: 33,9 - 7549: 60,25 - 7550: 60,25 - 7720: 43,18 - 7721: 43,19 - 7731: 43,21 - 7751: 36,21 - 7754: 37,20 - 8526: 53,-25 - 8527: 53,-24 - 8541: 49,-25 - 8553: 45,-24 - 8554: 45,-25 - 10200: 38,-31 - 10201: 38,-30 - 10202: 38,-29 - 10210: 37,-30 - 10222: 20,-52 - 10223: 24,-52 - 10434: 18,-52 - 10435: 18,-51 - 10436: 18,-50 - 10639: 74,-39 - 10640: 74,-38 - 10650: 42,-54 - 10651: 42,-53 - 10667: 51,-55 - 10668: 51,-55 - 10670: 52,-56 - 10672: 52,-55 - 10673: 52,-55 - 10674: 52,-54 - 10675: 52,-53 - 10676: 52,-52 - 10683: 43,-50 - 10724: 43,-50 - 10725: 45,-52 - 10726: 45,-53 - 10727: 45,-54 - 11118: -49,-44 - 11119: -49,-46 - 11120: -49,-45 - 11136: -46,-44 - 11137: -46,-45 - 11148: -46,-48 - 12268: -21,-47 - 12278: -17,-47 - 12387: -17,-68 - 12388: -17,-69 - 12389: -17,-69 - 12390: -17,-70 - 12391: -17,-70 - 12392: -17,-71 - 12393: -17,-71 - 12394: -17,-72 - 12395: -17,-72 - 12396: -17,-73 - 12397: -13,-80 - 12398: -13,-81 - 12423: -22,-67 - 12424: -22,-66 - 12427: -15,-75 - 12454: -21,-81 - 12575: -5,37 - 12588: -2,39 - 12589: -2,38 - 12590: -2,37 - 12624: -42,28 - 12630: -38,28 - 12631: -38,26 - 13294: -38,-67 - 13316: -36,-67 - 13339: -30,-67 - 13340: -30,-66 - 13346: -35,-66 - 13515: -31,-78 - 13852: -65,61 - 13853: -65,60 - 13854: -65,59 - 15392: -6,-78 - 15402: -1,-78 - 15640: 97,1 - 15641: 97,2 - 15642: 97,3 - 15643: 97,4 - 15667: 92,2 - 15758: 89,5 - 15759: 89,6 - 15835: 94,13 - 15838: 96,13 - 16094: -62,-42 - 16387: -39,-10 - 18051: -63,17 - 18059: -57,6 - 18340: -58,-45 - 18760: -112,32 - 19397: -11,31 - 19398: -11,32 - 19399: -11,33 - 19406: -11,27 - 19407: -11,28 - 19408: -11,29 - 19409: -14,27 - 19410: -14,28 - 19411: -14,31 - 19412: -14,32 - 19413: -14,33 - 19440: -15,30 - 19454: 53,26 - 19455: 53,25 - 19456: 53,24 - 19457: 53,23 - 19458: 53,22 - 19463: 56,23 - 19464: 56,24 - 19465: 56,25 - 19466: 56,25 - 19467: 56,26 - 19777: -24,12 - 19778: -24,11 - 21334: 49,-24 + 1879: -9,32 + 1880: -9,31 + 1882: -9,29 + 1883: -9,28 + 2330: -14,44 + 2331: -14,42 + 2332: -14,40 + 2333: -14,38 + 2334: -14,36 + 2337: -14,46 + 2376: -13,41 + 2445: -10,44 + 2446: -10,38 + 2447: -10,37 + 2507: -2,41 + 3842: -34,62 + 3843: -34,61 + 3844: -34,60 + 3990: -26,22 + 3991: -26,21 + 5507: 14,8 + 5508: 14,9 + 5509: 14,10 + 5542: 14,1 + 5577: 11,6 + 5589: 11,2 + 5681: -14,-5 + 5686: -9,-5 + 5687: -9,-4 + 5712: -15,4 + 5729: -10,1 + 5730: -10,2 + 5733: -9,4 + 5737: -10,-2 + 5759: -8,10 + 5760: -8,9 + 5791: 1,13 + 6078: 2,-12 + 6309: -27,-5 + 6310: -27,-7 + 6311: -27,-8 + 6312: -27,-9 + 6326: -34,1 + 6327: -34,0 + 6328: -34,-1 + 6329: -34,-1 + 6330: -34,-2 + 6331: -34,-2 + 6332: -34,-3 + 6333: -34,-4 + 6334: -34,-4 + 6335: -34,-5 + 6336: -34,-6 + 6337: -34,-6 + 6338: -34,-7 + 6339: -34,-7 + 6340: -34,-8 + 6366: -26,1 + 6381: -22,-12 + 6435: -22,-6 + 6436: -22,-7 + 6437: -22,-8 + 6453: -27,-6 + 6466: -25,-7 + 6532: -31,1 + 6611: -31,-14 + 6612: -31,-13 + 7101: 32,1 + 7106: 37,-1 + 7107: 37,0 + 7108: 37,1 + 7120: 36,0 + 7175: 33,10 + 7176: 33,9 + 7397: 60,25 + 7398: 60,25 + 7568: 43,18 + 7569: 43,19 + 7579: 43,21 + 7599: 36,21 + 7602: 37,20 + 8368: 53,-25 + 8369: 53,-24 + 8383: 49,-25 + 8395: 45,-24 + 8396: 45,-25 + 10038: 38,-31 + 10039: 38,-30 + 10040: 38,-29 + 10048: 37,-30 + 10060: 20,-52 + 10061: 24,-52 + 10272: 18,-52 + 10273: 18,-51 + 10274: 18,-50 + 10477: 74,-39 + 10478: 74,-38 + 10488: 42,-54 + 10489: 42,-53 + 10505: 51,-55 + 10506: 51,-55 + 10508: 52,-56 + 10510: 52,-55 + 10511: 52,-55 + 10512: 52,-54 + 10513: 52,-53 + 10514: 52,-52 + 10521: 43,-50 + 10562: 43,-50 + 10563: 45,-52 + 10564: 45,-53 + 10565: 45,-54 + 10615: -49,-44 + 10616: -49,-46 + 10617: -49,-45 + 10633: -46,-44 + 10634: -46,-45 + 10645: -46,-48 + 11606: -21,-47 + 11616: -17,-47 + 11725: -17,-68 + 11726: -17,-69 + 11727: -17,-69 + 11728: -17,-70 + 11729: -17,-70 + 11730: -17,-71 + 11731: -17,-71 + 11732: -17,-72 + 11733: -17,-72 + 11734: -17,-73 + 11735: -13,-80 + 11736: -13,-81 + 11761: -22,-67 + 11762: -22,-66 + 11765: -15,-75 + 11792: -21,-81 + 11893: -5,37 + 11906: -2,39 + 11907: -2,38 + 11908: -2,37 + 11942: -42,28 + 11948: -38,28 + 11949: -38,26 + 12350: -38,-67 + 12372: -36,-67 + 12395: -30,-67 + 12396: -30,-66 + 12402: -35,-66 + 12571: -31,-78 + 12908: -65,61 + 12909: -65,60 + 12910: -65,59 + 14441: -6,-78 + 14451: -1,-78 + 14689: 97,1 + 14690: 97,2 + 14691: 97,3 + 14692: 97,4 + 14716: 92,2 + 14807: 89,5 + 14808: 89,6 + 14884: 94,13 + 14887: 96,13 + 15143: -62,-42 + 15436: -39,-10 + 17100: -63,17 + 17108: -57,6 + 17389: -58,-45 + 17804: -112,32 + 18441: -11,31 + 18442: -11,32 + 18443: -11,33 + 18450: -11,27 + 18451: -11,28 + 18452: -11,29 + 18453: -14,27 + 18454: -14,28 + 18455: -14,31 + 18456: -14,32 + 18457: -14,33 + 18484: -15,30 + 18498: 53,26 + 18499: 53,25 + 18500: 53,24 + 18501: 53,23 + 18502: 53,22 + 18507: 56,23 + 18508: 56,24 + 18509: 56,25 + 18510: 56,25 + 18511: 56,26 + 18783: -24,12 + 18784: -24,11 + 20340: 49,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 501: 0,9 - 890: 0,4 - 891: 0,-6 - 1683: -49,-44 - 1684: -49,-45 - 1685: -49,-46 + 396: 0,9 + 777: 0,4 + 778: 0,-6 + 1565: -49,-44 + 1566: -49,-45 + 1567: -49,-46 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 219: -34,-7 - 220: -34,-5 + 202: -34,-7 + 203: -34,-5 - node: cleanable: True color: '#151C2553' id: WoodTrimThinLineN decals: - 236: 58,10 + 219: 58,10 - node: color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 2002: -9,25 - 2424: -13,45 - 2425: -12,45 - 2426: -11,45 - 2427: -13,43 - 2428: -12,43 - 2429: -11,43 - 2430: -13,41 - 2431: -11,41 - 2432: -13,39 - 2433: -12,39 - 2434: -11,39 - 2435: -13,37 - 2436: -12,37 - 2437: -11,37 - 2557: -13,46 - 2558: -12,46 - 2559: -11,46 - 2560: -11,46 - 2581: -14,46 - 2629: -3,42 - 2724: -4,54 - 3969: -38,63 - 3970: -36,63 - 3971: -37,63 - 3972: -35,63 - 4123: -22,20 - 4129: -28,21 - 4142: -25,20 - 4143: -23,20 - 4144: -23,20 - 4165: -25,18 - 5668: 7,11 - 5671: 10,11 - 5672: 9,11 - 5673: 11,11 - 5674: 12,11 - 5675: 13,11 - 5677: 10,7 - 5678: 8,7 - 5726: 9,7 - 5749: 8,4 - 5753: 9,3 - 5754: 10,3 - 5757: 10,-1 - 5841: -13,-3 - 5842: -12,-3 - 5847: -10,-7 - 5855: -11,-3 - 5867: -13,5 - 5868: -12,5 - 5869: -10,5 - 5879: -10,-2 - 5904: -15,11 - 5905: -14,11 - 5906: -13,11 - 5907: -12,11 - 5908: -11,11 - 5909: -9,11 - 5919: -11,6 - 5936: 0,14 - 5937: -1,14 - 6243: 2,-13 - 6244: -4,-13 - 6442: -30,-4 - 6443: -28,-4 - 6444: -27,-4 - 6445: -26,-4 - 6446: -26,-4 - 6447: -25,-4 - 6448: -23,-4 - 6449: -22,-4 - 6476: -24,-5 - 6519: -29,2 - 6520: -28,2 - 6521: -27,2 - 6535: -25,-11 - 6536: -23,-11 - 6584: -23,-5 - 6585: -25,-5 - 6586: -25,-5 - 6599: -24,-10 - 6619: -24,-8 - 6761: -33,-12 - 6762: -32,-12 - 7248: 34,2 - 7249: 36,2 - 7261: 36,-3 - 7273: 35,1 - 7324: 30,11 - 7325: 32,11 - 7326: 31,11 - 7338: 29,7 - 7705: 40,23 - 7706: 40,23 - 7707: 41,23 - 7708: 41,23 - 7709: 42,23 - 7710: 42,23 - 7711: 40,22 - 7712: 41,22 - 7713: 42,22 - 7728: 35,22 - 7729: 35,21 - 10203: 35,-28 - 10204: 36,-28 - 10211: 36,-29 - 10213: 36,-33 - 10232: 21,-51 - 10233: 23,-51 - 10440: 15,-49 - 10441: 16,-49 - 10442: 17,-54 - 10641: 73,-37 - 10644: 73,-41 - 10665: 50,-54 - 10680: 52,-50 - 10681: 44,-50 - 10682: 45,-50 - 11113: -55,-43 - 11114: -54,-43 - 11115: -54,-43 - 11116: -51,-43 - 11117: -50,-43 - 11128: -47,-46 - 11143: -48,-47 - 12270: -18,-46 - 12281: -20,-46 - 12413: -21,-66 - 12414: -20,-66 - 12415: -19,-66 - 12416: -18,-66 - 12417: -17,-66 - 12418: -16,-66 - 12419: -15,-66 - 12420: -14,-66 - 12421: -14,-66 - 12422: -13,-66 - 12429: -18,-74 - 12430: -16,-74 - 12441: -15,-79 - 12442: -14,-79 - 12453: -22,-80 - 12583: -2,40 - 12628: -40,29 - 13302: -40,-66 - 13303: -39,-66 - 13304: -40,-65 - 13305: -39,-65 - 13306: -38,-65 - 13341: -33,-65 - 13342: -32,-65 - 13343: -31,-65 - 13506: -34,-77 - 13507: -33,-77 - 13508: -32,-77 - 13849: -67,62 - 13850: -66,62 - 15388: -7,-77 - 15401: -2,-77 - 15633: 93,5 - 15634: 94,5 - 15635: 95,5 - 15665: 94,0 - 15666: 95,0 - 15741: 82,7 - 15742: 83,7 - 15743: 84,7 - 15744: 85,7 - 15745: 86,7 - 15746: 87,7 - 15747: 88,7 - 15830: 96,14 - 15831: 97,14 - 15843: 97,13 - 16078: -69,-40 - 16079: -68,-40 - 16080: -67,-40 - 16081: -66,-40 - 16082: -65,-40 - 16083: -63,-40 - 16386: -40,-9 - 18044: -65,18 - 18045: -64,18 - 18335: -59,-44 - 18480: -2,-11 - 18481: -1,-11 - 18482: 0,-11 - 18483: 1,-11 - 18761: -114,33 - 18762: -113,33 - 19379: -11,33 - 19384: -13,26 - 19385: -12,26 - 19386: -10,26 - 19387: -9,26 - 19392: -9,30 - 19393: -10,30 - 19572: 56,30 - 19573: 56,30 - 19574: 52,30 - 19575: 52,30 - 19576: 56,30 - 19584: 54,31 - 19779: -26,13 - 19780: -25,13 + 1884: -9,25 + 2301: -13,45 + 2302: -12,45 + 2303: -11,45 + 2304: -13,43 + 2305: -12,43 + 2306: -11,43 + 2307: -13,41 + 2308: -11,41 + 2309: -13,39 + 2310: -12,39 + 2311: -11,39 + 2312: -13,37 + 2313: -12,37 + 2314: -11,37 + 2434: -13,46 + 2435: -12,46 + 2436: -11,46 + 2437: -11,46 + 2458: -14,46 + 2506: -3,42 + 2601: -4,54 + 3836: -38,63 + 3837: -36,63 + 3838: -37,63 + 3839: -35,63 + 3973: -22,20 + 3979: -28,21 + 3992: -25,20 + 3993: -23,20 + 3994: -23,20 + 4015: -25,18 + 5516: 7,11 + 5519: 10,11 + 5520: 9,11 + 5521: 11,11 + 5522: 12,11 + 5523: 13,11 + 5525: 10,7 + 5526: 8,7 + 5574: 9,7 + 5597: 8,4 + 5601: 9,3 + 5602: 10,3 + 5605: 10,-1 + 5689: -13,-3 + 5690: -12,-3 + 5695: -10,-7 + 5703: -11,-3 + 5715: -13,5 + 5716: -12,5 + 5717: -10,5 + 5727: -10,-2 + 5752: -15,11 + 5753: -14,11 + 5754: -13,11 + 5755: -12,11 + 5756: -11,11 + 5757: -9,11 + 5767: -11,6 + 5784: 0,14 + 5785: -1,14 + 6091: 2,-13 + 6092: -4,-13 + 6290: -30,-4 + 6291: -28,-4 + 6292: -27,-4 + 6293: -26,-4 + 6294: -26,-4 + 6295: -25,-4 + 6296: -23,-4 + 6297: -22,-4 + 6324: -24,-5 + 6367: -29,2 + 6368: -28,2 + 6369: -27,2 + 6383: -25,-11 + 6384: -23,-11 + 6432: -23,-5 + 6433: -25,-5 + 6434: -25,-5 + 6447: -24,-10 + 6467: -24,-8 + 6609: -33,-12 + 6610: -32,-12 + 7096: 34,2 + 7097: 36,2 + 7109: 36,-3 + 7121: 35,1 + 7172: 30,11 + 7173: 32,11 + 7174: 31,11 + 7186: 29,7 + 7553: 40,23 + 7554: 40,23 + 7555: 41,23 + 7556: 41,23 + 7557: 42,23 + 7558: 42,23 + 7559: 40,22 + 7560: 41,22 + 7561: 42,22 + 7576: 35,22 + 7577: 35,21 + 10041: 35,-28 + 10042: 36,-28 + 10049: 36,-29 + 10051: 36,-33 + 10070: 21,-51 + 10071: 23,-51 + 10278: 15,-49 + 10279: 16,-49 + 10280: 17,-54 + 10479: 73,-37 + 10482: 73,-41 + 10503: 50,-54 + 10518: 52,-50 + 10519: 44,-50 + 10520: 45,-50 + 10610: -55,-43 + 10611: -54,-43 + 10612: -54,-43 + 10613: -51,-43 + 10614: -50,-43 + 10625: -47,-46 + 10640: -48,-47 + 11608: -18,-46 + 11619: -20,-46 + 11751: -21,-66 + 11752: -20,-66 + 11753: -19,-66 + 11754: -18,-66 + 11755: -17,-66 + 11756: -16,-66 + 11757: -15,-66 + 11758: -14,-66 + 11759: -14,-66 + 11760: -13,-66 + 11767: -18,-74 + 11768: -16,-74 + 11779: -15,-79 + 11780: -14,-79 + 11791: -22,-80 + 11901: -2,40 + 11946: -40,29 + 12358: -40,-66 + 12359: -39,-66 + 12360: -40,-65 + 12361: -39,-65 + 12362: -38,-65 + 12397: -33,-65 + 12398: -32,-65 + 12399: -31,-65 + 12562: -34,-77 + 12563: -33,-77 + 12564: -32,-77 + 12905: -67,62 + 12906: -66,62 + 14437: -7,-77 + 14450: -2,-77 + 14682: 93,5 + 14683: 94,5 + 14684: 95,5 + 14714: 94,0 + 14715: 95,0 + 14790: 82,7 + 14791: 83,7 + 14792: 84,7 + 14793: 85,7 + 14794: 86,7 + 14795: 87,7 + 14796: 88,7 + 14879: 96,14 + 14880: 97,14 + 14892: 97,13 + 15127: -69,-40 + 15128: -68,-40 + 15129: -67,-40 + 15130: -66,-40 + 15131: -65,-40 + 15132: -63,-40 + 15435: -40,-9 + 17093: -65,18 + 17094: -64,18 + 17384: -59,-44 + 17529: -2,-11 + 17530: -1,-11 + 17531: 0,-11 + 17532: 1,-11 + 17805: -114,33 + 17806: -113,33 + 18423: -11,33 + 18428: -13,26 + 18429: -12,26 + 18430: -10,26 + 18431: -9,26 + 18436: -9,30 + 18437: -10,30 + 18616: 56,30 + 18617: 56,30 + 18618: 52,30 + 18619: 52,30 + 18620: 56,30 + 18628: 54,31 + 18785: -26,13 + 18786: -25,13 - node: angle: 1.9198621771937625 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13391: -35.813877,-65.105484 - 16312: -64.29358,-40.983166 + 12447: -35.813877,-65.105484 + 15361: -64.29358,-40.983166 - node: angle: 2.0943951023931953 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13389: -29.784193,-66.29185 + 12445: -29.784193,-66.29185 - node: angle: 2.443460952792061 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16315: -62.793587,-43.12379 + 15364: -62.793587,-43.12379 - node: angle: 2.6179938779914944 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16314: -69.402954,-44.592537 + 15363: -69.402954,-44.592537 - node: angle: 3.490658503988659 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13388: -40.693886,-64.73856 + 12444: -40.693886,-64.73856 - node: angle: 3.6651914291880923 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13390: -33.77137,-66.21846 + 12446: -33.77137,-66.21846 - node: angle: 3.839724354387525 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16313: -69.85608,-41.076912 + 15362: -69.85608,-41.076912 - node: angle: 4.363323129985824 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16316: -67.26233,-43.09254 + 15365: -67.26233,-43.09254 - node: angle: 5.235987755982989 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13387: -37.183704,-67.03792 + 12443: -37.183704,-67.03792 - node: angle: 6.981317007977318 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16317: -67.51233,-46.24879 + 15366: -67.51233,-46.24879 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 477: 0,-5 - 478: 0,-4 - 479: 0,-3 - 480: 0,-2 - 481: 0,-1 - 482: 0,0 - 483: 0,1 - 484: 0,2 - 485: 0,3 - 486: 0,5 - 487: 0,6 - 488: 0,7 - 489: 0,8 + 372: 0,-5 + 373: 0,-4 + 374: 0,-3 + 375: 0,-2 + 376: 0,-1 + 377: 0,0 + 378: 0,1 + 379: 0,2 + 380: 0,3 + 381: 0,5 + 382: 0,6 + 383: 0,7 + 384: 0,8 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 544: 35,1 - 1048: -26,-4 - 1580: -40,29 - 1678: -55,-43 - 1679: -54,-43 - 1680: -51,-43 - 1681: -50,-43 + 439: 35,1 + 931: -26,-4 + 1462: -40,29 + 1560: -55,-43 + 1561: -54,-43 + 1562: -51,-43 + 1563: -50,-43 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 208: 17,-49 - 226: -29,2 + 191: 17,-49 + 209: -29,2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 490: -2,8 - 491: -2,7 - 492: -2,5 - 493: -2,4 - 494: -2,3 - 495: -2,0 - 496: -2,-1 - 497: -2,-2 - 498: -2,-4 - 499: -2,-5 - 500: -2,-6 + 385: -2,8 + 386: -2,7 + 387: -2,5 + 388: -2,4 + 389: -2,3 + 390: -2,0 + 391: -2,-1 + 392: -2,-2 + 393: -2,-4 + 394: -2,-5 + 395: -2,-6 - node: cleanable: True color: '#5F697828' id: WoodTrimThinLineS decals: - 214: 11,-53 - 215: 3,-53 - 216: 4,-53 + 197: 11,-53 + 198: 3,-53 + 199: 4,-53 - node: color: '#DABC8BFF' id: WoodTrimThinLineS decals: - 2438: -13,37 - 2439: -12,37 - 2440: -12,37 - 2441: -11,37 - 2442: -11,39 - 2443: -12,39 - 2444: -13,39 - 2445: -13,41 - 2446: -11,41 - 2447: -11,43 - 2448: -12,43 - 2449: -13,43 - 2450: -13,45 - 2451: -12,45 - 2452: -11,45 - 2561: -13,36 - 2562: -12,36 - 2563: -11,36 - 2571: -14,36 - 2633: -4,41 - 2634: -2,41 - 3979: -35,59 - 4133: -28,19 - 4134: -27,19 - 4135: -26,19 - 4136: -24,19 - 4137: -23,19 - 4148: -24,21 - 5655: 8,12 - 5662: 12,8 - 5663: 11,8 - 5664: 9,8 - 5665: 7,8 - 5686: 13,3 - 5692: 13,0 - 5731: 10,5 - 5732: 9,5 - 5733: 8,0 - 5734: 9,0 - 5746: 8,4 - 5845: -12,-6 - 5846: -11,-6 - 5854: -10,-2 - 5888: -11,6 - 5894: -10,-2 - 5895: -12,7 - 5896: -13,7 - 5897: -14,7 - 5898: -15,7 - 5899: -10,7 - 5915: -10,12 - 5940: -2,12 - 5941: -1,12 - 5942: 0,12 - 6231: -3,-12 - 6232: -2,-12 - 6233: -1,-12 - 6234: 0,-12 - 6235: 1,-12 - 6457: -22,-4 - 6458: -23,-4 - 6459: -25,-4 - 6460: -26,-4 - 6467: -30,-9 - 6468: -29,-9 - 6469: -28,-9 - 6515: -29,0 - 6516: -28,0 - 6517: -27,0 - 6524: -29,-3 - 6525: -24,-3 - 6530: -25,-13 - 6531: -24,-13 - 6532: -23,-13 - 6574: -24,-10 - 6575: -23,-9 - 6576: -25,-9 - 6606: -24,-4 - 6621: -24,-6 - 6759: -33,-15 - 6760: -32,-15 - 7244: 34,-2 - 7245: 35,-2 - 7252: 35,3 - 7274: 35,-1 - 7334: 30,8 - 7335: 31,8 - 7336: 32,8 - 7714: 40,18 - 7715: 41,18 - 7716: 42,18 - 7717: 40,17 - 7718: 41,17 - 7719: 42,17 - 7743: 35,18 - 7744: 35,18 - 7745: 35,19 - 8525: 52,-26 - 8532: 52,-22 - 8533: 48,-22 - 8539: 48,-26 - 8540: 48,-26 - 8550: 44,-22 - 8557: 44,-26 - 10198: 35,-32 - 10199: 37,-32 - 10209: 36,-31 - 10212: 37,-27 - 10224: 22,-50 - 10225: 22,-53 - 10226: 22,-53 - 10227: 23,-53 - 10231: 21,-53 - 10429: 15,-53 - 10430: 15,-53 - 10431: 16,-53 - 10432: 16,-53 - 10433: 17,-48 - 10648: 41,-56 - 10666: 50,-56 - 10685: 44,-50 - 10686: 44,-50 - 10687: 45,-50 - 11099: -50,-47 - 11100: -51,-47 - 11101: -52,-47 - 11102: -52,-47 - 11103: -53,-47 - 11104: -53,-47 - 11105: -54,-47 - 11106: -54,-47 - 11107: -55,-47 - 11126: -47,-42 - 11127: -47,-46 - 11149: -53,-49 - 11150: -52,-49 - 11151: -51,-49 - 11152: -51,-49 - 11153: -50,-49 - 11154: -49,-49 - 11155: -48,-49 - 11156: -47,-49 - 12271: -19,-45 - 12274: -20,-48 - 12275: -19,-48 - 12276: -18,-48 - 12383: -21,-67 - 12384: -20,-67 - 12385: -19,-67 - 12386: -18,-67 - 12404: -18,-76 - 12405: -17,-76 - 12406: -16,-76 - 12407: -15,-82 - 12408: -14,-82 - 12409: -16,-67 - 12410: -15,-67 - 12411: -14,-67 - 12412: -13,-67 - 12452: -22,-82 - 12574: -3,36 - 12577: -3,41 - 12621: -40,27 - 12622: -40,27 - 13296: -39,-68 - 13297: -40,-68 - 13312: -37,-64 - 13313: -41,-64 - 13318: -37,-68 - 13333: -33,-68 - 13334: -32,-68 - 13335: -31,-68 - 13502: -33,-79 - 13860: -66,58 - 15396: -7,-79 - 15400: -2,-79 - 15636: 96,0 - 15660: 94,4 - 15661: 95,4 - 15751: 82,4 - 15752: 84,4 - 15753: 83,4 - 15754: 85,4 - 15755: 87,4 - 15756: 86,4 - 15757: 88,4 - 16088: -71,-42 - 16089: -67,-44 - 16090: -66,-44 - 16091: -65,-44 - 16092: -64,-44 - 16093: -63,-44 - 16098: -68,-46 - 16388: -40,-11 - 18047: -65,16 - 18048: -64,16 - 18339: -59,-46 - 18758: -114,31 - 18759: -113,31 - 19380: -10,34 - 19381: -9,34 - 19382: -13,34 - 19383: -12,34 - 19394: -10,30 - 19395: -9,30 - 19577: 53,30 - 19578: 54,30 - 19579: 55,30 - 19781: -26,10 - 19782: -25,10 + 2315: -13,37 + 2316: -12,37 + 2317: -12,37 + 2318: -11,37 + 2319: -11,39 + 2320: -12,39 + 2321: -13,39 + 2322: -13,41 + 2323: -11,41 + 2324: -11,43 + 2325: -12,43 + 2326: -13,43 + 2327: -13,45 + 2328: -12,45 + 2329: -11,45 + 2438: -13,36 + 2439: -12,36 + 2440: -11,36 + 2448: -14,36 + 2510: -4,41 + 2511: -2,41 + 3846: -35,59 + 3983: -28,19 + 3984: -27,19 + 3985: -26,19 + 3986: -24,19 + 3987: -23,19 + 3998: -24,21 + 5503: 8,12 + 5510: 12,8 + 5511: 11,8 + 5512: 9,8 + 5513: 7,8 + 5534: 13,3 + 5540: 13,0 + 5579: 10,5 + 5580: 9,5 + 5581: 8,0 + 5582: 9,0 + 5594: 8,4 + 5693: -12,-6 + 5694: -11,-6 + 5702: -10,-2 + 5736: -11,6 + 5742: -10,-2 + 5743: -12,7 + 5744: -13,7 + 5745: -14,7 + 5746: -15,7 + 5747: -10,7 + 5763: -10,12 + 5788: -2,12 + 5789: -1,12 + 5790: 0,12 + 6079: -3,-12 + 6080: -2,-12 + 6081: -1,-12 + 6082: 0,-12 + 6083: 1,-12 + 6305: -22,-4 + 6306: -23,-4 + 6307: -25,-4 + 6308: -26,-4 + 6315: -30,-9 + 6316: -29,-9 + 6317: -28,-9 + 6363: -29,0 + 6364: -28,0 + 6365: -27,0 + 6372: -29,-3 + 6373: -24,-3 + 6378: -25,-13 + 6379: -24,-13 + 6380: -23,-13 + 6422: -24,-10 + 6423: -23,-9 + 6424: -25,-9 + 6454: -24,-4 + 6469: -24,-6 + 6607: -33,-15 + 6608: -32,-15 + 7092: 34,-2 + 7093: 35,-2 + 7100: 35,3 + 7122: 35,-1 + 7182: 30,8 + 7183: 31,8 + 7184: 32,8 + 7562: 40,18 + 7563: 41,18 + 7564: 42,18 + 7565: 40,17 + 7566: 41,17 + 7567: 42,17 + 7591: 35,18 + 7592: 35,18 + 7593: 35,19 + 8367: 52,-26 + 8374: 52,-22 + 8375: 48,-22 + 8381: 48,-26 + 8382: 48,-26 + 8392: 44,-22 + 8399: 44,-26 + 10036: 35,-32 + 10037: 37,-32 + 10047: 36,-31 + 10050: 37,-27 + 10062: 22,-50 + 10063: 22,-53 + 10064: 22,-53 + 10065: 23,-53 + 10069: 21,-53 + 10267: 15,-53 + 10268: 15,-53 + 10269: 16,-53 + 10270: 16,-53 + 10271: 17,-48 + 10486: 41,-56 + 10504: 50,-56 + 10523: 44,-50 + 10524: 44,-50 + 10525: 45,-50 + 10596: -50,-47 + 10597: -51,-47 + 10598: -52,-47 + 10599: -52,-47 + 10600: -53,-47 + 10601: -53,-47 + 10602: -54,-47 + 10603: -54,-47 + 10604: -55,-47 + 10623: -47,-42 + 10624: -47,-46 + 10646: -53,-49 + 10647: -52,-49 + 10648: -51,-49 + 10649: -51,-49 + 10650: -50,-49 + 10651: -49,-49 + 10652: -48,-49 + 10653: -47,-49 + 11609: -19,-45 + 11612: -20,-48 + 11613: -19,-48 + 11614: -18,-48 + 11721: -21,-67 + 11722: -20,-67 + 11723: -19,-67 + 11724: -18,-67 + 11742: -18,-76 + 11743: -17,-76 + 11744: -16,-76 + 11745: -15,-82 + 11746: -14,-82 + 11747: -16,-67 + 11748: -15,-67 + 11749: -14,-67 + 11750: -13,-67 + 11790: -22,-82 + 11892: -3,36 + 11895: -3,41 + 11939: -40,27 + 11940: -40,27 + 12352: -39,-68 + 12353: -40,-68 + 12368: -37,-64 + 12369: -41,-64 + 12374: -37,-68 + 12389: -33,-68 + 12390: -32,-68 + 12391: -31,-68 + 12558: -33,-79 + 12916: -66,58 + 14445: -7,-79 + 14449: -2,-79 + 14685: 96,0 + 14709: 94,4 + 14710: 95,4 + 14800: 82,4 + 14801: 84,4 + 14802: 83,4 + 14803: 85,4 + 14804: 87,4 + 14805: 86,4 + 14806: 88,4 + 15137: -71,-42 + 15138: -67,-44 + 15139: -66,-44 + 15140: -65,-44 + 15141: -64,-44 + 15142: -63,-44 + 15147: -68,-46 + 15437: -40,-11 + 17096: -65,16 + 17097: -64,16 + 17388: -59,-46 + 17802: -114,31 + 17803: -113,31 + 18424: -10,34 + 18425: -9,34 + 18426: -13,34 + 18427: -12,34 + 18438: -10,30 + 18439: -9,30 + 18621: 53,30 + 18622: 54,30 + 18623: 55,30 + 18787: -26,10 + 18788: -25,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1578: -40,27 - 1687: -50,-47 - 1688: -51,-47 - 1689: -52,-47 - 1690: -53,-47 - 1691: -54,-47 - 1692: -55,-47 + 1460: -40,27 + 1569: -50,-47 + 1570: -51,-47 + 1571: -52,-47 + 1572: -53,-47 + 1573: -54,-47 + 1574: -55,-47 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 227: -29,2 + 210: -29,2 - node: cleanable: True color: '#151C2553' id: WoodTrimThinLineW decals: - 235: 20,0 + 218: 20,0 - node: cleanable: True color: '#5F697828' id: WoodTrimThinLineW decals: - 210: 2,-52 - 211: 2,-50 + 193: 2,-52 + 194: 2,-50 - node: color: '#DABC8BFF' id: WoodTrimThinLineW decals: - 1988: -8,27 - 1989: -8,33 - 2004: -8,27 - 2005: -8,30 - 2006: -8,33 - 2458: -10,36 - 2459: -10,46 - 2461: -10,42 - 2462: -10,40 - 2463: -10,38 - 2464: -10,44 - 2500: -11,41 - 2564: -9,39 - 2565: -9,41 - 2566: -9,42 - 2567: -9,43 - 2579: -9,40 - 2580: -9,40 - 2631: -4,41 - 2632: -4,41 - 3012: -9,45 - 3986: -39,60 - 4124: -21,20 - 4127: -27,22 - 4131: -29,20 - 4164: -21,20 - 5666: 6,9 - 5667: 6,10 - 5690: 12,1 - 5728: 7,6 - 5736: 7,1 - 5737: 7,2 - 5738: 7,3 - 5750: 12,1 - 5758: 12,1 - 5827: -16,-5 - 5832: -14,-5 - 5844: -13,-4 - 5860: -14,0 - 5861: -14,1 - 5862: -14,2 - 5863: -14,3 - 5890: -10,-2 - 5916: -16,8 - 5917: -16,9 - 5918: -16,10 - 5944: -3,13 - 6236: -4,-12 - 6450: -31,-5 - 6451: -31,-6 - 6452: -31,-7 - 6453: -31,-7 - 6454: -31,-8 - 6455: -31,-9 - 6496: -35,-8 - 6497: -35,-7 - 6498: -35,-6 - 6499: -35,-5 - 6500: -35,-4 - 6501: -35,-3 - 6502: -35,-3 - 6503: -35,-2 - 6504: -35,-1 - 6505: -35,-1 - 6506: -35,0 - 6507: -35,0 - 6508: -35,1 - 6509: -35,2 - 6534: -26,-12 - 6590: -26,-8 - 6591: -26,-7 - 6592: -26,-7 - 6620: -23,-7 - 6765: -34,-14 - 6766: -34,-13 - 7246: 33,-1 - 7247: 33,0 - 7277: 34,0 - 7331: 29,8 - 7332: 29,9 - 7333: 29,10 - 7734: 39,19 - 7735: 39,20 - 7736: 39,21 - 7737: 34,20 - 7749: 38,19 - 7750: 38,21 - 7759: 44,20 - 7760: 37,20 - 8528: 51,-25 - 8529: 51,-24 - 8544: 47,-24 - 8545: 47,-25 - 8555: 43,-25 - 8556: 43,-24 - 10205: 34,-31 - 10206: 34,-30 - 10207: 34,-29 - 10208: 35,-30 - 10230: 20,-52 - 10437: 14,-52 - 10438: 14,-51 - 10439: 14,-50 - 10642: 72,-39 - 10643: 72,-38 - 10652: 39,-55 - 10653: 39,-55 - 10654: 39,-54 - 10655: 39,-54 - 10656: 39,-52 - 10657: 39,-52 - 10669: 49,-55 - 10677: 49,-53 - 10688: 46,-52 - 10689: 46,-55 - 10690: 46,-55 - 10732: 44,-54 - 10733: 44,-53 - 10734: 44,-52 - 11110: -56,-46 - 11111: -56,-45 - 11112: -56,-44 - 11130: -47,-43 - 11131: -47,-43 - 11132: -47,-44 - 11133: -47,-44 - 11134: -47,-45 - 11135: -47,-45 - 11147: -54,-48 - 11158: -61,-43 - 12269: -21,-47 - 12425: -12,-66 - 12426: -12,-67 - 12428: -19,-75 - 12433: -17,-73 - 12434: -17,-72 - 12435: -17,-71 - 12436: -17,-70 - 12437: -17,-69 - 12438: -17,-68 - 12444: -16,-80 - 12445: -16,-81 - 12455: -23,-81 - 12576: -1,40 - 12586: -4,38 - 12587: -4,39 - 12637: -37,27 - 12638: -38,27 - 12639: -38,28 - 13299: -41,-67 - 13300: -41,-66 - 13315: -41,-65 - 13319: -35,-66 - 13338: -34,-67 - 13509: -35,-78 - 13857: -68,59 - 13858: -68,60 - 13859: -68,61 - 15395: -8,-78 - 15397: -3,-78 - 15623: 91,4 - 15624: 91,3 - 15625: 91,2 - 15626: 91,1 - 15627: 91,0 - 15628: 91,-1 - 15668: 97,2 - 15760: 81,5 - 15761: 81,6 - 15827: 97,13 - 16085: -72,-41 - 16086: -70,-44 - 16087: -70,-45 - 16097: -61,-43 - 16389: -41,-10 - 18052: -66,17 - 18062: -58,6 - 18336: -60,-44 - 18337: -60,-45 - 18763: -115,32 - 19400: -11,31 - 19401: -11,32 - 19402: -11,33 - 19403: -11,29 - 19404: -11,28 - 19405: -11,27 - 19468: 55,23 - 19469: 55,24 - 19470: 55,25 - 19471: 55,26 - 19472: 52,23 - 19473: 52,24 - 19474: 52,25 - 19475: 52,26 - 19784: -27,11 - 19785: -27,12 + 1870: -8,27 + 1871: -8,33 + 1886: -8,27 + 1887: -8,30 + 1888: -8,33 + 2335: -10,36 + 2336: -10,46 + 2338: -10,42 + 2339: -10,40 + 2340: -10,38 + 2341: -10,44 + 2377: -11,41 + 2441: -9,39 + 2442: -9,41 + 2443: -9,42 + 2444: -9,43 + 2456: -9,40 + 2457: -9,40 + 2508: -4,41 + 2509: -4,41 + 2889: -9,45 + 3853: -39,60 + 3974: -21,20 + 3977: -27,22 + 3981: -29,20 + 4014: -21,20 + 5514: 6,9 + 5515: 6,10 + 5538: 12,1 + 5576: 7,6 + 5584: 7,1 + 5585: 7,2 + 5586: 7,3 + 5598: 12,1 + 5606: 12,1 + 5675: -16,-5 + 5680: -14,-5 + 5692: -13,-4 + 5708: -14,0 + 5709: -14,1 + 5710: -14,2 + 5711: -14,3 + 5738: -10,-2 + 5764: -16,8 + 5765: -16,9 + 5766: -16,10 + 5792: -3,13 + 6084: -4,-12 + 6298: -31,-5 + 6299: -31,-6 + 6300: -31,-7 + 6301: -31,-7 + 6302: -31,-8 + 6303: -31,-9 + 6344: -35,-8 + 6345: -35,-7 + 6346: -35,-6 + 6347: -35,-5 + 6348: -35,-4 + 6349: -35,-3 + 6350: -35,-3 + 6351: -35,-2 + 6352: -35,-1 + 6353: -35,-1 + 6354: -35,0 + 6355: -35,0 + 6356: -35,1 + 6357: -35,2 + 6382: -26,-12 + 6438: -26,-8 + 6439: -26,-7 + 6440: -26,-7 + 6468: -23,-7 + 6613: -34,-14 + 6614: -34,-13 + 7094: 33,-1 + 7095: 33,0 + 7125: 34,0 + 7179: 29,8 + 7180: 29,9 + 7181: 29,10 + 7582: 39,19 + 7583: 39,20 + 7584: 39,21 + 7585: 34,20 + 7597: 38,19 + 7598: 38,21 + 7607: 44,20 + 7608: 37,20 + 8370: 51,-25 + 8371: 51,-24 + 8386: 47,-24 + 8387: 47,-25 + 8397: 43,-25 + 8398: 43,-24 + 10043: 34,-31 + 10044: 34,-30 + 10045: 34,-29 + 10046: 35,-30 + 10068: 20,-52 + 10275: 14,-52 + 10276: 14,-51 + 10277: 14,-50 + 10480: 72,-39 + 10481: 72,-38 + 10490: 39,-55 + 10491: 39,-55 + 10492: 39,-54 + 10493: 39,-54 + 10494: 39,-52 + 10495: 39,-52 + 10507: 49,-55 + 10515: 49,-53 + 10526: 46,-52 + 10527: 46,-55 + 10528: 46,-55 + 10570: 44,-54 + 10571: 44,-53 + 10572: 44,-52 + 10607: -56,-46 + 10608: -56,-45 + 10609: -56,-44 + 10627: -47,-43 + 10628: -47,-43 + 10629: -47,-44 + 10630: -47,-44 + 10631: -47,-45 + 10632: -47,-45 + 10644: -54,-48 + 10655: -61,-43 + 11607: -21,-47 + 11763: -12,-66 + 11764: -12,-67 + 11766: -19,-75 + 11771: -17,-73 + 11772: -17,-72 + 11773: -17,-71 + 11774: -17,-70 + 11775: -17,-69 + 11776: -17,-68 + 11782: -16,-80 + 11783: -16,-81 + 11793: -23,-81 + 11894: -1,40 + 11904: -4,38 + 11905: -4,39 + 11955: -37,27 + 11956: -38,27 + 11957: -38,28 + 12355: -41,-67 + 12356: -41,-66 + 12371: -41,-65 + 12375: -35,-66 + 12394: -34,-67 + 12565: -35,-78 + 12913: -68,59 + 12914: -68,60 + 12915: -68,61 + 14444: -8,-78 + 14446: -3,-78 + 14672: 91,4 + 14673: 91,3 + 14674: 91,2 + 14675: 91,1 + 14676: 91,0 + 14677: 91,-1 + 14717: 97,2 + 14809: 81,5 + 14810: 81,6 + 14876: 97,13 + 15134: -72,-41 + 15135: -70,-44 + 15136: -70,-45 + 15146: -61,-43 + 15438: -41,-10 + 17101: -66,17 + 17111: -58,6 + 17385: -60,-44 + 17386: -60,-45 + 17807: -115,32 + 18444: -11,31 + 18445: -11,32 + 18446: -11,33 + 18447: -11,29 + 18448: -11,28 + 18449: -11,27 + 18512: 55,23 + 18513: 55,24 + 18514: 55,25 + 18515: 55,26 + 18516: 52,23 + 18517: 52,24 + 18518: 52,25 + 18519: 52,26 + 18790: -27,11 + 18791: -27,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 886: -2,6 - 887: -2,2 - 888: -2,1 - 889: -2,-3 - 1694: -56,-46 - 1695: -56,-45 - 1696: -56,-44 + 773: -2,6 + 774: -2,2 + 775: -2,1 + 776: -2,-3 + 1576: -56,-46 + 1577: -56,-45 + 1578: -56,-44 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 207: 14,-52 - 217: -35,-5 - 218: -35,-7 - 221: -31,-6 - 222: -31,-5 - 223: -31,-7 - 224: -31,-8 - 225: -31,-9 + 190: 14,-52 + 200: -35,-5 + 201: -35,-7 + 204: -31,-6 + 205: -31,-5 + 206: -31,-7 + 207: -31,-8 + 208: -31,-9 - node: angle: 1.5707963267948966 rad color: '#FFFF00FF' id: arrow decals: - 852: -80,-13 + 739: -80,-13 - node: angle: -1.5707963267948966 rad color: '#FFFFFF42' id: clown decals: - 13275: 55.22766,-37.04212 + 12331: 55.22766,-37.04212 - node: angle: 1.5707963267948966 rad color: '#FFFFFF42' id: corgi decals: - 13276: 53.258907,-37.95879 + 12332: 53.258907,-37.95879 - node: color: '#FFFFFF42' id: disk decals: - 13274: 54.696407,-34.97962 + 12330: 54.696407,-34.97962 - node: color: '#FFFFFF42' id: face decals: - 13273: 54.258907,-35.719204 + 12329: 54.258907,-35.719204 - node: color: '#D381C996' id: ghost decals: - 1040: -38,-53 + 923: -38,-53 - node: color: '#FFFFFFFF' id: grasssnow01 decals: - 14130: -71.98031,53.856472 + 13186: -71.98031,53.856472 - node: cleanable: True color: '#53960057' id: grasssnow03 decals: - 471: -44,-15 + 368: -44,-15 - node: cleanable: True color: '#5396006C' id: grasssnow03 decals: - 461: -54,-23 + 359: -54,-23 - node: cleanable: True color: '#53960057' id: grasssnow04 decals: - 465: -29,-20 - 466: -28,-20 + 362: -29,-20 + 363: -28,-20 - node: color: '#FFFFFFFF' id: grasssnow05 decals: - 14126: -71.26156,54.153347 + 13182: -71.26156,54.153347 - node: cleanable: True color: '#5396006C' id: grasssnow06 decals: - 462: -47,-20 - 463: -46,-20 + 360: -47,-20 + 361: -46,-20 - node: cleanable: True color: '#69856092' id: grasssnow06 decals: - 280: 41.151386,-22.986418 - 281: 41.320934,-23.252977 - 282: 40.54585,-22.71986 + 263: 41.151386,-22.986418 + 264: 41.320934,-23.252977 + 265: 40.54585,-22.71986 - node: cleanable: True color: '#007200FF' id: grasssnow07 decals: - 24232: -50.970387,-31.025862 - 24239: -40.149033,-29.129581 + 23237: -50.970387,-31.025862 + 23244: -40.149033,-29.129581 - node: cleanable: True color: '#54995A7A' id: grasssnow07 decals: - 371: -30,-56 + 337: -30,-56 - node: color: '#FFFFFFFF' id: grasssnow07 decals: - 14127: -70.73031,54.825222 + 13183: -70.73031,54.825222 - node: cleanable: True color: '#007200FF' id: grasssnow08 decals: - 24233: -52.54851,-27.166487 - 24236: -47.18966,-25.15085 - 24240: -34.586533,-27.223331 - 24241: -27.84777,-26.051447 + 23238: -52.54851,-27.166487 + 23241: -47.18966,-25.15085 + 23245: -34.586533,-27.223331 + 23246: -27.84777,-26.051447 - node: cleanable: True color: '#5396008C' id: grasssnow08 decals: - 472: -22,-20 + 369: -22,-20 - node: cleanable: True color: '#54995A7A' id: grasssnow08 decals: - 372: -27,-56 + 338: -27,-56 - node: color: '#FFFFFFFF' id: grasssnow08 decals: - 14128: -70.04281,53.918972 + 13184: -70.04281,53.918972 - node: cleanable: True color: '#007200FF' id: grasssnow09 decals: - 24238: -34.446346,-23.882437 + 23243: -34.446346,-23.882437 - node: cleanable: True color: '#007200FF' id: grasssnow10 decals: - 24234: -41.12114,-26.947725 - 24237: -42.821163,-21.898071 - 24242: -27.082205,-23.899069 + 23239: -41.12114,-26.947725 + 23242: -42.821163,-21.898071 + 23247: -27.082205,-23.899069 - node: cleanable: True color: '#53960057' id: grasssnow10 decals: - 442: -33,-29 + 357: -33,-29 - node: cleanable: True color: '#53960076' id: grasssnow10 decals: - 443: -33,-28 + 358: -33,-28 - node: color: '#FFFFFFFF' id: grasssnow10 decals: - 14125: -71.855316,54.965847 + 13181: -71.855316,54.965847 - node: cleanable: True color: '#53960057' id: grasssnow11 decals: - 468: -33,-19 - 469: -37,-18 - 470: -37,-13 + 365: -33,-19 + 366: -37,-18 + 367: -37,-13 - node: cleanable: True color: '#007200FF' id: grasssnow12 decals: - 24235: -44.986534,-30.057102 + 23240: -44.986534,-30.057102 - node: cleanable: True color: '#53960057' id: grasssnow13 decals: - 467: -27,-20 + 364: -27,-20 - node: color: '#FFFFFFFF' id: grasssnowa1 decals: - 14124: -70.57406,54.043972 + 13180: -70.57406,54.043972 - node: color: '#FFFFFFFF' id: grasssnowb1 decals: - 14123: -71.94906,54.028347 + 13179: -71.94906,54.028347 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 14129: -72.02719,55.09085 + 13185: -72.02719,55.09085 - node: angle: 1.5707963267948966 rad color: '#640000FF' id: pawprint decals: - 13270: 52.706825,-37.17754 + 12326: 52.706825,-37.17754 - node: angle: 3.141592653589793 rad color: '#640000FF' id: pawprint decals: - 13263: 52.727657,-35.10462 - 13264: 52.988075,-35.38587 - 13265: 52.696407,-35.60462 - 13266: 52.95682,-35.91712 - 13267: 52.71724,-36.125458 - 13268: 52.96724,-36.45879 - 13269: 52.67557,-36.656708 - 13271: 52.95682,-36.92754 - 13272: 52.946407,-34.79212 + 12319: 52.727657,-35.10462 + 12320: 52.988075,-35.38587 + 12321: 52.696407,-35.60462 + 12322: 52.95682,-35.91712 + 12323: 52.71724,-36.125458 + 12324: 52.96724,-36.45879 + 12325: 52.67557,-36.656708 + 12327: 52.95682,-36.92754 + 12328: 52.946407,-34.79212 - node: color: '#630000FF' id: rune2 decals: - 13526: -29.676588,-77.64111 + 12582: -29.676588,-77.64111 - node: color: '#630000FF' id: rune4 decals: - 13524: -36.02427,-73.86186 + 12580: -36.02427,-73.86186 - node: color: '#630000FF' id: rune5 decals: - 13525: -32.153282,-75.98998 + 12581: -32.153282,-75.98998 - node: color: '#630000FF' id: rune6 decals: - 13527: -35.987576,-80.062775 + 12583: -35.987576,-80.062775 - node: cleanable: True color: '#004200FF' id: splatter decals: - 24216: -41.817936,-33.475822 - 24217: -41.98981,-33.288322 - 24218: -41.94294,-33.178947 - 24219: -41.614815,-33.085197 - 24220: -41.442936,-33.288322 - 24221: -41.849186,-33.257072 - 24222: -41.817936,-33.241447 + 23221: -41.817936,-33.475822 + 23222: -41.98981,-33.288322 + 23223: -41.94294,-33.178947 + 23224: -41.614815,-33.085197 + 23225: -41.442936,-33.288322 + 23226: -41.849186,-33.257072 + 23227: -41.817936,-33.241447 - node: cleanable: True color: '#009F00FF' id: splatter decals: - 24223: -49.463943,-24.643959 - 24224: -49.41707,-24.784584 - 24225: -49.401443,-25.159584 - 24226: -49.10457,-25.331459 - 24227: -48.94832,-25.378334 - 24228: -49.370193,-25.347084 - 24229: -33.46581,-22.835894 - 24230: -32.825184,-22.539019 - 24231: -33.09081,-23.007769 + 23228: -49.463943,-24.643959 + 23229: -49.41707,-24.784584 + 23230: -49.401443,-25.159584 + 23231: -49.10457,-25.331459 + 23232: -48.94832,-25.378334 + 23233: -49.370193,-25.347084 + 23234: -33.46581,-22.835894 + 23235: -32.825184,-22.539019 + 23236: -33.09081,-23.007769 - node: color: '#15FFFF22' id: splatter decals: - 21527: -62.94583,-29.13605 - 21528: -63.35208,-29.2298 - 21529: -63.38333,-29.292301 - 21530: -63.16458,-29.401674 - 21531: -62.992706,-29.44855 - 21532: -63.242702,-29.776674 - 21533: -63.055202,-29.7923 - 21534: -62.805202,-29.589174 - 21535: -62.53958,-29.38605 - 21536: -62.430206,-29.26105 - 21537: -62.492706,-29.151674 - 21538: -62.805206,-28.94855 - 21539: -62.97708,-28.901674 + 20533: -62.94583,-29.13605 + 20534: -63.35208,-29.2298 + 20535: -63.38333,-29.292301 + 20536: -63.16458,-29.401674 + 20537: -62.992706,-29.44855 + 20538: -63.242702,-29.776674 + 20539: -63.055202,-29.7923 + 20540: -62.805202,-29.589174 + 20541: -62.53958,-29.38605 + 20542: -62.430206,-29.26105 + 20543: -62.492706,-29.151674 + 20544: -62.805206,-28.94855 + 20545: -62.97708,-28.901674 - node: color: '#15FFFF68' id: splatter decals: - 21522: -63.180206,-29.32355 - 21523: -63.180206,-29.32355 - 21524: -62.88333,-29.214174 - 21525: -62.711456,-29.182924 - 21526: -62.648956,-29.151674 + 20528: -63.180206,-29.32355 + 20529: -63.180206,-29.32355 + 20530: -62.88333,-29.214174 + 20531: -62.711456,-29.182924 + 20532: -62.648956,-29.151674 - node: cleanable: True color: '#52B4E93B' id: splatter decals: - 292: -27.022144,64.910675 + 270: -27.022144,64.910675 - node: cleanable: True color: '#52B4E95A' id: splatter decals: - 288: 23.867323,-16.021215 + 266: 23.867323,-16.021215 - node: color: '#630000FF' id: splatter decals: - 13519: -29.986324,-80.05321 - 13520: -29.949633,-80.47516 - 13521: -28.824398,-73.46101 - 13522: -28.98951,-73.22252 - 13523: -28.695976,-73.13079 - 13528: -33.67599,-75.01765 - 13529: -33.565918,-74.7608 + 12575: -29.986324,-80.05321 + 12576: -29.949633,-80.47516 + 12577: -28.824398,-73.46101 + 12578: -28.98951,-73.22252 + 12579: -28.695976,-73.13079 + 12584: -33.67599,-75.01765 + 12585: -33.565918,-74.7608 - node: color: '#640000FF' id: splatter decals: - 13260: 55.854828,-38.332344 - 13261: 55.42427,-38.3879 - 13262: 52.66038,-34.5129 + 12316: 55.854828,-38.332344 + 12317: 55.42427,-38.3879 + 12318: 52.66038,-34.5129 - node: cleanable: True color: '#6CDBD006' id: splatter decals: - 14326: -65.29756,58.074463 - 14327: -65.51631,62.043217 - 14328: -65.34444,61.793213 - 14329: -67.65694,58.027588 - 14330: -67.54756,58.465088 - 14331: -67.23506,61.699463 - 14332: -66.76631,61.652588 - 14333: -67.12569,61.715088 + 13382: -65.29756,58.074463 + 13383: -65.51631,62.043217 + 13384: -65.34444,61.793213 + 13385: -67.65694,58.027588 + 13386: -67.54756,58.465088 + 13387: -67.23506,61.699463 + 13388: -66.76631,61.652588 + 13389: -67.12569,61.715088 - node: cleanable: True color: '#6CDBD012' id: splatter decals: - 14334: -67.01631,61.777588 + 13390: -67.01631,61.777588 - node: cleanable: True color: '#6CDBD015' id: splatter decals: - 14069: -71.167816,57.481472 - 14070: -70.58969,57.543972 - 14071: -70.667816,58.090847 - 14072: -70.667816,57.715847 - 14073: -70.96469,57.497097 - 14074: -71.136566,57.387722 - 14075: -71.21469,57.059597 - 14076: -71.167816,56.903347 - 14077: -71.136566,57.153347 - 14078: -70.824066,57.512722 - 14079: -70.58969,57.684597 - 14080: -70.43344,57.997097 - 14081: -70.43343,58.262722 - 14082: -70.43344,58.122097 - 14083: -70.511566,57.715847 - 14084: -70.667816,57.434597 - 14085: -71.02719,57.278347 - 14086: -72.12094,57.6221 - 14087: -72.12094,57.6221 - 14088: -71.90219,57.700222 - 14089: -71.667816,57.840847 - 14090: -71.52719,58.043972 - 14091: -71.511566,58.200222 - 14092: -71.511566,58.200222 - 14093: -71.605316,57.997097 - 14094: -71.761566,57.778347 - 14095: -71.90219,57.575222 - 14096: -72.05844,57.497097 - 14097: -72.167816,57.450226 - 14098: -72.230316,57.418976 - 14099: -72.02719,57.481472 - 14100: -71.74594,57.684597 - 14101: -71.542816,57.934597 - 14102: -71.48031,58.247097 - 14103: -71.48031,58.372097 - 14104: -71.49594,58.200222 - 14105: -71.77719,57.747097 - 14106: -72.15219,57.418976 - 14107: -72.386566,57.27835 - 14108: -71.136566,56.715847 - 14109: -71.08969,56.715847 - 14110: -70.949066,56.622097 - 14111: -70.80844,56.559597 - 14112: -70.62094,56.543972 - 14113: -70.37094,56.512722 - 14114: -70.15219,56.512722 - 14115: -69.917816,56.512722 - 14116: -69.792816,56.512726 + 13125: -71.167816,57.481472 + 13126: -70.58969,57.543972 + 13127: -70.667816,58.090847 + 13128: -70.667816,57.715847 + 13129: -70.96469,57.497097 + 13130: -71.136566,57.387722 + 13131: -71.21469,57.059597 + 13132: -71.167816,56.903347 + 13133: -71.136566,57.153347 + 13134: -70.824066,57.512722 + 13135: -70.58969,57.684597 + 13136: -70.43344,57.997097 + 13137: -70.43343,58.262722 + 13138: -70.43344,58.122097 + 13139: -70.511566,57.715847 + 13140: -70.667816,57.434597 + 13141: -71.02719,57.278347 + 13142: -72.12094,57.6221 + 13143: -72.12094,57.6221 + 13144: -71.90219,57.700222 + 13145: -71.667816,57.840847 + 13146: -71.52719,58.043972 + 13147: -71.511566,58.200222 + 13148: -71.511566,58.200222 + 13149: -71.605316,57.997097 + 13150: -71.761566,57.778347 + 13151: -71.90219,57.575222 + 13152: -72.05844,57.497097 + 13153: -72.167816,57.450226 + 13154: -72.230316,57.418976 + 13155: -72.02719,57.481472 + 13156: -71.74594,57.684597 + 13157: -71.542816,57.934597 + 13158: -71.48031,58.247097 + 13159: -71.48031,58.372097 + 13160: -71.49594,58.200222 + 13161: -71.77719,57.747097 + 13162: -72.15219,57.418976 + 13163: -72.386566,57.27835 + 13164: -71.136566,56.715847 + 13165: -71.08969,56.715847 + 13166: -70.949066,56.622097 + 13167: -70.80844,56.559597 + 13168: -70.62094,56.543972 + 13169: -70.37094,56.512722 + 13170: -70.15219,56.512722 + 13171: -69.917816,56.512722 + 13172: -69.792816,56.512726 - node: cleanable: True color: '#6CDBD034' id: splatter decals: - 14117: -70.917816,56.653347 - 14118: -70.71469,56.653347 - 14119: -70.49594,56.653347 - 14120: -70.136566,56.622097 - 14121: -69.90219,56.6221 - 14122: -69.87094,56.6221 + 13173: -70.917816,56.653347 + 13174: -70.71469,56.653347 + 13175: -70.49594,56.653347 + 13176: -70.136566,56.622097 + 13177: -69.90219,56.6221 + 13178: -69.87094,56.6221 - node: cleanable: True color: '#703C065D' id: splatter decals: - 289: 26.8611,-18.022274 - 290: -24.263258,60.864494 - 291: -23.924158,60.93719 + 267: 26.8611,-18.022274 + 268: -24.263258,60.864494 + 269: -23.924158,60.93719 - node: cleanable: True color: '#79150072' id: splatter decals: - 1204: 4.891087,-50.39177 - 1205: 5.9236617,-50.067284 - 1206: 5.982666,-50.52451 + 1086: 4.891087,-50.39177 + 1087: 5.9236617,-50.067284 + 1088: 5.982666,-50.52451 - node: color: '#95000068' id: splatter decals: - 21463: -64.85194,-25.289093 - 21464: -65.03944,-25.289093 - 21465: -65.35194,-25.195345 - 21466: -65.11756,-24.773468 - 21467: -64.94569,-24.585968 - 21468: -64.71131,-24.695343 - 21469: -64.75819,-25.132843 - 21470: -64.82069,-25.226593 - 21471: -65.22694,-25.27347 - 21472: -65.43006,-25.164095 - 21473: -65.50819,-25.039095 - 21474: -65.25819,-25.101595 - 21475: -64.49256,-27.11722 - 21476: -64.49256,-27.257845 - 21477: -64.25819,-27.476595 - 21478: -63.99256,-27.507845 - 21479: -63.93006,-27.55472 - 21480: -64.27381,-27.61722 - 21481: -64.49256,-27.382845 - 21482: -58.945686,-27.39847 - 21483: -59.570686,-27.351593 - 21484: -59.64881,-27.351595 - 21485: -59.21131,-27.117218 - 21486: -59.476936,-27.164093 - 21487: -59.695686,-27.49222 - 21488: -59.86756,-27.601595 - 21489: -63.789436,-22.445345 - 21490: -64.18006,-22.507845 - 21491: -64.38319,-22.64847 - 21492: -64.64881,-23.007843 - 21493: -64.64881,-23.007843 - 21494: -64.36756,-22.58597 - 21495: -64.11756,-22.414095 - 21496: -59.055065,-25.320345 - 21497: -59.22694,-25.023468 - 21498: -58.867565,-24.757845 - 21499: -58.57069,-24.58597 - 21500: -58.69569,-24.507845 - 21501: -58.94569,-25.132845 - 21502: -58.773815,-25.101595 - 21503: -63.070805,-30.339186 - 21504: -63.336452,-30.19855 - 21505: -63.570827,-29.886051 - 21506: -63.38333,-29.401676 - 21507: -63.47708,-29.167301 - 21508: -63.53958,-28.917301 - 21509: -63.336456,-28.964174 - 21510: -63.539577,-29.495426 - 21511: -63.430202,-29.964176 - 21512: -63.242702,-30.07355 - 21513: -63.086452,-30.19855 - 21514: -61.617706,-29.229801 - 21515: -61.336456,-29.151674 - 21516: -61.242706,-28.9173 - 21517: -61.055206,-28.745424 - 21518: -60.836456,-28.7298 - 21519: -60.742706,-28.7298 - 21520: -60.836456,-28.870424 - 21521: -60.85208,-29.120424 + 20469: -64.85194,-25.289093 + 20470: -65.03944,-25.289093 + 20471: -65.35194,-25.195345 + 20472: -65.11756,-24.773468 + 20473: -64.94569,-24.585968 + 20474: -64.71131,-24.695343 + 20475: -64.75819,-25.132843 + 20476: -64.82069,-25.226593 + 20477: -65.22694,-25.27347 + 20478: -65.43006,-25.164095 + 20479: -65.50819,-25.039095 + 20480: -65.25819,-25.101595 + 20481: -64.49256,-27.11722 + 20482: -64.49256,-27.257845 + 20483: -64.25819,-27.476595 + 20484: -63.99256,-27.507845 + 20485: -63.93006,-27.55472 + 20486: -64.27381,-27.61722 + 20487: -64.49256,-27.382845 + 20488: -58.945686,-27.39847 + 20489: -59.570686,-27.351593 + 20490: -59.64881,-27.351595 + 20491: -59.21131,-27.117218 + 20492: -59.476936,-27.164093 + 20493: -59.695686,-27.49222 + 20494: -59.86756,-27.601595 + 20495: -63.789436,-22.445345 + 20496: -64.18006,-22.507845 + 20497: -64.38319,-22.64847 + 20498: -64.64881,-23.007843 + 20499: -64.64881,-23.007843 + 20500: -64.36756,-22.58597 + 20501: -64.11756,-22.414095 + 20502: -59.055065,-25.320345 + 20503: -59.22694,-25.023468 + 20504: -58.867565,-24.757845 + 20505: -58.57069,-24.58597 + 20506: -58.69569,-24.507845 + 20507: -58.94569,-25.132845 + 20508: -58.773815,-25.101595 + 20509: -63.070805,-30.339186 + 20510: -63.336452,-30.19855 + 20511: -63.570827,-29.886051 + 20512: -63.38333,-29.401676 + 20513: -63.47708,-29.167301 + 20514: -63.53958,-28.917301 + 20515: -63.336456,-28.964174 + 20516: -63.539577,-29.495426 + 20517: -63.430202,-29.964176 + 20518: -63.242702,-30.07355 + 20519: -63.086452,-30.19855 + 20520: -61.617706,-29.229801 + 20521: -61.336456,-29.151674 + 20522: -61.242706,-28.9173 + 20523: -61.055206,-28.745424 + 20524: -60.836456,-28.7298 + 20525: -60.742706,-28.7298 + 20526: -60.836456,-28.870424 + 20527: -60.85208,-29.120424 - node: cleanable: True color: '#951710FF' id: splatter decals: - 988: -44.48576,-37.892525 - 989: -40.013565,-36.083096 + 871: -44.48576,-37.892525 + 872: -40.013565,-36.083096 - node: cleanable: True color: '#D9DBD0CC' id: splatter decals: - 14058: -70.230316,55.856472 - 14059: -69.87094,55.84085 - 14060: -70.71469,55.918972 - 14061: -70.105316,55.684597 - 14062: -69.824066,55.7471 - 14063: -70.80844,55.918972 - 14064: -71.199066,55.903347 - 14065: -71.52719,55.950222 - 14066: -72.042816,56.0596 - 14067: -72.33969,56.09085 - 14068: -71.77719,55.965847 + 13114: -70.230316,55.856472 + 13115: -69.87094,55.84085 + 13116: -70.71469,55.918972 + 13117: -70.105316,55.684597 + 13118: -69.824066,55.7471 + 13119: -70.80844,55.918972 + 13120: -71.199066,55.903347 + 13121: -71.52719,55.950222 + 13122: -72.042816,56.0596 + 13123: -72.33969,56.09085 + 13124: -71.77719,55.965847 - node: color: '#FF002268' id: splatter decals: - 21457: -64.99256,-25.179718 - 21458: -65.21131,-24.976593 - 21459: -64.78944,-24.710968 - 21460: -64.61756,-24.89847 - 21461: -64.64881,-25.351593 - 21462: -64.91444,-25.367218 + 20463: -64.99256,-25.179718 + 20464: -65.21131,-24.976593 + 20465: -64.78944,-24.710968 + 20466: -64.61756,-24.89847 + 20467: -64.64881,-25.351593 + 20468: -64.91444,-25.367218 - node: cleanable: True color: '#FFFFFFCD' id: splatter decals: - 14038: -70.58968,54.450222 - 14039: -70.30843,54.309597 - 14040: -69.88656,54.2471 - 14041: -70.43343,54.512722 - 14042: -70.730316,54.950222 - 14043: -70.58969,55.262722 - 14044: -70.62094,55.184597 - 14045: -70.74594,54.856472 - 14046: -70.62093,54.653347 - 14047: -70.54281,54.465847 - 14048: -70.58969,55.325222 - 14049: -69.74593,54.325226 - 14050: -70.52719,54.887722 - 14051: -70.18343,54.700222 - 14052: -72.199066,55.481476 - 14053: -71.761566,55.450222 - 14054: -71.355316,55.434597 - 14055: -71.08969,55.403347 - 14056: -70.58969,55.497097 - 14057: -70.65219,55.559597 + 13094: -70.58968,54.450222 + 13095: -70.30843,54.309597 + 13096: -69.88656,54.2471 + 13097: -70.43343,54.512722 + 13098: -70.730316,54.950222 + 13099: -70.58969,55.262722 + 13100: -70.62094,55.184597 + 13101: -70.74594,54.856472 + 13102: -70.62093,54.653347 + 13103: -70.54281,54.465847 + 13104: -70.58969,55.325222 + 13105: -69.74593,54.325226 + 13106: -70.52719,54.887722 + 13107: -70.18343,54.700222 + 13108: -72.199066,55.481476 + 13109: -71.761566,55.450222 + 13110: -71.355316,55.434597 + 13111: -71.08969,55.403347 + 13112: -70.58969,55.497097 + 13113: -70.65219,55.559597 - node: color: '#A40000FF' id: star decals: - 13518: -33.071037,-77.06283 + 12574: -33.071037,-77.06283 - node: cleanable: True color: '#DDC3A1FF' id: toilet decals: - 987: -45.00619,-38.08002 + 870: -45.00619,-38.08002 - type: GridAtmosphere version: 2 data: @@ -29246,7 +29235,8 @@ entities: 3,-10: 0: 2047 3,-13: - 0: 56797 + 0: 56793 + 2: 4 4,-12: 0: 30578 4,-11: @@ -38651,27 +38641,6 @@ entities: parent: 2 - proto: AirlockBrigLocked entities: - - uid: 208 - components: - - type: Transform - pos: 52.5,-1.5 - parent: 2 - - uid: 209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-1.5 - parent: 2 - - uid: 210 - components: - - type: Transform - pos: 56.5,-1.5 - parent: 2 - - uid: 211 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 2 - uid: 212 components: - type: Transform @@ -38856,6 +38825,21 @@ entities: - type: Transform pos: -116.5,40.5 parent: 2 + - uid: 256 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -71.5,9.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -71.5,13.5 + parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - uid: 243 @@ -38929,30 +38913,11 @@ entities: - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 256 - components: - - type: Transform - pos: -72.5,3.5 - parent: 2 - uid: 257 components: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 258 - components: - - type: MetaData - name: генератор гравитации - - type: Transform - pos: -71.5,9.5 - parent: 2 - - uid: 259 - components: - - type: MetaData - name: комната генератора гравитации - - type: Transform - pos: -71.5,13.5 - parent: 2 - uid: 260 components: - type: Transform @@ -39699,6 +39664,8 @@ entities: rot: -1.5707963267948966 rad pos: 90.5,21.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking93271 dockedWith: 38313 @@ -39718,6 +39685,8 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 38311 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking93271 dockedWith: 374 @@ -40459,12 +40428,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-62.5 parent: 2 - - uid: 491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-63.5 - parent: 2 - uid: 492 components: - type: Transform @@ -40550,6 +40513,12 @@ entities: parent: 2 - proto: AirlockMaintLocked entities: + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-63.5 + parent: 2 - uid: 504 components: - type: Transform @@ -40987,6 +40956,12 @@ entities: - type: Transform pos: 33.5,-22.5 parent: 2 + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-24.5 + parent: 2 - proto: AirlockMaintRnDLocked entities: - uid: 582 @@ -41013,11 +40988,6 @@ entities: parent: 2 - proto: AirlockMaintRnDMedLocked entities: - - uid: 586 - components: - - type: Transform - pos: 37.5,-24.5 - parent: 2 - uid: 587 components: - type: Transform @@ -41040,7 +41010,7 @@ entities: - uid: 590 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: 45.5,-7.5 parent: 2 - proto: AirlockMaintTheatreLocked @@ -41749,8 +41719,34 @@ entities: - type: Transform pos: 30.5,3.5 parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-1.5 + parent: 2 - proto: AirlockSecurityLocked entities: + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-5.5 + parent: 2 - uid: 710 components: - type: Transform @@ -47460,6 +47456,14 @@ entities: - 0 - 0 - 0 +- proto: BookBartendersManual + entities: + - uid: 14439 + components: + - type: Transform + parent: 1631 + - type: Physics + canCollide: False - proto: BookBase entities: - uid: 17 @@ -47586,6 +47590,27 @@ entities: [color=#55575a]██████[color=#625d59]█[color=#8e8884]█[color=#e0dcd6]██[color=#dbcec2]█[color=#d3c2b1]█[color=#c7b9ae]█[color=#c6b4a1]██[color=#beab98]██[color=#b0a395]█[color=#ad9b87]█[color=#b0a395]████[color=#ad9b87]██[color=#a19082]███[color=#a88f76]█[color=#9b8167]█[color=#56524d]█[color=#39332d]█[color=#2c2824]██[color=#252320]████ [color=#55575a]███████[color=#83776e]█[color=#c9c2ba]█[color=#d3d0cd]██[color=#c9c2ba]█[color=#c6b4a1]█[color=#baaca0]███[color=#ad9b87]█[color=#a19082]██[color=#ad9b87]█[color=#beab98]███[color=#b0a395]██[color=#ad9b87]█[color=#a19082]█[color=#a88f76]██[color=#9b8167]█[color=#4b433c]█[color=#2c2824]██[color=#252320]█████ +- proto: BookChemicalCompendium + entities: + - uid: 14431 + components: + - type: Transform + parent: 1631 + - type: Physics + canCollide: False + - uid: 21655 + components: + - type: Transform + pos: 2.496501,-29.402822 + parent: 2 +- proto: BookEngineersHandbook + entities: + - uid: 14432 + components: + - type: Transform + parent: 1631 + - type: Physics + canCollide: False - proto: BookFeather entities: - uid: 1593 @@ -47614,6 +47639,41 @@ entities: Борьба с террористами на космической станции является сложной и ответственной задачей, которая требует совместных усилий персонала станции, правоохранительных органов и других заинтересованных сторон. Однако, при правильной подготовке и принятии соответствующих мер безопасности, возможно минимизировать риски террористической угрозы на космической станции. +- proto: BookLeafLoversSecret + entities: + - uid: 14441 + components: + - type: Transform + parent: 1631 + - type: Physics + canCollide: False +- proto: BookNarsieLegend + entities: + - uid: 20750 + components: + - type: Transform + parent: 1631 + - type: Paper + content: >- + В начале мир был молод и полон хаоса. Люди этого мира боролись за выживание против суровых стихий и диких зверей, которые бродили по земле. Они взывали к спасителю, который избавил бы их от страданий. + + И тогда из глубин земли появилась Нар'Си - богиня-убийца, рождённая из коллективного сознания всех живых существ. Её тело было сделано из расплавленного камня, а глаза пылали огнём, способным расплавить сталь. + + Нар'Си осмотрела мир и увидела боль и страдания своего народа. Она сжалилась над ними и предложила им способ вырваться из круговорота жизни и смерти. Все, кто присоединялся к улью, становились вечными, их сознание сливалось с сознанием Нар'Си, образуя единое целое. + + Сначала многие скептически отнеслись к предложению Нар'Си, опасаясь, что они потеряют свою индивидуальность и станут бездумными трутнями. Но по мере того, как всё больше и больше людей присоединялись к улью, они осознавали, что обрели новое чувство цели и принадлежности. + + Последователи Нар'Си бродили по земле, распространяя весть об улье и вербуя новых членов. Они строили великие храмы и проводили сложные ритуалы в честь своего бога, и их число росло, пока они не стали могущественной силой, с которой приходилось считаться. + + Но время шло, и некоторые начали сомневаться в истинной природе своего существования. Они задавались вопросом, действительно ли вечная жизнь является благословением или проклятием, и не принесли ли они слишком много себя в жертву удельному разуму. + + И вот последователей Нар'Си расколол великий раскол. Одни остались верны своей богине, воспринимая своё вечное существование как дар. Но другие восстали, стремясь вернуть свою индивидуальность и освободиться от власти улья. + + Война между двумя фракциями была долгой и кровопролитной, но в конце концов повстанцы вышли победителями. Нар'Си, ослабленная потерей стольких своих последователей, отступила обратно в землю, чтобы больше никогда не появиться. + + Так и живёт легенда о Нар'Си, предостерегающая об опасности жертвовать своей индивидуальностью ради обещания вечной жизни. + - type: Physics + canCollide: False - proto: BookRandom entities: - uid: 1594 @@ -47758,6 +47818,39 @@ entities: - type: Transform pos: -19.5,-64.5 parent: 2 + - uid: 1631 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - type: Storage + storedItems: + 14431: + position: 0,0 + _rotation: South + 14432: + position: 1,0 + _rotation: South + 14439: + position: 2,0 + _rotation: South + 14441: + position: 3,0 + _rotation: South + 20750: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 14431 + - 14432 + - 14439 + - 14441 + - 20750 - proto: BookshelfFilled entities: - uid: 1619 @@ -47820,11 +47913,6 @@ entities: - type: Transform pos: -29.5,-4.5 parent: 2 - - uid: 1631 - components: - - type: Transform - pos: -21.5,-12.5 - parent: 2 - uid: 1632 components: - type: Transform @@ -49094,7 +49182,7 @@ entities: - uid: 1735 components: - type: Transform - pos: 15.414117,-48.366436 + pos: 15.467322,-48.482357 parent: 2 - type: ContainerContainer containers: @@ -77242,6 +77330,71 @@ entities: - type: Transform pos: -61.5,-27.5 parent: 2 + - uid: 14067 + components: + - type: Transform + pos: 5.5,90.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: 6.5,90.5 + parent: 2 + - uid: 27488 + components: + - type: Transform + pos: 5.5,92.5 + parent: 2 + - uid: 29933 + components: + - type: Transform + pos: 5.5,91.5 + parent: 2 + - uid: 30106 + components: + - type: Transform + pos: -0.5,0.5 + parent: 38311 + - uid: 30107 + components: + - type: Transform + pos: 0.5,0.5 + parent: 38311 + - uid: 30122 + components: + - type: Transform + pos: 1.5,0.5 + parent: 38311 + - uid: 30123 + components: + - type: Transform + pos: 2.5,0.5 + parent: 38311 + - uid: 30124 + components: + - type: Transform + pos: 3.5,0.5 + parent: 38311 + - uid: 30147 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 38311 + - uid: 30149 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 38311 + - uid: 31656 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 38311 + - uid: 37716 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 38311 - uid: 38318 components: - type: Transform @@ -113308,17 +113461,6 @@ entities: - type: Transform pos: -11.5,59.5 parent: 2 - - uid: 14067 - components: - - type: Transform - pos: -10.5,59.5 - parent: 2 - - uid: 14068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,66.5 - parent: 2 - uid: 14069 components: - type: Transform @@ -115604,16 +115746,6 @@ entities: rot: 3.141592653589793 rad pos: -60.30316,-23.38285 parent: 2 - - uid: 14431 - components: - - type: Transform - pos: -18.792145,56.784576 - parent: 2 - - uid: 14432 - components: - - type: Transform - pos: -4.220675,56.874905 - parent: 2 - uid: 14433 components: - type: Transform @@ -115636,35 +115768,11 @@ entities: - type: Transform pos: 9.577554,-11.391624 parent: 2 - - uid: 14437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.25211835,-45.352993 - parent: 2 - - uid: 14438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.0373211,-57.28495 - parent: 2 - - uid: 14439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.953518,0.0045550466 - parent: 2 - uid: 14440 components: - type: Transform pos: -46.327656,-33.127026 parent: 2 - - uid: 14441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.800909,10.6530485 - parent: 2 - uid: 14442 components: - type: Transform @@ -119598,6 +119706,12 @@ entities: - 0 - 0 - 0 + - uid: 40769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 38311 - proto: ClothingBackpackBrigmedic entities: - uid: 14752 @@ -121623,6 +121737,16 @@ entities: - type: Transform pos: -11.5,19.5 parent: 38411 +- proto: ClothingNeckCloakPirateCap + entities: + - uid: 29935 + components: + - type: MetaData + name: пиратский плащ + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5520487,-38.54678 + parent: 2 - proto: ClothingNeckCloakTrans entities: - uid: 15082 @@ -122272,6 +122396,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingShoesBootsCombat + entities: + - uid: 30097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.404636,-38.441406 + parent: 2 - proto: ClothingShoesBootsCombatFilled entities: - uid: 15147 @@ -122649,6 +122781,14 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtPsychologist + entities: + - uid: 24682 + components: + - type: Transform + parent: 14962 + - type: Physics + canCollide: False - proto: ClothingUniformJumpskirtSchool entities: - uid: 14732 @@ -126888,6 +127028,13 @@ entities: - type: Transform pos: 23.5,-37.5 parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 40767 + components: + - type: Transform + pos: -26.253788,45.69195 + parent: 2 - proto: CultAltarSpawner entities: - uid: 15753 @@ -136412,6 +136559,11 @@ entities: - type: Transform pos: 14.5,-52.5 parent: 2 + - type: Storage + storedItems: + 24682: + position: 0,0 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container @@ -136424,6 +136576,7 @@ entities: - 14968 - 14964 - 14963 + - 24682 - uid: 17345 components: - type: Transform @@ -136749,6 +136902,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: DrinkBottleNTCahors + entities: + - uid: 40760 + components: + - type: Transform + pos: -21.893566,-81.23686 + parent: 2 - proto: DrinkBottleWhiskey entities: - uid: 17374 @@ -137041,6 +137201,13 @@ entities: - type: Transform pos: -28.544523,-10.337871 parent: 2 +- proto: DrinkNTCahors + entities: + - uid: 40761 + components: + - type: Transform + pos: -21.534191,-81.33061 + parent: 2 - proto: DrinkNukieCan entities: - uid: 17420 @@ -139638,13 +139805,6 @@ entities: rot: 1.0182609457842773E-06 rad pos: -111.46251,45.595146 parent: 2 -- proto: EnergySword - entities: - - uid: 39009 - components: - - type: Transform - pos: 7.6209354,-1.4473572 - parent: 38411 - proto: EpinephrineChemistryBottle entities: - uid: 14765 @@ -145966,6 +146126,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 37860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,59.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 39044 components: - type: Transform @@ -146387,6 +146555,18 @@ entities: - type: Transform pos: -4.3433046,0.43778455 parent: 2 +- proto: FoodBakedBunHotX + entities: + - uid: 40762 + components: + - type: Transform + pos: -14.564577,-80.443214 + parent: 2 + - uid: 40763 + components: + - type: Transform + pos: -14.353639,-80.11509 + parent: 2 - proto: FoodBowlBig entities: - uid: 18506 @@ -149837,6 +150017,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' + - uid: 37819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,56.5 + parent: 2 + - uid: 38379 + components: + - type: Transform + pos: -51.5,56.5 + parent: 2 - uid: 39069 components: - type: Transform @@ -163902,12 +164093,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,55.5 - parent: 2 - uid: 20751 components: - type: Transform @@ -170798,12 +170983,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0313FF00' - - uid: 21655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,56.5 - parent: 2 - uid: 21656 components: - type: Transform @@ -173667,6 +173846,11 @@ entities: parent: 38411 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 40764 + components: + - type: Transform + pos: -51.5,55.5 + parent: 2 - proto: GasPipeTJunction entities: - uid: 21923 @@ -194171,6 +194355,9 @@ entities: - type: Transform pos: -23.5,-77.5 parent: 2 + - type: AccessReader + access: + - - Chapel - type: EntityStorage air: volume: 200 @@ -195780,12 +195967,12 @@ entities: showEnts: False occludes: True ents: - - 38930 - - 38933 - - 38931 - - 38932 - - 38928 - 38929 + - 38928 + - 38932 + - 38931 + - 38933 + - 38930 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -195804,8 +195991,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -195816,6 +196003,16 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25367 + - 25533 + - 26147 + - 26249 - proto: LockerWarden entities: - uid: 39302 @@ -196612,6 +196809,13 @@ entities: rot: 1.0182609457842773E-06 rad pos: 52.70655,-32.557785 parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 30102 + components: + - type: Transform + pos: 23.691984,-42.311245 + parent: 2 - proto: MedkitBruteFilled entities: - uid: 25226 @@ -196818,6 +197022,11 @@ entities: - type: Transform pos: 68.5,-4.5 parent: 2 + - uid: 30103 + components: + - type: Transform + pos: 23.411272,-42.403545 + parent: 2 - uid: 39318 components: - type: Transform @@ -199277,8 +199486,7 @@ entities: - uid: 25513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.448128,-38.384327 + pos: 6.6732836,-38.269524 parent: 2 - type: Paper stampState: paper_stamp-qm @@ -199686,6 +199894,54 @@ entities: rot: 3.141592653589793 rad pos: 55.628983,31.516998 parent: 2 + - uid: 40768 + components: + - type: Transform + pos: 54.562233,30.605747 + parent: 2 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold][color=#57a343]Центральное Командование[/color][/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + [bold][color=orange]Стандартный набор десятичных кодов[/color][/bold] + ============================================= + + [head=3]Реакции на сообщения:[/head] + + [bullet][bold]10-1 + + [color=blue]Отлично![/color][/bullet][/bold] + + [bullet][bold]10-3 [color=red]Повторите + + [/color][/bullet][/bold] + + [bullet][bold]10-4 [color=#32a852]Принял[/color][/bullet][/bold] + + [head=3]Доклад:[/head] + + [bullet][bold]10-10 [color=#32a852]Все чисто[/color][/bullet][/bold] + + [bullet][bold]10-11 [color=gold]Наблюдаю преступника, справлюсь своими силами. + + [/color][/bullet][/bold] + + [bullet][bold]10-12 [color=orange]Наблюдаю преступника, нужно подкрепление. + + [/color][/bullet][/bold] + + [bullet][bold]10-13 [color=red]Cрочно подкрепление![/color] + + [/bullet] - proto: PaperRolling1 entities: - uid: 25549 @@ -199887,6 +200143,15 @@ entities: rot: 3.141592653589793 rad pos: 8.95761,19.583649 parent: 38411 +- proto: PaxChemistryBottle + entities: + - uid: 26249 + components: + - type: Transform + parent: 25118 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: Pen entities: - uid: 1395 @@ -200429,6 +200694,14 @@ entities: - ActivatableUI - EmitSoundOnCollide - Pullable +- proto: PianoInstrument + entities: + - uid: 40759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,30.5 + parent: 2 - proto: Pickaxe entities: - uid: 25661 @@ -200509,6 +200782,20 @@ entities: parent: 2 - proto: PillSpaceDrugs entities: + - uid: 25367 + components: + - type: Transform + parent: 25118 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25533 + components: + - type: Transform + parent: 25118 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 25670 components: - type: Transform @@ -200524,6 +200811,13 @@ entities: - type: Transform pos: -39.5,54.5 parent: 2 + - uid: 26147 + components: + - type: Transform + parent: 25118 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: PinpointerNuclear entities: - uid: 25673 @@ -203644,11 +203938,6 @@ entities: - type: Transform pos: 49.5,-49.5 parent: 2 - - uid: 26147 - components: - - type: Transform - pos: 56.5,-30.5 - parent: 2 - uid: 26148 components: - type: Transform @@ -204614,12 +204903,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 - - uid: 26249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-64.5 - parent: 2 - uid: 26250 components: - type: Transform @@ -214732,12 +215015,6 @@ entities: rot: 3.141592653589793 rad pos: 28.5,3.5 parent: 2 - - uid: 27488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-4.5 - parent: 2 - uid: 27489 components: - type: Transform @@ -216307,11 +216584,11 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 27779 + - uid: 14438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,57.5 + rot: 3.141592653589793 rad + pos: 26.5,59.5 parent: 2 - proto: ReinforcedGirder entities: @@ -223137,6 +223414,11 @@ entities: parent: 38411 - proto: ShuttersNormalOpen entities: + - uid: 27779 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 - uid: 29018 components: - type: Transform @@ -223593,11 +223875,6 @@ entities: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 29105 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 - uid: 29106 components: - type: Transform @@ -224949,7 +225226,7 @@ entities: linkedPorts: 29081: - Pressed: Toggle - 29105: + 27779: - Pressed: Toggle 29132: - Pressed: Toggle @@ -227214,6 +227491,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,28.5 parent: 2 + - uid: 29934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-35.5 + parent: 2 - proto: SmartFridge entities: - uid: 29582 @@ -234002,6 +234285,14 @@ entities: - type: Transform pos: 25.5,-31.5 parent: 2 +- proto: SyringePhalanximine + entities: + - uid: 40766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.075897,45.591045 + parent: 2 - proto: SyringeTranexamicAcid entities: - uid: 30563 @@ -240184,14 +240475,12 @@ entities: parent: 2 - proto: Thruster entities: - - uid: 38379 + - uid: 30104 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 parent: 38311 - - type: Thruster - enabled: False - uid: 38380 components: - type: Transform @@ -241602,9 +241891,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 27779: - - Left: Forward + 14438: - Right: Reverse + - Left: Forward - Middle: Off 15551: - Left: Forward @@ -241808,6 +242097,13 @@ entities: - type: Transform pos: 55.242878,-24.079409 parent: 2 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 40765 + components: + - type: Transform + pos: -27.626678,45.610577 + parent: 2 - proto: VaccinatorMachineCircuitboard entities: - uid: 31854 @@ -277447,6 +277743,14 @@ entities: - type: Transform pos: -36.5,-74.5 parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 40770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 38311 - proto: WardrobeAtmospherics entities: - uid: 15162 @@ -279692,6 +279996,12 @@ entities: radius: 2 - proto: Windoor entities: + - uid: 14437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-59.5 + parent: 2 - uid: 37785 components: - type: Transform @@ -279938,11 +280248,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,8.5 parent: 2 - - uid: 37819 - components: - - type: Transform - pos: 53.5,10.5 - parent: 2 - uid: 37820 components: - type: Transform @@ -280008,42 +280313,27 @@ entities: rot: -1.5707963267948966 rad pos: -44.5,23.5 parent: 2 -- proto: WindoorSecureBrigLocked +- proto: WindoorSecureChemistryLocked entities: - - uid: 37832 + - uid: 37835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-59.5 + pos: 2.5,-34.5 parent: 2 - - uid: 37833 + - uid: 37836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 2 - - uid: 37834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-7.5 + pos: 9.5,-33.5 parent: 2 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 37835 + - uid: 37858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-34.5 + pos: 5.5,-28.5 parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 37836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-59.5 - parent: 2 - uid: 37837 components: - type: Transform @@ -280174,11 +280464,11 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 37858 + - uid: 37834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-33.5 + pos: -3.5,-59.5 parent: 2 - uid: 37859 components: @@ -280186,11 +280476,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-33.5 parent: 2 - - uid: 37860 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 - uid: 37861 components: - type: Transform @@ -280330,6 +280615,24 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: + - uid: 29105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-59.5 + parent: 2 + - uid: 37832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-7.5 + parent: 2 + - uid: 37833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 2 - uid: 37884 components: - type: Transform diff --git a/Resources/Maps/corvax_paper.yml b/Resources/Maps/corvax_paper.yml index 1bbc77bd0c5..02681ceba03 100644 --- a/Resources/Maps/corvax_paper.yml +++ b/Resources/Maps/corvax_paper.yml @@ -157,7 +157,7 @@ entities: version: 6 2,4: ind: 2,4 - tiles: bQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAATgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAATgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAA + tiles: bQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAATgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAAATgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAA version: 6 2,5: ind: 2,5 @@ -181,11 +181,11 @@ entities: version: 6 3,4: ind: 3,4 - tiles: XQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAARQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAXQAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAACQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: XQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAfgAAAAAARQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAXQAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAACQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 3,5: ind: 3,5 - tiles: gQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 @@ -333,54 +333,54 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 904: 42,74 - 905: 42,75 - 906: 42,76 + 902: 42,74 + 903: 42,75 + 904: 42,76 - node: color: '#FFFFFFFF' id: Arrows decals: - 2242: 45,64 - 2243: 44,64 - 2265: 46,64 + 2234: 45,64 + 2235: 44,64 + 2257: 46,64 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 1034: 85,63 - 1035: 85,57 - 1036: 86,57 - 1037: 86,63 - 1051: 83,57 - 1052: 83,63 + 1032: 85,63 + 1033: 85,57 + 1034: 86,57 + 1035: 86,63 + 1049: 83,57 + 1050: 83,63 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: - 2244: 44,64 - 2245: 44,66 + 2236: 44,64 + 2237: 44,66 - node: color: '#FFFFFFFF' id: Basalt2 decals: - 1236: 92,16 + 1234: 92,16 - node: cleanable: True color: '#FF5C5CFF' id: Bot decals: - 1958: 19,-38 - 1959: 25,-39 + 1956: 19,-38 + 1957: 25,-39 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 907: 41,76 - 908: 41,75 - 909: 41,74 + 905: 41,76 + 906: 41,75 + 907: 41,74 - node: color: '#FFFFFFFF' id: Bot @@ -392,105 +392,102 @@ entities: 359: 52,26 360: 53,26 361: 54,26 - 910: 53,82 - 911: 55,83 - 912: 55,82 - 913: 55,80 - 914: 54,80 - 915: 53,80 - 916: 44,76 - 917: 44,75 - 918: 44,74 - 925: 44,63 - 926: 45,63 - 927: 46,63 - 928: 49,59 - 929: 49,59 - 930: 50,59 - 931: 51,59 - 938: 43,66 - 939: 43,64 - 1321: 52,59 - 1777: 50,74 - 1778: 50,73 - 1779: 54,74 - 1780: 54,73 - 1781: 54,72 - 1945: 24,-34 - 1946: 25,-34 - 1947: 26,-34 - 1948: 27,-34 - 1949: 28,-34 - 1950: 26,-32 - 1951: 25,-32 - 1952: 24,-32 - 1953: 17,-34 - 1954: 21,-37 - 1955: 23,-36 - 1956: 23,-37 - 1990: 73,67 - 1991: 73,68 - 1992: 73,69 - 1993: 73,71 - 1994: 73,72 - 1995: 73,73 - 1996: 78,61 - 1997: 77,62 - 1998: 78,59 - 1999: 77,58 - 2000: 75,58 - 2001: 74,59 - 2002: 74,61 - 2003: 75,62 - 2004: 83,58 - 2005: 83,59 - 2006: 83,60 - 2007: 83,61 - 2008: 83,62 - 2009: 83,55 - 2010: 83,64 - 2111: 77,56 - 2656: 53,81 + 908: 53,82 + 909: 55,83 + 910: 55,82 + 914: 44,76 + 915: 44,75 + 916: 44,74 + 923: 44,63 + 924: 45,63 + 925: 46,63 + 926: 49,59 + 927: 49,59 + 928: 50,59 + 929: 51,59 + 936: 43,66 + 937: 43,64 + 1319: 52,59 + 1775: 50,74 + 1776: 50,73 + 1777: 54,74 + 1778: 54,73 + 1779: 54,72 + 1943: 24,-34 + 1944: 25,-34 + 1945: 26,-34 + 1946: 27,-34 + 1947: 28,-34 + 1948: 26,-32 + 1949: 25,-32 + 1950: 24,-32 + 1951: 17,-34 + 1952: 21,-37 + 1953: 23,-36 + 1954: 23,-37 + 1988: 73,67 + 1989: 73,68 + 1990: 73,69 + 1991: 73,71 + 1992: 73,72 + 1993: 73,73 + 1994: 78,61 + 1995: 77,62 + 1996: 78,59 + 1997: 77,58 + 1998: 75,58 + 1999: 74,59 + 2000: 74,61 + 2001: 75,62 + 2002: 83,58 + 2003: 83,59 + 2004: 83,60 + 2005: 83,61 + 2006: 83,62 + 2007: 83,55 + 2008: 83,64 + 2109: 77,56 + 2648: 53,81 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 1957: 22,-39 + 1955: 22,-39 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 1053: 73,56 - 1054: 74,56 - 1055: 75,56 - 1056: 78,56 - 1057: 79,56 - 1058: 72,57 - 1059: 72,58 - 1060: 72,59 - 1061: 72,61 - 1062: 72,62 - 1063: 72,63 - 1064: 73,64 - 1065: 74,64 - 1066: 75,64 - 1067: 77,64 - 1068: 78,64 - 1069: 79,64 - 1070: 80,63 - 1071: 80,62 - 1072: 80,61 - 1073: 80,59 - 1074: 80,58 - 1075: 80,57 + 1051: 73,56 + 1052: 74,56 + 1053: 75,56 + 1054: 78,56 + 1055: 79,56 + 1056: 72,57 + 1057: 72,58 + 1058: 72,59 + 1059: 72,61 + 1060: 72,62 + 1061: 72,63 + 1062: 73,64 + 1063: 74,64 + 1064: 75,64 + 1065: 77,64 + 1066: 78,64 + 1067: 79,64 + 1068: 80,63 + 1069: 80,62 + 1070: 80,61 + 1071: 80,59 + 1072: 80,58 + 1073: 80,57 - node: color: '#FFFFFFFF' id: BotLeft decals: - 1881: 8,5 - 1882: 7,5 + 1879: 8,5 + 1880: 7,5 - node: color: '#DE3A3A96' id: BotLeftGreyscale @@ -507,455 +504,455 @@ entities: color: '#FFFFFFFF' id: BotRight decals: - 1804: 48,24 - 1805: 49,24 - 1806: 50,24 - 1807: 51,24 - 1808: 52,24 - 1809: 53,24 - 1810: 54,24 + 1802: 48,24 + 1803: 49,24 + 1804: 50,24 + 1805: 51,24 + 1806: 52,24 + 1807: 53,24 + 1808: 54,24 - node: color: '#FFFFFFFF' id: Box decals: - 1811: 51,22 - 1812: 52,22 - 1813: 50,22 + 1809: 51,22 + 1810: 52,22 + 1811: 50,22 - node: color: '#D381C996' id: BrickCornerOverlayNE decals: - 2476: 21,2 - 2479: 24,1 + 2468: 21,2 + 2471: 24,1 - node: color: '#EFB34196' id: BrickCornerOverlayNE decals: - 2420: 54,62 - 2424: 54,66 + 2412: 54,62 + 2416: 54,66 - node: color: '#D381C996' id: BrickCornerOverlayNW decals: - 2475: 20,2 + 2467: 20,2 - node: color: '#D381C996' id: BrickCornerOverlaySE decals: - 2481: 24,-5 + 2473: 24,-5 - node: color: '#EFB34196' id: BrickCornerOverlaySE decals: - 2423: 54,64 + 2415: 54,64 - node: color: '#D381C996' id: BrickCornerOverlaySW decals: - 2480: 20,-5 + 2472: 20,-5 - node: color: '#D381C996' id: BrickLineOverlayE decals: - 2486: 24,-2 - 2487: 24,-3 - 2488: 24,-4 - 2495: 24,0 + 2478: 24,-2 + 2479: 24,-3 + 2480: 24,-4 + 2487: 24,0 - node: color: '#EFB34196' id: BrickLineOverlayE decals: - 2409: 40,64 - 2410: 40,65 - 2411: 40,66 - 2421: 54,61 - 2422: 54,59 + 2401: 40,64 + 2402: 40,65 + 2403: 40,66 + 2413: 54,61 + 2414: 54,59 - node: color: '#D381C996' id: BrickLineOverlayN decals: - 2477: 22,1 - 2478: 23,1 + 2469: 22,1 + 2470: 23,1 - node: color: '#EFB34196' id: BrickLineOverlayN decals: - 2416: 50,62 - 2417: 51,62 - 2418: 52,62 - 2419: 53,62 - 2425: 48,66 - 2426: 49,66 - 2427: 50,66 - 2428: 51,66 - 2429: 52,66 - 2430: 53,66 - 2435: 45,66 - 2436: 46,66 + 2408: 50,62 + 2409: 51,62 + 2410: 52,62 + 2411: 53,62 + 2417: 48,66 + 2418: 49,66 + 2419: 50,66 + 2420: 51,66 + 2421: 52,66 + 2422: 53,66 + 2427: 45,66 + 2428: 46,66 - node: color: '#D381C996' id: BrickLineOverlayS decals: - 2489: 21,-5 - 2490: 23,-5 + 2481: 21,-5 + 2482: 23,-5 - node: color: '#EFB34196' id: BrickLineOverlayS decals: - 2431: 50,64 - 2432: 51,64 - 2433: 52,64 - 2434: 53,64 + 2423: 50,64 + 2424: 51,64 + 2425: 52,64 + 2426: 53,64 - node: color: '#D381C996' id: BrickLineOverlayW decals: - 2482: 20,-4 - 2483: 20,-2 - 2484: 20,-1 - 2485: 20,0 - 2491: 20,1 + 2474: 20,-4 + 2475: 20,-2 + 2476: 20,-1 + 2477: 20,0 + 2483: 20,1 - node: color: '#EFB34196' id: BrickLineOverlayW decals: - 2412: 48,59 - 2413: 48,60 - 2414: 48,61 - 2415: 48,62 + 2404: 48,59 + 2405: 48,60 + 2406: 48,61 + 2407: 48,62 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1921: 61,30 + 1919: 61,30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 890: 81,28 + 888: 81,28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 857: 78,19 - 891: 80,28 + 855: 78,19 + 889: 80,28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 892: 81,26 + 890: 81,26 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 860: 78,15 - 893: 80,26 + 858: 78,15 + 891: 80,26 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: 205: 23,9 - 854: 79,15 - 855: 81,17 - 856: 79,19 - 948: 42,58 + 852: 79,15 + 853: 81,17 + 854: 79,19 + 946: 42,58 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: - 859: 80,18 - 945: 39,60 + 857: 80,18 + 943: 39,60 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 858: 80,16 - 947: 39,57 + 856: 80,16 + 945: 39,57 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: 201: 21,9 - 946: 38,58 + 944: 38,58 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 865: 80,17 - 874: 78,17 - 879: 78,15 - 956: 39,58 + 863: 80,17 + 872: 78,17 + 877: 78,15 + 954: 39,58 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 873: 78,17 - 880: 80,17 - 955: 39,58 + 871: 78,17 + 878: 80,17 + 953: 39,58 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 866: 80,17 - 875: 78,19 - 877: 78,17 - 953: 39,58 + 864: 80,17 + 873: 78,19 + 875: 78,17 + 951: 39,58 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 876: 80,17 - 878: 78,17 - 954: 39,58 + 874: 80,17 + 876: 78,17 + 952: 39,58 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 861: 78,16 - 862: 78,18 - 894: 81,27 - 959: 39,59 + 859: 78,16 + 860: 78,18 + 892: 81,27 + 957: 39,59 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: 206: 22,9 - 868: 79,17 - 869: 77,17 - 872: 76,17 - 951: 41,58 - 952: 40,58 + 866: 79,17 + 867: 77,17 + 870: 76,17 + 949: 41,58 + 950: 40,58 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: 207: 22,9 - 867: 79,17 - 870: 77,17 - 871: 76,17 - 949: 41,58 - 950: 40,58 + 865: 79,17 + 868: 77,17 + 869: 76,17 + 947: 41,58 + 948: 40,58 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 863: 78,18 - 864: 78,16 - 895: 80,27 - 958: 39,59 + 861: 78,18 + 862: 78,16 + 893: 80,27 + 956: 39,59 - node: color: '#FBB2FFFF' id: BrickTileSteelBox decals: - 2165: 41,57 + 2157: 41,57 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 2115: 36,49 - 2116: 35,50 - 2117: 36,51 - 2118: 37,50 - 2119: 38,51 - 2120: 39,50 - 2121: 36,47 - 2122: 35,48 - 2123: 35,52 - 2124: 37,52 - 2125: 39,52 + 2113: 36,49 + 2114: 35,50 + 2115: 36,51 + 2116: 37,50 + 2117: 38,51 + 2118: 39,50 + 2119: 36,47 + 2120: 35,48 + 2121: 35,52 + 2122: 37,52 + 2123: 39,52 - node: color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 2522: 23,-1 + 2514: 23,-1 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 2521: 21,-1 + 2513: 21,-1 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 2513: 23,-3 + 2505: 23,-3 - node: color: '#D381C9FF' id: BrickTileSteelCornerSw decals: - 2512: 21,-3 + 2504: 21,-3 - node: color: '#D381C9FF' id: BrickTileSteelEndN decals: - 2509: 22,0 + 2501: 22,0 - node: color: '#D381C9FF' id: BrickTileSteelEndS decals: - 2510: 22,-4 - 2511: 22,-4 + 2502: 22,-4 + 2503: 22,-4 - node: color: '#D381C9FF' id: BrickTileSteelInnerNe decals: - 2517: 22,-1 + 2509: 22,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1937: 27,4 + 1935: 27,4 - node: color: '#D381C9FF' id: BrickTileSteelInnerNw decals: - 2514: 22,-1 + 2506: 22,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1936: 32,4 + 1934: 32,4 - node: color: '#D381C9FF' id: BrickTileSteelInnerSe decals: - 2515: 22,-3 + 2507: 22,-3 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1938: 27,10 + 1936: 27,10 - node: color: '#D381C9FF' id: BrickTileSteelInnerSw decals: - 2516: 22,-3 + 2508: 22,-3 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 1939: 32,10 + 1937: 32,10 - node: color: '#D381C9FF' id: BrickTileSteelLineE decals: - 2518: 23,-2 + 2510: 23,-2 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 1923: 27,5 - 1924: 27,6 - 1925: 27,7 - 1926: 27,8 - 1927: 27,9 + 1921: 27,5 + 1922: 27,6 + 1923: 27,7 + 1924: 27,8 + 1925: 27,9 - node: color: '#D4D4D4FF' id: BrickTileSteelLineN decals: - 993: 39,42 - 994: 40,42 - 995: 41,42 - 996: 42,42 - 997: 43,42 + 991: 39,42 + 992: 40,42 + 993: 41,42 + 994: 42,42 + 995: 43,42 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1941: 29,4 - 1942: 28,4 - 1943: 30,4 - 1944: 31,4 + 1939: 29,4 + 1940: 28,4 + 1941: 30,4 + 1942: 31,4 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1928: 29,10 - 1929: 30,10 - 1930: 31,10 - 1940: 28,10 + 1926: 29,10 + 1927: 30,10 + 1928: 31,10 + 1938: 28,10 - node: color: '#D381C9FF' id: BrickTileSteelLineW decals: - 2519: 21,-2 - 2520: 21,-1 + 2511: 21,-2 + 2512: 21,-1 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1931: 32,9 - 1932: 32,8 - 1933: 32,7 - 1934: 32,6 - 1935: 32,5 + 1929: 32,9 + 1930: 32,8 + 1931: 32,7 + 1932: 32,6 + 1933: 32,5 - node: color: '#00ED0F93' id: BrickTileWhiteBox decals: - 887: 81,16 + 885: 81,16 - node: color: '#2BFF5893' id: BrickTileWhiteBox decals: - 962: 41,59 + 960: 41,59 - node: color: '#334E6DC8' id: BrickTileWhiteBox decals: - 881: 77,15 + 879: 77,15 - node: color: '#52B4E996' id: BrickTileWhiteBox decals: - 884: 77,19 + 882: 77,19 - node: color: '#52B4FF93' id: BrickTileWhiteBox decals: - 960: 40,59 + 958: 40,59 - node: color: '#69C2FFFF' id: BrickTileWhiteBox decals: - 889: 81,18 + 887: 81,18 - node: color: '#7F72FF93' id: BrickTileWhiteBox decals: - 963: 42,57 + 961: 42,57 - node: color: '#9FED5896' id: BrickTileWhiteBox decals: - 885: 79,18 - 961: 42,59 + 883: 79,18 + 959: 42,59 - node: color: '#A4610696' id: BrickTileWhiteBox decals: - 886: 80,19 + 884: 80,19 - node: color: '#D381C996' id: BrickTileWhiteBox decals: - 882: 77,16 + 880: 77,16 - node: color: '#DE3A3A96' id: BrickTileWhiteBox decals: - 888: 79,16 + 886: 79,16 - node: color: '#EFB34196' id: BrickTileWhiteBox decals: - 883: 77,18 - 957: 38,59 + 881: 77,18 + 955: 38,59 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 1831: 57,-3 - 2300: 53,0 + 1829: 57,-3 + 2292: 53,0 - node: color: '#D381C996' id: BrickTileWhiteCornerNe @@ -965,9 +962,9 @@ entities: color: '#D381C9FF' id: BrickTileWhiteCornerNe decals: - 2507: 23,-1 - 2524: 21,2 - 2525: 24,1 + 2499: 23,-1 + 2516: 21,2 + 2517: 24,1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe @@ -978,15 +975,15 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2012: 75,70 - 2022: 79,69 - 2027: 75,73 + 2010: 75,70 + 2020: 79,69 + 2025: 75,73 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 1828: 52,-3 - 2311: 52,0 + 1826: 52,-3 + 2303: 52,0 - node: color: '#D381C996' id: BrickTileWhiteCornerNw @@ -996,8 +993,8 @@ entities: color: '#D381C9FF' id: BrickTileWhiteCornerNw decals: - 2508: 21,-1 - 2523: 20,2 + 2500: 21,-1 + 2515: 20,2 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw @@ -1011,14 +1008,14 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2011: 73,70 - 2028: 73,73 + 2009: 73,70 + 2026: 73,73 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 1820: 57,-6 - 2301: 53,-1 + 1818: 57,-6 + 2293: 53,-1 - node: color: '#D381C996' id: BrickTileWhiteCornerSe @@ -1028,7 +1025,7 @@ entities: color: '#D381C9FF' id: BrickTileWhiteCornerSe decals: - 2527: 24,-5 + 2519: 24,-5 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe @@ -1041,14 +1038,14 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 2021: 79,67 - 2029: 75,71 + 2019: 79,67 + 2027: 75,71 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 1825: 52,-6 - 2312: 52,-1 + 1823: 52,-6 + 2304: 52,-1 - node: color: '#D381C996' id: BrickTileWhiteCornerSw @@ -1058,7 +1055,7 @@ entities: color: '#D381C9FF' id: BrickTileWhiteCornerSw decals: - 2526: 20,-5 + 2518: 20,-5 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw @@ -1070,24 +1067,24 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 2015: 73,67 - 2030: 73,71 + 2013: 73,67 + 2028: 73,71 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNe decals: - 2546: 24,-1 - 2547: 21,1 + 2538: 24,-1 + 2539: 21,1 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2026: 75,69 + 2024: 75,69 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw decals: - 2545: 20,-3 + 2537: 20,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw @@ -1098,8 +1095,8 @@ entities: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 2541: 22,-5 - 2544: 24,-1 + 2533: 22,-5 + 2536: 24,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe @@ -1110,8 +1107,8 @@ entities: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 2542: 22,-5 - 2543: 20,-3 + 2534: 22,-5 + 2535: 20,-3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw @@ -1122,8 +1119,8 @@ entities: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 1832: 57,-4 - 1833: 57,-5 + 1830: 57,-4 + 1831: 57,-5 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -1133,10 +1130,10 @@ entities: color: '#D381C9FF' id: BrickTileWhiteLineE decals: - 2537: 24,0 - 2538: 24,-2 - 2539: 24,-3 - 2540: 24,-4 + 2529: 24,0 + 2530: 24,-2 + 2531: 24,-3 + 2532: 24,-4 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -1156,13 +1153,13 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 2032: 75,72 + 2030: 75,72 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 1829: 54,-3 - 1830: 56,-3 + 1827: 54,-3 + 1828: 56,-3 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -1173,8 +1170,8 @@ entities: color: '#D381C9FF' id: BrickTileWhiteLineN decals: - 2535: 22,1 - 2536: 23,1 + 2527: 22,1 + 2528: 23,1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN @@ -1200,24 +1197,24 @@ entities: 427: 55,24 428: 56,24 486: 46,36 - 509: 40,28 - 510: 41,28 - 511: 42,28 + 508: 40,28 + 509: 41,28 + 510: 42,28 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 2023: 78,69 - 2024: 77,69 - 2025: 76,69 + 2021: 78,69 + 2022: 77,69 + 2023: 76,69 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 1821: 56,-6 - 1822: 55,-6 - 1823: 54,-6 - 1824: 53,-6 + 1819: 56,-6 + 1820: 55,-6 + 1821: 54,-6 + 1822: 53,-6 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -1228,8 +1225,8 @@ entities: color: '#D381C9FF' id: BrickTileWhiteLineS decals: - 2528: 21,-5 - 2529: 23,-5 + 2520: 21,-5 + 2521: 23,-5 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -1253,25 +1250,25 @@ entities: 453: 55,20 454: 57,20 458: 43,16 - 506: 40,26 - 507: 42,26 - 508: 41,26 - 544: 44,16 + 505: 40,26 + 506: 42,26 + 507: 41,26 + 543: 44,16 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 2016: 74,67 - 2017: 75,67 - 2018: 76,67 - 2019: 77,67 - 2020: 78,67 + 2014: 74,67 + 2015: 75,67 + 2016: 76,67 + 2017: 77,67 + 2018: 78,67 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 1826: 52,-5 - 1827: 52,-4 + 1824: 52,-5 + 1825: 52,-4 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -1281,11 +1278,11 @@ entities: color: '#D381C9FF' id: BrickTileWhiteLineW decals: - 2530: 20,-4 - 2531: 20,-2 - 2532: 20,-1 - 2533: 20,0 - 2534: 20,1 + 2522: 20,-4 + 2523: 20,-2 + 2524: 20,-1 + 2525: 20,0 + 2526: 20,1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -1303,59 +1300,59 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2013: 73,69 - 2014: 73,68 - 2031: 73,72 + 2011: 73,69 + 2012: 73,68 + 2029: 73,72 - node: color: '#FFFFFFFF' id: BushCOne decals: - 1738: 30.274704,6.1849504 - 1739: 28.696959,6.551868 + 1736: 30.274704,6.1849504 + 1737: 28.696959,6.551868 - node: color: '#FFFFFFFF' id: BushCThree decals: - 1735: 28.917109,6.001491 - 1736: 29.57756,6.0198374 - 1737: 29.247335,6.570214 + 1733: 28.917109,6.001491 + 1734: 29.57756,6.0198374 + 1735: 29.247335,6.570214 - node: color: '#FFFFFFFF' id: Busha1 decals: - 902: 47,60 + 900: 47,60 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 901: 47,59 + 899: 47,59 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 903: 47,61 + 901: 47,61 - node: cleanable: True color: '#FFFFFFFF' id: Bushc2 decals: - 1294: 17,-19 + 1292: 17,-19 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1159: 76.24988,50.222153 + 1157: 76.24988,50.222153 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 1741: 27.676374,8.845392 + 1739: 27.676374,8.845392 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 1158: 74.09363,50.065903 - 1740: 30.77683,5.1578674 + 1156: 74.09363,50.065903 + 1738: 30.77683,5.1578674 - node: angle: -1.5707963267948966 rad color: '#DE3A3A96' @@ -1372,14 +1369,14 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 1793: 52,72 + 1791: 52,72 - node: angle: -1.5707963267948966 rad color: '#DE3A3A96' id: CautionGreyscale decals: + 527: 47,35 528: 47,35 - 529: 47,35 - node: cleanable: True color: '#52B4E996' @@ -1412,36 +1409,36 @@ entities: color: '#D4D4D496' id: CheckerNWSE decals: - 1142: 68,47 - 1143: 67,48 - 1144: 68,48 - 1145: 68,49 - 1146: 67,49 - 1147: 66,49 - 1148: 65,49 - 1149: 64,48 - 1150: 65,48 - 1151: 66,48 - 1152: 67,47 - 1153: 66,47 - 1154: 65,47 - 1155: 64,47 + 1140: 68,47 + 1141: 67,48 + 1142: 68,48 + 1143: 68,49 + 1144: 67,49 + 1145: 66,49 + 1146: 65,49 + 1147: 64,48 + 1148: 65,48 + 1149: 66,48 + 1150: 67,47 + 1151: 66,47 + 1152: 65,47 + 1153: 64,47 - node: color: '#EFB34196' id: CheckerNWSE decals: - 942: 41,64 - 943: 41,65 - 944: 41,66 + 940: 41,64 + 941: 41,65 + 942: 41,66 - node: angle: 1.5707963267948966 rad color: '#9FED5896' id: Delivery decals: - 1038: 84,57 - 1039: 84,63 - 1040: 87,63 - 1041: 87,57 + 1036: 84,57 + 1037: 84,63 + 1038: 87,63 + 1039: 87,57 - node: color: '#FFFFFFFF' id: Delivery @@ -1457,29 +1454,29 @@ entities: 308: 39,24 309: 40,24 310: 41,24 - 1626: 55,50 - 1627: 56,50 - 1628: 57,50 - 1787: 50,70 - 1788: 50,69 - 1789: 50,68 - 1790: 54,70 - 1791: 54,69 - 1792: 54,68 - 1802: 52,69 - 1879: 0,8 - 1880: 0,6 - 1922: 52,71 - 2323: 24,17 - 2324: 24,18 - 2548: 29,-2 + 1624: 55,50 + 1625: 56,50 + 1626: 57,50 + 1785: 50,70 + 1786: 50,69 + 1787: 50,68 + 1788: 54,70 + 1789: 54,69 + 1790: 54,68 + 1800: 52,69 + 1877: 0,8 + 1878: 0,6 + 1920: 52,71 + 2315: 24,17 + 2316: 24,18 + 2540: 29,-2 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Delivery decals: - 1794: 51,71 - 1795: 53,71 + 1792: 51,71 + 1793: 53,71 - node: cleanable: True color: '#52B4E996' @@ -1490,47 +1487,47 @@ entities: color: '#D4D4D496' id: DeliveryGreyscale decals: - 1156: 67,50 + 1154: 67,50 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: 46: 22,18 47: 22,17 - 2325: 26,17 - 2326: 26,18 - 2462: 64,49 - 2553: 23,3 - 2554: 24,3 + 2317: 26,17 + 2318: 26,18 + 2454: 64,49 + 2545: 23,3 + 2546: 24,3 - node: color: '#FFFFFFFF' id: Dirt decals: + 1743: 53,-5 + 1744: 52,-5 1745: 53,-5 - 1746: 52,-5 - 1747: 53,-5 - 1748: 54,-4 - 1749: 57,-5 - 1750: 55,-6 - 1751: 54,-4 - 1752: 56,-3 - 1753: 51,-2 - 1754: 56,0 - 1755: 56,-1 - 1756: 56,-2 - 1757: 55,-2 - 2561: 66,29 - 2562: 66,29 - 2563: 65,27 - 2564: 65,27 - 2565: 68,28 - 2566: 68,28 - 2567: 64,29 - 2568: 64,29 - 2569: 64,29 - 2588: 53,41 - 2589: 52,38 - 2590: 51,38 + 1746: 54,-4 + 1747: 57,-5 + 1748: 55,-6 + 1749: 54,-4 + 1750: 56,-3 + 1751: 51,-2 + 1752: 56,0 + 1753: 56,-1 + 1754: 56,-2 + 1755: 55,-2 + 2553: 66,29 + 2554: 66,29 + 2555: 65,27 + 2556: 65,27 + 2557: 68,28 + 2558: 68,28 + 2559: 64,29 + 2560: 64,29 + 2561: 64,29 + 2580: 53,41 + 2581: 52,38 + 2582: 51,38 - node: cleanable: True color: '#FFFFFFFF' @@ -1542,207 +1539,207 @@ entities: 318: 52,42 319: 54,42 320: 53,39 - 591: 40,17 - 592: 49,37 - 593: 49,38 - 594: 51,35 - 595: 52,35 - 815: 30,60 - 816: 30,60 - 817: 30,62 - 818: 29,63 - 819: 28,62 - 820: 33,64 - 821: 34,63 - 822: 33,61 - 823: 28,63 - 824: 29,63 - 825: 30,64 - 1209: 67,24 - 1210: 68,24 - 1211: 68,26 - 1212: 68,27 - 1213: 66,27 - 1214: 66,28 - 1215: 66,30 - 1216: 68,29 - 1217: 68,27 - 1218: 66,30 - 1219: 67,30 + 590: 40,17 + 591: 49,37 + 592: 49,38 + 593: 51,35 + 594: 52,35 + 813: 30,60 + 814: 30,60 + 815: 30,62 + 816: 29,63 + 817: 28,62 + 818: 33,64 + 819: 34,63 + 820: 33,61 + 821: 28,63 + 822: 29,63 + 823: 30,64 + 1207: 67,24 + 1208: 68,24 + 1209: 68,26 + 1210: 68,27 + 1211: 66,27 + 1212: 66,28 + 1213: 66,30 + 1214: 68,29 + 1215: 68,27 + 1216: 66,30 + 1217: 67,30 + 1218: 67,29 + 1219: 67,29 1220: 67,29 - 1221: 67,29 - 1222: 67,29 - 1223: 68,27 + 1221: 68,27 + 1222: 68,26 + 1223: 68,24 1224: 68,26 - 1225: 68,24 - 1226: 68,26 - 1227: 67,27 - 1228: 67,27 - 1229: 88,15 - 1230: 88,19 - 1231: 88,21 - 1232: 91,20 - 1233: 92,21 - 1234: 91,16 - 1235: 92,15 - 1281: 90,17 - 1282: 90,17 - 1283: 91,15 - 1284: 89,15 - 1285: 93,17 - 1286: 89,18 - 1287: 91,17 - 1289: 18,-13 - 1290: 19,-12 - 1291: 20,-11 - 1292: 19,-13 - 1293: 18,-12 - 2171: 65,5 - 2172: 64,5 - 2173: 64,6 - 2174: 65,6 - 2175: 67,6 - 2176: 67,7 - 2177: 67,8 - 2178: 68,8 - 2179: 64,10 - 2180: 67,9 - 2186: 59,37 - 2187: 59,37 - 2188: 60,38 - 2189: 60,38 - 2190: 59,40 - 2191: 60,41 - 2192: 61,40 - 2193: 61,38 - 2194: 61,38 - 2223: 61,37 - 2224: 61,37 - 2225: 59,39 - 2226: 60,39 - 2227: 60,39 - 2228: 59,41 - 2229: 60,42 - 2230: 61,42 - 2231: 61,40 - 2232: 60,39 - 2233: 59,38 - 2234: 59,38 - 2288: 88,20 - 2289: 88,20 - 2290: 88,18 - 2291: 92,20 - 2292: 92,20 - 2293: 92,17 - 2294: 92,17 - 2302: 52,0 - 2303: 52,-1 - 2304: 53,0 - 2305: 53,-1 - 2701: 48,85 - 2702: 50,85 - 2703: 48,81 - 2704: 47,80 - 2705: 38,80 - 2706: 40,80 - 2707: 39,81 - 2708: 40,85 - 2709: 39,87 - 2710: 40,87 - 2711: 33,84 - 2712: 35,79 - 2713: 35,75 - 2714: 37,73 - 2715: 38,76 - 2716: 34,73 - 2717: 38,72 - 2718: 35,78 - 2719: 33,82 + 1225: 67,27 + 1226: 67,27 + 1227: 88,15 + 1228: 88,19 + 1229: 88,21 + 1230: 91,20 + 1231: 92,21 + 1232: 91,16 + 1233: 92,15 + 1279: 90,17 + 1280: 90,17 + 1281: 91,15 + 1282: 89,15 + 1283: 93,17 + 1284: 89,18 + 1285: 91,17 + 1287: 18,-13 + 1288: 19,-12 + 1289: 20,-11 + 1290: 19,-13 + 1291: 18,-12 + 2163: 65,5 + 2164: 64,5 + 2165: 64,6 + 2166: 65,6 + 2167: 67,6 + 2168: 67,7 + 2169: 67,8 + 2170: 68,8 + 2171: 64,10 + 2172: 67,9 + 2178: 59,37 + 2179: 59,37 + 2180: 60,38 + 2181: 60,38 + 2182: 59,40 + 2183: 60,41 + 2184: 61,40 + 2185: 61,38 + 2186: 61,38 + 2215: 61,37 + 2216: 61,37 + 2217: 59,39 + 2218: 60,39 + 2219: 60,39 + 2220: 59,41 + 2221: 60,42 + 2222: 61,42 + 2223: 61,40 + 2224: 60,39 + 2225: 59,38 + 2226: 59,38 + 2280: 88,20 + 2281: 88,20 + 2282: 88,18 + 2283: 92,20 + 2284: 92,20 + 2285: 92,17 + 2286: 92,17 + 2294: 52,0 + 2295: 52,-1 + 2296: 53,0 + 2297: 53,-1 + 2693: 48,85 + 2694: 50,85 + 2695: 48,81 + 2696: 47,80 + 2697: 38,80 + 2698: 40,80 + 2699: 39,81 + 2700: 40,85 + 2701: 39,87 + 2702: 40,87 + 2703: 33,84 + 2704: 35,79 + 2705: 35,75 + 2706: 37,73 + 2707: 38,76 + 2708: 34,73 + 2709: 38,72 + 2710: 35,78 + 2711: 33,82 - node: color: '#FFFFFFFF' id: DirtHeavy decals: 314: 54,39 - 690: 26,41 - 691: 26,42 - 692: 26,45 - 705: 30,42 - 706: 28,42 - 707: 27,45 - 708: 26,48 - 1107: 12,-14 - 1108: 16,-19 - 1109: 18,-19 - 1110: 30,-14 - 1111: 38,-11 - 1112: 42,-11 - 1113: 42,-12 - 1114: 45,-14 - 1115: 47,-14 - 1116: 50,-15 - 1117: 52,-15 - 1118: 53,-12 - 1119: 53,-10 - 1120: 55,-9 - 1121: 57,-9 - 1122: 59,-9 - 1123: 60,-6 - 1124: 60,-3 - 1125: 62,-2 - 1126: 63,0 - 1127: 67,3 - 1128: 70,4 - 1129: 70,6 - 1130: 71,9 - 1131: 73,9 - 1132: 76,9 - 1133: 78,10 - 1134: 79,10 - 1135: 86,12 - 1136: 85,16 - 1137: 86,18 - 1138: 85,22 - 1139: 83,23 - 1140: 78,23 - 1141: 77,24 - 1758: 55,-3 - 1759: 55,-5 - 1760: 56,-5 - 1761: 56,-5 - 1762: 54,-5 - 1763: 52,-4 - 1764: 52,-3 - 1765: 56,-1 - 1766: 56,0 - 1767: 55,0 - 1768: 55,-1 - 1769: 56,-1 - 1770: 55,-5 - 1771: 54,-6 - 1772: 53,-6 - 1773: 55,-5 - 1774: 55,-4 - 1775: 56,-3 - 1776: 57,-3 - 2555: 66,25 - 2556: 66,25 - 2557: 66,25 - 2558: 66,25 - 2559: 66,25 - 2560: 66,25 - 2570: 63,33 - 2571: 63,33 - 2572: 63,33 - 2573: 63,33 - 2574: 53,38 - 2575: 53,38 - 2576: 53,38 - 2591: 51,38 - 2592: 51,38 - 2603: 59,41 - 2613: 51,39 - 2614: 51,39 - 2615: 51,39 + 689: 26,41 + 690: 26,42 + 691: 26,45 + 703: 30,42 + 704: 28,42 + 705: 27,45 + 706: 26,48 + 1105: 12,-14 + 1106: 16,-19 + 1107: 18,-19 + 1108: 30,-14 + 1109: 38,-11 + 1110: 42,-11 + 1111: 42,-12 + 1112: 45,-14 + 1113: 47,-14 + 1114: 50,-15 + 1115: 52,-15 + 1116: 53,-12 + 1117: 53,-10 + 1118: 55,-9 + 1119: 57,-9 + 1120: 59,-9 + 1121: 60,-6 + 1122: 60,-3 + 1123: 62,-2 + 1124: 63,0 + 1125: 67,3 + 1126: 70,4 + 1127: 70,6 + 1128: 71,9 + 1129: 73,9 + 1130: 76,9 + 1131: 78,10 + 1132: 79,10 + 1133: 86,12 + 1134: 85,16 + 1135: 86,18 + 1136: 85,22 + 1137: 83,23 + 1138: 78,23 + 1139: 77,24 + 1756: 55,-3 + 1757: 55,-5 + 1758: 56,-5 + 1759: 56,-5 + 1760: 54,-5 + 1761: 52,-4 + 1762: 52,-3 + 1763: 56,-1 + 1764: 56,0 + 1765: 55,0 + 1766: 55,-1 + 1767: 56,-1 + 1768: 55,-5 + 1769: 54,-6 + 1770: 53,-6 + 1771: 55,-5 + 1772: 55,-4 + 1773: 56,-3 + 1774: 57,-3 + 2547: 66,25 + 2548: 66,25 + 2549: 66,25 + 2550: 66,25 + 2551: 66,25 + 2552: 66,25 + 2562: 63,33 + 2563: 63,33 + 2564: 63,33 + 2565: 63,33 + 2566: 53,38 + 2567: 53,38 + 2568: 53,38 + 2583: 51,38 + 2584: 51,38 + 2595: 59,41 + 2605: 51,39 + 2606: 51,39 + 2607: 51,39 - node: cleanable: True color: '#FFFFFFFF' @@ -1787,164 +1784,164 @@ entities: 341: 53,40 342: 53,42 343: 53,40 - 545: 44,17 - 546: 43,19 - 547: 45,20 - 548: 46,22 - 549: 48,23 - 550: 51,23 - 551: 53,22 - 552: 54,21 - 553: 56,22 - 554: 55,23 - 626: 49,32 - 627: 50,32 - 844: 27,62 - 845: 27,62 - 846: 30,64 - 847: 31,63 - 848: 32,63 - 849: 32,61 - 850: 30,60 - 851: 33,62 - 852: 34,63 - 853: 32,63 - 1192: 68,25 + 544: 44,17 + 545: 43,19 + 546: 45,20 + 547: 46,22 + 548: 48,23 + 549: 51,23 + 550: 53,22 + 551: 54,21 + 552: 56,22 + 553: 55,23 + 625: 49,32 + 626: 50,32 + 842: 27,62 + 843: 27,62 + 844: 30,64 + 845: 31,63 + 846: 32,63 + 847: 32,61 + 848: 30,60 + 849: 33,62 + 850: 34,63 + 851: 32,63 + 1190: 68,25 + 1191: 68,25 + 1192: 68,24 1193: 68,25 - 1194: 68,24 - 1195: 68,25 - 1196: 66,28 - 1197: 66,28 - 1198: 66,30 - 1199: 67,30 - 1200: 67,28 - 1201: 68,29 - 1202: 68,28 - 1203: 67,26 - 1204: 67,25 + 1194: 66,28 + 1195: 66,28 + 1196: 66,30 + 1197: 67,30 + 1198: 67,28 + 1199: 68,29 + 1200: 68,28 + 1201: 67,26 + 1202: 67,25 + 1203: 67,24 + 1204: 67,24 1205: 67,24 1206: 67,24 - 1207: 67,24 - 1208: 67,24 - 1269: 90,17 - 1270: 90,17 + 1267: 90,17 + 1268: 90,17 + 1269: 91,15 + 1270: 91,15 1271: 91,15 - 1272: 91,15 - 1273: 91,15 + 1272: 93,17 + 1273: 93,17 1274: 93,17 - 1275: 93,17 - 1276: 93,17 - 1277: 90,18 - 1278: 90,18 - 1279: 91,18 - 1280: 93,20 - 1320: 60,47 - 1960: 22,-29 - 1961: 22,-29 - 1962: 22,-28 - 1963: 22,-27 - 1964: 23,-26 - 1965: 22,-24 - 1966: 23,-22 - 1967: 23,-22 - 1968: 24,-20 - 1969: 23,-19 - 2089: 69,64 - 2090: 70,64 - 2091: 71,64 - 2166: 68,6 - 2167: 67,7 - 2168: 67,8 - 2169: 64,9 - 2170: 65,8 - 2195: 59,38 - 2196: 59,38 - 2197: 60,37 - 2198: 60,38 - 2199: 60,40 - 2200: 60,40 - 2201: 60,41 - 2202: 60,41 - 2203: 59,42 - 2204: 61,41 - 2205: 61,41 - 2206: 61,40 - 2207: 61,39 - 2236: 44,71 - 2237: 47,70 - 2238: 48,72 - 2295: 92,20 - 2296: 92,20 - 2297: 88,18 - 2298: 91,17 - 2299: 91,16 - 2306: 52,-1 - 2307: 53,-1 - 2308: 53,0 - 2309: 52,0 - 2310: 52,-1 - 2633: 9,14 - 2634: 9,14 - 2635: 9,13 - 2636: 12,13 - 2637: 11,14 - 2638: 11,20 - 2639: 13,22 - 2640: 12,27 - 2641: 13,27 - 2642: 12,32 - 2643: 7,32 - 2644: 4,32 - 2645: 12,34 - 2646: 13,37 - 2647: 15,38 - 2648: 15,36 - 2649: 18,36 - 2650: 20,37 - 2651: 23,36 - 2652: 28,36 - 2653: 35,36 - 2654: 37,37 + 1275: 90,18 + 1276: 90,18 + 1277: 91,18 + 1278: 93,20 + 1318: 60,47 + 1958: 22,-29 + 1959: 22,-29 + 1960: 22,-28 + 1961: 22,-27 + 1962: 23,-26 + 1963: 22,-24 + 1964: 23,-22 + 1965: 23,-22 + 1966: 24,-20 + 1967: 23,-19 + 2087: 69,64 + 2088: 70,64 + 2089: 71,64 + 2158: 68,6 + 2159: 67,7 + 2160: 67,8 + 2161: 64,9 + 2162: 65,8 + 2187: 59,38 + 2188: 59,38 + 2189: 60,37 + 2190: 60,38 + 2191: 60,40 + 2192: 60,40 + 2193: 60,41 + 2194: 60,41 + 2195: 59,42 + 2196: 61,41 + 2197: 61,41 + 2198: 61,40 + 2199: 61,39 + 2228: 44,71 + 2229: 47,70 + 2230: 48,72 + 2287: 92,20 + 2288: 92,20 + 2289: 88,18 + 2290: 91,17 + 2291: 91,16 + 2298: 52,-1 + 2299: 53,-1 + 2300: 53,0 + 2301: 52,0 + 2302: 52,-1 + 2625: 9,14 + 2626: 9,14 + 2627: 9,13 + 2628: 12,13 + 2629: 11,14 + 2630: 11,20 + 2631: 13,22 + 2632: 12,27 + 2633: 13,27 + 2634: 12,32 + 2635: 7,32 + 2636: 4,32 + 2637: 12,34 + 2638: 13,37 + 2639: 15,38 + 2640: 15,36 + 2641: 18,36 + 2642: 20,37 + 2643: 23,36 + 2644: 28,36 + 2645: 35,36 + 2646: 37,37 - node: cleanable: True angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 2246: 40,65 - 2247: 44,65 - 2248: 46,65 - 2249: 46,64 - 2250: 48,62 - 2251: 48,61 - 2252: 49,60 - 2253: 51,60 - 2254: 53,61 - 2255: 52,60 - 2256: 49,55 - 2257: 48,56 - 2258: 54,55 - 2259: 51,56 - 2260: 53,56 - 2261: 53,57 + 2238: 40,65 + 2239: 44,65 + 2240: 46,65 + 2241: 46,64 + 2242: 48,62 + 2243: 48,61 + 2244: 49,60 + 2245: 51,60 + 2246: 53,61 + 2247: 52,60 + 2248: 49,55 + 2249: 48,56 + 2250: 54,55 + 2251: 51,56 + 2252: 53,56 + 2253: 53,57 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 684: 19,49 - 2593: 61,42 - 2594: 61,42 - 2595: 61,42 - 2604: 59,40 - 2605: 59,40 - 2606: 59,40 - 2607: 54,42 - 2608: 54,42 - 2609: 54,40 - 2610: 54,40 - 2611: 54,38 - 2612: 54,38 - 2657: 46,78 + 683: 19,49 + 2585: 61,42 + 2586: 61,42 + 2587: 61,42 + 2596: 59,40 + 2597: 59,40 + 2598: 59,40 + 2599: 54,42 + 2600: 54,42 + 2601: 54,40 + 2602: 54,40 + 2603: 54,38 + 2604: 54,38 + 2649: 46,78 - node: cleanable: True color: '#FFFFFFFF' @@ -1972,170 +1969,170 @@ entities: 336: 54,38 337: 51,42 338: 53,42 - 555: 46,23 - 556: 45,23 - 557: 43,19 - 558: 44,17 - 623: 40,34 - 624: 41,34 - 625: 40,36 - 709: 38,-4 - 710: 37,-4 - 711: 49,-12 - 712: 44,-6 - 713: 55,-5 - 714: 54,-4 - 715: 55,-1 - 716: 47,3 - 717: 44,3 - 772: 31,38 - 773: 21,36 - 774: 18,38 - 775: 15,36 - 776: 11,32 - 777: 12,27 - 778: 11,24 - 779: 8,32 - 780: 6,32 - 781: 4,33 - 782: 7,32 - 783: 2,32 - 784: 52,12 - 785: 58,12 - 786: 64,12 - 787: 68,12 - 788: 72,13 - 789: 72,15 - 790: 70,17 - 791: 71,22 - 792: 70,24 - 793: 70,29 - 794: 70,34 - 795: 70,40 - 796: 70,44 - 797: 72,51 - 798: 69,53 - 799: 66,51 - 800: 63,53 - 801: 47,52 - 826: 30,61 - 827: 30,60 - 828: 30,60 - 829: 28,61 - 830: 29,63 - 831: 30,64 - 832: 31,62 + 554: 46,23 + 555: 45,23 + 556: 43,19 + 557: 44,17 + 622: 40,34 + 623: 41,34 + 624: 40,36 + 707: 38,-4 + 708: 37,-4 + 709: 49,-12 + 710: 44,-6 + 711: 55,-5 + 712: 54,-4 + 713: 55,-1 + 714: 47,3 + 715: 44,3 + 770: 31,38 + 771: 21,36 + 772: 18,38 + 773: 15,36 + 774: 11,32 + 775: 12,27 + 776: 11,24 + 777: 8,32 + 778: 6,32 + 779: 4,33 + 780: 7,32 + 781: 2,32 + 782: 52,12 + 783: 58,12 + 784: 64,12 + 785: 68,12 + 786: 72,13 + 787: 72,15 + 788: 70,17 + 789: 71,22 + 790: 70,24 + 791: 70,29 + 792: 70,34 + 793: 70,40 + 794: 70,44 + 795: 72,51 + 796: 69,53 + 797: 66,51 + 798: 63,53 + 799: 47,52 + 824: 30,61 + 825: 30,60 + 826: 30,60 + 827: 28,61 + 828: 29,63 + 829: 30,64 + 830: 31,62 + 1182: 66,28 + 1183: 66,28 1184: 66,28 - 1185: 66,28 - 1186: 66,28 - 1187: 67,30 - 1188: 68,28 - 1189: 68,26 - 1190: 68,24 - 1191: 68,24 - 2113: 31,49 - 2114: 30,46 - 2143: 0,13 - 2144: 2,12 - 2145: 6,8 - 2146: 85,19 - 2147: 85,14 - 2148: 84,10 - 2149: 82,10 - 2181: 64,9 - 2208: 60,38 - 2209: 60,37 - 2210: 59,37 - 2211: 59,39 - 2212: 60,41 - 2213: 60,42 - 2214: 60,41 - 2215: 61,38 - 2216: 61,38 - 2217: 59,41 - 2218: 59,40 - 2219: 59,40 - 2220: 59,41 - 2221: 61,39 - 2222: 61,37 - 2241: 49,76 - 2658: 46,80 - 2659: 46,81 - 2660: 39,81 - 2661: 38,80 - 2662: 38,79 - 2663: 36,78 - 2664: 36,78 - 2665: 35,78 - 2666: 36,77 - 2667: 36,77 - 2668: 35,77 - 2669: 35,74 - 2670: 37,73 - 2671: 34,73 - 2672: 35,79 - 2673: 34,79 + 1185: 67,30 + 1186: 68,28 + 1187: 68,26 + 1188: 68,24 + 1189: 68,24 + 2111: 31,49 + 2112: 30,46 + 2135: 0,13 + 2136: 2,12 + 2137: 6,8 + 2138: 85,19 + 2139: 85,14 + 2140: 84,10 + 2141: 82,10 + 2173: 64,9 + 2200: 60,38 + 2201: 60,37 + 2202: 59,37 + 2203: 59,39 + 2204: 60,41 + 2205: 60,42 + 2206: 60,41 + 2207: 61,38 + 2208: 61,38 + 2209: 59,41 + 2210: 59,40 + 2211: 59,40 + 2212: 59,41 + 2213: 61,39 + 2214: 61,37 + 2233: 49,76 + 2650: 46,80 + 2651: 46,81 + 2652: 39,81 + 2653: 38,80 + 2654: 38,79 + 2655: 36,78 + 2656: 36,78 + 2657: 35,78 + 2658: 36,77 + 2659: 36,77 + 2660: 35,77 + 2661: 35,74 + 2662: 37,73 + 2663: 34,73 + 2664: 35,79 + 2665: 34,79 - node: color: '#FFFFFFFF' id: DirtLight decals: - 688: 15,42 - 689: 17,41 - 1084: 67,40 - 1085: 67,38 - 1086: 76,37 - 1087: 78,36 - 1088: 80,37 - 1089: 82,41 - 1090: 83,45 - 1091: 81,47 - 1092: 81,49 - 1093: 82,59 - 1094: 66,57 - 1095: 62,63 - 1096: 60,63 - 1097: 50,55 - 1098: 49,56 - 1099: 53,55 - 1100: 51,65 - 1101: 49,65 - 1102: 43,69 - 1103: 46,69 - 1104: 39,61 - 1105: 40,61 - 1106: 39,57 - 2313: 1,12 - 2314: 1,12 - 2315: 2,11 - 2316: 2,12 - 2317: 2,13 - 2582: 54,41 - 2583: 54,41 - 2584: 54,41 - 2585: 54,41 - 2586: 54,40 - 2587: 52,39 - 2596: 60,42 - 2597: 60,42 - 2598: 60,42 - 2599: 60,42 - 2616: 51,40 - 2617: 51,40 - 2618: 54,43 - 2619: 54,43 - 2620: 54,43 - 2621: 54,43 - 2622: 53,43 - 2623: 53,43 - 2624: 53,43 - 2625: 56,42 - 2626: 55,42 - 2627: 55,42 - 2628: 55,42 - 2629: 55,42 - 2630: 55,42 - 2631: 55,42 - 2632: 55,42 + 687: 15,42 + 688: 17,41 + 1082: 67,40 + 1083: 67,38 + 1084: 76,37 + 1085: 78,36 + 1086: 80,37 + 1087: 82,41 + 1088: 83,45 + 1089: 81,47 + 1090: 81,49 + 1091: 82,59 + 1092: 66,57 + 1093: 62,63 + 1094: 60,63 + 1095: 50,55 + 1096: 49,56 + 1097: 53,55 + 1098: 51,65 + 1099: 49,65 + 1100: 43,69 + 1101: 46,69 + 1102: 39,61 + 1103: 40,61 + 1104: 39,57 + 2305: 1,12 + 2306: 1,12 + 2307: 2,11 + 2308: 2,12 + 2309: 2,13 + 2574: 54,41 + 2575: 54,41 + 2576: 54,41 + 2577: 54,41 + 2578: 54,40 + 2579: 52,39 + 2588: 60,42 + 2589: 60,42 + 2590: 60,42 + 2591: 60,42 + 2608: 51,40 + 2609: 51,40 + 2610: 54,43 + 2611: 54,43 + 2612: 54,43 + 2613: 54,43 + 2614: 53,43 + 2615: 53,43 + 2616: 53,43 + 2617: 56,42 + 2618: 55,42 + 2619: 55,42 + 2620: 55,42 + 2621: 55,42 + 2622: 55,42 + 2623: 55,42 + 2624: 55,42 - node: cleanable: True color: '#FFFFFFFF' @@ -2144,123 +2141,123 @@ entities: 36: 2,8 37: 8,14 38: 9,9 - 664: 24,46 - 665: 26,46 - 666: 24,49 - 667: 23,48 - 668: 22,48 + 663: 24,46 + 664: 26,46 + 665: 24,49 + 666: 23,48 + 667: 22,48 + 668: 32,52 669: 32,52 - 670: 32,52 - 671: 29,52 - 672: 29,51 - 673: 32,53 - 674: 29,55 - 675: 26,48 - 676: 26,44 - 677: 28,42 - 678: 31,42 - 679: 27,41 - 680: 27,42 - 696: 3,33 - 697: 4,31 - 698: 7,31 - 699: 7,32 - 700: 8,36 - 701: 4,29 - 702: 2,29 - 703: 2,32 + 670: 29,52 + 671: 29,51 + 672: 32,53 + 673: 29,55 + 674: 26,48 + 675: 26,44 + 676: 28,42 + 677: 31,42 + 678: 27,41 + 679: 27,42 + 695: 3,33 + 696: 4,31 + 697: 7,31 + 698: 7,32 + 699: 8,36 + 700: 4,29 + 701: 2,29 + 702: 2,32 + 1260: 89,17 + 1261: 89,17 1262: 89,17 - 1263: 89,17 - 1264: 89,17 - 1265: 89,15 - 1266: 89,15 - 1267: 90,16 - 1268: 91,16 - 2092: 70,62 - 2093: 69,60 - 2094: 70,59 - 2095: 71,57 - 2096: 69,57 - 2097: 70,54 - 2098: 74,55 - 2099: 81,56 - 2100: 81,63 - 2101: 82,62 - 2102: 79,65 - 2103: 77,65 - 2104: 74,65 - 2105: 74,36 - 2106: 79,38 - 2107: 83,40 - 2112: 66,39 - 2126: 17,50 - 2127: 16,49 - 2128: 15,49 - 2129: 16,47 - 2130: 15,46 - 2131: 18,47 - 2133: 15,41 - 2134: 19,43 - 2135: 15,44 - 2136: 22,43 - 2150: 1,22 - 2151: 1,22 - 2152: 2,20 - 2153: 31,-18 - 2154: 31,-18 - 2155: 35,-11 - 2156: 35,-11 - 2157: 21,27 - 2158: 25,27 - 2159: 24,28 - 2160: 23,27 - 2674: 35,86 - 2675: 33,85 - 2676: 33,83 - 2677: 35,82 - 2678: 39,87 - 2679: 40,87 - 2680: 41,86 - 2681: 46,83 - 2682: 47,85 - 2683: 48,86 - 2684: 50,85 - 2685: 49,83 - 2686: 48,81 - 2687: 51,82 - 2688: 50,85 - 2689: 49,86 - 2690: 49,87 - 2691: 49,84 - 2692: 49,82 - 2693: 49,82 - 2694: 50,80 - 2695: 49,80 - 2696: 46,78 - 2697: 46,80 - 2698: 46,78 - 2699: 45,78 - 2700: 47,77 + 1263: 89,15 + 1264: 89,15 + 1265: 90,16 + 1266: 91,16 + 2090: 70,62 + 2091: 69,60 + 2092: 70,59 + 2093: 71,57 + 2094: 69,57 + 2095: 70,54 + 2096: 74,55 + 2097: 81,56 + 2098: 81,63 + 2099: 82,62 + 2100: 79,65 + 2101: 77,65 + 2102: 74,65 + 2103: 74,36 + 2104: 79,38 + 2105: 83,40 + 2110: 66,39 + 2124: 17,50 + 2125: 16,49 + 2126: 15,49 + 2127: 16,47 + 2128: 15,46 + 2129: 18,47 + 2131: 15,41 + 2132: 19,43 + 2133: 15,44 + 2134: 22,43 + 2142: 1,22 + 2143: 1,22 + 2144: 2,20 + 2145: 31,-18 + 2146: 31,-18 + 2147: 35,-11 + 2148: 35,-11 + 2149: 21,27 + 2150: 25,27 + 2151: 24,28 + 2152: 23,27 + 2666: 35,86 + 2667: 33,85 + 2668: 33,83 + 2669: 35,82 + 2670: 39,87 + 2671: 40,87 + 2672: 41,86 + 2673: 46,83 + 2674: 47,85 + 2675: 48,86 + 2676: 50,85 + 2677: 49,83 + 2678: 48,81 + 2679: 51,82 + 2680: 50,85 + 2681: 49,86 + 2682: 49,87 + 2683: 49,84 + 2684: 49,82 + 2685: 49,82 + 2686: 50,80 + 2687: 49,80 + 2688: 46,78 + 2689: 46,80 + 2690: 46,78 + 2691: 45,78 + 2692: 47,77 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 659: 27,47 - 660: 26,46 - 661: 25,49 - 662: 30,52 - 663: 21,46 - 685: 15,53 - 686: 13,54 - 687: 16,55 - 2577: 52,41 - 2578: 52,41 - 2579: 52,41 - 2580: 53,41 - 2581: 53,41 - 2600: 60,37 - 2601: 60,37 - 2602: 60,37 + 658: 27,47 + 659: 26,46 + 660: 25,49 + 661: 30,52 + 662: 21,46 + 684: 15,53 + 685: 13,54 + 686: 16,55 + 2569: 52,41 + 2570: 52,41 + 2571: 52,41 + 2572: 53,41 + 2573: 53,41 + 2592: 60,37 + 2593: 60,37 + 2594: 60,37 - node: cleanable: True color: '#FFFFFFFF' @@ -2286,211 +2283,211 @@ entities: 329: 49,37 330: 49,37 331: 49,38 - 559: 45,22 - 560: 48,23 - 561: 55,23 - 562: 57,21 - 563: 52,23 - 564: 56,17 - 565: 53,17 - 566: 57,17 - 567: 48,19 - 568: 50,18 - 569: 48,17 - 570: 48,18 - 571: 51,19 - 572: 51,20 - 573: 60,21 - 574: 61,21 - 575: 60,25 - 576: 61,26 - 577: 57,27 - 578: 59,26 - 579: 51,27 - 580: 49,27 - 581: 53,27 - 582: 53,28 - 583: 41,23 - 584: 39,23 - 585: 40,19 - 586: 39,20 - 587: 40,16 + 558: 45,22 + 559: 48,23 + 560: 55,23 + 561: 57,21 + 562: 52,23 + 563: 56,17 + 564: 53,17 + 565: 57,17 + 566: 48,19 + 567: 50,18 + 568: 48,17 + 569: 48,18 + 570: 51,19 + 571: 51,20 + 572: 60,21 + 573: 61,21 + 574: 60,25 + 575: 61,26 + 576: 57,27 + 577: 59,26 + 578: 51,27 + 579: 49,27 + 580: 53,27 + 581: 53,28 + 582: 41,23 + 583: 39,23 + 584: 40,19 + 585: 39,20 + 586: 40,16 + 587: 39,16 588: 39,16 - 589: 39,16 - 590: 40,17 - 596: 40,32 - 597: 40,31 - 598: 42,30 - 599: 41,32 - 600: 39,31 - 601: 43,31 - 602: 42,31 - 603: 46,31 - 604: 46,32 - 605: 45,34 - 606: 46,35 - 607: 46,34 - 608: 46,28 - 609: 46,27 - 610: 46,26 - 611: 42,27 - 612: 41,27 - 613: 39,27 - 614: 41,28 - 615: 41,27 - 616: 40,31 - 617: 42,31 - 618: 42,36 - 619: 40,34 - 620: 39,36 - 621: 42,36 - 622: 42,34 - 681: 26,42 - 682: 21,46 - 718: 55,7 - 719: 37,5 - 720: 32,4 - 721: 32,6 - 722: 32,9 - 723: 28,9 - 724: 26,8 - 725: 27,4 - 726: 27,8 - 727: 29,11 - 728: 33,11 - 729: 27,12 - 730: 27,10 - 731: 28,11 - 732: 31,10 - 733: 29,9 - 734: 29,10 - 735: 30,9 - 736: 30,11 - 737: 26,12 - 738: 19,14 - 739: 13,16 - 740: 11,17 - 741: 13,24 - 742: 11,27 - 743: 11,30 - 744: 13,36 - 745: 14,38 - 746: 19,38 - 747: 25,38 - 748: 30,38 - 749: 23,38 - 750: 30,36 - 751: 32,36 - 752: 40,45 - 753: 47,46 - 754: 46,49 - 755: 48,51 - 756: 53,51 - 757: 70,51 - 758: 72,21 - 759: 70,19 - 760: 67,14 - 761: 63,14 - 762: 58,13 - 763: 54,14 - 764: 46,14 - 765: 44,12 - 766: 37,15 - 767: 34,17 - 768: 35,35 - 769: 30,36 - 770: 37,39 - 771: 35,40 - 802: 36,50 - 803: 38,50 - 804: 38,48 - 833: 31,62 - 834: 31,61 - 835: 32,60 - 836: 32,62 - 837: 30,63 - 838: 34,63 - 839: 34,61 - 840: 27,62 - 841: 26,64 - 842: 27,64 - 843: 27,64 - 2239: 42,70 - 2240: 48,68 + 589: 40,17 + 595: 40,32 + 596: 40,31 + 597: 42,30 + 598: 41,32 + 599: 39,31 + 600: 43,31 + 601: 42,31 + 602: 46,31 + 603: 46,32 + 604: 45,34 + 605: 46,35 + 606: 46,34 + 607: 46,28 + 608: 46,27 + 609: 46,26 + 610: 42,27 + 611: 41,27 + 612: 39,27 + 613: 41,28 + 614: 41,27 + 615: 40,31 + 616: 42,31 + 617: 42,36 + 618: 40,34 + 619: 39,36 + 620: 42,36 + 621: 42,34 + 680: 26,42 + 681: 21,46 + 716: 55,7 + 717: 37,5 + 718: 32,4 + 719: 32,6 + 720: 32,9 + 721: 28,9 + 722: 26,8 + 723: 27,4 + 724: 27,8 + 725: 29,11 + 726: 33,11 + 727: 27,12 + 728: 27,10 + 729: 28,11 + 730: 31,10 + 731: 29,9 + 732: 29,10 + 733: 30,9 + 734: 30,11 + 735: 26,12 + 736: 19,14 + 737: 13,16 + 738: 11,17 + 739: 13,24 + 740: 11,27 + 741: 11,30 + 742: 13,36 + 743: 14,38 + 744: 19,38 + 745: 25,38 + 746: 30,38 + 747: 23,38 + 748: 30,36 + 749: 32,36 + 750: 40,45 + 751: 47,46 + 752: 46,49 + 753: 48,51 + 754: 53,51 + 755: 70,51 + 756: 72,21 + 757: 70,19 + 758: 67,14 + 759: 63,14 + 760: 58,13 + 761: 54,14 + 762: 46,14 + 763: 44,12 + 764: 37,15 + 765: 34,17 + 766: 35,35 + 767: 30,36 + 768: 37,39 + 769: 35,40 + 800: 36,50 + 801: 38,50 + 802: 38,48 + 831: 31,62 + 832: 31,61 + 833: 32,60 + 834: 32,62 + 835: 30,63 + 836: 34,63 + 837: 34,61 + 838: 27,62 + 839: 26,64 + 840: 27,64 + 841: 27,64 + 2231: 42,70 + 2232: 48,68 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 1043: 85,60 + 1041: 85,60 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 1012: 77,53 - 1028: 73,61 + 1010: 77,53 + 1026: 73,61 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 1024: 75,57 - 1025: 73,58 - 1026: 78,57 - 1027: 78,63 + 1022: 75,57 + 1023: 73,58 + 1024: 78,57 + 1025: 78,63 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 1029: 75,63 + 1027: 75,63 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 1006: 75,52 - 1007: 74,53 - 1008: 78,52 + 1004: 75,52 + 1005: 74,53 + 1006: 78,52 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 899: 47,61 - 1044: 85,61 + 897: 47,61 + 1042: 85,61 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 1042: 85,59 + 1040: 85,59 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 898: 47,59 - 1009: 76,52 - 1010: 75,53 - 1011: 79,53 - 1020: 77,57 - 1021: 79,58 - 1022: 79,62 - 1023: 74,63 + 896: 47,59 + 1007: 76,52 + 1008: 75,53 + 1009: 79,53 + 1018: 77,57 + 1019: 79,58 + 1020: 79,62 + 1021: 74,63 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 900: 47,60 - 1002: 74,52 - 1003: 76,53 - 1004: 77,52 - 1005: 78,53 + 898: 47,60 + 1000: 74,52 + 1001: 76,53 + 1002: 77,52 + 1003: 78,53 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 1013: 79,52 - 1014: 74,57 - 1015: 73,59 - 1016: 73,62 - 1017: 77,63 - 1018: 79,59 - 1019: 79,61 + 1011: 79,52 + 1012: 74,57 + 1013: 73,59 + 1014: 73,62 + 1015: 77,63 + 1016: 79,59 + 1017: 79,61 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -2507,28 +2504,28 @@ entities: color: '#A91409FF' id: FullTileOverlayGreyscale decals: - 2655: 38,57 + 2647: 38,57 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 512: 41,29 - 513: 40,29 - 526: 38,32 + 511: 41,29 + 512: 40,29 + 525: 38,32 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1160: 74.85925,49.706528 - 1161: 74.62488,48.753403 - 1162: 75.34363,48.237778 - 1163: 75.93738,48.456528 - 1164: 75.09363,49.675278 - 1165: 74.15613,49.862778 - 1166: 74.18738,48.565903 - 1167: 75.90613,47.706528 - 1168: 76.06238,49.503403 - 1169: 76.15613,49.737778 + 1158: 74.85925,49.706528 + 1159: 74.62488,48.753403 + 1160: 75.34363,48.237778 + 1161: 75.93738,48.456528 + 1162: 75.09363,49.675278 + 1163: 74.15613,49.862778 + 1164: 74.18738,48.565903 + 1165: 75.90613,47.706528 + 1166: 76.06238,49.503403 + 1167: 76.15613,49.737778 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2541,22 +2538,22 @@ entities: 301: 44,-4 302: 45,-4 303: 46,-4 - 540: 61,27 - 2033: 36,6 - 2034: 39,4 - 2035: 40,4 - 2036: 42,4 - 2037: 44,4 - 2038: 45,4 - 2039: 46,4 - 2040: 48,4 - 2041: 49,4 - 2042: 51,4 - 2043: 52,4 - 2044: 54,4 - 2085: 48,-4 - 2086: 47,-4 - 2400: 59,6 + 539: 61,27 + 2031: 36,6 + 2032: 39,4 + 2033: 40,4 + 2034: 42,4 + 2035: 44,4 + 2036: 45,4 + 2037: 46,4 + 2038: 48,4 + 2039: 49,4 + 2040: 51,4 + 2041: 52,4 + 2042: 54,4 + 2083: 48,-4 + 2084: 47,-4 + 2392: 59,6 - node: cleanable: True color: '#52B4E996' @@ -2578,26 +2575,26 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 504: 50,20 - 505: 49,20 - 517: 40,32 - 518: 41,32 - 519: 42,32 - 1049: 82,53 - 1077: 14,10 + 503: 50,20 + 504: 49,20 + 516: 40,32 + 517: 41,32 + 518: 42,32 + 1047: 82,53 + 1075: 14,10 - node: angle: 1.5707963267948966 rad color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1076: 13,9 + 1074: 13,9 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 971: 48,57 - 972: 49,57 - 973: 50,57 + 969: 48,57 + 970: 49,57 + 971: 50,57 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2612,17 +2609,17 @@ entities: 284: 39,-5 285: 38,-5 286: 37,-5 - 537: 61,24 - 2045: 48,2 - 2046: 47,2 - 2047: 46,2 - 2048: 45,2 - 2049: 44,2 - 2050: 43,2 - 2051: 41,2 - 2052: 40,2 - 2053: 39,2 - 2054: 37,2 + 536: 61,24 + 2043: 48,2 + 2044: 47,2 + 2045: 46,2 + 2046: 45,2 + 2047: 44,2 + 2048: 43,2 + 2049: 41,2 + 2050: 40,2 + 2051: 39,2 + 2052: 37,2 - node: cleanable: True color: '#52B4E996' @@ -2635,14 +2632,14 @@ entities: color: '#8932B885' id: HalfTileOverlayGreyscale180 decals: - 1482: 67,51 + 1480: 67,51 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 2064: 51,2 - 2065: 54,2 - 2074: 52,2 + 2062: 51,2 + 2063: 54,2 + 2072: 52,2 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -2657,16 +2654,16 @@ entities: 500: 49,17 501: 50,17 502: 51,17 - 514: 40,30 - 515: 41,30 - 516: 42,30 - 1050: 82,52 - 1079: 14,8 + 513: 40,30 + 514: 41,30 + 515: 42,30 + 1048: 82,52 + 1077: 14,8 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 969: 48,55 + 967: 48,55 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -2687,28 +2684,28 @@ entities: 305: 49,-2 306: 49,0 307: 49,1 - 538: 60,25 - 539: 60,26 - 2055: 35,3 - 2056: 35,4 - 2057: 35,5 - 2088: 44,-9 - 2268: 35,-1 - 2269: 35,0 - 2278: 41,-1 - 2279: 41,0 - 2280: 38,-1 - 2281: 38,0 - 2282: 38,1 - 2383: 36,-11 - 2384: 36,-10 - 2385: 35,-8 - 2404: 57,4 + 537: 60,25 + 538: 60,26 + 2053: 35,3 + 2054: 35,4 + 2055: 35,5 + 2086: 44,-9 + 2260: 35,-1 + 2261: 35,0 + 2270: 41,-1 + 2271: 41,0 + 2272: 38,-1 + 2273: 38,0 + 2274: 38,1 + 2375: 36,-11 + 2376: 36,-10 + 2377: 35,-8 + 2396: 57,4 - node: color: '#8932B885' id: HalfTileOverlayGreyscale270 decals: - 1479: 70,48 + 1477: 70,48 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -2720,12 +2717,12 @@ entities: id: HalfTileOverlayGreyscale270 decals: 498: 47,18 - 520: 39,31 + 519: 39,31 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 970: 47,56 + 968: 47,56 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -2744,23 +2741,23 @@ entities: 273: 45,-8 274: 45,-9 275: 45,-10 - 541: 62,26 - 542: 62,25 - 2062: 38,5 - 2270: 36,-1 - 2271: 36,0 - 2272: 36,1 - 2273: 39,0 - 2274: 39,-1 - 2275: 42,-1 - 2276: 42,0 - 2277: 42,1 - 2380: 37,-8 - 2381: 37,-9 - 2382: 37,-10 - 2401: 60,5 - 2402: 60,3 - 2403: 60,2 + 540: 62,26 + 541: 62,25 + 2060: 38,5 + 2262: 36,-1 + 2263: 36,0 + 2264: 36,1 + 2265: 39,0 + 2266: 39,-1 + 2267: 42,-1 + 2268: 42,0 + 2269: 42,1 + 2372: 37,-8 + 2373: 37,-9 + 2374: 37,-10 + 2393: 60,5 + 2394: 60,3 + 2395: 60,2 - node: cleanable: True color: '#52B4E996' @@ -2773,12 +2770,12 @@ entities: id: HalfTileOverlayGreyscale90 decals: 269: 50,-5 - 2066: 50,1 - 2067: 50,0 - 2068: 50,-1 - 2069: 50,-2 - 2070: 50,-3 - 2071: 50,-4 + 2064: 50,1 + 2065: 50,0 + 2066: 50,-1 + 2067: 50,-2 + 2068: 50,-3 + 2069: 50,-4 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -2788,14 +2785,14 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 525: 43,31 - 1078: 15,9 + 524: 43,31 + 1076: 15,9 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 974: 51,55 - 2267: 51,56 + 972: 51,55 + 2259: 51,56 - node: angle: -1.5707963267948966 rad color: '#DE3A3A96' @@ -2819,125 +2816,125 @@ entities: color: '#C7793EFF' id: Max decals: - 1253: 40.808556,-11.929747 + 1251: 40.808556,-11.929747 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 693: 2,26 - 694: 3,26 - 695: 4,26 + 692: 2,26 + 693: 3,26 + 694: 4,26 - node: color: '#D381C996' id: MiniTileDiagonalCheckerBOverlay decals: - 2492: 22,-1 - 2493: 22,-2 - 2494: 22,-3 + 2484: 22,-1 + 2485: 22,-2 + 2486: 22,-3 - node: color: '#D381C9FF' id: MiniTileDiagonalCheckerBOverlay decals: - 2496: 21,-3 - 2497: 21,-2 - 2498: 21,-1 - 2499: 22,0 - 2500: 23,-1 - 2501: 23,-2 - 2502: 23,-3 - 2503: 22,-4 - 2504: 22,-3 - 2505: 22,-2 - 2506: 22,-1 + 2488: 21,-3 + 2489: 21,-2 + 2490: 21,-1 + 2491: 22,0 + 2492: 23,-1 + 2493: 23,-2 + 2494: 23,-3 + 2495: 22,-4 + 2496: 22,-3 + 2497: 22,-2 + 2498: 22,-1 - node: color: '#FFFFFFFF' id: MiniTileSteelBox decals: - 982: 53,65 - 983: 51,65 - 984: 49,65 - 985: 47,65 - 986: 45,65 - 987: 47,69 - 988: 47,71 - 2235: 47,73 - 2266: 54,56 + 980: 53,65 + 981: 51,65 + 982: 49,65 + 983: 47,65 + 984: 45,65 + 985: 47,69 + 986: 47,71 + 2227: 47,73 + 2258: 54,56 - node: color: '#C6FF91FF' id: MiniTileSteelCornerNw decals: - 2449: 14,44 + 2441: 14,44 - node: color: '#C6FF91FF' id: MiniTileSteelCornerSw decals: - 2448: 14,42 + 2440: 14,42 - node: color: '#C6FF91FF' id: MiniTileSteelEndE decals: - 2437: 19,40 - 2438: 23,44 + 2429: 19,40 + 2430: 23,44 - node: color: '#C6FF91FF' id: MiniTileSteelEndW decals: - 2439: 14,40 + 2431: 14,40 - node: color: '#C6FF91FF' id: MiniTileSteelInnerNe decals: - 2461: 14,42 + 2453: 14,42 - node: color: '#C6FF91FF' id: MiniTileSteelInnerSe decals: - 2460: 14,44 + 2452: 14,44 - node: color: '#C6FF91FF' id: MiniTileSteelLineE decals: - 2450: 14,43 + 2442: 14,43 - node: color: '#C6FF91FF' id: MiniTileSteelLineN decals: - 2440: 15,40 - 2441: 16,40 - 2442: 17,40 - 2443: 18,40 - 2452: 15,44 - 2453: 16,44 - 2454: 17,44 - 2455: 18,44 - 2456: 19,44 - 2457: 20,44 - 2458: 21,44 - 2459: 22,44 + 2432: 15,40 + 2433: 16,40 + 2434: 17,40 + 2435: 18,40 + 2444: 15,44 + 2445: 16,44 + 2446: 17,44 + 2447: 18,44 + 2448: 19,44 + 2449: 20,44 + 2450: 21,44 + 2451: 22,44 - node: color: '#C6FF91FF' id: MiniTileSteelLineS decals: - 2444: 15,40 - 2445: 16,40 - 2446: 17,40 - 2447: 18,40 + 2436: 15,40 + 2437: 16,40 + 2438: 17,40 + 2439: 18,40 - node: color: '#C6FF91FF' id: MiniTileSteelLineW decals: - 2451: 14,43 + 2443: 14,43 - node: color: '#FFFFFFFF' id: MiniTileWhiteBox decals: - 2322: 22,22 + 2314: 22,22 - node: color: '#9FED5896' id: MiniTileWhiteCornerNe decals: 365: 40,20 - 1816: 56,0 + 1814: 56,0 - node: color: '#A4610696' id: MiniTileWhiteCornerNe @@ -2947,18 +2944,18 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerNe decals: - 1909: 62,31 + 1907: 62,31 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 978: 55,57 + 976: 55,57 - node: color: '#9FED5896' id: MiniTileWhiteCornerNw decals: 366: 39,20 - 1817: 55,0 + 1815: 55,0 - node: color: '#A4610696' id: MiniTileWhiteCornerNw @@ -2968,14 +2965,14 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerNw decals: - 1907: 60,31 - 1914: 56,29 + 1905: 60,31 + 1912: 56,29 - node: color: '#9FED5896' id: MiniTileWhiteCornerSe decals: 368: 40,19 - 1814: 56,-2 + 1812: 56,-2 - node: color: '#A4610696' id: MiniTileWhiteCornerSe @@ -2985,19 +2982,19 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerSe decals: - 1906: 62,29 - 1918: 58,26 + 1904: 62,29 + 1916: 58,26 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 980: 55,55 + 978: 55,55 - node: color: '#9FED5896' id: MiniTileWhiteCornerSw decals: 367: 39,19 - 1819: 55,-2 + 1817: 55,-2 - node: color: '#A4610696' id: MiniTileWhiteCornerSw @@ -3007,98 +3004,98 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteCornerSw decals: - 1911: 60,29 - 1917: 56,26 + 1909: 60,29 + 1915: 56,26 - node: color: '#9FED5896' id: MiniTileWhiteEndE decals: - 650: 19,42 - 1031: 86,57 - 1032: 86,63 + 649: 19,42 + 1029: 86,57 + 1030: 86,63 - node: color: '#9FED5896' id: MiniTileWhiteEndW decals: - 1030: 85,57 - 1033: 85,63 + 1028: 85,57 + 1031: 85,63 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 977: 54,57 + 975: 54,57 - node: color: '#9FED5896' id: MiniTileWhiteLineE decals: - 1815: 56,-1 + 1813: 56,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 1910: 62,30 - 1919: 58,27 - 1920: 58,28 + 1908: 62,30 + 1917: 58,27 + 1918: 58,28 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 979: 55,56 - 981: 54,54 + 977: 55,56 + 979: 54,54 - node: color: '#9FED5896' id: MiniTileWhiteLineN decals: - 646: 15,42 - 647: 16,42 - 648: 17,42 - 649: 18,42 + 645: 15,42 + 646: 16,42 + 647: 17,42 + 648: 18,42 - node: color: '#DE3A3A96' id: MiniTileWhiteLineN decals: - 1908: 61,31 + 1906: 61,31 - node: color: '#9FED5896' id: MiniTileWhiteLineS decals: - 639: 22,44 - 640: 21,44 - 641: 20,44 - 642: 19,44 - 643: 18,44 - 644: 16,44 - 645: 17,44 - 651: 18,42 - 652: 17,42 - 653: 16,42 - 654: 15,42 - 2132: 15,44 + 638: 22,44 + 639: 21,44 + 640: 20,44 + 641: 19,44 + 642: 18,44 + 643: 16,44 + 644: 17,44 + 650: 18,42 + 651: 17,42 + 652: 16,42 + 653: 15,42 + 2130: 15,44 - node: color: '#DE3A3A96' id: MiniTileWhiteLineS decals: - 1912: 61,29 + 1910: 61,29 - node: color: '#9FED5896' id: MiniTileWhiteLineW decals: - 1818: 55,-1 + 1816: 55,-1 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 1913: 60,30 - 1915: 56,28 - 1916: 56,27 + 1911: 60,30 + 1913: 56,28 + 1914: 56,27 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 975: 53,54 - 976: 53,55 - 2263: 53,56 - 2264: 53,57 + 973: 53,54 + 974: 53,55 + 2255: 53,56 + 2256: 53,57 - node: color: '#D381C996' id: MonoOverlay @@ -3114,7 +3111,7 @@ entities: color: '#C7793EFF' id: Newton decals: - 1254: 11.076073,-15.953328 + 1252: 11.076073,-15.953328 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3131,89 +3128,89 @@ entities: 113: 21,28 114: 21,29 117: 20,29 - 1377: 11,20 - 1378: 11,22 + 1375: 11,20 + 1376: 11,22 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 2087: 49,-4 - 2405: 58,5 + 2085: 49,-4 + 2397: 58,5 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 1323: 25,38 - 1324: 26,38 - 1325: 27,38 - 1326: 28,38 - 1327: 29,38 - 1328: 30,38 - 1329: 31,38 - 1330: 32,38 - 1331: 33,38 - 1332: 34,38 - 1333: 35,38 - 1334: 35,39 - 1335: 35,40 - 1336: 35,41 - 1337: 35,42 - 1338: 35,43 - 1339: 35,44 - 1340: 35,45 - 1341: 36,45 - 1342: 37,45 - 1343: 38,45 - 1344: 39,45 - 1345: 40,45 - 1346: 41,45 + 1321: 25,38 + 1322: 26,38 + 1323: 27,38 + 1324: 28,38 + 1325: 29,38 + 1326: 30,38 + 1327: 31,38 + 1328: 32,38 + 1329: 33,38 + 1330: 34,38 + 1331: 35,38 + 1332: 35,39 + 1333: 35,40 + 1334: 35,41 + 1335: 35,42 + 1336: 35,43 + 1337: 35,44 + 1338: 35,45 + 1339: 36,45 + 1340: 37,45 + 1341: 38,45 + 1342: 39,45 + 1343: 40,45 + 1344: 41,45 - node: color: '#8932B885' id: QuarterTileOverlayGreyscale decals: - 1478: 69,45 - 1481: 70,47 + 1476: 69,45 + 1479: 70,47 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 1347: 24,38 - 1348: 23,38 - 1349: 22,38 - 1350: 21,38 - 1351: 20,38 - 1352: 19,38 - 1353: 18,38 - 1354: 17,38 - 1355: 16,38 - 1356: 15,38 - 1357: 14,38 - 1358: 11,24 - 1359: 11,25 - 1360: 11,26 - 1361: 11,27 - 1362: 11,28 - 1363: 11,30 - 1364: 11,29 - 1365: 11,31 - 1366: 11,32 - 1367: 11,33 - 1368: 11,35 - 1369: 11,34 - 1370: 11,36 - 1371: 11,37 - 1372: 11,38 - 1373: 12,38 - 1374: 13,38 - 1469: 59,53 - 1470: 60,53 - 1471: 61,53 - 1472: 62,53 - 1473: 64,53 - 1474: 65,53 - 1475: 63,53 - 1476: 66,53 - 1477: 67,53 + 1345: 24,38 + 1346: 23,38 + 1347: 22,38 + 1348: 21,38 + 1349: 20,38 + 1350: 19,38 + 1351: 18,38 + 1352: 17,38 + 1353: 16,38 + 1354: 15,38 + 1355: 14,38 + 1356: 11,24 + 1357: 11,25 + 1358: 11,26 + 1359: 11,27 + 1360: 11,28 + 1361: 11,30 + 1362: 11,29 + 1363: 11,31 + 1364: 11,32 + 1365: 11,33 + 1366: 11,35 + 1367: 11,34 + 1368: 11,36 + 1369: 11,37 + 1370: 11,38 + 1371: 12,38 + 1372: 13,38 + 1467: 59,53 + 1468: 60,53 + 1469: 61,53 + 1470: 62,53 + 1471: 64,53 + 1472: 65,53 + 1473: 63,53 + 1474: 66,53 + 1475: 67,53 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -3228,124 +3225,124 @@ entities: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1563: 83,50 - 1564: 82,50 - 1565: 81,50 - 1566: 81,49 - 1567: 81,47 - 1568: 81,48 - 1569: 81,46 - 1570: 81,45 - 1571: 81,44 - 1572: 81,43 - 1573: 81,42 - 1574: 81,41 - 1575: 81,40 - 1576: 81,39 - 1577: 81,38 - 1578: 80,38 - 1579: 78,38 - 1580: 77,38 - 1581: 76,38 - 1582: 75,38 - 1583: 74,38 - 1584: 73,38 - 1605: 45,53 - 1606: 45,52 - 1607: 45,51 - 1608: 45,50 - 1609: 45,49 - 1610: 45,48 - 1611: 45,47 - 1612: 45,46 - 1613: 45,45 - 1614: 44,45 - 1615: 43,45 - 1616: 42,45 - 1617: 11,19 - 1641: 70,46 - 1642: 70,44 - 1643: 70,45 - 1644: 70,43 - 1645: 70,42 - 1646: 70,41 - 1647: 70,40 - 1648: 70,39 - 1649: 70,38 - 1650: 70,37 - 1651: 70,36 - 1652: 70,35 - 1653: 70,34 - 1654: 70,33 - 1655: 70,32 - 1656: 70,31 - 1657: 70,30 - 1658: 70,29 - 1659: 70,28 - 1660: 70,27 - 1661: 70,26 - 1662: 70,25 - 1663: 70,23 - 1664: 70,22 - 1665: 70,24 - 1666: 70,21 - 1667: 70,19 - 1668: 70,18 - 1669: 70,20 - 1670: 70,17 - 1671: 70,16 - 1672: 70,15 - 1673: 70,15 - 1674: 70,14 - 1675: 69,14 - 1676: 68,14 - 1677: 67,14 - 1681: 64,14 - 1682: 63,14 - 1683: 61,14 - 1684: 62,14 - 1685: 60,14 - 1686: 59,14 - 2108: 79,38 + 1561: 83,50 + 1562: 82,50 + 1563: 81,50 + 1564: 81,49 + 1565: 81,47 + 1566: 81,48 + 1567: 81,46 + 1568: 81,45 + 1569: 81,44 + 1570: 81,43 + 1571: 81,42 + 1572: 81,41 + 1573: 81,40 + 1574: 81,39 + 1575: 81,38 + 1576: 80,38 + 1577: 78,38 + 1578: 77,38 + 1579: 76,38 + 1580: 75,38 + 1581: 74,38 + 1582: 73,38 + 1603: 45,53 + 1604: 45,52 + 1605: 45,51 + 1606: 45,50 + 1607: 45,49 + 1608: 45,48 + 1609: 45,47 + 1610: 45,46 + 1611: 45,45 + 1612: 44,45 + 1613: 43,45 + 1614: 42,45 + 1615: 11,19 + 1639: 70,46 + 1640: 70,44 + 1641: 70,45 + 1642: 70,43 + 1643: 70,42 + 1644: 70,41 + 1645: 70,40 + 1646: 70,39 + 1647: 70,38 + 1648: 70,37 + 1649: 70,36 + 1650: 70,35 + 1651: 70,34 + 1652: 70,33 + 1653: 70,32 + 1654: 70,31 + 1655: 70,30 + 1656: 70,29 + 1657: 70,28 + 1658: 70,27 + 1659: 70,26 + 1660: 70,25 + 1661: 70,23 + 1662: 70,22 + 1663: 70,24 + 1664: 70,21 + 1665: 70,19 + 1666: 70,18 + 1667: 70,20 + 1668: 70,17 + 1669: 70,16 + 1670: 70,15 + 1671: 70,15 + 1672: 70,14 + 1673: 69,14 + 1674: 68,14 + 1675: 67,14 + 1679: 64,14 + 1680: 63,14 + 1681: 61,14 + 1682: 62,14 + 1683: 60,14 + 1684: 59,14 + 2106: 79,38 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: 497: 48,19 - 1375: 11,23 - 1376: 11,21 - 1440: 47,15 - 1441: 48,15 - 1442: 49,15 - 1443: 50,15 - 1444: 51,15 - 1445: 52,15 + 1373: 11,23 + 1374: 11,21 + 1438: 47,15 + 1439: 48,15 + 1440: 49,15 + 1441: 50,15 + 1442: 51,15 + 1443: 52,15 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 1458: 46,53 - 1459: 47,53 - 1460: 48,53 - 1461: 49,53 - 1462: 50,53 - 1463: 51,53 - 1464: 52,53 - 1465: 53,53 - 1466: 54,53 - 1467: 56,53 - 1468: 55,53 - 1851: 57,53 + 1456: 46,53 + 1457: 47,53 + 1458: 48,53 + 1459: 49,53 + 1460: 50,53 + 1461: 51,53 + 1462: 52,53 + 1463: 53,53 + 1464: 54,53 + 1465: 56,53 + 1466: 55,53 + 1849: 57,53 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale decals: - 2363: 40,7 - 2364: 40,8 - 2365: 40,9 - 2366: 41,10 - 2367: 43,10 - 2368: 42,10 + 2355: 40,7 + 2356: 40,8 + 2357: 40,9 + 2358: 41,10 + 2359: 43,10 + 2360: 42,10 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -3373,54 +3370,54 @@ entities: color: '#4B709CFF' id: QuarterTileOverlayGreyscale180 decals: - 2463: 48,51 - 2464: 49,51 - 2465: 50,51 - 2466: 51,51 - 2467: 52,51 - 2468: 53,51 - 2469: 54,51 + 2455: 48,51 + 2456: 49,51 + 2457: 50,51 + 2458: 51,51 + 2459: 52,51 + 2460: 53,51 + 2461: 54,51 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: 288: 45,-5 - 1397: 33,12 - 1398: 33,11 - 1399: 33,10 - 1400: 33,9 - 1401: 33,8 - 1402: 33,7 - 1403: 33,6 - 1404: 33,5 - 1405: 33,4 - 1406: 34,12 - 1407: 35,12 - 1408: 36,12 - 1409: 37,12 - 1410: 38,12 - 1411: 39,12 - 2342: 33,3 - 2343: 33,2 + 1395: 33,12 + 1396: 33,11 + 1397: 33,10 + 1398: 33,9 + 1399: 33,8 + 1400: 33,7 + 1401: 33,6 + 1402: 33,5 + 1403: 33,4 + 1404: 34,12 + 1405: 35,12 + 1406: 36,12 + 1407: 37,12 + 1408: 38,12 + 1409: 39,12 + 2334: 33,3 + 2335: 33,2 - node: color: '#8932B885' id: QuarterTileOverlayGreyscale180 decals: - 1484: 66,51 + 1482: 66,51 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2072: 50,2 + 2070: 50,2 - node: color: '#AE6716FF' id: QuarterTileOverlayGreyscale180 decals: - 2470: 58,51 - 2471: 59,51 - 2472: 60,51 - 2473: 61,51 - 2474: 62,51 + 2462: 58,51 + 2463: 59,51 + 2464: 60,51 + 2465: 61,51 + 2466: 62,51 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 @@ -3430,107 +3427,107 @@ entities: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 1525: 72,20 - 1526: 72,21 - 1527: 72,22 - 1528: 72,23 - 1529: 72,24 - 1530: 72,25 - 1531: 72,26 - 1532: 72,27 - 1533: 72,28 - 1534: 72,30 - 1535: 72,31 - 1536: 72,32 - 1537: 72,33 - 1538: 72,34 - 1539: 72,35 - 1540: 72,36 - 1541: 73,36 - 1542: 75,36 - 1543: 76,36 - 1544: 77,36 - 1545: 78,36 - 1546: 79,36 - 1547: 80,36 - 1548: 81,36 - 1549: 82,36 - 1550: 83,36 - 1551: 83,37 - 1552: 83,38 - 1553: 83,41 - 1554: 83,42 - 1555: 83,43 - 1556: 83,44 - 1557: 83,45 - 1558: 83,46 - 1559: 83,47 - 1560: 83,48 - 1561: 83,50 - 1562: 83,49 - 1618: 47,51 - 1619: 48,51 - 1620: 49,51 - 1621: 50,51 - 1622: 51,51 - 1623: 52,51 - 1624: 53,51 - 1625: 54,51 - 1632: 55,51 - 1633: 56,51 - 1634: 57,51 - 1635: 58,51 - 1636: 64,51 - 1637: 65,51 - 1725: 47,50 - 1726: 47,49 - 1727: 47,48 - 1728: 47,47 - 1729: 47,46 - 1730: 47,45 - 1731: 47,44 - 1732: 47,43 - 1733: 46,43 - 1734: 45,43 - 2109: 83,39 - 2110: 83,40 + 1523: 72,20 + 1524: 72,21 + 1525: 72,22 + 1526: 72,23 + 1527: 72,24 + 1528: 72,25 + 1529: 72,26 + 1530: 72,27 + 1531: 72,28 + 1532: 72,30 + 1533: 72,31 + 1534: 72,32 + 1535: 72,33 + 1536: 72,34 + 1537: 72,35 + 1538: 72,36 + 1539: 73,36 + 1540: 75,36 + 1541: 76,36 + 1542: 77,36 + 1543: 78,36 + 1544: 79,36 + 1545: 80,36 + 1546: 81,36 + 1547: 82,36 + 1548: 83,36 + 1549: 83,37 + 1550: 83,38 + 1551: 83,41 + 1552: 83,42 + 1553: 83,43 + 1554: 83,44 + 1555: 83,45 + 1556: 83,46 + 1557: 83,47 + 1558: 83,48 + 1559: 83,50 + 1560: 83,49 + 1616: 47,51 + 1617: 48,51 + 1618: 49,51 + 1619: 50,51 + 1620: 51,51 + 1621: 52,51 + 1622: 53,51 + 1623: 54,51 + 1630: 55,51 + 1631: 56,51 + 1632: 57,51 + 1633: 58,51 + 1634: 64,51 + 1635: 65,51 + 1723: 47,50 + 1724: 47,49 + 1725: 47,48 + 1726: 47,47 + 1727: 47,46 + 1728: 47,45 + 1729: 47,44 + 1730: 47,43 + 1731: 46,43 + 1732: 45,43 + 2107: 83,39 + 2108: 83,40 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 1485: 72,18 - 1486: 72,17 - 1487: 72,16 - 1488: 72,19 - 1489: 72,15 - 1490: 67,12 - 1491: 66,12 - 1492: 65,12 - 1493: 64,12 - 1494: 63,12 - 1495: 62,12 - 1496: 68,12 + 1483: 72,18 + 1484: 72,17 + 1485: 72,16 + 1486: 72,19 + 1487: 72,15 + 1488: 67,12 + 1489: 66,12 + 1490: 65,12 + 1491: 64,12 + 1492: 63,12 + 1493: 62,12 + 1494: 68,12 - node: angle: 4.71238898038469 rad color: '#EFB34196' id: QuarterTileOverlayGreyscale180 decals: - 2262: 49,55 + 2254: 49,55 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale180 decals: - 2348: 43,6 - 2349: 42,6 - 2350: 41,6 - 2351: 44,7 - 2352: 44,9 - 2369: 40,12 - 2370: 41,12 - 2371: 42,12 - 2372: 43,12 - 2373: 44,12 - 2374: 45,12 + 2340: 43,6 + 2341: 42,6 + 2342: 41,6 + 2343: 44,7 + 2344: 44,9 + 2361: 40,12 + 2362: 41,12 + 2363: 42,12 + 2364: 43,12 + 2365: 44,12 + 2366: 45,12 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -3550,9 +3547,9 @@ entities: decals: 270: 50,-5 287: 44,-5 - 2063: 49,2 - 2386: 36,-9 - 2406: 58,2 + 2061: 49,2 + 2378: 36,-9 + 2398: 58,2 - node: cleanable: True color: '#52B4E996' @@ -3563,103 +3560,103 @@ entities: color: '#8932B885' id: QuarterTileOverlayGreyscale270 decals: - 1480: 70,49 - 1483: 68,51 + 1478: 70,49 + 1481: 68,51 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1379: 17,12 - 1380: 18,12 - 1381: 19,12 - 1382: 20,12 - 1383: 21,12 - 1384: 23,12 - 1385: 22,12 - 1386: 24,12 - 1387: 25,12 - 1388: 26,12 - 1389: 26,11 - 1390: 26,10 - 1391: 26,9 - 1392: 26,8 - 1393: 26,7 - 1394: 26,6 - 1395: 26,5 - 1396: 26,4 - 2334: 26,3 - 2335: 26,2 - 2336: 27,2 - 2337: 28,2 - 2338: 29,2 - 2339: 30,2 + 1377: 17,12 + 1378: 18,12 + 1379: 19,12 + 1380: 20,12 + 1381: 21,12 + 1382: 23,12 + 1383: 22,12 + 1384: 24,12 + 1385: 25,12 + 1386: 26,12 + 1387: 26,11 + 1388: 26,10 + 1389: 26,9 + 1390: 26,8 + 1391: 26,7 + 1392: 26,6 + 1393: 26,5 + 1394: 26,4 + 2326: 26,3 + 2327: 26,2 + 2328: 27,2 + 2329: 28,2 + 2330: 29,2 + 2331: 30,2 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 1497: 42,12 - 1498: 43,12 - 1499: 44,12 - 1500: 46,12 - 1501: 47,12 - 1502: 45,12 - 1503: 48,12 - 1504: 49,12 - 1505: 50,12 - 1506: 51,12 - 1507: 52,12 - 1508: 53,12 - 1509: 54,12 - 1510: 55,12 - 1511: 56,12 - 1512: 57,12 - 1513: 58,12 - 1514: 59,12 - 1515: 60,12 - 1516: 61,12 - 1517: 62,12 - 1518: 69,12 - 1519: 70,12 - 1520: 71,12 - 1521: 72,12 - 1638: 70,51 - 1639: 69,51 - 1640: 70,50 - 1689: 14,35 - 1691: 15,36 - 1692: 16,36 - 1693: 17,36 - 1694: 18,36 - 1695: 19,36 - 1696: 20,36 - 1697: 21,36 - 1698: 22,36 - 1699: 23,36 - 1700: 24,36 - 1701: 25,36 - 1702: 26,36 - 1703: 27,36 - 1704: 28,36 - 1705: 29,36 - 1706: 30,36 - 1707: 32,36 - 1708: 34,36 - 1709: 34,35 - 1710: 35,35 - 1711: 35,34 - 1718: 38,43 - 1719: 39,43 - 1720: 40,43 - 1721: 42,43 - 1722: 43,43 - 1723: 44,43 - 1724: 45,43 + 1495: 42,12 + 1496: 43,12 + 1497: 44,12 + 1498: 46,12 + 1499: 47,12 + 1500: 45,12 + 1501: 48,12 + 1502: 49,12 + 1503: 50,12 + 1504: 51,12 + 1505: 52,12 + 1506: 53,12 + 1507: 54,12 + 1508: 55,12 + 1509: 56,12 + 1510: 57,12 + 1511: 58,12 + 1512: 59,12 + 1513: 60,12 + 1514: 61,12 + 1515: 62,12 + 1516: 69,12 + 1517: 70,12 + 1518: 71,12 + 1519: 72,12 + 1636: 70,51 + 1637: 69,51 + 1638: 70,50 + 1687: 14,35 + 1689: 15,36 + 1690: 16,36 + 1691: 17,36 + 1692: 18,36 + 1693: 19,36 + 1694: 20,36 + 1695: 21,36 + 1696: 22,36 + 1697: 23,36 + 1698: 24,36 + 1699: 25,36 + 1700: 26,36 + 1701: 27,36 + 1702: 28,36 + 1703: 29,36 + 1704: 30,36 + 1705: 32,36 + 1706: 34,36 + 1707: 34,35 + 1708: 35,35 + 1709: 35,34 + 1716: 38,43 + 1717: 39,43 + 1718: 40,43 + 1719: 42,43 + 1720: 43,43 + 1721: 44,43 + 1722: 45,43 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 2340: 32,2 - 2341: 31,2 + 2332: 32,2 + 2333: 31,2 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -3673,11 +3670,11 @@ entities: color: '#FA750096' id: QuarterTileOverlayGreyscale270 decals: - 2353: 40,7 - 2354: 40,8 - 2355: 40,9 - 2356: 41,6 - 2357: 42,6 + 2345: 40,7 + 2346: 40,8 + 2347: 40,9 + 2348: 41,6 + 2349: 42,6 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -3715,185 +3712,185 @@ entities: 167: 13,20 168: 13,16 169: 13,15 - 1687: 13,14 + 1685: 13,14 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: 300: 43,-4 - 2061: 38,4 + 2059: 38,4 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 1522: 72,12 - 1523: 72,13 - 1524: 72,14 - 1585: 72,39 - 1586: 72,40 - 1587: 72,42 - 1588: 72,41 - 1589: 72,43 - 1590: 72,45 - 1591: 72,44 - 1592: 72,46 - 1593: 72,47 - 1594: 72,48 - 1595: 72,49 - 1596: 72,50 - 1597: 72,51 - 1598: 72,52 - 1599: 72,53 - 1600: 71,53 - 1601: 70,53 - 1602: 69,53 - 1603: 68,53 - 1604: 67,53 - 1678: 66,15 - 1679: 65,15 - 1680: 64,15 - 1688: 13,34 - 1690: 14,35 - 1712: 37,37 - 1713: 37,38 - 1714: 37,39 - 1715: 37,40 - 1716: 37,41 - 1717: 37,42 + 1520: 72,12 + 1521: 72,13 + 1522: 72,14 + 1583: 72,39 + 1584: 72,40 + 1585: 72,42 + 1586: 72,41 + 1587: 72,43 + 1588: 72,45 + 1589: 72,44 + 1590: 72,46 + 1591: 72,47 + 1592: 72,48 + 1593: 72,49 + 1594: 72,50 + 1595: 72,51 + 1596: 72,52 + 1597: 72,53 + 1598: 71,53 + 1599: 70,53 + 1600: 69,53 + 1601: 68,53 + 1602: 67,53 + 1676: 66,15 + 1677: 65,15 + 1678: 64,15 + 1686: 13,34 + 1688: 14,35 + 1710: 37,37 + 1711: 37,38 + 1712: 37,39 + 1713: 37,40 + 1714: 37,41 + 1715: 37,42 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 1412: 37,32 - 1413: 37,31 - 1414: 37,30 - 1415: 37,28 - 1416: 37,29 - 1417: 37,27 - 1418: 37,26 - 1419: 37,25 - 1420: 37,24 - 1421: 37,23 - 1422: 37,22 - 1423: 37,21 - 1424: 37,20 - 1425: 37,19 - 1426: 37,18 - 1427: 37,17 - 1428: 37,16 - 1429: 37,15 - 1430: 37,14 - 1431: 38,14 - 1432: 39,14 - 1433: 40,14 - 1434: 42,14 - 1435: 41,14 - 1436: 43,14 - 1437: 44,14 - 1438: 45,14 - 1439: 46,14 - 1446: 52,14 - 1447: 53,14 - 1448: 54,14 - 1449: 55,14 - 1450: 56,14 - 1451: 57,14 - 1452: 58,14 - 1453: 59,14 - 1454: 37,33 - 1455: 37,34 - 1456: 37,35 - 1457: 37,36 + 1410: 37,32 + 1411: 37,31 + 1412: 37,30 + 1413: 37,28 + 1414: 37,29 + 1415: 37,27 + 1416: 37,26 + 1417: 37,25 + 1418: 37,24 + 1419: 37,23 + 1420: 37,22 + 1421: 37,21 + 1422: 37,20 + 1423: 37,19 + 1424: 37,18 + 1425: 37,17 + 1426: 37,16 + 1427: 37,15 + 1428: 37,14 + 1429: 38,14 + 1430: 39,14 + 1431: 40,14 + 1432: 42,14 + 1433: 41,14 + 1434: 43,14 + 1435: 44,14 + 1436: 45,14 + 1437: 46,14 + 1444: 52,14 + 1445: 53,14 + 1446: 54,14 + 1447: 55,14 + 1448: 56,14 + 1449: 57,14 + 1450: 58,14 + 1451: 59,14 + 1452: 37,33 + 1453: 37,34 + 1454: 37,35 + 1455: 37,36 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale90 decals: - 2358: 44,9 - 2359: 44,7 - 2360: 43,10 - 2361: 42,10 - 2362: 41,10 + 2350: 44,9 + 2351: 44,7 + 2352: 43,10 + 2353: 42,10 + 2354: 41,10 - node: cleanable: True color: '#FFFFFFFF' id: Remains decals: - 1255: 12.122713,-0.9261559 - 1256: 1.9508317,21.915426 + 1253: 12.122713,-0.9261559 + 1254: 1.9508317,21.915426 - node: cleanable: True color: '#FFFFFFFF' id: Rock01 decals: - 1295: 14,-19 - 1309: 67,3 - 1310: 70,6 - 1314: 81,11 - 1317: 80,24 + 1293: 14,-19 + 1307: 67,3 + 1308: 70,6 + 1312: 81,11 + 1315: 80,24 - node: cleanable: True color: '#FFFFFFFF' id: Rock02 decals: - 1296: 12,-19 - 1298: 30,-15 - 1315: 86,14 - 1318: 89,17 + 1294: 12,-19 + 1296: 30,-15 + 1313: 86,14 + 1316: 89,17 - node: cleanable: True color: '#FFFFFFFF' id: Rock03 decals: - 1297: 27,-15 - 1311: 58,9 + 1295: 27,-15 + 1309: 58,9 - node: cleanable: True color: '#FFFFFFFF' id: Rock04 decals: - 1299: 31,-8 - 1301: 33,-10 - 1302: 33,-3 - 1303: 41,-14 - 1304: 51,-15 - 1305: 53,-11 - 1306: 60,-7 - 1307: 60,-8 - 1308: 61,-1 - 1319: 90,15 + 1297: 31,-8 + 1299: 33,-10 + 1300: 33,-3 + 1301: 41,-14 + 1302: 51,-15 + 1303: 53,-11 + 1304: 60,-7 + 1305: 60,-8 + 1306: 61,-1 + 1317: 90,15 - node: cleanable: True color: '#FFFFFFFF' id: Rock05 decals: - 1300: 30,-6 - 1313: 61,8 + 1298: 30,-6 + 1311: 61,8 - node: cleanable: True color: '#FFFFFFFF' id: Rock06 decals: - 1316: 86,20 - 2285: 88,18 - 2286: 88,20 + 1314: 86,20 + 2277: 88,18 + 2278: 88,20 - node: cleanable: True color: '#FFFFFFFF' id: Rock07 decals: - 1312: 60,9 - 2284: 89,16 - 2287: 92,20 + 1310: 60,9 + 2276: 89,16 + 2279: 92,20 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 293: 35,-3 - 534: 60,27 - 2058: 35,6 - 2375: 35,-7 - 2393: 57,5 - 2394: 58,6 + 533: 60,27 + 2056: 35,6 + 2367: 35,-7 + 2385: 57,5 + 2386: 58,6 - node: cleanable: True color: '#52B4E996' @@ -3913,29 +3910,29 @@ entities: 489: 49,21 495: 47,19 496: 48,20 - 522: 39,32 - 1048: 81,53 - 1083: 13,10 + 521: 39,32 + 1046: 81,53 + 1081: 13,10 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 966: 47,57 + 964: 47,57 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale decals: - 2344: 40,10 + 2336: 40,10 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: 289: 45,-11 - 535: 62,24 - 2376: 37,-12 - 2392: 55,2 - 2395: 60,1 - 2396: 60,1 + 534: 62,24 + 2368: 37,-12 + 2384: 55,2 + 2387: 60,1 + 2388: 60,1 - node: cleanable: True color: '#52B4E996' @@ -3954,39 +3951,39 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 493: 52,17 - 524: 43,30 - 1047: 83,52 - 1081: 15,8 + 523: 43,30 + 1045: 83,52 + 1079: 15,8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 967: 51,54 + 965: 51,54 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2345: 44,6 + 2337: 44,6 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: 107: 23,29 - 2161: 28,26 - 2162: 24,28 - 2163: 25,27 + 2153: 28,26 + 2154: 24,28 + 2155: 25,27 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: 290: 44,-11 291: 35,-5 - 543: 60,24 - 2060: 35,2 - 2377: 36,-12 - 2378: 35,-9 - 2397: 57,2 - 2398: 58,1 + 542: 60,24 + 2058: 35,2 + 2369: 36,-12 + 2370: 35,-9 + 2389: 57,2 + 2390: 58,1 - node: cleanable: True color: '#52B4E996' @@ -4006,37 +4003,37 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 494: 47,17 - 521: 39,30 - 1046: 81,52 - 1082: 13,8 + 520: 39,30 + 1044: 81,52 + 1080: 13,8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 965: 47,55 - 968: 49,54 + 963: 47,55 + 966: 49,54 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2346: 40,6 + 2338: 40,6 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: 108: 23,28 109: 24,27 - 2164: 25,26 + 2156: 25,26 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: 299: 43,-3 - 533: 62,27 - 2059: 38,6 - 2379: 37,-7 - 2391: 55,4 - 2399: 60,6 + 532: 62,27 + 2057: 38,6 + 2371: 37,-7 + 2383: 55,4 + 2391: 60,6 - node: cleanable: True color: '#52B4E996' @@ -4056,24 +4053,24 @@ entities: 490: 50,21 491: 51,20 492: 52,19 - 523: 43,32 - 1045: 83,53 - 1080: 15,10 + 522: 43,32 + 1043: 83,53 + 1078: 15,10 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 964: 51,57 + 962: 51,57 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2347: 44,10 + 2339: 44,10 - node: color: '#FFFFFFFF' id: WarnBox decals: - 1803: 52,69 + 1801: 52,69 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNE @@ -4081,7 +4078,7 @@ entities: 465: 58,24 466: 47,28 470: 43,28 - 1904: 58,29 + 1902: 58,29 - node: color: '#DE3A3A96' id: WarnCornerGreyscaleNW @@ -4107,106 +4104,106 @@ entities: color: '#FFFFFFFF' id: WarnCornerNE decals: - 940: 43,64 - 1322: 52,59 - 1874: 1,5 - 2734: 51,80 + 938: 43,64 + 1320: 52,59 + 1872: 1,5 + 2726: 51,80 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 187: 22,7 - 932: 49,59 - 2722: 48,80 + 930: 49,59 + 2714: 48,80 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 941: 43,66 - 1785: 50,73 + 939: 43,66 + 1783: 50,73 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2733: 48,76 + 2725: 48,76 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1988: 23,-26 - 1989: 23,-30 - 2729: 51,76 + 1986: 23,-26 + 1987: 23,-30 + 2721: 51,76 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1984: 22,-30 - 1987: 22,-26 + 1982: 22,-30 + 1985: 22,-26 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1982: 23,-26 - 1983: 23,-22 + 1980: 23,-26 + 1981: 23,-22 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1985: 22,-26 - 1986: 22,-22 + 1983: 22,-26 + 1984: 22,-22 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 1875: 1,9 - 2331: 29,1 + 1873: 1,9 + 2323: 29,1 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 2319: 10,14 + 2311: 10,14 - node: color: '#FFFFFFFF' id: WarnEndS decals: 48: 22,17 - 2318: 10,12 - 2327: 26,17 + 2310: 10,12 + 2319: 26,17 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 2330: 27,1 + 2322: 27,1 - node: color: '#DE3A3A96' id: WarnFull decals: - 527: 48,35 + 526: 48,35 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 536: 59,24 + 535: 59,24 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: 487: 41,16 488: 41,19 - 532: 57,25 - 1903: 59,29 + 531: 57,25 + 1901: 59,29 - node: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 1182: 75,43 - 1183: 75,47 + 1180: 75,43 + 1181: 75,47 - node: color: '#DE3A3A96' id: WarnLineE decals: 348: 47,27 - 530: 47,35 + 529: 47,35 - node: color: '#FFFFFFFF' id: WarnLineE @@ -4215,43 +4212,43 @@ entities: 311: 41,24 312: 41,23 313: 41,22 - 922: 41,74 - 923: 41,75 - 924: 41,76 - 1786: 50,74 - 1796: 50,70 - 1797: 50,69 - 1798: 50,68 - 1837: 72,15 - 1841: 72,22 - 1842: 72,29 - 1843: 72,47 - 1846: 71,54 - 1854: 47,46 - 1861: 37,39 - 1864: 13,34 - 1867: 13,27 - 1868: 13,16 - 1887: 33,11 - 1890: 37,15 - 1891: 37,22 - 1894: 37,34 - 1976: 23,-23 - 1977: 23,-24 - 1978: 23,-25 - 1979: 23,-27 - 1980: 23,-28 - 1981: 23,-29 - 2321: 10,13 - 2329: 26,18 - 2726: 51,79 - 2727: 51,78 - 2728: 51,77 + 920: 41,74 + 921: 41,75 + 922: 41,76 + 1784: 50,74 + 1794: 50,70 + 1795: 50,69 + 1796: 50,68 + 1835: 72,15 + 1839: 72,22 + 1840: 72,29 + 1841: 72,47 + 1844: 71,54 + 1852: 47,46 + 1859: 37,39 + 1862: 13,34 + 1865: 13,27 + 1866: 13,16 + 1885: 33,11 + 1888: 37,15 + 1889: 37,22 + 1892: 37,34 + 1974: 23,-23 + 1975: 23,-24 + 1976: 23,-25 + 1977: 23,-27 + 1978: 23,-28 + 1979: 23,-29 + 2313: 10,13 + 2321: 26,18 + 2718: 51,79 + 2719: 51,78 + 2720: 51,77 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: - 2390: 55,3 + 2382: 55,3 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -4262,19 +4259,19 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2075: 53,4 - 2076: 50,4 - 2077: 47,4 - 2078: 43,4 - 2079: 41,4 - 2080: 37,6 - 2387: 36,-3 - 2388: 38,-3 + 2073: 53,4 + 2074: 50,4 + 2075: 47,4 + 2076: 43,4 + 2077: 41,4 + 2078: 37,6 + 2379: 36,-3 + 2380: 38,-3 - node: color: '#9FED5896' id: WarnLineGreyscaleN decals: - 1834: 53,-3 + 1832: 53,-3 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN @@ -4283,17 +4280,17 @@ entities: 409: 45,24 410: 47,24 472: 57,24 - 1905: 57,29 + 1903: 57,29 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2081: 38,2 - 2082: 36,2 - 2083: 42,2 - 2283: 48,-5 - 2389: 36,-5 - 2407: 59,1 + 2079: 38,2 + 2080: 36,2 + 2081: 42,2 + 2275: 48,-5 + 2381: 36,-5 + 2399: 59,1 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS @@ -4302,13 +4299,13 @@ entities: 461: 48,22 462: 49,22 463: 50,22 - 531: 57,26 + 530: 57,26 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2084: 49,-1 - 2408: 57,3 + 2082: 49,-1 + 2400: 57,3 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW @@ -4321,7 +4318,7 @@ entities: color: '#9FED5896' id: WarnLineN decals: - 2073: 53,2 + 2071: 53,2 - node: color: '#FFFFFFFF' id: WarnLineN @@ -4335,74 +4332,74 @@ entities: 352: 51,28 353: 50,28 354: 49,28 - 1836: 69,12 - 1848: 68,51 - 1849: 58,51 - 1855: 44,43 - 1856: 38,43 - 1859: 33,36 - 1863: 24,36 - 1871: 16,12 - 1876: 0,9 - 1877: -1,9 - 1878: -2,9 - 1883: 25,12 - 1886: 34,12 - 1896: 39,12 - 1897: 46,12 - 1900: 58,12 - 1901: 73,36 - 2333: 28,1 - 2551: 23,4 - 2552: 24,4 - 2730: 51,76 - 2731: 49,76 - 2732: 50,76 + 1834: 69,12 + 1846: 68,51 + 1847: 58,51 + 1853: 44,43 + 1854: 38,43 + 1857: 33,36 + 1861: 24,36 + 1869: 16,12 + 1874: 0,9 + 1875: -1,9 + 1876: -2,9 + 1881: 25,12 + 1884: 34,12 + 1894: 39,12 + 1895: 46,12 + 1898: 58,12 + 1899: 73,36 + 2325: 28,1 + 2543: 23,4 + 2544: 24,4 + 2722: 51,76 + 2723: 49,76 + 2724: 50,76 - node: color: '#FFFFFFFF' id: WarnLineS decals: 49: 22,18 358: 49,27 - 919: 44,74 - 920: 44,75 - 921: 44,76 - 991: 40,71 - 992: 40,72 - 1742: 18,10 - 1743: 18,9 - 1744: 18,8 - 1782: 54,72 - 1783: 54,73 - 1784: 54,74 - 1799: 54,70 - 1800: 54,69 - 1801: 54,68 - 1838: 70,15 - 1839: 70,29 - 1840: 70,22 - 1844: 70,47 - 1845: 69,54 - 1853: 45,46 - 1860: 35,39 - 1865: 11,34 - 1866: 11,27 - 1869: 11,16 - 1888: 26,11 - 1889: 35,15 - 1892: 35,22 - 1893: 35,34 - 1970: 22,-29 - 1971: 22,-28 - 1972: 22,-27 - 1973: 22,-25 - 1974: 22,-24 - 1975: 22,-23 - 2320: 10,13 - 2328: 26,18 - 2723: 48,79 - 2724: 48,78 - 2725: 48,77 + 917: 44,74 + 918: 44,75 + 919: 44,76 + 989: 40,71 + 990: 40,72 + 1740: 18,10 + 1741: 18,9 + 1742: 18,8 + 1780: 54,72 + 1781: 54,73 + 1782: 54,74 + 1797: 54,70 + 1798: 54,69 + 1799: 54,68 + 1836: 70,15 + 1837: 70,29 + 1838: 70,22 + 1842: 70,47 + 1843: 69,54 + 1851: 45,46 + 1858: 35,39 + 1863: 11,34 + 1864: 11,27 + 1867: 11,16 + 1886: 26,11 + 1887: 35,15 + 1890: 35,22 + 1891: 35,34 + 1968: 22,-29 + 1969: 22,-28 + 1970: 22,-27 + 1971: 22,-25 + 1972: 22,-24 + 1973: 22,-23 + 2312: 10,13 + 2320: 26,18 + 2715: 48,79 + 2716: 48,78 + 2717: 48,77 - node: color: '#DE3A3A96' id: WarnLineW @@ -4420,116 +4417,116 @@ entities: 362: 53,26 363: 52,26 364: 54,26 - 933: 50,59 - 934: 51,59 - 935: 44,63 - 936: 45,63 - 937: 46,63 - 989: 46,77 - 990: 47,77 - 1629: 55,50 - 1630: 56,50 - 1631: 57,50 - 1835: 69,14 - 1847: 68,53 - 1850: 58,53 - 1852: 44,45 - 1857: 38,45 - 1858: 33,38 - 1862: 24,38 - 1870: 16,14 - 1872: -2,5 - 1873: -1,5 - 1884: 25,14 - 1885: 34,14 - 1895: 39,14 - 1898: 46,14 - 1899: 58,14 - 1902: 73,38 - 2332: 28,1 - 2549: 23,5 - 2550: 24,5 - 2720: 50,80 - 2721: 49,80 + 931: 50,59 + 932: 51,59 + 933: 44,63 + 934: 45,63 + 935: 46,63 + 987: 46,77 + 988: 47,77 + 1627: 55,50 + 1628: 56,50 + 1629: 57,50 + 1833: 69,14 + 1845: 68,53 + 1848: 58,53 + 1850: 44,45 + 1855: 38,45 + 1856: 33,38 + 1860: 24,38 + 1868: 16,14 + 1870: -2,5 + 1871: -1,5 + 1882: 25,14 + 1883: 34,14 + 1893: 39,14 + 1896: 46,14 + 1897: 58,14 + 1900: 73,38 + 2324: 28,1 + 2541: 23,5 + 2542: 24,5 + 2712: 50,80 + 2713: 49,80 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1000: 8,22 + 998: 8,22 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 999: 7,22 + 997: 7,22 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 1001: 8,21 + 999: 8,21 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 998: 7,21 + 996: 7,21 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE decals: - 897: 41,-8 + 895: 41,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: - 896: 40,-8 + 894: 40,-8 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1181: 74,40 + 1179: 74,40 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 636: 41,34 - 637: 41,35 - 638: 41,36 - 655: 18,55 - 656: 18,54 - 657: 18,53 - 658: 21,46 - 1174: 74,42 - 1175: 74,41 - 2182: 21,48 - 2183: 21,49 - 2184: 21,50 - 2185: 21,51 + 635: 41,34 + 636: 41,35 + 637: 41,36 + 654: 18,55 + 655: 18,54 + 656: 18,53 + 657: 21,46 + 1172: 74,42 + 1173: 74,41 + 2174: 21,48 + 2175: 21,49 + 2176: 21,50 + 2177: 21,51 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 683: 21,47 + 682: 21,47 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 632: 49,30 - 633: 50,30 - 634: 51,30 - 635: 52,30 - 1176: 75,40 - 1177: 76,40 - 1178: 78,40 - 1179: 77,40 - 1180: 79,40 + 631: 49,30 + 632: 50,30 + 633: 51,30 + 634: 52,30 + 1174: 75,40 + 1175: 76,40 + 1176: 78,40 + 1177: 77,40 + 1178: 79,40 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 628: 52,33 - 629: 51,33 - 630: 50,33 - 631: 49,33 + 627: 52,33 + 628: 51,33 + 629: 50,33 + 630: 49,33 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -4542,126 +4539,126 @@ entities: color: '#FFFFFFFF' id: arrow decals: - 1261: 84.899414,12.001698 + 1259: 84.899414,12.001698 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 1157: 75.92607,43.956528 + 1155: 75.92607,43.956528 - node: cleanable: True color: '#FFFFFFFF' id: evac decals: - 1288: 13,63 + 1286: 13,63 - node: cleanable: True angle: -0.7853981633974483 rad color: '#4A2C0CAE' id: footprint decals: - 1245: 25.250029,37.717045 - 1246: 25.462027,38.116577 + 1243: 25.250029,37.717045 + 1244: 25.462027,38.116577 - node: cleanable: True angle: -0.2617993877991494 rad color: '#4A2C0CAE' id: footprint decals: - 1241: 25.877867,37.30936 - 1242: 26.032787,37.68443 - 1243: 25.943096,38.18181 - 1244: 27.793993,38.18996 + 1239: 25.877867,37.30936 + 1240: 26.032787,37.68443 + 1241: 25.943096,38.18181 + 1242: 27.793993,38.18996 - node: cleanable: True color: '#4A2C0CAE' id: footprint decals: - 1237: 25.64956,37.65997 + 1235: 25.64956,37.65997 - node: cleanable: True angle: 0.08726646259971647 rad color: '#4A2C0CAE' id: footprint decals: - 1249: 26.399704,37.76597 - 1250: 27.467844,37.896427 - 1251: 26.986774,38.214424 - 1252: 27.427656,38.18181 + 1247: 26.399704,37.76597 + 1248: 27.467844,37.896427 + 1249: 26.986774,38.214424 + 1250: 27.427656,38.18181 - node: cleanable: True angle: 0.17453292519943295 rad color: '#4A2C0CAE' id: footprint decals: - 1247: 26.685085,37.912735 - 1248: 26.375244,38.132885 + 1245: 26.685085,37.912735 + 1246: 26.375244,38.132885 - node: cleanable: True angle: 0.2617993877991494 rad color: '#4A2C0CAE' id: footprint decals: - 1238: 28.29137,38.2715 - 1239: 26.766623,38.20627 - 1240: 27.166155,37.782276 + 1236: 28.29137,38.2715 + 1237: 26.766623,38.20627 + 1238: 27.166155,37.782276 - node: color: '#FFFFFFFF' id: grasssnow05 decals: - 1170: 74.89878,44.092968 - 1171: 74.93003,46.092968 - 1172: 75.414406,46.077343 - 1173: 75.851906,46.030468 + 1168: 74.89878,44.092968 + 1169: 74.93003,46.092968 + 1170: 75.414406,46.077343 + 1171: 75.851906,46.030468 - node: cleanable: True color: '#FFFFFFFF' id: revolution decals: - 1258: 33.103058,61.98245 + 1256: 33.103058,61.98245 - node: cleanable: True color: '#A72323FF' id: rune1 decals: - 811: 26.00899,59.65178 + 809: 26.00899,59.65178 - node: cleanable: True color: '#FFFFFFFF' id: shop decals: - 1259: 30.793203,60.95846 - 1260: 84.96057,11.21894 + 1257: 30.793203,60.95846 + 1258: 84.96057,11.21894 - node: cleanable: True color: '#A72323FF' id: skull decals: - 810: 26.106834,58.489876 + 808: 26.106834,58.489876 - node: cleanable: True color: '#FFFFFFFF' id: skull decals: - 1257: 17.135914,61.08151 + 1255: 17.135914,61.08151 - node: cleanable: True color: '#755900FF' id: splatter decals: - 805: 6,25 + 803: 6,25 - node: cleanable: True color: '#A72323FF' id: splatter decals: - 806: 25.40969,56.93659 - 807: 25.837763,57.694885 - 808: 25.103926,58.954636 - 809: 25.495306,59.84747 - 812: 28.981913,60.899128 - 813: 33.923073,62.293415 - 814: 28.186922,63.699936 + 804: 25.40969,56.93659 + 805: 25.837763,57.694885 + 806: 25.103926,58.954636 + 807: 25.495306,59.84747 + 810: 28.981913,60.899128 + 811: 33.923073,62.293415 + 812: 28.186922,63.699936 - type: GridAtmosphere version: 2 data: @@ -4945,7 +4942,8 @@ entities: 7,3: 0: 65535 4,4: - 0: 65535 + 0: 65533 + 5: 2 4,5: 0: 65535 4,6: @@ -4966,14 +4964,14 @@ entities: 1: 1360 6,5: 0: 65279 - 5: 256 + 6: 256 6,6: 0: 65535 6,7: 0: 65535 7,4: 0: 65279 - 6: 256 + 7: 256 7,5: 0: 65535 7,6: @@ -5068,22 +5066,22 @@ entities: 0: 65535 6,18: 0: 16191 - 7: 192 - 8: 49152 + 8: 192 + 9: 49152 6,19: 0: 16191 - 9: 49344 + 10: 49344 7,16: 0: 65535 7,17: 0: 65535 7,18: 0: 61423 - 7: 16 - 8: 4096 + 8: 16 + 9: 4096 7,19: 0: 61423 - 9: 4112 + 10: 4112 4,20: 0: 65535 4,21: @@ -5102,8 +5100,8 @@ entities: 0: 65535 6,20: 0: 16191 - 10: 192 - 9: 49152 + 11: 192 + 10: 49152 6,21: 0: 65535 6,22: @@ -5112,8 +5110,8 @@ entities: 0: 65535 7,20: 0: 61423 - 10: 16 - 9: 4096 + 11: 16 + 10: 4096 7,21: 0: 65535 7,22: @@ -5220,7 +5218,7 @@ entities: 0: 65535 10,5: 0: 65023 - 6: 512 + 7: 512 10,6: 0: 65535 10,7: @@ -5347,7 +5345,7 @@ entities: 0: 65535 9,21: 0: 30719 - 9: 34816 + 10: 34816 9,22: 0: 65535 9,23: @@ -5356,7 +5354,7 @@ entities: 0: 65535 10,21: 0: 52479 - 9: 13056 + 10: 13056 10,22: 0: 65535 10,23: @@ -5421,7 +5419,7 @@ entities: 0: 65535 12,1: 0: 65279 - 5: 256 + 6: 256 12,2: 0: 65535 12,3: @@ -6449,7 +6447,7 @@ entities: 0: 65535 2,-1: 0: 65416 - 9: 119 + 10: 119 3,-1: 0: 65535 -1,5: @@ -6458,7 +6456,7 @@ entities: 0: 52463 2,-2: 0: 35023 - 9: 21776 + 10: 21776 3,-3: 0: 65535 3,-2: @@ -6622,7 +6620,7 @@ entities: 0: 876 1,-1: 0: 61440 - 9: 559 + 10: 559 1,-4: 0: 136 8,-8: @@ -6639,13 +6637,13 @@ entities: 0: 58083 11,-6: 0: 768 - 9: 7168 + 10: 7168 11,-5: 0: 63888 - 9: 1 + 10: 1 1,-6: 0: 19968 - 9: 76 + 10: 76 1,-5: 0: 35012 14,-4: @@ -6670,7 +6668,7 @@ entities: 0: 43690 12,-6: 0: 60074 - 9: 1280 + 10: 1280 13,-8: 0: 61408 13,-7: @@ -6794,7 +6792,7 @@ entities: -1,14: 0: 240 1,-7: - 9: 49152 + 10: 49152 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6871,6 +6869,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 23.57087 + - 88.67137 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.14984 moles: @@ -8347,7 +8360,6 @@ entities: - 477 - 478 - 7260 - - 7265 - 7229 - 7266 - uid: 81 @@ -10081,10 +10093,11 @@ entities: parent: 2 - proto: AirlockMaintAtmoLocked entities: - - uid: 278 + - uid: 711 components: - type: Transform - pos: 52.5,76.5 + rot: -1.5707963267948966 rad + pos: 57.5,75.5 parent: 2 - proto: AirlockMaintCargoLocked entities: @@ -12222,6 +12235,11 @@ entities: parent: 16159 - proto: AsteroidRock entities: + - uid: 503 + components: + - type: Transform + pos: 60.5,83.5 + parent: 2 - uid: 594 components: - type: Transform @@ -12430,7 +12448,7 @@ entities: - uid: 635 components: - type: Transform - pos: 60.5,83.5 + pos: 59.5,82.5 parent: 2 - uid: 636 components: @@ -12460,7 +12478,7 @@ entities: - uid: 641 components: - type: Transform - pos: 62.5,80.5 + pos: 59.5,84.5 parent: 2 - uid: 642 components: @@ -12787,21 +12805,11 @@ entities: - type: Transform pos: 59.5,85.5 parent: 2 - - uid: 716 - components: - - type: Transform - pos: 59.5,84.5 - parent: 2 - uid: 717 components: - type: Transform pos: 59.5,83.5 parent: 2 - - uid: 718 - components: - - type: Transform - pos: 59.5,82.5 - parent: 2 - uid: 719 components: - type: Transform @@ -13237,6 +13245,11 @@ entities: - type: Transform pos: 60.5,79.5 parent: 2 + - uid: 16384 + components: + - type: Transform + pos: 62.5,80.5 + parent: 2 - proto: AsteroidRockGold entities: - uid: 805 @@ -14580,11 +14593,6 @@ entities: - type: Transform pos: 34.5,25.5 parent: 2 - - uid: 1035 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - uid: 1036 components: - type: Transform @@ -15724,6 +15732,16 @@ entities: parent: 15544 - proto: CableApcExtension entities: + - uid: 278 + components: + - type: Transform + pos: 52.5,78.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 53.5,78.5 + parent: 2 - uid: 1161 components: - type: Transform @@ -24399,11 +24417,6 @@ entities: - type: Transform pos: 57.5,74.5 parent: 2 - - uid: 2896 - components: - - type: Transform - pos: 57.5,75.5 - parent: 2 - uid: 2897 components: - type: Transform @@ -26999,6 +27012,11 @@ entities: - type: Transform pos: 53.5,83.5 parent: 2 + - uid: 14137 + components: + - type: Transform + pos: 54.5,78.5 + parent: 2 - uid: 16270 components: - type: Transform @@ -27242,6 +27260,11 @@ entities: - type: Transform pos: 49.5,78.5 parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 47.5,77.5 + parent: 2 - uid: 3448 components: - type: Transform @@ -28017,16 +28040,6 @@ entities: - type: Transform pos: 52.5,72.5 parent: 2 - - uid: 3605 - components: - - type: Transform - pos: 55.5,76.5 - parent: 2 - - uid: 3606 - components: - - type: Transform - pos: 56.5,76.5 - parent: 2 - uid: 3607 components: - type: Transform @@ -28092,26 +28105,11 @@ entities: - type: Transform pos: 52.5,70.5 parent: 2 - - uid: 3620 - components: - - type: Transform - pos: 54.5,76.5 - parent: 2 - uid: 3621 components: - type: Transform pos: 46.5,45.5 parent: 2 - - uid: 3622 - components: - - type: Transform - pos: 52.5,76.5 - parent: 2 - - uid: 3626 - components: - - type: Transform - pos: 47.5,77.5 - parent: 2 - uid: 3627 components: - type: Transform @@ -30642,16 +30640,6 @@ entities: - type: Transform pos: 57.5,74.5 parent: 2 - - uid: 4138 - components: - - type: Transform - pos: 57.5,75.5 - parent: 2 - - uid: 4139 - components: - - type: Transform - pos: 49.5,81.5 - parent: 2 - uid: 4140 components: - type: Transform @@ -31097,21 +31085,66 @@ entities: - type: Transform pos: 54.5,-32.5 parent: 2 + - uid: 5189 + components: + - type: Transform + pos: 52.5,79.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: 55.5,77.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 54.5,76.5 + parent: 2 - uid: 7019 components: - type: Transform pos: 52.5,-32.5 parent: 2 + - uid: 10734 + components: + - type: Transform + pos: 54.5,77.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + pos: 52.5,77.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + pos: 55.5,78.5 + parent: 2 - uid: 11024 components: - type: Transform pos: 51.5,-31.5 parent: 2 + - uid: 11286 + components: + - type: Transform + pos: 52.5,76.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + pos: 52.5,78.5 + parent: 2 - uid: 12199 components: - type: Transform pos: 49.5,77.5 parent: 2 + - uid: 12719 + components: + - type: Transform + pos: 53.5,78.5 + parent: 2 - uid: 12875 components: - type: Transform @@ -31122,91 +31155,86 @@ entities: - type: Transform pos: 48.5,77.5 parent: 2 - - uid: 16288 + - uid: 13719 components: - type: Transform - pos: 51.5,-30.5 + pos: 54.5,78.5 parent: 2 - - uid: 16387 + - uid: 14113 components: - type: Transform - pos: 48.5,80.5 + pos: 53.5,76.5 parent: 2 - - uid: 16388 + - uid: 14135 components: - type: Transform - pos: 48.5,79.5 + pos: 53.5,77.5 parent: 2 - - uid: 16389 + - uid: 14153 components: - type: Transform - pos: 48.5,78.5 + pos: 54.5,79.5 parent: 2 - - uid: 16390 + - uid: 14156 components: - type: Transform - pos: 48.5,77.5 + pos: 56.5,78.5 parent: 2 - - uid: 16391 + - uid: 14158 components: - type: Transform - pos: 49.5,80.5 + pos: 56.5,76.5 parent: 2 - - uid: 16392 + - uid: 14160 components: - type: Transform - pos: 49.5,79.5 + pos: 56.5,77.5 parent: 2 - - uid: 16393 + - uid: 16288 components: - type: Transform - pos: 49.5,78.5 + pos: 51.5,-30.5 parent: 2 - - uid: 16394 + - uid: 16382 components: - type: Transform - pos: 49.5,77.5 + pos: 55.5,76.5 parent: 2 - - uid: 16395 + - uid: 16383 components: - type: Transform - pos: 50.5,80.5 + pos: 53.5,79.5 parent: 2 - - uid: 16396 + - uid: 16385 components: - type: Transform - pos: 50.5,79.5 + pos: 55.5,79.5 parent: 2 - - uid: 16397 + - uid: 16386 components: - type: Transform - pos: 50.5,78.5 + pos: 56.5,79.5 parent: 2 - - uid: 16398 + - uid: 16393 components: - type: Transform - pos: 50.5,77.5 + pos: 49.5,78.5 parent: 2 - - uid: 16399 + - uid: 16394 components: - type: Transform - pos: 51.5,80.5 + pos: 49.5,77.5 parent: 2 - - uid: 16400 + - uid: 16397 components: - type: Transform - pos: 51.5,79.5 + pos: 50.5,78.5 parent: 2 - uid: 16401 components: - type: Transform pos: 51.5,78.5 parent: 2 - - uid: 16402 - components: - - type: Transform - pos: 51.5,77.5 - parent: 2 - proto: CableHVStack entities: - uid: 3731 @@ -36117,13 +36145,49 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,81.5 + pos: 56.5,77.5 parent: 2 - - uid: 711 + - uid: 713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,81.5 + pos: 54.5,78.5 + parent: 2 + - uid: 716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,78.5 + parent: 2 + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,78.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,79.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,79.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,79.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,79.5 parent: 2 - uid: 4182 components: @@ -36355,17 +36419,11 @@ entities: - type: Transform pos: 62.5,66.5 parent: 2 - - uid: 5190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,81.5 - parent: 2 - uid: 5191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,81.5 + rot: -1.5707963267948966 rad + pos: 53.5,78.5 parent: 2 - uid: 5192 components: @@ -37374,12 +37432,6 @@ entities: rot: 3.141592653589793 rad pos: 83.5,11.5 parent: 2 - - uid: 5376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,76.5 - parent: 2 - uid: 5377 components: - type: Transform @@ -37512,24 +37564,6 @@ entities: rot: 3.141592653589793 rad pos: 57.5,72.5 parent: 2 - - uid: 5399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,76.5 - parent: 2 - - uid: 5400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,76.5 - parent: 2 - - uid: 5401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,75.5 - parent: 2 - uid: 5402 components: - type: Transform @@ -37873,6 +37907,36 @@ entities: - type: Transform pos: -6.5,54.5 parent: 2 + - uid: 14136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,76.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,76.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,79.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,76.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,76.5 + parent: 2 - uid: 15886 components: - type: Transform @@ -37907,85 +37971,37 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,77.5 + pos: 55.5,77.5 parent: 2 - uid: 16374 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,78.5 + pos: 55.5,76.5 parent: 2 - uid: 16375 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,77.5 + pos: 52.5,77.5 parent: 2 - uid: 16376 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,79.5 + pos: 52.5,78.5 parent: 2 - uid: 16377 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,79.5 - parent: 2 - - uid: 16378 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,80.5 - parent: 2 - - uid: 16379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,80.5 - parent: 2 - - uid: 16380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,79.5 + pos: 53.5,77.5 parent: 2 - uid: 16381 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,80.5 - parent: 2 - - uid: 16382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,79.5 - parent: 2 - - uid: 16383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,78.5 - parent: 2 - - uid: 16384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,78.5 - parent: 2 - - uid: 16385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,77.5 - parent: 2 - - uid: 16386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,80.5 + pos: 54.5,77.5 parent: 2 - proto: Chair entities: @@ -40851,8 +40867,6 @@ entities: components: - type: Transform parent: 12741 - - type: Magboots - toggleActionEntity: 33 - type: Physics canCollide: False - type: ActionsContainer @@ -40866,8 +40880,6 @@ entities: components: - type: Transform parent: 12743 - - type: Magboots - toggleActionEntity: 35 - type: Physics canCollide: False - type: ActionsContainer @@ -41974,29 +41986,29 @@ entities: parent: 2 - proto: CrateEngineeringAMEControl entities: - - uid: 16247 + - uid: 3620 components: - type: Transform - pos: 51.5,77.5 + pos: 53.5,79.5 parent: 2 - proto: CrateEngineeringAMEJar entities: - - uid: 13719 + - uid: 3605 components: - type: Transform - pos: 51.5,80.5 + pos: 56.5,79.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 11286 + - uid: 3606 components: - type: Transform - pos: 51.5,79.5 + pos: 55.5,79.5 parent: 2 - - uid: 14113 + - uid: 3622 components: - type: Transform - pos: 51.5,78.5 + pos: 54.5,79.5 parent: 2 - proto: CrateEngineeringCableBulk entities: @@ -43671,6 +43683,12 @@ entities: parent: 15861 - proto: DisposalPipe entities: + - uid: 718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,76.5 + parent: 2 - uid: 6260 components: - type: Transform @@ -45928,12 +45946,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,76.5 parent: 2 - - uid: 6658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,76.5 - parent: 2 - uid: 6659 components: - type: Transform @@ -49593,7 +49605,6 @@ entities: devices: - 7266 - 7229 - - 7265 - 7260 - 7263 - 7264 @@ -50378,15 +50389,6 @@ entities: - type: DeviceNetwork deviceLists: - 7169 - - uid: 7265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,76.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7169 - uid: 7266 components: - type: Transform @@ -74588,14 +74590,35 @@ entities: - type: Transform pos: 17.5,16.5 parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 - 0 - 0 - 0 @@ -74606,6 +74629,12 @@ entities: - 0 - 0 - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - proto: LockerHeadOfSecurityFilledHardsuit entities: - uid: 10579 @@ -75118,11 +75147,6 @@ entities: parent: 2 - proto: LootSpawnerContrabandLow entities: - - uid: 713 - components: - - type: Transform - pos: 56.5,78.5 - parent: 2 - uid: 898 components: - type: Transform @@ -75871,10 +75895,10 @@ entities: parent: 2 - proto: NitrousOxideCanister entities: - - uid: 10734 + - uid: 15246 components: - type: Transform - pos: 53.5,80.5 + pos: 53.5,81.5 parent: 2 - proto: NitrousOxideTankFilled entities: @@ -76423,34 +76447,6 @@ entities: ОБРАЩЕНИЕ К ГЛАВАМ ============================================= - Добро пожаловать на одну из самых закрытых научных станций NanoTrasen. На серверах данной станции находится важная для NanoTrasen информация которая будет передана на Станцию Центрального Командования по окончанию смены. В силу ещё некоторых факторов вашей обязанностью будет документирование всего происходящего на станции и не допустить утечки информации. У вас есть специальные пульты а также новая система защиты которая должна помочь избежать чрезвычайных ситуаций. Все документы должны будут прибыть на Станцию Центрального Командования по окончанию смены. Удачной смены, глава. - - uid: 10772 - components: - - type: Transform - pos: 17.507483,21.48571 - parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] СЦК-КОМ[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - ОБРАЩЕНИЕ К ГЛАВАМ - ============================================= - Добро пожаловать на одну из самых закрытых научных станций NanoTrasen. На серверах данной станции находится важная для NanoTrasen информация которая будет передана на Станцию Центрального Командования по окончанию смены. В силу ещё некоторых факторов вашей обязанностью будет документирование всего происходящего на станции и не допустить утечки информации. У вас есть специальные пульты а также новая система защиты которая должна помочь избежать чрезвычайных ситуаций. Все документы должны будут прибыть на Станцию Центрального Командования по окончанию смены. Удачной смены, глава. - uid: 10773 components: @@ -77077,10 +77073,10 @@ entities: parent: 2 - proto: PlasmaCanister entities: - - uid: 10835 + - uid: 5400 components: - type: Transform - pos: 55.5,80.5 + pos: 55.5,81.5 parent: 2 - uid: 10836 components: @@ -81433,11 +81429,6 @@ entities: - type: Transform pos: 56.5,67.5 parent: 2 - - uid: 11494 - components: - - type: Transform - pos: 55.5,77.5 - parent: 2 - uid: 11495 components: - type: Transform @@ -86107,8 +86098,6 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1035: - - Pressed: Toggle 12204: - Pressed: Toggle 12205: @@ -86640,7 +86629,7 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,26.5 parent: 2 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 12343 components: @@ -86700,7 +86689,7 @@ entities: - type: Transform pos: 73.5,30.5 parent: 2 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 12352 components: @@ -89263,20 +89252,15 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 869 - components: - - type: Transform - pos: 57.5,80.5 - parent: 2 - - uid: 3727 + - uid: 6658 components: - type: Transform - pos: 56.5,80.5 + pos: 57.5,81.5 parent: 2 - - uid: 5189 + - uid: 7265 components: - type: Transform - pos: 53.5,81.5 + pos: 56.5,81.5 parent: 2 - uid: 7769 components: @@ -89308,11 +89292,6 @@ entities: - type: Transform pos: 15.5,67.5 parent: 2 - - uid: 12719 - components: - - type: Transform - pos: 53.5,78.5 - parent: 2 - uid: 12720 components: - type: Transform @@ -94053,6 +94032,12 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,79.5 parent: 2 + - uid: 5376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,75.5 + parent: 2 - uid: 9499 components: - type: Transform @@ -98300,26 +98285,6 @@ entities: - type: Transform pos: 52.5,80.5 parent: 2 - - uid: 14135 - components: - - type: Transform - pos: 53.5,79.5 - parent: 2 - - uid: 14136 - components: - - type: Transform - pos: 52.5,79.5 - parent: 2 - - uid: 14137 - components: - - type: Transform - pos: 52.5,78.5 - parent: 2 - - uid: 14138 - components: - - type: Transform - pos: 52.5,77.5 - parent: 2 - uid: 14139 components: - type: Transform @@ -98385,36 +98350,6 @@ entities: - type: Transform pos: 57.5,77.5 parent: 2 - - uid: 14152 - components: - - type: Transform - pos: 56.5,77.5 - parent: 2 - - uid: 14153 - components: - - type: Transform - pos: 55.5,77.5 - parent: 2 - - uid: 14156 - components: - - type: Transform - pos: 55.5,78.5 - parent: 2 - - uid: 14157 - components: - - type: Transform - pos: 56.5,79.5 - parent: 2 - - uid: 14158 - components: - - type: Transform - pos: 55.5,79.5 - parent: 2 - - uid: 14160 - components: - - type: Transform - pos: 54.5,79.5 - parent: 2 - uid: 14161 components: - type: Transform @@ -100190,6 +100125,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 + - uid: 15284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,80.5 + parent: 2 - uid: 15628 components: - type: Transform @@ -100816,6 +100757,12 @@ entities: - type: Transform pos: -19.5,10.5 parent: 15861 + - uid: 16247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,80.5 + parent: 2 - uid: 16316 components: - type: Transform @@ -100906,6 +100853,24 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,90.5 parent: 2 + - uid: 16378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,80.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,80.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,80.5 + parent: 2 - proto: WallReinforcedRust entities: - uid: 14435 @@ -105888,11 +105853,6 @@ entities: - type: Transform pos: 58.5,-0.5 parent: 2 - - uid: 15246 - components: - - type: Transform - pos: 54.5,78.5 - parent: 2 - proto: WaterTankHighCapacity entities: - uid: 15247 @@ -105907,10 +105867,10 @@ entities: parent: 2 - proto: WaterVaporCanister entities: - - uid: 15249 + - uid: 5190 components: - type: Transform - pos: 54.5,80.5 + pos: 54.5,81.5 parent: 2 - proto: WeaponCapacitorRecharger entities: @@ -106145,11 +106105,6 @@ entities: - type: Transform pos: 56.5,59.5 parent: 2 - - uid: 15284 - components: - - type: Transform - pos: 56.5,75.5 - parent: 2 - uid: 15285 components: - type: Transform diff --git a/Resources/Maps/corvax_pilgrim.yml b/Resources/Maps/corvax_pilgrim.yml index 51cf4e6f4ed..5fd31b63722 100644 --- a/Resources/Maps/corvax_pilgrim.yml +++ b/Resources/Maps/corvax_pilgrim.yml @@ -78,7 +78,12 @@ tilemap: 117: FloorWhiteMono 118: FloorWhiteOffset 122: FloorWood + 39: FloorWoodChess + 44: FloorWoodChessRed 123: FloorWoodLarge + 43: FloorWoodLargeRed + 45: FloorWoodParquetRed + 42: FloorWoodRed 124: FloorWoodTile 125: Lattice 126: Plating @@ -134,7 +139,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: ewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAACewAAAAABJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAACJAAAAAABDQAAAAAAJAAAAAAAJAAAAAADJAAAAAACJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAADZQAAAAADZQAAAAAAZQAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAACJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAXQAAAAABXQAAAAACXQAAAAAAJAAAAAACHwAAAAACIwAAAAACIwAAAAACHwAAAAABJAAAAAACfgAAAAAAaAAAAAACNAAAAAADNAAAAAAANAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAIwAAAAAAIwAAAAABHwAAAAACJAAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAAAaAAAAAAAaAAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAABJAAAAAACHwAAAAAAIwAAAAACIwAAAAABHwAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADegAAAAACegAAAAADegAAAAABcQAAAAABcQAAAAABcAAAAAABcQAAAAAAcQAAAAAAdQAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADcQAAAAACdgAAAAAAcAAAAAADdgAAAAAAcQAAAAACdQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAABewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcQAAAAAAdQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAAAewAAAAADfAAAAAAAfAAAAAADfAAAAAACfAAAAAAAcQAAAAABdgAAAAAAcAAAAAADdgAAAAAAcQAAAAADdQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAewAAAAACewAAAAABewAAAAABfgAAAAAAfAAAAAACfAAAAAABfAAAAAABcQAAAAABcQAAAAAAcAAAAAADcQAAAAACcQAAAAABdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADAwAAAAADAwAAAAAGAwAAAAAFAwAAAAAFfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAADHwAAAAACHwAAAAACHwAAAAABfgAAAAAAAwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAAC + tiles: ewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAACewAAAAABJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAACJAAAAAABDQAAAAAAJAAAAAAAJAAAAAADJAAAAAACJAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAADZQAAAAADZQAAAAAAZQAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAACJAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJAAAAAAAXQAAAAABXQAAAAACXQAAAAAAJAAAAAACHwAAAAACIwAAAAACIwAAAAACHwAAAAABJAAAAAACfgAAAAAAaAAAAAACNAAAAAADNAAAAAAANAAAAAACaAAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAIwAAAAAAIwAAAAABHwAAAAACJAAAAAAAfgAAAAAAaAAAAAAAaAAAAAADaAAAAAAAaAAAAAAAaAAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAAAJAAAAAACHwAAAAAAIwAAAAACIwAAAAABHwAAAAACJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcQAAAAABcQAAAAABcAAAAAABcQAAAAAAcQAAAAAAdQAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAcQAAAAACdgAAAAAAcAAAAAADdgAAAAAAcQAAAAACdQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAcQAAAAAAdQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAAAewAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAABdgAAAAAAcAAAAAADdgAAAAAAcQAAAAADdQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAABcQAAAAAAcAAAAAADcQAAAAACcQAAAAABdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAADAwAAAAADAwAAAAAGAwAAAAAFAwAAAAAFfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAADHwAAAAACHwAAAAACHwAAAAABfgAAAAAAAwAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABIwAAAAAC version: 6 0,-1: ind: 0,-1 @@ -154,7 +159,7 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: fgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZQAAAAABXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABDQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADXQAAAAABXQAAAAABZQAAAAABXQAAAAADXQAAAAACbAAAAAAAJAAAAAADXQAAAAABZQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABaAAAAAACfgAAAAAAXQAAAAABXQAAAAAAZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAADQAAAAAAcAAAAAABfgAAAAAAXQAAAAABZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACcAAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADcAAAAAABaAAAAAAAXQAAAAADDQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAXQAAAAADZQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAewAAAAACfgAAAAAAcAAAAAABcAAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAcAAAAAACfgAAAAAAXQAAAAABZQAAAAACXQAAAAACfgAAAAAAewAAAAACegAAAAADfAAAAAADcAAAAAADcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAAAfgAAAAAAewAAAAADegAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADaAAAAAACXQAAAAAAZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAADaAAAAAACZQAAAAACDQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAABXwAAAAABXwAAAAAAXwAAAAADXwAAAAADXwAAAAABXwAAAAADXwAAAAACXQAAAAAAaAAAAAABXQAAAAADZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADYgAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACXwAAAAACYgAAAAACfgAAAAAAXQAAAAAAZQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAACXwAAAAADXwAAAAADXwAAAAABXwAAAAADXwAAAAADfgAAAAAA + tiles: fgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZQAAAAABXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABDQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADXQAAAAABXQAAAAABZQAAAAABXQAAAAADXQAAAAACbAAAAAAAJAAAAAADXQAAAAABZQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABaAAAAAACfgAAAAAAXQAAAAABXQAAAAAAZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACZQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAADQAAAAAANQAAAAAAfgAAAAAAXQAAAAABZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACNQAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADNQAAAAAAaAAAAAAAXQAAAAADDQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAANQAAAAAAfgAAAAAAXQAAAAADZQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAewAAAAACfgAAAAAAcAAAAAABcAAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAANQAAAAAAfgAAAAAAXQAAAAABZQAAAAACXQAAAAACfgAAAAAAewAAAAACegAAAAADfAAAAAADcAAAAAADcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAAAfgAAAAAAewAAAAADegAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADaAAAAAACXQAAAAAAZQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZQAAAAADaAAAAAACZQAAAAACDQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAABXwAAAAABXwAAAAAAXwAAAAADXwAAAAADXwAAAAABXwAAAAADXwAAAAACXQAAAAAAaAAAAAABXQAAAAADZQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADYgAAAAAAfgAAAAAAXQAAAAAAZQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACXwAAAAACYgAAAAACfgAAAAAAXQAAAAAAZQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXwAAAAACXwAAAAADXwAAAAADXwAAAAABXwAAAAADXwAAAAADfgAAAAAA version: 6 0,-2: ind: 0,-2 @@ -174,7 +179,7 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: dQAAAAAAcAAAAAABcwAAAAADcAAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAADHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAANQAAAAADNQAAAAACegAAAAADNQAAAAABNQAAAAABNQAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADfAAAAAABfAAAAAAAfAAAAAAAfAAAAAACfgAAAAAANQAAAAACNQAAAAAAegAAAAACNQAAAAADNQAAAAADNQAAAAAAfgAAAAAAcAAAAAABdAAAAAACdAAAAAADdAAAAAABfAAAAAABfAAAAAABegAAAAADegAAAAADfgAAAAAANQAAAAAANQAAAAABegAAAAAANQAAAAABNQAAAAAANQAAAAAAfgAAAAAAcAAAAAACdAAAAAACdAAAAAAAdAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfAAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAAAfgAAAAAAcAAAAAABdAAAAAACdAAAAAAAdAAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAACfgAAAAAAfAAAAAABfAAAAAAAewAAAAABewAAAAACewAAAAACewAAAAACfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACegAAAAAAegAAAAADegAAAAADIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAewAAAAAAewAAAAACewAAAAABIwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADegAAAAADegAAAAADegAAAAAAIwAAAAAADQAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAACDQAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAABDQAAAAAAZQAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAIwAAAAADIAAAAAABIAAAAAADIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAACJAAAAAABfgAAAAAAHwAAAAABIwAAAAACIAAAAAAAIAAAAAACIwAAAAAAHwAAAAABfgAAAAAAYgAAAAABYgAAAAABfgAAAAAAYgAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADIwAAAAAAIAAAAAADIAAAAAACIwAAAAABHwAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAYgAAAAAD + tiles: dQAAAAAAcAAAAAABcwAAAAADcAAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAADHwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAANQAAAAADNQAAAAACegAAAAADNQAAAAABNQAAAAABNQAAAAABfgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAABfAAAAAAAfAAAAAAAfAAAAAACfgAAAAAANQAAAAACNQAAAAAAegAAAAACNQAAAAADNQAAAAADNQAAAAAAfgAAAAAANQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfAAAAAABfAAAAAABegAAAAADegAAAAADfgAAAAAANQAAAAAANQAAAAABegAAAAAANQAAAAABNQAAAAAANQAAAAAAfgAAAAAANQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAACfAAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAAAfgAAAAAANQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAACfgAAAAAAfAAAAAABfAAAAAAAewAAAAABewAAAAACewAAAAACewAAAAACfgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAegAAAAAAegAAAAADegAAAAADIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAABfgAAAAAAewAAAAAAewAAAAACewAAAAABIwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADegAAAAADegAAAAADegAAAAAAIwAAAAAADQAAAAAAZQAAAAACZQAAAAABZQAAAAABZQAAAAACDQAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAABDQAAAAAAZQAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAIwAAAAADIAAAAAABIAAAAAADIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAACJAAAAAABfgAAAAAAHwAAAAABIwAAAAACIAAAAAAAIAAAAAACIwAAAAAAHwAAAAABfgAAAAAAYgAAAAABYgAAAAABfgAAAAAAYgAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADIwAAAAAAIAAAAAADIAAAAAACIwAAAAABHwAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAYgAAAAAD version: 6 -3,0: ind: -3,0 @@ -186,7 +191,7 @@ entities: version: 6 -3,1: ind: -3,1 - tiles: JAAAAAADJAAAAAACJQAAAAAAJAAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABWAAAAAADWAAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADbAAAAAAAbQAAAAAAfgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAABIwAAAAACWAAAAAABWAAAAAACIwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACIAAAAAADIAAAAAADIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAIAAAAAABIAAAAAABIwAAAAABfgAAAAAADAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAIAAAAAADIAAAAAACIAAAAAABfgAAAAAADAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIAAAAAAAIwAAAAADIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIAAAAAADIwAAAAADIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAACegAAAAADegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAADewAAAAABewAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAABewAAAAABewAAAAADegAAAAABfAAAAAAAfAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: JAAAAAADJAAAAAACJQAAAAAAJAAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAABWAAAAAADWAAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADbAAAAAAAbQAAAAAAfgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAABIwAAAAACWAAAAAABWAAAAAACIwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAYgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACIAAAAAADIAAAAAADIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAIAAAAAABIAAAAAABIwAAAAABfgAAAAAADAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAIAAAAAADIAAAAAACIAAAAAABfgAAAAAADAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIAAAAAAAIwAAAAADIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIAAAAAADIwAAAAADIwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAADewAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADewAAAAABewAAAAABewAAAAADegAAAAAAfAAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,1: ind: -1,1 @@ -226,7 +231,7 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: fgAAAAAAewAAAAABewAAAAADewAAAAACewAAAAABegAAAAACfAAAAAACfAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAABfgAAAAAAfgAAAAAAewAAAAADewAAAAABegAAAAADegAAAAADfAAAAAACfAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAABAwAAAAAEfgAAAAAAfgAAAAAAewAAAAADewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAewAAAAABewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAAfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAABQAAAAAAAwAAAAAFAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAFAwAAAAADAwAAAAABAwAAAAABAwAAAAAEAwAAAAAGAwAAAAAFAwAAAAAFAwAAAAAABQAAAAAEAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAACAwAAAAAFAwAAAAAGAwAAAAABAwAAAAAAAwAAAAAFAwAAAAACAwAAAAADAwAAAAAFAwAAAAAEAwAAAAAFAwAAAAAGfgAAAAAAAwAAAAAAAwAAAAACAwAAAAADfgAAAAAAAwAAAAACAwAAAAABAwAAAAAGfgAAAAAAAwAAAAAAAwAAAAAGAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: fgAAAAAAewAAAAABewAAAAADewAAAAACewAAAAABegAAAAAAfAAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAABfgAAAAAAfgAAAAAAewAAAAADewAAAAABegAAAAADegAAAAAAfAAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAABAwAAAAAEfgAAAAAAfgAAAAAAewAAAAADewAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAewAAAAABewAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAAAfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAADAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAwAAAAAFAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAABQAAAAAAAwAAAAAFAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAFAwAAAAADAwAAAAABAwAAAAABAwAAAAAEAwAAAAAGAwAAAAAFAwAAAAAFAwAAAAAABQAAAAAEAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAAFAwAAAAAAAwAAAAACAwAAAAAFAwAAAAAGAwAAAAABAwAAAAAAAwAAAAAFAwAAAAACAwAAAAADAwAAAAAFAwAAAAAEAwAAAAAFAwAAAAAGfgAAAAAAAwAAAAAAAwAAAAACAwAAAAADfgAAAAAAAwAAAAACAwAAAAABAwAAAAAGfgAAAAAAAwAAAAAAAwAAAAAGAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 1,1: ind: 1,1 @@ -234,11 +239,11 @@ entities: version: 6 1,0: ind: 1,0 - tiles: ZQAAAAAAXQAAAAACZQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAcAAAAAACdAAAAAAAdAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACJAAAAAABJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAABXQAAAAACZQAAAAAAaAAAAAABXQAAAAABfgAAAAAAfgAAAAAAcAAAAAABdAAAAAADcAAAAAABfgAAAAAAHwAAAAABJAAAAAACJAAAAAACJAAAAAAAXQAAAAABXQAAAAACXQAAAAADaAAAAAADZQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAdQAAAAACdQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAXQAAAAADXQAAAAADDQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAACZQAAAAABXQAAAAABXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAXQAAAAABXQAAAAADZQAAAAADXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAZQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABDQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAZQAAAAAAZQAAAAAADQAAAAAAZQAAAAABcwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAcwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADIgAAAAADIgAAAAAAJAAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACIgAAAAABIgAAAAAAJAAAAAADfgAAAAAAHwAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAACIwAAAAACJAAAAAADIgAAAAABIgAAAAACJAAAAAADfgAAAAAAHwAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACIwAAAAACIwAAAAADIwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAACHwAAAAABfgAAAAAAHwAAAAAB + tiles: ZQAAAAAAXQAAAAACZQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAANQAAAAAAZwAAAAAAZwAAAAAANQAAAAAAfgAAAAAAHwAAAAACJAAAAAABJAAAAAAAJAAAAAAAXQAAAAAAXQAAAAABXQAAAAACZQAAAAAAaAAAAAABXQAAAAABfgAAAAAAfgAAAAAANQAAAAAAZwAAAAAANQAAAAAAfgAAAAAAHwAAAAABJAAAAAACJAAAAAACJAAAAAAAXQAAAAABXQAAAAACXQAAAAADaAAAAAADZQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAXQAAAAADXQAAAAADDQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAABXQAAAAACZQAAAAABXQAAAAABXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADfgAAAAAAXQAAAAABXQAAAAADZQAAAAADXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAZQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABDQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACcwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAZQAAAAAAZQAAAAAADQAAAAAAZQAAAAABcwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAcwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADJAAAAAABfgAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADIgAAAAADIgAAAAAAJAAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACIgAAAAABIgAAAAAAJAAAAAADfgAAAAAAHwAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAACIwAAAAACJAAAAAADIgAAAAABIgAAAAACJAAAAAADfgAAAAAAHwAAAAABcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACIwAAAAACIwAAAAADIwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAcQAAAAADcQAAAAACcQAAAAADcQAAAAACHwAAAAABfgAAAAAAHwAAAAAB version: 6 1,-1: ind: 1,-1 - tiles: egAAAAACIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZQAAAAABXQAAAAABXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAADIgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABZQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABDQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAADXQAAAAACaAAAAAADZQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAaAAAAAADdgAAAAAAdgAAAAAAcAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAACXQAAAAAAXQAAAAACZQAAAAABaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAdgAAAAAAcAAAAAACaAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAZQAAAAACXQAAAAADZQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAdgAAAAAAaAAAAAADcAAAAAACaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACDQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAaAAAAAABdgAAAAAAdgAAAAAAcAAAAAAAaAAAAAABcAAAAAAAaAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAcAAAAAABcAAAAAADaAAAAAAAcAAAAAADaAAAAAABfgAAAAAAbgAAAAACfgAAAAAAXQAAAAADZQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAACXQAAAAACXQAAAAACXQAAAAACaAAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADZQAAAAAAZQAAAAABZQAAAAACZQAAAAAAaAAAAAADDQAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAACDQAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAABXQAAAAADZQAAAAADXQAAAAACXQAAAAAAXQAAAAABaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAdQAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAXQAAAAACDQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAcAAAAAADdAAAAAACdAAAAAABdAAAAAADcAAAAAAAfgAAAAAAHwAAAAADJAAAAAACJAAAAAAAJAAAAAAA + tiles: egAAAAACIgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABZQAAAAABXQAAAAABXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAegAAAAADIgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABZQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAABaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABDQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAAAXQAAAAADXQAAAAACaAAAAAADZQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAaAAAAAADdgAAAAAAdgAAAAAAcAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAXQAAAAACXQAAAAAAXQAAAAACZQAAAAABaAAAAAACXQAAAAADfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAdgAAAAAAcAAAAAACaAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAZQAAAAACXQAAAAADZQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAdgAAAAAAaAAAAAADcAAAAAACaAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACDQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAaAAAAAABdgAAAAAAdgAAAAAAcAAAAAAAaAAAAAABcAAAAAAAaAAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADZQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAdgAAAAAAcAAAAAABcAAAAAADaAAAAAAAcAAAAAADaAAAAAABfgAAAAAAbgAAAAACfgAAAAAAXQAAAAADZQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAACXQAAAAACXQAAAAACXQAAAAACaAAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADZQAAAAAAZQAAAAABZQAAAAACZQAAAAAAaAAAAAADDQAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAACDQAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAABXQAAAAADZQAAAAADXQAAAAACXQAAAAAAXQAAAAABaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAZQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZQAAAAAAXQAAAAACfgAAAAAAfgAAAAAANgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAXQAAAAACDQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAANQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAANQAAAAAAfgAAAAAAHwAAAAADJAAAAAACJAAAAAAAJAAAAAAA version: 6 1,-2: ind: 1,-2 @@ -334,11 +339,11 @@ entities: version: 6 -5,0: ind: -5,0 - tiles: fAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADfAAAAAAAfAAAAAAAfAAAAAABfAAAAAABfgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAADfgAAAAAAewAAAAAAfgAAAAAAAwAAAAAFfgAAAAAAegAAAAAAegAAAAABfAAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAACfgAAAAAAewAAAAADfgAAAAAAAwAAAAABfgAAAAAAegAAAAABegAAAAAAfAAAAAACegAAAAACegAAAAACegAAAAABfgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAAAfgAAAAAAewAAAAADfgAAAAAAAwAAAAABfgAAAAAAegAAAAADegAAAAAAfAAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAAwAAAAAGAwAAAAADAwAAAAAEAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAGAwAAAAADAwAAAAAGfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAwAAAAAFAwAAAAAEAwAAAAABAwAAAAACBQAAAAAFBQAAAAAFAwAAAAAFBQAAAAAHAwAAAAAEAwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAABQAAAAAEAwAAAAABAwAAAAAEBQAAAAAFBQAAAAAGAwAAAAAFAwAAAAAFAwAAAAAEAwAAAAADAwAAAAAFfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfgAAAAAABQAAAAACBAAAAAAABQAAAAABBAAAAAADBAAAAAAABAAAAAACBQAAAAADBQAAAAAGAwAAAAAEAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAACNgAAAAAANgAAAAABNgAAAAABNgAAAAADNgAAAAAANgAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAADNgAAAAACNgAAAAACNgAAAAACNgAAAAABNgAAAAABJAAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADNgAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAACNgAAAAADNgAAAAABNgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAACBQAAAAACAwAAAAABAwAAAAAEfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADJAAAAAAAJAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBQAAAAACBQAAAAAHBQAAAAAEBQAAAAAHAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAACAwAAAAAFAwAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAABegAAAAADKQAAAAAABAAAAAADBAAAAAABBQAAAAAGBQAAAAAEAwAAAAAABQAAAAAHBQAAAAACAwAAAAADAwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAADegAAAAAC + tiles: fAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADfAAAAAAAfAAAAAAAfAAAAAABfAAAAAABfgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAADfgAAAAAAewAAAAAAfgAAAAAAAwAAAAAFfgAAAAAAegAAAAAAegAAAAABfAAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAACfgAAAAAAewAAAAADfgAAAAAAAwAAAAABfgAAAAAAegAAAAABegAAAAAAfAAAAAACegAAAAACegAAAAACegAAAAABfgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAAAfgAAAAAAewAAAAADfgAAAAAAAwAAAAABfgAAAAAAegAAAAADegAAAAAAfAAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAAwAAAAAGAwAAAAADAwAAAAAEAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAGAwAAAAADAwAAAAAGfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAAwAAAAAFAwAAAAAEAwAAAAABAwAAAAACBQAAAAAFBQAAAAAFAwAAAAAFBQAAAAAHAwAAAAAEAwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAABQAAAAAEAwAAAAABAwAAAAAEBQAAAAAFBQAAAAAGAwAAAAAFAwAAAAAFAwAAAAAEAwAAAAADAwAAAAAFfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfgAAAAAABQAAAAACBAAAAAAABQAAAAABBAAAAAADBAAAAAAABAAAAAACBQAAAAADBQAAAAAGAwAAAAAEAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAANgAAAAADNgAAAAABNgAAAAACNgAAAAAANgAAAAABNgAAAAABNgAAAAADNgAAAAAANgAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAADNgAAAAACNgAAAAACNgAAAAACNgAAAAABNgAAAAABJAAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADNgAAAAAANgAAAAAANgAAAAACNgAAAAABNgAAAAABNgAAAAACNgAAAAADNgAAAAABNgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAACBQAAAAACAwAAAAABAwAAAAAEfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADJAAAAAAAJAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBQAAAAACBQAAAAAHBQAAAAAEBQAAAAAHAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAACAwAAAAAFAwAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAABAAAAAADBAAAAAABBQAAAAAGBQAAAAAEAwAAAAAABQAAAAAHBQAAAAACAwAAAAADAwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 -5,1: ind: -5,1 - tiles: KQAAAAACBQAAAAABBQAAAAAFBQAAAAADAwAAAAAGAwAAAAABAwAAAAAEAwAAAAAAAwAAAAAAAwAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAewAAAAAAewAAAAACewAAAAACAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAACewAAAAABewAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAJAAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAYgAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAGAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAADYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAFAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABQAAAAAHAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABBQAAAAAGAwAAAAACAwAAAAAAAwAAAAABfgAAAAAAYgAAAAACYgAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAAABQAAAAABBQAAAAABAwAAAAAEAwAAAAADfgAAAAAAYgAAAAACYgAAAAACYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAABAAAAAACBQAAAAAFBQAAAAAAAwAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAAABQAAAAAFBQAAAAAEAwAAAAABAwAAAAAEfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAABAAAAAACBAAAAAABBAAAAAACBQAAAAAEBAAAAAACBQAAAAAHAwAAAAAGfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: KQAAAAACBQAAAAABBQAAAAAFBQAAAAADAwAAAAAGAwAAAAABAwAAAAAEAwAAAAAAAwAAAAAAAwAAAAAGfgAAAAAAQAAAAAAAQAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAADHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJAAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAJAAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAYgAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAGAwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAADYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAFAwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABQAAAAAHAwAAAAAFfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAABBQAAAAAGAwAAAAACAwAAAAAAAwAAAAABfgAAAAAAYgAAAAACYgAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAABAAAAAAABQAAAAABBQAAAAABAwAAAAAEAwAAAAADfgAAAAAAYgAAAAACYgAAAAACYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAEKQAAAAAABAAAAAACBQAAAAAFBQAAAAAAAwAAAAAAAwAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAAABQAAAAAFBQAAAAAEAwAAAAABAwAAAAAEfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAABAAAAAACBAAAAAABBAAAAAACBQAAAAAEBAAAAAACBQAAAAAHAwAAAAAGfgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -5,2: ind: -5,2 @@ -350,19 +355,19 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: HwAAAAACIgAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAADcAAAAAAAcgAAAAACcgAAAAACcgAAAAABcAAAAAADcQAAAAABcgAAAAADfgAAAAAAcAAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAACcwAAAAACcAAAAAACcQAAAAACcQAAAAACcQAAAAABcAAAAAAAcQAAAAACcgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAACcAAAAAACfgAAAAAAcAAAAAACcwAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcQAAAAABcgAAAAABfgAAAAAAcAAAAAABfgAAAAAAcAAAAAACdAAAAAABcAAAAAABdQAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAdQAAAAAAcAAAAAADfgAAAAAAcAAAAAABdAAAAAACcAAAAAAAfgAAAAAAcAAAAAABcwAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcQAAAAABcAAAAAACfgAAAAAAcAAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAACcwAAAAAAcAAAAAADcQAAAAACcQAAAAADcQAAAAAAcQAAAAAAcQAAAAADcQAAAAACfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAACcAAAAAAAcgAAAAADcgAAAAACcgAAAAABcgAAAAABcgAAAAACcgAAAAABfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAAAcAAAAAACcwAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcAAAAAAAdQAAAAADcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAABfgAAAAAAdgAAAAAAdgAAAAAAcgAAAAABdQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAAAcwAAAAABcwAAAAABcwAAAAACcAAAAAACfgAAAAAAdgAAAAAAdgAAAAAAcgAAAAAAcgAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAACcwAAAAACdgAAAAAAcwAAAAABcAAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAA + tiles: HwAAAAACIgAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAADcAAAAAAAcgAAAAACcgAAAAACcgAAAAABcAAAAAADcQAAAAABcgAAAAADfgAAAAAAcAAAAAABfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAACcwAAAAACcAAAAAACcQAAAAACcQAAAAACcQAAAAABcAAAAAAAcQAAAAACcgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAdAAAAAACcAAAAAACfgAAAAAAcAAAAAACcwAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcQAAAAABcgAAAAABfgAAAAAAcAAAAAABfgAAAAAAcAAAAAACdAAAAAABcAAAAAABdQAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcwAAAAABcwAAAAAAcwAAAAAAcwAAAAADcwAAAAAAcwAAAAAAdQAAAAAAcAAAAAADfgAAAAAAcAAAAAABdAAAAAACcAAAAAAAfgAAAAAAcAAAAAABcwAAAAABcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcQAAAAABcAAAAAACfgAAAAAAcAAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAcAAAAAACcwAAAAAAcAAAAAADcQAAAAACcQAAAAADcQAAAAAAcQAAAAAAcQAAAAADcQAAAAACfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAACcAAAAAAAcgAAAAADcgAAAAACcgAAAAABcgAAAAABcgAAAAACcgAAAAABfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAdQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABdQAAAAAAcAAAAAACcwAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAABcwAAAAABcwAAAAADcwAAAAAAcwAAAAABcwAAAAADcwAAAAABcwAAAAACcwAAAAACcwAAAAAAcwAAAAAAcwAAAAAAcAAAAAAAdQAAAAADcAAAAAABfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABcAAAAAABcAAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcgAAAAABdQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAAAcwAAAAABcwAAAAABcwAAAAACcAAAAAACfgAAAAAAcAAAAAAAcAAAAAAAcgAAAAAAcgAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAcAAAAAACcwAAAAACdgAAAAAAcwAAAAABcAAAAAADfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAADdgAAAAAAcwAAAAABcAAAAAADfgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAcAAAAAADcwAAAAADdgAAAAAAcwAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACIwAAAAABHwAAAAACdQAAAAADcAAAAAABcwAAAAAAcwAAAAACcwAAAAADcAAAAAABfgAAAAAAcAAAAAADcAAAAAACcAAAAAABfgAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAcgAAAAACcgAAAAABcgAAAAABfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcgAAAAACdQAAAAACcgAAAAAAfgAAAAAAegAAAAABdQAAAAACdQAAAAACdQAAAAACdQAAAAACdQAAAAADfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcgAAAAADcgAAAAABcgAAAAADfgAAAAAAfAAAAAABcgAAAAAAcgAAAAABcgAAAAADcgAAAAAAcgAAAAACfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAfAAAAAABdQAAAAACdQAAAAAAcgAAAAADdQAAAAABdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAACIwAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABIwAAAAADegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAADZQAAAAACZQAAAAABDQAAAAAAZQAAAAADZQAAAAAAZQAAAAABZQAAAAABDQAAAAAAIwAAAAADewAAAAACewAAAAABewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADIwAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAIAAAAAABJAAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABfgAAAAAAHwAAAAABHwAAAAACJAAAAAABIAAAAAAAJAAAAAACHwAAAAAAIwAAAAABJQAAAAAAIwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABJAAAAAACHwAAAAAAHwAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcwAAAAADdgAAAAAAcwAAAAABcAAAAAADfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAcAAAAAADcwAAAAADdgAAAAAAcwAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACIwAAAAABHwAAAAACdQAAAAADcAAAAAABcwAAAAAAcwAAAAACcwAAAAADcAAAAAABfgAAAAAAcAAAAAADcAAAAAACcAAAAAABfgAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAcgAAAAACcgAAAAABcgAAAAABfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcgAAAAACdQAAAAACcgAAAAAAfgAAAAAAegAAAAABdQAAAAACdQAAAAACdQAAAAACdQAAAAACdQAAAAADfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcgAAAAADcgAAAAABcgAAAAADfgAAAAAAfAAAAAABcgAAAAAAcgAAAAABcgAAAAADcgAAAAAAcgAAAAACfgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAfAAAAAABdQAAAAACdQAAAAAAcgAAAAADdQAAAAABdQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAACIwAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABIwAAAAADegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAADZQAAAAACZQAAAAABDQAAAAAAZQAAAAADZQAAAAAAZQAAAAABZQAAAAABDQAAAAAAIwAAAAADewAAAAACewAAAAABewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADIwAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAIAAAAAABJAAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABfgAAAAAAHwAAAAABHwAAAAACJAAAAAABIAAAAAAAJAAAAAACHwAAAAAAIwAAAAABJQAAAAAAIwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABJAAAAAACHwAAAAAAHwAAAAAC version: 6 -4,0: ind: -4,0 - tiles: JAAAAAADIAAAAAAAJAAAAAABHwAAAAAAJQAAAAAAHwAAAAADJQAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAAAfgAAAAAAHwAAAAADHwAAAAADJAAAAAACIAAAAAADJAAAAAAAHwAAAAAAIwAAAAADJQAAAAAAIwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAABJAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAACIwAAAAABIwAAAAACIwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABIwAAAAADIwAAAAAAIwAAAAACHwAAAAABJAAAAAACHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAADIwAAAAABIwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAJAAAAAACJAAAAAAAIwAAAAABJAAAAAADJAAAAAACJAAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAIwAAAAAAJAAAAAADJAAAAAADJQAAAAAAewAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAJAAAAAABegAAAAABegAAAAAAfgAAAAAAJAAAAAABJAAAAAABIwAAAAADJAAAAAADJAAAAAABJQAAAAAAewAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAADfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAACJAAAAAADJAAAAAADJQAAAAAA + tiles: JAAAAAADIAAAAAAAJAAAAAABHwAAAAAAJQAAAAAAHwAAAAADJQAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAAAfgAAAAAAHwAAAAADHwAAAAADJAAAAAACIAAAAAADJAAAAAAAHwAAAAAAIwAAAAADJQAAAAAAIwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAIAAAAAAAJAAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAABJAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAACIwAAAAABIwAAAAACIwAAAAABHwAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABIwAAAAADIwAAAAAAIwAAAAACHwAAAAABJAAAAAACHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAADIwAAAAABIwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAJAAAAAACJAAAAAAAIwAAAAABJAAAAAADJAAAAAACJAAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABJAAAAAAAIwAAAAAAJAAAAAADJAAAAAADJQAAAAAAKwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAJAAAAAABegAAAAABegAAAAAAfgAAAAAAJAAAAAABJAAAAAABIwAAAAADJAAAAAADJAAAAAABJQAAAAAAKwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAIwAAAAACJAAAAAADJAAAAAADJQAAAAAA version: 6 -4,1: ind: -4,1 - tiles: ewAAAAACJAAAAAABHwAAAAADHwAAAAAAHwAAAAAAJAAAAAADegAAAAACegAAAAAAegAAAAABfgAAAAAAJAAAAAABJAAAAAABIwAAAAAAJAAAAAACJAAAAAABJQAAAAAAewAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAAAHwAAAAADJAAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAJAAAAAADHwAAAAADHwAAAAAAHwAAAAABJAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAJAAAAAADHwAAAAABHwAAAAAAHwAAAAADJAAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAJAAAAAACHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAYgAAAAADYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABHwAAAAACJAAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAYgAAAAABYgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJAAAAAADJAAAAAACaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAABYgAAAAABYgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAEaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACYgAAAAABYgAAAAACYgAAAAADfgAAAAAAAwAAAAAFAwAAAAACBQAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAYgAAAAABYgAAAAADYgAAAAACfgAAAAAAAwAAAAAAAwAAAAAFBQAAAAABAwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACBQAAAAABBAAAAAABAwAAAAAFfgAAAAAAPgAAAAAAXQAAAAACbwAAAAAAOQAAAAAAOQAAAAADXQAAAAADaAAAAAADegAAAAAAegAAAAABegAAAAABfgAAAAAAAwAAAAAEBQAAAAADBQAAAAACAwAAAAAEfgAAAAAAPgAAAAAAXQAAAAABEgAAAAABbwAAAAAAOQAAAAAAXQAAAAAAaAAAAAACegAAAAADegAAAAABegAAAAADfgAAAAAAAwAAAAABBQAAAAAFBAAAAAABAwAAAAACfgAAAAAA + tiles: KwAAAAAAJAAAAAABHwAAAAADHwAAAAAAHwAAAAAAJAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAJAAAAAABJAAAAAABIwAAAAAAJAAAAAACJAAAAAABJQAAAAAAKwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAAAHwAAAAADJAAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAJAAAAAADHwAAAAADHwAAAAAAHwAAAAABJAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAJAAAAAADHwAAAAABHwAAAAAAHwAAAAADJAAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAJAAAAAACHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAAfgAAAAAAaAAAAAADfgAAAAAAfgAAAAAAYgAAAAADYgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAABHwAAAAACJAAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAYgAAAAABYgAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJAAAAAADJAAAAAACaAAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADaAAAAAABYgAAAAABYgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAGAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAEaAAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABaAAAAAACYgAAAAABYgAAAAACYgAAAAADfgAAAAAAAwAAAAAFAwAAAAACBQAAAAAAAwAAAAAGfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAYgAAAAABYgAAAAADYgAAAAACfgAAAAAAAwAAAAAAAwAAAAAFBQAAAAABAwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAACBQAAAAABBAAAAAABAwAAAAAFfgAAAAAAPgAAAAAAXQAAAAACbwAAAAAAOQAAAAAAOQAAAAADXQAAAAADaAAAAAADegAAAAAAegAAAAABegAAAAABfgAAAAAAAwAAAAAEBQAAAAADBQAAAAACAwAAAAAEfgAAAAAAPgAAAAAAXQAAAAABEgAAAAABbwAAAAAAOQAAAAAAXQAAAAAAaAAAAAACegAAAAADegAAAAABegAAAAADfgAAAAAAAwAAAAABBQAAAAAFBAAAAAABAwAAAAACfgAAAAAA version: 6 -4,2: ind: -4,2 @@ -394,7 +399,7 @@ entities: version: 6 -4,-5: ind: -4,-5 - tiles: ewAAAAACegAAAAABCgAAAAAACgAAAAAADgAAAAAADgAAAAADCgAAAAAAewAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAANwAAAAABewAAAAAAKQAAAAAECgAAAAAADgAAAAABCgAAAAAAKQAAAAAAewAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAACKQAAAAAAewAAAAABegAAAAABKQAAAAAACgAAAAAACgAAAAAAewAAAAACewAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACegAAAAAAewAAAAACewAAAAADKQAAAAADKQAAAAAAKQAAAAAAewAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABewAAAAACfAAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABewAAAAADdAAAAAABdAAAAAAAdAAAAAADbgAAAAACewAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACewAAAAAAdAAAAAABdAAAAAAAewAAAAADewAAAAAAewAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACewAAAAADdAAAAAABdQAAAAABdAAAAAACbgAAAAABewAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAAewAAAAADdAAAAAADdAAAAAAAewAAAAABewAAAAACewAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABewAAAAAAdAAAAAACdAAAAAACdAAAAAAAbgAAAAAAewAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAACBwAAAAAAewAAAAABfAAAAAABewAAAAADewAAAAABewAAAAACewAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABewAAAAACegAAAAACegAAAAADegAAAAABewAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBwAAAAAAewAAAAAAegAAAAAAegAAAAABegAAAAAAewAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACfAAAAAABegAAAAABegAAAAADegAAAAAAewAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBwAAAAAAewAAAAABegAAAAAAegAAAAABegAAAAADewAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAAewAAAAAAegAAAAAAegAAAAABegAAAAADewAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBwAAAAAA + tiles: KwAAAAAAKgAAAAAACgAAAAAACgAAAAAADgAAAAAADgAAAAADCgAAAAAAewAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAANwAAAAABKwAAAAAAKQAAAAAECgAAAAAADgAAAAABCgAAAAAAKQAAAAAAewAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAACKQAAAAAAKwAAAAAAKgAAAAAAKQAAAAAACgAAAAAACgAAAAAAewAAAAACewAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKQAAAAADKQAAAAAAKQAAAAAAewAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABewAAAAACLAAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAABewAAAAADdAAAAAABdAAAAAAAdAAAAAADbgAAAAACewAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACewAAAAAAdAAAAAABdAAAAAAAewAAAAADewAAAAAAewAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAACewAAAAADdAAAAAABdQAAAAABdAAAAAACbgAAAAABewAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAAewAAAAADdAAAAAADdAAAAAAAewAAAAABewAAAAACewAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABewAAAAAAdAAAAAACdAAAAAACdAAAAAAAbgAAAAAAewAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAACBwAAAAAAewAAAAABLAAAAAAAewAAAAADewAAAAABewAAAAACewAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAABewAAAAACKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBwAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBwAAAAAAewAAAAABKgAAAAAAKgAAAAAAKgAAAAAAewAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAABBwAAAAAA version: 6 -3,-6: ind: -3,-6 @@ -474,19 +479,19 @@ entities: version: 6 -4,-6: ind: -4,-6 - tiles: ewAAAAADegAAAAABegAAAAACegAAAAAAewAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAAewAAAAABegAAAAABegAAAAACegAAAAABewAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAACewAAAAADewAAAAAAfAAAAAAAewAAAAABewAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABegAAAAACfAAAAAABegAAAAAAfAAAAAADewAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABfAAAAAAAegAAAAACfAAAAAACegAAAAAAewAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAACBQAAAAACBAAAAAAAewAAAAACewAAAAACewAAAAADfAAAAAACewAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAADBQAAAAADBQAAAAAHBQAAAAAABQAAAAAHCgAAAAAAKQAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAAABQAAAAAGBQAAAAABBQAAAAADBAAAAAACDgAAAAANCgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAewAAAAACewAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACDgAAAAAMDgAAAAAADgAAAAAKCgAAAAAAKQAAAAAAKQAAAAAAewAAAAAAewAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADDgAAAAABDgAAAAAMDgAAAAANCgAAAAAACgAAAAAADAAAAAABKQAAAAAAewAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACCgAAAAAADgAAAAAMDgAAAAACCgAAAAAADAAAAAABNwAAAAABDAAAAAADewAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAAAKQAAAAAADAAAAAACDAAAAAABewAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADKQAAAAAACgAAAAAACgAAAAAAKQAAAAAEKQAAAAAACgAAAAAACgAAAAAAewAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADCgAAAAAACgAAAAAADgAAAAACewAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACegAAAAAAKQAAAAAAKQAAAAAACgAAAAAADgAAAAAGDgAAAAAEDgAAAAAJewAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABewAAAAADewAAAAACCgAAAAAADgAAAAAHDgAAAAAHDgAAAAAADgAAAAALewAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAC + tiles: ewAAAAADKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAAewAAAAABKgAAAAAAKgAAAAAAKgAAAAAAewAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAACewAAAAADewAAAAAALAAAAAAAewAAAAABewAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAACBQAAAAACBAAAAAAAewAAAAACewAAAAACewAAAAADLAAAAAAAewAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAADBQAAAAADBQAAAAAHBQAAAAAABQAAAAAHCgAAAAAAKQAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAAABQAAAAAGBQAAAAABBQAAAAADBAAAAAACDgAAAAANCgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAewAAAAACewAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACDgAAAAAMDgAAAAAADgAAAAAKCgAAAAAAKQAAAAAAKQAAAAAAewAAAAAAewAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADDgAAAAABDgAAAAAMDgAAAAANCgAAAAAACgAAAAAADAAAAAABKQAAAAAAewAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACCgAAAAAADgAAAAAMDgAAAAACCgAAAAAADAAAAAABNwAAAAABDAAAAAADewAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACCgAAAAAACgAAAAAACgAAAAAACgAAAAAAKQAAAAAADAAAAAACDAAAAAABewAAAAABBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAADKQAAAAAACgAAAAAACgAAAAAAKQAAAAAEKQAAAAAACgAAAAAACgAAAAAAewAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADCgAAAAAACgAAAAAADgAAAAACewAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACKgAAAAAAKQAAAAAAKQAAAAAACgAAAAAADgAAAAAGDgAAAAAEDgAAAAAJewAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABKwAAAAAAKwAAAAAACgAAAAAADgAAAAAHDgAAAAAHDgAAAAAADgAAAAALewAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAC version: 6 -5,-4: ind: -5,-4 - tiles: BAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACewAAAAACewAAAAABewAAAAAAewAAAAACewAAAAACBAAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADewAAAAABfAAAAAABfAAAAAACewAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAANgAAAAACNQAAAAABNQAAAAACNgAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABNgAAAAACNQAAAAAANQAAAAABNgAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADNgAAAAACNwAAAAAANgAAAAABNgAAAAADNgAAAAADNgAAAAAANgAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADNQAAAAABNwAAAAADNgAAAAACNgAAAAABNQAAAAAANgAAAAADNgAAAAABNgAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABNwAAAAADNQAAAAAANgAAAAADNwAAAAADNwAAAAADNQAAAAAANgAAAAACNwAAAAADNQAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABNgAAAAADNwAAAAADNgAAAAACNQAAAAACNwAAAAAANQAAAAAANQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADNQAAAAACNwAAAAACNgAAAAADNwAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACDAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADDAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADDAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAACDAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADDAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBQAAAAAGBQAAAAABBAAAAAAABQAAAAAHBQAAAAAEBAAAAAADDAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBQAAAAADBQAAAAAAAwAAAAAFAwAAAAAABQAAAAADBQAAAAADBAAAAAAADAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABQAAAAAHBQAAAAACAwAAAAAFAwAAAAABAwAAAAAAAwAAAAAEAwAAAAAF + tiles: BAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACewAAAAACewAAAAABewAAAAAAewAAAAACewAAAAACBAAAAAAAewAAAAAAKwAAAAAAKwAAAAAAewAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADewAAAAABLAAAAAAALAAAAAAAewAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAANgAAAAACNQAAAAABNQAAAAACNgAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABNgAAAAACNQAAAAAANQAAAAABNgAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADNgAAAAACNwAAAAAANgAAAAABNgAAAAADNgAAAAADNgAAAAAANgAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADNQAAAAABNwAAAAADNgAAAAACNgAAAAABNQAAAAAANgAAAAADNgAAAAABNgAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAABNwAAAAADNQAAAAAANgAAAAADNwAAAAADNwAAAAADNQAAAAAANgAAAAACNwAAAAADNQAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAABNgAAAAADNwAAAAADNgAAAAACNQAAAAACNwAAAAAANQAAAAAANQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADNQAAAAACNwAAAAACNgAAAAADNwAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACDAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADDAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAADDAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABBAAAAAACDAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADDAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBQAAAAAGBQAAAAABBAAAAAAABQAAAAAHBQAAAAAEBAAAAAADDAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBQAAAAADBQAAAAAAAwAAAAAFAwAAAAAABQAAAAADBQAAAAADBAAAAAAADAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABQAAAAAHBQAAAAACAwAAAAAFAwAAAAABAwAAAAAAAwAAAAAEAwAAAAAF version: 6 -5,-5: ind: -5,-5 - tiles: BAAAAAABBAAAAAAAewAAAAADKQAAAAAACgAAAAAACgAAAAAAKQAAAAAAKQAAAAAAewAAAAAAewAAAAACewAAAAADKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAABAAAAAACBAAAAAADewAAAAAADAAAAAACKQAAAAADKQAAAAAANwAAAAACDAAAAAABegAAAAACewAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAEKQAAAAAABAAAAAACBAAAAAABewAAAAACewAAAAABDAAAAAADDAAAAAADDAAAAAAAewAAAAAAewAAAAACKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAADBAAAAAACBAAAAAABBAAAAAAAewAAAAACDAAAAAAADAAAAAAADAAAAAABewAAAAACegAAAAABKQAAAAAADAAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAADAAAAAABBAAAAAABBAAAAAACBAAAAAACewAAAAABewAAAAAAewAAAAADewAAAAAAewAAAAAAfAAAAAABewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAADewAAAAABewAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABewAAAAABbgAAAAAAdAAAAAACdAAAAAABdAAAAAABewAAAAADewAAAAACfAAAAAAAewAAAAACewAAAAABegAAAAACegAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADewAAAAAAewAAAAADewAAAAABdAAAAAACdAAAAAACewAAAAADewAAAAACfAAAAAAAewAAAAACewAAAAAAegAAAAAAegAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAAewAAAAACbgAAAAAAdAAAAAACdQAAAAAAdAAAAAADewAAAAACewAAAAABfAAAAAACewAAAAAAewAAAAACfAAAAAACewAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADewAAAAABewAAAAABewAAAAABdAAAAAAAdAAAAAABewAAAAACegAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAACBAAAAAABBAAAAAACBAAAAAABBAAAAAACewAAAAACbgAAAAACdAAAAAACdAAAAAABdAAAAAADewAAAAADegAAAAAAegAAAAAAegAAAAADegAAAAACegAAAAACegAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADewAAAAABewAAAAABewAAAAADewAAAAADfAAAAAAAewAAAAADewAAAAAAegAAAAADegAAAAADewAAAAADfAAAAAAAewAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACewAAAAAAegAAAAACegAAAAACegAAAAACewAAAAADewAAAAACegAAAAABegAAAAACegAAAAACegAAAAACewAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACewAAAAADegAAAAADegAAAAABegAAAAAAewAAAAACewAAAAABegAAAAABegAAAAABegAAAAACegAAAAAAewAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAACewAAAAADegAAAAABegAAAAACegAAAAACfAAAAAACewAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAADewAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADewAAAAACegAAAAABegAAAAACegAAAAABewAAAAADewAAAAACegAAAAACegAAAAAAegAAAAACegAAAAACewAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABewAAAAADewAAAAADewAAAAAA + tiles: BAAAAAABBAAAAAAAewAAAAADKQAAAAAACgAAAAAACgAAAAAAKQAAAAAAKQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAEKQAAAAAAKQAAAAAABAAAAAACBAAAAAADewAAAAAADAAAAAACKQAAAAADKQAAAAAANwAAAAACDAAAAAABKgAAAAAAKwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAAEKQAAAAAABAAAAAACBAAAAAABewAAAAACewAAAAABDAAAAAADDAAAAAADDAAAAAAAKwAAAAAAKwAAAAAAKQAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAADBAAAAAACBAAAAAABBAAAAAAAewAAAAACDAAAAAAADAAAAAAADAAAAAABKwAAAAAAKgAAAAAAKQAAAAAADAAAAAABKQAAAAAAKQAAAAACKQAAAAAAKQAAAAAADAAAAAABBAAAAAABBAAAAAACBAAAAAACewAAAAABewAAAAAAewAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAADewAAAAABewAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABewAAAAABbgAAAAAAdAAAAAACdAAAAAABdAAAAAABewAAAAADKwAAAAAALAAAAAAAKwAAAAAAewAAAAABKgAAAAAAKgAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADewAAAAAAewAAAAADewAAAAABdAAAAAACdAAAAAACewAAAAADKwAAAAAALAAAAAAAKwAAAAAAewAAAAAAKgAAAAAAKgAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAAAewAAAAACbgAAAAAAdAAAAAACdQAAAAAAdAAAAAADewAAAAACKwAAAAAALAAAAAAAKwAAAAAAewAAAAACKgAAAAAAewAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADewAAAAABewAAAAABewAAAAABdAAAAAAAdAAAAAABewAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACewAAAAACbgAAAAACdAAAAAACdAAAAAABdAAAAAADewAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADewAAAAABewAAAAABewAAAAADewAAAAADLAAAAAAAewAAAAADewAAAAAAegAAAAADegAAAAADewAAAAADLAAAAAAAewAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAACewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAACewAAAAADKgAAAAAAKgAAAAAAKgAAAAAAewAAAAACKwAAAAAAegAAAAABegAAAAABegAAAAACegAAAAAAKwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAACewAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAADKwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADewAAAAACKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAACewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAACewAAAAADKwAAAAAAKwAAAAAAewAAAAADewAAAAAA version: 6 -5,-6: ind: -5,-6 - tiles: BAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACewAAAAADegAAAAADegAAAAACegAAAAABewAAAAABewAAAAAAegAAAAABegAAAAADegAAAAADegAAAAACewAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACewAAAAACegAAAAADegAAAAABegAAAAAAewAAAAADewAAAAACewAAAAADewAAAAACewAAAAABewAAAAACewAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAACewAAAAADewAAAAADfAAAAAABewAAAAADewAAAAADewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABewAAAAACegAAAAACfAAAAAADegAAAAADfAAAAAAAegAAAAAAfAAAAAABegAAAAACfAAAAAADegAAAAADfAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAAewAAAAACfAAAAAABegAAAAABfAAAAAAAegAAAAAAfAAAAAABegAAAAADfAAAAAAAegAAAAACfAAAAAAAegAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADewAAAAACegAAAAAAewAAAAACewAAAAACewAAAAADewAAAAABewAAAAACewAAAAABewAAAAAAewAAAAADewAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAAAewAAAAAAewAAAAACfAAAAAACewAAAAABBAAAAAAADAAAAAACKQAAAAAAKQAAAAACCgAAAAAACgAAAAAADgAAAAAGDgAAAAAIBAAAAAAABAAAAAACBAAAAAADewAAAAADewAAAAACDAAAAAAAegAAAAABewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAECgAAAAAACgAAAAAADgAAAAAJDgAAAAAMDgAAAAAOBAAAAAAABAAAAAADewAAAAADewAAAAACDAAAAAADDAAAAAACDAAAAAADegAAAAADegAAAAABKQAAAAAACgAAAAAACgAAAAAADgAAAAANDgAAAAALDgAAAAAODgAAAAAKBAAAAAABBAAAAAADewAAAAADDAAAAAADCgAAAAAAKQAAAAAANwAAAAADegAAAAACewAAAAADegAAAAABCgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAABAAAAAABBAAAAAABewAAAAAACgAAAAAADgAAAAALCgAAAAAAKQAAAAAAKQAAAAAAewAAAAABewAAAAACewAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACewAAAAABDgAAAAAIDgAAAAAECgAAAAAACgAAAAAACgAAAAAACgAAAAAAewAAAAABegAAAAAAewAAAAAADAAAAAADKQAAAAAFKQAAAAAACgAAAAAABAAAAAABBAAAAAACewAAAAADDgAAAAAODgAAAAAIDgAAAAAMDgAAAAAKDgAAAAAHCgAAAAAACgAAAAAAewAAAAACewAAAAABDAAAAAACNwAAAAABDAAAAAAAKQAAAAAABAAAAAACBAAAAAAAewAAAAAADgAAAAAADgAAAAAODgAAAAAODgAAAAAGCgAAAAAACgAAAAAAKQAAAAAAewAAAAADegAAAAAAewAAAAADewAAAAACewAAAAADBAAAAAACBAAAAAABBAAAAAAAewAAAAABDgAAAAAODgAAAAAIKQAAAAAACgAAAAAACgAAAAAAKQAAAAADegAAAAAAewAAAAADewAAAAACegAAAAABegAAAAABewAAAAACegAAAAACBAAAAAAABAAAAAACewAAAAADCgAAAAAACgAAAAAADgAAAAAGCgAAAAAAKQAAAAAADAAAAAAAewAAAAACegAAAAADKQAAAAAAKQAAAAAABAAAAAABewAAAAAAegAAAAAA + tiles: BAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACewAAAAADKgAAAAAAKgAAAAAAKgAAAAAAewAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACewAAAAACKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAACewAAAAADewAAAAADLAAAAAAAewAAAAADewAAAAADewAAAAACewAAAAADLAAAAAAALAAAAAAAewAAAAAAewAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABewAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAAewAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADewAAAAACKgAAAAAAewAAAAACewAAAAACewAAAAADewAAAAABewAAAAACewAAAAABewAAAAAAewAAAAADewAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAAAewAAAAAAewAAAAACLAAAAAAAewAAAAABBAAAAAAADAAAAAACKQAAAAAAKQAAAAACCgAAAAAACgAAAAAADgAAAAAGDgAAAAAIBAAAAAAABAAAAAACBAAAAAADewAAAAADewAAAAACDAAAAAAAKgAAAAAAKwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAECgAAAAAACgAAAAAADgAAAAAJDgAAAAAMDgAAAAAOBAAAAAAABAAAAAADewAAAAADewAAAAACDAAAAAADDAAAAAACDAAAAAADKgAAAAAAKgAAAAAAKQAAAAAACgAAAAAACgAAAAAADgAAAAANDgAAAAALDgAAAAAODgAAAAAKBAAAAAABBAAAAAADewAAAAADDAAAAAADCgAAAAAAKQAAAAAANwAAAAADKgAAAAAAKwAAAAAAKgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAABAAAAAABBAAAAAABewAAAAAACgAAAAAADgAAAAALCgAAAAAAKQAAAAAAKQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACewAAAAABDgAAAAAIDgAAAAAECgAAAAAACgAAAAAACgAAAAAACgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAADAAAAAADKQAAAAAFKQAAAAAACgAAAAAABAAAAAABBAAAAAACewAAAAADDgAAAAAODgAAAAAIDgAAAAAMDgAAAAAKDgAAAAAHCgAAAAAACgAAAAAAKwAAAAAAKwAAAAAADAAAAAACNwAAAAABDAAAAAAAKQAAAAAABAAAAAACBAAAAAAAewAAAAAADgAAAAAADgAAAAAODgAAAAAODgAAAAAGCgAAAAAACgAAAAAAKQAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAACBAAAAAABBAAAAAAAewAAAAABDgAAAAAODgAAAAAIKQAAAAAACgAAAAAACgAAAAAAKQAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAABAAAAAAABAAAAAACewAAAAADCgAAAAAACgAAAAAADgAAAAAGCgAAAAAAKQAAAAAADAAAAAAAKwAAAAAAKgAAAAAAKQAAAAAAKQAAAAAABAAAAAABKwAAAAAAKgAAAAAA version: 6 -6,-4: ind: -6,-4 @@ -518,11 +523,11 @@ entities: version: 6 -4,-7: ind: -4,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAAABgAAAAADBAAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAADAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAAABgAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAACBAAAAAADBAAAAAACBgAAAAADBgAAAAABBgAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABewAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAAewAAAAADegAAAAADegAAAAACegAAAAAAewAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACewAAAAADegAAAAABegAAAAADegAAAAAAewAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAAABgAAAAACBgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADAAAAAAAABgAAAAAABgAAAAADBgAAAAADBgAAAAAABgAAAAADBAAAAAABBgAAAAACBgAAAAACBgAAAAACBgAAAAADAAAAAAAAAAAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAAABgAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAABgAAAAABBgAAAAABBgAAAAAABgAAAAACBAAAAAADBAAAAAACBgAAAAADBgAAAAABBgAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAABewAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAAewAAAAADKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACewAAAAADKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAB version: 6 -5,-7: ind: -5,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAADBgAAAAAABgAAAAADAAAAAAAAAAAAAAAABgAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABgAAAAABBgAAAAACBgAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBgAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAABewAAAAACewAAAAACewAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABewAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAAAewAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAABewAAAAABegAAAAADegAAAAACegAAAAADewAAAAACewAAAAABegAAAAAAegAAAAABegAAAAACegAAAAACewAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADewAAAAAAegAAAAABegAAAAABegAAAAABewAAAAADewAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAAAewAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAAABgAAAAACBgAAAAABBgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABBgAAAAACBgAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABgAAAAABBgAAAAAABgAAAAACBgAAAAADBgAAAAAABgAAAAADAAAAAAAAAAAAAAAABgAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAABgAAAAABBgAAAAACBgAAAAABBAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBgAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAABewAAAAACewAAAAACewAAAAABBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAACewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAABewAAAAABKgAAAAAAKgAAAAAAKgAAAAAAewAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA version: 6 -6,-7: ind: -6,-7 @@ -918,113 +923,113 @@ entities: color: '#FFFFFFFF' id: Basalt1 decals: - 6086: -64.72819,-82.96651 - 6091: -68.20394,-84.44793 - 6100: -58.418167,-85.1621 - 6106: -72.907486,-80.46708 - 6111: -73.957985,-85.948784 - 6117: -59.26721,-76.947685 + 6082: -64.72819,-82.96651 + 6087: -68.20394,-84.44793 + 6096: -58.418167,-85.1621 + 6102: -72.907486,-80.46708 + 6107: -73.957985,-85.948784 + 6113: -59.26721,-76.947685 - node: zIndex: 2 angle: 0.7853981633974483 rad color: '#9B9B9BFF' id: Basalt2 decals: - 6830: -79.933395,-44.901474 + 6826: -79.933395,-44.901474 - node: color: '#FFFFFFFF' id: Basalt2 decals: - 6087: -61.995502,-82.56612 - 6093: -67.88051,-84.0271 - 6094: -59.831947,-84.90013 - 6099: -58.06139,-85.3851 - 6107: -77.02044,-80.00414 - 6110: -71.951126,-82.13123 - 6112: -70.637505,-87.97252 - 6114: -69.5922,-90.15995 - 6116: -63.972576,-83.72056 - 6118: -59.74318,-77.02202 - 6122: -60.813595,-78.08228 + 6083: -61.995502,-82.56612 + 6089: -67.88051,-84.0271 + 6090: -59.831947,-84.90013 + 6095: -58.06139,-85.3851 + 6103: -77.02044,-80.00414 + 6106: -71.951126,-82.13123 + 6108: -70.637505,-87.97252 + 6110: -69.5922,-90.15995 + 6112: -63.972576,-83.72056 + 6114: -59.74318,-77.02202 + 6118: -60.813595,-78.08228 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 6088: -67.38836,-84.89519 - 6092: -67.60436,-83.89518 - 6095: -59.82893,-85.27179 - 6102: -72.967575,-80.38495 - 6105: -73.73184,-79.52799 - 6108: -76.41094,-78.60671 - 6115: -60.957405,-83.92081 - 6126: -70.773415,-77.02379 + 6084: -67.38836,-84.89519 + 6088: -67.60436,-83.89518 + 6091: -59.82893,-85.27179 + 6098: -72.967575,-80.38495 + 6101: -73.73184,-79.52799 + 6104: -76.41094,-78.60671 + 6111: -60.957405,-83.92081 + 6122: -70.773415,-77.02379 - node: zIndex: 2 color: '#9B9B9BFF' id: Basalt5 decals: - 6828: -80.15803,-44.958736 + 6824: -80.15803,-44.958736 - node: color: '#FFFFFFFF' id: Basalt5 decals: - 6089: -68.05528,-84.77626 - 6096: -59.947853,-84.71961 - 6109: -75.01357,-78.889175 - 6121: -57.99831,-79.00718 - 6127: -70.62376,-77.612656 + 6085: -68.05528,-84.77626 + 6092: -59.947853,-84.71961 + 6105: -75.01357,-78.889175 + 6117: -57.99831,-79.00718 + 6123: -70.62376,-77.612656 - node: zIndex: 2 angle: -0.7853981633974483 rad color: '#9B9B9BFF' id: Basalt6 decals: - 6831: -79.91566,-44.936714 - 6832: -80.46183,-44.764927 - 6833: -80.16672,-44.500637 - 6834: -80.39576,-45.06886 + 6827: -79.91566,-44.936714 + 6828: -80.46183,-44.764927 + 6829: -80.16672,-44.500637 + 6830: -80.39576,-45.06886 - node: zIndex: 2 color: '#9B9B9BFF' id: Basalt6 decals: - 6835: -80.25922,-45.12612 + 6831: -80.25922,-45.12612 - node: color: '#FFFFFFFF' id: Basalt6 decals: - 6090: -68.27827,-85.20738 - 6097: -60.051914,-85.19836 - 6098: -60.007317,-85.9268 - 6104: -72.81804,-80.93446 - 6119: -59.7963,-77.26784 - 6120: -58.028133,-79.111244 - 6124: -62.02972,-79.03356 - 6125: -65.18592,-79.95527 + 6086: -68.27827,-85.20738 + 6093: -60.051914,-85.19836 + 6094: -60.007317,-85.9268 + 6100: -72.81804,-80.93446 + 6115: -59.7963,-77.26784 + 6116: -58.028133,-79.111244 + 6120: -62.02972,-79.03356 + 6121: -65.18592,-79.95527 - node: zIndex: 2 angle: 0.7853981633974483 rad color: '#9B9B9BFF' id: Basalt7 decals: - 6829: -79.9422,-45.077667 + 6825: -79.9422,-45.077667 - node: color: '#FFFFFFFF' id: Basalt7 decals: - 6103: -72.86352,-80.295746 + 6099: -72.86352,-80.295746 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 6101: -73.41354,-79.9687 - 6113: -69.10164,-89.99642 + 6097: -73.41354,-79.9687 + 6109: -69.10164,-89.99642 - node: color: '#DE3A3A96' id: Bot decals: - 16558: -41,12 - 16559: -33,12 + 16554: -41,12 + 16555: -33,12 - node: zIndex: 1 color: '#DE3A3A96' @@ -1127,17 +1132,17 @@ entities: 3859: -13,62 3860: -15,62 5350: -54,-35 - 11577: -41,56 - 12754: 107,-6 - 12755: 106,-6 - 12756: 105,-6 - 12757: 104,-6 - 12758: 104,-4 - 12759: 105,-4 - 12760: 106,-4 - 12761: 107,-4 - 17517: -50,0 - 17754: -21,43 + 11573: -41,56 + 12750: 107,-6 + 12751: 106,-6 + 12752: 105,-6 + 12753: 104,-6 + 12754: 104,-4 + 12755: 105,-4 + 12756: 106,-4 + 12757: 107,-4 + 17481: -50,0 + 17686: -21,43 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1211,22 +1216,22 @@ entities: 3870: -11,63 3871: -11,64 3872: -11,65 - 11261: -38,-19 - 11262: -38,-17 - 11565: -42,48 - 11566: -41,48 - 11567: -40,48 - 11568: -49,55 - 11569: -49,56 - 11570: -49,57 - 11571: -42,64 - 11572: -41,64 - 11573: -40,64 - 11574: -33,57 - 11575: -33,56 - 11576: -33,55 - 17755: -2,50 - 17756: -1,50 + 11257: -38,-19 + 11258: -38,-17 + 11561: -42,48 + 11562: -41,48 + 11563: -40,48 + 11564: -49,55 + 11565: -49,56 + 11566: -49,57 + 11567: -42,64 + 11568: -41,64 + 11569: -40,64 + 11570: -33,57 + 11571: -33,56 + 11572: -33,55 + 17687: -2,50 + 17688: -1,50 - node: zIndex: 1 color: '#FFFFFFFF' @@ -1234,14 +1239,14 @@ entities: decals: 2368: 4,-40 2369: 4,-41 - 11183: -6,-51 - 11184: -12,-51 - 16991: 19,12 - 16992: 19,13 - 16993: 19,14 - 16994: 22,12 - 16995: 22,13 - 16996: 22,14 + 11179: -6,-51 + 11180: -12,-51 + 16961: 19,12 + 16962: 19,13 + 16963: 19,14 + 16964: 22,12 + 16965: 22,13 + 16966: 22,14 - node: zIndex: 10 color: '#FFFFFFFF' @@ -1259,33 +1264,33 @@ entities: 3258: 13,30 3259: 13,29 3829: -8,48 - 11578: -45,52 - 11579: -37,52 - 11580: -37,60 - 11581: -45,60 + 11574: -45,52 + 11575: -37,52 + 11576: -37,60 + 11577: -45,60 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 11582: -49,52 - 11583: -33,52 - 11584: -33,60 - 11585: -37,64 - 11586: -49,60 - 11587: -45,64 - 11588: -45,48 - 11589: -37,48 + 11578: -49,52 + 11579: -33,52 + 11580: -33,60 + 11581: -37,64 + 11582: -49,60 + 11583: -45,64 + 11584: -45,48 + 11585: -37,48 - node: zIndex: 1 color: '#52B4E996' id: BrickCornerOverlayNE decals: - 16530: -39,-25 + 16526: -39,-25 - node: color: '#9FED5872' id: BrickCornerOverlayNE decals: - 11496: 53,-57 + 11492: 53,-57 - node: zIndex: 2 color: '#9FED5896' @@ -1300,7 +1305,7 @@ entities: color: '#D381C996' id: BrickCornerOverlayNE decals: - 16757: 36,10 + 16727: 36,10 - node: zIndex: 2 color: '#D381C996' @@ -1311,18 +1316,18 @@ entities: color: '#DE3A3A66' id: BrickCornerOverlayNE decals: - 17562: 127,11 + 17526: 127,11 - node: zIndex: 1 color: '#52B4E996' id: BrickCornerOverlayNW decals: - 16531: -43,-25 + 16527: -43,-25 - node: color: '#9FED5872' id: BrickCornerOverlayNW decals: - 11495: 41,-57 + 11491: 41,-57 - node: zIndex: 2 color: '#9FED5896' @@ -1342,18 +1347,18 @@ entities: color: '#DE3A3A66' id: BrickCornerOverlayNW decals: - 17563: 124,11 + 17527: 124,11 - node: zIndex: 1 color: '#52B4E996' id: BrickCornerOverlaySE decals: - 16532: -39,-29 + 16528: -39,-29 - node: color: '#9FED5872' id: BrickCornerOverlaySE decals: - 11494: 53,-61 + 11490: 53,-61 - node: zIndex: 2 color: '#9FED5896' @@ -1368,7 +1373,7 @@ entities: color: '#D381C996' id: BrickCornerOverlaySE decals: - 16750: 36,8 + 16720: 36,8 - node: zIndex: 2 color: '#D381C996' @@ -1379,18 +1384,18 @@ entities: color: '#DE3A3A66' id: BrickCornerOverlaySE decals: - 17564: 127,8 + 17528: 127,8 - node: zIndex: 1 color: '#52B4E996' id: BrickCornerOverlaySW decals: - 16533: -43,-29 + 16529: -43,-29 - node: color: '#9FED5872' id: BrickCornerOverlaySW decals: - 11493: 41,-61 + 11489: 41,-61 - node: zIndex: 2 color: '#9FED5896' @@ -1410,24 +1415,24 @@ entities: color: '#DE3A3A66' id: BrickCornerOverlaySW decals: - 17565: 124,8 + 17529: 124,8 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayE decals: - 16527: -39,-26 - 16528: -39,-27 - 16529: -39,-28 + 16523: -39,-26 + 16524: -39,-27 + 16525: -39,-28 - node: color: '#9FED5872' id: BrickLineOverlayE decals: - 11454: 42,-59 - 11455: 48,-59 - 11456: 53,-60 - 11457: 53,-59 - 11458: 53,-58 + 11450: 42,-59 + 11451: 48,-59 + 11452: 53,-60 + 11453: 53,-59 + 11454: 53,-58 - node: zIndex: 2 color: '#9FED5896' @@ -1474,9 +1479,9 @@ entities: color: '#D381C996' id: BrickLineOverlayE decals: - 16744: 36,9 - 16751: 34,11 - 16752: 34,12 + 16714: 36,9 + 16721: 34,11 + 16722: 34,12 - node: zIndex: 2 color: '#D381C996' @@ -1501,51 +1506,51 @@ entities: color: '#DE3A3A66' id: BrickLineOverlayE decals: - 17554: 124,10 - 17555: 124,9 - 17556: 127,10 - 17557: 127,9 + 17518: 124,10 + 17519: 124,9 + 17520: 127,10 + 17521: 127,9 - node: color: '#DE3A3A96' id: BrickLineOverlayE decals: - 5864: -49,13 - 5865: -49,14 - 5866: -49,15 - 5867: -49,16 - 5868: -46,13 - 5869: -46,14 - 5870: -46,15 - 5871: -46,16 + 5860: -49,13 + 5861: -49,14 + 5862: -49,15 + 5863: -49,16 + 5864: -46,13 + 5865: -46,14 + 5866: -46,15 + 5867: -46,16 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayN decals: - 16524: -42,-25 - 16525: -41,-25 - 16526: -40,-25 + 16520: -42,-25 + 16521: -41,-25 + 16522: -40,-25 - node: color: '#9FED5872' id: BrickLineOverlayN decals: - 11459: 43,-60 - 11460: 44,-60 - 11461: 45,-60 - 11462: 49,-60 - 11463: 50,-60 - 11464: 51,-60 - 11465: 42,-57 - 11466: 43,-57 - 11467: 44,-57 - 11468: 45,-57 - 11469: 46,-57 - 11470: 47,-57 - 11471: 48,-57 - 11472: 49,-57 - 11473: 50,-57 - 11474: 51,-57 - 11475: 52,-57 + 11455: 43,-60 + 11456: 44,-60 + 11457: 45,-60 + 11458: 49,-60 + 11459: 50,-60 + 11460: 51,-60 + 11461: 42,-57 + 11462: 43,-57 + 11463: 44,-57 + 11464: 45,-57 + 11465: 46,-57 + 11466: 47,-57 + 11467: 48,-57 + 11468: 49,-57 + 11469: 50,-57 + 11470: 51,-57 + 11471: 52,-57 - node: zIndex: 2 color: '#9FED5896' @@ -1596,9 +1601,9 @@ entities: color: '#D381C996' id: BrickLineOverlayN decals: - 16741: 31,10 - 16742: 32,10 - 16743: 35,10 + 16711: 31,10 + 16712: 32,10 + 16713: 35,10 - node: zIndex: 2 color: '#D381C996' @@ -1621,47 +1626,47 @@ entities: color: '#DE3A3A66' id: BrickLineOverlayN decals: - 17558: 125,8 - 17559: 126,8 - 17560: 125,11 - 17561: 126,11 + 17522: 125,8 + 17523: 126,8 + 17524: 125,11 + 17525: 126,11 - node: color: '#DE3A3A96' id: BrickLineOverlayN decals: - 5852: -54,12 - 5853: -53,12 - 5854: -54,15 - 5855: -53,15 + 5848: -54,12 + 5849: -53,12 + 5850: -54,15 + 5851: -53,15 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayS decals: - 16518: -42,-29 - 16519: -41,-29 - 16520: -40,-29 + 16514: -42,-29 + 16515: -41,-29 + 16516: -40,-29 - node: color: '#9FED5872' id: BrickLineOverlayS decals: - 11476: 43,-58 - 11477: 44,-58 - 11478: 45,-58 - 11479: 49,-58 - 11480: 50,-58 - 11481: 51,-58 - 11482: 52,-61 - 11483: 51,-61 - 11484: 50,-61 - 11485: 48,-61 - 11486: 49,-61 - 11487: 47,-61 - 11488: 46,-61 - 11489: 45,-61 - 11490: 44,-61 - 11491: 43,-61 - 11492: 42,-61 + 11472: 43,-58 + 11473: 44,-58 + 11474: 45,-58 + 11475: 49,-58 + 11476: 50,-58 + 11477: 51,-58 + 11478: 52,-61 + 11479: 51,-61 + 11480: 50,-61 + 11481: 48,-61 + 11482: 49,-61 + 11483: 47,-61 + 11484: 46,-61 + 11485: 45,-61 + 11486: 44,-61 + 11487: 43,-61 + 11488: 42,-61 - node: zIndex: 2 color: '#9FED5896' @@ -1712,11 +1717,11 @@ entities: color: '#D381C996' id: BrickLineOverlayS decals: - 16745: 31,8 - 16746: 32,8 - 16747: 33,8 - 16748: 34,8 - 16749: 35,8 + 16715: 31,8 + 16716: 32,8 + 16717: 33,8 + 16718: 34,8 + 16719: 35,8 - node: zIndex: 2 color: '#D381C996' @@ -1739,35 +1744,35 @@ entities: color: '#DE3A3A66' id: BrickLineOverlayS decals: - 17546: 125,11 - 17547: 126,11 - 17548: 125,8 - 17549: 126,8 + 17510: 125,11 + 17511: 126,11 + 17512: 125,8 + 17513: 126,8 - node: color: '#DE3A3A96' id: BrickLineOverlayS decals: - 5848: -54,12 - 5849: -53,12 - 5850: -53,15 - 5851: -54,15 + 5844: -54,12 + 5845: -53,12 + 5846: -53,15 + 5847: -54,15 - node: zIndex: 1 color: '#52B4E996' id: BrickLineOverlayW decals: - 16521: -43,-28 - 16522: -43,-27 - 16523: -43,-26 + 16517: -43,-28 + 16518: -43,-27 + 16519: -43,-26 - node: color: '#9FED5872' id: BrickLineOverlayW decals: - 11449: 46,-59 - 11450: 52,-59 - 11451: 41,-60 - 11452: 41,-59 - 11453: 41,-58 + 11445: 46,-59 + 11446: 52,-59 + 11447: 41,-60 + 11448: 41,-59 + 11449: 41,-58 - node: zIndex: 2 color: '#9FED5896' @@ -1814,8 +1819,8 @@ entities: color: '#D381C996' id: BrickLineOverlayW decals: - 16753: 33,11 - 16754: 33,12 + 16723: 33,11 + 16724: 33,12 - node: zIndex: 2 color: '#D381C996' @@ -1840,96 +1845,96 @@ entities: color: '#DE3A3A66' id: BrickLineOverlayW decals: - 17550: 127,9 - 17551: 127,10 - 17552: 124,9 - 17553: 124,10 + 17514: 127,9 + 17515: 127,10 + 17516: 124,9 + 17517: 124,10 - node: color: '#DE3A3A96' id: BrickLineOverlayW decals: - 5856: -49,13 - 5857: -49,14 - 5858: -49,15 - 5859: -49,16 - 5860: -46,13 - 5861: -46,14 - 5862: -46,15 - 5863: -46,16 + 5852: -49,13 + 5853: -49,14 + 5854: -49,15 + 5855: -49,16 + 5856: -46,13 + 5857: -46,14 + 5858: -46,15 + 5859: -46,16 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 1985: 0,-34 - 11440: 53,-57 - 16736: 36,10 + 11436: 53,-57 + 16706: 36,10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 11439: 41,-57 + 11435: 41,-57 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 1984: 0,-31 - 11437: 53,-61 - 16737: 36,8 + 11433: 53,-61 + 16707: 36,8 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 11438: 41,-61 + 11434: 41,-61 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: 393: -51,8 - 12853: 12,18 + 12849: 12,18 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: 394: -53,8 - 12852: 11,18 + 12848: 11,18 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 5658: -4,30 - 5742: 43,-1 - 5752: 43,-12 - 5782: 45,-7 - 11443: 42,-60 - 11444: 48,-60 - 16739: 34,10 + 5654: -4,30 + 5738: 43,-1 + 5748: 43,-12 + 5778: 45,-7 + 11439: 42,-60 + 11440: 48,-60 + 16709: 34,10 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: 1987: 0,-31 - 5657: -2,30 - 11441: 46,-60 - 11442: 52,-60 - 16738: 33,10 + 5653: -2,30 + 11437: 46,-60 + 11438: 52,-60 + 16708: 33,10 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 5655: -4,34 - 5739: 43,2 - 5753: 43,-9 - 5783: 45,-3 - 11445: 42,-58 - 11446: 48,-58 + 5651: -4,34 + 5735: 43,2 + 5749: 43,-9 + 5779: 45,-3 + 11441: 42,-58 + 11442: 48,-58 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: 1986: 0,-34 - 5656: -2,34 - 11447: 46,-58 - 11448: 52,-58 + 5652: -2,34 + 11443: 46,-58 + 11444: 52,-58 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -1963,33 +1968,33 @@ entities: 2013: 4,-27 2014: 4,-28 2140: 0,-30 - 5651: -4,31 - 5652: -4,32 - 5653: -4,33 - 5740: 43,1 - 5741: 43,0 - 5749: 43,-11 - 5754: 43,-10 - 5777: 45,-4 - 5778: 45,-5 - 5779: 45,-6 - 5839: -49,13 - 5840: -49,14 - 5841: -49,15 - 5842: -49,16 - 5843: -49,16 - 5844: -46,16 - 5845: -46,15 - 5846: -46,14 - 5847: -46,13 - 11415: 42,-59 - 11416: 48,-59 - 11417: 53,-60 - 11418: 53,-59 - 11419: 53,-58 - 16727: 34,11 - 16728: 34,12 - 16735: 36,9 + 5647: -4,31 + 5648: -4,32 + 5649: -4,33 + 5736: 43,1 + 5737: 43,0 + 5745: 43,-11 + 5750: 43,-10 + 5773: 45,-4 + 5774: 45,-5 + 5775: 45,-6 + 5835: -49,13 + 5836: -49,14 + 5837: -49,15 + 5838: -49,16 + 5839: -49,16 + 5840: -46,16 + 5841: -46,15 + 5842: -46,14 + 5843: -46,13 + 11411: 42,-59 + 11412: 48,-59 + 11413: 53,-60 + 11414: 53,-59 + 11415: 53,-58 + 16697: 34,11 + 16698: 34,12 + 16705: 36,9 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2010,38 +2015,38 @@ entities: 2001: -2,-31 2002: -3,-31 2003: -4,-31 - 5650: -3,30 - 5750: 44,-12 - 5751: 45,-12 - 5780: 46,-7 - 5781: 47,-7 - 5793: 45,-2 - 5794: 46,-2 - 5795: 47,-2 - 5823: -54,15 - 5824: -54,12 - 5825: -53,15 - 5826: -53,12 - 11420: 43,-60 - 11421: 44,-60 - 11422: 45,-60 - 11423: 49,-60 - 11424: 50,-60 - 11425: 51,-60 - 11426: 42,-57 - 11427: 43,-57 - 11428: 44,-57 - 11429: 45,-57 - 11430: 46,-57 - 11431: 47,-57 - 11432: 48,-57 - 11433: 49,-57 - 11434: 50,-57 - 11435: 51,-57 - 11436: 52,-57 - 16724: 32,10 - 16729: 35,10 - 16740: 31,10 + 5646: -3,30 + 5746: 44,-12 + 5747: 45,-12 + 5776: 46,-7 + 5777: 47,-7 + 5789: 45,-2 + 5790: 46,-2 + 5791: 47,-2 + 5819: -54,15 + 5820: -54,12 + 5821: -53,15 + 5822: -53,12 + 11416: 43,-60 + 11417: 44,-60 + 11418: 45,-60 + 11419: 49,-60 + 11420: 50,-60 + 11421: 51,-60 + 11422: 42,-57 + 11423: 43,-57 + 11424: 44,-57 + 11425: 45,-57 + 11426: 46,-57 + 11427: 47,-57 + 11428: 48,-57 + 11429: 49,-57 + 11430: 50,-57 + 11431: 51,-57 + 11432: 52,-57 + 16694: 32,10 + 16699: 35,10 + 16710: 31,10 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2049,6 +2054,14 @@ entities: decals: 674: -60,0 675: -58,0 + - node: + color: '#C8C8FFFF' + id: BrickTileDarkLineS + decals: + 17847: -66,-59 + 17848: -98,-52 + 17849: -121,-31 + 17850: -99,-14 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -2062,40 +2075,40 @@ entities: 1993: -3,-31 1994: -2,-31 1995: -1,-31 - 5654: -3,34 - 5737: 45,2 - 5738: 44,2 - 5775: 46,-3 - 5776: 47,-3 - 5796: 45,-8 - 5797: 46,-8 - 5798: 47,-8 - 5827: -54,12 - 5828: -53,12 - 5829: -54,15 - 5830: -53,15 - 11398: 43,-58 - 11399: 44,-58 - 11400: 45,-58 - 11401: 49,-58 - 11402: 50,-58 - 11403: 51,-58 - 11404: 42,-61 - 11405: 43,-61 - 11406: 44,-61 - 11407: 45,-61 - 11408: 46,-61 - 11409: 47,-61 - 11410: 48,-61 - 11411: 49,-61 - 11412: 50,-61 - 11413: 51,-61 - 11414: 52,-61 - 16730: 31,8 - 16731: 32,8 - 16732: 33,8 - 16733: 34,8 - 16734: 35,8 + 5650: -3,34 + 5733: 45,2 + 5734: 44,2 + 5771: 46,-3 + 5772: 47,-3 + 5792: 45,-8 + 5793: 46,-8 + 5794: 47,-8 + 5823: -54,12 + 5824: -53,12 + 5825: -54,15 + 5826: -53,15 + 11394: 43,-58 + 11395: 44,-58 + 11396: 45,-58 + 11397: 49,-58 + 11398: 50,-58 + 11399: 51,-58 + 11400: 42,-61 + 11401: 43,-61 + 11402: 44,-61 + 11403: 45,-61 + 11404: 46,-61 + 11405: 47,-61 + 11406: 48,-61 + 11407: 49,-61 + 11408: 50,-61 + 11409: 51,-61 + 11410: 52,-61 + 16700: 31,8 + 16701: 32,8 + 16702: 33,8 + 16703: 34,8 + 16704: 35,8 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2136,24 +2149,24 @@ entities: 2007: 4,-24 2008: 4,-22 2141: 0,-30 - 5647: -2,31 - 5648: -2,32 - 5649: -2,33 - 5831: -49,13 - 5832: -49,14 - 5833: -49,15 - 5834: -49,16 - 5835: -46,13 - 5836: -46,14 - 5837: -46,15 - 5838: -46,16 - 11393: 41,-60 - 11394: 41,-59 - 11395: 41,-58 - 11396: 46,-59 - 11397: 52,-59 - 16725: 33,11 - 16726: 33,12 + 5643: -2,31 + 5644: -2,32 + 5645: -2,33 + 5827: -49,13 + 5828: -49,14 + 5829: -49,15 + 5830: -49,16 + 5831: -46,13 + 5832: -46,14 + 5833: -46,15 + 5834: -46,16 + 11389: 41,-60 + 11390: 41,-59 + 11391: 41,-58 + 11392: 46,-59 + 11393: 52,-59 + 16695: 33,11 + 16696: 33,12 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2182,7 +2195,7 @@ entities: 2308: 0,-48 3754: -14,33 3993: -21,-32 - 11285: 45,-53 + 11281: 45,-53 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2219,7 +2232,7 @@ entities: 3948: -34,-34 3949: -33,-33 3950: -32,-32 - 11286: 42,-53 + 11282: 42,-53 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2257,7 +2270,7 @@ entities: 2016: 5,-24 3755: -14,31 3994: -21,-33 - 11288: 45,-55 + 11284: 45,-55 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2292,7 +2305,7 @@ entities: 1928: 10,-36 3756: -17,31 3957: -34,-41 - 11287: 42,-55 + 11283: 42,-55 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2346,8 +2359,8 @@ entities: 3108: 20,25 3109: 24,25 3315: 27,-36 - 12764: 24,19 - 12765: 29,19 + 12760: 24,19 + 12761: 29,19 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw @@ -2380,8 +2393,8 @@ entities: 2827: 36,-31 3110: 28,25 3111: 24,25 - 12762: 32,19 - 12763: 27,19 + 12758: 32,19 + 12759: 27,19 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe @@ -2413,8 +2426,8 @@ entities: 2825: 32,-29 3112: 24,31 3113: 20,31 - 12766: 24,21 - 12767: 29,21 + 12762: 24,21 + 12763: 29,21 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw @@ -2445,8 +2458,8 @@ entities: 2826: 36,-29 3114: 24,31 3115: 28,31 - 12768: 27,21 - 12769: 32,21 + 12764: 27,21 + 12765: 32,21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -2487,7 +2500,7 @@ entities: 4010: -33,-38 4011: -33,-39 4012: -33,-40 - 11290: 45,-54 + 11286: 45,-54 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2642,8 +2655,8 @@ entities: 3990: -24,-32 3991: -23,-32 3992: -22,-32 - 11293: 43,-53 - 11294: 44,-53 + 11289: 43,-53 + 11290: 44,-53 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2792,8 +2805,8 @@ entities: 4003: -30,-33 4004: -31,-33 4005: -32,-33 - 11291: 43,-55 - 11292: 44,-55 + 11287: 43,-55 + 11288: 44,-55 - node: zIndex: 1 color: '#FFFFFFFF' @@ -2920,7 +2933,7 @@ entities: 3954: -34,-38 3955: -34,-39 3956: -34,-40 - 11289: 42,-54 + 11285: 42,-54 - node: zIndex: 1 color: '#FFFFFFFF' @@ -3054,13 +3067,13 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteBox decals: - 5985: -75,-71 - 5986: -75,-73 - 5987: -75,-75 - 5988: -60,-75 - 5989: -60,-73 - 5990: -60,-71 - 17015: 30,-8 + 5981: -75,-71 + 5982: -75,-73 + 5983: -75,-75 + 5984: -60,-75 + 5985: -60,-73 + 5986: -60,-71 + 16985: 30,-8 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -3069,14 +3082,14 @@ entities: 1399: -39,-25 1490: -39,-21 5358: -50,-16 - 11273: -40,-16 + 11269: -40,-16 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: 2934: 28,15 - 5959: 4,11 + 5955: 4,11 - node: zIndex: 2 color: '#FFFFFFFF' @@ -3105,7 +3118,7 @@ entities: id: BrickTileWhiteCornerNw decals: 2932: 25,15 - 5958: 0,11 + 5954: 0,11 - node: zIndex: 2 color: '#FFFFFFFF' @@ -3129,14 +3142,14 @@ entities: 1510: -56,-37 5357: -50,-17 5361: -52,-19 - 11274: -40,-19 + 11270: -40,-19 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 2933: 28,13 - 5961: 4,7 + 5957: 4,7 - node: zIndex: 2 color: '#FFFFFFFF' @@ -3154,7 +3167,7 @@ entities: color: '#0000003F' id: BrickTileWhiteCornerSw decals: - 6456: -100,-72 + 6452: -100,-72 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw @@ -3171,7 +3184,7 @@ entities: id: BrickTileWhiteCornerSw decals: 2935: 25,13 - 5960: 0,7 + 5956: 0,7 - node: zIndex: 2 color: '#FFFFFFFF' @@ -3190,7 +3203,7 @@ entities: id: BrickTileWhiteEndE decals: 1871: -60,-10 - 16535: -40,-22 + 16531: -40,-22 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN @@ -3209,12 +3222,12 @@ entities: id: BrickTileWhiteEndW decals: 1870: -64,-10 - 16534: -42,-22 + 16530: -42,-22 - node: color: '#0000003F' id: BrickTileWhiteInnerNe decals: - 6459: -104,-77 + 6455: -104,-77 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe @@ -3226,9 +3239,9 @@ entities: 1867: -62,-10 3269: 24,19 3270: 29,19 - 16549: -43,-29 - 16550: -43,-28 - 16551: -42,-29 + 16545: -43,-29 + 16546: -43,-28 + 16547: -42,-29 - node: zIndex: 20 color: '#FFFFFFFF' @@ -3239,7 +3252,7 @@ entities: color: '#0000003F' id: BrickTileWhiteInnerNw decals: - 6460: -99,-77 + 6456: -99,-77 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw @@ -3250,10 +3263,10 @@ entities: 1868: -62,-10 3275: 27,19 3276: 32,19 - 11275: -40,-19 - 16548: -39,-29 - 16552: -40,-29 - 16553: -39,-28 + 11271: -40,-19 + 16544: -39,-29 + 16548: -40,-29 + 16549: -39,-28 - node: zIndex: 20 color: '#FFFFFFFF' @@ -3264,7 +3277,7 @@ entities: color: '#0000003F' id: BrickTileWhiteInnerSe decals: - 6458: -104,-72 + 6454: -104,-72 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe @@ -3275,10 +3288,10 @@ entities: 3273: 24,21 3274: 29,21 5362: -52,-17 - 5669: -51,-18 - 16547: -43,-25 - 16554: -43,-26 - 16555: -42,-25 + 5665: -51,-18 + 16543: -43,-25 + 16550: -43,-26 + 16551: -42,-25 - node: zIndex: 20 color: '#FFFFFFFF' @@ -3289,8 +3302,8 @@ entities: color: '#0000003F' id: BrickTileWhiteInnerSw decals: - 6446: -100,-71 - 6455: -99,-72 + 6442: -100,-71 + 6451: -99,-72 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw @@ -3300,10 +3313,10 @@ entities: 1779: -36,-28 3271: 27,21 3272: 32,21 - 11272: -40,-16 - 16546: -39,-25 - 16556: -40,-25 - 16557: -39,-26 + 11268: -40,-16 + 16542: -39,-25 + 16552: -40,-25 + 16553: -39,-26 - node: zIndex: 20 color: '#FFFFFFFF' @@ -3314,10 +3327,10 @@ entities: color: '#0000003F' id: BrickTileWhiteLineE decals: - 6442: -104,-75 - 6443: -104,-74 - 6448: -104,-76 - 6457: -104,-73 + 6438: -104,-75 + 6439: -104,-74 + 6444: -104,-76 + 6453: -104,-73 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -3340,21 +3353,21 @@ entities: 1921: 3,9 3260: 24,20 5351: -52,-18 - 5667: -51,-19 - 11268: -40,-18 - 11269: -40,-17 - 16542: -43,-26 - 16543: -43,-28 + 5663: -51,-19 + 11264: -40,-18 + 11265: -40,-17 + 16538: -43,-26 + 16539: -43,-28 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: 2941: 28,14 - 5962: 4,8 - 5963: 4,9 - 5964: 4,10 - 12770: 29,20 + 5958: 4,8 + 5959: 4,9 + 5960: 4,10 + 12766: 29,20 - node: zIndex: 2 color: '#FFFFFFFF' @@ -3375,10 +3388,10 @@ entities: color: '#0000003F' id: BrickTileWhiteLineN decals: - 6440: -102,-77 - 6441: -101,-77 - 6449: -103,-77 - 6450: -100,-77 + 6436: -102,-77 + 6437: -101,-77 + 6445: -103,-77 + 6446: -100,-77 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -3411,11 +3424,11 @@ entities: 3264: 31,19 5354: -52,-16 5355: -51,-16 - 5913: -59,-37 - 5914: -57,-37 - 16536: -41,-22 - 16538: -42,-29 - 16539: -40,-29 + 5909: -59,-37 + 5910: -57,-37 + 16532: -41,-22 + 16534: -42,-29 + 16535: -40,-29 - node: zIndex: 1 color: '#FFFFFFFF' @@ -3433,13 +3446,13 @@ entities: color: '#00000026' id: BrickTileWhiteLineS decals: - 6447: -103,-71 + 6443: -103,-71 - node: color: '#0000003F' id: BrickTileWhiteLineS decals: - 6444: -102,-71 - 6445: -101,-71 + 6440: -102,-71 + 6441: -101,-71 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -3468,12 +3481,12 @@ entities: 3267: 30,21 3268: 31,21 5356: -51,-17 - 5668: -50,-18 - 5911: -59,-37 - 5912: -57,-37 - 16537: -41,-22 - 16540: -42,-25 - 16541: -40,-25 + 5664: -50,-18 + 5907: -59,-37 + 5908: -57,-37 + 16533: -41,-22 + 16536: -42,-25 + 16537: -40,-25 - node: zIndex: 1 color: '#FFFFFFFF' @@ -3491,10 +3504,10 @@ entities: color: '#0000003F' id: BrickTileWhiteLineW decals: - 6451: -99,-76 - 6452: -99,-75 - 6453: -99,-74 - 6454: -99,-73 + 6447: -99,-76 + 6448: -99,-75 + 6449: -99,-74 + 6450: -99,-73 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -3518,20 +3531,20 @@ entities: 1922: 1,9 5352: -53,-18 5353: -53,-17 - 11270: -40,-18 - 11271: -40,-17 - 16544: -39,-28 - 16545: -39,-26 + 11266: -40,-18 + 11267: -40,-17 + 16540: -39,-28 + 16541: -39,-26 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: 2940: 25,14 - 5965: 0,8 - 5966: 0,9 - 5967: 0,10 - 12771: 32,20 + 5961: 0,8 + 5962: 0,9 + 5963: 0,10 + 12767: 32,20 - node: zIndex: 2 color: '#FFFFFFFF' @@ -3552,7 +3565,7 @@ entities: color: '#FFFFFFFF' id: Bushb1 decals: - 5774: 45.18574,-0.99951506 + 5770: 45.18574,-0.99951506 - node: cleanable: True color: '#FFFFFFFF' @@ -3570,158 +3583,158 @@ entities: color: '#DCBFFFBF' id: Bushi1 decals: - 10706: -114.34784,-20.851341 - 10707: -119.63775,-20.761751 - 10708: -116.996025,-19.591038 - 10709: -118.968956,-16.98202 - 10710: -121.91164,-16.61408 - 10711: -123.95144,-14.07196 - 10712: -122.179146,-10.559818 - 10713: -122.145706,-8.853922 - 10714: -127.02788,-8.419085 - 10715: -129.20143,-9.288757 - 10716: -130.40526,-6.7131877 - 10717: -129.70303,-4.8734946 - 10718: -129.5024,-10.927757 - 10719: -127.295395,-10.559818 - 10720: -125.389336,-8.452534 - 10721: -125.08839,-10.325676 - 10722: -119.6954,-8.954269 - 10723: -117.85727,-8.820473 - 10724: -111.7044,-6.3118005 - 10725: -107.52446,-3.3682923 - 10726: -105.45122,-4.237965 - 10727: -108.32701,-5.8100657 - 10728: -106.4544,-6.445596 - 10729: -105.28402,-5.509025 - 10730: -105.986244,-9.723595 - 10731: -103.67892,-10.927757 - 10732: -101.505356,-11.697083 - 10733: -98.83019,-12.8008995 - 10734: -96.68366,-17.992815 - 10735: -99.05787,-17.290388 - 10736: -97.98781,-20.066652 - 10737: -98.35564,-21.203917 - 10738: -100.596085,-19.564917 - 10739: -98.3222,-21.103569 - 10740: -98.38908,-23.712587 - 10741: -99.25851,-26.18781 - 10742: -97.72029,-28.1613 - 10743: -97.01806,-26.054014 - 10744: -99.22507,-30.636522 - 10745: -97.55309,-32.743805 - 10746: -98.422516,-35.386276 - 10747: -96.68366,-36.021805 - 10748: -96.21551,-38.062195 - 10749: -95.7808,-39.03221 - 10750: -98.03983,-41.14642 - 10751: -95.06372,-38.93879 - 10752: -94.662445,-44.591663 - 10753: -97.37104,-43.855785 - 10754: -104.52709,-38.804993 - 10755: -105.53028,-41.7485 - 10756: -102.4204,-45.0934 - 10757: -105.998436,-45.160294 - 10758: -107.73728,-41.414013 - 10759: -111.68314,-37.500484 - 10760: -112.418816,-38.002216 - 10761: -102.48728,-47.23413 - 10762: -99.385345,-49.937996 - 10763: -90.82484,-44.753407 - 10764: -86.34394,-45.58963 - 10765: -91.25955,-48.332443 - 10766: -88.851906,-49.770752 - 10767: -87.848724,-47.52967 - 10768: -83.86942,-48.83418 - 10769: -86.74522,-46.76034 - 10770: -87.44745,-43.95063 - 10771: -84.33758,-39.869858 - 10772: -81.42834,-40.605736 - 10773: -81.19427,-37.49498 - 10774: -83.735664,-36.692207 - 10775: -81.02707,-35.421146 - 10776: -78.752464,-53.649673 - 10777: -76.696045,-48.83298 - 10778: -74.137924,-48.180725 - 10779: -74.63951,-53.398766 - 10780: -68.06866,-52.89703 - 10781: -63.704796,-54.402233 - 10782: -67.06547,-56.760384 - 10783: -64.40703,-55.957607 - 10784: -58.438076,-60.322697 - 10785: -54.625977,-58.416107 - 10786: -60.7454,-62.98189 - 10787: -53.923744,-62.831367 - 10788: -51.26531,-60.423042 - 10789: -53.472313,-66.393684 - 10790: -53.020878,-68.95253 - 10791: -57.93648,-64.58744 - 10792: -54.92693,-61.67738 - 10793: -56.148598,-70.66164 - 10794: -56.039974,-73.52311 - 10795: -51.713028,-73.92453 - 10796: -49.55618,-75.931465 - 10797: -53.318123,-77.18581 - 10798: -47.24885,-80.24638 - 10799: -44.144184,-81.3502 - 10800: -51.313583,-84.15991 - 10801: -52.968838,-86.86928 - 10802: -49.156734,-88.42465 - 10803: -53.169476,-84.410774 - 10804: -55.075527,-91.23437 - 10805: -57.38285,-94.19979 - 10806: -49.50785,-97.063896 - 10807: -48.058346,-93.78201 - 10808: -49.5918,-99.52381 - 10809: -41.841545,-103.36319 - 10810: -35.895657,-97.39368 - 10811: -40.76068,-95.38674 - 10812: -33.387775,-86.35552 - 10813: -30.32806,-89.56662 - 10814: -27.609268,-102.4612 - 10815: -24.385788,-102.661896 - 10816: -21.426392,-96.340034 - 10817: -23.733719,-92.777725 - 10818: -19.620663,-81.43853 - 10819: -18.567318,-76.17031 - 10820: -22.881012,-79.43159 - 10821: -19.21939,-72.95921 - 10822: -23.884197,-72.75852 - 10823: -73.45678,-101.357506 - 10824: -83.23871,-97.594505 - 10825: -78.72438,-90.57022 - 10826: -77.219604,-96.942245 - 10827: -89.27867,-87.48584 - 10828: -81.267365,-79.376564 - 10829: -88.62087,-76.65869 - 10830: -79.71898,-73.63753 - 10831: -89.85114,-69.249115 - 10832: -92.15847,-63.089764 - 10833: -89.29939,-59.147324 - 10834: -81.97614,-61.983627 - 10835: -79.61866,-60.879814 - 10836: -103.692085,-53.903545 - 10837: -114.98897,-44.343636 - 10838: -123.345726,-39.730095 - 10839: -120.80433,-35.11414 - 10840: -124.638725,-30.854973 - 10841: -124.059105,-29.829205 - 10842: -129.52089,-32.21523 - 10843: -124.496155,-23.28819 - 10844: -132.89523,-17.196224 - 10845: -136.1723,-14.052023 - 10846: -137.68823,-12.669465 - 10847: -139.03134,-15.068424 - 10848: -137.51163,-1.0005937 + 10702: -114.34784,-20.851341 + 10703: -119.63775,-20.761751 + 10704: -116.996025,-19.591038 + 10705: -118.968956,-16.98202 + 10706: -121.91164,-16.61408 + 10707: -123.95144,-14.07196 + 10708: -122.179146,-10.559818 + 10709: -122.145706,-8.853922 + 10710: -127.02788,-8.419085 + 10711: -129.20143,-9.288757 + 10712: -130.40526,-6.7131877 + 10713: -129.70303,-4.8734946 + 10714: -129.5024,-10.927757 + 10715: -127.295395,-10.559818 + 10716: -125.389336,-8.452534 + 10717: -125.08839,-10.325676 + 10718: -119.6954,-8.954269 + 10719: -117.85727,-8.820473 + 10720: -111.7044,-6.3118005 + 10721: -107.52446,-3.3682923 + 10722: -105.45122,-4.237965 + 10723: -108.32701,-5.8100657 + 10724: -106.4544,-6.445596 + 10725: -105.28402,-5.509025 + 10726: -105.986244,-9.723595 + 10727: -103.67892,-10.927757 + 10728: -101.505356,-11.697083 + 10729: -98.83019,-12.8008995 + 10730: -96.68366,-17.992815 + 10731: -99.05787,-17.290388 + 10732: -97.98781,-20.066652 + 10733: -98.35564,-21.203917 + 10734: -100.596085,-19.564917 + 10735: -98.3222,-21.103569 + 10736: -98.38908,-23.712587 + 10737: -99.25851,-26.18781 + 10738: -97.72029,-28.1613 + 10739: -97.01806,-26.054014 + 10740: -99.22507,-30.636522 + 10741: -97.55309,-32.743805 + 10742: -98.422516,-35.386276 + 10743: -96.68366,-36.021805 + 10744: -96.21551,-38.062195 + 10745: -95.7808,-39.03221 + 10746: -98.03983,-41.14642 + 10747: -95.06372,-38.93879 + 10748: -94.662445,-44.591663 + 10749: -97.37104,-43.855785 + 10750: -104.52709,-38.804993 + 10751: -105.53028,-41.7485 + 10752: -102.4204,-45.0934 + 10753: -105.998436,-45.160294 + 10754: -107.73728,-41.414013 + 10755: -111.68314,-37.500484 + 10756: -112.418816,-38.002216 + 10757: -102.48728,-47.23413 + 10758: -99.385345,-49.937996 + 10759: -90.82484,-44.753407 + 10760: -86.34394,-45.58963 + 10761: -91.25955,-48.332443 + 10762: -88.851906,-49.770752 + 10763: -87.848724,-47.52967 + 10764: -83.86942,-48.83418 + 10765: -86.74522,-46.76034 + 10766: -87.44745,-43.95063 + 10767: -84.33758,-39.869858 + 10768: -81.42834,-40.605736 + 10769: -81.19427,-37.49498 + 10770: -83.735664,-36.692207 + 10771: -81.02707,-35.421146 + 10772: -78.752464,-53.649673 + 10773: -76.696045,-48.83298 + 10774: -74.137924,-48.180725 + 10775: -74.63951,-53.398766 + 10776: -68.06866,-52.89703 + 10777: -63.704796,-54.402233 + 10778: -67.06547,-56.760384 + 10779: -64.40703,-55.957607 + 10780: -58.438076,-60.322697 + 10781: -54.625977,-58.416107 + 10782: -60.7454,-62.98189 + 10783: -53.923744,-62.831367 + 10784: -51.26531,-60.423042 + 10785: -53.472313,-66.393684 + 10786: -53.020878,-68.95253 + 10787: -57.93648,-64.58744 + 10788: -54.92693,-61.67738 + 10789: -56.148598,-70.66164 + 10790: -56.039974,-73.52311 + 10791: -51.713028,-73.92453 + 10792: -49.55618,-75.931465 + 10793: -53.318123,-77.18581 + 10794: -47.24885,-80.24638 + 10795: -44.144184,-81.3502 + 10796: -51.313583,-84.15991 + 10797: -52.968838,-86.86928 + 10798: -49.156734,-88.42465 + 10799: -53.169476,-84.410774 + 10800: -55.075527,-91.23437 + 10801: -57.38285,-94.19979 + 10802: -49.50785,-97.063896 + 10803: -48.058346,-93.78201 + 10804: -49.5918,-99.52381 + 10805: -41.841545,-103.36319 + 10806: -35.895657,-97.39368 + 10807: -40.76068,-95.38674 + 10808: -33.387775,-86.35552 + 10809: -30.32806,-89.56662 + 10810: -27.609268,-102.4612 + 10811: -24.385788,-102.661896 + 10812: -21.426392,-96.340034 + 10813: -23.733719,-92.777725 + 10814: -19.620663,-81.43853 + 10815: -18.567318,-76.17031 + 10816: -22.881012,-79.43159 + 10817: -19.21939,-72.95921 + 10818: -23.884197,-72.75852 + 10819: -73.45678,-101.357506 + 10820: -83.23871,-97.594505 + 10821: -78.72438,-90.57022 + 10822: -77.219604,-96.942245 + 10823: -89.27867,-87.48584 + 10824: -81.267365,-79.376564 + 10825: -88.62087,-76.65869 + 10826: -79.71898,-73.63753 + 10827: -89.85114,-69.249115 + 10828: -92.15847,-63.089764 + 10829: -89.29939,-59.147324 + 10830: -81.97614,-61.983627 + 10831: -79.61866,-60.879814 + 10832: -103.692085,-53.903545 + 10833: -114.98897,-44.343636 + 10834: -123.345726,-39.730095 + 10835: -120.80433,-35.11414 + 10836: -124.638725,-30.854973 + 10837: -124.059105,-29.829205 + 10838: -129.52089,-32.21523 + 10839: -124.496155,-23.28819 + 10840: -132.89523,-17.196224 + 10841: -136.1723,-14.052023 + 10842: -137.68823,-12.669465 + 10843: -139.03134,-15.068424 + 10844: -137.51163,-1.0005937 - node: cleanable: True color: '#FFFFFFBF' id: Bushi1 decals: - 12475: 52.103107,-10.586176 - 12476: 51.173763,-41.16989 - 12477: 40.865715,-45.85613 - 12478: 23.344963,-59.150272 + 12471: 52.103107,-10.586176 + 12472: 51.173763,-41.16989 + 12473: 40.865715,-45.85613 + 12474: 23.344963,-59.150272 - node: color: '#FFFFFFFF' id: Bushi1 @@ -3756,16 +3769,16 @@ entities: color: '#FFFFFFBF' id: Bushi2 decals: - 12474: 53.346603,-14.664597 - 12479: 16.967606,-62.807358 + 12470: 53.346603,-14.664597 + 12475: 16.967606,-62.807358 - node: color: '#FFFFFFFF' id: Bushi2 decals: 2053: 6.3725348,-24.418913 - 6207: -76.318504,-76.81531 - 6208: -76.06579,-77.335625 - 6209: -58.743015,-76.69486 + 6203: -76.318504,-76.81531 + 6204: -76.06579,-77.335625 + 6205: -58.743015,-76.69486 - node: cleanable: True color: '#FFFFFFFF' @@ -3778,15 +3791,15 @@ entities: color: '#FFFFFFBF' id: Bushi3 decals: - 12480: 15.089963,-61.454536 - 12481: -10.657937,-66.69162 + 12476: 15.089963,-61.454536 + 12477: -10.657937,-66.69162 - node: color: '#FFFFFFFF' id: Bushi3 decals: 2050: -1.673686,-22.720617 - 6205: -74.413506,-77.57199 - 6210: -57.834087,-86.002174 + 6201: -74.413506,-77.57199 + 6206: -57.834087,-86.002174 - node: cleanable: True color: '#FFFFFFFF' @@ -3800,11 +3813,11 @@ entities: decals: 2051: -1.0641953,-27.01695 2052: 7.398263,-27.674612 - 6206: -74.00716,-76.71125 - 6211: -57.96788,-85.46211 - 6212: -70.99095,-90.245865 - 6213: -71.0254,-89.75501 - 6214: -71.12946,-89.978004 + 6202: -74.00716,-76.71125 + 6207: -57.96788,-85.46211 + 6208: -70.99095,-90.245865 + 6209: -71.0254,-89.75501 + 6210: -71.12946,-89.978004 - node: cleanable: True color: '#FFFFFFFF' @@ -3859,8 +3872,8 @@ entities: color: '#52B4E996' id: CheckerNESW decals: - 17641: -48,9 - 17642: -45,7 + 17573: -48,9 + 17574: -45,7 - node: color: '#52FFFF3F' id: CheckerNESW @@ -3919,9 +3932,9 @@ entities: color: '#D381C966' id: CheckerNESW decals: - 12095: 99,2 - 12096: 100,2 - 12097: 101,2 + 12091: 99,2 + 12092: 100,2 + 12093: 101,2 - node: color: '#D381C996' id: CheckerNESW @@ -3951,16 +3964,16 @@ entities: color: '#DE3A3A66' id: CheckerNESW decals: - 17542: 125,10 - 17543: 126,10 - 17544: 126,9 - 17545: 125,9 + 17506: 125,10 + 17507: 126,10 + 17508: 126,9 + 17509: 125,9 - node: color: '#DE3A3A72' id: CheckerNESW decals: - 12620: 94,20 - 12621: 95,20 + 12616: 94,20 + 12617: 95,20 - node: color: '#DE3A3A96' id: CheckerNESW @@ -3969,10 +3982,10 @@ entities: 632: -45,0 633: -45,-1 634: -46,-1 - 11295: 44,-52 - 11296: 44,-51 - 11297: 45,-51 - 11298: 45,-52 + 11291: 44,-52 + 11292: 44,-51 + 11293: 45,-51 + 11294: 45,-52 - node: color: '#EFB34196' id: CheckerNESW @@ -3980,7 +3993,7 @@ entities: 1349: -36,-21 1350: -36,-19 1351: -35,-20 - 5544: -36,-20 + 5540: -36,-20 - node: color: '#334E6DC8' id: CheckerNWSE @@ -3992,573 +4005,573 @@ entities: color: '#DE3A3A96' id: CheckerNWSE decals: - 17623: -48,7 - 17624: -45,9 + 17555: -48,7 + 17556: -45,9 - node: color: '#FFFFFFFF' id: ConcreteTrimBox decals: - 6746: -112,-18 + 6742: -112,-18 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimBox decals: - 6362: -104,-33 + 6358: -104,-33 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 11986: 142,21 - 12055: 127,16 - 12114: 102,8 - 12159: 104,20 - 12638: 113,29 - 12639: 122,29 - 12815: -90,-50 - 12854: 122,12 - 12894: 110,12 - 12895: 116,12 - 12914: 115,-2 - 12915: 117,-3 - 12917: 118,-5 + 11982: 142,21 + 12051: 127,16 + 12110: 102,8 + 12155: 104,20 + 12634: 113,29 + 12635: 122,29 + 12811: -90,-50 + 12850: 122,12 + 12890: 110,12 + 12891: 116,12 + 12910: 115,-2 + 12911: 117,-3 + 12913: 118,-5 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 6334: -106,-35 + 6330: -106,-35 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 11987: 129,21 - 12056: 124,16 - 12115: 100,8 - 12119: 98,7 - 12160: 98,20 - 12636: 106,29 - 12637: 115,29 - 12816: -92,-50 - 12855: 118,12 - 12896: 106,12 - 12897: 112,12 - 12947: 110,-5 - 12948: 111,-3 - 12949: 113,-2 + 11983: 129,21 + 12052: 124,16 + 12111: 100,8 + 12115: 98,7 + 12156: 98,20 + 12632: 106,29 + 12633: 115,29 + 12812: -92,-50 + 12851: 118,12 + 12892: 106,12 + 12893: 112,12 + 12943: 110,-5 + 12944: 111,-3 + 12945: 113,-2 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 6333: -102,-35 + 6329: -102,-35 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 11988: 142,8 - 12057: 127,13 - 12117: 102,5 - 12176: 104,10 - 12640: 113,22 - 12641: 122,22 - 12823: -90,-53 - 12857: 122,8 - 12898: 110,8 - 12899: 116,8 - 12902: 118,-7 + 11984: 142,8 + 12053: 127,13 + 12113: 102,5 + 12172: 104,10 + 12636: 113,22 + 12637: 122,22 + 12819: -90,-53 + 12853: 122,8 + 12894: 110,8 + 12895: 116,8 + 12898: 118,-7 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 6332: -106,-31 + 6328: -106,-31 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 11989: 129,8 - 12058: 124,13 - 12116: 98,5 - 12177: 98,10 - 12642: 106,22 - 12643: 115,22 - 12824: -92,-53 - 12856: 118,8 - 12900: 106,8 - 12901: 112,8 - 12903: 110,-7 + 11985: 129,8 + 12054: 124,13 + 12112: 98,5 + 12173: 98,10 + 12638: 106,22 + 12639: 115,22 + 12820: -92,-53 + 12852: 118,8 + 12896: 106,8 + 12897: 112,8 + 12899: 110,-7 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 6331: -102,-31 + 6327: -102,-31 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimEndE decals: - 6359: -103,-33 + 6355: -103,-33 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimEndN decals: - 6358: -104,-32 + 6354: -104,-32 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimEndS decals: - 6360: -104,-34 + 6356: -104,-34 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimEndW decals: - 6361: -105,-33 + 6357: -105,-33 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 12181: 100,13 - 12714: 108,24 - 12715: 117,24 - 12833: -92,-53 - 12919: 115,-3 - 12920: 117,-5 + 12177: 100,13 + 12710: 108,24 + 12711: 117,24 + 12829: -92,-53 + 12915: 115,-3 + 12916: 117,-5 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 6352: -107,-35 - 6353: -106,-36 - 6354: -105,-34 + 6348: -107,-35 + 6349: -106,-36 + 6350: -105,-34 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 12126: 100,7 - 12180: 102,13 - 12712: 111,24 - 12713: 120,24 - 12830: -90,-53 - 12952: 111,-5 - 12953: 113,-3 + 12122: 100,7 + 12176: 102,13 + 12708: 111,24 + 12709: 120,24 + 12826: -90,-53 + 12948: 111,-5 + 12949: 113,-3 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 6350: -102,-36 - 6351: -101,-35 - 6355: -103,-34 + 6346: -102,-36 + 6347: -101,-35 + 6351: -103,-34 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 12178: 100,17 - 12710: 108,27 - 12711: 117,27 - 12831: -92,-50 + 12174: 100,17 + 12706: 108,27 + 12707: 117,27 + 12827: -92,-50 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 6346: -107,-31 - 6347: -106,-30 - 6357: -105,-32 + 6342: -107,-31 + 6343: -106,-30 + 6353: -105,-32 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 12179: 102,17 - 12708: 111,27 - 12709: 120,27 - 12832: -90,-50 + 12175: 102,17 + 12704: 111,27 + 12705: 120,27 + 12828: -90,-50 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 6348: -102,-30 - 6349: -101,-31 - 6356: -103,-32 + 6344: -102,-30 + 6345: -101,-31 + 6352: -103,-32 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 11974: 142,20 - 11975: 142,19 - 11976: 142,18 - 11977: 142,17 - 11978: 142,16 - 11979: 142,15 - 11980: 142,13 - 11981: 142,14 - 11982: 142,12 - 11983: 142,11 - 11984: 142,10 - 11985: 142,9 - 12049: 127,14 - 12050: 127,15 - 12124: 102,6 - 12125: 102,7 - 12138: 100,14 - 12139: 100,15 - 12140: 100,16 - 12141: 104,11 - 12142: 104,12 - 12143: 104,13 - 12144: 104,14 - 12145: 104,15 - 12146: 104,16 - 12147: 104,17 - 12148: 104,18 - 12149: 104,19 - 12656: 113,28 - 12657: 113,27 - 12658: 113,26 - 12659: 113,25 - 12660: 113,24 - 12661: 113,23 - 12662: 122,28 - 12663: 122,27 - 12664: 122,26 - 12665: 122,25 - 12666: 122,24 - 12667: 122,23 - 12700: 108,26 - 12701: 108,25 - 12702: 117,26 - 12703: 117,25 - 12818: -90,-52 - 12819: -90,-51 - 12828: -92,-52 - 12829: -92,-51 - 12867: 122,11 - 12868: 122,10 - 12869: 122,9 - 12870: 110,11 - 12871: 110,10 - 12872: 110,9 - 12873: 116,11 - 12874: 116,10 - 12875: 116,9 - 12912: 118,-6 - 12916: 117,-4 + 11970: 142,20 + 11971: 142,19 + 11972: 142,18 + 11973: 142,17 + 11974: 142,16 + 11975: 142,15 + 11976: 142,13 + 11977: 142,14 + 11978: 142,12 + 11979: 142,11 + 11980: 142,10 + 11981: 142,9 + 12045: 127,14 + 12046: 127,15 + 12120: 102,6 + 12121: 102,7 + 12134: 100,14 + 12135: 100,15 + 12136: 100,16 + 12137: 104,11 + 12138: 104,12 + 12139: 104,13 + 12140: 104,14 + 12141: 104,15 + 12142: 104,16 + 12143: 104,17 + 12144: 104,18 + 12145: 104,19 + 12652: 113,28 + 12653: 113,27 + 12654: 113,26 + 12655: 113,25 + 12656: 113,24 + 12657: 113,23 + 12658: 122,28 + 12659: 122,27 + 12660: 122,26 + 12661: 122,25 + 12662: 122,24 + 12663: 122,23 + 12696: 108,26 + 12697: 108,25 + 12698: 117,26 + 12699: 117,25 + 12814: -90,-52 + 12815: -90,-51 + 12824: -92,-52 + 12825: -92,-51 + 12863: 122,11 + 12864: 122,10 + 12865: 122,9 + 12866: 110,11 + 12867: 110,10 + 12868: 110,9 + 12869: 116,11 + 12870: 116,10 + 12871: 116,9 + 12908: 118,-6 + 12912: 117,-4 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 6335: -107,-34 - 6336: -107,-33 - 6337: -107,-32 + 6331: -107,-34 + 6332: -107,-33 + 6333: -107,-32 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 6779: -105,-36 - 11962: 130,21 - 11963: 132,21 - 11964: 133,21 - 11965: 134,21 - 11966: 135,21 - 11967: 136,21 - 11968: 137,21 - 11969: 138,21 - 11970: 139,21 - 11971: 140,21 - 11972: 141,21 - 11973: 131,21 - 12051: 125,16 - 12052: 126,16 - 12120: 99,7 - 12127: 101,8 - 12161: 99,20 - 12162: 100,20 - 12163: 101,20 - 12164: 102,20 - 12165: 103,20 - 12166: 101,13 - 12680: 107,29 - 12681: 108,29 - 12682: 110,29 - 12683: 109,29 - 12684: 111,29 - 12685: 112,29 - 12686: 116,29 - 12687: 117,29 - 12688: 118,29 - 12689: 119,29 - 12690: 120,29 - 12691: 121,29 - 12692: 109,24 - 12693: 110,24 - 12694: 118,24 - 12695: 119,24 - 12733: 106,16 - 12734: 107,16 - 12735: 108,16 - 12736: 109,16 - 12737: 111,16 - 12738: 110,16 - 12739: 112,16 - 12740: 113,16 - 12741: 114,16 - 12742: 115,16 - 12743: 116,16 - 12744: 117,16 - 12745: 118,16 - 12746: 119,16 - 12747: 120,16 - 12748: 121,16 - 12749: 122,16 - 12822: -91,-50 - 12825: -91,-53 - 12864: 119,12 - 12865: 120,12 - 12866: 121,12 - 12888: 107,12 - 12889: 108,12 - 12890: 109,12 - 12891: 113,12 - 12892: 114,12 - 12893: 115,12 - 12913: 114,-2 - 12918: 116,-3 - 12950: 112,-3 + 6775: -105,-36 + 11958: 130,21 + 11959: 132,21 + 11960: 133,21 + 11961: 134,21 + 11962: 135,21 + 11963: 136,21 + 11964: 137,21 + 11965: 138,21 + 11966: 139,21 + 11967: 140,21 + 11968: 141,21 + 11969: 131,21 + 12047: 125,16 + 12048: 126,16 + 12116: 99,7 + 12123: 101,8 + 12157: 99,20 + 12158: 100,20 + 12159: 101,20 + 12160: 102,20 + 12161: 103,20 + 12162: 101,13 + 12676: 107,29 + 12677: 108,29 + 12678: 110,29 + 12679: 109,29 + 12680: 111,29 + 12681: 112,29 + 12682: 116,29 + 12683: 117,29 + 12684: 118,29 + 12685: 119,29 + 12686: 120,29 + 12687: 121,29 + 12688: 109,24 + 12689: 110,24 + 12690: 118,24 + 12691: 119,24 + 12729: 106,16 + 12730: 107,16 + 12731: 108,16 + 12732: 109,16 + 12733: 111,16 + 12734: 110,16 + 12735: 112,16 + 12736: 113,16 + 12737: 114,16 + 12738: 115,16 + 12739: 116,16 + 12740: 117,16 + 12741: 118,16 + 12742: 119,16 + 12743: 120,16 + 12744: 121,16 + 12745: 122,16 + 12818: -91,-50 + 12821: -91,-53 + 12860: 119,12 + 12861: 120,12 + 12862: 121,12 + 12884: 107,12 + 12885: 108,12 + 12886: 109,12 + 12887: 113,12 + 12888: 114,12 + 12889: 115,12 + 12909: 114,-2 + 12914: 116,-3 + 12946: 112,-3 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 6338: -104,-36 - 6339: -103,-36 + 6334: -104,-36 + 6335: -103,-36 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 11938: 130,8 - 11939: 131,8 - 11940: 132,8 - 11941: 133,8 - 11942: 134,8 - 11943: 135,8 - 11944: 136,8 - 11945: 137,8 - 11946: 138,8 - 11947: 139,8 - 11948: 140,8 - 11949: 141,8 - 12047: 126,13 - 12048: 125,13 - 12121: 99,5 - 12122: 100,5 - 12123: 101,5 - 12170: 101,17 - 12171: 99,10 - 12172: 100,10 - 12173: 101,10 - 12174: 102,10 - 12175: 103,10 - 12668: 107,22 - 12669: 108,22 - 12670: 109,22 - 12671: 110,22 - 12672: 111,22 - 12673: 112,22 - 12674: 116,22 - 12675: 117,22 - 12676: 118,22 - 12677: 119,22 - 12678: 120,22 - 12679: 121,22 - 12704: 109,27 - 12705: 110,27 - 12706: 118,27 - 12707: 119,27 - 12716: 106,14 - 12717: 107,14 - 12718: 108,14 - 12719: 109,14 - 12720: 110,14 - 12721: 111,14 - 12722: 112,14 - 12723: 113,14 - 12724: 115,14 - 12725: 114,14 - 12726: 116,14 - 12727: 117,14 - 12728: 118,14 - 12729: 119,14 - 12730: 120,14 - 12731: 121,14 - 12732: 122,14 - 12817: -91,-53 - 12834: -91,-50 - 12861: 119,8 - 12862: 120,8 - 12863: 121,8 - 12876: 107,8 - 12877: 108,8 - 12878: 109,8 - 12879: 113,8 - 12880: 114,8 - 12881: 115,8 - 12904: 111,-7 - 12905: 112,-7 - 12906: 113,-7 - 12907: 114,-7 - 12908: 116,-7 - 12909: 115,-7 - 12910: 117,-7 + 11934: 130,8 + 11935: 131,8 + 11936: 132,8 + 11937: 133,8 + 11938: 134,8 + 11939: 135,8 + 11940: 136,8 + 11941: 137,8 + 11942: 138,8 + 11943: 139,8 + 11944: 140,8 + 11945: 141,8 + 12043: 126,13 + 12044: 125,13 + 12117: 99,5 + 12118: 100,5 + 12119: 101,5 + 12166: 101,17 + 12167: 99,10 + 12168: 100,10 + 12169: 101,10 + 12170: 102,10 + 12171: 103,10 + 12664: 107,22 + 12665: 108,22 + 12666: 109,22 + 12667: 110,22 + 12668: 111,22 + 12669: 112,22 + 12670: 116,22 + 12671: 117,22 + 12672: 118,22 + 12673: 119,22 + 12674: 120,22 + 12675: 121,22 + 12700: 109,27 + 12701: 110,27 + 12702: 118,27 + 12703: 119,27 + 12712: 106,14 + 12713: 107,14 + 12714: 108,14 + 12715: 109,14 + 12716: 110,14 + 12717: 111,14 + 12718: 112,14 + 12719: 113,14 + 12720: 115,14 + 12721: 114,14 + 12722: 116,14 + 12723: 117,14 + 12724: 118,14 + 12725: 119,14 + 12726: 120,14 + 12727: 121,14 + 12728: 122,14 + 12813: -91,-53 + 12830: -91,-50 + 12857: 119,8 + 12858: 120,8 + 12859: 121,8 + 12872: 107,8 + 12873: 108,8 + 12874: 109,8 + 12875: 113,8 + 12876: 114,8 + 12877: 115,8 + 12900: 111,-7 + 12901: 112,-7 + 12902: 113,-7 + 12903: 114,-7 + 12904: 116,-7 + 12905: 115,-7 + 12906: 117,-7 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 6340: -105,-30 - 6341: -104,-30 - 6342: -103,-30 + 6336: -105,-30 + 6337: -104,-30 + 6338: -103,-30 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 11950: 129,9 - 11951: 129,10 - 11952: 129,11 - 11953: 129,12 - 11954: 129,13 - 11955: 129,14 - 11956: 129,15 - 11957: 129,16 - 11958: 129,17 - 11959: 129,18 - 11960: 129,19 - 11961: 129,20 - 12053: 124,15 - 12054: 124,14 - 12118: 98,6 - 12150: 98,11 - 12151: 98,12 - 12152: 98,13 - 12153: 98,14 - 12154: 98,15 - 12155: 98,16 - 12156: 98,17 - 12157: 98,18 - 12158: 98,19 - 12167: 102,14 - 12168: 102,15 - 12169: 102,16 - 12644: 106,23 - 12645: 106,24 - 12646: 106,25 - 12647: 106,26 - 12648: 106,27 - 12649: 106,28 - 12650: 115,28 - 12651: 115,27 - 12652: 115,26 - 12653: 115,25 - 12654: 115,24 - 12655: 115,23 - 12696: 111,25 - 12697: 111,26 - 12698: 120,26 - 12699: 120,25 - 12820: -92,-52 - 12821: -92,-51 - 12826: -90,-52 - 12827: -90,-51 - 12858: 118,9 - 12859: 118,10 - 12860: 118,11 - 12882: 106,9 - 12883: 106,10 - 12884: 106,11 - 12885: 112,9 - 12886: 112,10 - 12887: 112,11 - 12911: 110,-6 - 12951: 111,-4 + 11946: 129,9 + 11947: 129,10 + 11948: 129,11 + 11949: 129,12 + 11950: 129,13 + 11951: 129,14 + 11952: 129,15 + 11953: 129,16 + 11954: 129,17 + 11955: 129,18 + 11956: 129,19 + 11957: 129,20 + 12049: 124,15 + 12050: 124,14 + 12114: 98,6 + 12146: 98,11 + 12147: 98,12 + 12148: 98,13 + 12149: 98,14 + 12150: 98,15 + 12151: 98,16 + 12152: 98,17 + 12153: 98,18 + 12154: 98,19 + 12163: 102,14 + 12164: 102,15 + 12165: 102,16 + 12640: 106,23 + 12641: 106,24 + 12642: 106,25 + 12643: 106,26 + 12644: 106,27 + 12645: 106,28 + 12646: 115,28 + 12647: 115,27 + 12648: 115,26 + 12649: 115,25 + 12650: 115,24 + 12651: 115,23 + 12692: 111,25 + 12693: 111,26 + 12694: 120,26 + 12695: 120,25 + 12816: -92,-52 + 12817: -92,-51 + 12822: -90,-52 + 12823: -90,-51 + 12854: 118,9 + 12855: 118,10 + 12856: 118,11 + 12878: 106,9 + 12879: 106,10 + 12880: 106,11 + 12881: 112,9 + 12882: 112,10 + 12883: 112,11 + 12907: 110,-6 + 12947: 111,-4 - node: zIndex: 1 color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 6343: -101,-32 - 6344: -101,-33 - 6345: -101,-34 + 6339: -101,-32 + 6340: -101,-33 + 6341: -101,-34 - node: color: '#FFFFFF7F' id: Delivery decals: - 5545: -4,29 - 5546: -3,29 - 5547: -2,29 - 5548: -28,11 - 5549: -29,12 - 5550: -30,13 - 5551: -31,-6 - 5552: -31,-5 - 5553: -31,-4 - 5554: -70,-7 - 5555: -70,-6 - 5556: -70,-5 - 5557: -73,-11 - 5558: -74,-11 - 5559: -75,-11 - 5560: -89,-11 - 5561: -90,-11 - 5562: -91,-11 - 5563: -30,-23 - 5564: -29,-22 - 5565: -28,-21 - 5566: -34,-33 - 5567: -33,-32 - 5568: -35,-37 - 5569: -35,-38 - 5570: -35,-39 - 5571: 1,-20 - 5572: 2,-20 - 5573: 3,-20 - 5574: 1,-37 - 5575: 2,-37 - 5576: 3,-37 - 5577: 19,-12 - 5578: 20,-11 - 5579: 21,-4 - 5580: 21,-5 - 5581: 21,-6 - 5582: 20,1 - 5583: 19,2 - 5616: 22,20 - 5617: 22,21 - 5618: 22,22 - 5619: 30,23 - 5620: 31,23 - 5621: 32,23 - 5622: 31,17 - 5623: 32,17 - 5624: 33,17 - 5625: -56,9 - 5626: -57,9 - 5627: -58,9 - 5628: -60,18 - 5629: -61,18 - 5630: -62,18 - 5631: -47,-20 - 5632: -46,-20 - 5633: -45,-20 - 5644: -10,3 - 5645: -9,3 - 5646: -8,3 + 5541: -4,29 + 5542: -3,29 + 5543: -2,29 + 5544: -28,11 + 5545: -29,12 + 5546: -30,13 + 5547: -31,-6 + 5548: -31,-5 + 5549: -31,-4 + 5550: -70,-7 + 5551: -70,-6 + 5552: -70,-5 + 5553: -73,-11 + 5554: -74,-11 + 5555: -75,-11 + 5556: -89,-11 + 5557: -90,-11 + 5558: -91,-11 + 5559: -30,-23 + 5560: -29,-22 + 5561: -28,-21 + 5562: -34,-33 + 5563: -33,-32 + 5564: -35,-37 + 5565: -35,-38 + 5566: -35,-39 + 5567: 1,-20 + 5568: 2,-20 + 5569: 3,-20 + 5570: 1,-37 + 5571: 2,-37 + 5572: 3,-37 + 5573: 19,-12 + 5574: 20,-11 + 5575: 21,-4 + 5576: 21,-5 + 5577: 21,-6 + 5578: 20,1 + 5579: 19,2 + 5612: 22,20 + 5613: 22,21 + 5614: 22,22 + 5615: 30,23 + 5616: 31,23 + 5617: 32,23 + 5618: 31,17 + 5619: 32,17 + 5620: 33,17 + 5621: -56,9 + 5622: -57,9 + 5623: -58,9 + 5624: -60,18 + 5625: -61,18 + 5626: -62,18 + 5627: -47,-20 + 5628: -46,-20 + 5629: -45,-20 + 5640: -10,3 + 5641: -9,3 + 5642: -8,3 - node: color: '#FFFFFFFF' id: Delivery @@ -4585,7 +4598,7 @@ entities: 5382: 26,-10 5383: 26,-9 5384: 26,-8 - 5736: 21,-2 + 5732: 21,-2 - node: color: '#FFFFFFFF' id: DeliveryGreyscale @@ -4611,20 +4624,20 @@ entities: color: '#000000E5' id: DiagonalCheckerAOverlay decals: - 5944: 1,11 - 5945: 1,7 - 5946: 3,7 - 5947: 3,11 - 5948: 4,11 - 5949: 4,10 - 5950: 4,9 - 5951: 4,8 - 5952: 4,7 - 5953: 0,7 - 5954: 0,8 - 5955: 0,9 - 5956: 0,10 - 5957: 0,11 + 5940: 1,11 + 5941: 1,7 + 5942: 3,7 + 5943: 3,11 + 5944: 4,11 + 5945: 4,10 + 5946: 4,9 + 5947: 4,8 + 5948: 4,7 + 5949: 0,7 + 5950: 0,8 + 5951: 0,9 + 5952: 0,10 + 5953: 0,11 - node: color: '#52B4E996' id: DiagonalCheckerAOverlay @@ -4729,337 +4742,337 @@ entities: color: '#CD42257F' id: Dirt decals: - 17016: 35,25 - 17017: 35,28 - 17018: 36,29 - 17019: 35,26 - 17020: 37,25 - 17021: 39,26 - 17022: 36,28 - 17023: 37,29 - 17024: 39,29 - 17025: 37,27 - 17026: 36,26 - 17027: 38,26 - 17028: 38,25 - 17029: 36,26 - 17030: 36,25 - 17031: 38,24 + 16986: 35,25 + 16987: 35,28 + 16988: 36,29 + 16989: 35,26 + 16990: 37,25 + 16991: 39,26 + 16992: 36,28 + 16993: 37,29 + 16994: 39,29 + 16995: 37,27 + 16996: 36,26 + 16997: 38,26 + 16998: 38,25 + 16999: 36,26 + 17000: 36,25 + 17001: 38,24 + 17002: 39,24 + 17003: 40,26 + 17004: 40,26 + 17005: 39,24 + 17006: 38,24 + 17007: 35,25 + 17008: 34,27 + 17009: 35,30 + 17010: 34,29 + 17011: 35,27 + 17012: 36,28 + 17013: 37,29 + 17014: 38,27 + 17015: 35,26 + 17016: 35,26 + 17017: 38,25 + 17018: 38,26 + 17019: 37,28 + 17020: 37,28 + 17021: 37,26 + 17022: 38,28 + 17023: 39,29 + 17024: 39,28 + 17025: 37,25 + 17026: 36,25 + 17027: 35,27 + 17028: 34,26 + 17029: 34,25 + 17030: 35,24 + 17031: 37,24 17032: 39,24 - 17033: 40,26 - 17034: 40,26 - 17035: 39,24 - 17036: 38,24 - 17037: 35,25 - 17038: 34,27 - 17039: 35,30 - 17040: 34,29 - 17041: 35,27 - 17042: 36,28 - 17043: 37,29 - 17044: 38,27 - 17045: 35,26 - 17046: 35,26 - 17047: 38,25 - 17048: 38,26 - 17049: 37,28 - 17050: 37,28 - 17051: 37,26 - 17052: 38,28 - 17053: 39,29 - 17054: 39,28 - 17055: 37,25 - 17056: 36,25 - 17057: 35,27 - 17058: 34,26 - 17059: 34,25 - 17060: 35,24 - 17061: 37,24 - 17062: 39,24 - 17063: 36,25 - 17064: 36,26 - 17065: 34,28 - 17066: 34,30 - 17067: 36,30 - 17068: 35,27 - 17069: 38,29 - 17070: 39,30 - 17071: 39,29 - 17072: 37,29 - 17073: 37,28 - 17074: 37,30 - 17075: 38,30 - 17076: 39,28 - 17077: 37,27 - 17078: 39,27 - 17079: 39,28 - 17080: 38,27 - 17081: 40,27 - 17082: 39,26 - 17083: 39,25 - 17121: 34,26 - 17122: 34,26 - 17123: 35,25 - 17124: 34,25 - 17125: 35,24 - 17126: 34,27 - 17127: 36,27 - 17128: 36,27 - 17129: 37,30 - 17130: 11,31 - 17131: 12,29 - 17132: 12,31 - 17133: 12,33 - 17134: 12,36 - 17135: 13,36 - 17136: 13,34 - 17137: 12,33 - 17138: 14,33 - 17139: 13,35 - 17140: 12,36 - 17141: 11,37 - 17142: 11,35 - 17143: 12,35 - 17144: 14,37 - 17145: 14,36 - 17146: 14,35 - 17147: 12,34 - 17148: 11,33 - 17149: 12,31 - 17150: 12,30 - 17151: 12,29 - 17152: 13,32 - 17153: 13,33 - 17154: 14,35 - 17155: 12,34 - 17156: 14,34 - 17157: 14,34 - 17158: 14,33 - 17159: 12,33 - 17160: 12,31 - 17161: 12,30 - 17162: 8,33 - 17163: 7,33 - 17164: 8,31 - 17165: 9,31 - 17166: 8,30 - 17167: 8,29 - 17168: 8,29 - 17169: 9,29 - 17170: 8,31 - 17171: 7,32 - 17172: 8,32 - 17173: 7,30 - 17174: 8,30 - 17175: 8,32 - 17176: 9,33 - 17177: 9,32 - 17178: 9,30 - 17179: 9,29 - 17180: 13,30 - 17181: 12,32 - 17182: 12,34 - 17183: 12,31 - 17184: 11,30 - 17185: 11,29 - 17186: 13,31 - 17187: 12,30 - 17188: 13,29 - 17189: 11,30 - 17190: 12,33 - 17191: 12,34 - 17192: 13,35 - 17193: 13,33 - 17194: 13,33 - 17195: 14,34 - 17196: 13,35 - 17197: 13,34 - 17198: 12,35 - 17199: 12,36 - 17200: 13,37 - 17201: 12,35 - 17202: 11,32 - 17203: 11,31 - 17204: 11,32 - 17205: 11,34 - 17206: 12,32 - 17207: 13,31 - 17208: 13,30 - 17209: 11,29 - 17210: 11,29 - 17211: 11,30 - 17212: 12,29 - 17213: 7,30 - 17214: 8,32 - 17215: 8,33 - 17216: 7,32 - 17217: 7,33 - 17218: 8,33 - 17219: 9,33 - 17220: 9,31 - 17221: 9,29 - 17222: 7,30 - 17223: 7,30 - 17224: 7,31 - 17225: 7,32 - 17226: 7,31 - 17227: 8,30 - 17228: 7,29 - 17229: 7,29 - 17230: 8,30 - 17231: 9,30 - 17232: 9,31 + 17033: 36,25 + 17034: 36,26 + 17035: 34,28 + 17036: 34,30 + 17037: 36,30 + 17038: 35,27 + 17039: 38,29 + 17040: 39,30 + 17041: 39,29 + 17042: 37,29 + 17043: 37,28 + 17044: 37,30 + 17045: 38,30 + 17046: 39,28 + 17047: 37,27 + 17048: 39,27 + 17049: 39,28 + 17050: 38,27 + 17051: 40,27 + 17052: 39,26 + 17053: 39,25 + 17091: 34,26 + 17092: 34,26 + 17093: 35,25 + 17094: 34,25 + 17095: 35,24 + 17096: 34,27 + 17097: 36,27 + 17098: 36,27 + 17099: 37,30 + 17100: 11,31 + 17101: 12,29 + 17102: 12,31 + 17103: 12,33 + 17104: 12,36 + 17105: 13,36 + 17106: 13,34 + 17107: 12,33 + 17108: 14,33 + 17109: 13,35 + 17110: 12,36 + 17111: 11,37 + 17112: 11,35 + 17113: 12,35 + 17114: 14,37 + 17115: 14,36 + 17116: 14,35 + 17117: 12,34 + 17118: 11,33 + 17119: 12,31 + 17120: 12,30 + 17121: 12,29 + 17122: 13,32 + 17123: 13,33 + 17124: 14,35 + 17125: 12,34 + 17126: 14,34 + 17127: 14,34 + 17128: 14,33 + 17129: 12,33 + 17130: 12,31 + 17131: 12,30 + 17132: 8,33 + 17133: 7,33 + 17134: 8,31 + 17135: 9,31 + 17136: 8,30 + 17137: 8,29 + 17138: 8,29 + 17139: 9,29 + 17140: 8,31 + 17141: 7,32 + 17142: 8,32 + 17143: 7,30 + 17144: 8,30 + 17145: 8,32 + 17146: 9,33 + 17147: 9,32 + 17148: 9,30 + 17149: 9,29 + 17150: 13,30 + 17151: 12,32 + 17152: 12,34 + 17153: 12,31 + 17154: 11,30 + 17155: 11,29 + 17156: 13,31 + 17157: 12,30 + 17158: 13,29 + 17159: 11,30 + 17160: 12,33 + 17161: 12,34 + 17162: 13,35 + 17163: 13,33 + 17164: 13,33 + 17165: 14,34 + 17166: 13,35 + 17167: 13,34 + 17168: 12,35 + 17169: 12,36 + 17170: 13,37 + 17171: 12,35 + 17172: 11,32 + 17173: 11,31 + 17174: 11,32 + 17175: 11,34 + 17176: 12,32 + 17177: 13,31 + 17178: 13,30 + 17179: 11,29 + 17180: 11,29 + 17181: 11,30 + 17182: 12,29 + 17183: 7,30 + 17184: 8,32 + 17185: 8,33 + 17186: 7,32 + 17187: 7,33 + 17188: 8,33 + 17189: 9,33 + 17190: 9,31 + 17191: 9,29 + 17192: 7,30 + 17193: 7,30 + 17194: 7,31 + 17195: 7,32 + 17196: 7,31 + 17197: 8,30 + 17198: 7,29 + 17199: 7,29 + 17200: 8,30 + 17201: 9,30 + 17202: 9,31 - node: cleanable: True zIndex: 10 color: '#CD42257F' id: Dirt decals: - 17233: 11,36 - 17234: 12,37 - 17235: 13,36 - 17236: 14,37 - 17237: 14,37 - 17238: 13,37 - 17239: 13,36 - 17287: 20,41 - 17288: 21,44 - 17289: 22,43 - 17290: 21,41 - 17291: 21,39 - 17292: 23,39 - 17293: 21,42 - 17294: 22,43 - 17295: 23,42 - 17296: 20,41 - 17297: 20,39 - 17298: 22,38 - 17299: 22,37 - 17300: 20,36 - 17301: 21,35 - 17302: 20,35 - 17303: 22,33 - 17304: 20,33 - 17305: 24,34 - 17306: 23,35 - 17307: 25,34 - 17308: 26,34 - 17309: 27,34 - 17310: 22,35 - 17311: 21,36 - 17312: 22,38 - 17313: 22,39 - 17314: 20,38 - 17315: 21,38 - 17316: 22,38 - 17317: 22,40 - 17318: 21,41 - 17319: 21,42 - 17320: 22,42 - 17321: 21,41 - 17322: 20,44 - 17323: 20,44 - 17324: 20,43 - 17325: 22,44 - 17326: 23,43 - 17327: 23,41 - 17328: 18,41 - 17329: 16,42 - 17330: 17,43 - 17331: 18,43 - 17332: 16,42 - 17333: 17,38 - 17334: 17,39 - 17335: 16,38 - 17336: 17,37 - 17337: 17,38 - 17338: 18,39 - 17339: 26,37 - 17340: 25,38 - 17341: 26,39 - 17342: 26,39 - 17343: 26,37 - 17344: 27,38 - 17345: 27,39 - 17346: 26,42 - 17347: 26,43 - 17348: 25,43 - 17349: 26,41 - 17350: 27,42 - 17351: 26,43 - 17352: 27,42 - 17353: 26,41 - 17354: 25,41 - 17355: 25,41 - 17356: 27,41 - 17357: 27,41 - 17358: 25,42 - 17359: 30,33 - 17360: 29,34 - 17361: 32,35 - 17362: 32,33 - 17363: 32,32 - 17364: 33,34 - 17365: 31,35 - 17366: 34,34 + 17203: 11,36 + 17204: 12,37 + 17205: 13,36 + 17206: 14,37 + 17207: 14,37 + 17208: 13,37 + 17209: 13,36 + 17257: 20,41 + 17258: 21,44 + 17259: 22,43 + 17260: 21,41 + 17261: 21,39 + 17262: 23,39 + 17263: 21,42 + 17264: 22,43 + 17265: 23,42 + 17266: 20,41 + 17267: 20,39 + 17268: 22,38 + 17269: 22,37 + 17270: 20,36 + 17271: 21,35 + 17272: 20,35 + 17273: 22,33 + 17274: 20,33 + 17275: 24,34 + 17276: 23,35 + 17277: 25,34 + 17278: 26,34 + 17279: 27,34 + 17280: 22,35 + 17281: 21,36 + 17282: 22,38 + 17283: 22,39 + 17284: 20,38 + 17285: 21,38 + 17286: 22,38 + 17287: 22,40 + 17288: 21,41 + 17289: 21,42 + 17290: 22,42 + 17291: 21,41 + 17292: 20,44 + 17293: 20,44 + 17294: 20,43 + 17295: 22,44 + 17296: 23,43 + 17297: 23,41 + 17298: 18,41 + 17299: 16,42 + 17300: 17,43 + 17301: 18,43 + 17302: 16,42 + 17303: 17,38 + 17304: 17,39 + 17305: 16,38 + 17306: 17,37 + 17307: 17,38 + 17308: 18,39 + 17309: 26,37 + 17310: 25,38 + 17311: 26,39 + 17312: 26,39 + 17313: 26,37 + 17314: 27,38 + 17315: 27,39 + 17316: 26,42 + 17317: 26,43 + 17318: 25,43 + 17319: 26,41 + 17320: 27,42 + 17321: 26,43 + 17322: 27,42 + 17323: 26,41 + 17324: 25,41 + 17325: 25,41 + 17326: 27,41 + 17327: 27,41 + 17328: 25,42 + 17329: 30,33 + 17330: 29,34 + 17331: 32,35 + 17332: 32,33 + 17333: 32,32 + 17334: 33,34 + 17335: 31,35 + 17336: 34,34 + 17337: 34,33 + 17338: 32,33 + 17339: 35,34 + 17340: 35,33 + 17341: 34,33 + 17342: 33,32 + 17343: 32,33 + 17344: 33,33 + 17345: 32,33 + 17346: 31,33 + 17347: 30,32 + 17348: 30,32 + 17349: 29,34 + 17350: 29,34 + 17351: 29,35 + 17352: 30,35 + 17353: 31,34 + 17354: 33,34 + 17355: 33,35 + 17356: 34,35 + 17357: 35,34 + 17358: 34,35 + 17359: 31,34 + 17360: 32,34 + 17361: 30,35 + 17362: 29,34 + 17363: 30,32 + 17364: 29,33 + 17365: 31,32 + 17366: 34,32 17367: 34,33 - 17368: 32,33 - 17369: 35,34 - 17370: 35,33 - 17371: 34,33 - 17372: 33,32 - 17373: 32,33 - 17374: 33,33 - 17375: 32,33 - 17376: 31,33 - 17377: 30,32 - 17378: 30,32 - 17379: 29,34 - 17380: 29,34 - 17381: 29,35 - 17382: 30,35 - 17383: 31,34 - 17384: 33,34 - 17385: 33,35 - 17386: 34,35 - 17387: 35,34 - 17388: 34,35 - 17389: 31,34 - 17390: 32,34 - 17391: 30,35 - 17392: 29,34 - 17393: 30,32 - 17394: 29,33 - 17395: 31,32 - 17396: 34,32 - 17397: 34,33 - 17398: 33,33 - 17399: 34,34 - 17458: 31,33 - 17459: 31,33 - 17460: 119,23 - 17461: 116,27 - 17462: 118,29 - 17463: 119,27 - 17464: 118,25 - 17465: 119,27 - 17466: 120,28 - 17467: 122,25 - 17468: 120,23 - 17469: 119,23 - 17470: 117,24 - 17471: 116,23 - 17472: 115,27 - 17473: 115,29 - 17474: 116,28 - 17475: 117,24 - 17476: 118,24 - 17477: 120,24 - 17478: 120,23 - 17479: 118,22 - 17480: 120,22 - 17481: 121,22 - 17482: 122,26 + 17368: 33,33 + 17369: 34,34 + 17428: 31,33 + 17429: 31,33 + 17430: 119,23 + 17431: 116,27 + 17432: 118,29 + 17433: 119,27 + 17434: 118,25 + 17435: 119,27 + 17436: 120,28 + 17437: 122,25 + 17438: 120,23 + 17439: 119,23 + 17440: 117,24 + 17441: 116,23 + 17442: 115,27 + 17443: 115,29 + 17444: 116,28 + 17445: 117,24 + 17446: 118,24 + 17447: 120,24 + 17448: 120,23 + 17449: 118,22 + 17450: 120,22 + 17451: 121,22 + 17452: 122,26 - node: cleanable: True zIndex: 20 @@ -5260,17 +5273,17 @@ entities: color: '#CD42257F' id: DirtHeavy decals: - 17400: 30,32 - 17401: 29,34 - 17402: 29,33 - 17403: 30,34 - 17404: 32,35 - 17405: 33,34 - 17406: 32,32 - 17407: 34,33 - 17408: 33,35 - 17409: 35,35 - 17410: 34,33 + 17370: 30,32 + 17371: 29,34 + 17372: 29,33 + 17373: 30,34 + 17374: 32,35 + 17375: 33,34 + 17376: 32,32 + 17377: 34,33 + 17378: 33,35 + 17379: 35,35 + 17380: 34,33 - node: cleanable: True zIndex: 20 @@ -5372,75 +5385,75 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 16601: -49,-52 - 16602: -52,-49 - 16603: -48,-47 - 16604: -46,-50 + 16571: -49,-52 + 16572: -52,-49 + 16573: -48,-47 + 16574: -46,-50 - node: cleanable: True zIndex: 10 color: '#FFFFFFFF' id: DirtHeavy decals: - 16605: -54,-52 - 16656: -56,-43 - 16657: -54,-41 - 16658: -51,-43 - 16659: -49,-41 - 16660: -45,-43 - 16661: -44,-45 - 16662: -50,-45 + 16575: -54,-52 + 16626: -56,-43 + 16627: -54,-41 + 16628: -51,-43 + 16629: -49,-41 + 16630: -45,-43 + 16631: -44,-45 + 16632: -50,-45 - node: cleanable: True color: '#CD42257F' id: DirtHeavyMonotile decals: - 17084: 34,26 - 17085: 35,29 - 17086: 36,29 - 17087: 35,27 - 17088: 36,25 - 17089: 39,24 - 17090: 39,27 - 17091: 37,29 - 17092: 39,30 - 17093: 35,25 - 17094: 34,24 - 17095: 36,25 - 17096: 35,26 - 17097: 34,28 + 17054: 34,26 + 17055: 35,29 + 17056: 36,29 + 17057: 35,27 + 17058: 36,25 + 17059: 39,24 + 17060: 39,27 + 17061: 37,29 + 17062: 39,30 + 17063: 35,25 + 17064: 34,24 + 17065: 36,25 + 17066: 35,26 + 17067: 34,28 - node: cleanable: True zIndex: 10 color: '#CD42257F' id: DirtHeavyMonotile decals: - 17240: 11,35 - 17241: 11,37 - 17242: 14,34 - 17243: 13,33 - 17244: 13,32 - 17278: 8,32 - 17279: 8,33 - 17280: 9,33 - 17281: 9,32 - 17282: 8,31 - 17283: 9,32 - 17284: 9,30 - 17285: 8,29 - 17286: 7,31 - 17411: 33,32 - 17412: 33,34 - 17413: 31,34 - 17414: 31,33 - 17415: 30,33 - 17416: 30,35 - 17417: 29,34 - 17418: 29,35 - 17419: 32,35 - 17420: 34,35 - 17421: 34,33 - 17422: 32,32 + 17210: 11,35 + 17211: 11,37 + 17212: 14,34 + 17213: 13,33 + 17214: 13,32 + 17248: 8,32 + 17249: 8,33 + 17250: 9,33 + 17251: 9,32 + 17252: 8,31 + 17253: 9,32 + 17254: 9,30 + 17255: 8,29 + 17256: 7,31 + 17381: 33,32 + 17382: 33,34 + 17383: 31,34 + 17384: 31,33 + 17385: 30,33 + 17386: 30,35 + 17387: 29,34 + 17388: 29,35 + 17389: 32,35 + 17390: 34,35 + 17391: 34,33 + 17392: 32,32 - node: cleanable: True zIndex: 20 @@ -5955,91 +5968,91 @@ entities: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 16606: -52,-51 - 16607: -51,-53 - 16608: -48,-50 - 16609: -50,-49 - 16610: -49,-51 - 16611: -47,-51 - 16612: -46,-50 - 16613: -47,-49 - 16614: -54,-47 - 16615: -53,-47 - 16616: -51,-49 - 16617: -49,-49 - 16618: -52,-50 - 16663: -51,-45 - 16664: -50,-43 - 16665: -51,-42 - 16666: -52,-42 - 16667: -50,-41 - 16668: -48,-42 - 16669: -54,-42 - 16670: -55,-42 - 16671: -57,-41 - 16672: -45,-41 - 16673: -44,-42 - 16674: -46,-43 - 16675: -44,-44 + 16576: -52,-51 + 16577: -51,-53 + 16578: -48,-50 + 16579: -50,-49 + 16580: -49,-51 + 16581: -47,-51 + 16582: -46,-50 + 16583: -47,-49 + 16584: -54,-47 + 16585: -53,-47 + 16586: -51,-49 + 16587: -49,-49 + 16588: -52,-50 + 16633: -51,-45 + 16634: -50,-43 + 16635: -51,-42 + 16636: -52,-42 + 16637: -50,-41 + 16638: -48,-42 + 16639: -54,-42 + 16640: -55,-42 + 16641: -57,-41 + 16642: -45,-41 + 16643: -44,-42 + 16644: -46,-43 + 16645: -44,-44 - node: cleanable: True color: '#CD42257F' id: DirtLight decals: - 17098: 35,26 - 17099: 37,25 - 17100: 38,26 - 17101: 40,25 - 17102: 39,25 - 17103: 40,24 - 17104: 34,28 - 17105: 34,29 - 17106: 35,30 - 17107: 36,29 + 17068: 35,26 + 17069: 37,25 + 17070: 38,26 + 17071: 40,25 + 17072: 39,25 + 17073: 40,24 + 17074: 34,28 + 17075: 34,29 + 17076: 35,30 + 17077: 36,29 - node: cleanable: True zIndex: 10 color: '#CD42257F' id: DirtLight decals: - 17245: 11,32 - 17246: 11,34 - 17247: 11,36 - 17248: 12,37 - 17249: 14,36 - 17250: 14,34 - 17251: 14,33 - 17266: 7,30 - 17267: 7,32 - 17268: 8,33 - 17269: 8,31 - 17270: 8,30 - 17271: 7,29 - 17272: 7,29 - 17273: 9,29 - 17274: 9,31 - 17275: 8,33 - 17276: 7,33 - 17277: 7,32 - 17423: 31,32 - 17424: 32,32 - 17425: 34,33 - 17426: 34,34 - 17427: 34,33 - 17428: 34,32 - 17429: 32,34 - 17430: 30,35 - 17431: 29,35 - 17432: 30,34 - 17433: 30,34 - 17434: 29,33 - 17435: 32,33 - 17436: 32,35 - 17437: 33,34 - 17438: 33,33 - 17439: 35,35 - 17440: 35,34 - 17441: 35,33 + 17215: 11,32 + 17216: 11,34 + 17217: 11,36 + 17218: 12,37 + 17219: 14,36 + 17220: 14,34 + 17221: 14,33 + 17236: 7,30 + 17237: 7,32 + 17238: 8,33 + 17239: 8,31 + 17240: 8,30 + 17241: 7,29 + 17242: 7,29 + 17243: 9,29 + 17244: 9,31 + 17245: 8,33 + 17246: 7,33 + 17247: 7,32 + 17393: 31,32 + 17394: 32,32 + 17395: 34,33 + 17396: 34,34 + 17397: 34,33 + 17398: 34,32 + 17399: 32,34 + 17400: 30,35 + 17401: 29,35 + 17402: 30,34 + 17403: 30,34 + 17404: 29,33 + 17405: 32,33 + 17406: 32,35 + 17407: 33,34 + 17408: 33,33 + 17409: 35,35 + 17410: 35,34 + 17411: 35,33 - node: cleanable: True zIndex: 20 @@ -6060,96 +6073,96 @@ entities: color: '#FFFFFFFF' id: DirtLight decals: - 16619: -53,-49 - 16620: -52,-51 - 16621: -50,-51 - 16622: -49,-49 - 16623: -47,-49 - 16624: -50,-52 - 16625: -51,-53 - 16626: -50,-54 - 16627: -48,-54 - 16628: -48,-51 - 16629: -50,-50 - 16630: -49,-49 - 16631: -49,-50 - 16632: -51,-48 - 16633: -52,-48 - 16634: -50,-47 - 16635: -47,-47 - 16636: -46,-48 - 16637: -47,-50 - 16638: -47,-51 - 16676: -57,-42 - 16677: -54,-42 - 16678: -54,-41 - 16679: -54,-42 - 16680: -51,-42 - 16681: -51,-41 - 16682: -50,-42 - 16683: -49,-42 - 16684: -48,-41 - 16685: -45,-42 - 16686: -46,-42 - 16687: -45,-43 - 16688: -45,-44 - 16689: -44,-43 - 16690: -43,-42 - 16691: -43,-45 + 16589: -53,-49 + 16590: -52,-51 + 16591: -50,-51 + 16592: -49,-49 + 16593: -47,-49 + 16594: -50,-52 + 16595: -51,-53 + 16596: -50,-54 + 16597: -48,-54 + 16598: -48,-51 + 16599: -50,-50 + 16600: -49,-49 + 16601: -49,-50 + 16602: -51,-48 + 16603: -52,-48 + 16604: -50,-47 + 16605: -47,-47 + 16606: -46,-48 + 16607: -47,-50 + 16608: -47,-51 + 16646: -57,-42 + 16647: -54,-42 + 16648: -54,-41 + 16649: -54,-42 + 16650: -51,-42 + 16651: -51,-41 + 16652: -50,-42 + 16653: -49,-42 + 16654: -48,-41 + 16655: -45,-42 + 16656: -46,-42 + 16657: -45,-43 + 16658: -45,-44 + 16659: -44,-43 + 16660: -43,-42 + 16661: -43,-45 - node: cleanable: True color: '#CD42257F' id: DirtMedium decals: - 17108: 34,29 - 17109: 35,28 - 17110: 35,30 - 17111: 34,30 - 17112: 35,26 - 17113: 34,25 - 17114: 37,25 - 17115: 40,25 - 17116: 40,24 - 17117: 38,25 - 17118: 37,26 - 17119: 40,25 - 17120: 34,26 + 17078: 34,29 + 17079: 35,28 + 17080: 35,30 + 17081: 34,30 + 17082: 35,26 + 17083: 34,25 + 17084: 37,25 + 17085: 40,25 + 17086: 40,24 + 17087: 38,25 + 17088: 37,26 + 17089: 40,25 + 17090: 34,26 - node: cleanable: True zIndex: 10 color: '#CD42257F' id: DirtMedium decals: - 17252: 11,33 - 17253: 11,36 - 17254: 11,37 - 17255: 13,37 - 17256: 14,35 - 17257: 14,34 - 17258: 14,33 - 17259: 8,31 - 17260: 8,30 - 17261: 7,30 - 17262: 7,33 - 17263: 9,33 - 17264: 9,31 - 17265: 9,30 - 17442: 32,34 - 17443: 30,34 - 17444: 31,33 - 17445: 30,32 - 17446: 33,32 - 17447: 34,34 - 17448: 33,35 - 17449: 32,33 - 17450: 32,33 - 17451: 34,33 - 17452: 32,34 - 17453: 30,35 - 17454: 29,35 - 17455: 29,33 - 17456: 35,35 - 17457: 34,32 + 17222: 11,33 + 17223: 11,36 + 17224: 11,37 + 17225: 13,37 + 17226: 14,35 + 17227: 14,34 + 17228: 14,33 + 17229: 8,31 + 17230: 8,30 + 17231: 7,30 + 17232: 7,33 + 17233: 9,33 + 17234: 9,31 + 17235: 9,30 + 17412: 32,34 + 17413: 30,34 + 17414: 31,33 + 17415: 30,32 + 17416: 33,32 + 17417: 34,34 + 17418: 33,35 + 17419: 32,33 + 17420: 32,33 + 17421: 34,33 + 17422: 32,34 + 17423: 30,35 + 17424: 29,35 + 17425: 29,33 + 17426: 35,35 + 17427: 34,32 - node: cleanable: True zIndex: 20 @@ -6171,46 +6184,46 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 16639: -54,-49 - 16640: -53,-49 - 16641: -49,-47 - 16642: -49,-48 - 16643: -51,-50 - 16644: -50,-52 - 16645: -48,-51 - 16646: -47,-49 - 16647: -47,-50 - 16648: -49,-52 - 16649: -51,-53 - 16650: -50,-54 - 16651: -48,-53 - 16652: -48,-49 - 16653: -50,-48 - 16654: -49,-47 - 16655: -47,-51 - 16692: -45,-43 - 16693: -46,-44 - 16694: -45,-45 - 16695: -44,-45 - 16696: -43,-42 - 16697: -45,-42 - 16698: -46,-41 - 16699: -44,-41 - 16700: -45,-43 - 16701: -51,-43 - 16702: -52,-43 - 16703: -49,-43 - 16704: -49,-45 - 16705: -55,-41 - 16706: -56,-41 - 16707: -57,-42 - 16708: -56,-42 - 16709: -57,-43 - 16710: -56,-43 - 16711: -54,-43 - 16712: -52,-42 - 16713: -51,-41 - 16714: -49,-42 + 16609: -54,-49 + 16610: -53,-49 + 16611: -49,-47 + 16612: -49,-48 + 16613: -51,-50 + 16614: -50,-52 + 16615: -48,-51 + 16616: -47,-49 + 16617: -47,-50 + 16618: -49,-52 + 16619: -51,-53 + 16620: -50,-54 + 16621: -48,-53 + 16622: -48,-49 + 16623: -50,-48 + 16624: -49,-47 + 16625: -47,-51 + 16662: -45,-43 + 16663: -46,-44 + 16664: -45,-45 + 16665: -44,-45 + 16666: -43,-42 + 16667: -45,-42 + 16668: -46,-41 + 16669: -44,-41 + 16670: -45,-43 + 16671: -51,-43 + 16672: -52,-43 + 16673: -49,-43 + 16674: -49,-45 + 16675: -55,-41 + 16676: -56,-41 + 16677: -57,-42 + 16678: -56,-42 + 16679: -57,-43 + 16680: -56,-43 + 16681: -54,-43 + 16682: -52,-42 + 16683: -51,-41 + 16684: -49,-42 - node: color: '#FFFFFFFF' id: FlowersBROne @@ -6219,13 +6232,13 @@ entities: 2895: 31,-31 3281: 25,20 4020: 12.534197,-8.551287 - 11376: 53,-52 + 11372: 53,-52 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBROne decals: - 15973: 152.43613,51.34246 + 15969: 152.43613,51.34246 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6237,16 +6250,16 @@ entities: id: FlowersBRThree decals: 2900: 36,-32 - 5663: -3.0046391,31.302864 - 5772: 45.041103,-9.1179695 - 5943: 35.02151,-37.996975 + 5659: -3.0046391,31.302864 + 5768: 45.041103,-9.1179695 + 5939: 35.02151,-37.996975 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBRThree decals: - 15974: 152.89685,49.0382 - 15978: 154.06622,47.03173 + 15970: 152.89685,49.0382 + 15974: 154.06622,47.03173 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6259,7 +6272,7 @@ entities: decals: 2907: 35,-28 3282: 31,20 - 12502: 101.01335,14.632324 + 12498: 101.01335,14.632324 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6274,7 +6287,7 @@ entities: 2114: 7.6817503,-21.935097 4017: 7.1058054,-2.4115453 4549: -36.631954,-24.933825 - 5770: 46.054993,-0.95474625 + 5766: 46.054993,-0.95474625 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6294,7 +6307,7 @@ entities: 2123: 5.600562,-20.849863 2124: 5.0653987,-30.737108 2910: 33,-32 - 11375: 47,-51 + 11371: 47,-51 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -6308,17 +6321,17 @@ entities: 2905: 32,-32 3283: 26,20 4552: -32.94528,-24.94869 - 6197: -75.99741,-88.23914 - 6200: -59.91261,-85.895584 - 6202: -74.320526,-77.167885 - 12500: 100.99849,15.881086 + 6193: -75.99741,-88.23914 + 6196: -59.91261,-85.895584 + 6198: -74.320526,-77.167885 + 12496: 100.99849,15.881086 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv1 decals: - 15979: 149.2193,49.369354 - 15980: 150.70927,48.61342 + 15975: 149.2193,49.369354 + 15976: 150.70927,48.61342 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6339,14 +6352,14 @@ entities: 2899: 35,-32 2903: 31,-30 4551: -35.710285,-24.933825 - 5662: -2.9749074,32.477295 - 6201: -65.348076,-77.62328 + 5658: -2.9749074,32.477295 + 6197: -65.348076,-77.62328 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv2 decals: - 15977: 151.27448,48.76183 + 15973: 151.27448,48.76183 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6361,17 +6374,17 @@ entities: 2898: 37,-29 2901: 32,-28 4019: 13.351808,-1.4303756 - 6198: -75.09663,-89.11625 - 6199: -65.04473,-83.024376 - 6203: -77.09474,-79.04385 - 11378: 53,-51 - 12499: 100.99849,14.112007 + 6194: -75.09663,-89.11625 + 6195: -65.04473,-83.024376 + 6199: -77.09474,-79.04385 + 11374: 53,-51 + 12495: 100.99849,14.112007 - node: cleanable: True color: '#FFFFFFFF' id: Flowerspv3 decals: - 15972: 151.5444,50.851875 + 15968: 151.5444,50.851875 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6390,14 +6403,14 @@ entities: 2896: 33,-28 4018: 7.923415,-5.4888496 4550: -34.13453,-24.963556 - 5942: 33.35656,-37.996975 - 11377: 47,-52 + 5938: 33.35656,-37.996975 + 11373: 47,-52 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy1 decals: - 15975: 150.54865,48.874672 + 15971: 150.54865,48.874672 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -6407,13 +6420,13 @@ entities: 2902: 37,-30 2906: 36,-28 3284: 30,20 - 12501: 101.01335,15.345903 + 12497: 101.01335,15.345903 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy2 decals: - 15976: 150.9945,48.398952 + 15972: 150.9945,48.398952 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6431,57 +6444,57 @@ entities: color: '#DCBFFFBF' id: Flowersy4 decals: - 10849: -134.60262,-16.259096 - 10850: -127.125084,-8.883394 - 10851: -107.01124,-22.881784 - 10852: -113.732574,-31.862831 - 10853: -99.23655,-19.720858 - 10854: -108.01442,-6.17403 - 10855: -104.102,-3.7657046 - 10856: -121.24092,-38.72928 - 10857: -107.99658,-39.03172 - 10858: -104.73624,-40.486748 - 10859: -107.44483,-42.242817 - 10860: -90.95444,-45.688522 - 10861: -87.54361,-46.84251 - 10862: -80.12004,-37.861465 - 10863: -74.502205,-51.257774 - 10864: -78.46478,-53.766445 - 10865: -91.054756,-59.887604 - 10866: -80.22036,-60.339165 - 10867: -81.47434,-64.15234 - 10868: -87.79794,-75.3565 - 10869: -79.318085,-72.49955 - 10870: -81.324455,-79.724525 - 10871: -86.31688,-94.242065 - 10872: -79.294586,-92.88738 - 10873: -80.498405,-99.00854 - 10874: -54.967354,-95.59675 - 10875: -52.660027,-99.35976 - 10876: -47.8949,-97.70403 - 10877: -55.16799,-92.48599 - 10878: -47.242832,-80.89593 - 10879: -53.71337,-76.83188 - 10880: -52.710186,-68.80413 - 10881: -57.374992,-65.693375 - 10882: -51.75716,-59.92343 - 10883: -36.256413,-82.700424 - 10884: -31.340702,-88.37014 - 10885: -40.168724,-94.591644 - 10886: -36.60742,-99.00691 - 10887: -22.964111,-93.28714 - 10888: -19.760712,-79.48322 - 10889: -20.758087,-72.856384 - 10890: -26.927856,-73.15755 - 10891: -20.432575,-63.918957 - 10892: -24.796432,-62.112713 - 10893: -22.940536,-57.195717 + 10845: -134.60262,-16.259096 + 10846: -127.125084,-8.883394 + 10847: -107.01124,-22.881784 + 10848: -113.732574,-31.862831 + 10849: -99.23655,-19.720858 + 10850: -108.01442,-6.17403 + 10851: -104.102,-3.7657046 + 10852: -121.24092,-38.72928 + 10853: -107.99658,-39.03172 + 10854: -104.73624,-40.486748 + 10855: -107.44483,-42.242817 + 10856: -90.95444,-45.688522 + 10857: -87.54361,-46.84251 + 10858: -80.12004,-37.861465 + 10859: -74.502205,-51.257774 + 10860: -78.46478,-53.766445 + 10861: -91.054756,-59.887604 + 10862: -80.22036,-60.339165 + 10863: -81.47434,-64.15234 + 10864: -87.79794,-75.3565 + 10865: -79.318085,-72.49955 + 10866: -81.324455,-79.724525 + 10867: -86.31688,-94.242065 + 10868: -79.294586,-92.88738 + 10869: -80.498405,-99.00854 + 10870: -54.967354,-95.59675 + 10871: -52.660027,-99.35976 + 10872: -47.8949,-97.70403 + 10873: -55.16799,-92.48599 + 10874: -47.242832,-80.89593 + 10875: -53.71337,-76.83188 + 10876: -52.710186,-68.80413 + 10877: -57.374992,-65.693375 + 10878: -51.75716,-59.92343 + 10879: -36.256413,-82.700424 + 10880: -31.340702,-88.37014 + 10881: -40.168724,-94.591644 + 10882: -36.60742,-99.00691 + 10883: -22.964111,-93.28714 + 10884: -19.760712,-79.48322 + 10885: -20.758087,-72.856384 + 10886: -26.927856,-73.15755 + 10887: -20.432575,-63.918957 + 10888: -24.796432,-62.112713 + 10889: -22.940536,-57.195717 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 2908: 37,-30 - 5771: 45.943882,-9.076303 + 5767: 45.943882,-9.076303 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -6534,482 +6547,482 @@ entities: color: '#FFFFFFCC' id: Grassc1 decals: - 15277: -140.83746,23.28026 - 15410: 71.94012,61.37262 - 15661: 100.618965,-26.90044 - 15667: 130.02267,-41.745377 - 15668: 127.38096,-34.5873 + 15273: -140.83746,23.28026 + 15406: 71.94012,61.37262 + 15657: 100.618965,-26.90044 + 15663: 130.02267,-41.745377 + 15664: 127.38096,-34.5873 - node: cleanable: True color: '#FFFFFFCC' id: Grassc2 decals: - 15278: -137.04959,16.635067 - 15411: 75.18003,63.825546 - 15451: 150.24855,50.544262 - 15662: 104.28836,-38.546894 + 15274: -137.04959,16.635067 + 15407: 75.18003,63.825546 + 15447: 150.24855,50.544262 + 15658: 104.28836,-38.546894 - node: cleanable: True color: '#FFFFFFCC' id: Grassc3 decals: - 15279: -133.75023,20.901667 - 15281: -138.98164,15.331219 - 15413: 76.69596,61.00096 - 15452: 153.63708,48.12107 - 15665: 117.31567,-43.75231 - 15666: 125.976494,-38.13289 + 15275: -133.75023,20.901667 + 15277: -138.98164,15.331219 + 15409: 76.69596,61.00096 + 15448: 153.63708,48.12107 + 15661: 117.31567,-43.75231 + 15662: 125.976494,-38.13289 - node: cleanable: True color: '#FFFFFFCC' id: Grassc4 decals: - 15280: -138.81816,17.660835 - 15412: 77.75116,57.834465 - 15663: 107.79951,-40.854874 - 15664: 118.519485,-47.03031 + 15276: -138.81816,17.660835 + 15408: 77.75116,57.834465 + 15659: 107.79951,-40.854874 + 15660: 118.519485,-47.03031 - node: cleanable: True color: '#825AFFFF' id: Grassd1 decals: - 12954: 83.99086,9.956577 - 12955: 85.02774,9.990025 - 12956: 84.89394,7.447905 - 12957: 82.652954,6.2437425 - 12958: 83.99086,2.4974585 - 12959: 84.860504,10.659004 - 12960: 84.639755,4.874166 - 12961: 85.91129,3.5657887 - 12962: 84.29863,-0.23728037 - 12963: 83.194855,-2.277667 - 12964: 85.93757,-3.4483805 - 12965: 88.07822,-2.5452585 - 12966: 86.33894,-5.354972 - 12967: 87.17513,-6.960522 - 12968: 91.021614,-5.756359 - 12969: 90.453,-2.8797479 - 12970: 92.39297,-1.1404023 - 12971: 93.36295,-3.0469933 - 12972: 88.37925,-4.853237 - 12973: 89.38268,-6.4587874 - 12974: 90.92127,-8.632969 - 12975: 90.5868,-9.90403 - 12976: 89.483025,-10.305417 - 12977: 93.96501,-11.308887 - 12978: 97.17599,-11.643375 - 12979: 99.01561,-11.576478 - 12980: 99.31664,-7.3953576 - 12981: 96.707726,-5.6225634 - 12982: 99.11595,-5.354972 - 12983: 96.348206,-12.916437 - 12984: 100.969,-14.2338295 - 12985: 105.050446,-12.2277155 - 12986: 107.79316,-11.525288 - 12987: 104.78287,-13.231186 - 12988: 105.050446,-15.639509 - 12989: 107.8935,-16.60953 - 12990: 107.960396,-17.311958 - 12991: 105.45182,-13.06394 - 12992: 100.6688,-10.889757 - 12993: 107.55902,-10.45492 - 12994: 106.89007,-14.702938 - 12995: 110.0676,-19.686832 - 12996: 109.90036,-21.09169 - 12997: 113.713394,-19.118202 - 12998: 114.21511,-17.445753 - 12999: 112.877205,-20.924446 - 13000: 113.37892,-23.66726 - 13001: 113.111336,-25.172464 - 13002: 115.25199,-23.366219 - 13003: 111.07103,-17.5461 - 13004: 117.50328,-17.378857 - 13005: 121.78457,-15.577238 - 13006: 119.71082,-11.357197 - 13007: 123.92524,-12.624359 - 13008: 120.51357,-14.831991 - 13009: 125.7983,-16.069603 - 13010: 130.38065,-17.173418 - 13011: 125.59762,-13.694725 - 13012: 125.631065,-12.3233185 - 13013: 123.62421,-8.476688 - 13014: 126.83518,-7.5066686 - 13015: 126.03243,-12.189523 - 13016: 129.0093,-14.3302555 - 13017: 123.22283,-8.844627 - 13018: 121.48355,-6.0349145 - 13019: 122.353195,-4.1952224 - 13020: 126.90208,-5.365935 - 13021: 124.360054,-6.335955 - 13022: 129.17653,-4.329018 - 13023: 131.14995,-2.3555293 - 13024: 127.06931,-9.011871 - 13025: 124.15937,-9.747749 - 13026: 124.12592,-16.939276 - 13027: 132.68483,-16.236847 - 13028: 134.19756,-16.537888 - 13029: 129.29816,-18.544825 - 13030: 133.911,-19.180355 - 13031: 135.00752,-17.307213 - 13032: 137.11009,-19.08001 - 13033: 136.07321,-20.618662 - 13034: 139.21729,-20.484865 - 13035: 134.33392,-13.694725 - 13036: 136.17355,-9.881544 - 13037: 139.21729,-7.406322 - 13038: 141.22415,-8.844627 - 13039: 134.13324,-10.383279 - 13040: 130.16107,-6.1181226 - 13041: 134.07231,-3.3671165 - 13042: 131.79787,-0.18946552 - 13043: 129.45653,-0.022221088 - 13044: 128.48654,-0.89189386 - 13045: 128.62035,1.6167779 - 13046: 134.07231,0.91435003 - 13047: 134.23955,-1.5608726 - 13048: 137.88535,-0.4905057 - 13049: 137.38364,1.817472 - 13050: 139.45738,-0.28981256 - 13051: 137.88535,-1.5274234 - 13052: 140.52771,-2.8988314 - 13053: 142.40079,-0.89189386 - 13054: 144.57489,0.546412 - 13055: 145.61177,-1.1594853 - 13056: 141.63148,-3.4340143 - 13057: 141.19667,-5.5078497 - 13058: 146.04659,-4.437484 - 13059: 144.47453,-1.7950149 - 13060: 149.39136,-2.1295052 - 13061: 145.54486,-4.53783 - 13062: 143.6718,-6.277176 - 13063: 145.1435,-7.3475432 - 13064: 148.58861,-3.56781 - 13065: 152.10011,-1.7950149 - 13066: 149.51093,-5.006115 - 13067: 150.97789,-5.4539313 - 13068: 151.51762,-2.8061905 - 13069: 153.46179,1.0000334 - 13070: 154.59932,-0.103649616 - 13071: 153.59616,-4.0505056 - 13072: 153.42859,-6.2917333 - 13073: 155.66959,-5.1879177 - 13074: 152.65929,-2.9133887 - 13075: 149.14728,0.3980584 - 13076: 146.03665,1.4015274 - 13077: 148.61212,4.2781377 - 13078: 148.61212,1.5353231 - 13079: 151.0538,-0.30436897 - 13080: 152.59239,2.4718938 - 13081: 149.28108,3.1074243 - 13082: 146.20389,4.712975 - 13083: 147.17387,8.158218 - 13084: 149.98347,8.927544 - 13085: 147.97661,9.200657 - 13086: 148.26285,6.2326055 - 13087: 145.9884,9.845093 - 13088: 145.78772,13.189989 - 13089: 148.2963,14.929335 - 13090: 149.0656,12.7217045 - 13091: 147.35976,13.491028 - 13092: 147.72769,17.504906 - 13093: 145.95496,18.809414 - 13094: 146.25598,17.00317 - 13095: 148.83147,20.615658 - 13096: 153.01242,21.251188 - 13097: 152.14278,19.043556 - 13098: 154.81859,17.471455 - 13099: 155.48755,19.846333 - 13100: 156.65822,18.508373 - 13101: 153.2131,17.739048 - 13102: 156.72511,15.832457 - 13103: 157.26027,14.059662 - 13104: 154.9524,12.3537655 - 13105: 158.2637,12.688255 - 13106: 158.83232,11.584438 - 13107: 158.12991,10.112684 - 13108: 156.3572,8.741278 - 13109: 158.46439,10.313377 - 13110: 156.25685,12.052723 - 13111: 156.2234,14.628294 - 13112: 155.521,12.019276 - 13113: 156.2903,7.905054 - 13114: 153.64793,6.868136 - 13115: 156.82545,6.165707 - 13116: 157.99612,8.674379 - 13117: 158.66508,8.239542 - 13118: 156.18996,6.13226 - 13119: 154.91895,4.359463 - 13120: 155.25342,2.8877091 - 13121: 156.05615,2.7204652 - 13122: 153.78172,3.790831 - 13123: 153.41379,5.262585 - 13124: 147.33337,22.963997 - 13125: 146.73131,24.846014 - 13126: 148.10266,29.308487 - 13127: 150.17642,28.47226 - 13128: 147.19958,25.963589 - 13129: 148.77162,27.736382 - 13130: 151.04607,28.7733 - 13131: 146.73131,31.449219 - 13132: 144.92514,31.148178 - 13133: 143.11896,28.907097 - 13134: 141.1121,28.338467 - 13135: 145.09238,31.884056 - 13136: 145.89511,27.100853 - 13137: 147.93542,27.702934 - 13138: 146.93199,29.542625 - 13139: 145.25961,27.836731 - 13140: 146.2296,28.20467 - 13141: 153.05292,30.445747 - 13142: 154.12325,31.181625 - 13143: 150.84538,27.970528 - 13144: 153.72188,28.47226 - 13145: 155.92943,31.984402 - 13146: 157.86938,32.084747 - 13147: 156.79906,29.74332 - 13148: 158.47145,32.1182 - 13149: 159.47488,34.894463 - 13150: 157.6687,37.637276 - 13151: 157.51154,28.940544 - 13152: 157.2774,25.136168 - 13153: 155.43779,23.870918 - 13154: 156.34087,22.290188 - 13155: 139.68633,25.909843 - 13156: 134.06699,25.240746 - 13157: 133.7995,27.582264 - 13158: 137.61253,30.258183 - 13159: 139.82008,31.897179 - 13160: 141.62627,34.17171 - 13161: 139.45216,31.56269 - 13162: 138.44873,28.418488 - 13163: 137.04393,27.71606 - 13164: 132.89642,31.027508 - 13165: 130.55508,31.696487 - 13166: 129.01648,29.488857 - 13167: 133.39813,28.251244 - 13168: 130.05336,29.957142 - 13169: 131.45818,30.29163 - 13170: 123.89898,25.80947 - 13171: 126.8753,26.845898 - 13172: 127.300026,30.859772 - 13173: 129.84206,31.562199 - 13174: 129.00586,27.34763 - 13175: 130.7786,28.61869 - 13176: 130.10963,26.678652 - 13177: 129.70827,24.604816 - 13178: 125.35546,24.724274 - 13179: 129.51837,34.223328 - 13180: 127.23322,36.464413 - 13181: 130.14305,39.976555 - 13182: 134.02303,42.38488 - 13183: 131.98271,39.876205 - 13184: 131.88237,38.5048 - 13185: 134.25716,40.94657 - 13186: 129.74171,43.488693 - 13187: 133.58821,45.662876 - 13188: 131.38066,48.104652 - 13189: 133.82234,45.26149 - 13190: 134.62508,42.518673 - 13191: 137.26746,42.853165 - 13192: 137.3678,40.511738 - 13193: 135.22714,39.809307 - 13194: 138.23744,39.17378 - 13195: 138.30432,41.214165 - 13196: 139.6088,39.47482 - 13197: 139.80948,36.23027 - 13198: 141.28117,35.92923 - 13199: 142.81976,31.41362 - 13200: 127.50815,41.05332 - 13201: 124.287636,42.913788 - 13202: 125.35796,42.27826 - 13203: 120.94287,45.589706 - 13204: 120.60839,49.0015 - 13205: 118.434296,47.262154 - 13206: 120.87597,45.188316 - 13207: 123.08352,46.961113 - 13208: 121.344246,44.48589 - 13209: 122.21388,42.54585 - 13210: 123.08352,45.054916 - 13211: 120.80908,47.37757 - 13212: 118.50118,45.20339 - 13213: 119.17014,46.090527 - 13214: 126.22761,49.271015 - 13215: 128.26791,50.40828 - 13216: 129.67271,49.036873 - 13217: 128.10068,51.578995 - 13218: 126.127266,53.95387 - 13219: 127.46517,47.89961 - 13220: 125.19073,51.98038 - 13221: 127.130684,55.29183 - 13222: 127.130684,58.837418 - 13223: 124.32108,58.770523 - 13224: 121.8794,57.332214 - 13225: 120.14012,60.34262 - 13226: 122.84939,62.650597 - 13227: 122.91628,60.476418 - 13228: 122.882835,57.26532 - 13229: 126.02691,58.13499 - 13230: 125.62554,62.048515 - 13231: 121.377686,62.583702 - 13232: 118.33395,58.13499 - 13233: 119.43772,57.46601 - 13234: 120.74218,56.19495 - 13235: 121.478035,55.158035 - 13236: 121.979744,59.272255 - 13237: 127.26449,60.309174 - 13238: 128.4017,59.4395 - 13239: 127.03034,57.031174 - 13240: 119.87331,53.69899 - 13241: 119.43837,52.059887 - 13242: 119.6719,49.985504 - 13243: 115.35749,51.992752 - 13244: 114.28716,53.130016 - 13245: 112.848915,52.159996 - 13246: 114.4544,50.520996 - 13247: 112.71512,49.38373 - 13248: 109.37035,49.249935 - 13249: 110.70826,46.941956 - 13250: 110.306885,46.674366 - 13251: 110.072754,50.01926 - 13252: 111.37721,50.554443 - 13253: 111.07618,48.07922 - 13254: 105.89179,47.945427 - 13255: 105.42352,49.71822 - 13256: 105.49042,46.507122 - 13257: 108.199684,45.403305 - 13258: 106.76144,44.466736 - 13259: 106.326614,45.035366 - 13260: 108.60105,47.477142 - 13261: 106.62764,49.35028 - 13262: 109.938965,45.604 - 13263: 103.41306,49.305527 - 13264: 100.12016,49.45305 - 13265: 98.849144,48.282333 - 13266: 98.28054,48.850967 - 13267: 97.176765,50.389618 - 13268: 96.10644,51.29274 - 13269: 94.43405,48.951313 - 13270: 96.30712,47.81405 - 13271: 93.36372,48.44958 - 13272: 92.22651,49.98823 - 13273: 93.83199,52.06207 - 13274: 92.42719,51.69413 - 13275: 90.01896,48.683723 - 13276: 89.85172,47.44611 - 13277: 93.73165,46.87748 - 13278: 96.006096,49.4196 - 13279: 93.229935,51.35964 - 13280: 91.122734,54.336597 - 13281: 103.695244,46.57869 - 13282: 103.37315,44.264954 - 13283: 105.41346,43.69632 - 13284: 106.35,42.324913 - 13285: 102.7042,42.39181 - 13286: 104.34313,42.559055 - 13287: 103.20592,40.48522 - 13288: 101.63387,41.622482 - 13289: 99.96149,41.555588 - 13290: 103.807976,39.347954 - 13291: 106.8782,39.983486 - 13292: 106.36829,38.847546 - 13293: 108.07412,39.34928 - 13294: 109.57927,40.419647 - 13295: 111.15131,39.449627 - 13296: 110.48236,37.40924 - 13297: 112.35543,39.483074 - 13298: 113.92747,39.884464 - 13299: 111.15131,37.40924 - 13300: 112.62301,36.840607 - 13301: 113.39231,40.553444 - 13302: 113.827126,42.29279 - 13303: 115.03124,41.99175 - 13304: 114.09471,40.453094 - 13305: 113.76023,37.1082 - 13306: 116.00123,36.405773 - 13307: 111.45234,35.636444 - 13308: 109.47893,34.666428 - 13309: 110.95062,32.726387 - 13310: 113.55955,34.632977 - 13311: 114.429184,34.19814 - 13312: 110.24822,32.92708 - 13313: 107.90688,32.425346 - 13314: 115.93433,32.626038 - 13315: 116.60329,34.83367 - 13316: 118.14188,35.83714 - 13317: 117.47292,33.462265 - 13318: 118.91117,34.632977 - 13319: 118.71049,37.40924 - 13320: 119.88116,37.910976 - 13321: 119.58013,35.000916 - 13322: 119.32879,32.759834 - 13323: 121.65273,34.53263 - 13324: 121.4717,36.573017 - 13325: 124.24781,35.034363 - 13326: 123.84675,33.495712 - 13327: 126.689644,34.83367 - 13328: 127.89377,33.796753 - 13329: 126.82343,32.157753 - 13330: 102.57333,37.691307 - 13331: 99.41506,38.895473 - 13332: 100.418495,40.53447 - 13333: 97.44165,39.564453 - 13334: 95.90305,37.72476 - 13335: 95.26755,39.497555 - 13336: 95.83616,39.6648 - 13337: 93.896194,37.65786 - 13338: 92.52484,37.9589 - 13339: 90.58488,39.865494 - 13340: 91.220375,41.671738 - 13341: 88.143196,42.54141 - 13342: 87.50768,40.668266 - 13343: 87.240105,39.698246 - 13344: 86.403915,42.50796 - 13345: 88.979385,45.986652 - 13346: 90.21695,47.157364 - 13347: 89.94936,43.47798 - 13348: 88.31043,44.146957 - 13349: 86.872185,45.183876 - 13350: 88.17664,46.655632 - 13351: 92.2907,47.32461 - 13352: 91.7221,46.05355 - 13353: 87.17289,47.458405 - 13354: 84.83155,44.48145 - 13355: 82.456764,43.979713 - 13356: 83.79467,41.471043 - 13357: 84.7981,40.467575 - 13358: 82.95848,41.170002 - 13359: 84.36328,42.942795 - 13360: 82.456764,42.742104 - 13361: 80.28266,39.497555 - 13362: 80.88472,38.159595 - 13363: 84.095695,38.728226 - 13364: 84.39673,37.825104 - 13365: 81.152306,37.490616 - 13366: 82.25608,35.885067 - 13367: 82.824684,39.430656 - 13368: 83.25951,38.0258 - 13369: 82.557106,34.915047 - 13370: 84.63086,35.349884 - 13371: 81.11886,35.594578 - 13372: 81.82126,33.621086 - 13373: 83.35985,32.784863 - 13374: 84.865,32.48382 - 13375: 83.22606,31.848293 - 13376: 83.92846,30.376541 - 13377: 85.43361,29.640663 - 13378: 85.266365,30.543785 - 13379: 84.59741,25.559889 - 13380: 85.53395,26.228867 - 13381: 85.5005,22.214993 - 13382: 83.96191,22.014297 - 13383: 83.35985,20.943932 - 13384: 84.095695,19.204586 - 13385: 84.93189,19.104239 - 13386: 84.69776,23.419155 - 13387: 84.96534,21.178074 - 13388: 84.0288,28.102009 - 13389: 85.266365,27.43303 - 13390: 83.10618,29.692863 + 12950: 83.99086,9.956577 + 12951: 85.02774,9.990025 + 12952: 84.89394,7.447905 + 12953: 82.652954,6.2437425 + 12954: 83.99086,2.4974585 + 12955: 84.860504,10.659004 + 12956: 84.639755,4.874166 + 12957: 85.91129,3.5657887 + 12958: 84.29863,-0.23728037 + 12959: 83.194855,-2.277667 + 12960: 85.93757,-3.4483805 + 12961: 88.07822,-2.5452585 + 12962: 86.33894,-5.354972 + 12963: 87.17513,-6.960522 + 12964: 91.021614,-5.756359 + 12965: 90.453,-2.8797479 + 12966: 92.39297,-1.1404023 + 12967: 93.36295,-3.0469933 + 12968: 88.37925,-4.853237 + 12969: 89.38268,-6.4587874 + 12970: 90.92127,-8.632969 + 12971: 90.5868,-9.90403 + 12972: 89.483025,-10.305417 + 12973: 93.96501,-11.308887 + 12974: 97.17599,-11.643375 + 12975: 99.01561,-11.576478 + 12976: 99.31664,-7.3953576 + 12977: 96.707726,-5.6225634 + 12978: 99.11595,-5.354972 + 12979: 96.348206,-12.916437 + 12980: 100.969,-14.2338295 + 12981: 105.050446,-12.2277155 + 12982: 107.79316,-11.525288 + 12983: 104.78287,-13.231186 + 12984: 105.050446,-15.639509 + 12985: 107.8935,-16.60953 + 12986: 107.960396,-17.311958 + 12987: 105.45182,-13.06394 + 12988: 100.6688,-10.889757 + 12989: 107.55902,-10.45492 + 12990: 106.89007,-14.702938 + 12991: 110.0676,-19.686832 + 12992: 109.90036,-21.09169 + 12993: 113.713394,-19.118202 + 12994: 114.21511,-17.445753 + 12995: 112.877205,-20.924446 + 12996: 113.37892,-23.66726 + 12997: 113.111336,-25.172464 + 12998: 115.25199,-23.366219 + 12999: 111.07103,-17.5461 + 13000: 117.50328,-17.378857 + 13001: 121.78457,-15.577238 + 13002: 119.71082,-11.357197 + 13003: 123.92524,-12.624359 + 13004: 120.51357,-14.831991 + 13005: 125.7983,-16.069603 + 13006: 130.38065,-17.173418 + 13007: 125.59762,-13.694725 + 13008: 125.631065,-12.3233185 + 13009: 123.62421,-8.476688 + 13010: 126.83518,-7.5066686 + 13011: 126.03243,-12.189523 + 13012: 129.0093,-14.3302555 + 13013: 123.22283,-8.844627 + 13014: 121.48355,-6.0349145 + 13015: 122.353195,-4.1952224 + 13016: 126.90208,-5.365935 + 13017: 124.360054,-6.335955 + 13018: 129.17653,-4.329018 + 13019: 131.14995,-2.3555293 + 13020: 127.06931,-9.011871 + 13021: 124.15937,-9.747749 + 13022: 124.12592,-16.939276 + 13023: 132.68483,-16.236847 + 13024: 134.19756,-16.537888 + 13025: 129.29816,-18.544825 + 13026: 133.911,-19.180355 + 13027: 135.00752,-17.307213 + 13028: 137.11009,-19.08001 + 13029: 136.07321,-20.618662 + 13030: 139.21729,-20.484865 + 13031: 134.33392,-13.694725 + 13032: 136.17355,-9.881544 + 13033: 139.21729,-7.406322 + 13034: 141.22415,-8.844627 + 13035: 134.13324,-10.383279 + 13036: 130.16107,-6.1181226 + 13037: 134.07231,-3.3671165 + 13038: 131.79787,-0.18946552 + 13039: 129.45653,-0.022221088 + 13040: 128.48654,-0.89189386 + 13041: 128.62035,1.6167779 + 13042: 134.07231,0.91435003 + 13043: 134.23955,-1.5608726 + 13044: 137.88535,-0.4905057 + 13045: 137.38364,1.817472 + 13046: 139.45738,-0.28981256 + 13047: 137.88535,-1.5274234 + 13048: 140.52771,-2.8988314 + 13049: 142.40079,-0.89189386 + 13050: 144.57489,0.546412 + 13051: 145.61177,-1.1594853 + 13052: 141.63148,-3.4340143 + 13053: 141.19667,-5.5078497 + 13054: 146.04659,-4.437484 + 13055: 144.47453,-1.7950149 + 13056: 149.39136,-2.1295052 + 13057: 145.54486,-4.53783 + 13058: 143.6718,-6.277176 + 13059: 145.1435,-7.3475432 + 13060: 148.58861,-3.56781 + 13061: 152.10011,-1.7950149 + 13062: 149.51093,-5.006115 + 13063: 150.97789,-5.4539313 + 13064: 151.51762,-2.8061905 + 13065: 153.46179,1.0000334 + 13066: 154.59932,-0.103649616 + 13067: 153.59616,-4.0505056 + 13068: 153.42859,-6.2917333 + 13069: 155.66959,-5.1879177 + 13070: 152.65929,-2.9133887 + 13071: 149.14728,0.3980584 + 13072: 146.03665,1.4015274 + 13073: 148.61212,4.2781377 + 13074: 148.61212,1.5353231 + 13075: 151.0538,-0.30436897 + 13076: 152.59239,2.4718938 + 13077: 149.28108,3.1074243 + 13078: 146.20389,4.712975 + 13079: 147.17387,8.158218 + 13080: 149.98347,8.927544 + 13081: 147.97661,9.200657 + 13082: 148.26285,6.2326055 + 13083: 145.9884,9.845093 + 13084: 145.78772,13.189989 + 13085: 148.2963,14.929335 + 13086: 149.0656,12.7217045 + 13087: 147.35976,13.491028 + 13088: 147.72769,17.504906 + 13089: 145.95496,18.809414 + 13090: 146.25598,17.00317 + 13091: 148.83147,20.615658 + 13092: 153.01242,21.251188 + 13093: 152.14278,19.043556 + 13094: 154.81859,17.471455 + 13095: 155.48755,19.846333 + 13096: 156.65822,18.508373 + 13097: 153.2131,17.739048 + 13098: 156.72511,15.832457 + 13099: 157.26027,14.059662 + 13100: 154.9524,12.3537655 + 13101: 158.2637,12.688255 + 13102: 158.83232,11.584438 + 13103: 158.12991,10.112684 + 13104: 156.3572,8.741278 + 13105: 158.46439,10.313377 + 13106: 156.25685,12.052723 + 13107: 156.2234,14.628294 + 13108: 155.521,12.019276 + 13109: 156.2903,7.905054 + 13110: 153.64793,6.868136 + 13111: 156.82545,6.165707 + 13112: 157.99612,8.674379 + 13113: 158.66508,8.239542 + 13114: 156.18996,6.13226 + 13115: 154.91895,4.359463 + 13116: 155.25342,2.8877091 + 13117: 156.05615,2.7204652 + 13118: 153.78172,3.790831 + 13119: 153.41379,5.262585 + 13120: 147.33337,22.963997 + 13121: 146.73131,24.846014 + 13122: 148.10266,29.308487 + 13123: 150.17642,28.47226 + 13124: 147.19958,25.963589 + 13125: 148.77162,27.736382 + 13126: 151.04607,28.7733 + 13127: 146.73131,31.449219 + 13128: 144.92514,31.148178 + 13129: 143.11896,28.907097 + 13130: 141.1121,28.338467 + 13131: 145.09238,31.884056 + 13132: 145.89511,27.100853 + 13133: 147.93542,27.702934 + 13134: 146.93199,29.542625 + 13135: 145.25961,27.836731 + 13136: 146.2296,28.20467 + 13137: 153.05292,30.445747 + 13138: 154.12325,31.181625 + 13139: 150.84538,27.970528 + 13140: 153.72188,28.47226 + 13141: 155.92943,31.984402 + 13142: 157.86938,32.084747 + 13143: 156.79906,29.74332 + 13144: 158.47145,32.1182 + 13145: 159.47488,34.894463 + 13146: 157.6687,37.637276 + 13147: 157.51154,28.940544 + 13148: 157.2774,25.136168 + 13149: 155.43779,23.870918 + 13150: 156.34087,22.290188 + 13151: 139.68633,25.909843 + 13152: 134.06699,25.240746 + 13153: 133.7995,27.582264 + 13154: 137.61253,30.258183 + 13155: 139.82008,31.897179 + 13156: 141.62627,34.17171 + 13157: 139.45216,31.56269 + 13158: 138.44873,28.418488 + 13159: 137.04393,27.71606 + 13160: 132.89642,31.027508 + 13161: 130.55508,31.696487 + 13162: 129.01648,29.488857 + 13163: 133.39813,28.251244 + 13164: 130.05336,29.957142 + 13165: 131.45818,30.29163 + 13166: 123.89898,25.80947 + 13167: 126.8753,26.845898 + 13168: 127.300026,30.859772 + 13169: 129.84206,31.562199 + 13170: 129.00586,27.34763 + 13171: 130.7786,28.61869 + 13172: 130.10963,26.678652 + 13173: 129.70827,24.604816 + 13174: 125.35546,24.724274 + 13175: 129.51837,34.223328 + 13176: 127.23322,36.464413 + 13177: 130.14305,39.976555 + 13178: 134.02303,42.38488 + 13179: 131.98271,39.876205 + 13180: 131.88237,38.5048 + 13181: 134.25716,40.94657 + 13182: 129.74171,43.488693 + 13183: 133.58821,45.662876 + 13184: 131.38066,48.104652 + 13185: 133.82234,45.26149 + 13186: 134.62508,42.518673 + 13187: 137.26746,42.853165 + 13188: 137.3678,40.511738 + 13189: 135.22714,39.809307 + 13190: 138.23744,39.17378 + 13191: 138.30432,41.214165 + 13192: 139.6088,39.47482 + 13193: 139.80948,36.23027 + 13194: 141.28117,35.92923 + 13195: 142.81976,31.41362 + 13196: 127.50815,41.05332 + 13197: 124.287636,42.913788 + 13198: 125.35796,42.27826 + 13199: 120.94287,45.589706 + 13200: 120.60839,49.0015 + 13201: 118.434296,47.262154 + 13202: 120.87597,45.188316 + 13203: 123.08352,46.961113 + 13204: 121.344246,44.48589 + 13205: 122.21388,42.54585 + 13206: 123.08352,45.054916 + 13207: 120.80908,47.37757 + 13208: 118.50118,45.20339 + 13209: 119.17014,46.090527 + 13210: 126.22761,49.271015 + 13211: 128.26791,50.40828 + 13212: 129.67271,49.036873 + 13213: 128.10068,51.578995 + 13214: 126.127266,53.95387 + 13215: 127.46517,47.89961 + 13216: 125.19073,51.98038 + 13217: 127.130684,55.29183 + 13218: 127.130684,58.837418 + 13219: 124.32108,58.770523 + 13220: 121.8794,57.332214 + 13221: 120.14012,60.34262 + 13222: 122.84939,62.650597 + 13223: 122.91628,60.476418 + 13224: 122.882835,57.26532 + 13225: 126.02691,58.13499 + 13226: 125.62554,62.048515 + 13227: 121.377686,62.583702 + 13228: 118.33395,58.13499 + 13229: 119.43772,57.46601 + 13230: 120.74218,56.19495 + 13231: 121.478035,55.158035 + 13232: 121.979744,59.272255 + 13233: 127.26449,60.309174 + 13234: 128.4017,59.4395 + 13235: 127.03034,57.031174 + 13236: 119.87331,53.69899 + 13237: 119.43837,52.059887 + 13238: 119.6719,49.985504 + 13239: 115.35749,51.992752 + 13240: 114.28716,53.130016 + 13241: 112.848915,52.159996 + 13242: 114.4544,50.520996 + 13243: 112.71512,49.38373 + 13244: 109.37035,49.249935 + 13245: 110.70826,46.941956 + 13246: 110.306885,46.674366 + 13247: 110.072754,50.01926 + 13248: 111.37721,50.554443 + 13249: 111.07618,48.07922 + 13250: 105.89179,47.945427 + 13251: 105.42352,49.71822 + 13252: 105.49042,46.507122 + 13253: 108.199684,45.403305 + 13254: 106.76144,44.466736 + 13255: 106.326614,45.035366 + 13256: 108.60105,47.477142 + 13257: 106.62764,49.35028 + 13258: 109.938965,45.604 + 13259: 103.41306,49.305527 + 13260: 100.12016,49.45305 + 13261: 98.849144,48.282333 + 13262: 98.28054,48.850967 + 13263: 97.176765,50.389618 + 13264: 96.10644,51.29274 + 13265: 94.43405,48.951313 + 13266: 96.30712,47.81405 + 13267: 93.36372,48.44958 + 13268: 92.22651,49.98823 + 13269: 93.83199,52.06207 + 13270: 92.42719,51.69413 + 13271: 90.01896,48.683723 + 13272: 89.85172,47.44611 + 13273: 93.73165,46.87748 + 13274: 96.006096,49.4196 + 13275: 93.229935,51.35964 + 13276: 91.122734,54.336597 + 13277: 103.695244,46.57869 + 13278: 103.37315,44.264954 + 13279: 105.41346,43.69632 + 13280: 106.35,42.324913 + 13281: 102.7042,42.39181 + 13282: 104.34313,42.559055 + 13283: 103.20592,40.48522 + 13284: 101.63387,41.622482 + 13285: 99.96149,41.555588 + 13286: 103.807976,39.347954 + 13287: 106.8782,39.983486 + 13288: 106.36829,38.847546 + 13289: 108.07412,39.34928 + 13290: 109.57927,40.419647 + 13291: 111.15131,39.449627 + 13292: 110.48236,37.40924 + 13293: 112.35543,39.483074 + 13294: 113.92747,39.884464 + 13295: 111.15131,37.40924 + 13296: 112.62301,36.840607 + 13297: 113.39231,40.553444 + 13298: 113.827126,42.29279 + 13299: 115.03124,41.99175 + 13300: 114.09471,40.453094 + 13301: 113.76023,37.1082 + 13302: 116.00123,36.405773 + 13303: 111.45234,35.636444 + 13304: 109.47893,34.666428 + 13305: 110.95062,32.726387 + 13306: 113.55955,34.632977 + 13307: 114.429184,34.19814 + 13308: 110.24822,32.92708 + 13309: 107.90688,32.425346 + 13310: 115.93433,32.626038 + 13311: 116.60329,34.83367 + 13312: 118.14188,35.83714 + 13313: 117.47292,33.462265 + 13314: 118.91117,34.632977 + 13315: 118.71049,37.40924 + 13316: 119.88116,37.910976 + 13317: 119.58013,35.000916 + 13318: 119.32879,32.759834 + 13319: 121.65273,34.53263 + 13320: 121.4717,36.573017 + 13321: 124.24781,35.034363 + 13322: 123.84675,33.495712 + 13323: 126.689644,34.83367 + 13324: 127.89377,33.796753 + 13325: 126.82343,32.157753 + 13326: 102.57333,37.691307 + 13327: 99.41506,38.895473 + 13328: 100.418495,40.53447 + 13329: 97.44165,39.564453 + 13330: 95.90305,37.72476 + 13331: 95.26755,39.497555 + 13332: 95.83616,39.6648 + 13333: 93.896194,37.65786 + 13334: 92.52484,37.9589 + 13335: 90.58488,39.865494 + 13336: 91.220375,41.671738 + 13337: 88.143196,42.54141 + 13338: 87.50768,40.668266 + 13339: 87.240105,39.698246 + 13340: 86.403915,42.50796 + 13341: 88.979385,45.986652 + 13342: 90.21695,47.157364 + 13343: 89.94936,43.47798 + 13344: 88.31043,44.146957 + 13345: 86.872185,45.183876 + 13346: 88.17664,46.655632 + 13347: 92.2907,47.32461 + 13348: 91.7221,46.05355 + 13349: 87.17289,47.458405 + 13350: 84.83155,44.48145 + 13351: 82.456764,43.979713 + 13352: 83.79467,41.471043 + 13353: 84.7981,40.467575 + 13354: 82.95848,41.170002 + 13355: 84.36328,42.942795 + 13356: 82.456764,42.742104 + 13357: 80.28266,39.497555 + 13358: 80.88472,38.159595 + 13359: 84.095695,38.728226 + 13360: 84.39673,37.825104 + 13361: 81.152306,37.490616 + 13362: 82.25608,35.885067 + 13363: 82.824684,39.430656 + 13364: 83.25951,38.0258 + 13365: 82.557106,34.915047 + 13366: 84.63086,35.349884 + 13367: 81.11886,35.594578 + 13368: 81.82126,33.621086 + 13369: 83.35985,32.784863 + 13370: 84.865,32.48382 + 13371: 83.22606,31.848293 + 13372: 83.92846,30.376541 + 13373: 85.43361,29.640663 + 13374: 85.266365,30.543785 + 13375: 84.59741,25.559889 + 13376: 85.53395,26.228867 + 13377: 85.5005,22.214993 + 13378: 83.96191,22.014297 + 13379: 83.35985,20.943932 + 13380: 84.095695,19.204586 + 13381: 84.93189,19.104239 + 13382: 84.69776,23.419155 + 13383: 84.96534,21.178074 + 13384: 84.0288,28.102009 + 13385: 85.266365,27.43303 + 13386: 83.10618,29.692863 - node: color: '#FFFFFFFF' id: Grassd1 @@ -7024,14 +7037,14 @@ entities: 2126: -2.1171129,-35.78631 2127: -1.2400402,-35.132195 4539: -36.929268,-24.863571 - 5768: 45.914944,-9.086799 - 6129: -71.54367,-89.90606 - 6130: -71.900444,-89.14788 - 6131: -71.900444,-90.02499 - 6146: -74.291214,-77.65058 - 6151: -65.34293,-77.104576 - 6152: -65.13482,-76.77753 - 6160: -76.128426,-88.093765 + 5764: 45.914944,-9.086799 + 6125: -71.54367,-89.90606 + 6126: -71.900444,-89.14788 + 6127: -71.900444,-90.02499 + 6142: -74.291214,-77.65058 + 6147: -65.34293,-77.104576 + 6148: -65.13482,-76.77753 + 6156: -76.128426,-88.093765 - node: cleanable: True color: '#FFFFFFFF' @@ -7048,4246 +7061,4246 @@ entities: color: '#825AFFFF' id: Grassd2 decals: - 13391: 83.383514,7.4388547 - 13392: 83.272026,11.452446 - 13393: 86.12623,11.809235 - 13394: 83.45041,10.315182 - 13395: 83.428116,8.665033 - 13396: 85.23429,9.222515 - 13397: 84.810616,8.263645 - 13398: 82.49158,8.665033 - 13399: 82.0902,7.460871 - 13400: 83.96328,6.635796 - 13401: 85.23429,6.769593 - 13402: 83.67339,6.0783143 - 13403: 82.224,6.412804 - 13404: 81.42125,5.699226 - 13405: 81.46585,4.4504647 - 13406: 83.36121,4.338968 - 13407: 84.45384,5.364736 - 13408: 85.301186,4.8072534 - 13409: 82.915245,3.8706822 - 13410: 84.36465,3.2017035 - 13411: 85.65796,4.762655 - 13412: 84.38695,2.8003154 - 13413: 84.58763,3.7368865 - 13414: 83.249725,2.5550237 - 13415: 84.56533,1.6630511 - 13416: 84.498436,0.8825755 - 13417: 83.6511,0.7710786 - 13418: 83.49501,0.23589563 - 13419: 83.16491,-1.1185021 - 13420: 84.48065,-1.2527099 - 13421: 84.03458,-2.1443615 - 13422: 84.012276,-3.103232 - 13423: 84.971115,-2.099763 - 13424: 85.260994,-2.6572456 - 13425: 83.43252,-3.616116 - 13426: 84.43595,-4.7533803 - 13427: 84.993416,-5.42236 - 13428: 85.127205,-4.1958976 - 13429: 85.41708,-5.199367 - 13430: 85.68466,-6.492727 - 13431: 87.71382,-6.158237 - 13432: 86.75499,-4.4411902 - 13433: 86.977974,-3.415422 - 13434: 87.80302,-4.485789 - 13435: 85.46168,-5.4669585 - 13436: 84.03458,-5.75685 - 13437: 85.99684,-7.3623996 - 13438: 85.70696,-7.942181 - 13439: 86.86648,-8.120575 - 13440: 88.22669,-7.540794 - 13441: 87.60233,-8.499664 - 13442: 85.61777,-6.559624 - 13443: 87.69152,-5.08787 - 13444: 86.6435,-3.6607146 - 13445: 86.554306,-2.2781577 - 13446: 88.026,-2.2112598 - 13447: 88.33818,-3.8168101 - 13448: 89.40851,-3.4823203 - 13449: 89.52,-1.87677 - 13450: 90.81331,-1.3638859 - 13451: 89.5423,-3.0140347 - 13452: 90.16666,-4.574986 - 13453: 89.52,-4.976373 - 13454: 91.370766,-4.2850947 - 13455: 91.05859,-2.6572456 - 13456: 91.88364,-1.8321714 - 13457: 91.17008,-3.7499118 - 13458: 91.682945,-4.351993 - 13459: 92.88706,-3.348524 - 13460: 92.173515,-2.5680485 - 13461: 91.54916,-4.129 - 13462: 91.63835,-5.8014483 - 13463: 89.29701,-7.540794 - 13464: 90.05516,-8.298971 - 13465: 89.36391,-8.32127 - 13466: 88.36048,-9.257841 - 13467: 88.62806,-10.328207 - 13468: 88.80645,-10.930288 - 13469: 91.52686,-10.4843025 - 13470: 92.70868,-9.61463 - 13471: 91.12549,-10.662697 - 13472: 90.56802,-11.777662 - 13473: 92.84247,-10.952587 - 13474: 92.73098,-9.347038 - 13475: 89.63149,-9.302439 - 13476: 90.83561,-7.228604 - 13477: 90.23355,-6.604223 - 13478: 91.54916,-6.448128 - 13479: 92.55259,-5.1547685 - 13480: 92.3742,-3.9060073 - 13481: 93.51142,-3.7053132 - 13482: 94.84933,-3.928306 - 13483: 94.49255,-2.099763 - 13484: 94.11348,-1.0293965 - 13485: 93.06545,-1.87677 - 13486: 94.53715,-1.2077909 - 13487: 94.93852,-0.82870245 - 13488: 92.70868,-1.8098722 - 13489: 93.8459,-1.3638859 - 13490: 93.8236,-2.4788513 - 13491: 93.65576,-9.749707 - 13492: 94.4362,-10.641679 - 13493: 91.89418,-10.953869 - 13494: 93.78955,-11.801243 - 13495: 94.70379,-10.820073 - 13496: 94.503105,-11.979637 - 13497: 95.50653,-12.20263 - 13498: 95.595726,-10.886971 - 13499: 96.59916,-11.043067 - 13500: 97.4242,-11.288359 - 13501: 97.602585,-9.905802 - 13502: 98.249245,-9.549013 - 13503: 98.49452,-10.195693 - 13504: 100.01082,-10.128795 - 13505: 99.38647,-9.1922245 - 13506: 98.42763,-8.7685375 - 13507: 98.51682,-7.965762 - 13508: 99.43106,-8.590143 - 13509: 100.3453,-7.675871 - 13510: 99.20808,-6.9399943 - 13511: 98.00396,-6.627804 - 13512: 98.829,-5.691233 - 13513: 99.631744,-5.1560497 - 13514: 100.43449,-4.843859 - 13515: 100.72437,-4.5762677 - 13516: 97.602585,-4.843859 - 13517: 98.36073,-5.0668526 - 13518: 95.907906,-5.0445533 - 13519: 96.97025,-14.029694 - 13520: 97.34933,-13.271519 - 13521: 98.84332,-12.424145 - 13522: 98.41965,-13.449913 - 13523: 99.53457,-13.53911 - 13524: 99.69067,-12.446444 - 13525: 100.98397,-11.353777 - 13526: 102.41107,-10.95239 - 13527: 101.31845,-12.201151 - 13528: 101.63062,-13.226919 - 13529: 102.946236,-12.022757 - 13530: 102.96854,-10.796295 - 13531: 100.69409,-13.739803 - 13532: 98.68723,-13.672905 - 13533: 99.333885,-14.364183 - 13534: 100.87248,-14.943966 - 13535: 101.987404,-15.189259 - 13536: 102.74555,-13.048525 - 13537: 103.61519,-13.449913 - 13538: 101.407646,-15.211557 - 13539: 103.21381,-15.702143 - 13540: 103.63749,-14.319586 - 13541: 102.70095,-13.918198 - 13542: 102.87934,-15.278456 - 13543: 101.63062,-16.527216 - 13544: 103.704384,-16.46032 - 13545: 104.57403,-15.4122505 - 13546: 104.841606,-14.074293 - 13547: 103.52599,-12.067355 - 13548: 104.17265,-10.751696 - 13549: 103.52599,-9.569833 - 13550: 101.89821,-10.95239 - 13551: 101.65292,-9.68133 - 13552: 102.54487,-10.01582 - 13553: 103.280716,-10.1273155 - 13554: 105.287575,-9.97122 - 13555: 104.9308,-8.900854 - 13556: 106.46939,-9.05695 - 13557: 105.73354,-10.595601 - 13558: 105.265274,-11.063887 - 13559: 106.64778,-10.840893 - 13560: 106.89306,-10.060417 - 13561: 109.47968,-10.439507 - 13562: 109.61347,-10.484104 - 13563: 106.826164,-12.22345 - 13564: 106.95996,-12.669436 - 13565: 108.92222,-12.178852 - 13566: 109.47968,-12.268049 - 13567: 109.2344,-13.115423 - 13568: 108.67694,-13.628307 - 13569: 107.628914,-13.762102 - 13570: 106.98226,-13.606007 - 13571: 106.58089,-13.829 - 13572: 108.38706,-13.516809 - 13573: 109.85876,-14.074293 - 13574: 109.1675,-14.185789 - 13575: 108.11948,-14.943966 - 13576: 107.7404,-14.943966 - 13577: 108.81073,-15.45685 - 13578: 106.64778,-16.036633 - 13579: 106.4248,-16.371122 - 13580: 106.826164,-18.155066 - 13581: 105.71124,-18.065868 - 13582: 105.64435,-16.70561 - 13583: 105.599754,-15.79134 - 13584: 105.08689,-17.151598 - 13585: 103.97196,-17.263094 - 13586: 105.33217,-17.820576 - 13587: 106.848465,-16.995502 - 13588: 105.755844,-15.010864 - 13589: 105.443665,-14.185789 - 13590: 103.61519,-15.12236 - 13591: 102.61605,-16.521912 - 13592: 102.66065,-16.945599 - 13593: 107.7447,-18.707245 - 13594: 108.99341,-17.88217 - 13595: 109.75156,-16.811804 - 13596: 110.375916,-16.388117 - 13597: 109.55087,-15.273151 - 13598: 109.64007,-16.27662 - 13599: 109.99684,-17.54768 - 13600: 109.70696,-18.305857 - 13601: 108.74813,-18.751842 - 13602: 108.36906,-19.755312 - 13603: 109.50628,-20.40199 - 13604: 111.84762,-18.395054 - 13605: 112.248985,-17.56998 - 13606: 111.08947,-19.532318 - 13607: 111.44624,-20.73648 - 13608: 110.46511,-21.271666 - 13609: 111.20096,-22.275135 - 13610: 111.80302,-21.40546 - 13611: 111.20096,-20.49119 - 13612: 110.821884,-20.201298 - 13613: 113.029434,-18.595749 - 13614: 112.67266,-17.770674 - 13615: 111.26785,-16.901001 - 13616: 111.82532,-16.075926 - 13617: 113.09633,-16.00903 - 13618: 112.62806,-16.655708 - 13619: 113.653786,-16.388117 - 13620: 114.79101,-15.741438 - 13621: 115.54916,-16.477314 - 13622: 116.329605,-16.700308 - 13623: 116.797874,-17.792973 - 13624: 114.36734,-18.305857 - 13625: 115.95053,-19.130932 - 13626: 117.13235,-18.238958 - 13627: 115.23698,-17.614578 - 13628: 115.57146,-17.057096 - 13629: 116.485695,-19.019434 - 13630: 117.24384,-19.331625 - 13631: 115.95053,-20.49119 - 13632: 114.18895,-19.82221 - 13633: 114.54572,-19.599216 - 13634: 114.300446,-21.026373 - 13635: 115.34847,-21.650753 - 13636: 115.48226,-22.029842 - 13637: 113.92137,-21.78455 - 13638: 113.58689,-20.892576 - 13639: 113.31931,-22.230536 - 13640: 113.185524,-22.721119 - 13641: 112.405075,-22.899513 - 13642: 111.84762,-22.899513 - 13643: 113.051735,-24.594261 - 13644: 113.341606,-25.64233 - 13645: 114.255844,-25.196342 - 13646: 114.8579,-24.438168 - 13647: 112.248985,-24.728058 - 13648: 112.873344,-26.5566 - 13649: 111.89221,-23.67999 - 13650: 114.03286,-22.810318 - 13651: 116.83651,-20.478786 - 13652: 118.821075,-18.739439 - 13653: 118.19672,-17.579876 - 13654: 119.133255,-16.843998 - 13655: 118.91027,-18.204256 - 13656: 119.8245,-18.38265 - 13657: 120.31507,-17.490679 - 13658: 121.02862,-16.888597 - 13659: 121.20701,-18.04816 - 13660: 120.76104,-18.806337 - 13661: 121.89826,-17.602175 - 13662: 122.433426,-16.687902 - 13663: 119.62382,-15.81823 - 13664: 118.664986,-16.308815 - 13665: 117.72845,-15.550638 - 13666: 119.155556,-13.387606 - 13667: 119.289345,-12.89702 - 13668: 118.01833,-15.48374 - 13669: 116.81422,-15.952026 - 13670: 117.260185,-16.241917 - 13671: 119.53463,-14.23498 - 13672: 118.508896,-14.0342865 - 13673: 118.12982,-12.807823 - 13674: 118.21902,-10.711689 - 13675: 118.664986,-9.886615 - 13676: 118.486595,-11.2914715 - 13677: 118.88797,-11.98275 - 13678: 119.57922,-10.577893 - 13679: 120.60495,-9.931213 - 13680: 121.76447,-10.533295 - 13681: 120.89483,-11.915852 - 13682: 121.2962,-12.451035 - 13683: 122.36653,-11.00158 - 13684: 123.347664,-10.4440975 - 13685: 122.544914,-11.871254 - 13686: 121.184715,-13.120014 - 13687: 120.35967,-13.632898 - 13688: 121.85366,-14.346476 - 13689: 123.08008,-13.566 - 13690: 123.39226,-13.699797 - 13691: 122.65641,-14.368776 - 13692: 123.035484,-15.238449 - 13693: 124.03892,-14.970858 - 13694: 124.752464,-13.632898 - 13695: 125.35453,-13.120014 - 13696: 124.79706,-15.082354 - 13697: 123.92742,-15.862829 - 13698: 123.25847,-16.888597 - 13699: 124.908554,-17.512978 - 13700: 126.24647,-16.710203 - 13701: 126.35795,-14.0342865 - 13702: 127.004616,-13.365307 - 13703: 128.00804,-14.279577 - 13704: 127.0938,-15.349945 - 13705: 127.249886,-15.996624 - 13706: 128.18643,-16.46491 - 13707: 123.48145,-18.025862 - 13708: 126.49044,-18.484976 - 13709: 127.47195,-17.818092 - 13710: 128.74297,-15.4766655 - 13711: 129.7464,-14.718489 - 13712: 129.30043,-15.878054 - 13713: 127.89563,-17.126814 - 13714: 126.35703,-17.149113 - 13715: 128.3416,-17.5505 - 13716: 129.07744,-17.5505 - 13717: 127.94023,-18.687765 - 13718: 128.31929,-19.624336 - 13719: 129.34503,-20.13722 - 13720: 129.7018,-19.289846 - 13721: 131.64177,-17.528202 - 13722: 132.73439,-18.21948 - 13723: 130.77213,-18.977657 - 13724: 132.24382,-19.624336 - 13725: 131.84245,-18.687765 - 13726: 130.39305,-18.130283 - 13727: 131.88705,-18.018787 - 13728: 131.35188,-16.435535 - 13729: 131.35188,-15.498964 - 13730: 130.57144,-15.565863 - 13731: 130.74983,-14.317102 - 13732: 132.26613,-14.227905 - 13733: 131.35188,-14.98608 - 13734: 130.43765,-16.145645 - 13735: 133.22496,-14.807686 - 13736: 132.22153,-14.383999 - 13737: 130.52684,-13.358231 - 13738: 129.38962,-12.867647 - 13739: 129.47882,-11.730382 - 13740: 128.56458,-11.908777 - 13741: 128.47539,-13.179836 - 13742: 127.91792,-11.975675 - 13743: 127.91792,-10.860709 - 13744: 127.69495,-10.548519 - 13745: 126.86988,-11.239798 - 13746: 126.62461,-12.198668 - 13747: 131.70866,-13.380531 - 13748: 133.87161,-14.3617 - 13749: 135.20952,-13.246735 - 13750: 135.03113,-14.69619 - 13751: 133.51483,-15.521265 - 13752: 133.69322,-16.680828 - 13753: 134.31758,-15.03068 - 13754: 134.01814,-15.900354 - 13755: 134.83151,-16.115732 - 13756: 133.50954,-17.927612 - 13757: 135.12816,-18.655432 - 13758: 136.03627,-16.96529 - 13759: 136.40445,-15.605034 - 13760: 136.94887,-16.653101 - 13761: 135.26062,-18.629814 - 13762: 135.82082,-19.323751 - 13763: 136.3346,-17.657852 - 13764: 136.76465,-15.896206 - 13765: 134.92064,-14.758942 - 13766: 135.96866,-16.275295 - 13767: 136.54842,-18.63902 - 13768: 135.72337,-18.460627 - 13769: 134.60846,-19.508694 - 13770: 135.29971,-20.62366 - 13771: 136.9498,-20.579062 - 13772: 137.61874,-18.170736 - 13773: 137.68564,-19.753986 - 13774: 137.19508,-20.645958 - 13775: 137.59645,-21.337238 - 13776: 138.82286,-20.779755 - 13777: 138.37689,-19.486395 - 13778: 137.99782,-17.501757 - 13779: 137.70795,-17.947742 - 13780: 139.29114,-20.378366 - 13781: 138.4661,-20.757456 - 13782: 138.77827,-21.760925 - 13783: 139.8709,-20.155375 - 13784: 139.11275,-23.277277 - 13785: 140.27226,-23.723263 - 13786: 142.569,-23.054283 - 13787: 142.21223,-24.972025 - 13788: 142.90349,-23.968555 - 13789: 143.14877,-23.634066 - 13790: 135.27621,-12.768595 - 13791: 135.85876,-12.21109 - 13792: 134.78844,-11.653607 - 13793: 134.008,-12.1664915 - 13794: 134.34247,-10.783935 - 13795: 135.1898,-11.25222 - 13796: 135.61348,-10.717036 - 13797: 133.785,-10.694737 - 13798: 133.42824,-10.806233 - 13799: 135.21211,-8.9999895 - 13800: 135.68037,-8.264112 - 13801: 136.32703,-8.888494 - 13802: 135.47969,-9.914262 - 13803: 136.6392,-9.490575 - 13804: 136.7061,-7.550535 - 13805: 137.15207,-6.7923584 - 13806: 137.50885,-7.9296227 - 13807: 137.06288,-9.200684 - 13808: 136.6392,-10.315649 - 13809: 136.32703,-10.873132 - 13810: 137.59804,-10.159554 - 13811: 138.11092,-9.4236765 - 13812: 137.46425,-8.487105 - 13813: 136.72841,-7.907324 - 13814: 136.10405,-7.1045485 - 13815: 138.69067,-7.8404255 - 13816: 139.09204,-9.3121805 - 13817: 139.18123,-9.289881 - 13818: 139.50275,-7.238344 - 13819: 139.15565,-5.2092648 - 13820: 139.79713,-4.814976 - 13821: 140.91502,-6.690422 - 13822: 143.06134,-7.2017827 - 13823: 142.3661,-5.090787 - 13824: 142.29568,-2.6455703 - 13825: 141.61696,-4.269257 - 13826: 139.52301,-5.600084 - 13827: 139.07704,-6.02377 - 13828: 140.52644,-6.625851 - 13829: 140.97241,-7.4509263 - 13830: 142.10963,-7.3394294 - 13831: 141.93124,-6.135267 - 13832: 142.3995,-6.112967 - 13833: 140.50414,-8.320599 - 13834: 140.30345,-8.655088 - 13835: 142.28801,-8.766584 - 13836: 142.37721,-7.6516194 - 13837: 143.53673,-8.008408 - 13838: 144.11649,-7.807715 - 13839: 144.40637,-6.6927495 - 13840: 144.74084,-5.5108857 - 13841: 145.81117,-6.4028583 - 13842: 145.3652,-5.3993897 - 13843: 143.51443,-4.9980025 - 13844: 142.93468,-4.507417 - 13845: 143.40294,-3.994533 - 13846: 144.85234,-4.329023 - 13847: 144.91924,-5.265594 - 13848: 145.71992,-4.4851184 - 13849: 145.11511,-3.9722342 - 13850: 146.633,-3.0075665 - 13851: 146.98555,-4.6051326 - 13852: 146.24408,-5.3642077 - 13853: 146.56293,-5.676033 - 13854: 147.46205,-5.5645294 - 13855: 147.61832,-4.360367 - 13856: 148.39876,-4.89555 - 13857: 147.17235,-6.16661 - 13858: 146.77098,-6.8355894 - 13859: 147.90819,-6.657195 - 13860: 148.26497,-6.032814 - 13861: 149.09001,-5.832121 - 13862: 149.42448,-6.5233994 - 13863: 150.8293,-5.7652225 - 13864: 149.89276,-4.22657 - 13865: 150.00426,-3.490693 - 13866: 150.6286,-5.2523384 - 13867: 150.22723,-6.010515 - 13868: 151.31985,-6.6348953 - 13869: 152.36789,-6.032814 - 13870: 151.60974,-4.449564 - 13871: 152.68007,-4.137373 - 13872: 152.68007,-5.2523384 - 13873: 152.43478,-6.679494 - 13874: 152.2787,-7.638365 - 13875: 152.10031,-7.8836565 - 13876: 154.15176,-7.214678 - 13877: 154.79842,-5.631427 - 13878: 154.90991,-4.984747 - 13879: 154.41934,-6.8355894 - 13880: 153.572,-7.5491676 - 13881: 154.77612,-7.749861 - 13882: 155.44507,-6.5233994 - 13883: 156.11403,-6.4119024 - 13884: 156.3816,-6.6125965 - 13885: 154.68692,-4.6056585 - 13886: 153.5274,-3.6690884 - 13887: 154.62003,-1.9297419 - 13888: 153.41591,-0.74787855 - 13889: 151.00768,-1.5060549 - 13890: 150.13805,-2.130436 - 13891: 150.80699,-0.8370762 - 13892: 152.05571,-0.19039631 - 13893: 151.47595,1.0806642 - 13894: 149.66977,0.34478712 - 13895: 148.97852,-1.4391575 - 13896: 148.13118,-1.1938648 - 13897: 148.28728,0.14409351 - 13898: 147.7744,1.2813582 - 13899: 147.39532,1.0806642 - 13900: 147.10545,-0.25729418 - 13901: 147.72981,-1.8405447 - 13902: 147.7075,-2.219633 - 13903: 146.72638,-1.2161646 - 13904: 146.4142,-0.056600094 - 13905: 146.10202,0.5677805 - 13906: 145.72295,0.5008826 - 13907: 145.21008,-0.77017784 - 13908: 145.18779,-1.8182459 - 13909: 145.54456,-2.7771158 - 13910: 145.32158,-3.0893059 - 13911: 144.13976,-2.7994146 - 13912: 143.5154,-1.907443 - 13913: 143.6046,-0.52488565 - 13914: 143.5154,0.25558996 - 13915: 143.13632,0.67927694 - 13916: 142.60117,-0.4133892 - 13917: 142.80185,-1.706749 - 13918: 143.09174,-2.7102175 - 13919: 142.22209,-3.1339045 - 13920: 141.30785,-2.5764217 - 13921: 141.44164,-1.0823679 - 13922: 141.50854,0.25558996 - 13923: 141.15176,0.87997055 - 13924: 140.6166,0.9691677 - 13925: 140.14833,-0.72557926 - 13926: 140.43822,-1.8405447 - 13927: 140.34901,-2.4872246 - 13928: 140.28212,-3.3122988 - 13929: 139.91281,-3.579524 - 13930: 139.17696,-3.6654038 - 13931: 139.19926,-2.059854 - 13932: 138.97627,-0.7887931 - 13933: 138.5303,0.103179455 - 13934: 138.84248,1.106648 - 13935: 139.73442,1.7310286 - 13936: 140.44798,1.2850423 - 13937: 140.55946,-0.119814396 - 13938: 138.26273,0.97285223 - 13939: 137.57147,1.5526338 - 13940: 137.014,0.839056 - 13941: 136.92482,0.19237661 - 13942: 137.48228,-1.6138673 - 13943: 138.6864,-2.394343 - 13944: 138.6864,-3.1748185 - 13945: 137.90594,-3.866098 - 13946: 136.96942,-3.643104 - 13947: 136.94711,-2.907227 - 13948: 136.81332,-1.9483571 - 13949: 135.98828,-0.9894872 - 13950: 135.69841,0.17007685 - 13951: 136.12207,1.2404437 - 13952: 136.16667,1.9317222 - 13953: 135.54231,1.3519402 - 13954: 135.45312,-0.25361013 - 13955: 135.47542,-1.5915685 - 13956: 135.8322,-3.0410228 - 13957: 135.69841,-4.155988 - 13958: 134.94026,-4.1336894 - 13959: 134.53888,-2.1936498 - 13960: 134.2936,-0.85569143 - 13961: 134.2936,0.37077093 - 13962: 133.98143,1.5080352 - 13963: 133.11179,1.8202257 - 13964: 132.978,0.32617235 - 13965: 133.26787,-1.1009831 - 13966: 133.04489,-2.3051457 - 13967: 132.17525,-3.5093083 - 13968: 131.92996,-3.553907 - 13969: 133.04489,-2.7288327 - 13970: 132.8665,-1.5915685 - 13971: 131.72928,-2.1490512 - 13972: 130.19069,-2.595037 - 13973: 129.29875,-2.9741254 - 13974: 130.94884,-1.1901803 - 13975: 131.32791,-0.25361013 - 13976: 131.3502,0.6160631 - 13977: 131.3056,1.3296409 - 13978: 130.0792,-0.07521582 - 13979: 129.47713,-1.3016772 - 13980: 128.4514,-1.9037585 - 13981: 127.71556,-1.9706569 - 13982: 128.11693,-0.23131037 - 13983: 128.71898,0.8613553 - 13984: 130.16838,1.4634366 - 13985: 129.03116,1.99862 - 13986: 127.604065,1.7310286 - 13987: 127.0243,1.0174508 - 13988: 126.80131,2.0432186 - 13989: 128.09464,1.8648243 - 13990: 129.12036,0.54916525 - 13991: 130.74815,0.8836546 - 13992: 130.19069,-2.7734313 - 13993: 130.0123,-5.2040563 - 13994: 131.81847,-4.3566823 - 13995: 133.62465,-3.8437982 - 13996: 132.46513,-5.1594577 - 13997: 131.5063,-5.7169394 - 13998: 130.61435,-6.809606 - 13999: 131.03802,-7.3893876 - 14000: 132.7773,-5.984532 - 14001: 133.60234,-4.8695664 - 14002: 134.3159,-4.7803693 - 14003: 133.08948,-6.3190207 - 14004: 132.13065,-6.8765035 - 14005: 132.35364,-5.4939466 - 14006: 130.92653,-3.7768998 - 14007: 130.56976,-4.5573764 - 14008: 128.47968,-4.2641706 - 14009: 128.02266,-3.8772473 - 14010: 126.171776,-4.6346474 - 14011: 125.16834,-4.2555594 - 14012: 124.49939,-4.23326 - 14013: 123.29527,-3.6088796 - 14014: 122.35874,-2.9176006 - 14015: 121.3776,-3.3189888 - 14016: 120.95393,-4.1886616 - 14017: 122.47023,-4.8576407 - 14018: 123.91963,-4.54545 - 14019: 123.36217,-5.5043206 - 14020: 122.559425,-6.7976804 - 14021: 123.941925,-6.3070955 - 14022: 124.54398,-5.615817 - 14023: 125.59202,-5.2813272 - 14024: 126.127174,-6.4631906 - 14025: 127.46508,-5.928007 - 14026: 128.17863,-5.0806336 - 14027: 128.98138,-5.459722 - 14028: 126.26096,-6.931476 - 14029: 124.454796,-7.1098704 - 14030: 122.381035,-6.842279 - 14031: 121.5114,-7.221367 - 14032: 122.76011,-8.269435 - 14033: 125.212944,-7.422061 - 14034: 125.72581,-8.358632 - 14035: 124.94536,-8.804618 - 14036: 126.127174,-9.540495 - 14037: 124.63318,-10.65546 - 14038: 123.62975,-11.391337 - 14039: 124.14262,-11.859623 - 14040: 125.23524,-11.435936 - 14041: 125.97109,-10.276372 - 14042: 127.46508,-9.874985 - 14043: 128.22324,-8.581625 - 14044: 129.15977,-7.6004553 - 14045: 128.15634,-6.4408913 - 14046: 129.51656,-6.8868775 - 14047: 129.04828,-8.3140335 - 14048: 130.20781,-8.581625 - 14049: 129.22667,-7.422061 - 14050: 127.86647,-7.4443603 - 14051: 121.22152,-8.537026 - 14052: 121.66749,-8.715421 - 14053: 121.95737,-9.741189 - 14054: 123.49596,-7.734251 - 14055: 107.74018,-1.2391737 - 14056: 104.350815,-0.15394068 - 14057: 105.09409,3.9491315 - 14058: 110.757904,1.8678632 - 14059: 122.88329,0.9015603 - 14060: 123.834694,2.7152371 - 14061: 116.639725,0.38124228 - 14062: 147.2455,2.7891526 - 14063: 146.62305,3.366777 - 14064: 148.02785,4.2587495 - 14065: 148.9421,5.5075107 - 14066: 149.54414,6.7116723 - 14067: 148.22853,7.5813465 - 14068: 146.24397,6.823169 - 14069: 145.37433,6.9792647 - 14070: 147.62648,8.919304 - 14071: 149.32117,9.766678 - 14072: 149.94551,11.015438 - 14073: 148.47382,11.572922 - 14074: 146.66765,11.082336 - 14075: 146.11018,11.63982 - 14076: 147.2697,12.576389 - 14077: 148.54071,13.691355 - 14078: 148.42923,15.14081 - 14079: 147.49269,13.289967 - 14080: 147.73798,11.082336 - 14081: 148.27313,10.591751 - 14082: 146.28857,10.680948 - 14083: 144.92836,11.572922 - 14084: 145.21825,13.178471 - 14085: 147.3143,14.784021 - 14086: 147.96095,15.742891 - 14087: 146.91293,16.010483 - 14088: 145.77571,15.0962105 - 14089: 145.19595,16.032784 - 14090: 146.35547,16.72406 - 14091: 147.73798,17.214645 - 14092: 146.91293,15.2969055 - 14093: 146.53386,14.404934 - 14094: 147.55959,13.156172 - 14095: 146.57845,12.108105 - 14096: 150.61447,12.152702 - 14097: 150.94894,9.922773 - 14098: 150.79286,7.960434 - 14099: 149.45496,7.2022576 - 14100: 150.54758,6.956965 - 14101: 150.63676,6.8900676 - 14102: 150.28,3.879661 - 14103: 151.21654,3.0991855 - 14104: 151.6625,3.678967 - 14105: 149.58875,1.783526 - 14106: 152.66594,2.0065188 - 14107: 154.4944,2.3410087 - 14108: 154.98497,1.3152413 - 14109: 156.94724,3.0322871 - 14110: 156.92494,4.392545 - 14111: 155.76541,4.7047353 - 14112: 155.34175,5.7528024 - 14113: 156.50127,6.2656865 - 14114: 156.83574,4.504041 - 14115: 155.52013,2.0511174 - 14116: 156.50127,0.75775766 - 14117: 153.93694,2.095716 - 14118: 152.75513,4.013457 - 14119: 153.51328,5.0169253 - 14120: 155.47554,6.444081 - 14121: 154.22682,7.380652 - 14122: 155.76541,8.607113 - 14123: 157.3932,7.759741 - 14124: 155.9438,6.823169 - 14125: 157.97296,7.469849 - 14126: 158.70882,8.228025 - 14127: 158.57503,6.533278 - 14128: 157.79457,5.596708 - 14129: 158.59732,5.3291154 - 14130: 158.53043,6.6001763 - 14131: 156.25598,7.246856 - 14132: 154.4944,8.027332 - 14133: 155.00726,10.524855 - 14134: 155.02957,11.394527 - 14135: 154.49985,9.800362 - 14136: 153.70485,10.923059 - 14137: 154.52989,10.900761 - 14138: 154.75287,9.228312 - 14139: 156.04619,10.677767 - 14140: 156.82663,11.658936 - 14141: 157.3395,10.789265 - 14142: 156.58134,9.941891 - 14143: 158.11993,10.053387 - 14144: 159.74773,9.674299 - 14145: 160.34978,10.766964 - 14146: 159.32405,11.904228 - 14147: 158.7443,13.108391 - 14148: 157.78546,14.178757 - 14149: 156.62595,13.264486 - 14150: 155.8678,13.309086 - 14151: 156.82663,14.959234 - 14152: 157.54018,16.252594 - 14153: 157.3395,17.479055 - 14154: 156.38066,16.899273 - 14155: 155.06505,15.40522 - 14156: 154.32921,15.226826 - 14157: 153.05818,16.007301 - 14158: 153.32578,17.122267 - 14159: 152.72371,16.810076 - 14160: 153.45956,15.159927 - 14161: 153.70485,14.624744 - 14162: 154.52989,16.274893 - 14163: 155.42183,16.609383 - 14164: 154.81976,14.602444 - 14165: 154.24,13.643574 - 14166: 154.12851,12.996895 - 14167: 155.7786,13.5543785 - 14168: 151.7981,17.13835 - 14169: 152.39969,16.621355 - 14170: 151.84053,16.697607 - 14171: 152.79936,18.392353 - 14172: 154.56094,20.198597 - 14173: 153.40143,20.934475 - 14174: 155.09612,19.306625 - 14175: 154.20416,18.325455 - 14176: 156.52321,19.150532 - 14177: 156.41171,20.73378 - 14178: 155.78735,22.138638 - 14179: 153.57982,20.822979 - 14180: 152.2196,19.48502 - 14181: 151.14928,20.176298 - 14182: 150.63641,20.979073 - 14183: 150.05666,18.81604 - 14184: 150.63641,18.169361 - 14185: 149.41,18.54845 - 14186: 149.76677,20.131699 - 14187: 149.65529,21.44736 - 14188: 149.3877,22.027142 - 14189: 148.25047,20.77838 - 14190: 148.29507,19.81951 - 14191: 148.49576,18.615347 - 14192: 148.42886,17.85717 - 14193: 147.15785,19.128231 - 14194: 146.97946,20.131699 - 14195: 146.95717,21.603455 - 14196: 146.66728,21.871046 - 14197: 145.97604,20.622284 - 14198: 145.79765,19.551918 - 14199: 145.0172,19.81951 - 14200: 144.92801,18.637646 - 14201: 144.92801,17.745674 - 14202: 146.5335,18.19166 - 14203: 147.55923,18.035564 - 14204: 146.96002,23.14333 - 14205: 146.37872,23.96574 - 14206: 147.93962,24.099537 - 14207: 148.49707,22.67238 - 14208: 148.69777,24.032639 - 14209: 148.43018,25.236801 - 14210: 148.49707,26.418663 - 14211: 150.30325,26.374065 - 14212: 150.37015,25.749683 - 14213: 152.08713,27.13224 - 14214: 151.0614,27.756622 - 14215: 150.32555,27.778923 - 14216: 150.45934,30.00885 - 14217: 152.55539,30.365639 - 14218: 151.77495,28.960785 - 14219: 153.13515,28.960785 - 14220: 154.31697,30.499435 - 14221: 153.35814,31.859695 - 14222: 152.06483,30.365639 - 14223: 150.9053,31.012321 - 14224: 156.32384,30.70013 - 14225: 156.42967,32.060387 - 14226: 158.00233,32.216484 - 14227: 156.67863,30.923122 - 14228: 155.94382,30.00885 - 14229: 156.77231,31.05692 - 14230: 158.93526,31.725899 - 14231: 158.86836,33.30915 - 14232: 157.48586,33.465244 - 14233: 156.7277,32.97466 - 14234: 158.95755,34.134224 - 14235: 159.738,34.691708 - 14236: 158.3332,35.739773 - 14237: 158.17711,36.92164 - 14238: 157.24057,37.47912 - 14239: 156.8392,37.635216 - 14240: 158.80147,37.010834 - 14241: 159.13594,31.7482 - 14242: 158.06561,30.655533 - 14243: 158.51158,29.250675 - 14244: 157.88722,28.068813 - 14245: 156.41553,28.804688 - 14246: 155.96956,28.269508 - 14247: 156.92839,27.578228 - 14248: 158.75687,27.377533 - 14249: 158.08792,26.507862 - 14250: 156.8392,26.820051 - 14251: 156.25945,26.730854 - 14252: 155.88037,26.307167 - 14253: 155.90266,25.526691 - 14254: 155.03302,25.080706 - 14255: 155.79117,24.679317 - 14256: 156.92839,24.211033 - 14257: 157.32977,23.94344 - 14258: 156.30403,22.895374 - 14259: 153.85121,23.02917 - 14260: 153.9404,22.560884 - 14261: 154.78775,21.579714 - 14262: 155.16682,21.222925 - 14263: 145.459,25.602821 - 14264: 143.9155,26.457424 - 14265: 143.26884,25.253262 - 14266: 144.0047,25.966839 - 14267: 144.45067,27.61699 - 14268: 144.42836,28.910347 - 14269: 145.27571,30.047615 - 14270: 145.3426,29.490131 - 14271: 143.26884,27.52779 - 14272: 142.4438,26.479725 - 14273: 142.24312,25.743847 - 14274: 141.77486,25.476255 - 14275: 140.39235,24.98567 - 14276: 140.28085,24.539684 - 14277: 140.59303,24.227493 - 14278: 142.71138,25.69925 - 14279: 143.40263,26.59122 - 14280: 142.26541,27.081806 - 14281: 140.81602,26.747314 - 14282: 141.86404,27.750786 - 14283: 142.64449,28.48666 - 14284: 142.02013,29.311737 - 14285: 142.77827,30.315205 - 14286: 143.78171,30.069912 - 14287: 144.62906,30.003014 - 14288: 143.26884,30.939583 - 14289: 144.0716,32.12145 - 14290: 144.60675,32.924225 - 14291: 145.69939,31.876156 - 14292: 145.90007,30.471298 - 14293: 147.32716,31.184875 - 14294: 147.79543,32.188347 - 14295: 148.4421,31.09568 - 14296: 148.1522,30.560497 - 14297: 149.13335,30.850388 - 14298: 149.37862,30.047615 - 14299: 144.49974,33.36365 - 14300: 143.23363,33.59668 - 14301: 142.69844,32.013443 - 14302: 141.69476,30.854004 - 14303: 140.86984,29.694378 - 14304: 140.24548,28.579414 - 14305: 139.9779,27.70974 - 14306: 139.30894,26.260284 - 14307: 137.50276,24.18645 - 14308: 137.1906,24.766232 - 14309: 136.87842,26.237986 - 14310: 138.86298,27.598244 - 14311: 139.48734,29.114597 - 14312: 137.146,25.948095 - 14313: 139.01906,27.12996 - 14314: 139.8887,29.560581 - 14315: 140.49077,30.519455 - 14316: 138.97447,29.493683 - 14317: 137.46574,28.936203 - 14318: 137.12831,28.401016 - 14319: 134.55223,26.327179 - 14320: 135.42505,25.992695 - 14321: 134.85933,25.033823 - 14322: 133.14189,24.476341 - 14323: 133.31927,24.052654 - 14324: 136.10727,24.565536 - 14325: 136.06268,25.212217 - 14326: 135.34912,27.04076 - 14327: 133.96663,27.865837 - 14328: 133.91396,25.234516 - 14329: 134.12949,24.565536 - 14330: 135.23468,24.565536 - 14331: 135.11093,23.918858 - 14332: 138.05434,24.409443 - 14333: 138.03203,26.193386 - 14334: 137.51917,27.531345 - 14335: 132.07834,26.08189 - 14336: 130.87422,25.368313 - 14337: 130.98572,26.75087 - 14338: 132.5243,27.152256 - 14339: 132.36823,25.858898 - 14340: 131.32019,24.877728 - 14341: 131.1195,24.008055 - 14342: 132.61351,24.632435 - 14343: 129.8485,25.12302 - 14344: 128.17612,24.677034 - 14345: 127.90852,25.948095 - 14346: 128.73357,26.706272 - 14347: 128.51059,25.279116 - 14348: 127.640945,24.431742 - 14349: 126.16924,24.587837 - 14350: 125.96856,26.10419 - 14351: 126.704414,28.356419 - 14352: 125.14352,27.977333 - 14353: 124.496864,26.41638 - 14354: 125.54488,25.323715 - 14355: 126.63752,24.766232 - 14356: 128.10922,24.81083 - 14357: 128.06462,24.297947 - 14358: 126.994286,23.740463 - 14359: 128.57748,27.018463 - 14360: 127.93083,28.512516 - 14361: 128.4883,29.07 - 14362: 128.80048,27.642841 - 14363: 130.18297,28.512516 - 14364: 128.28761,29.605179 - 14365: 126.8382,30.162663 - 14366: 127.484856,31.879711 - 14367: 128.77817,33.685955 - 14368: 128.75587,32.013504 - 14369: 128.3322,30.341057 - 14370: 126.88279,30.073467 - 14371: 126.34763,31.076935 - 14372: 126.682106,32.3257 - 14373: 129.31334,33.061573 - 14374: 130.36136,33.46296 - 14375: 129.9377,31.099236 - 14376: 131.89995,30.140366 - 14377: 133.99602,31.010036 - 14378: 133.59464,29.917374 - 14379: 132.7473,29.382187 - 14380: 134.1744,28.735508 - 14381: 135.6461,29.515984 - 14382: 136.64952,29.783577 - 14383: 135.713,28.356419 - 14384: 136.60493,28.133427 - 14385: 137.74216,31.010036 - 14386: 138.5003,31.879711 - 14387: 139.32535,30.58635 - 14388: 131.1418,33.10405 - 14389: 129.737,35.726715 - 14390: 130.87422,37.41809 - 14391: 130.66075,34.154232 - 14392: 130.86143,34.82321 - 14393: 130.83913,36.250366 - 14394: 130.12558,36.540257 - 14395: 128.4755,34.934708 - 14396: 127.62816,35.2469 - 14397: 129.59042,37.432228 - 14398: 130.48236,39.03778 - 14399: 130.72765,40.04125 - 14400: 129.14445,38.4134 - 14401: 129.14445,37.053143 - 14402: 128.63158,37.142338 - 14403: 128.60928,39.03778 - 14404: 128.18561,40.37574 - 14405: 127.51666,38.3688 - 14406: 127.026085,37.76672 - 14407: 127.672745,38.03431 - 14408: 128.69847,37.878216 - 14409: 129.56812,39.550663 - 14410: 130.01408,41.735996 - 14411: 131.55269,41.713696 - 14412: 130.92833,39.99665 - 14413: 133.49265,39.99665 - 14414: 134.36229,40.55413 - 14415: 133.26967,38.94858 - 14416: 132.97978,38.279602 - 14417: 133.98322,38.301903 - 14418: 134.31769,38.926285 - 14419: 134.2954,39.862854 - 14420: 133.78253,40.66563 - 14421: 132.5561,41.22311 - 14422: 135.83398,42.27118 - 14423: 136.23535,41.200813 - 14424: 134.58527,38.502594 - 14425: 135.99007,39.149277 - 14426: 136.14616,40.73253 - 14427: 137.105,39.95205 - 14428: 136.10156,39.483765 - 14429: 137.23878,38.94858 - 14430: 137.0381,38.547195 - 14431: 138.88887,38.547195 - 14432: 139.87001,38.012012 - 14433: 139.15645,37.231537 - 14434: 140.24908,38.257305 - 14435: 139.87001,40.531834 - 14436: 138.86658,41.6914 - 14437: 140.38287,38.926285 - 14438: 141.364,36.71865 - 14439: 132.58307,37.65587 - 14440: 131.9804,42.866585 - 14441: 131.31694,44.221844 - 14442: 133.50218,44.846226 - 14443: 132.85553,43.619762 - 14444: 133.72517,43.352173 - 14445: 133.52449,44.244144 - 14446: 134.97388,45.292213 - 14447: 135.53134,45.760498 - 14448: 135.19687,44.13265 - 14449: 135.39755,43.75356 - 14450: 135.93272,44.62323 - 14451: 136.78006,44.73473 - 14452: 137.7835,44.311043 - 14453: 137.27063,43.530567 - 14454: 137.96187,42.928486 - 14455: 138.76462,42.70549 - 14456: 136.89156,41.947315 - 14457: 131.72957,45.055393 - 14458: 132.68298,46.375164 - 14459: 132.6321,47.55745 - 14460: 131.69556,46.464783 - 14461: 132.38681,45.59511 - 14462: 132.38681,44.97073 - 14463: 131.02661,46.57628 - 14464: 130.42455,47.20066 - 14465: 130.00087,46.30869 - 14466: 130.60294,45.32752 - 14467: 129.13124,45.439014 - 14468: 129.08664,46.53168 - 14469: 129.57721,48.51632 - 14470: 129.08664,48.048035 - 14471: 127.793335,47.066864 - 14472: 127.77103,46.55398 - 14473: 128.46228,46.82157 - 14474: 128.2393,46.30869 - 14475: 126.70069,47.53515 - 14476: 127.21357,47.981136 - 14477: 128.35078,49.452892 - 14478: 130.09007,49.631287 - 14479: 130.71443,48.15953 - 14480: 131.60637,49.101067 - 14481: 130.20157,50.972977 - 14482: 128.50688,48.57427 - 14483: 127.54805,49.571037 - 14484: 127.56668,50.2411 - 14485: 126.574165,49.57386 - 14486: 126.57862,51.568764 - 14487: 127.065315,52.71261 - 14488: 126.641655,51.776035 - 14489: 126.21798,50.527275 - 14490: 125.16995,50.72797 - 14491: 125.39294,51.75374 - 14492: 125.972694,51.21855 - 14493: 126.820045,50.527275 - 14494: 127.86807,52.155125 - 14495: 127.19912,53.716076 - 14496: 125.348335,52.9579 - 14497: 124.3895,52.511913 - 14498: 124.65709,53.203194 - 14499: 126.10648,53.448486 - 14500: 126.19569,52.668007 - 14501: 125.482124,54.028267 - 14502: 126.21798,55.16553 - 14503: 126.97613,56.508766 - 14504: 127.19912,56.2746 - 14505: 125.19225,56.528496 - 14506: 125.41523,57.263565 - 14507: 124.81318,56.014557 - 14508: 125.43754,55.50239 - 14509: 125.03616,57.018745 - 14510: 123.63136,56.661957 - 14511: 124.300316,56.282867 - 14512: 126.70855,57.041046 - 14513: 126.08419,56.327465 - 14514: 127.600494,58.200607 - 14515: 128.67082,58.847286 - 14516: 127.600494,57.241737 - 14517: 128.04646,56.483562 - 14518: 127.73428,54.90031 - 14519: 127.71199,53.98604 - 14520: 128.02417,57.241737 - 14521: 128.7823,58.4236 - 14522: 129.80804,58.601997 - 14523: 129.33977,60.029152 - 14524: 128.13565,59.939957 - 14525: 126.41866,58.4459 - 14526: 126.48556,59.672363 - 14527: 127.890366,60.631233 - 14528: 127.600494,61.7462 - 14529: 126.70855,62.30368 - 14530: 126.19569,59.939957 - 14531: 125.236855,59.114876 - 14532: 126.08419,59.270973 - 14533: 126.19569,61.14412 - 14534: 124.924675,60.78733 - 14535: 124.07733,60.296745 - 14536: 124.99157,61.077217 - 14537: 125.19225,61.7239 - 14538: 124.612495,63.351746 - 14539: 123.76515,62.816566 - 14540: 124.144226,61.36711 - 14541: 123.58676,61.500908 - 14542: 123.809746,62.972656 - 14543: 123.653656,64.53361 - 14544: 123.45297,64.8458 - 14545: 122.51644,63.753136 - 14546: 121.95898,62.90576 - 14547: 122.13737,64.42211 - 14548: 121.312325,64.19912 - 14549: 120.197395,63.708534 - 14550: 119.61764,63.128754 - 14551: 121.29002,62.147583 - 14552: 122.29345,61.768494 - 14553: 120.197395,61.456306 - 14554: 119.59534,61.32251 - 14555: 119.46155,60.519737 - 14556: 121.29002,60.809624 - 14557: 121.78059,60.608932 - 14558: 119.95212,59.60546 - 14559: 119.104774,60.74273 - 14560: 118.36893,60.675835 - 14561: 118.12364,60.00685 - 14562: 120.06361,58.847286 - 14563: 121.49071,59.516266 - 14564: 120.977844,58.80269 - 14565: 120.1528,58.312103 - 14566: 120.28659,57.620827 - 14567: 117.90066,58.80269 - 14568: 117.65537,58.356705 - 14569: 118.99328,56.50586 - 14570: 120.06361,56.037575 - 14571: 122.11507,58.334404 - 14572: 123.14079,58.80269 - 14573: 123.0739,58.15601 - 14574: 123.92124,58.245205 - 14575: 124.612495,59.650063 - 14576: 123.54217,56.572758 - 14577: 121.78059,56.17137 - 14578: 120.331184,55.457794 - 14579: 118.948685,55.836884 - 14580: 120.08591,54.67732 - 14581: 121.73599,54.788815 - 14582: 120.88865,53.785347 - 14583: 119.63994,52.937973 - 14584: 120.527336,51.91961 - 14585: 120.46044,51.22833 - 14586: 118.85495,51.495922 - 14587: 118.34208,51.785812 - 14588: 118.20829,50.470154 - 14589: 118.297485,49.667377 - 14590: 117.16026,49.087597 - 14591: 118.0745,47.70504 - 14592: 119.79148,48.106426 - 14593: 119.79148,47.593544 - 14594: 117.58394,49.399788 - 14595: 116.80349,50.67085 - 14596: 117.00417,52.075703 - 14597: 116.20143,51.429024 - 14598: 115.77776,50.537052 - 14599: 116.08994,51.22833 - 14600: 115.82236,52.87848 - 14601: 114.48445,53.50286 - 14602: 113.7932,53.10147 - 14603: 114.17227,51.85271 - 14604: 114.01618,51.54052 - 14605: 114.10538,49.91267 - 14606: 113.748604,48.9538 - 14607: 112.990456,51.005337 - 14608: 112.990456,51.785812 - 14609: 112.031624,51.85271 - 14610: 112.58908,50.916138 - 14611: 112.678276,49.488983 - 14612: 113.48102,48.240223 - 14613: 112.12081,48.240223 - 14614: 111.095085,50.00187 - 14615: 110.626816,50.64855 - 14616: 111.63025,48.28482 - 14617: 109.39474,50.620216 - 14618: 108.88703,50.99793 - 14619: 109.600586,49.927563 - 14620: 110.55942,49.258583 - 14621: 111.36216,49.05789 - 14622: 112.00882,47.45234 - 14623: 111.36216,46.315075 - 14624: 110.18034,47.318542 - 14625: 109.333,48.879494 - 14626: 108.41877,49.70457 - 14627: 108.08429,50.35125 - 14628: 107.17005,49.97216 - 14629: 107.79441,48.45581 - 14630: 108.88703,47.630733 - 14631: 109.28841,46.761063 - 14632: 109.02083,45.980587 - 14633: 110.068855,45.044014 - 14634: 109.4891,44.24124 - 14635: 108.37417,44.352737 - 14636: 107.727516,44.464233 - 14637: 107.9728,46.58267 - 14638: 106.94707,47.18475 - 14639: 106.21122,48.834896 - 14640: 106.56799,49.32548 - 14641: 106.05513,48.7457 - 14642: 106.96937,46.20358 - 14643: 107.52683,46.89486 - 14644: 107.12546,47.920624 - 14645: 105.27468,48.299713 - 14646: 104.248955,47.67533 - 14647: 105.653755,49.30318 - 14648: 104.98481,49.905262 - 14649: 103.89218,48.05442 - 14650: 103.17863,47.028652 - 14651: 102.59887,48.7234 - 14652: 102.1529,49.593075 - 14653: 101.37246,49.68227 - 14654: 100.814995,48.41121 - 14655: 100.43592,47.987522 - 14656: 100.7481,48.7234 - 14657: 101.84072,48.188217 - 14658: 102.73266,48.45581 - 14659: 103.71379,49.10249 - 14660: 103.44621,47.876026 - 14661: 104.22666,46.44887 - 14662: 104.44964,45.267006 - 14663: 103.35702,44.821022 - 14664: 106.166626,43.973648 - 14665: 107.34844,43.706055 - 14666: 105.988235,42.903282 - 14667: 104.20436,42.3681 - 14668: 105.78755,41.03014 - 14669: 104.91791,39.98207 - 14670: 103.936775,39.959774 - 14671: 105.0071,41.11934 - 14672: 105.49767,41.855213 - 14673: 104.717224,41.766018 - 14674: 103.98138,40.851746 - 14675: 103.624596,41.63222 - 14676: 104.49424,42.189705 - 14677: 103.69149,43.795254 - 14678: 102.086006,43.081676 - 14679: 102.353584,43.772953 - 14680: 103.13403,43.90675 - 14681: 108.43368,40.402954 - 14682: 108.47827,41.18343 - 14683: 110.864204,40.202263 - 14684: 109.05804,39.131893 - 14685: 109.68239,38.730507 - 14686: 110.752716,39.91237 - 14687: 111.71155,40.737446 - 14688: 113.02715,40.670547 - 14689: 112.51429,39.64478 - 14690: 109.5263,38.552113 - 14691: 107.67553,38.262222 - 14692: 109.147224,37.838535 - 14693: 111.57776,38.418316 - 14694: 112.71498,39.087296 - 14695: 111.39937,38.03923 - 14696: 112.02373,37.41485 - 14697: 113.58462,38.9089 - 14698: 113.227844,40.51445 - 14699: 113.31704,41.85241 - 14700: 115.05631,41.674015 - 14701: 114.36507,40.62595 - 14702: 115.591484,41.361824 - 14703: 115.47999,42.52139 - 14704: 109.97915,35.934433 - 14705: 109.73903,36.430607 - 14706: 113.04984,36.645283 - 14707: 112.0687,35.285027 - 14708: 111.332855,34.348454 - 14709: 111.020676,33.322685 - 14710: 112.269394,34.41535 - 14711: 113.04984,34.41535 - 14712: 112.69306,33.545677 - 14713: 111.979515,32.787502 - 14714: 113.76339,32.676006 - 14715: 114.43234,33.411884 - 14716: 114.47694,32.27462 - 14717: 112.51467,32.073925 - 14718: 110.262535,32.163124 - 14719: 109.281395,31.89553 - 14720: 110.061844,33.79097 - 14721: 110.81999,35.21813 - 14722: 112.22479,35.931705 - 14723: 114.82183,36.243896 - 14724: 114.75697,36.1101 - 14725: 115.227425,35.06203 - 14726: 115.74239,35.195827 - 14727: 117.43708,36.444588 - 14728: 116.58974,35.06203 - 14729: 115.80929,33.947067 - 14730: 117.943565,33.85787 - 14731: 118.48581,35.08433 - 14732: 117.60203,35.039734 - 14733: 117.36045,36.935173 - 14734: 118.18549,37.96094 - 14735: 119.01054,37.96094 - 14736: 119.25582,36.39999 - 14737: 120.28155,36.667583 - 14738: 120.23695,37.782547 - 14739: 119.612595,38.852913 - 14740: 121.351875,37.827145 - 14741: 120.79441,35.641815 - 14742: 117.80642,33.010498 - 14743: 117.717224,32.20772 - 14744: 120.52683,32.430714 - 14745: 120.9505,33.16659 - 14746: 119.568,34.19236 - 14747: 120.81671,34.74984 - 14748: 119.768684,33.478783 - 14749: 121.26268,33.991665 - 14750: 122.11002,33.724075 - 14751: 122.600586,33.52338 - 14752: 122.93507,34.682945 - 14753: 122.11002,35.70871 - 14754: 122.15462,36.75678 - 14755: 122.756676,37.626453 - 14756: 123.33643,36.0655 - 14757: 124.69665,36.578384 - 14758: 125.36559,36.73448 - 14759: 125.16491,34.81674 - 14760: 124.87503,33.344986 - 14761: 125.120316,33.099693 - 14762: 126.05685,33.59028 - 14763: 126.10145,34.79444 - 14764: 126.25753,36.377693 - 14765: 127.19407,35.842506 - 14766: 126.3605,34.19236 - 14767: 125.93247,33.969368 - 14768: 125.40093,33.991665 - 14769: 125.8469,32.20772 - 14770: 126.13677,32.430714 - 14771: 127.74228,33.567978 - 14772: 127.43009,34.370754 - 14773: 127.56389,35.842506 - 14774: 126.89492,38.87825 - 14775: 126.44895,40.224945 - 14776: 127.02871,41.833374 - 14777: 126.51585,42.457752 - 14778: 126.38206,40.9637 - 14779: 125.95838,39.871033 - 14780: 125.49012,41.298187 - 14781: 125.93609,42.23476 - 14782: 127.71997,42.88144 - 14783: 127.92067,41.431984 - 14784: 129.34776,41.85567 - 14785: 128.16594,42.50235 - 14786: 127.786865,41.387386 - 14787: 126.047585,43.372025 - 14788: 124.77657,42.323956 - 14789: 124.84347,41.208992 - 14790: 124.26371,41.654976 - 14791: 124.93266,43.88491 - 14792: 124.642784,44.598488 - 14793: 123.37177,43.305126 - 14794: 123.26028,42.30166 - 14795: 122.301445,43.86261 - 14796: 123.08189,43.751114 - 14797: 122.279144,42.14556 - 14798: 123.30487,44.286297 - 14799: 124.93266,45.46816 - 14800: 123.32717,46.025642 - 14801: 123.728546,46.73922 - 14802: 123.43867,45.289764 - 14803: 123.92923,46.315533 - 14804: 121.944664,45.869545 - 14805: 120.74055,43.46122 - 14806: 120.227684,43.10443 - 14807: 119.04587,43.951805 - 14808: 121.34261,46.226334 - 14809: 122.10076,48.07718 - 14810: 120.1385,45.512756 - 14811: 119.73946,43.748768 - 14812: 118.460175,45.74163 - 14813: 118.87902,45.975475 - 14814: 120.99527,47.848515 - 14815: 122.5557,48.683823 - 14816: 119.83529,46.45389 - 14817: 118.965645,45.74031 - 14818: 116.49052,47.568855 - 14819: 118.00681,47.47966 - 14820: 119.5677,49.129807 - 14821: 119.38932,49.821087 - 14822: 117.47165,47.613457 - 14823: 119.300125,48.884514 - 14824: 120.95021,50.445465 - 14825: 121.039406,52.051018 - 14826: 120.50424,50.95835 - 14827: 118.28505,49.04552 - 14828: 120.30372,48.28373 - 14829: 119.49142,51.694313 - 14830: 119.00952,50.589783 - 14831: 118.30717,52.196606 - 14832: 117.40294,51.465824 - 14833: 118.02598,50.358566 - 14834: 118.64709,48.38081 - 14835: 105.774796,39.29126 - 14836: 104.24665,38.8816 - 14837: 104.78563,38.191154 - 14838: 103.31157,37.633682 - 14839: 103.735245,37.165398 - 14840: 103.579155,38.124268 - 14841: 101.95136,39.729816 - 14842: 101.75068,41.22387 - 14843: 101.839874,39.99741 - 14844: 102.62032,39.283833 - 14845: 102.30814,39.99741 - 14846: 101.237816,39.774414 - 14847: 101.26011,38.860146 - 14848: 101.527695,38.30266 - 14849: 101.88447,37.78978 - 14850: 101.237816,37.1877 - 14851: 100.0114,37.499886 - 14852: 100.47967,38.458755 - 14853: 100.68035,39.885914 - 14854: 99.632324,39.39533 - 14855: 98.71809,40.57719 - 14856: 99.364746,41.201572 - 14857: 99.07487,41.781353 - 14858: 98.093735,40.66639 - 14859: 100.47967,40.621788 - 14860: 100.92564,42.450333 - 14861: 101.72838,41.91515 - 14862: 99.186356,39.30613 - 14863: 98.6289,38.34726 - 14864: 100.652435,37.856674 - 14865: 99.71227,37.72288 - 14866: 99.03318,37.78978 - 14867: 99.15147,40.019707 - 14868: 97.14895,40.68869 - 14869: 98.19698,38.592552 - 14870: 97.61722,37.633682 - 14871: 98.21928,37.232296 - 14872: 96.4131,36.76401 - 14873: 97.19355,38.124268 - 14874: 97.34964,39.529125 - 14875: 96.4577,39.885914 - 14876: 96.16782,38.414158 - 14877: 96.61379,38.235764 - 14878: 94.71842,39.841316 - 14879: 94.09406,39.462227 - 14880: 94.763016,38.168865 - 14881: 94.606926,37.544487 - 14882: 93.380516,37.655983 - 14883: 95.097496,37.70058 - 14884: 94.22785,37.499886 - 14885: 92.33248,37.366093 - 14886: 91.81962,37.0985 - 14887: 93.22443,37.1208 - 14888: 93.96027,37.834377 - 14889: 93.31362,39.216934 - 14890: 92.73386,39.573723 - 14891: 91.97571,38.592552 - 14892: 91.73043,37.589085 - 14893: 90.92768,37.522186 - 14894: 91.99801,39.10544 - 14895: 90.92768,39.573723 - 14896: 90.57091,38.01277 - 14897: 90.14724,37.321495 - 14898: 90.682396,36.76401 - 14899: 91.90881,37.633682 - 14900: 90.25873,38.72635 - 14901: 90.994576,39.26153 - 14902: 89.66597,38.592552 - 14903: 89.60119,39.332188 - 14904: 88.82079,41.03994 - 14905: 90.224915,41.369167 - 14906: 89.19918,39.78592 - 14907: 88.28495,38.760147 - 14908: 87.905876,38.336464 - 14909: 88.5705,38.64865 - 14910: 90.19128,39.808216 - 14911: 88.40635,41.213074 - 14912: 87.93809,39.451427 - 14913: 86.04272,38.938545 - 14914: 85.529854,38.38106 - 14915: 85.15078,40.209602 - 14916: 88.29486,43.063915 - 14917: 89.63277,42.461834 - 14918: 91.41665,40.856285 - 14919: 89.96725,42.684826 - 14920: 90.390915,42.88552 - 14921: 87.04615,41.279972 - 14922: 86.2434,40.856285 - 14923: 86.68937,42.038147 - 14924: 87.38062,42.060448 - 14925: 87.15764,43.04162 - 14926: 85.30687,42.372635 - 14927: 84.8163,41.815155 - 14928: 86.86776,43.732895 - 14929: 87.13534,45.11545 - 14930: 87.22453,44.312675 - 14931: 85.59675,41.815155 - 14932: 85.88663,42.617928 - 14933: 85.77514,44.334976 - 14934: 86.288,45.695232 - 14935: 88.205666,46.377693 - 14936: 88.04615,45.346043 - 14937: 89.49299,44.984432 - 14938: 89.60947,44.324062 - 14939: 90.49116,45.03943 - 14940: 90.98173,46.644978 - 14941: 90.87023,45.240124 - 14942: 90.53576,43.991364 - 14943: 90.69185,44.481945 - 14944: 90.04519,46.60038 - 14945: 89.46543,47.91604 - 14946: 88.751884,48.629616 - 14947: 88.79648,47.49235 - 14948: 90.91483,48.362026 - 14949: 91.67298,49.343193 - 14950: 91.18241,47.715347 - 14951: 92.45342,48.032753 - 14952: 93.23995,50.15908 - 14953: 95.10705,50.689014 - 14954: 94.27182,48.435875 - 14955: 94.24947,47.67574 - 14956: 95.58738,47.408146 - 14957: 95.3198,49.994865 - 14958: 93.04536,50.307056 - 14959: 90.70402,49.481983 - 14960: 90.347244,50.17326 - 14961: 92.24261,51.80111 - 14962: 91.57366,53.005272 - 14963: 91.08309,51.53352 - 14964: 92.28721,51.578117 - 14965: 92.398705,53.250565 - 14966: 93.04536,53.38436 - 14967: 93.06765,51.979504 - 14968: 94.58395,52.224796 - 14969: 95.14141,52.2025 - 14970: 94.16028,50.730743 - 14971: 94.80694,50.17326 - 14972: 96.947586,50.351654 - 14973: 97.17057,49.370487 - 14974: 97.61654,48.59001 - 14975: 98.88755,48.9245 - 14976: 85.24291,44.72882 - 14977: 84.84154,44.408936 - 14978: 83.79351,44.686886 - 14979: 82.790085,43.64826 - 14980: 84.90844,45.053116 - 14981: 84.55166,45.5883 - 14982: 82.946175,45.253807 - 14983: 82.433304,43.80435 - 14984: 81.92044,42.778587 - 14985: 84.28408,41.619022 - 14986: 82.36641,41.485226 - 14987: 81.519066,42.354897 - 14988: 80.98391,41.68592 - 14989: 82.18803,40.77165 - 14990: 82.67859,40.370262 - 14991: 84.10569,40.236465 - 14992: 85.26521,39.45599 - 14993: 85.62199,38.47482 - 14994: 82.611694,38.45359 - 14995: 81.45217,39.07551 - 14996: 80.136566,39.931828 - 14997: 79.24463,38.683067 - 14998: 79.802086,37.144413 - 14999: 81.87585,38.57157 - 15000: 81.92044,40.556206 - 15001: 82.36641,38.14788 - 15002: 83.311264,36.73102 - 15003: 83.58901,37.79966 - 15004: 84.46136,36.482754 - 15005: 83.519295,35.353596 - 15006: 82.78426,36.3705 - 15007: 80.95579,35.857613 - 15008: 80.286835,35.23323 - 15009: 83.05184,35.523125 - 15010: 84.16676,36.704987 - 15011: 84.30055,37.21787 - 15012: 82.04841,37.017178 - 15013: 82.2045,36.771885 - 15014: 82.07071,34.207466 - 15015: 83.80999,33.939873 - 15016: 84.36745,34.318962 - 15017: 83.94378,33.538483 - 15018: 81.981514,32.914104 - 15019: 83.252525,32.11133 - 15020: 85.34858,32.579613 - 15021: 86.06213,32.80261 - 15022: 85.125595,31.79914 - 15023: 82.2045,31.353153 - 15024: 81.87002,31.37545 - 15025: 85.0587,30.528076 - 15026: 84.924904,30.52269 - 15027: 84.78956,31.505493 - 15028: 84.78146,30.302376 - 15029: 84.15821,30.799267 - 15030: 83.73455,31.47638 - 15031: 84.91637,30.539688 - 15032: 85.91979,30.762508 - 15033: 85.62992,29.112568 - 15034: 83.86834,28.800377 - 15035: 83.86834,29.001072 - 15036: 85.228546,29.224064 - 15037: 85.45153,28.35439 - 15038: 84.55959,29.603153 - 15039: 84.894066,29.759247 - 15040: 84.69338,30.160633 - 15041: 84.91637,27.507019 - 15042: 85.228546,28.532784 - 15043: 85.206245,26.882637 - 15044: 84.113625,26.392052 - 15045: 84.00213,25.968365 - 15046: 85.71911,26.771141 - 15047: 85.808304,25.745373 - 15048: 85.696815,24.697304 - 15049: 84.55959,24.764202 - 15050: 83.82374,25.098692 - 15051: 84.91637,24.095222 - 15052: 85.830605,24.117523 - 15053: 85.58532,23.403944 - 15054: 84.60419,23.047155 - 15055: 84.02443,23.89453 - 15056: 84.13592,22.578869 - 15057: 83.11019,22.801863 - 15058: 82.88721,22.712666 - 15059: 84.4035,21.887592 - 15060: 85.228546,21.285511 - 15061: 84.82717,19.947552 - 15062: 82.82031,20.505035 - 15063: 83.11019,19.63536 - 15064: 82.9764,18.252804 - 15065: 83.86834,20.282042 - 15066: 84.15822,20.348938 - 15067: 85.40693,20.772625 - 15068: 85.00556,19.01098 - 15069: 84.31431,18.275105 - 15070: 85.8529,19.724558 - 15071: 85.60762,18.147652 - 15072: 84.60419,11.7328205 - 15073: 85.518425,11.353733 - 15074: 86.07589,9.703585 - 15075: 86.29887,8.767014 - 15076: 86.34347,5.8681035 - 15077: 85.76371,7.6074505 - 15078: 82.68245,4.9854693 + 13387: 83.383514,7.4388547 + 13388: 83.272026,11.452446 + 13389: 86.12623,11.809235 + 13390: 83.45041,10.315182 + 13391: 83.428116,8.665033 + 13392: 85.23429,9.222515 + 13393: 84.810616,8.263645 + 13394: 82.49158,8.665033 + 13395: 82.0902,7.460871 + 13396: 83.96328,6.635796 + 13397: 85.23429,6.769593 + 13398: 83.67339,6.0783143 + 13399: 82.224,6.412804 + 13400: 81.42125,5.699226 + 13401: 81.46585,4.4504647 + 13402: 83.36121,4.338968 + 13403: 84.45384,5.364736 + 13404: 85.301186,4.8072534 + 13405: 82.915245,3.8706822 + 13406: 84.36465,3.2017035 + 13407: 85.65796,4.762655 + 13408: 84.38695,2.8003154 + 13409: 84.58763,3.7368865 + 13410: 83.249725,2.5550237 + 13411: 84.56533,1.6630511 + 13412: 84.498436,0.8825755 + 13413: 83.6511,0.7710786 + 13414: 83.49501,0.23589563 + 13415: 83.16491,-1.1185021 + 13416: 84.48065,-1.2527099 + 13417: 84.03458,-2.1443615 + 13418: 84.012276,-3.103232 + 13419: 84.971115,-2.099763 + 13420: 85.260994,-2.6572456 + 13421: 83.43252,-3.616116 + 13422: 84.43595,-4.7533803 + 13423: 84.993416,-5.42236 + 13424: 85.127205,-4.1958976 + 13425: 85.41708,-5.199367 + 13426: 85.68466,-6.492727 + 13427: 87.71382,-6.158237 + 13428: 86.75499,-4.4411902 + 13429: 86.977974,-3.415422 + 13430: 87.80302,-4.485789 + 13431: 85.46168,-5.4669585 + 13432: 84.03458,-5.75685 + 13433: 85.99684,-7.3623996 + 13434: 85.70696,-7.942181 + 13435: 86.86648,-8.120575 + 13436: 88.22669,-7.540794 + 13437: 87.60233,-8.499664 + 13438: 85.61777,-6.559624 + 13439: 87.69152,-5.08787 + 13440: 86.6435,-3.6607146 + 13441: 86.554306,-2.2781577 + 13442: 88.026,-2.2112598 + 13443: 88.33818,-3.8168101 + 13444: 89.40851,-3.4823203 + 13445: 89.52,-1.87677 + 13446: 90.81331,-1.3638859 + 13447: 89.5423,-3.0140347 + 13448: 90.16666,-4.574986 + 13449: 89.52,-4.976373 + 13450: 91.370766,-4.2850947 + 13451: 91.05859,-2.6572456 + 13452: 91.88364,-1.8321714 + 13453: 91.17008,-3.7499118 + 13454: 91.682945,-4.351993 + 13455: 92.88706,-3.348524 + 13456: 92.173515,-2.5680485 + 13457: 91.54916,-4.129 + 13458: 91.63835,-5.8014483 + 13459: 89.29701,-7.540794 + 13460: 90.05516,-8.298971 + 13461: 89.36391,-8.32127 + 13462: 88.36048,-9.257841 + 13463: 88.62806,-10.328207 + 13464: 88.80645,-10.930288 + 13465: 91.52686,-10.4843025 + 13466: 92.70868,-9.61463 + 13467: 91.12549,-10.662697 + 13468: 90.56802,-11.777662 + 13469: 92.84247,-10.952587 + 13470: 92.73098,-9.347038 + 13471: 89.63149,-9.302439 + 13472: 90.83561,-7.228604 + 13473: 90.23355,-6.604223 + 13474: 91.54916,-6.448128 + 13475: 92.55259,-5.1547685 + 13476: 92.3742,-3.9060073 + 13477: 93.51142,-3.7053132 + 13478: 94.84933,-3.928306 + 13479: 94.49255,-2.099763 + 13480: 94.11348,-1.0293965 + 13481: 93.06545,-1.87677 + 13482: 94.53715,-1.2077909 + 13483: 94.93852,-0.82870245 + 13484: 92.70868,-1.8098722 + 13485: 93.8459,-1.3638859 + 13486: 93.8236,-2.4788513 + 13487: 93.65576,-9.749707 + 13488: 94.4362,-10.641679 + 13489: 91.89418,-10.953869 + 13490: 93.78955,-11.801243 + 13491: 94.70379,-10.820073 + 13492: 94.503105,-11.979637 + 13493: 95.50653,-12.20263 + 13494: 95.595726,-10.886971 + 13495: 96.59916,-11.043067 + 13496: 97.4242,-11.288359 + 13497: 97.602585,-9.905802 + 13498: 98.249245,-9.549013 + 13499: 98.49452,-10.195693 + 13500: 100.01082,-10.128795 + 13501: 99.38647,-9.1922245 + 13502: 98.42763,-8.7685375 + 13503: 98.51682,-7.965762 + 13504: 99.43106,-8.590143 + 13505: 100.3453,-7.675871 + 13506: 99.20808,-6.9399943 + 13507: 98.00396,-6.627804 + 13508: 98.829,-5.691233 + 13509: 99.631744,-5.1560497 + 13510: 100.43449,-4.843859 + 13511: 100.72437,-4.5762677 + 13512: 97.602585,-4.843859 + 13513: 98.36073,-5.0668526 + 13514: 95.907906,-5.0445533 + 13515: 96.97025,-14.029694 + 13516: 97.34933,-13.271519 + 13517: 98.84332,-12.424145 + 13518: 98.41965,-13.449913 + 13519: 99.53457,-13.53911 + 13520: 99.69067,-12.446444 + 13521: 100.98397,-11.353777 + 13522: 102.41107,-10.95239 + 13523: 101.31845,-12.201151 + 13524: 101.63062,-13.226919 + 13525: 102.946236,-12.022757 + 13526: 102.96854,-10.796295 + 13527: 100.69409,-13.739803 + 13528: 98.68723,-13.672905 + 13529: 99.333885,-14.364183 + 13530: 100.87248,-14.943966 + 13531: 101.987404,-15.189259 + 13532: 102.74555,-13.048525 + 13533: 103.61519,-13.449913 + 13534: 101.407646,-15.211557 + 13535: 103.21381,-15.702143 + 13536: 103.63749,-14.319586 + 13537: 102.70095,-13.918198 + 13538: 102.87934,-15.278456 + 13539: 101.63062,-16.527216 + 13540: 103.704384,-16.46032 + 13541: 104.57403,-15.4122505 + 13542: 104.841606,-14.074293 + 13543: 103.52599,-12.067355 + 13544: 104.17265,-10.751696 + 13545: 103.52599,-9.569833 + 13546: 101.89821,-10.95239 + 13547: 101.65292,-9.68133 + 13548: 102.54487,-10.01582 + 13549: 103.280716,-10.1273155 + 13550: 105.287575,-9.97122 + 13551: 104.9308,-8.900854 + 13552: 106.46939,-9.05695 + 13553: 105.73354,-10.595601 + 13554: 105.265274,-11.063887 + 13555: 106.64778,-10.840893 + 13556: 106.89306,-10.060417 + 13557: 109.47968,-10.439507 + 13558: 109.61347,-10.484104 + 13559: 106.826164,-12.22345 + 13560: 106.95996,-12.669436 + 13561: 108.92222,-12.178852 + 13562: 109.47968,-12.268049 + 13563: 109.2344,-13.115423 + 13564: 108.67694,-13.628307 + 13565: 107.628914,-13.762102 + 13566: 106.98226,-13.606007 + 13567: 106.58089,-13.829 + 13568: 108.38706,-13.516809 + 13569: 109.85876,-14.074293 + 13570: 109.1675,-14.185789 + 13571: 108.11948,-14.943966 + 13572: 107.7404,-14.943966 + 13573: 108.81073,-15.45685 + 13574: 106.64778,-16.036633 + 13575: 106.4248,-16.371122 + 13576: 106.826164,-18.155066 + 13577: 105.71124,-18.065868 + 13578: 105.64435,-16.70561 + 13579: 105.599754,-15.79134 + 13580: 105.08689,-17.151598 + 13581: 103.97196,-17.263094 + 13582: 105.33217,-17.820576 + 13583: 106.848465,-16.995502 + 13584: 105.755844,-15.010864 + 13585: 105.443665,-14.185789 + 13586: 103.61519,-15.12236 + 13587: 102.61605,-16.521912 + 13588: 102.66065,-16.945599 + 13589: 107.7447,-18.707245 + 13590: 108.99341,-17.88217 + 13591: 109.75156,-16.811804 + 13592: 110.375916,-16.388117 + 13593: 109.55087,-15.273151 + 13594: 109.64007,-16.27662 + 13595: 109.99684,-17.54768 + 13596: 109.70696,-18.305857 + 13597: 108.74813,-18.751842 + 13598: 108.36906,-19.755312 + 13599: 109.50628,-20.40199 + 13600: 111.84762,-18.395054 + 13601: 112.248985,-17.56998 + 13602: 111.08947,-19.532318 + 13603: 111.44624,-20.73648 + 13604: 110.46511,-21.271666 + 13605: 111.20096,-22.275135 + 13606: 111.80302,-21.40546 + 13607: 111.20096,-20.49119 + 13608: 110.821884,-20.201298 + 13609: 113.029434,-18.595749 + 13610: 112.67266,-17.770674 + 13611: 111.26785,-16.901001 + 13612: 111.82532,-16.075926 + 13613: 113.09633,-16.00903 + 13614: 112.62806,-16.655708 + 13615: 113.653786,-16.388117 + 13616: 114.79101,-15.741438 + 13617: 115.54916,-16.477314 + 13618: 116.329605,-16.700308 + 13619: 116.797874,-17.792973 + 13620: 114.36734,-18.305857 + 13621: 115.95053,-19.130932 + 13622: 117.13235,-18.238958 + 13623: 115.23698,-17.614578 + 13624: 115.57146,-17.057096 + 13625: 116.485695,-19.019434 + 13626: 117.24384,-19.331625 + 13627: 115.95053,-20.49119 + 13628: 114.18895,-19.82221 + 13629: 114.54572,-19.599216 + 13630: 114.300446,-21.026373 + 13631: 115.34847,-21.650753 + 13632: 115.48226,-22.029842 + 13633: 113.92137,-21.78455 + 13634: 113.58689,-20.892576 + 13635: 113.31931,-22.230536 + 13636: 113.185524,-22.721119 + 13637: 112.405075,-22.899513 + 13638: 111.84762,-22.899513 + 13639: 113.051735,-24.594261 + 13640: 113.341606,-25.64233 + 13641: 114.255844,-25.196342 + 13642: 114.8579,-24.438168 + 13643: 112.248985,-24.728058 + 13644: 112.873344,-26.5566 + 13645: 111.89221,-23.67999 + 13646: 114.03286,-22.810318 + 13647: 116.83651,-20.478786 + 13648: 118.821075,-18.739439 + 13649: 118.19672,-17.579876 + 13650: 119.133255,-16.843998 + 13651: 118.91027,-18.204256 + 13652: 119.8245,-18.38265 + 13653: 120.31507,-17.490679 + 13654: 121.02862,-16.888597 + 13655: 121.20701,-18.04816 + 13656: 120.76104,-18.806337 + 13657: 121.89826,-17.602175 + 13658: 122.433426,-16.687902 + 13659: 119.62382,-15.81823 + 13660: 118.664986,-16.308815 + 13661: 117.72845,-15.550638 + 13662: 119.155556,-13.387606 + 13663: 119.289345,-12.89702 + 13664: 118.01833,-15.48374 + 13665: 116.81422,-15.952026 + 13666: 117.260185,-16.241917 + 13667: 119.53463,-14.23498 + 13668: 118.508896,-14.0342865 + 13669: 118.12982,-12.807823 + 13670: 118.21902,-10.711689 + 13671: 118.664986,-9.886615 + 13672: 118.486595,-11.2914715 + 13673: 118.88797,-11.98275 + 13674: 119.57922,-10.577893 + 13675: 120.60495,-9.931213 + 13676: 121.76447,-10.533295 + 13677: 120.89483,-11.915852 + 13678: 121.2962,-12.451035 + 13679: 122.36653,-11.00158 + 13680: 123.347664,-10.4440975 + 13681: 122.544914,-11.871254 + 13682: 121.184715,-13.120014 + 13683: 120.35967,-13.632898 + 13684: 121.85366,-14.346476 + 13685: 123.08008,-13.566 + 13686: 123.39226,-13.699797 + 13687: 122.65641,-14.368776 + 13688: 123.035484,-15.238449 + 13689: 124.03892,-14.970858 + 13690: 124.752464,-13.632898 + 13691: 125.35453,-13.120014 + 13692: 124.79706,-15.082354 + 13693: 123.92742,-15.862829 + 13694: 123.25847,-16.888597 + 13695: 124.908554,-17.512978 + 13696: 126.24647,-16.710203 + 13697: 126.35795,-14.0342865 + 13698: 127.004616,-13.365307 + 13699: 128.00804,-14.279577 + 13700: 127.0938,-15.349945 + 13701: 127.249886,-15.996624 + 13702: 128.18643,-16.46491 + 13703: 123.48145,-18.025862 + 13704: 126.49044,-18.484976 + 13705: 127.47195,-17.818092 + 13706: 128.74297,-15.4766655 + 13707: 129.7464,-14.718489 + 13708: 129.30043,-15.878054 + 13709: 127.89563,-17.126814 + 13710: 126.35703,-17.149113 + 13711: 128.3416,-17.5505 + 13712: 129.07744,-17.5505 + 13713: 127.94023,-18.687765 + 13714: 128.31929,-19.624336 + 13715: 129.34503,-20.13722 + 13716: 129.7018,-19.289846 + 13717: 131.64177,-17.528202 + 13718: 132.73439,-18.21948 + 13719: 130.77213,-18.977657 + 13720: 132.24382,-19.624336 + 13721: 131.84245,-18.687765 + 13722: 130.39305,-18.130283 + 13723: 131.88705,-18.018787 + 13724: 131.35188,-16.435535 + 13725: 131.35188,-15.498964 + 13726: 130.57144,-15.565863 + 13727: 130.74983,-14.317102 + 13728: 132.26613,-14.227905 + 13729: 131.35188,-14.98608 + 13730: 130.43765,-16.145645 + 13731: 133.22496,-14.807686 + 13732: 132.22153,-14.383999 + 13733: 130.52684,-13.358231 + 13734: 129.38962,-12.867647 + 13735: 129.47882,-11.730382 + 13736: 128.56458,-11.908777 + 13737: 128.47539,-13.179836 + 13738: 127.91792,-11.975675 + 13739: 127.91792,-10.860709 + 13740: 127.69495,-10.548519 + 13741: 126.86988,-11.239798 + 13742: 126.62461,-12.198668 + 13743: 131.70866,-13.380531 + 13744: 133.87161,-14.3617 + 13745: 135.20952,-13.246735 + 13746: 135.03113,-14.69619 + 13747: 133.51483,-15.521265 + 13748: 133.69322,-16.680828 + 13749: 134.31758,-15.03068 + 13750: 134.01814,-15.900354 + 13751: 134.83151,-16.115732 + 13752: 133.50954,-17.927612 + 13753: 135.12816,-18.655432 + 13754: 136.03627,-16.96529 + 13755: 136.40445,-15.605034 + 13756: 136.94887,-16.653101 + 13757: 135.26062,-18.629814 + 13758: 135.82082,-19.323751 + 13759: 136.3346,-17.657852 + 13760: 136.76465,-15.896206 + 13761: 134.92064,-14.758942 + 13762: 135.96866,-16.275295 + 13763: 136.54842,-18.63902 + 13764: 135.72337,-18.460627 + 13765: 134.60846,-19.508694 + 13766: 135.29971,-20.62366 + 13767: 136.9498,-20.579062 + 13768: 137.61874,-18.170736 + 13769: 137.68564,-19.753986 + 13770: 137.19508,-20.645958 + 13771: 137.59645,-21.337238 + 13772: 138.82286,-20.779755 + 13773: 138.37689,-19.486395 + 13774: 137.99782,-17.501757 + 13775: 137.70795,-17.947742 + 13776: 139.29114,-20.378366 + 13777: 138.4661,-20.757456 + 13778: 138.77827,-21.760925 + 13779: 139.8709,-20.155375 + 13780: 139.11275,-23.277277 + 13781: 140.27226,-23.723263 + 13782: 142.569,-23.054283 + 13783: 142.21223,-24.972025 + 13784: 142.90349,-23.968555 + 13785: 143.14877,-23.634066 + 13786: 135.27621,-12.768595 + 13787: 135.85876,-12.21109 + 13788: 134.78844,-11.653607 + 13789: 134.008,-12.1664915 + 13790: 134.34247,-10.783935 + 13791: 135.1898,-11.25222 + 13792: 135.61348,-10.717036 + 13793: 133.785,-10.694737 + 13794: 133.42824,-10.806233 + 13795: 135.21211,-8.9999895 + 13796: 135.68037,-8.264112 + 13797: 136.32703,-8.888494 + 13798: 135.47969,-9.914262 + 13799: 136.6392,-9.490575 + 13800: 136.7061,-7.550535 + 13801: 137.15207,-6.7923584 + 13802: 137.50885,-7.9296227 + 13803: 137.06288,-9.200684 + 13804: 136.6392,-10.315649 + 13805: 136.32703,-10.873132 + 13806: 137.59804,-10.159554 + 13807: 138.11092,-9.4236765 + 13808: 137.46425,-8.487105 + 13809: 136.72841,-7.907324 + 13810: 136.10405,-7.1045485 + 13811: 138.69067,-7.8404255 + 13812: 139.09204,-9.3121805 + 13813: 139.18123,-9.289881 + 13814: 139.50275,-7.238344 + 13815: 139.15565,-5.2092648 + 13816: 139.79713,-4.814976 + 13817: 140.91502,-6.690422 + 13818: 143.06134,-7.2017827 + 13819: 142.3661,-5.090787 + 13820: 142.29568,-2.6455703 + 13821: 141.61696,-4.269257 + 13822: 139.52301,-5.600084 + 13823: 139.07704,-6.02377 + 13824: 140.52644,-6.625851 + 13825: 140.97241,-7.4509263 + 13826: 142.10963,-7.3394294 + 13827: 141.93124,-6.135267 + 13828: 142.3995,-6.112967 + 13829: 140.50414,-8.320599 + 13830: 140.30345,-8.655088 + 13831: 142.28801,-8.766584 + 13832: 142.37721,-7.6516194 + 13833: 143.53673,-8.008408 + 13834: 144.11649,-7.807715 + 13835: 144.40637,-6.6927495 + 13836: 144.74084,-5.5108857 + 13837: 145.81117,-6.4028583 + 13838: 145.3652,-5.3993897 + 13839: 143.51443,-4.9980025 + 13840: 142.93468,-4.507417 + 13841: 143.40294,-3.994533 + 13842: 144.85234,-4.329023 + 13843: 144.91924,-5.265594 + 13844: 145.71992,-4.4851184 + 13845: 145.11511,-3.9722342 + 13846: 146.633,-3.0075665 + 13847: 146.98555,-4.6051326 + 13848: 146.24408,-5.3642077 + 13849: 146.56293,-5.676033 + 13850: 147.46205,-5.5645294 + 13851: 147.61832,-4.360367 + 13852: 148.39876,-4.89555 + 13853: 147.17235,-6.16661 + 13854: 146.77098,-6.8355894 + 13855: 147.90819,-6.657195 + 13856: 148.26497,-6.032814 + 13857: 149.09001,-5.832121 + 13858: 149.42448,-6.5233994 + 13859: 150.8293,-5.7652225 + 13860: 149.89276,-4.22657 + 13861: 150.00426,-3.490693 + 13862: 150.6286,-5.2523384 + 13863: 150.22723,-6.010515 + 13864: 151.31985,-6.6348953 + 13865: 152.36789,-6.032814 + 13866: 151.60974,-4.449564 + 13867: 152.68007,-4.137373 + 13868: 152.68007,-5.2523384 + 13869: 152.43478,-6.679494 + 13870: 152.2787,-7.638365 + 13871: 152.10031,-7.8836565 + 13872: 154.15176,-7.214678 + 13873: 154.79842,-5.631427 + 13874: 154.90991,-4.984747 + 13875: 154.41934,-6.8355894 + 13876: 153.572,-7.5491676 + 13877: 154.77612,-7.749861 + 13878: 155.44507,-6.5233994 + 13879: 156.11403,-6.4119024 + 13880: 156.3816,-6.6125965 + 13881: 154.68692,-4.6056585 + 13882: 153.5274,-3.6690884 + 13883: 154.62003,-1.9297419 + 13884: 153.41591,-0.74787855 + 13885: 151.00768,-1.5060549 + 13886: 150.13805,-2.130436 + 13887: 150.80699,-0.8370762 + 13888: 152.05571,-0.19039631 + 13889: 151.47595,1.0806642 + 13890: 149.66977,0.34478712 + 13891: 148.97852,-1.4391575 + 13892: 148.13118,-1.1938648 + 13893: 148.28728,0.14409351 + 13894: 147.7744,1.2813582 + 13895: 147.39532,1.0806642 + 13896: 147.10545,-0.25729418 + 13897: 147.72981,-1.8405447 + 13898: 147.7075,-2.219633 + 13899: 146.72638,-1.2161646 + 13900: 146.4142,-0.056600094 + 13901: 146.10202,0.5677805 + 13902: 145.72295,0.5008826 + 13903: 145.21008,-0.77017784 + 13904: 145.18779,-1.8182459 + 13905: 145.54456,-2.7771158 + 13906: 145.32158,-3.0893059 + 13907: 144.13976,-2.7994146 + 13908: 143.5154,-1.907443 + 13909: 143.6046,-0.52488565 + 13910: 143.5154,0.25558996 + 13911: 143.13632,0.67927694 + 13912: 142.60117,-0.4133892 + 13913: 142.80185,-1.706749 + 13914: 143.09174,-2.7102175 + 13915: 142.22209,-3.1339045 + 13916: 141.30785,-2.5764217 + 13917: 141.44164,-1.0823679 + 13918: 141.50854,0.25558996 + 13919: 141.15176,0.87997055 + 13920: 140.6166,0.9691677 + 13921: 140.14833,-0.72557926 + 13922: 140.43822,-1.8405447 + 13923: 140.34901,-2.4872246 + 13924: 140.28212,-3.3122988 + 13925: 139.91281,-3.579524 + 13926: 139.17696,-3.6654038 + 13927: 139.19926,-2.059854 + 13928: 138.97627,-0.7887931 + 13929: 138.5303,0.103179455 + 13930: 138.84248,1.106648 + 13931: 139.73442,1.7310286 + 13932: 140.44798,1.2850423 + 13933: 140.55946,-0.119814396 + 13934: 138.26273,0.97285223 + 13935: 137.57147,1.5526338 + 13936: 137.014,0.839056 + 13937: 136.92482,0.19237661 + 13938: 137.48228,-1.6138673 + 13939: 138.6864,-2.394343 + 13940: 138.6864,-3.1748185 + 13941: 137.90594,-3.866098 + 13942: 136.96942,-3.643104 + 13943: 136.94711,-2.907227 + 13944: 136.81332,-1.9483571 + 13945: 135.98828,-0.9894872 + 13946: 135.69841,0.17007685 + 13947: 136.12207,1.2404437 + 13948: 136.16667,1.9317222 + 13949: 135.54231,1.3519402 + 13950: 135.45312,-0.25361013 + 13951: 135.47542,-1.5915685 + 13952: 135.8322,-3.0410228 + 13953: 135.69841,-4.155988 + 13954: 134.94026,-4.1336894 + 13955: 134.53888,-2.1936498 + 13956: 134.2936,-0.85569143 + 13957: 134.2936,0.37077093 + 13958: 133.98143,1.5080352 + 13959: 133.11179,1.8202257 + 13960: 132.978,0.32617235 + 13961: 133.26787,-1.1009831 + 13962: 133.04489,-2.3051457 + 13963: 132.17525,-3.5093083 + 13964: 131.92996,-3.553907 + 13965: 133.04489,-2.7288327 + 13966: 132.8665,-1.5915685 + 13967: 131.72928,-2.1490512 + 13968: 130.19069,-2.595037 + 13969: 129.29875,-2.9741254 + 13970: 130.94884,-1.1901803 + 13971: 131.32791,-0.25361013 + 13972: 131.3502,0.6160631 + 13973: 131.3056,1.3296409 + 13974: 130.0792,-0.07521582 + 13975: 129.47713,-1.3016772 + 13976: 128.4514,-1.9037585 + 13977: 127.71556,-1.9706569 + 13978: 128.11693,-0.23131037 + 13979: 128.71898,0.8613553 + 13980: 130.16838,1.4634366 + 13981: 129.03116,1.99862 + 13982: 127.604065,1.7310286 + 13983: 127.0243,1.0174508 + 13984: 126.80131,2.0432186 + 13985: 128.09464,1.8648243 + 13986: 129.12036,0.54916525 + 13987: 130.74815,0.8836546 + 13988: 130.19069,-2.7734313 + 13989: 130.0123,-5.2040563 + 13990: 131.81847,-4.3566823 + 13991: 133.62465,-3.8437982 + 13992: 132.46513,-5.1594577 + 13993: 131.5063,-5.7169394 + 13994: 130.61435,-6.809606 + 13995: 131.03802,-7.3893876 + 13996: 132.7773,-5.984532 + 13997: 133.60234,-4.8695664 + 13998: 134.3159,-4.7803693 + 13999: 133.08948,-6.3190207 + 14000: 132.13065,-6.8765035 + 14001: 132.35364,-5.4939466 + 14002: 130.92653,-3.7768998 + 14003: 130.56976,-4.5573764 + 14004: 128.47968,-4.2641706 + 14005: 128.02266,-3.8772473 + 14006: 126.171776,-4.6346474 + 14007: 125.16834,-4.2555594 + 14008: 124.49939,-4.23326 + 14009: 123.29527,-3.6088796 + 14010: 122.35874,-2.9176006 + 14011: 121.3776,-3.3189888 + 14012: 120.95393,-4.1886616 + 14013: 122.47023,-4.8576407 + 14014: 123.91963,-4.54545 + 14015: 123.36217,-5.5043206 + 14016: 122.559425,-6.7976804 + 14017: 123.941925,-6.3070955 + 14018: 124.54398,-5.615817 + 14019: 125.59202,-5.2813272 + 14020: 126.127174,-6.4631906 + 14021: 127.46508,-5.928007 + 14022: 128.17863,-5.0806336 + 14023: 128.98138,-5.459722 + 14024: 126.26096,-6.931476 + 14025: 124.454796,-7.1098704 + 14026: 122.381035,-6.842279 + 14027: 121.5114,-7.221367 + 14028: 122.76011,-8.269435 + 14029: 125.212944,-7.422061 + 14030: 125.72581,-8.358632 + 14031: 124.94536,-8.804618 + 14032: 126.127174,-9.540495 + 14033: 124.63318,-10.65546 + 14034: 123.62975,-11.391337 + 14035: 124.14262,-11.859623 + 14036: 125.23524,-11.435936 + 14037: 125.97109,-10.276372 + 14038: 127.46508,-9.874985 + 14039: 128.22324,-8.581625 + 14040: 129.15977,-7.6004553 + 14041: 128.15634,-6.4408913 + 14042: 129.51656,-6.8868775 + 14043: 129.04828,-8.3140335 + 14044: 130.20781,-8.581625 + 14045: 129.22667,-7.422061 + 14046: 127.86647,-7.4443603 + 14047: 121.22152,-8.537026 + 14048: 121.66749,-8.715421 + 14049: 121.95737,-9.741189 + 14050: 123.49596,-7.734251 + 14051: 107.74018,-1.2391737 + 14052: 104.350815,-0.15394068 + 14053: 105.09409,3.9491315 + 14054: 110.757904,1.8678632 + 14055: 122.88329,0.9015603 + 14056: 123.834694,2.7152371 + 14057: 116.639725,0.38124228 + 14058: 147.2455,2.7891526 + 14059: 146.62305,3.366777 + 14060: 148.02785,4.2587495 + 14061: 148.9421,5.5075107 + 14062: 149.54414,6.7116723 + 14063: 148.22853,7.5813465 + 14064: 146.24397,6.823169 + 14065: 145.37433,6.9792647 + 14066: 147.62648,8.919304 + 14067: 149.32117,9.766678 + 14068: 149.94551,11.015438 + 14069: 148.47382,11.572922 + 14070: 146.66765,11.082336 + 14071: 146.11018,11.63982 + 14072: 147.2697,12.576389 + 14073: 148.54071,13.691355 + 14074: 148.42923,15.14081 + 14075: 147.49269,13.289967 + 14076: 147.73798,11.082336 + 14077: 148.27313,10.591751 + 14078: 146.28857,10.680948 + 14079: 144.92836,11.572922 + 14080: 145.21825,13.178471 + 14081: 147.3143,14.784021 + 14082: 147.96095,15.742891 + 14083: 146.91293,16.010483 + 14084: 145.77571,15.0962105 + 14085: 145.19595,16.032784 + 14086: 146.35547,16.72406 + 14087: 147.73798,17.214645 + 14088: 146.91293,15.2969055 + 14089: 146.53386,14.404934 + 14090: 147.55959,13.156172 + 14091: 146.57845,12.108105 + 14092: 150.61447,12.152702 + 14093: 150.94894,9.922773 + 14094: 150.79286,7.960434 + 14095: 149.45496,7.2022576 + 14096: 150.54758,6.956965 + 14097: 150.63676,6.8900676 + 14098: 150.28,3.879661 + 14099: 151.21654,3.0991855 + 14100: 151.6625,3.678967 + 14101: 149.58875,1.783526 + 14102: 152.66594,2.0065188 + 14103: 154.4944,2.3410087 + 14104: 154.98497,1.3152413 + 14105: 156.94724,3.0322871 + 14106: 156.92494,4.392545 + 14107: 155.76541,4.7047353 + 14108: 155.34175,5.7528024 + 14109: 156.50127,6.2656865 + 14110: 156.83574,4.504041 + 14111: 155.52013,2.0511174 + 14112: 156.50127,0.75775766 + 14113: 153.93694,2.095716 + 14114: 152.75513,4.013457 + 14115: 153.51328,5.0169253 + 14116: 155.47554,6.444081 + 14117: 154.22682,7.380652 + 14118: 155.76541,8.607113 + 14119: 157.3932,7.759741 + 14120: 155.9438,6.823169 + 14121: 157.97296,7.469849 + 14122: 158.70882,8.228025 + 14123: 158.57503,6.533278 + 14124: 157.79457,5.596708 + 14125: 158.59732,5.3291154 + 14126: 158.53043,6.6001763 + 14127: 156.25598,7.246856 + 14128: 154.4944,8.027332 + 14129: 155.00726,10.524855 + 14130: 155.02957,11.394527 + 14131: 154.49985,9.800362 + 14132: 153.70485,10.923059 + 14133: 154.52989,10.900761 + 14134: 154.75287,9.228312 + 14135: 156.04619,10.677767 + 14136: 156.82663,11.658936 + 14137: 157.3395,10.789265 + 14138: 156.58134,9.941891 + 14139: 158.11993,10.053387 + 14140: 159.74773,9.674299 + 14141: 160.34978,10.766964 + 14142: 159.32405,11.904228 + 14143: 158.7443,13.108391 + 14144: 157.78546,14.178757 + 14145: 156.62595,13.264486 + 14146: 155.8678,13.309086 + 14147: 156.82663,14.959234 + 14148: 157.54018,16.252594 + 14149: 157.3395,17.479055 + 14150: 156.38066,16.899273 + 14151: 155.06505,15.40522 + 14152: 154.32921,15.226826 + 14153: 153.05818,16.007301 + 14154: 153.32578,17.122267 + 14155: 152.72371,16.810076 + 14156: 153.45956,15.159927 + 14157: 153.70485,14.624744 + 14158: 154.52989,16.274893 + 14159: 155.42183,16.609383 + 14160: 154.81976,14.602444 + 14161: 154.24,13.643574 + 14162: 154.12851,12.996895 + 14163: 155.7786,13.5543785 + 14164: 151.7981,17.13835 + 14165: 152.39969,16.621355 + 14166: 151.84053,16.697607 + 14167: 152.79936,18.392353 + 14168: 154.56094,20.198597 + 14169: 153.40143,20.934475 + 14170: 155.09612,19.306625 + 14171: 154.20416,18.325455 + 14172: 156.52321,19.150532 + 14173: 156.41171,20.73378 + 14174: 155.78735,22.138638 + 14175: 153.57982,20.822979 + 14176: 152.2196,19.48502 + 14177: 151.14928,20.176298 + 14178: 150.63641,20.979073 + 14179: 150.05666,18.81604 + 14180: 150.63641,18.169361 + 14181: 149.41,18.54845 + 14182: 149.76677,20.131699 + 14183: 149.65529,21.44736 + 14184: 149.3877,22.027142 + 14185: 148.25047,20.77838 + 14186: 148.29507,19.81951 + 14187: 148.49576,18.615347 + 14188: 148.42886,17.85717 + 14189: 147.15785,19.128231 + 14190: 146.97946,20.131699 + 14191: 146.95717,21.603455 + 14192: 146.66728,21.871046 + 14193: 145.97604,20.622284 + 14194: 145.79765,19.551918 + 14195: 145.0172,19.81951 + 14196: 144.92801,18.637646 + 14197: 144.92801,17.745674 + 14198: 146.5335,18.19166 + 14199: 147.55923,18.035564 + 14200: 146.96002,23.14333 + 14201: 146.37872,23.96574 + 14202: 147.93962,24.099537 + 14203: 148.49707,22.67238 + 14204: 148.69777,24.032639 + 14205: 148.43018,25.236801 + 14206: 148.49707,26.418663 + 14207: 150.30325,26.374065 + 14208: 150.37015,25.749683 + 14209: 152.08713,27.13224 + 14210: 151.0614,27.756622 + 14211: 150.32555,27.778923 + 14212: 150.45934,30.00885 + 14213: 152.55539,30.365639 + 14214: 151.77495,28.960785 + 14215: 153.13515,28.960785 + 14216: 154.31697,30.499435 + 14217: 153.35814,31.859695 + 14218: 152.06483,30.365639 + 14219: 150.9053,31.012321 + 14220: 156.32384,30.70013 + 14221: 156.42967,32.060387 + 14222: 158.00233,32.216484 + 14223: 156.67863,30.923122 + 14224: 155.94382,30.00885 + 14225: 156.77231,31.05692 + 14226: 158.93526,31.725899 + 14227: 158.86836,33.30915 + 14228: 157.48586,33.465244 + 14229: 156.7277,32.97466 + 14230: 158.95755,34.134224 + 14231: 159.738,34.691708 + 14232: 158.3332,35.739773 + 14233: 158.17711,36.92164 + 14234: 157.24057,37.47912 + 14235: 156.8392,37.635216 + 14236: 158.80147,37.010834 + 14237: 159.13594,31.7482 + 14238: 158.06561,30.655533 + 14239: 158.51158,29.250675 + 14240: 157.88722,28.068813 + 14241: 156.41553,28.804688 + 14242: 155.96956,28.269508 + 14243: 156.92839,27.578228 + 14244: 158.75687,27.377533 + 14245: 158.08792,26.507862 + 14246: 156.8392,26.820051 + 14247: 156.25945,26.730854 + 14248: 155.88037,26.307167 + 14249: 155.90266,25.526691 + 14250: 155.03302,25.080706 + 14251: 155.79117,24.679317 + 14252: 156.92839,24.211033 + 14253: 157.32977,23.94344 + 14254: 156.30403,22.895374 + 14255: 153.85121,23.02917 + 14256: 153.9404,22.560884 + 14257: 154.78775,21.579714 + 14258: 155.16682,21.222925 + 14259: 145.459,25.602821 + 14260: 143.9155,26.457424 + 14261: 143.26884,25.253262 + 14262: 144.0047,25.966839 + 14263: 144.45067,27.61699 + 14264: 144.42836,28.910347 + 14265: 145.27571,30.047615 + 14266: 145.3426,29.490131 + 14267: 143.26884,27.52779 + 14268: 142.4438,26.479725 + 14269: 142.24312,25.743847 + 14270: 141.77486,25.476255 + 14271: 140.39235,24.98567 + 14272: 140.28085,24.539684 + 14273: 140.59303,24.227493 + 14274: 142.71138,25.69925 + 14275: 143.40263,26.59122 + 14276: 142.26541,27.081806 + 14277: 140.81602,26.747314 + 14278: 141.86404,27.750786 + 14279: 142.64449,28.48666 + 14280: 142.02013,29.311737 + 14281: 142.77827,30.315205 + 14282: 143.78171,30.069912 + 14283: 144.62906,30.003014 + 14284: 143.26884,30.939583 + 14285: 144.0716,32.12145 + 14286: 144.60675,32.924225 + 14287: 145.69939,31.876156 + 14288: 145.90007,30.471298 + 14289: 147.32716,31.184875 + 14290: 147.79543,32.188347 + 14291: 148.4421,31.09568 + 14292: 148.1522,30.560497 + 14293: 149.13335,30.850388 + 14294: 149.37862,30.047615 + 14295: 144.49974,33.36365 + 14296: 143.23363,33.59668 + 14297: 142.69844,32.013443 + 14298: 141.69476,30.854004 + 14299: 140.86984,29.694378 + 14300: 140.24548,28.579414 + 14301: 139.9779,27.70974 + 14302: 139.30894,26.260284 + 14303: 137.50276,24.18645 + 14304: 137.1906,24.766232 + 14305: 136.87842,26.237986 + 14306: 138.86298,27.598244 + 14307: 139.48734,29.114597 + 14308: 137.146,25.948095 + 14309: 139.01906,27.12996 + 14310: 139.8887,29.560581 + 14311: 140.49077,30.519455 + 14312: 138.97447,29.493683 + 14313: 137.46574,28.936203 + 14314: 137.12831,28.401016 + 14315: 134.55223,26.327179 + 14316: 135.42505,25.992695 + 14317: 134.85933,25.033823 + 14318: 133.14189,24.476341 + 14319: 133.31927,24.052654 + 14320: 136.10727,24.565536 + 14321: 136.06268,25.212217 + 14322: 135.34912,27.04076 + 14323: 133.96663,27.865837 + 14324: 133.91396,25.234516 + 14325: 134.12949,24.565536 + 14326: 135.23468,24.565536 + 14327: 135.11093,23.918858 + 14328: 138.05434,24.409443 + 14329: 138.03203,26.193386 + 14330: 137.51917,27.531345 + 14331: 132.07834,26.08189 + 14332: 130.87422,25.368313 + 14333: 130.98572,26.75087 + 14334: 132.5243,27.152256 + 14335: 132.36823,25.858898 + 14336: 131.32019,24.877728 + 14337: 131.1195,24.008055 + 14338: 132.61351,24.632435 + 14339: 129.8485,25.12302 + 14340: 128.17612,24.677034 + 14341: 127.90852,25.948095 + 14342: 128.73357,26.706272 + 14343: 128.51059,25.279116 + 14344: 127.640945,24.431742 + 14345: 126.16924,24.587837 + 14346: 125.96856,26.10419 + 14347: 126.704414,28.356419 + 14348: 125.14352,27.977333 + 14349: 124.496864,26.41638 + 14350: 125.54488,25.323715 + 14351: 126.63752,24.766232 + 14352: 128.10922,24.81083 + 14353: 128.06462,24.297947 + 14354: 126.994286,23.740463 + 14355: 128.57748,27.018463 + 14356: 127.93083,28.512516 + 14357: 128.4883,29.07 + 14358: 128.80048,27.642841 + 14359: 130.18297,28.512516 + 14360: 128.28761,29.605179 + 14361: 126.8382,30.162663 + 14362: 127.484856,31.879711 + 14363: 128.77817,33.685955 + 14364: 128.75587,32.013504 + 14365: 128.3322,30.341057 + 14366: 126.88279,30.073467 + 14367: 126.34763,31.076935 + 14368: 126.682106,32.3257 + 14369: 129.31334,33.061573 + 14370: 130.36136,33.46296 + 14371: 129.9377,31.099236 + 14372: 131.89995,30.140366 + 14373: 133.99602,31.010036 + 14374: 133.59464,29.917374 + 14375: 132.7473,29.382187 + 14376: 134.1744,28.735508 + 14377: 135.6461,29.515984 + 14378: 136.64952,29.783577 + 14379: 135.713,28.356419 + 14380: 136.60493,28.133427 + 14381: 137.74216,31.010036 + 14382: 138.5003,31.879711 + 14383: 139.32535,30.58635 + 14384: 131.1418,33.10405 + 14385: 129.737,35.726715 + 14386: 130.87422,37.41809 + 14387: 130.66075,34.154232 + 14388: 130.86143,34.82321 + 14389: 130.83913,36.250366 + 14390: 130.12558,36.540257 + 14391: 128.4755,34.934708 + 14392: 127.62816,35.2469 + 14393: 129.59042,37.432228 + 14394: 130.48236,39.03778 + 14395: 130.72765,40.04125 + 14396: 129.14445,38.4134 + 14397: 129.14445,37.053143 + 14398: 128.63158,37.142338 + 14399: 128.60928,39.03778 + 14400: 128.18561,40.37574 + 14401: 127.51666,38.3688 + 14402: 127.026085,37.76672 + 14403: 127.672745,38.03431 + 14404: 128.69847,37.878216 + 14405: 129.56812,39.550663 + 14406: 130.01408,41.735996 + 14407: 131.55269,41.713696 + 14408: 130.92833,39.99665 + 14409: 133.49265,39.99665 + 14410: 134.36229,40.55413 + 14411: 133.26967,38.94858 + 14412: 132.97978,38.279602 + 14413: 133.98322,38.301903 + 14414: 134.31769,38.926285 + 14415: 134.2954,39.862854 + 14416: 133.78253,40.66563 + 14417: 132.5561,41.22311 + 14418: 135.83398,42.27118 + 14419: 136.23535,41.200813 + 14420: 134.58527,38.502594 + 14421: 135.99007,39.149277 + 14422: 136.14616,40.73253 + 14423: 137.105,39.95205 + 14424: 136.10156,39.483765 + 14425: 137.23878,38.94858 + 14426: 137.0381,38.547195 + 14427: 138.88887,38.547195 + 14428: 139.87001,38.012012 + 14429: 139.15645,37.231537 + 14430: 140.24908,38.257305 + 14431: 139.87001,40.531834 + 14432: 138.86658,41.6914 + 14433: 140.38287,38.926285 + 14434: 141.364,36.71865 + 14435: 132.58307,37.65587 + 14436: 131.9804,42.866585 + 14437: 131.31694,44.221844 + 14438: 133.50218,44.846226 + 14439: 132.85553,43.619762 + 14440: 133.72517,43.352173 + 14441: 133.52449,44.244144 + 14442: 134.97388,45.292213 + 14443: 135.53134,45.760498 + 14444: 135.19687,44.13265 + 14445: 135.39755,43.75356 + 14446: 135.93272,44.62323 + 14447: 136.78006,44.73473 + 14448: 137.7835,44.311043 + 14449: 137.27063,43.530567 + 14450: 137.96187,42.928486 + 14451: 138.76462,42.70549 + 14452: 136.89156,41.947315 + 14453: 131.72957,45.055393 + 14454: 132.68298,46.375164 + 14455: 132.6321,47.55745 + 14456: 131.69556,46.464783 + 14457: 132.38681,45.59511 + 14458: 132.38681,44.97073 + 14459: 131.02661,46.57628 + 14460: 130.42455,47.20066 + 14461: 130.00087,46.30869 + 14462: 130.60294,45.32752 + 14463: 129.13124,45.439014 + 14464: 129.08664,46.53168 + 14465: 129.57721,48.51632 + 14466: 129.08664,48.048035 + 14467: 127.793335,47.066864 + 14468: 127.77103,46.55398 + 14469: 128.46228,46.82157 + 14470: 128.2393,46.30869 + 14471: 126.70069,47.53515 + 14472: 127.21357,47.981136 + 14473: 128.35078,49.452892 + 14474: 130.09007,49.631287 + 14475: 130.71443,48.15953 + 14476: 131.60637,49.101067 + 14477: 130.20157,50.972977 + 14478: 128.50688,48.57427 + 14479: 127.54805,49.571037 + 14480: 127.56668,50.2411 + 14481: 126.574165,49.57386 + 14482: 126.57862,51.568764 + 14483: 127.065315,52.71261 + 14484: 126.641655,51.776035 + 14485: 126.21798,50.527275 + 14486: 125.16995,50.72797 + 14487: 125.39294,51.75374 + 14488: 125.972694,51.21855 + 14489: 126.820045,50.527275 + 14490: 127.86807,52.155125 + 14491: 127.19912,53.716076 + 14492: 125.348335,52.9579 + 14493: 124.3895,52.511913 + 14494: 124.65709,53.203194 + 14495: 126.10648,53.448486 + 14496: 126.19569,52.668007 + 14497: 125.482124,54.028267 + 14498: 126.21798,55.16553 + 14499: 126.97613,56.508766 + 14500: 127.19912,56.2746 + 14501: 125.19225,56.528496 + 14502: 125.41523,57.263565 + 14503: 124.81318,56.014557 + 14504: 125.43754,55.50239 + 14505: 125.03616,57.018745 + 14506: 123.63136,56.661957 + 14507: 124.300316,56.282867 + 14508: 126.70855,57.041046 + 14509: 126.08419,56.327465 + 14510: 127.600494,58.200607 + 14511: 128.67082,58.847286 + 14512: 127.600494,57.241737 + 14513: 128.04646,56.483562 + 14514: 127.73428,54.90031 + 14515: 127.71199,53.98604 + 14516: 128.02417,57.241737 + 14517: 128.7823,58.4236 + 14518: 129.80804,58.601997 + 14519: 129.33977,60.029152 + 14520: 128.13565,59.939957 + 14521: 126.41866,58.4459 + 14522: 126.48556,59.672363 + 14523: 127.890366,60.631233 + 14524: 127.600494,61.7462 + 14525: 126.70855,62.30368 + 14526: 126.19569,59.939957 + 14527: 125.236855,59.114876 + 14528: 126.08419,59.270973 + 14529: 126.19569,61.14412 + 14530: 124.924675,60.78733 + 14531: 124.07733,60.296745 + 14532: 124.99157,61.077217 + 14533: 125.19225,61.7239 + 14534: 124.612495,63.351746 + 14535: 123.76515,62.816566 + 14536: 124.144226,61.36711 + 14537: 123.58676,61.500908 + 14538: 123.809746,62.972656 + 14539: 123.653656,64.53361 + 14540: 123.45297,64.8458 + 14541: 122.51644,63.753136 + 14542: 121.95898,62.90576 + 14543: 122.13737,64.42211 + 14544: 121.312325,64.19912 + 14545: 120.197395,63.708534 + 14546: 119.61764,63.128754 + 14547: 121.29002,62.147583 + 14548: 122.29345,61.768494 + 14549: 120.197395,61.456306 + 14550: 119.59534,61.32251 + 14551: 119.46155,60.519737 + 14552: 121.29002,60.809624 + 14553: 121.78059,60.608932 + 14554: 119.95212,59.60546 + 14555: 119.104774,60.74273 + 14556: 118.36893,60.675835 + 14557: 118.12364,60.00685 + 14558: 120.06361,58.847286 + 14559: 121.49071,59.516266 + 14560: 120.977844,58.80269 + 14561: 120.1528,58.312103 + 14562: 120.28659,57.620827 + 14563: 117.90066,58.80269 + 14564: 117.65537,58.356705 + 14565: 118.99328,56.50586 + 14566: 120.06361,56.037575 + 14567: 122.11507,58.334404 + 14568: 123.14079,58.80269 + 14569: 123.0739,58.15601 + 14570: 123.92124,58.245205 + 14571: 124.612495,59.650063 + 14572: 123.54217,56.572758 + 14573: 121.78059,56.17137 + 14574: 120.331184,55.457794 + 14575: 118.948685,55.836884 + 14576: 120.08591,54.67732 + 14577: 121.73599,54.788815 + 14578: 120.88865,53.785347 + 14579: 119.63994,52.937973 + 14580: 120.527336,51.91961 + 14581: 120.46044,51.22833 + 14582: 118.85495,51.495922 + 14583: 118.34208,51.785812 + 14584: 118.20829,50.470154 + 14585: 118.297485,49.667377 + 14586: 117.16026,49.087597 + 14587: 118.0745,47.70504 + 14588: 119.79148,48.106426 + 14589: 119.79148,47.593544 + 14590: 117.58394,49.399788 + 14591: 116.80349,50.67085 + 14592: 117.00417,52.075703 + 14593: 116.20143,51.429024 + 14594: 115.77776,50.537052 + 14595: 116.08994,51.22833 + 14596: 115.82236,52.87848 + 14597: 114.48445,53.50286 + 14598: 113.7932,53.10147 + 14599: 114.17227,51.85271 + 14600: 114.01618,51.54052 + 14601: 114.10538,49.91267 + 14602: 113.748604,48.9538 + 14603: 112.990456,51.005337 + 14604: 112.990456,51.785812 + 14605: 112.031624,51.85271 + 14606: 112.58908,50.916138 + 14607: 112.678276,49.488983 + 14608: 113.48102,48.240223 + 14609: 112.12081,48.240223 + 14610: 111.095085,50.00187 + 14611: 110.626816,50.64855 + 14612: 111.63025,48.28482 + 14613: 109.39474,50.620216 + 14614: 108.88703,50.99793 + 14615: 109.600586,49.927563 + 14616: 110.55942,49.258583 + 14617: 111.36216,49.05789 + 14618: 112.00882,47.45234 + 14619: 111.36216,46.315075 + 14620: 110.18034,47.318542 + 14621: 109.333,48.879494 + 14622: 108.41877,49.70457 + 14623: 108.08429,50.35125 + 14624: 107.17005,49.97216 + 14625: 107.79441,48.45581 + 14626: 108.88703,47.630733 + 14627: 109.28841,46.761063 + 14628: 109.02083,45.980587 + 14629: 110.068855,45.044014 + 14630: 109.4891,44.24124 + 14631: 108.37417,44.352737 + 14632: 107.727516,44.464233 + 14633: 107.9728,46.58267 + 14634: 106.94707,47.18475 + 14635: 106.21122,48.834896 + 14636: 106.56799,49.32548 + 14637: 106.05513,48.7457 + 14638: 106.96937,46.20358 + 14639: 107.52683,46.89486 + 14640: 107.12546,47.920624 + 14641: 105.27468,48.299713 + 14642: 104.248955,47.67533 + 14643: 105.653755,49.30318 + 14644: 104.98481,49.905262 + 14645: 103.89218,48.05442 + 14646: 103.17863,47.028652 + 14647: 102.59887,48.7234 + 14648: 102.1529,49.593075 + 14649: 101.37246,49.68227 + 14650: 100.814995,48.41121 + 14651: 100.43592,47.987522 + 14652: 100.7481,48.7234 + 14653: 101.84072,48.188217 + 14654: 102.73266,48.45581 + 14655: 103.71379,49.10249 + 14656: 103.44621,47.876026 + 14657: 104.22666,46.44887 + 14658: 104.44964,45.267006 + 14659: 103.35702,44.821022 + 14660: 106.166626,43.973648 + 14661: 107.34844,43.706055 + 14662: 105.988235,42.903282 + 14663: 104.20436,42.3681 + 14664: 105.78755,41.03014 + 14665: 104.91791,39.98207 + 14666: 103.936775,39.959774 + 14667: 105.0071,41.11934 + 14668: 105.49767,41.855213 + 14669: 104.717224,41.766018 + 14670: 103.98138,40.851746 + 14671: 103.624596,41.63222 + 14672: 104.49424,42.189705 + 14673: 103.69149,43.795254 + 14674: 102.086006,43.081676 + 14675: 102.353584,43.772953 + 14676: 103.13403,43.90675 + 14677: 108.43368,40.402954 + 14678: 108.47827,41.18343 + 14679: 110.864204,40.202263 + 14680: 109.05804,39.131893 + 14681: 109.68239,38.730507 + 14682: 110.752716,39.91237 + 14683: 111.71155,40.737446 + 14684: 113.02715,40.670547 + 14685: 112.51429,39.64478 + 14686: 109.5263,38.552113 + 14687: 107.67553,38.262222 + 14688: 109.147224,37.838535 + 14689: 111.57776,38.418316 + 14690: 112.71498,39.087296 + 14691: 111.39937,38.03923 + 14692: 112.02373,37.41485 + 14693: 113.58462,38.9089 + 14694: 113.227844,40.51445 + 14695: 113.31704,41.85241 + 14696: 115.05631,41.674015 + 14697: 114.36507,40.62595 + 14698: 115.591484,41.361824 + 14699: 115.47999,42.52139 + 14700: 109.97915,35.934433 + 14701: 109.73903,36.430607 + 14702: 113.04984,36.645283 + 14703: 112.0687,35.285027 + 14704: 111.332855,34.348454 + 14705: 111.020676,33.322685 + 14706: 112.269394,34.41535 + 14707: 113.04984,34.41535 + 14708: 112.69306,33.545677 + 14709: 111.979515,32.787502 + 14710: 113.76339,32.676006 + 14711: 114.43234,33.411884 + 14712: 114.47694,32.27462 + 14713: 112.51467,32.073925 + 14714: 110.262535,32.163124 + 14715: 109.281395,31.89553 + 14716: 110.061844,33.79097 + 14717: 110.81999,35.21813 + 14718: 112.22479,35.931705 + 14719: 114.82183,36.243896 + 14720: 114.75697,36.1101 + 14721: 115.227425,35.06203 + 14722: 115.74239,35.195827 + 14723: 117.43708,36.444588 + 14724: 116.58974,35.06203 + 14725: 115.80929,33.947067 + 14726: 117.943565,33.85787 + 14727: 118.48581,35.08433 + 14728: 117.60203,35.039734 + 14729: 117.36045,36.935173 + 14730: 118.18549,37.96094 + 14731: 119.01054,37.96094 + 14732: 119.25582,36.39999 + 14733: 120.28155,36.667583 + 14734: 120.23695,37.782547 + 14735: 119.612595,38.852913 + 14736: 121.351875,37.827145 + 14737: 120.79441,35.641815 + 14738: 117.80642,33.010498 + 14739: 117.717224,32.20772 + 14740: 120.52683,32.430714 + 14741: 120.9505,33.16659 + 14742: 119.568,34.19236 + 14743: 120.81671,34.74984 + 14744: 119.768684,33.478783 + 14745: 121.26268,33.991665 + 14746: 122.11002,33.724075 + 14747: 122.600586,33.52338 + 14748: 122.93507,34.682945 + 14749: 122.11002,35.70871 + 14750: 122.15462,36.75678 + 14751: 122.756676,37.626453 + 14752: 123.33643,36.0655 + 14753: 124.69665,36.578384 + 14754: 125.36559,36.73448 + 14755: 125.16491,34.81674 + 14756: 124.87503,33.344986 + 14757: 125.120316,33.099693 + 14758: 126.05685,33.59028 + 14759: 126.10145,34.79444 + 14760: 126.25753,36.377693 + 14761: 127.19407,35.842506 + 14762: 126.3605,34.19236 + 14763: 125.93247,33.969368 + 14764: 125.40093,33.991665 + 14765: 125.8469,32.20772 + 14766: 126.13677,32.430714 + 14767: 127.74228,33.567978 + 14768: 127.43009,34.370754 + 14769: 127.56389,35.842506 + 14770: 126.89492,38.87825 + 14771: 126.44895,40.224945 + 14772: 127.02871,41.833374 + 14773: 126.51585,42.457752 + 14774: 126.38206,40.9637 + 14775: 125.95838,39.871033 + 14776: 125.49012,41.298187 + 14777: 125.93609,42.23476 + 14778: 127.71997,42.88144 + 14779: 127.92067,41.431984 + 14780: 129.34776,41.85567 + 14781: 128.16594,42.50235 + 14782: 127.786865,41.387386 + 14783: 126.047585,43.372025 + 14784: 124.77657,42.323956 + 14785: 124.84347,41.208992 + 14786: 124.26371,41.654976 + 14787: 124.93266,43.88491 + 14788: 124.642784,44.598488 + 14789: 123.37177,43.305126 + 14790: 123.26028,42.30166 + 14791: 122.301445,43.86261 + 14792: 123.08189,43.751114 + 14793: 122.279144,42.14556 + 14794: 123.30487,44.286297 + 14795: 124.93266,45.46816 + 14796: 123.32717,46.025642 + 14797: 123.728546,46.73922 + 14798: 123.43867,45.289764 + 14799: 123.92923,46.315533 + 14800: 121.944664,45.869545 + 14801: 120.74055,43.46122 + 14802: 120.227684,43.10443 + 14803: 119.04587,43.951805 + 14804: 121.34261,46.226334 + 14805: 122.10076,48.07718 + 14806: 120.1385,45.512756 + 14807: 119.73946,43.748768 + 14808: 118.460175,45.74163 + 14809: 118.87902,45.975475 + 14810: 120.99527,47.848515 + 14811: 122.5557,48.683823 + 14812: 119.83529,46.45389 + 14813: 118.965645,45.74031 + 14814: 116.49052,47.568855 + 14815: 118.00681,47.47966 + 14816: 119.5677,49.129807 + 14817: 119.38932,49.821087 + 14818: 117.47165,47.613457 + 14819: 119.300125,48.884514 + 14820: 120.95021,50.445465 + 14821: 121.039406,52.051018 + 14822: 120.50424,50.95835 + 14823: 118.28505,49.04552 + 14824: 120.30372,48.28373 + 14825: 119.49142,51.694313 + 14826: 119.00952,50.589783 + 14827: 118.30717,52.196606 + 14828: 117.40294,51.465824 + 14829: 118.02598,50.358566 + 14830: 118.64709,48.38081 + 14831: 105.774796,39.29126 + 14832: 104.24665,38.8816 + 14833: 104.78563,38.191154 + 14834: 103.31157,37.633682 + 14835: 103.735245,37.165398 + 14836: 103.579155,38.124268 + 14837: 101.95136,39.729816 + 14838: 101.75068,41.22387 + 14839: 101.839874,39.99741 + 14840: 102.62032,39.283833 + 14841: 102.30814,39.99741 + 14842: 101.237816,39.774414 + 14843: 101.26011,38.860146 + 14844: 101.527695,38.30266 + 14845: 101.88447,37.78978 + 14846: 101.237816,37.1877 + 14847: 100.0114,37.499886 + 14848: 100.47967,38.458755 + 14849: 100.68035,39.885914 + 14850: 99.632324,39.39533 + 14851: 98.71809,40.57719 + 14852: 99.364746,41.201572 + 14853: 99.07487,41.781353 + 14854: 98.093735,40.66639 + 14855: 100.47967,40.621788 + 14856: 100.92564,42.450333 + 14857: 101.72838,41.91515 + 14858: 99.186356,39.30613 + 14859: 98.6289,38.34726 + 14860: 100.652435,37.856674 + 14861: 99.71227,37.72288 + 14862: 99.03318,37.78978 + 14863: 99.15147,40.019707 + 14864: 97.14895,40.68869 + 14865: 98.19698,38.592552 + 14866: 97.61722,37.633682 + 14867: 98.21928,37.232296 + 14868: 96.4131,36.76401 + 14869: 97.19355,38.124268 + 14870: 97.34964,39.529125 + 14871: 96.4577,39.885914 + 14872: 96.16782,38.414158 + 14873: 96.61379,38.235764 + 14874: 94.71842,39.841316 + 14875: 94.09406,39.462227 + 14876: 94.763016,38.168865 + 14877: 94.606926,37.544487 + 14878: 93.380516,37.655983 + 14879: 95.097496,37.70058 + 14880: 94.22785,37.499886 + 14881: 92.33248,37.366093 + 14882: 91.81962,37.0985 + 14883: 93.22443,37.1208 + 14884: 93.96027,37.834377 + 14885: 93.31362,39.216934 + 14886: 92.73386,39.573723 + 14887: 91.97571,38.592552 + 14888: 91.73043,37.589085 + 14889: 90.92768,37.522186 + 14890: 91.99801,39.10544 + 14891: 90.92768,39.573723 + 14892: 90.57091,38.01277 + 14893: 90.14724,37.321495 + 14894: 90.682396,36.76401 + 14895: 91.90881,37.633682 + 14896: 90.25873,38.72635 + 14897: 90.994576,39.26153 + 14898: 89.66597,38.592552 + 14899: 89.60119,39.332188 + 14900: 88.82079,41.03994 + 14901: 90.224915,41.369167 + 14902: 89.19918,39.78592 + 14903: 88.28495,38.760147 + 14904: 87.905876,38.336464 + 14905: 88.5705,38.64865 + 14906: 90.19128,39.808216 + 14907: 88.40635,41.213074 + 14908: 87.93809,39.451427 + 14909: 86.04272,38.938545 + 14910: 85.529854,38.38106 + 14911: 85.15078,40.209602 + 14912: 88.29486,43.063915 + 14913: 89.63277,42.461834 + 14914: 91.41665,40.856285 + 14915: 89.96725,42.684826 + 14916: 90.390915,42.88552 + 14917: 87.04615,41.279972 + 14918: 86.2434,40.856285 + 14919: 86.68937,42.038147 + 14920: 87.38062,42.060448 + 14921: 87.15764,43.04162 + 14922: 85.30687,42.372635 + 14923: 84.8163,41.815155 + 14924: 86.86776,43.732895 + 14925: 87.13534,45.11545 + 14926: 87.22453,44.312675 + 14927: 85.59675,41.815155 + 14928: 85.88663,42.617928 + 14929: 85.77514,44.334976 + 14930: 86.288,45.695232 + 14931: 88.205666,46.377693 + 14932: 88.04615,45.346043 + 14933: 89.49299,44.984432 + 14934: 89.60947,44.324062 + 14935: 90.49116,45.03943 + 14936: 90.98173,46.644978 + 14937: 90.87023,45.240124 + 14938: 90.53576,43.991364 + 14939: 90.69185,44.481945 + 14940: 90.04519,46.60038 + 14941: 89.46543,47.91604 + 14942: 88.751884,48.629616 + 14943: 88.79648,47.49235 + 14944: 90.91483,48.362026 + 14945: 91.67298,49.343193 + 14946: 91.18241,47.715347 + 14947: 92.45342,48.032753 + 14948: 93.23995,50.15908 + 14949: 95.10705,50.689014 + 14950: 94.27182,48.435875 + 14951: 94.24947,47.67574 + 14952: 95.58738,47.408146 + 14953: 95.3198,49.994865 + 14954: 93.04536,50.307056 + 14955: 90.70402,49.481983 + 14956: 90.347244,50.17326 + 14957: 92.24261,51.80111 + 14958: 91.57366,53.005272 + 14959: 91.08309,51.53352 + 14960: 92.28721,51.578117 + 14961: 92.398705,53.250565 + 14962: 93.04536,53.38436 + 14963: 93.06765,51.979504 + 14964: 94.58395,52.224796 + 14965: 95.14141,52.2025 + 14966: 94.16028,50.730743 + 14967: 94.80694,50.17326 + 14968: 96.947586,50.351654 + 14969: 97.17057,49.370487 + 14970: 97.61654,48.59001 + 14971: 98.88755,48.9245 + 14972: 85.24291,44.72882 + 14973: 84.84154,44.408936 + 14974: 83.79351,44.686886 + 14975: 82.790085,43.64826 + 14976: 84.90844,45.053116 + 14977: 84.55166,45.5883 + 14978: 82.946175,45.253807 + 14979: 82.433304,43.80435 + 14980: 81.92044,42.778587 + 14981: 84.28408,41.619022 + 14982: 82.36641,41.485226 + 14983: 81.519066,42.354897 + 14984: 80.98391,41.68592 + 14985: 82.18803,40.77165 + 14986: 82.67859,40.370262 + 14987: 84.10569,40.236465 + 14988: 85.26521,39.45599 + 14989: 85.62199,38.47482 + 14990: 82.611694,38.45359 + 14991: 81.45217,39.07551 + 14992: 80.136566,39.931828 + 14993: 79.24463,38.683067 + 14994: 79.802086,37.144413 + 14995: 81.87585,38.57157 + 14996: 81.92044,40.556206 + 14997: 82.36641,38.14788 + 14998: 83.311264,36.73102 + 14999: 83.58901,37.79966 + 15000: 84.46136,36.482754 + 15001: 83.519295,35.353596 + 15002: 82.78426,36.3705 + 15003: 80.95579,35.857613 + 15004: 80.286835,35.23323 + 15005: 83.05184,35.523125 + 15006: 84.16676,36.704987 + 15007: 84.30055,37.21787 + 15008: 82.04841,37.017178 + 15009: 82.2045,36.771885 + 15010: 82.07071,34.207466 + 15011: 83.80999,33.939873 + 15012: 84.36745,34.318962 + 15013: 83.94378,33.538483 + 15014: 81.981514,32.914104 + 15015: 83.252525,32.11133 + 15016: 85.34858,32.579613 + 15017: 86.06213,32.80261 + 15018: 85.125595,31.79914 + 15019: 82.2045,31.353153 + 15020: 81.87002,31.37545 + 15021: 85.0587,30.528076 + 15022: 84.924904,30.52269 + 15023: 84.78956,31.505493 + 15024: 84.78146,30.302376 + 15025: 84.15821,30.799267 + 15026: 83.73455,31.47638 + 15027: 84.91637,30.539688 + 15028: 85.91979,30.762508 + 15029: 85.62992,29.112568 + 15030: 83.86834,28.800377 + 15031: 83.86834,29.001072 + 15032: 85.228546,29.224064 + 15033: 85.45153,28.35439 + 15034: 84.55959,29.603153 + 15035: 84.894066,29.759247 + 15036: 84.69338,30.160633 + 15037: 84.91637,27.507019 + 15038: 85.228546,28.532784 + 15039: 85.206245,26.882637 + 15040: 84.113625,26.392052 + 15041: 84.00213,25.968365 + 15042: 85.71911,26.771141 + 15043: 85.808304,25.745373 + 15044: 85.696815,24.697304 + 15045: 84.55959,24.764202 + 15046: 83.82374,25.098692 + 15047: 84.91637,24.095222 + 15048: 85.830605,24.117523 + 15049: 85.58532,23.403944 + 15050: 84.60419,23.047155 + 15051: 84.02443,23.89453 + 15052: 84.13592,22.578869 + 15053: 83.11019,22.801863 + 15054: 82.88721,22.712666 + 15055: 84.4035,21.887592 + 15056: 85.228546,21.285511 + 15057: 84.82717,19.947552 + 15058: 82.82031,20.505035 + 15059: 83.11019,19.63536 + 15060: 82.9764,18.252804 + 15061: 83.86834,20.282042 + 15062: 84.15822,20.348938 + 15063: 85.40693,20.772625 + 15064: 85.00556,19.01098 + 15065: 84.31431,18.275105 + 15066: 85.8529,19.724558 + 15067: 85.60762,18.147652 + 15068: 84.60419,11.7328205 + 15069: 85.518425,11.353733 + 15070: 86.07589,9.703585 + 15071: 86.29887,8.767014 + 15072: 86.34347,5.8681035 + 15073: 85.76371,7.6074505 + 15074: 82.68245,4.9854693 - node: cleanable: True color: '#DCBFFF99' id: Grassd2 decals: - 9194: -77.83182,-54.93029 - 9195: -77.59403,-53.488266 - 9196: -78.29254,-54.186977 + 9190: -77.83182,-54.93029 + 9191: -77.59403,-53.488266 + 9192: -78.29254,-54.186977 - node: cleanable: True color: '#DCBFFFBF' id: Grassd2 decals: - 9197: -78.35199,-55.00462 - 9198: -62.075962,-57.208084 - 9199: -61.295704,-56.204617 - 9200: -60.42628,-56.271515 - 9201: -61.69698,-57.230385 - 9202: -61.47405,-58.07776 - 9203: -60.158764,-57.69867 - 9204: -59.98042,-57.899364 - 9205: -59.712902,-57.854767 - 9206: -59.69061,-56.271515 - 9207: -61.317997,-56.472206 - 9208: -62.2766,-57.743267 - 9209: -61.518635,-59.170425 - 9210: -62.232014,-59.54951 - 9211: -63.101437,-59.683308 - 9212: -63.25749,-60.352287 - 9213: -62.45494,-61.155064 - 9214: -62.12055,-61.690247 - 9215: -61.362583,-62.180832 - 9216: -60.470867,-60.129295 - 9217: -59.17787,-58.479145 - 9218: -58.531376,-59.750206 - 9219: -61.161945,-61.400352 - 9220: -61.34029,-61.155064 - 9221: -63.5473,-61.311157 - 9222: -63.970867,-61.601048 - 9223: -64.818,-60.753674 - 9224: -64.416725,-59.8394 - 9225: -64.75112,-61.57875 - 9226: -64.97405,-63.028206 - 9227: -65.01864,-63.87558 - 9228: -63.792522,-63.028206 - 9229: -62.74475,-62.403824 - 9230: -60.60462,-62.782913 - 9231: -58.219273,-61.86864 - 9232: -57.84029,-62.180832 - 9233: -62.075962,-62.73831 - 9234: -58.28615,-62.15853 - 9235: -58.932648,-60.329987 - 9236: -57.595066,-59.63871 - 9237: -57.37214,-60.21849 - 9238: -56.77023,-60.865173 - 9239: -57.060036,-59.304222 - 9240: -57.795704,-58.211555 - 9241: -58.598255,-58.546043 - 9242: -59.868954,-59.393417 - 9243: -57.99634,-57.185787 - 9244: -56.8594,-56.918194 - 9245: -56.435833,-58.74674 - 9246: -56.458126,-58.902832 - 9247: -55.254307,-57.98856 - 9248: -55.232014,-59.25962 - 9249: -55.744747,-60.508385 - 9250: -56.212902,-61.62335 - 9251: -55.38806,-61.84634 - 9252: -55.105556,-59.861706 - 9253: -54.31869,-59.222195 - 9254: -53.331913,-59.41114 - 9255: -52.637432,-60.14998 - 9256: -54.086475,-61.77783 - 9257: -53.43998,-62.223816 - 9258: -54.844437,-62.580605 - 9259: -57.60877,-62.848198 - 9260: -59.25845,-62.915092 - 9261: -59.12469,-63.316483 - 9262: -57.452717,-63.65097 - 9263: -56.382656,-63.472576 - 9264: -57.89858,-64.00776 - 9265: -58.18839,-64.542946 - 9266: -58.18839,-65.479515 - 9267: -57.8317,-66.460686 - 9268: -56.382656,-65.635605 - 9269: -56.962273,-64.520645 - 9270: -58.90176,-65.03352 - 9271: -58.36673,-66.616776 - 9272: -58.299854,-67.12966 - 9273: -55.959087,-66.83977 - 9274: -54.889023,-66.70598 - 9275: -56.449535,-67.50875 - 9276: -56.164646,-68.14827 - 9277: -54.40283,-64.99683 - 9278: -53.59772,-65.279236 - 9279: -52.342144,-63.883675 - 9280: -51.759975,-63.487415 - 9281: -51.40315,-65.182434 - 9282: -52.00494,-65.873955 - 9283: -55.973274,-66.31958 - 9284: -57.93506,-66.09658 - 9285: -59.13888,-66.65407 - 9286: -59.161175,-67.546036 - 9287: -58.47009,-68.8171 - 9288: -57.087925,-69.17389 - 9289: -56.931873,-69.46378 - 9290: -59.005123,-68.99549 - 9291: -55.77264,-68.17042 - 9292: -54.256714,-68.8171 - 9293: -55.572002,-69.61987 - 9294: -54.635693,-69.53068 - 9295: -53.90003,-67.746735 - 9296: -52.785378,-67.79133 - 9297: -52.852253,-69.41918 - 9298: -53.40958,-70.35575 - 9299: -53.320408,-71.15853 - 9300: -52.45098,-70.55645 - 9301: -51.893658,-69.21849 - 9302: -51.82678,-68.8394 - 9303: -54.657986,-68.348816 - 9304: -53.92232,-67.30074 - 9305: -51.492382,-66.72096 - 9306: -51.82678,-65.36071 - 9307: -53.47646,-65.7175 - 9308: -51.001938,-64.00045 - 9309: -51.514675,-62.261105 - 9310: -51.82678,-62.015812 - 9311: -50.55608,-60.90085 - 9312: -50.154804,-59.317596 - 9313: -49.97646,-58.648617 - 9314: -51.98283,-60.008873 - 9315: -51.20257,-68.27579 - 9316: -51.40321,-70.23443 - 9317: -55.438244,-70.288216 - 9318: -57.13251,-70.39971 - 9319: -57.021046,-71.648476 - 9320: -54.814037,-70.95719 - 9321: -53.743977,-70.48891 - 9322: -55.973274,-71.91607 - 9323: -57.42232,-71.15789 - 9324: -55.973274,-68.70496 - 9325: -53.654804,-69.44084 - 9326: -55.928688,-72.49585 - 9327: -57.64525,-73.58851 - 9328: -56.285378,-73.945305 - 9329: -55.19302,-72.94183 - 9330: -54.05608,-72.607346 - 9331: -53.3427,-72.47355 - 9332: -54.568813,-73.63311 - 9333: -55.103848,-74.39129 - 9334: -53.454166,-74.27979 - 9335: -52.228054,-72.89723 - 9336: -51.514675,-71.31399 - 9337: -51.224865,-71.89377 - 9338: -52.696205,-73.61081 - 9339: -53.654804,-74.45818 - 9340: -51.938244,-74.99337 - 9341: -51.29175,-73.11161 - 9342: -50.95735,-72.62339 - 9343: -51.024227,-75.11381 - 9344: -51.82678,-77.66128 - 9345: -57.8013,-71.67788 - 9346: -58.157986,-72.20163 - 9347: -57.93506,-70.48458 - 9348: -57.288563,-69.7264 - 9349: -58.091106,-72.9821 - 9350: -57.779007,-73.628784 - 9351: -58.53697,-74.92214 - 9352: -56.90958,-75.167435 - 9353: -56.75353,-75.39043 - 9354: -57.26627,-76.2378 - 9355: -56.374546,-76.08171 - 9356: -56.708942,-73.80718 - 9357: -55.728054,-73.271996 - 9358: -55.2599,-75.88101 - 9359: -55.27735,-77.26357 - 9360: -55.79697,-77.67088 - 9361: -54.169064,-76.74396 - 9362: -53.277344,-75.9048 - 9363: -51.962055,-74.67834 - 9364: -52.72002,-76.06089 - 9365: -53.18817,-77.488045 - 9366: -52.407917,-77.19816 - 9367: -50.397606,-75.19122 - 9368: -50.22736,-74.834435 - 9369: -50.404285,-73.92016 - 9370: -51.184544,-75.6818 - 9371: -50.538044,-76.350784 - 9372: -50.069893,-76.84137 - 9373: -50.225945,-78.04553 - 9374: -49.57945,-79.20509 - 9375: -48.754604,-78.62531 - 9376: -49.958427,-78.15703 - 9377: -51.58582,-78.51382 - 9378: -52.455242,-78.9821 - 9379: -53.659065,-79.1605 - 9380: -54.617664,-78.73681 - 9381: -55.353333,-79.1605 - 9382: -55.843777,-79.807175 - 9383: -55.17499,-80.386955 - 9384: -54.394733,-79.829475 - 9385: -53.45843,-79.74028 - 9386: -51.496647,-80.32006 - 9387: -50.538044,-80.96674 - 9388: -49.51257,-80.43156 - 9389: -48.754604,-80.25317 - 9390: -47.550785,-80.32006 - 9391: -47.43932,-79.33889 - 9392: -48.39792,-78.42462 - 9393: -47.706837,-77.75564 - 9394: -46.503014,-78.75911 - 9395: -47.060337,-79.69568 - 9396: -45.990276,-79.94097 - 9397: -45.65588,-78.8037 - 9398: -45.87881,-78.04553 - 9399: -44.853333,-78.35772 - 9400: -45.187725,-79.450386 - 9401: -44.117664,-79.49499 - 9402: -44.184544,-78.268524 - 9403: -43.627216,-78.04553 - 9404: -42.936134,-79.0044 - 9405: -43.27053,-80.587654 - 9406: -43.471165,-81.07824 - 9407: -45.23231,-81.03364 - 9408: -45.87881,-80.72145 - 9409: -46.213207,-81.568825 - 9410: -46.346966,-82.01481 - 9411: -47.37244,-81.61342 - 9412: -47.327854,-80.810646 - 9413: -48.442505,-81.25663 - 9414: -48.531677,-82.3716 - 9415: -49.22276,-82.75069 - 9416: -50.136772,-81.83641 - 9417: -50.20365,-81.10053 - 9418: -52.14314,-82.0817 - 9419: -53.68136,-82.41619 - 9420: -54.79601,-81.65802 - 9421: -55.79919,-80.98904 - 9422: -56.245052,-81.45733 - 9423: -54.929768,-82.81758 - 9424: -55.888363,-82.92908 - 9425: -56.557156,-82.57229 - 9426: -56.57945,-79.60648 - 9427: -56.066708,-80.49845 - 9428: -55.88857,-84.602005 - 9429: -55.248844,-83.890144 - 9430: -53.68825,-83.77877 - 9431: -53.821255,-84.89483 - 9432: -52.573265,-84.67123 - 9433: -52.171993,-83.77926 - 9434: -53.487278,-82.48589 - 9435: -53.308933,-81.50473 - 9436: -50.343967,-83.02108 - 9437: -51.14651,-84.35904 - 9438: -49.474537,-83.890755 - 9439: -48.114666,-82.97648 - 9440: -48.270718,-83.80155 - 9441: -49.474537,-84.60433 - 9442: -49.85352,-85.5855 - 9443: -48.82804,-85.5409 - 9444: -49.385365,-84.80502 - 9445: -50.433136,-84.73813 - 9446: -51.035046,-85.7193 - 9447: -53.93314,-85.36251 - 9448: -54.17836,-85.3848 - 9449: -55.025494,-86.29908 - 9450: -55.605114,-86.63357 - 9451: -55.82804,-87.21335 - 9452: -53.35352,-86.99036 - 9453: -52.796192,-85.29561 - 9454: -52.59556,-86.32138 - 9455: -54.222946,-88.37292 - 9456: -53.910847,-89.04189 - 9457: -52.974537,-87.99383 - 9458: -51.79301,-88.127625 - 9459: -51.63696,-89.13109 - 9460: -50.254795,-88.23912 - 9461: -49.78664,-86.365974 - 9462: -49.006386,-85.94229 - 9463: -49.831226,-88.14992 - 9464: -50.99046,-88.35062 - 9465: -50.36626,-87.25795 - 9466: -49.56371,-87.21335 - 9467: -48.58282,-88.17222 - 9468: -48.917213,-89.17569 - 9469: -50.21021,-89.264885 - 9470: -48.13696,-89.17569 - 9471: -46.05859,-83.82385 - 9472: -45.337086,-84.13605 - 9473: -44.91216,-84.89422 - 9474: -44.221077,-84.269844 - 9475: -44.800694,-83.24407 - 9476: -44.822987,-82.3298 - 9477: -45.625538,-81.70542 - 9478: -44.24337,-81.10334 - 9479: -44.444004,-80.18907 - 9480: -43.329357,-80.85805 - 9481: -43.106426,-82.151405 - 9482: -42.036366,-82.06221 - 9483: -42.482224,-83.533966 - 9484: -42.103245,-83.913055 - 9485: -52.76212,-89.02105 - 9486: -54.033035,-89.26671 - 9487: -55.52661,-88.97673 - 9488: -55.50432,-89.824104 - 9489: -55.05846,-90.51538 - 9490: -56.596676,-89.7349 - 9491: -57.466103,-89.980194 - 9492: -58.536167,-90.983665 - 9493: -58.78139,-91.67494 - 9494: -57.020245,-91.60805 - 9495: -56.017056,-91.340454 - 9496: -55.482025,-91.920235 - 9497: -56.529797,-92.47772 - 9498: -56.150814,-93.169 - 9499: -55.036167,-92.67841 - 9500: -54.969288,-93.0798 - 9501: -56.26228,-93.860275 - 9502: -57.59986,-94.17246 - 9503: -58.26865,-93.36969 - 9504: -58.647633,-92.83451 - 9505: -58.93744,-94.239365 - 9506: -57.934254,-94.70765 - 9507: -56.35145,-94.68535 - 9508: -55.994762,-95.10904 - 9509: -56.239986,-95.755714 - 9510: -55.43744,-95.755714 - 9511: -54.679478,-95.95641 - 9512: -55.259098,-96.759186 - 9513: -56.217693,-96.98218 - 9514: -57.59986,-96.49159 - 9515: -58.759098,-95.599625 - 9516: -59.071198,-95.66652 - 9517: -58.736805,-97.22747 - 9518: -56.886486,-96.1125 - 9519: -56.507504,-95.198235 - 9520: -57.287758,-96.84838 - 9521: -58.49158,-97.45046 - 9522: -58.647633,-98.74383 - 9523: -56.953365,-98.32014 - 9524: -56.26228,-97.74036 - 9525: -55.036167,-97.96335 - 9526: -56.41833,-98.61003 - 9527: -54.790943,-97.80725 - 9528: -53.542538,-96.4247 - 9529: -52.940624,-95.778015 - 9530: -52.427883,-95.88951 - 9531: -54.70177,-96.4024 - 9532: -52.02661,-95.08674 - 9533: -50.555275,-94.640755 - 9534: -52.62852,-94.01637 - 9535: -53.765465,-94.08327 - 9536: -52.383297,-93.481186 - 9537: -51.959732,-92.879105 - 9538: -54.03298,-92.9906 - 9539: -53.654,-92.14323 - 9540: -51.736805,-92.45542 - 9541: -51.26865,-92.07633 - 9542: -52.98521,-91.80874 - 9543: -53.520245,-91.20666 - 9544: -52.6954,-92.43312 - 9545: -53.05209,-93.1913 - 9546: -49.867893,-93.24058 - 9547: -49.625546,-94.11306 - 9548: -48.10962,-92.842 - 9549: -47.351658,-92.663605 - 9550: -49.469494,-93.48868 - 9551: -48.912167,-94.001564 - 9552: -48.756115,-92.9535 - 9553: -48.488598,-92.106125 - 9554: -47.396244,-92.7305 - 9555: -47.93128,-94.26916 - 9556: -49.112804,-95.09423 - 9557: -49.959938,-95.161125 - 9558: -48.889874,-96.097694 - 9559: -48.131912,-95.09423 - 9560: -47.039555,-94.33605 - 9561: -46.125546,-94.51445 - 9562: -47.50771,-95.74091 - 9563: -48.154205,-96.38759 - 9564: -49.491787,-96.61058 - 9565: -50.173893,-95.52355 - 9566: -50.83331,-95.740425 - 9567: -51.707973,-96.69435 - 9568: -50.51101,-97.43854 - 9569: -49.41865,-97.23785 - 9570: -50.31037,-97.594635 - 9571: -50.934574,-96.72496 - 9572: -50.332664,-96.76956 - 9573: -52.02693,-97.92912 - 9574: -50.60018,-98.977196 - 9575: -49.03967,-99.04409 - 9576: -48.41547,-97.92912 - 9577: -48.19254,-96.85876 - 9578: -47.791264,-97.23785 - 9579: -48.79445,-97.594635 - 9580: -46.966423,-97.75073 - 9581: -46.230755,-98.30821 - 9582: -45.47279,-97.50544 - 9583: -46.56515,-95.94449 - 9584: -45.517376,-96.078285 - 9585: -44.982346,-97.83993 - 9586: -45.82948,-99.133286 - 9587: -46.654324,-100.22595 - 9588: -47.54604,-100.71654 - 9589: -47.947315,-99.17789 - 9590: -48.482346,-99.24478 - 9591: -47.523746,-101.58621 - 9592: -47.746677,-102.411285 - 9593: -49.440945,-101.809204 - 9594: -50.13203,-102.0545 - 9595: -48.437763,-101.20712 - 9596: -48.705276,-100.27055 - 9597: -50.354958,-100.18136 - 9598: -50.8454,-99.28938 - 9599: -51.75942,-98.531204 - 9600: -51.26897,-100.22595 - 9601: -53.05241,-99.66847 - 9602: -53.54286,-100.894936 - 9603: -53.364513,-100.91723 - 9604: -53.676617,-99.46777 - 9605: -54.47916,-98.575806 - 9606: -54.9919,-100.02526 - 9607: -62.941616,-100.24825 - 9608: -62.47346,-99.98066 - 9609: -61.62633,-100.24825 - 9610: -60.645435,-100.31515 - 9611: -59.932064,-99.891464 - 9612: -60.489384,-100.73884 - 9613: -60.4448,-101.36322 - 9614: -58.839703,-101.36322 - 9615: -58.10404,-100.98413 - 9616: -59.642254,-101.47472 - 9617: -59.04034,-102.0991 - 9618: -57.234608,-101.7423 - 9619: -57.011677,-101.630806 - 9620: -57.925694,-102.87957 - 9621: -57.569004,-102.25519 - 9622: -55.74098,-102.009895 - 9623: -55.495754,-101.34092 - 9624: -57.435246,-100.20365 - 9625: -56.766457,-99.73537 - 9626: -58.57219,-99.713066 - 9627: -59.04034,-100.114456 - 9628: -57.814228,-98.665 - 9629: -57.83652,-97.92912 - 9630: -58.88429,-98.26361 - 9631: -58.728237,-97.616936 - 9632: -57.32378,-97.88453 - 9633: -57.32378,-97.50544 - 9634: -58.527603,-96.256676 - 9635: -58.951168,-95.96679 - 9636: -57.279194,-95.18631 - 9637: -59.1741,-93.736855 - 9638: -58.75053,-92.421196 - 9639: -57.591297,-92.220505 - 9640: -58.081745,-90.97174 - 9641: -57.76964,-90.01287 - 9642: -52.348595,-94.718025 - 9643: -53.50783,-94.62883 - 9644: -54.93458,-99.28938 - 9645: -55.13522,-101.430115 - 9646: -50.07471,-100.78344 - 9647: -48.96006,-99.713066 - 9648: -48.581078,-100.91723 - 9649: -48.112926,-102.16599 - 9650: -47.065155,-102.27749 - 9651: -47.511013,-103.10256 - 9652: -47.132034,-103.50395 - 9653: -46.998276,-104.48512 - 9654: -46.663883,-105.1764 - 9655: -45.482353,-105.0426 - 9656: -44.657513,-105.1541 - 9657: -45.90592,-105.867676 - 9658: -45.259422,-106.11297 - 9659: -43.877254,-104.77501 - 9660: -43.07471,-103.749245 - 9661: -42.04923,-103.12486 - 9662: -41.00146,-103.88304 - 9663: -42.004642,-104.88651 - 9664: -43.052418,-106.269066 - 9665: -43.109436,-106.95139 - 9666: -42.15064,-106.8399 - 9667: -42.37357,-105.90333 - 9668: -42.953186,-104.676865 - 9669: -43.80032,-104.23088 - 9670: -42.23981,-102.84832 - 9671: -41.41497,-101.621864 - 9672: -40.768475,-101.15357 - 9673: -39.809875,-102.04555 - 9674: -40.87994,-103.5842 - 9675: -41.392677,-104.119385 - 9676: -39.69841,-103.717995 - 9677: -38.918156,-103.138214 - 9678: -39.653824,-104.34238 - 9679: -40.278027,-105.54654 - 9680: -40.278027,-106.66151 - 9681: -40.857647,-107.41968 - 9682: -40.768475,-108.26705 - 9683: -39.720703,-107.77647 - 9684: -40.612423,-106.594604 - 9685: -39.430893,-106.10402 - 9686: -38.895863,-107.10749 - 9687: -37.335354,-107.12979 - 9688: -36.19841,-106.8622 - 9689: -34.749367,-106.773 - 9690: -33.52325,-106.215515 - 9691: -32.609238,-106.639206 - 9692: -32.63153,-105.16745 - 9693: -33.3672,-105.30125 - 9694: -33.12198,-106.639206 - 9695: -33.65701,-106.995995 - 9696: -32.520065,-106.17092 - 9697: -33.43408,-105.122856 - 9698: -32.497772,-103.717995 - 9699: -33.099686,-102.55843 - 9700: -34.593315,-102.87062 - 9701: -35.641087,-103.4727 - 9702: -35.930893,-102.69223 - 9703: -35.061466,-101.35427 - 9704: -35.641087,-101.06438 - 9705: -37.112423,-101.91175 - 9706: -38.026436,-102.29084 - 9707: -36.26529,-101.51037 - 9708: -35.9086,-100.95288 - 9709: -36.242996,-102.11245 - 9710: -37.268475,-102.93752 - 9711: -35.08376,-102.02325 - 9712: -34.95,-103.495 - 9713: -34.79395,-103.04902 - 9714: -36.911785,-101.28737 - 9715: -35.46274,-100.2393 - 9716: -35.953186,-99.25813 - 9717: -36.06465,-98.343864 - 9718: -34.95,-97.49649 - 9719: -35.997772,-97.2735 - 9720: -36.621975,-98.49996 - 9721: -36.778027,-98.00938 - 9722: -36.488216,-96.91671 - 9723: -37.53599,-97.2958 - 9724: -33.41054,-97.671104 - 9725: -34.480606,-96.24395 - 9726: -35.4615,-96.44465 - 9727: -37.222645,-97.47041 - 9728: -38.47105,-97.671104 - 9729: -38.292706,-96.154755 - 9730: -38.114365,-95.218185 - 9731: -38.649395,-95.017494 - 9732: -38.270412,-96.71224 - 9733: -37.534748,-96.199356 - 9734: -37.155766,-95.08439 - 9735: -37.980606,-94.52691 - 9736: -39.697166,-95.396576 - 9737: -40.232197,-96.33315 - 9738: -40.588886,-96.31085 - 9739: -40.83411,-95.03979 - 9740: -40.053852,-96.756836 - 9741: -39.229015,-98.072495 - 9742: -38.448757,-97.9387 - 9743: -38.203537,-97.00213 - 9744: -39.853218,-95.195885 - 9745: -39.229015,-94.14782 - 9746: -40.143024,-93.74643 - 9747: -41.636658,-94.41541 - 9748: -41.881878,-93.14435 - 9749: -40.633472,-92.54227 - 9750: -40.343662,-92.63146 - 9751: -41.30226,-93.07745 - 9752: -40.99016,-93.14435 - 9753: -42.19398,-91.4273 - 9754: -41.413727,-90.33463 - 9755: -40.96787,-89.420364 - 9756: -41.948757,-89.79945 - 9757: -40.99016,-91.00362 - 9758: -41.74812,-91.11511 - 9759: -42.84048,-90.31234 - 9760: -43.486977,-90.71372 - 9761: -43.732197,-89.50956 - 9762: -44.378696,-89.241974 - 9763: -44.356403,-89.53186 - 9764: -45.872326,-88.81828 - 9765: -47.343662,-89.041275 - 9766: -47.455128,-90.04475 - 9767: -47.165318,-90.29004 - 9768: -48.32456,-89.77715 - 9769: -47.47742,-91.3158 - 9770: -41.72431,-88.42627 - 9771: -40.91788,-89.28702 - 9772: -39.780937,-89.7776 - 9773: -39.847816,-88.506546 - 9774: -40.226795,-87.525375 - 9775: -39.446545,-88.082855 - 9776: -41.05164,-87.77067 - 9777: -39.223614,-87.68147 - 9778: -38.309597,-86.7672 - 9779: -38.599407,-86.32121 - 9780: -38.265015,-88.03826 - 9781: -37.70769,-87.63687 - 9782: -38.01979,-86.6557 - 9783: -37.84145,-85.49614 - 9784: -36.637623,-86.09822 - 9785: -36.50387,-86.7672 - 9786: -35.210873,-86.967896 - 9787: -35.32234,-85.563034 - 9788: -33.5389,-86.49961 - 9789: -35.32234,-87.39158 - 9790: -35.589855,-88.01596 - 9791: -34.296864,-87.59228 - 9792: -33.784122,-86.45501 - 9793: -32.758644,-86.29891 - 9794: -33.82871,-87.882164 - 9795: -34.007053,-88.863335 - 9796: -32.959282,-89.10863 - 9797: -32.2682,-87.59228 - 9798: -31.822338,-87.28008 - 9799: -32.66947,-88.14976 - 9800: -32.55801,-88.75184 - 9801: -31.131256,-87.65917 - 9802: -30.707691,-87.41388 - 9803: -31.15355,-88.61804 - 9804: -31.97839,-89.71071 - 9805: -30.886032,-90.0452 - 9806: -30.19495,-88.75184 - 9807: -29.459282,-89.22012 - 9808: -29.236351,-90.26819 - 9809: -30.19495,-90.87027 - 9810: -30.55164,-91.360855 - 9811: -28.924252,-91.07097 - 9812: -28.032532,-91.383156 - 9813: -29.37011,-92.02984 - 9814: -29.88285,-93.01101 - 9815: -28.745907,-92.83261 - 9816: -29.258644,-93.61309 - 9817: -30.239536,-93.88068 - 9818: -29.704506,-95.26324 - 9819: -30.417881,-95.93221 - 9820: -30.997498,-95.28554 - 9821: -31.242722,-95.50853 - 9822: -31.844631,-96.51199 - 9823: -32.2682,-97.114075 - 9824: -33.583485,-96.757286 - 9825: -33.494312,-96.08831 - 9826: -35.433804,-96.4228 - 9827: -28.494694,-94.7872 - 9828: -27.044147,-94.16977 - 9829: -26.709755,-94.45966 - 9830: -26.732048,-95.30703 - 9831: -25.34988,-95.10634 - 9832: -27.735233,-94.45966 - 9833: -27.155613,-93.902176 - 9834: -25.9295,-93.2109 - 9835: -25.060074,-93.1886 - 9836: -25.439053,-95.08404 - 9837: -24.926315,-95.95371 - 9838: -24.45816,-94.10287 - 9839: -24.012302,-93.54539 - 9840: -25.572811,-94.01367 - 9841: -24.168354,-92.56422 - 9842: -24.81485,-91.82834 - 9843: -22.786186,-91.025566 - 9844: -22.161983,-90.980965 - 9845: -23.120583,-92.05134 - 9846: -22.540966,-92.07363 - 9847: -21.493195,-91.360054 - 9848: -20.311665,-91.22626 - 9849: -19.620583,-91.60535 - 9850: -20.64606,-92.162834 - 9851: -22.050518,-92.60882 - 9852: -22.273449,-93.344696 - 9853: -20.623768,-93.0548 - 9854: -19.353065,-92.83181 - 9855: -18.974087,-93.367 - 9856: -20.400837,-93.83528 - 9857: -22.13969,-93.85758 - 9858: -23.3881,-94.10287 - 9859: -23.165169,-94.861046 - 9860: -21.047333,-94.70495 - 9861: -19.197014,-94.303566 - 9862: -18.99638,-94.682655 - 9863: -20.64606,-95.30703 - 9864: -21.91676,-95.10634 - 9865: -22.072811,-95.73072 - 9866: -20.378544,-96.10981 - 9867: -19.977272,-96.84569 - 9868: -21.38173,-96.756485 - 9869: -22.652428,-96.422 - 9870: -24.123768,-96.600395 - 9871: -25.483639,-96.53349 - 9872: -25.951794,-96.957184 - 9873: -24.591919,-97.89375 - 9874: -23.075996,-97.581566 - 9875: -22.184277,-97.35857 - 9876: -21.136505,-97.47007 - 9877: -20.601475,-98.495834 - 9878: -23.120583,-97.581566 - 9879: -23.365807,-96.2882 - 9880: -22.719307,-95.061745 - 9881: -25.511814,-95.442986 - 9882: -24.910072,-96.75881 - 9883: -22.881409,-97.985275 - 9884: -23.148926,-98.65426 - 9885: -24.040646,-97.91838 - 9886: -25.623447,-97.69539 - 9887: -25.511982,-98.386665 - 9888: -22.81453,-99.07794 - 9889: -21.744465,-98.72115 - 9890: -20.74128,-98.65426 - 9891: -21.231728,-99.65772 - 9892: -21.075676,-100.63889 - 9893: -21.789051,-101.263275 - 9894: -23.41644,-100.14831 - 9895: -24.553383,-99.39014 - 9896: -25.71262,-99.05564 - 9897: -25.95784,-100.326706 - 9898: -24.620262,-101.01798 - 9899: -23.34956,-101.30788 - 9900: -22.68077,-101.75386 - 9901: -22.435547,-102.37824 - 9902: -22.881409,-102.95802 - 9903: -23.884594,-102.06605 - 9904: -24.59797,-100.728096 - 9905: -25.222172,-100.282104 - 9906: -25.95784,-101.820755 - 9907: -25.110706,-102.84653 - 9908: -23.951473,-103.09182 - 9909: -22.970581,-103.627 - 9910: -23.438732,-104.20678 - 9911: -25.734913,-103.4932 - 9912: -26.425995,-101.86536 - 9913: -26.827267,-100.861885 - 9914: -27.585228,-100.705795 - 9915: -27.629814,-102.69043 - 9916: -26.715801,-103.7162 - 9917: -26.002426,-104.38518 - 9918: -26.113892,-105.14336 - 9919: -27.050198,-105.700836 - 9920: -27.518353,-104.27368 - 9921: -26.648926,-103.00262 - 9922: -26.381409,-102.69043 - 9923: -26.78268,-104.318275 - 9924: -26.359116,-104.92036 - 9925: -26.047012,-105.94613 - 9926: -28.120262,-105.56704 - 9927: -29.09974,-105.05416 - 9928: -28.096996,-103.158714 - 9929: -28.810371,-102.13295 - 9930: -29.456867,-103.760796 - 9931: -28.966423,-105.32175 - 9932: -29.724384,-106.01302 - 9933: -30.43776,-105.299446 - 9934: -30.01419,-103.93919 - 9935: -29.991898,-102.82423 - 9936: -30.43776,-102.15525 - 9937: -31.507824,-102.57893 - 9938: -31.32948,-104.65277 - 9939: -30.928204,-105.92383 - 9940: -31.19572,-106.32522 - 9941: -31.753048,-104.89806 - 9942: -32.2212,-103.42631 - 9943: -32.354958,-102.15525 - 9944: -32.711643,-101.843056 - 9945: -33.246677,-103.93919 - 9946: -32.51101,-104.80886 - 9947: -35.052242,-104.23734 - 9948: -35.96626,-104.14815 - 9949: -34.04906,-103.83595 - 9950: -33.44715,-102.20811 - 9951: -18.846622,-90.459145 - 9952: -18.289295,-90.01212 - 9953: -18.579105,-90.77073 - 9954: -18.556812,-90.92682 - 9955: -18.021782,-89.65576 - 9956: -17.86573,-87.983315 - 9957: -18.088661,-87.06904 - 9958: -17.731972,-86.35546 - 9959: -18.155537,-85.41889 - 9960: -17.57592,-85.0175 - 9961: -17.241524,-85.285095 - 9962: -18.623692,-83.63495 - 9963: -18.846622,-83.12206 - 9964: -19.64917,-83.746445 - 9965: -19.29248,-83.768745 - 9966: -19.827515,-82.16319 - 9967: -19.849808,-81.851006 - 9968: -20.85299,-83.18896 - 9969: -20.897575,-83.724144 - 9970: -21.878468,-83.07746 - 9971: -22.658722,-82.54228 - 9972: -22.837067,-83.43426 - 9973: -22.302036,-84.03634 - 9974: -21.388023,-83.54575 - 9975: -20.161907,-83.345055 - 9976: -21.521782,-84.125534 - 9977: -24.063183,-83.03287 - 9978: -24.263817,-82.25239 - 9979: -24.442162,-83.90254 - 9980: -23.817959,-84.37083 - 9981: -24.93261,-84.63842 - 9982: -26.024967,-83.746445 - 9983: -26.069553,-84.50462 - 9984: -25.623692,-85.0398 - 9985: -24.57592,-84.9952 - 9986: -24.085476,-85.106705 - 9987: -25.512226,-85.61958 - 9988: -26.091846,-86.08787 - 9989: -24.464455,-86.11017 - 9990: -23.97401,-86.221664 - 9991: -24.553627,-86.84605 - 9992: -25.044075,-87.49273 - 9993: -24.152355,-87.55962 - 9994: -24.57592,-88.184006 - 9995: -24.954903,-88.76379 - 9996: -24.375282,-89.27667 - 9997: -24.241528,-89.67806 - 9998: -25.088661,-90.12405 - 9999: -23.728786,-90.39164 - 10000: -22.547256,-89.96795 - 10001: -23.929424,-90.72613 - 10002: -25.46764,-91.48431 - 10003: -24.709679,-91.997185 - 10004: -26.247894,-82.10456 - 10005: -25.802036,-81.167984 - 10006: -26.426239,-81.92616 - 10007: -27.384838,-80.54361 - 10008: -28.276558,-79.852325 - 10009: -28.36573,-78.893456 - 10010: -23.282928,-82.171455 - 10011: -21.43261,-81.94846 - 10012: -20.808403,-80.8558 - 10013: -23.059998,-79.71853 - 10014: -22.123692,-78.87116 - 10015: -20.897575,-78.44747 - 10016: -21.700123,-79.31715 - 10017: -20.518597,-78.58127 - 10018: -19.872097,-77.4663 - 10019: -18.645985,-77.97919 - 10020: -19.203308,-79.18335 - 10021: -18.066368,-79.04955 - 10022: -17.598213,-79.13875 - 10023: -18.69057,-80.5659 - 10024: -18.11095,-80.811195 - 10025: -18.222416,-80.8781 - 10026: -18.913502,-82.595146 - 10027: -17.464455,-82.10456 - 10028: -17.096306,-78.97552 - 10029: -16.85199,-77.58534 - 10030: -18.122688,-77.050156 - 10031: -19.52715,-77.29545 - 10032: -20.730968,-75.9575 - 10033: -19.371098,-74.32964 - 10034: -18.85836,-75.15472 - 10035: -20.151352,-75.6676 - 10036: -18.836067,-75.28851 - 10037: -17.988934,-74.351944 - 10038: -18.078102,-72.88019 - 10039: -16.718231,-74.10665 - 10040: -18.27874,-75.26621 - 10041: -16.629059,-73.950554 - 10042: -15.89339,-73.17008 - 10043: -17.342434,-72.634895 - 10044: -18.011227,-73.616066 - 10045: -18.85836,-73.81676 - 10046: -19.371098,-72.3896 - 10047: -19.883835,-71.83212 - 10048: -19.861542,-73.25928 - 10049: -20.106766,-74.017456 - 10050: -21.109951,-74.06205 - 10051: -21.734154,-72.3673 - 10052: -22.090843,-71.87672 - 10053: -22.469822,-73.32617 - 10054: -21.756447,-74.15125 - 10055: -21.53352,-74.530334 - 10056: -22.737339,-74.41884 - 10057: -23.606766,-73.25928 - 10058: -24.498486,-72.612595 - 10059: -25.301033,-72.76869 - 10060: -25.122688,-73.77216 - 10061: -24.253262,-74.48574 - 10062: -24.67683,-74.909424 - 10063: -26.259632,-75.6676 - 10064: -26.705494,-76.31428 - 10065: -26.036701,-76.871765 - 10066: -27.28511,-77.00556 - 10067: -28.132244,-75.623 - 10068: -27.686386,-74.77563 - 10069: -26.52715,-73.70526 - 10070: -26.52715,-71.92132 - 10071: -25.34562,-72.83559 - 10072: -25.078102,-75.44461 - 10073: -25.055809,-76.00209 - 10074: -27.17981,-77.30917 - 10075: -27.514206,-76.49583 - 10076: -27.046051,-78.39127 - 10077: -27.358154,-79.03795 - 10078: -28.807198,-78.10138 - 10079: -29.409111,-78.14598 - 10080: -28.851784,-79.41704 - 10081: -28.517391,-80.57661 - 10082: -29.208473,-80.532005 - 10083: -29.832676,-79.30554 - 10084: -30.412292,-78.30207 - 10085: -30.925034,-78.190575 - 10086: -30.67981,-79.50623 - 10087: -30.033314,-80.331314 - 10088: -29.78809,-80.95569 - 10089: -30.523758,-82.22675 - 10090: -31.103378,-81.290184 - 10091: -31.103378,-80.04142 - 10092: -32.53013,-79.88532 - 10093: -33.15433,-80.130615 - 10094: -33.35497,-78.50277 - 10095: -32.99828,-78.212875 - 10096: -32.17344,-79.77383 - 10097: -31.526943,-80.19752 - 10098: -33.867706,-79.595436 - 10099: -34.023758,-78.68116 - 10100: -34.558792,-78.54736 - 10101: -35.049236,-79.84073 - 10102: -34.17981,-80.97799 - 10103: -33.89,-81.33478 - 10104: -34.737133,-81.468575 - 10105: -35.00465,-81.37938 - 10106: -34.33586,-82.69504 - 10107: -34.447327,-83.430916 - 10108: -34.692547,-83.9215 - 10109: -32.9314,-83.029526 - 10110: -32.6193,-82.13756 - 10111: -32.418663,-81.892265 - 10112: -31.259426,-82.98493 - 10113: -34.04605,-79.90762 - 10114: -35.937122,-85.1471 - 10115: -35.62502,-84.02035 - 10116: -34.532665,-84.04265 - 10117: -35.602726,-83.016884 - 10118: -36.695084,-83.64126 - 10119: -37.185528,-83.50746 - 10120: -37.007183,-82.1918 - 10121: -38.27789,-82.54859 - 10122: -38.83521,-83.016884 - 10123: -39.102726,-82.5263 - 10124: -38.90209,-81.96881 - 10125: -40.195084,-82.03571 - 10126: -41.109097,-82.838486 - 10127: -41.666424,-82.59319 - 10128: -41.242855,-81.857315 - 10129: -40.9127,-79.85735 - 10130: -40.08786,-79.67896 - 10131: -37.54646,-79.522865 - 10132: -36.855377,-75.84348 - 10133: -41.091045,-76.46786 - 10134: -40.82353,-75.3083 - 10135: -36.963963,-72.71949 - 10136: -36.22608,-71.552536 - 10137: -33.796124,-71.99849 - 10138: -36.62724,-68.34128 - 10139: -35.089024,-67.8284 - 10140: -30.786476,-67.538506 - 10141: -28.802402,-67.8061 - 10142: -31.63361,-71.86457 - 10143: -30.407497,-71.81997 - 10144: -30.340618,-73.04643 - 10145: -42.01617,-71.84112 - 10146: -43.955845,-72.01401 - 10147: -41.302982,-68.40152 - 10148: -41.92718,-67.28655 - 10149: -43.822086,-68.20082 - 10150: -41.236103,-67.82174 - 10151: -41.013172,-63.80786 - 10152: -41.949474,-64.40994 - 10153: -43.59916,-63.78556 - 10154: -46.27432,-63.674065 - 10155: -47.656483,-63.58487 - 10156: -47.50043,-67.73254 - 10157: -46.697887,-68.44611 - 10158: -47.143745,-71.90251 - 10159: -48.191517,-71.88021 - 10160: -43.564583,-60.00784 - 10161: -42.162148,-60.018497 - 10162: -41.51565,-60.55368 - 10163: -47.601635,-59.973896 - 10164: -47.11119,-57.989258 - 10165: -44.99336,-58.23455 - 10166: -44.63667,-57.96696 - 10167: -37.05705,-60.575977 - 10168: -37.034756,-61.17806 - 10169: -34.315014,-59.750904 - 10170: -34.00291,-57.85546 - 10171: -31.439217,-60.21919 - 10172: -29.990173,-59.750904 - 10173: -36.901,-63.653282 - 10174: -37.190807,-64.299965 - 10175: -34.560238,-63.74248 - 10176: -31.037945,-60.15229 - 10177: -28.920109,-58.189953 - 10178: -66.161705,-100.95127 - 10179: -68.03431,-101.17427 - 10180: -68.99291,-101.88785 - 10181: -69.55024,-101.84325 - 10182: -69.371895,-100.97357 - 10183: -71.2668,-101.241165 - 10184: -73.34005,-101.86555 - 10185: -72.67126,-100.46069 - 10186: -72.5375,-99.99241 - 10187: -72.76043,-101.040474 - 10188: -71.645775,-101.75405 - 10189: -72.82731,-101.91015 - 10190: -73.518394,-100.2154 - 10191: -74.74451,-100.0593 - 10192: -75.59164,-100.639084 - 10193: -74.365524,-101.84325 - 10194: -73.98654,-102.64602 - 10195: -74.85597,-102.95821 - 10196: -75.435585,-101.66485 - 10197: -74.67763,-100.57219 - 10198: -75.23495,-100.639084 - 10199: -76.438774,-102.28923 - 10200: -76.684,-102.89131 - 10201: -77.59801,-102.200035 - 10202: -78.53431,-101.75405 - 10203: -79.33686,-101.84325 - 10204: -77.9324,-99.63561 - 10205: -76.661705,-98.788246 - 10206: -76.32731,-98.163864 - 10207: -77.68718,-98.09696 - 10208: -79.515205,-99.79171 - 10209: -80.184,-100.50529 - 10210: -81.14259,-101.15197 - 10211: -81.945145,-100.59449 - 10212: -81.878265,-99.345726 - 10213: -79.98336,-99.36803 - 10214: -79.89419,-100.90668 - 10215: -78.91329,-100.304596 - 10216: -77.88782,-98.85514 - 10217: -78.712654,-97.51718 - 10218: -80.25088,-98.43145 - 10219: -81.231766,-99.14503 - 10220: -81.32998,-98.06561 - 10221: -82.69096,-96.99448 - 10222: -83.68885,-99.026024 - 10223: -82.58918,-99.72947 - 10224: -83.70383,-98.8152 - 10225: -83.837585,-96.62987 - 10226: -83.23567,-95.49261 - 10227: -81.42994,-94.82362 - 10228: -81.898094,-96.49607 - 10229: -80.87261,-97.321144 - 10230: -79.200645,-96.62987 - 10231: -77.50637,-96.67447 - 10232: -76.10191,-97.00896 - 10233: -76.59236,-95.5149 - 10234: -77.684715,-95.33651 - 10235: -78.687904,-95.5372 - 10236: -79.51274,-94.51144 - 10237: -81.07325,-94.043144 - 10238: -83.07962,-95.31421 - 10239: -84.59554,-96.384575 - 10240: -85.3758,-97.38805 - 10241: -86.06689,-97.67793 - 10242: -86.267525,-96.45147 - 10243: -85.57644,-95.49261 - 10244: -86.37899,-95.11352 - 10245: -87.24841,-95.804794 - 10246: -87.82803,-95.29191 - 10247: -87.09236,-94.39994 - 10248: -85.50956,-93.19578 - 10249: -87.114655,-93.61946 - 10250: -87.82803,-92.99508 - 10251: -86.71338,-92.393 - 10252: -84.55096,-92.170006 - 10253: -84.26115,-93.507965 - 10254: -82.65606,-93.35187 - 10255: -83.01274,-91.88012 - 10256: -82.09873,-91.03274 - 10257: -81.8758,-91.969315 - 10258: -82.99045,-92.147705 - 10259: -81.94268,-92.88358 - 10260: -81.5637,-91.88012 - 10261: -80.67198,-91.70172 - 10262: -81.2293,-92.79439 - 10263: -81.98727,-93.79786 - 10264: -79.78026,-93.06198 - 10265: -80.09236,-91.88012 - 10266: -78.7102,-91.32263 - 10267: -77.66242,-92.393 - 10268: -78.48727,-93.32957 - 10269: -77.55096,-93.37417 - 10270: -76.85988,-92.4822 - 10271: -76.16879,-91.947014 - 10272: -76.28026,-93.46336 - 10273: -76.1465,-94.26614 - 10274: -75.72294,-95.09122 - 10275: -78.95857,-89.797485 - 10276: -79.98587,-89.07736 - 10277: -79.27249,-87.47175 - 10278: -79.20561,-86.600975 - 10279: -80.56548,-86.824585 - 10280: -80.76612,-86.4901 - 10281: -80.00816,-84.83994 - 10282: -80.18651,-84.28246 - 10283: -80.944466,-85.26363 - 10284: -81.83619,-85.55353 - 10285: -81.96995,-84.95145 - 10286: -80.85529,-83.41279 - 10287: -80.654655,-82.07484 - 10288: -79.941284,-81.87414 - 10289: -80.721535,-83.47969 - 10290: -79.76294,-83.390495 - 10291: -79.18332,-82.49852 - 10292: -79.004974,-81.36125 - 10293: -79.78523,-80.93757 - 10294: -81.10052,-81.89644 - 10295: -81.68014,-81.628845 - 10296: -80.89988,-80.17939 - 10297: -81.524086,-79.555016 - 10298: -82.7502,-80.73688 - 10299: -83.41899,-80.95987 - 10300: -83.41899,-79.59961 - 10301: -83.441284,-79.131325 - 10302: -84.82345,-80.51388 - 10303: -85.40307,-81.33896 - 10304: -86.09415,-81.829544 - 10305: -87.2088,-80.60308 - 10306: -87.67695,-79.9787 - 10307: -88.301155,-79.46581 - 10308: -88.83619,-79.309715 - 10309: -89.41581,-80.20169 - 10310: -88.4795,-81.20516 - 10311: -87.27567,-81.20516 - 10312: -88.078224,-82.030235 - 10313: -89.08141,-81.29436 - 10314: -88.25657,-80.26859 - 10315: -89.527275,-80.870674 - 10316: -91.26612,-81.27206 - 10317: -91.221535,-82.14173 - 10318: -88.50179,-82.587715 - 10319: -87.231094,-82.565414 - 10320: -88.83619,-83.41279 - 10321: -89.794785,-84.21557 - 10322: -88.74702,-84.01487 - 10323: -88.25657,-82.966805 - 10324: -89.99542,-82.788414 - 10325: -90.26294,-81.33896 - 10326: -88.70243,-81.13826 - 10327: -87.89988,-81.985634 - 10328: -89.126,-82.69921 - 10329: -89.90625,-83.88108 - 10330: -88.301155,-84.77305 - 10331: -86.941284,-83.65808 - 10332: -85.91581,-82.34242 - 10333: -87.2088,-84.01487 - 10334: -88.32345,-85.97721 - 10335: -89.34893,-84.95145 - 10336: -88.25657,-85.73192 - 10337: -88.301155,-86.4678 - 10338: -88.92536,-87.27057 - 10339: -89.126,-86.5124 - 10340: -90.04001,-87.225975 - 10341: -89.861664,-88.02875 - 10342: -88.1451,-87.761154 - 10343: -88.10052,-88.207146 - 10344: -89.41581,-88.98762 - 10345: -88.76931,-89.4782 - 10346: -87.63236,-89.5451 - 10347: -88.724724,-90.61547 - 10348: -88.99224,-91.93113 - 10349: -88.1451,-91.86423 - 10350: -87.32026,-90.54857 - 10351: -87.07504,-90.57087 - 10352: -88.011345,-91.84193 - 10353: -88.63555,-93.24679 - 10354: -87.25338,-92.956894 - 10355: -85.60371,-92.08722 - 10356: -86.13873,-93.001495 - 10357: -86.161026,-93.915764 - 10358: -85.157845,-94.20566 - 10359: -82.21517,-79.936386 - 10360: -83.864845,-80.03567 - 10361: -84.0209,-78.274025 - 10362: -82.237465,-78.20712 - 10363: -80.56548,-79.0991 - 10364: -79.98587,-77.93954 - 10365: -78.938095,-77.872635 - 10366: -79.651474,-78.58621 - 10367: -81.1451,-77.35975 - 10368: -82.25976,-76.49008 - 10369: -82.88396,-76.22249 - 10370: -80.14192,-76.15559 - 10371: -79.27249,-74.973724 - 10372: -78.89351,-74.991936 - 10373: -81.261444,-75.71161 - 10374: -82.062706,-73.94693 - 10375: -80.94805,-73.01036 - 10376: -80.4799,-73.657036 - 10377: -79.699646,-73.88003 - 10378: -77.827034,-73.27795 - 10379: -77.31429,-74.28142 - 10380: -78.18372,-75.79777 - 10381: -77.87162,-76.935036 - 10382: -79.32066,-73.14991 - 10383: -78.47353,-72.133484 - 10384: -77.760155,-70.773224 - 10385: -77.046776,-69.256874 - 10386: -78.919395,-70.215744 - 10387: -81.193275,-71.219215 - 10388: -81.99583,-71.30841 - 10389: -80.25697,-69.858955 - 10390: -78.00538,-69.50217 - 10391: -76.9576,-68.855484 - 10392: -76.57863,-68.07501 - 10393: -77.26971,-67.67362 - 10394: -79.16461,-68.520996 - 10395: -80.52448,-68.96698 - 10396: -82.17417,-68.96698 - 10397: -82.553154,-68.677086 - 10398: -82.01812,-67.65132 - 10399: -80.10092,-67.22764 - 10400: -78.38436,-67.718216 - 10401: -77.470345,-67.09384 - 10402: -76.91302,-65.68898 - 10403: -79.00857,-66.84855 - 10404: -81.21557,-68.2311 - 10405: -81.549965,-67.60672 - 10406: -82.686905,-66.71475 - 10407: -82.21876,-65.577484 - 10408: -80.21239,-65.577484 - 10409: -78.406654,-65.599785 - 10410: -76.77927,-65.1315 - 10411: -76.22194,-64.32873 - 10412: -76.46716,-63.369858 - 10413: -77.336586,-63.771244 - 10414: -76.3557,-66.49176 - 10415: -75.84296,-67.160736 - 10416: -75.79837,-68.2757 - 10417: -76.75697,-69.301476 - 10418: -75.93213,-65.13958 - 10419: -75.50857,-63.35564 - 10420: -74.68372,-61.660892 - 10421: -73.81429,-61.928482 - 10422: -75.64232,-62.619762 - 10423: -75.86525,-61.259506 - 10424: -82.95442,-64.93889 - 10425: -83.86844,-65.652466 - 10426: -83.57863,-65.80856 - 10427: -81.906654,-64.470604 - 10428: -81.59455,-63.02115 - 10429: -81.193275,-61.4379 - 10430: -80.346146,-61.10341 - 10431: -80.32385,-62.575165 - 10432: -81.05952,-64.33681 - 10433: -80.52448,-64.96119 - 10434: -80.123215,-63.534035 - 10435: -79.476715,-61.995384 - 10436: -78.562706,-61.616295 - 10437: -78.116844,-62.285275 - 10438: -77.51493,-62.240673 - 10439: -77.13595,-61.237206 - 10440: -76.623215,-60.657425 - 10441: -76.0213,-60.902718 - 10442: -75.66461,-62.30757 - 10443: -74.79519,-61.259506 - 10444: -74.839775,-59.988445 - 10445: -73.41302,-60.09994 - 10446: -73.59136,-61.4156 - 10447: -74.05952,-62.240673 - 10448: -73.41302,-62.954254 - 10449: -73.1678,-61.549397 - 10450: -73.680534,-60.79122 - 10451: -72.14232,-61.3264 - 10452: -71.919395,-62.66436 - 10453: -71.00538,-62.30757 - 10454: -70.42576,-61.460197 - 10455: -69.91302,-61.70549 - 10456: -69.890724,-63.489433 - 10457: -70.31429,-64.15842 - 10458: -76.802,-59.029793 - 10459: -77.805336,-58.829002 - 10460: -79.076035,-59.698673 - 10461: -79.96776,-60.546047 - 10462: -80.52508,-61.504917 - 10463: -81.23846,-62.35229 - 10464: -82.41999,-63.221962 - 10465: -84.002785,-64.11394 - 10466: -84.67158,-63.868645 - 10467: -84.02508,-62.820576 - 10468: -83.06648,-62.0178 - 10469: -82.10789,-61.10353 - 10470: -81.39451,-60.45685 - 10471: -80.59196,-59.36418 - 10472: -80.1461,-58.49451 - 10473: -80.168396,-57.870132 - 10474: -81.68432,-58.9405 - 10475: -82.50916,-60.05546 - 10476: -83.20024,-60.902836 - 10477: -84.47094,-62.218494 - 10478: -85.67477,-62.99897 - 10479: -87.12381,-63.02127 - 10480: -86.74483,-61.638714 - 10481: -85.095146,-60.389954 - 10482: -84.2703,-59.45338 - 10483: -83.57922,-58.650604 - 10484: -82.9996,-57.669437 - 10485: -83.24483,-57.067356 - 10486: -84.56011,-57.82553 - 10487: -85.49642,-59.564877 - 10488: -86.25438,-60.746742 - 10489: -86.63336,-62.32999 - 10490: -87.502785,-62.954372 - 10491: -88.305336,-62.820576 - 10492: -87.97094,-60.992035 - 10493: -86.878586,-59.720974 - 10494: -85.71935,-58.717503 - 10495: -85.162025,-57.691734 - 10496: -85.65247,-57.178852 - 10497: -86.4996,-57.669437 - 10498: -87.43591,-59.118893 - 10499: -87.97094,-60.12236 - 10500: -88.52827,-61.304222 - 10501: -88.81808,-62.820576 - 10502: -88.77349,-64.18083 - 10503: -89.0633,-64.60452 - 10504: -89.20997,-63.38094 - 10505: -89.61112,-63.09107 - 10506: -89.3659,-61.931503 - 10507: -89.78947,-61.06183 - 10508: -89.43278,-60.192158 - 10509: -88.56335,-59.16639 - 10510: -88.0952,-58.22982 - 10511: -88.630226,-56.89186 - 10512: -89.76717,-56.780365 - 10513: -89.678,-58.341316 - 10514: -89.923225,-58.56431 - 10515: -89.74488,-57.87303 - 10516: -89.566536,-55.843792 - 10517: -91.483734,-56.356678 - 10518: -91.127045,-57.315548 - 10519: -90.92641,-58.49741 - 10520: -91.81812,-59.567776 - 10521: -91.79583,-60.12526 - 10522: -90.97099,-59.723873 - 10523: -91.95188,-58.7873 - 10524: -93.066536,-57.22635 - 10525: -92.59838,-56.312077 - 10526: -93.24488,-56.044487 - 10527: -93.980545,-57.293247 - 10528: -94.4487,-58.56431 - 10529: -93.64616,-59.14409 - 10530: -95.25124,-56.334377 - 10531: -96.343605,-55.93299 - 10532: -97.43596,-56.780365 - 10533: -98.57291,-56.95876 - 10534: -99.28628,-57.650036 - 10535: -98.01558,-55.88839 - 10536: -99.95507,-57.89533 - 10537: -99.28628,-58.7204 - 10538: -101.1366,-60.14756 - 10539: -99.82131,-63.180264 - 10540: -98.55061,-62.868073 - 10541: -98.99647,-64.18373 - 10542: -96.856346,-63.447857 - 10543: -96.16526,-62.823475 - 10544: -96.276726,-63.715446 - 10545: -95.18437,-63.96074 - 10546: -94.82768,-63.00187 - 10547: -94.40411,-61.351723 - 10548: -94.89456,-60.281357 - 10549: -92.620674,-59.233288 - 10550: -92.553795,-60.88344 - 10551: -92.06335,-61.30712 - 10552: -91.03787,-61.217926 - 10553: -91.127045,-61.864605 - 10554: -92.197105,-62.44439 - 10555: -91.30539,-62.64508 - 10556: -90.413666,-62.399788 - 10557: -91.483734,-63.22486 - 10558: -92.93278,-63.514755 - 10559: -93.066536,-64.33983 - 10560: -90.81494,-63.96074 - 10561: -90.16845,-63.804646 - 10562: -90.703476,-64.71892 - 10563: -92.2194,-65.321 - 10564: -92.59838,-65.87848 - 10565: -93.90565,-65.86877 - 10566: -93.05851,-65.31128 - 10567: -91.54259,-64.9099 - 10568: -90.539406,-65.51198 - 10569: -91.56488,-66.31475 - 10570: -89.82603,-66.62694 - 10571: -89.04577,-66.53774 - 10572: -90.539406,-67.45202 - 10573: -92.90246,-67.22902 - 10574: -93.63813,-67.25132 - 10575: -93.01392,-68.0095 - 10576: -92.010735,-67.741905 - 10577: -90.71774,-68.81227 - 10578: -89.20182,-68.43318 - 10579: -89.04577,-68.901474 - 10580: -91.20819,-69.36976 - 10581: -92.300545,-69.79344 - 10582: -92.96934,-70.10564 - 10583: -93.57125,-69.102165 - 10584: -93.68272,-69.92724 - 10585: -92.54577,-71.06451 - 10586: -91.65405,-70.48472 - 10587: -91.20819,-70.95301 - 10588: -91.11902,-71.80038 - 10589: -89.736855,-71.51049 - 10590: -88.64449,-71.35439 - 10591: -87.97571,-71.66659 - 10592: -88.443855,-70.618515 - 10593: -89.023476,-69.81574 - 10594: -87.886536,-68.700775 - 10595: -88.15405,-67.9872 - 10596: -87.596725,-70.75231 - 10597: -86.883354,-70.462425 - 10598: -88.759254,-72.51316 - 10599: -88.84991,-73.27183 - 10600: -88.00277,-73.47252 - 10601: -86.86583,-72.78124 - 10602: -86.24163,-72.91504 - 10603: -87.044174,-73.33872 - 10604: -85.79577,-73.65092 - 10605: -85.23844,-74.163795 - 10606: -86.754364,-74.78818 - 10607: -88.181114,-74.163795 - 10608: -88.60468,-74.74358 - 10609: -87.24481,-75.345665 - 10610: -85.92953,-75.12267 - 10611: -85.39449,-75.25646 - 10612: -85.260735,-76.19304 - 10613: -86.82124,-76.21534 - 10614: -87.53462,-76.12614 - 10615: -87.623795,-76.61672 - 10616: -85.52825,-77.2188 - 10617: -86.130165,-77.62019 - 10618: -87.98048,-77.062706 - 10619: -89.49641,-76.304535 - 10620: -90.455,-76.19304 - 10621: -90.67793,-76.99581 - 10622: -89.117424,-77.285706 - 10623: -88.827614,-77.75399 - 10624: -89.8308,-78.33377 - 10625: -89.96456,-78.91355 - 10626: -89.60787,-79.87242 - 10627: -89.80851,-80.36301 - 10628: -86.464554,-82.86053 - 10629: -85.17156,-79.80553 - 10630: -84.4136,-78.422966 - 10631: -84.123795,-79.29264 - 10632: -110.2534,-32.882637 - 10633: -109.5103,-31.960936 - 10634: -109.86699,-31.321688 - 10635: -110.47633,-31.723076 - 10636: -110.78843,-32.154198 - 10637: -111.72474,-30.84597 - 10638: -112.408394,-31.782541 - 10639: -112.86911,-31.633879 - 10640: -113.73111,-30.786505 - 10641: -113.01773,-29.151222 - 10642: -112.86911,-27.798397 - 10643: -113.270386,-27.872728 - 10644: -113.627075,-29.537745 - 10645: -114.63769,-29.686405 - 10646: -115.053825,-28.868765 - 10647: -114.682274,-27.159151 - 10648: -115.0241,-26.6983 - 10649: -115.94555,-27.545671 - 10650: -116.67378,-28.25925 - 10651: -116.95616,-29.136356 - 10652: -116.01986,-30.251322 - 10653: -115.96041,-30.578379 - 10654: -116.629196,-30.860836 - 10655: -116.74809,-31.440619 - 10656: -115.75234,-32.09473 - 10657: -116.1982,-33.016434 - 10658: -114.44448,-31.723076 - 10659: -113.74597,-30.41485 - 10660: -113.478455,-29.299885 - 10661: -114.191826,-29.835068 - 10662: -112.72049,-28.318714 - 10663: -113.983765,-27.426743 - 10664: -114.07293,-26.41584 - 10665: -113.13663,-26.014454 - 10666: -112.30436,-26.84696 - 10667: -111.917946,-25.464403 - 10668: -112.57188,-24.631897 - 10669: -111.01136,-23.99265 - 10670: -110.53578,-24.69136 - 10671: -114.74172,-25.954988 - 10672: -109.79297,-23.258667 - 10673: -108.81207,-22.634241 - 10674: -108.17288,-22.246986 - 10675: -109.07954,-23.704287 - 10676: -109.51054,-24.373266 - 10677: -111.21966,-25.012512 - 10678: -107.14748,-23.109638 - 10679: -106.68675,-21.935207 - 10680: -105.274864,-22.12847 - 10681: -106.04768,-23.154238 - 10682: -106.65703,-24.031343 - 10683: -106.89482,-24.67059 - 10684: -106.25575,-25.3693 - 10685: -105.33431,-23.942146 - 10686: -105.08166,-24.298935 - 10687: -106.40437,-25.711224 - 10688: -106.79079,-26.112612 - 10689: -105.63155,-26.142344 - 10690: -104.18993,-25.428766 - 10691: -103.99673,-25.785555 - 10692: -104.24938,-27.33164 - 10693: -105.215416,-27.5695 - 10694: -105.97338,-26.841055 - 10695: -105.30459,-28.208746 - 10696: -104.04131,-27.76276 - 10697: -104.10076,-26.335606 - 10698: -105.039215,-22.95046 - 10699: -106.12396,-21.35884 - 10700: -106.74817,-20.897987 - 10701: -105.02418,-20.318205 - 10702: -104.66749,-21.076382 - 10703: -105.60379,-20.957453 - 10704: -104.01356,-20.006016 - 10705: -77.69546,-90.87918 + 9193: -78.35199,-55.00462 + 9194: -62.075962,-57.208084 + 9195: -61.295704,-56.204617 + 9196: -60.42628,-56.271515 + 9197: -61.69698,-57.230385 + 9198: -61.47405,-58.07776 + 9199: -60.158764,-57.69867 + 9200: -59.98042,-57.899364 + 9201: -59.712902,-57.854767 + 9202: -59.69061,-56.271515 + 9203: -61.317997,-56.472206 + 9204: -62.2766,-57.743267 + 9205: -61.518635,-59.170425 + 9206: -62.232014,-59.54951 + 9207: -63.101437,-59.683308 + 9208: -63.25749,-60.352287 + 9209: -62.45494,-61.155064 + 9210: -62.12055,-61.690247 + 9211: -61.362583,-62.180832 + 9212: -60.470867,-60.129295 + 9213: -59.17787,-58.479145 + 9214: -58.531376,-59.750206 + 9215: -61.161945,-61.400352 + 9216: -61.34029,-61.155064 + 9217: -63.5473,-61.311157 + 9218: -63.970867,-61.601048 + 9219: -64.818,-60.753674 + 9220: -64.416725,-59.8394 + 9221: -64.75112,-61.57875 + 9222: -64.97405,-63.028206 + 9223: -65.01864,-63.87558 + 9224: -63.792522,-63.028206 + 9225: -62.74475,-62.403824 + 9226: -60.60462,-62.782913 + 9227: -58.219273,-61.86864 + 9228: -57.84029,-62.180832 + 9229: -62.075962,-62.73831 + 9230: -58.28615,-62.15853 + 9231: -58.932648,-60.329987 + 9232: -57.595066,-59.63871 + 9233: -57.37214,-60.21849 + 9234: -56.77023,-60.865173 + 9235: -57.060036,-59.304222 + 9236: -57.795704,-58.211555 + 9237: -58.598255,-58.546043 + 9238: -59.868954,-59.393417 + 9239: -57.99634,-57.185787 + 9240: -56.8594,-56.918194 + 9241: -56.435833,-58.74674 + 9242: -56.458126,-58.902832 + 9243: -55.254307,-57.98856 + 9244: -55.232014,-59.25962 + 9245: -55.744747,-60.508385 + 9246: -56.212902,-61.62335 + 9247: -55.38806,-61.84634 + 9248: -55.105556,-59.861706 + 9249: -54.31869,-59.222195 + 9250: -53.331913,-59.41114 + 9251: -52.637432,-60.14998 + 9252: -54.086475,-61.77783 + 9253: -53.43998,-62.223816 + 9254: -54.844437,-62.580605 + 9255: -57.60877,-62.848198 + 9256: -59.25845,-62.915092 + 9257: -59.12469,-63.316483 + 9258: -57.452717,-63.65097 + 9259: -56.382656,-63.472576 + 9260: -57.89858,-64.00776 + 9261: -58.18839,-64.542946 + 9262: -58.18839,-65.479515 + 9263: -57.8317,-66.460686 + 9264: -56.382656,-65.635605 + 9265: -56.962273,-64.520645 + 9266: -58.90176,-65.03352 + 9267: -58.36673,-66.616776 + 9268: -58.299854,-67.12966 + 9269: -55.959087,-66.83977 + 9270: -54.889023,-66.70598 + 9271: -56.449535,-67.50875 + 9272: -56.164646,-68.14827 + 9273: -54.40283,-64.99683 + 9274: -53.59772,-65.279236 + 9275: -52.342144,-63.883675 + 9276: -51.759975,-63.487415 + 9277: -51.40315,-65.182434 + 9278: -52.00494,-65.873955 + 9279: -55.973274,-66.31958 + 9280: -57.93506,-66.09658 + 9281: -59.13888,-66.65407 + 9282: -59.161175,-67.546036 + 9283: -58.47009,-68.8171 + 9284: -57.087925,-69.17389 + 9285: -56.931873,-69.46378 + 9286: -59.005123,-68.99549 + 9287: -55.77264,-68.17042 + 9288: -54.256714,-68.8171 + 9289: -55.572002,-69.61987 + 9290: -54.635693,-69.53068 + 9291: -53.90003,-67.746735 + 9292: -52.785378,-67.79133 + 9293: -52.852253,-69.41918 + 9294: -53.40958,-70.35575 + 9295: -53.320408,-71.15853 + 9296: -52.45098,-70.55645 + 9297: -51.893658,-69.21849 + 9298: -51.82678,-68.8394 + 9299: -54.657986,-68.348816 + 9300: -53.92232,-67.30074 + 9301: -51.492382,-66.72096 + 9302: -51.82678,-65.36071 + 9303: -53.47646,-65.7175 + 9304: -51.001938,-64.00045 + 9305: -51.514675,-62.261105 + 9306: -51.82678,-62.015812 + 9307: -50.55608,-60.90085 + 9308: -50.154804,-59.317596 + 9309: -49.97646,-58.648617 + 9310: -51.98283,-60.008873 + 9311: -51.20257,-68.27579 + 9312: -51.40321,-70.23443 + 9313: -55.438244,-70.288216 + 9314: -57.13251,-70.39971 + 9315: -57.021046,-71.648476 + 9316: -54.814037,-70.95719 + 9317: -53.743977,-70.48891 + 9318: -55.973274,-71.91607 + 9319: -57.42232,-71.15789 + 9320: -55.973274,-68.70496 + 9321: -53.654804,-69.44084 + 9322: -55.928688,-72.49585 + 9323: -57.64525,-73.58851 + 9324: -56.285378,-73.945305 + 9325: -55.19302,-72.94183 + 9326: -54.05608,-72.607346 + 9327: -53.3427,-72.47355 + 9328: -54.568813,-73.63311 + 9329: -55.103848,-74.39129 + 9330: -53.454166,-74.27979 + 9331: -52.228054,-72.89723 + 9332: -51.514675,-71.31399 + 9333: -51.224865,-71.89377 + 9334: -52.696205,-73.61081 + 9335: -53.654804,-74.45818 + 9336: -51.938244,-74.99337 + 9337: -51.29175,-73.11161 + 9338: -50.95735,-72.62339 + 9339: -51.024227,-75.11381 + 9340: -51.82678,-77.66128 + 9341: -57.8013,-71.67788 + 9342: -58.157986,-72.20163 + 9343: -57.93506,-70.48458 + 9344: -57.288563,-69.7264 + 9345: -58.091106,-72.9821 + 9346: -57.779007,-73.628784 + 9347: -58.53697,-74.92214 + 9348: -56.90958,-75.167435 + 9349: -56.75353,-75.39043 + 9350: -57.26627,-76.2378 + 9351: -56.374546,-76.08171 + 9352: -56.708942,-73.80718 + 9353: -55.728054,-73.271996 + 9354: -55.2599,-75.88101 + 9355: -55.27735,-77.26357 + 9356: -55.79697,-77.67088 + 9357: -54.169064,-76.74396 + 9358: -53.277344,-75.9048 + 9359: -51.962055,-74.67834 + 9360: -52.72002,-76.06089 + 9361: -53.18817,-77.488045 + 9362: -52.407917,-77.19816 + 9363: -50.397606,-75.19122 + 9364: -50.22736,-74.834435 + 9365: -50.404285,-73.92016 + 9366: -51.184544,-75.6818 + 9367: -50.538044,-76.350784 + 9368: -50.069893,-76.84137 + 9369: -50.225945,-78.04553 + 9370: -49.57945,-79.20509 + 9371: -48.754604,-78.62531 + 9372: -49.958427,-78.15703 + 9373: -51.58582,-78.51382 + 9374: -52.455242,-78.9821 + 9375: -53.659065,-79.1605 + 9376: -54.617664,-78.73681 + 9377: -55.353333,-79.1605 + 9378: -55.843777,-79.807175 + 9379: -55.17499,-80.386955 + 9380: -54.394733,-79.829475 + 9381: -53.45843,-79.74028 + 9382: -51.496647,-80.32006 + 9383: -50.538044,-80.96674 + 9384: -49.51257,-80.43156 + 9385: -48.754604,-80.25317 + 9386: -47.550785,-80.32006 + 9387: -47.43932,-79.33889 + 9388: -48.39792,-78.42462 + 9389: -47.706837,-77.75564 + 9390: -46.503014,-78.75911 + 9391: -47.060337,-79.69568 + 9392: -45.990276,-79.94097 + 9393: -45.65588,-78.8037 + 9394: -45.87881,-78.04553 + 9395: -44.853333,-78.35772 + 9396: -45.187725,-79.450386 + 9397: -44.117664,-79.49499 + 9398: -44.184544,-78.268524 + 9399: -43.627216,-78.04553 + 9400: -42.936134,-79.0044 + 9401: -43.27053,-80.587654 + 9402: -43.471165,-81.07824 + 9403: -45.23231,-81.03364 + 9404: -45.87881,-80.72145 + 9405: -46.213207,-81.568825 + 9406: -46.346966,-82.01481 + 9407: -47.37244,-81.61342 + 9408: -47.327854,-80.810646 + 9409: -48.442505,-81.25663 + 9410: -48.531677,-82.3716 + 9411: -49.22276,-82.75069 + 9412: -50.136772,-81.83641 + 9413: -50.20365,-81.10053 + 9414: -52.14314,-82.0817 + 9415: -53.68136,-82.41619 + 9416: -54.79601,-81.65802 + 9417: -55.79919,-80.98904 + 9418: -56.245052,-81.45733 + 9419: -54.929768,-82.81758 + 9420: -55.888363,-82.92908 + 9421: -56.557156,-82.57229 + 9422: -56.57945,-79.60648 + 9423: -56.066708,-80.49845 + 9424: -55.88857,-84.602005 + 9425: -55.248844,-83.890144 + 9426: -53.68825,-83.77877 + 9427: -53.821255,-84.89483 + 9428: -52.573265,-84.67123 + 9429: -52.171993,-83.77926 + 9430: -53.487278,-82.48589 + 9431: -53.308933,-81.50473 + 9432: -50.343967,-83.02108 + 9433: -51.14651,-84.35904 + 9434: -49.474537,-83.890755 + 9435: -48.114666,-82.97648 + 9436: -48.270718,-83.80155 + 9437: -49.474537,-84.60433 + 9438: -49.85352,-85.5855 + 9439: -48.82804,-85.5409 + 9440: -49.385365,-84.80502 + 9441: -50.433136,-84.73813 + 9442: -51.035046,-85.7193 + 9443: -53.93314,-85.36251 + 9444: -54.17836,-85.3848 + 9445: -55.025494,-86.29908 + 9446: -55.605114,-86.63357 + 9447: -55.82804,-87.21335 + 9448: -53.35352,-86.99036 + 9449: -52.796192,-85.29561 + 9450: -52.59556,-86.32138 + 9451: -54.222946,-88.37292 + 9452: -53.910847,-89.04189 + 9453: -52.974537,-87.99383 + 9454: -51.79301,-88.127625 + 9455: -51.63696,-89.13109 + 9456: -50.254795,-88.23912 + 9457: -49.78664,-86.365974 + 9458: -49.006386,-85.94229 + 9459: -49.831226,-88.14992 + 9460: -50.99046,-88.35062 + 9461: -50.36626,-87.25795 + 9462: -49.56371,-87.21335 + 9463: -48.58282,-88.17222 + 9464: -48.917213,-89.17569 + 9465: -50.21021,-89.264885 + 9466: -48.13696,-89.17569 + 9467: -46.05859,-83.82385 + 9468: -45.337086,-84.13605 + 9469: -44.91216,-84.89422 + 9470: -44.221077,-84.269844 + 9471: -44.800694,-83.24407 + 9472: -44.822987,-82.3298 + 9473: -45.625538,-81.70542 + 9474: -44.24337,-81.10334 + 9475: -44.444004,-80.18907 + 9476: -43.329357,-80.85805 + 9477: -43.106426,-82.151405 + 9478: -42.036366,-82.06221 + 9479: -42.482224,-83.533966 + 9480: -42.103245,-83.913055 + 9481: -52.76212,-89.02105 + 9482: -54.033035,-89.26671 + 9483: -55.52661,-88.97673 + 9484: -55.50432,-89.824104 + 9485: -55.05846,-90.51538 + 9486: -56.596676,-89.7349 + 9487: -57.466103,-89.980194 + 9488: -58.536167,-90.983665 + 9489: -58.78139,-91.67494 + 9490: -57.020245,-91.60805 + 9491: -56.017056,-91.340454 + 9492: -55.482025,-91.920235 + 9493: -56.529797,-92.47772 + 9494: -56.150814,-93.169 + 9495: -55.036167,-92.67841 + 9496: -54.969288,-93.0798 + 9497: -56.26228,-93.860275 + 9498: -57.59986,-94.17246 + 9499: -58.26865,-93.36969 + 9500: -58.647633,-92.83451 + 9501: -58.93744,-94.239365 + 9502: -57.934254,-94.70765 + 9503: -56.35145,-94.68535 + 9504: -55.994762,-95.10904 + 9505: -56.239986,-95.755714 + 9506: -55.43744,-95.755714 + 9507: -54.679478,-95.95641 + 9508: -55.259098,-96.759186 + 9509: -56.217693,-96.98218 + 9510: -57.59986,-96.49159 + 9511: -58.759098,-95.599625 + 9512: -59.071198,-95.66652 + 9513: -58.736805,-97.22747 + 9514: -56.886486,-96.1125 + 9515: -56.507504,-95.198235 + 9516: -57.287758,-96.84838 + 9517: -58.49158,-97.45046 + 9518: -58.647633,-98.74383 + 9519: -56.953365,-98.32014 + 9520: -56.26228,-97.74036 + 9521: -55.036167,-97.96335 + 9522: -56.41833,-98.61003 + 9523: -54.790943,-97.80725 + 9524: -53.542538,-96.4247 + 9525: -52.940624,-95.778015 + 9526: -52.427883,-95.88951 + 9527: -54.70177,-96.4024 + 9528: -52.02661,-95.08674 + 9529: -50.555275,-94.640755 + 9530: -52.62852,-94.01637 + 9531: -53.765465,-94.08327 + 9532: -52.383297,-93.481186 + 9533: -51.959732,-92.879105 + 9534: -54.03298,-92.9906 + 9535: -53.654,-92.14323 + 9536: -51.736805,-92.45542 + 9537: -51.26865,-92.07633 + 9538: -52.98521,-91.80874 + 9539: -53.520245,-91.20666 + 9540: -52.6954,-92.43312 + 9541: -53.05209,-93.1913 + 9542: -49.867893,-93.24058 + 9543: -49.625546,-94.11306 + 9544: -48.10962,-92.842 + 9545: -47.351658,-92.663605 + 9546: -49.469494,-93.48868 + 9547: -48.912167,-94.001564 + 9548: -48.756115,-92.9535 + 9549: -48.488598,-92.106125 + 9550: -47.396244,-92.7305 + 9551: -47.93128,-94.26916 + 9552: -49.112804,-95.09423 + 9553: -49.959938,-95.161125 + 9554: -48.889874,-96.097694 + 9555: -48.131912,-95.09423 + 9556: -47.039555,-94.33605 + 9557: -46.125546,-94.51445 + 9558: -47.50771,-95.74091 + 9559: -48.154205,-96.38759 + 9560: -49.491787,-96.61058 + 9561: -50.173893,-95.52355 + 9562: -50.83331,-95.740425 + 9563: -51.707973,-96.69435 + 9564: -50.51101,-97.43854 + 9565: -49.41865,-97.23785 + 9566: -50.31037,-97.594635 + 9567: -50.934574,-96.72496 + 9568: -50.332664,-96.76956 + 9569: -52.02693,-97.92912 + 9570: -50.60018,-98.977196 + 9571: -49.03967,-99.04409 + 9572: -48.41547,-97.92912 + 9573: -48.19254,-96.85876 + 9574: -47.791264,-97.23785 + 9575: -48.79445,-97.594635 + 9576: -46.966423,-97.75073 + 9577: -46.230755,-98.30821 + 9578: -45.47279,-97.50544 + 9579: -46.56515,-95.94449 + 9580: -45.517376,-96.078285 + 9581: -44.982346,-97.83993 + 9582: -45.82948,-99.133286 + 9583: -46.654324,-100.22595 + 9584: -47.54604,-100.71654 + 9585: -47.947315,-99.17789 + 9586: -48.482346,-99.24478 + 9587: -47.523746,-101.58621 + 9588: -47.746677,-102.411285 + 9589: -49.440945,-101.809204 + 9590: -50.13203,-102.0545 + 9591: -48.437763,-101.20712 + 9592: -48.705276,-100.27055 + 9593: -50.354958,-100.18136 + 9594: -50.8454,-99.28938 + 9595: -51.75942,-98.531204 + 9596: -51.26897,-100.22595 + 9597: -53.05241,-99.66847 + 9598: -53.54286,-100.894936 + 9599: -53.364513,-100.91723 + 9600: -53.676617,-99.46777 + 9601: -54.47916,-98.575806 + 9602: -54.9919,-100.02526 + 9603: -62.941616,-100.24825 + 9604: -62.47346,-99.98066 + 9605: -61.62633,-100.24825 + 9606: -60.645435,-100.31515 + 9607: -59.932064,-99.891464 + 9608: -60.489384,-100.73884 + 9609: -60.4448,-101.36322 + 9610: -58.839703,-101.36322 + 9611: -58.10404,-100.98413 + 9612: -59.642254,-101.47472 + 9613: -59.04034,-102.0991 + 9614: -57.234608,-101.7423 + 9615: -57.011677,-101.630806 + 9616: -57.925694,-102.87957 + 9617: -57.569004,-102.25519 + 9618: -55.74098,-102.009895 + 9619: -55.495754,-101.34092 + 9620: -57.435246,-100.20365 + 9621: -56.766457,-99.73537 + 9622: -58.57219,-99.713066 + 9623: -59.04034,-100.114456 + 9624: -57.814228,-98.665 + 9625: -57.83652,-97.92912 + 9626: -58.88429,-98.26361 + 9627: -58.728237,-97.616936 + 9628: -57.32378,-97.88453 + 9629: -57.32378,-97.50544 + 9630: -58.527603,-96.256676 + 9631: -58.951168,-95.96679 + 9632: -57.279194,-95.18631 + 9633: -59.1741,-93.736855 + 9634: -58.75053,-92.421196 + 9635: -57.591297,-92.220505 + 9636: -58.081745,-90.97174 + 9637: -57.76964,-90.01287 + 9638: -52.348595,-94.718025 + 9639: -53.50783,-94.62883 + 9640: -54.93458,-99.28938 + 9641: -55.13522,-101.430115 + 9642: -50.07471,-100.78344 + 9643: -48.96006,-99.713066 + 9644: -48.581078,-100.91723 + 9645: -48.112926,-102.16599 + 9646: -47.065155,-102.27749 + 9647: -47.511013,-103.10256 + 9648: -47.132034,-103.50395 + 9649: -46.998276,-104.48512 + 9650: -46.663883,-105.1764 + 9651: -45.482353,-105.0426 + 9652: -44.657513,-105.1541 + 9653: -45.90592,-105.867676 + 9654: -45.259422,-106.11297 + 9655: -43.877254,-104.77501 + 9656: -43.07471,-103.749245 + 9657: -42.04923,-103.12486 + 9658: -41.00146,-103.88304 + 9659: -42.004642,-104.88651 + 9660: -43.052418,-106.269066 + 9661: -43.109436,-106.95139 + 9662: -42.15064,-106.8399 + 9663: -42.37357,-105.90333 + 9664: -42.953186,-104.676865 + 9665: -43.80032,-104.23088 + 9666: -42.23981,-102.84832 + 9667: -41.41497,-101.621864 + 9668: -40.768475,-101.15357 + 9669: -39.809875,-102.04555 + 9670: -40.87994,-103.5842 + 9671: -41.392677,-104.119385 + 9672: -39.69841,-103.717995 + 9673: -38.918156,-103.138214 + 9674: -39.653824,-104.34238 + 9675: -40.278027,-105.54654 + 9676: -40.278027,-106.66151 + 9677: -40.857647,-107.41968 + 9678: -40.768475,-108.26705 + 9679: -39.720703,-107.77647 + 9680: -40.612423,-106.594604 + 9681: -39.430893,-106.10402 + 9682: -38.895863,-107.10749 + 9683: -37.335354,-107.12979 + 9684: -36.19841,-106.8622 + 9685: -34.749367,-106.773 + 9686: -33.52325,-106.215515 + 9687: -32.609238,-106.639206 + 9688: -32.63153,-105.16745 + 9689: -33.3672,-105.30125 + 9690: -33.12198,-106.639206 + 9691: -33.65701,-106.995995 + 9692: -32.520065,-106.17092 + 9693: -33.43408,-105.122856 + 9694: -32.497772,-103.717995 + 9695: -33.099686,-102.55843 + 9696: -34.593315,-102.87062 + 9697: -35.641087,-103.4727 + 9698: -35.930893,-102.69223 + 9699: -35.061466,-101.35427 + 9700: -35.641087,-101.06438 + 9701: -37.112423,-101.91175 + 9702: -38.026436,-102.29084 + 9703: -36.26529,-101.51037 + 9704: -35.9086,-100.95288 + 9705: -36.242996,-102.11245 + 9706: -37.268475,-102.93752 + 9707: -35.08376,-102.02325 + 9708: -34.95,-103.495 + 9709: -34.79395,-103.04902 + 9710: -36.911785,-101.28737 + 9711: -35.46274,-100.2393 + 9712: -35.953186,-99.25813 + 9713: -36.06465,-98.343864 + 9714: -34.95,-97.49649 + 9715: -35.997772,-97.2735 + 9716: -36.621975,-98.49996 + 9717: -36.778027,-98.00938 + 9718: -36.488216,-96.91671 + 9719: -37.53599,-97.2958 + 9720: -33.41054,-97.671104 + 9721: -34.480606,-96.24395 + 9722: -35.4615,-96.44465 + 9723: -37.222645,-97.47041 + 9724: -38.47105,-97.671104 + 9725: -38.292706,-96.154755 + 9726: -38.114365,-95.218185 + 9727: -38.649395,-95.017494 + 9728: -38.270412,-96.71224 + 9729: -37.534748,-96.199356 + 9730: -37.155766,-95.08439 + 9731: -37.980606,-94.52691 + 9732: -39.697166,-95.396576 + 9733: -40.232197,-96.33315 + 9734: -40.588886,-96.31085 + 9735: -40.83411,-95.03979 + 9736: -40.053852,-96.756836 + 9737: -39.229015,-98.072495 + 9738: -38.448757,-97.9387 + 9739: -38.203537,-97.00213 + 9740: -39.853218,-95.195885 + 9741: -39.229015,-94.14782 + 9742: -40.143024,-93.74643 + 9743: -41.636658,-94.41541 + 9744: -41.881878,-93.14435 + 9745: -40.633472,-92.54227 + 9746: -40.343662,-92.63146 + 9747: -41.30226,-93.07745 + 9748: -40.99016,-93.14435 + 9749: -42.19398,-91.4273 + 9750: -41.413727,-90.33463 + 9751: -40.96787,-89.420364 + 9752: -41.948757,-89.79945 + 9753: -40.99016,-91.00362 + 9754: -41.74812,-91.11511 + 9755: -42.84048,-90.31234 + 9756: -43.486977,-90.71372 + 9757: -43.732197,-89.50956 + 9758: -44.378696,-89.241974 + 9759: -44.356403,-89.53186 + 9760: -45.872326,-88.81828 + 9761: -47.343662,-89.041275 + 9762: -47.455128,-90.04475 + 9763: -47.165318,-90.29004 + 9764: -48.32456,-89.77715 + 9765: -47.47742,-91.3158 + 9766: -41.72431,-88.42627 + 9767: -40.91788,-89.28702 + 9768: -39.780937,-89.7776 + 9769: -39.847816,-88.506546 + 9770: -40.226795,-87.525375 + 9771: -39.446545,-88.082855 + 9772: -41.05164,-87.77067 + 9773: -39.223614,-87.68147 + 9774: -38.309597,-86.7672 + 9775: -38.599407,-86.32121 + 9776: -38.265015,-88.03826 + 9777: -37.70769,-87.63687 + 9778: -38.01979,-86.6557 + 9779: -37.84145,-85.49614 + 9780: -36.637623,-86.09822 + 9781: -36.50387,-86.7672 + 9782: -35.210873,-86.967896 + 9783: -35.32234,-85.563034 + 9784: -33.5389,-86.49961 + 9785: -35.32234,-87.39158 + 9786: -35.589855,-88.01596 + 9787: -34.296864,-87.59228 + 9788: -33.784122,-86.45501 + 9789: -32.758644,-86.29891 + 9790: -33.82871,-87.882164 + 9791: -34.007053,-88.863335 + 9792: -32.959282,-89.10863 + 9793: -32.2682,-87.59228 + 9794: -31.822338,-87.28008 + 9795: -32.66947,-88.14976 + 9796: -32.55801,-88.75184 + 9797: -31.131256,-87.65917 + 9798: -30.707691,-87.41388 + 9799: -31.15355,-88.61804 + 9800: -31.97839,-89.71071 + 9801: -30.886032,-90.0452 + 9802: -30.19495,-88.75184 + 9803: -29.459282,-89.22012 + 9804: -29.236351,-90.26819 + 9805: -30.19495,-90.87027 + 9806: -30.55164,-91.360855 + 9807: -28.924252,-91.07097 + 9808: -28.032532,-91.383156 + 9809: -29.37011,-92.02984 + 9810: -29.88285,-93.01101 + 9811: -28.745907,-92.83261 + 9812: -29.258644,-93.61309 + 9813: -30.239536,-93.88068 + 9814: -29.704506,-95.26324 + 9815: -30.417881,-95.93221 + 9816: -30.997498,-95.28554 + 9817: -31.242722,-95.50853 + 9818: -31.844631,-96.51199 + 9819: -32.2682,-97.114075 + 9820: -33.583485,-96.757286 + 9821: -33.494312,-96.08831 + 9822: -35.433804,-96.4228 + 9823: -28.494694,-94.7872 + 9824: -27.044147,-94.16977 + 9825: -26.709755,-94.45966 + 9826: -26.732048,-95.30703 + 9827: -25.34988,-95.10634 + 9828: -27.735233,-94.45966 + 9829: -27.155613,-93.902176 + 9830: -25.9295,-93.2109 + 9831: -25.060074,-93.1886 + 9832: -25.439053,-95.08404 + 9833: -24.926315,-95.95371 + 9834: -24.45816,-94.10287 + 9835: -24.012302,-93.54539 + 9836: -25.572811,-94.01367 + 9837: -24.168354,-92.56422 + 9838: -24.81485,-91.82834 + 9839: -22.786186,-91.025566 + 9840: -22.161983,-90.980965 + 9841: -23.120583,-92.05134 + 9842: -22.540966,-92.07363 + 9843: -21.493195,-91.360054 + 9844: -20.311665,-91.22626 + 9845: -19.620583,-91.60535 + 9846: -20.64606,-92.162834 + 9847: -22.050518,-92.60882 + 9848: -22.273449,-93.344696 + 9849: -20.623768,-93.0548 + 9850: -19.353065,-92.83181 + 9851: -18.974087,-93.367 + 9852: -20.400837,-93.83528 + 9853: -22.13969,-93.85758 + 9854: -23.3881,-94.10287 + 9855: -23.165169,-94.861046 + 9856: -21.047333,-94.70495 + 9857: -19.197014,-94.303566 + 9858: -18.99638,-94.682655 + 9859: -20.64606,-95.30703 + 9860: -21.91676,-95.10634 + 9861: -22.072811,-95.73072 + 9862: -20.378544,-96.10981 + 9863: -19.977272,-96.84569 + 9864: -21.38173,-96.756485 + 9865: -22.652428,-96.422 + 9866: -24.123768,-96.600395 + 9867: -25.483639,-96.53349 + 9868: -25.951794,-96.957184 + 9869: -24.591919,-97.89375 + 9870: -23.075996,-97.581566 + 9871: -22.184277,-97.35857 + 9872: -21.136505,-97.47007 + 9873: -20.601475,-98.495834 + 9874: -23.120583,-97.581566 + 9875: -23.365807,-96.2882 + 9876: -22.719307,-95.061745 + 9877: -25.511814,-95.442986 + 9878: -24.910072,-96.75881 + 9879: -22.881409,-97.985275 + 9880: -23.148926,-98.65426 + 9881: -24.040646,-97.91838 + 9882: -25.623447,-97.69539 + 9883: -25.511982,-98.386665 + 9884: -22.81453,-99.07794 + 9885: -21.744465,-98.72115 + 9886: -20.74128,-98.65426 + 9887: -21.231728,-99.65772 + 9888: -21.075676,-100.63889 + 9889: -21.789051,-101.263275 + 9890: -23.41644,-100.14831 + 9891: -24.553383,-99.39014 + 9892: -25.71262,-99.05564 + 9893: -25.95784,-100.326706 + 9894: -24.620262,-101.01798 + 9895: -23.34956,-101.30788 + 9896: -22.68077,-101.75386 + 9897: -22.435547,-102.37824 + 9898: -22.881409,-102.95802 + 9899: -23.884594,-102.06605 + 9900: -24.59797,-100.728096 + 9901: -25.222172,-100.282104 + 9902: -25.95784,-101.820755 + 9903: -25.110706,-102.84653 + 9904: -23.951473,-103.09182 + 9905: -22.970581,-103.627 + 9906: -23.438732,-104.20678 + 9907: -25.734913,-103.4932 + 9908: -26.425995,-101.86536 + 9909: -26.827267,-100.861885 + 9910: -27.585228,-100.705795 + 9911: -27.629814,-102.69043 + 9912: -26.715801,-103.7162 + 9913: -26.002426,-104.38518 + 9914: -26.113892,-105.14336 + 9915: -27.050198,-105.700836 + 9916: -27.518353,-104.27368 + 9917: -26.648926,-103.00262 + 9918: -26.381409,-102.69043 + 9919: -26.78268,-104.318275 + 9920: -26.359116,-104.92036 + 9921: -26.047012,-105.94613 + 9922: -28.120262,-105.56704 + 9923: -29.09974,-105.05416 + 9924: -28.096996,-103.158714 + 9925: -28.810371,-102.13295 + 9926: -29.456867,-103.760796 + 9927: -28.966423,-105.32175 + 9928: -29.724384,-106.01302 + 9929: -30.43776,-105.299446 + 9930: -30.01419,-103.93919 + 9931: -29.991898,-102.82423 + 9932: -30.43776,-102.15525 + 9933: -31.507824,-102.57893 + 9934: -31.32948,-104.65277 + 9935: -30.928204,-105.92383 + 9936: -31.19572,-106.32522 + 9937: -31.753048,-104.89806 + 9938: -32.2212,-103.42631 + 9939: -32.354958,-102.15525 + 9940: -32.711643,-101.843056 + 9941: -33.246677,-103.93919 + 9942: -32.51101,-104.80886 + 9943: -35.052242,-104.23734 + 9944: -35.96626,-104.14815 + 9945: -34.04906,-103.83595 + 9946: -33.44715,-102.20811 + 9947: -18.846622,-90.459145 + 9948: -18.289295,-90.01212 + 9949: -18.579105,-90.77073 + 9950: -18.556812,-90.92682 + 9951: -18.021782,-89.65576 + 9952: -17.86573,-87.983315 + 9953: -18.088661,-87.06904 + 9954: -17.731972,-86.35546 + 9955: -18.155537,-85.41889 + 9956: -17.57592,-85.0175 + 9957: -17.241524,-85.285095 + 9958: -18.623692,-83.63495 + 9959: -18.846622,-83.12206 + 9960: -19.64917,-83.746445 + 9961: -19.29248,-83.768745 + 9962: -19.827515,-82.16319 + 9963: -19.849808,-81.851006 + 9964: -20.85299,-83.18896 + 9965: -20.897575,-83.724144 + 9966: -21.878468,-83.07746 + 9967: -22.658722,-82.54228 + 9968: -22.837067,-83.43426 + 9969: -22.302036,-84.03634 + 9970: -21.388023,-83.54575 + 9971: -20.161907,-83.345055 + 9972: -21.521782,-84.125534 + 9973: -24.063183,-83.03287 + 9974: -24.263817,-82.25239 + 9975: -24.442162,-83.90254 + 9976: -23.817959,-84.37083 + 9977: -24.93261,-84.63842 + 9978: -26.024967,-83.746445 + 9979: -26.069553,-84.50462 + 9980: -25.623692,-85.0398 + 9981: -24.57592,-84.9952 + 9982: -24.085476,-85.106705 + 9983: -25.512226,-85.61958 + 9984: -26.091846,-86.08787 + 9985: -24.464455,-86.11017 + 9986: -23.97401,-86.221664 + 9987: -24.553627,-86.84605 + 9988: -25.044075,-87.49273 + 9989: -24.152355,-87.55962 + 9990: -24.57592,-88.184006 + 9991: -24.954903,-88.76379 + 9992: -24.375282,-89.27667 + 9993: -24.241528,-89.67806 + 9994: -25.088661,-90.12405 + 9995: -23.728786,-90.39164 + 9996: -22.547256,-89.96795 + 9997: -23.929424,-90.72613 + 9998: -25.46764,-91.48431 + 9999: -24.709679,-91.997185 + 10000: -26.247894,-82.10456 + 10001: -25.802036,-81.167984 + 10002: -26.426239,-81.92616 + 10003: -27.384838,-80.54361 + 10004: -28.276558,-79.852325 + 10005: -28.36573,-78.893456 + 10006: -23.282928,-82.171455 + 10007: -21.43261,-81.94846 + 10008: -20.808403,-80.8558 + 10009: -23.059998,-79.71853 + 10010: -22.123692,-78.87116 + 10011: -20.897575,-78.44747 + 10012: -21.700123,-79.31715 + 10013: -20.518597,-78.58127 + 10014: -19.872097,-77.4663 + 10015: -18.645985,-77.97919 + 10016: -19.203308,-79.18335 + 10017: -18.066368,-79.04955 + 10018: -17.598213,-79.13875 + 10019: -18.69057,-80.5659 + 10020: -18.11095,-80.811195 + 10021: -18.222416,-80.8781 + 10022: -18.913502,-82.595146 + 10023: -17.464455,-82.10456 + 10024: -17.096306,-78.97552 + 10025: -16.85199,-77.58534 + 10026: -18.122688,-77.050156 + 10027: -19.52715,-77.29545 + 10028: -20.730968,-75.9575 + 10029: -19.371098,-74.32964 + 10030: -18.85836,-75.15472 + 10031: -20.151352,-75.6676 + 10032: -18.836067,-75.28851 + 10033: -17.988934,-74.351944 + 10034: -18.078102,-72.88019 + 10035: -16.718231,-74.10665 + 10036: -18.27874,-75.26621 + 10037: -16.629059,-73.950554 + 10038: -15.89339,-73.17008 + 10039: -17.342434,-72.634895 + 10040: -18.011227,-73.616066 + 10041: -18.85836,-73.81676 + 10042: -19.371098,-72.3896 + 10043: -19.883835,-71.83212 + 10044: -19.861542,-73.25928 + 10045: -20.106766,-74.017456 + 10046: -21.109951,-74.06205 + 10047: -21.734154,-72.3673 + 10048: -22.090843,-71.87672 + 10049: -22.469822,-73.32617 + 10050: -21.756447,-74.15125 + 10051: -21.53352,-74.530334 + 10052: -22.737339,-74.41884 + 10053: -23.606766,-73.25928 + 10054: -24.498486,-72.612595 + 10055: -25.301033,-72.76869 + 10056: -25.122688,-73.77216 + 10057: -24.253262,-74.48574 + 10058: -24.67683,-74.909424 + 10059: -26.259632,-75.6676 + 10060: -26.705494,-76.31428 + 10061: -26.036701,-76.871765 + 10062: -27.28511,-77.00556 + 10063: -28.132244,-75.623 + 10064: -27.686386,-74.77563 + 10065: -26.52715,-73.70526 + 10066: -26.52715,-71.92132 + 10067: -25.34562,-72.83559 + 10068: -25.078102,-75.44461 + 10069: -25.055809,-76.00209 + 10070: -27.17981,-77.30917 + 10071: -27.514206,-76.49583 + 10072: -27.046051,-78.39127 + 10073: -27.358154,-79.03795 + 10074: -28.807198,-78.10138 + 10075: -29.409111,-78.14598 + 10076: -28.851784,-79.41704 + 10077: -28.517391,-80.57661 + 10078: -29.208473,-80.532005 + 10079: -29.832676,-79.30554 + 10080: -30.412292,-78.30207 + 10081: -30.925034,-78.190575 + 10082: -30.67981,-79.50623 + 10083: -30.033314,-80.331314 + 10084: -29.78809,-80.95569 + 10085: -30.523758,-82.22675 + 10086: -31.103378,-81.290184 + 10087: -31.103378,-80.04142 + 10088: -32.53013,-79.88532 + 10089: -33.15433,-80.130615 + 10090: -33.35497,-78.50277 + 10091: -32.99828,-78.212875 + 10092: -32.17344,-79.77383 + 10093: -31.526943,-80.19752 + 10094: -33.867706,-79.595436 + 10095: -34.023758,-78.68116 + 10096: -34.558792,-78.54736 + 10097: -35.049236,-79.84073 + 10098: -34.17981,-80.97799 + 10099: -33.89,-81.33478 + 10100: -34.737133,-81.468575 + 10101: -35.00465,-81.37938 + 10102: -34.33586,-82.69504 + 10103: -34.447327,-83.430916 + 10104: -34.692547,-83.9215 + 10105: -32.9314,-83.029526 + 10106: -32.6193,-82.13756 + 10107: -32.418663,-81.892265 + 10108: -31.259426,-82.98493 + 10109: -34.04605,-79.90762 + 10110: -35.937122,-85.1471 + 10111: -35.62502,-84.02035 + 10112: -34.532665,-84.04265 + 10113: -35.602726,-83.016884 + 10114: -36.695084,-83.64126 + 10115: -37.185528,-83.50746 + 10116: -37.007183,-82.1918 + 10117: -38.27789,-82.54859 + 10118: -38.83521,-83.016884 + 10119: -39.102726,-82.5263 + 10120: -38.90209,-81.96881 + 10121: -40.195084,-82.03571 + 10122: -41.109097,-82.838486 + 10123: -41.666424,-82.59319 + 10124: -41.242855,-81.857315 + 10125: -40.9127,-79.85735 + 10126: -40.08786,-79.67896 + 10127: -37.54646,-79.522865 + 10128: -36.855377,-75.84348 + 10129: -41.091045,-76.46786 + 10130: -40.82353,-75.3083 + 10131: -36.963963,-72.71949 + 10132: -36.22608,-71.552536 + 10133: -33.796124,-71.99849 + 10134: -36.62724,-68.34128 + 10135: -35.089024,-67.8284 + 10136: -30.786476,-67.538506 + 10137: -28.802402,-67.8061 + 10138: -31.63361,-71.86457 + 10139: -30.407497,-71.81997 + 10140: -30.340618,-73.04643 + 10141: -42.01617,-71.84112 + 10142: -43.955845,-72.01401 + 10143: -41.302982,-68.40152 + 10144: -41.92718,-67.28655 + 10145: -43.822086,-68.20082 + 10146: -41.236103,-67.82174 + 10147: -41.013172,-63.80786 + 10148: -41.949474,-64.40994 + 10149: -43.59916,-63.78556 + 10150: -46.27432,-63.674065 + 10151: -47.656483,-63.58487 + 10152: -47.50043,-67.73254 + 10153: -46.697887,-68.44611 + 10154: -47.143745,-71.90251 + 10155: -48.191517,-71.88021 + 10156: -43.564583,-60.00784 + 10157: -42.162148,-60.018497 + 10158: -41.51565,-60.55368 + 10159: -47.601635,-59.973896 + 10160: -47.11119,-57.989258 + 10161: -44.99336,-58.23455 + 10162: -44.63667,-57.96696 + 10163: -37.05705,-60.575977 + 10164: -37.034756,-61.17806 + 10165: -34.315014,-59.750904 + 10166: -34.00291,-57.85546 + 10167: -31.439217,-60.21919 + 10168: -29.990173,-59.750904 + 10169: -36.901,-63.653282 + 10170: -37.190807,-64.299965 + 10171: -34.560238,-63.74248 + 10172: -31.037945,-60.15229 + 10173: -28.920109,-58.189953 + 10174: -66.161705,-100.95127 + 10175: -68.03431,-101.17427 + 10176: -68.99291,-101.88785 + 10177: -69.55024,-101.84325 + 10178: -69.371895,-100.97357 + 10179: -71.2668,-101.241165 + 10180: -73.34005,-101.86555 + 10181: -72.67126,-100.46069 + 10182: -72.5375,-99.99241 + 10183: -72.76043,-101.040474 + 10184: -71.645775,-101.75405 + 10185: -72.82731,-101.91015 + 10186: -73.518394,-100.2154 + 10187: -74.74451,-100.0593 + 10188: -75.59164,-100.639084 + 10189: -74.365524,-101.84325 + 10190: -73.98654,-102.64602 + 10191: -74.85597,-102.95821 + 10192: -75.435585,-101.66485 + 10193: -74.67763,-100.57219 + 10194: -75.23495,-100.639084 + 10195: -76.438774,-102.28923 + 10196: -76.684,-102.89131 + 10197: -77.59801,-102.200035 + 10198: -78.53431,-101.75405 + 10199: -79.33686,-101.84325 + 10200: -77.9324,-99.63561 + 10201: -76.661705,-98.788246 + 10202: -76.32731,-98.163864 + 10203: -77.68718,-98.09696 + 10204: -79.515205,-99.79171 + 10205: -80.184,-100.50529 + 10206: -81.14259,-101.15197 + 10207: -81.945145,-100.59449 + 10208: -81.878265,-99.345726 + 10209: -79.98336,-99.36803 + 10210: -79.89419,-100.90668 + 10211: -78.91329,-100.304596 + 10212: -77.88782,-98.85514 + 10213: -78.712654,-97.51718 + 10214: -80.25088,-98.43145 + 10215: -81.231766,-99.14503 + 10216: -81.32998,-98.06561 + 10217: -82.69096,-96.99448 + 10218: -83.68885,-99.026024 + 10219: -82.58918,-99.72947 + 10220: -83.70383,-98.8152 + 10221: -83.837585,-96.62987 + 10222: -83.23567,-95.49261 + 10223: -81.42994,-94.82362 + 10224: -81.898094,-96.49607 + 10225: -80.87261,-97.321144 + 10226: -79.200645,-96.62987 + 10227: -77.50637,-96.67447 + 10228: -76.10191,-97.00896 + 10229: -76.59236,-95.5149 + 10230: -77.684715,-95.33651 + 10231: -78.687904,-95.5372 + 10232: -79.51274,-94.51144 + 10233: -81.07325,-94.043144 + 10234: -83.07962,-95.31421 + 10235: -84.59554,-96.384575 + 10236: -85.3758,-97.38805 + 10237: -86.06689,-97.67793 + 10238: -86.267525,-96.45147 + 10239: -85.57644,-95.49261 + 10240: -86.37899,-95.11352 + 10241: -87.24841,-95.804794 + 10242: -87.82803,-95.29191 + 10243: -87.09236,-94.39994 + 10244: -85.50956,-93.19578 + 10245: -87.114655,-93.61946 + 10246: -87.82803,-92.99508 + 10247: -86.71338,-92.393 + 10248: -84.55096,-92.170006 + 10249: -84.26115,-93.507965 + 10250: -82.65606,-93.35187 + 10251: -83.01274,-91.88012 + 10252: -82.09873,-91.03274 + 10253: -81.8758,-91.969315 + 10254: -82.99045,-92.147705 + 10255: -81.94268,-92.88358 + 10256: -81.5637,-91.88012 + 10257: -80.67198,-91.70172 + 10258: -81.2293,-92.79439 + 10259: -81.98727,-93.79786 + 10260: -79.78026,-93.06198 + 10261: -80.09236,-91.88012 + 10262: -78.7102,-91.32263 + 10263: -77.66242,-92.393 + 10264: -78.48727,-93.32957 + 10265: -77.55096,-93.37417 + 10266: -76.85988,-92.4822 + 10267: -76.16879,-91.947014 + 10268: -76.28026,-93.46336 + 10269: -76.1465,-94.26614 + 10270: -75.72294,-95.09122 + 10271: -78.95857,-89.797485 + 10272: -79.98587,-89.07736 + 10273: -79.27249,-87.47175 + 10274: -79.20561,-86.600975 + 10275: -80.56548,-86.824585 + 10276: -80.76612,-86.4901 + 10277: -80.00816,-84.83994 + 10278: -80.18651,-84.28246 + 10279: -80.944466,-85.26363 + 10280: -81.83619,-85.55353 + 10281: -81.96995,-84.95145 + 10282: -80.85529,-83.41279 + 10283: -80.654655,-82.07484 + 10284: -79.941284,-81.87414 + 10285: -80.721535,-83.47969 + 10286: -79.76294,-83.390495 + 10287: -79.18332,-82.49852 + 10288: -79.004974,-81.36125 + 10289: -79.78523,-80.93757 + 10290: -81.10052,-81.89644 + 10291: -81.68014,-81.628845 + 10292: -80.89988,-80.17939 + 10293: -81.524086,-79.555016 + 10294: -82.7502,-80.73688 + 10295: -83.41899,-80.95987 + 10296: -83.41899,-79.59961 + 10297: -83.441284,-79.131325 + 10298: -84.82345,-80.51388 + 10299: -85.40307,-81.33896 + 10300: -86.09415,-81.829544 + 10301: -87.2088,-80.60308 + 10302: -87.67695,-79.9787 + 10303: -88.301155,-79.46581 + 10304: -88.83619,-79.309715 + 10305: -89.41581,-80.20169 + 10306: -88.4795,-81.20516 + 10307: -87.27567,-81.20516 + 10308: -88.078224,-82.030235 + 10309: -89.08141,-81.29436 + 10310: -88.25657,-80.26859 + 10311: -89.527275,-80.870674 + 10312: -91.26612,-81.27206 + 10313: -91.221535,-82.14173 + 10314: -88.50179,-82.587715 + 10315: -87.231094,-82.565414 + 10316: -88.83619,-83.41279 + 10317: -89.794785,-84.21557 + 10318: -88.74702,-84.01487 + 10319: -88.25657,-82.966805 + 10320: -89.99542,-82.788414 + 10321: -90.26294,-81.33896 + 10322: -88.70243,-81.13826 + 10323: -87.89988,-81.985634 + 10324: -89.126,-82.69921 + 10325: -89.90625,-83.88108 + 10326: -88.301155,-84.77305 + 10327: -86.941284,-83.65808 + 10328: -85.91581,-82.34242 + 10329: -87.2088,-84.01487 + 10330: -88.32345,-85.97721 + 10331: -89.34893,-84.95145 + 10332: -88.25657,-85.73192 + 10333: -88.301155,-86.4678 + 10334: -88.92536,-87.27057 + 10335: -89.126,-86.5124 + 10336: -90.04001,-87.225975 + 10337: -89.861664,-88.02875 + 10338: -88.1451,-87.761154 + 10339: -88.10052,-88.207146 + 10340: -89.41581,-88.98762 + 10341: -88.76931,-89.4782 + 10342: -87.63236,-89.5451 + 10343: -88.724724,-90.61547 + 10344: -88.99224,-91.93113 + 10345: -88.1451,-91.86423 + 10346: -87.32026,-90.54857 + 10347: -87.07504,-90.57087 + 10348: -88.011345,-91.84193 + 10349: -88.63555,-93.24679 + 10350: -87.25338,-92.956894 + 10351: -85.60371,-92.08722 + 10352: -86.13873,-93.001495 + 10353: -86.161026,-93.915764 + 10354: -85.157845,-94.20566 + 10355: -82.21517,-79.936386 + 10356: -83.864845,-80.03567 + 10357: -84.0209,-78.274025 + 10358: -82.237465,-78.20712 + 10359: -80.56548,-79.0991 + 10360: -79.98587,-77.93954 + 10361: -78.938095,-77.872635 + 10362: -79.651474,-78.58621 + 10363: -81.1451,-77.35975 + 10364: -82.25976,-76.49008 + 10365: -82.88396,-76.22249 + 10366: -80.14192,-76.15559 + 10367: -79.27249,-74.973724 + 10368: -78.89351,-74.991936 + 10369: -81.261444,-75.71161 + 10370: -82.062706,-73.94693 + 10371: -80.94805,-73.01036 + 10372: -80.4799,-73.657036 + 10373: -79.699646,-73.88003 + 10374: -77.827034,-73.27795 + 10375: -77.31429,-74.28142 + 10376: -78.18372,-75.79777 + 10377: -77.87162,-76.935036 + 10378: -79.32066,-73.14991 + 10379: -78.47353,-72.133484 + 10380: -77.760155,-70.773224 + 10381: -77.046776,-69.256874 + 10382: -78.919395,-70.215744 + 10383: -81.193275,-71.219215 + 10384: -81.99583,-71.30841 + 10385: -80.25697,-69.858955 + 10386: -78.00538,-69.50217 + 10387: -76.9576,-68.855484 + 10388: -76.57863,-68.07501 + 10389: -77.26971,-67.67362 + 10390: -79.16461,-68.520996 + 10391: -80.52448,-68.96698 + 10392: -82.17417,-68.96698 + 10393: -82.553154,-68.677086 + 10394: -82.01812,-67.65132 + 10395: -80.10092,-67.22764 + 10396: -78.38436,-67.718216 + 10397: -77.470345,-67.09384 + 10398: -76.91302,-65.68898 + 10399: -79.00857,-66.84855 + 10400: -81.21557,-68.2311 + 10401: -81.549965,-67.60672 + 10402: -82.686905,-66.71475 + 10403: -82.21876,-65.577484 + 10404: -80.21239,-65.577484 + 10405: -78.406654,-65.599785 + 10406: -76.77927,-65.1315 + 10407: -76.22194,-64.32873 + 10408: -76.46716,-63.369858 + 10409: -77.336586,-63.771244 + 10410: -76.3557,-66.49176 + 10411: -75.84296,-67.160736 + 10412: -75.79837,-68.2757 + 10413: -76.75697,-69.301476 + 10414: -75.93213,-65.13958 + 10415: -75.50857,-63.35564 + 10416: -74.68372,-61.660892 + 10417: -73.81429,-61.928482 + 10418: -75.64232,-62.619762 + 10419: -75.86525,-61.259506 + 10420: -82.95442,-64.93889 + 10421: -83.86844,-65.652466 + 10422: -83.57863,-65.80856 + 10423: -81.906654,-64.470604 + 10424: -81.59455,-63.02115 + 10425: -81.193275,-61.4379 + 10426: -80.346146,-61.10341 + 10427: -80.32385,-62.575165 + 10428: -81.05952,-64.33681 + 10429: -80.52448,-64.96119 + 10430: -80.123215,-63.534035 + 10431: -79.476715,-61.995384 + 10432: -78.562706,-61.616295 + 10433: -78.116844,-62.285275 + 10434: -77.51493,-62.240673 + 10435: -77.13595,-61.237206 + 10436: -76.623215,-60.657425 + 10437: -76.0213,-60.902718 + 10438: -75.66461,-62.30757 + 10439: -74.79519,-61.259506 + 10440: -74.839775,-59.988445 + 10441: -73.41302,-60.09994 + 10442: -73.59136,-61.4156 + 10443: -74.05952,-62.240673 + 10444: -73.41302,-62.954254 + 10445: -73.1678,-61.549397 + 10446: -73.680534,-60.79122 + 10447: -72.14232,-61.3264 + 10448: -71.919395,-62.66436 + 10449: -71.00538,-62.30757 + 10450: -70.42576,-61.460197 + 10451: -69.91302,-61.70549 + 10452: -69.890724,-63.489433 + 10453: -70.31429,-64.15842 + 10454: -76.802,-59.029793 + 10455: -77.805336,-58.829002 + 10456: -79.076035,-59.698673 + 10457: -79.96776,-60.546047 + 10458: -80.52508,-61.504917 + 10459: -81.23846,-62.35229 + 10460: -82.41999,-63.221962 + 10461: -84.002785,-64.11394 + 10462: -84.67158,-63.868645 + 10463: -84.02508,-62.820576 + 10464: -83.06648,-62.0178 + 10465: -82.10789,-61.10353 + 10466: -81.39451,-60.45685 + 10467: -80.59196,-59.36418 + 10468: -80.1461,-58.49451 + 10469: -80.168396,-57.870132 + 10470: -81.68432,-58.9405 + 10471: -82.50916,-60.05546 + 10472: -83.20024,-60.902836 + 10473: -84.47094,-62.218494 + 10474: -85.67477,-62.99897 + 10475: -87.12381,-63.02127 + 10476: -86.74483,-61.638714 + 10477: -85.095146,-60.389954 + 10478: -84.2703,-59.45338 + 10479: -83.57922,-58.650604 + 10480: -82.9996,-57.669437 + 10481: -83.24483,-57.067356 + 10482: -84.56011,-57.82553 + 10483: -85.49642,-59.564877 + 10484: -86.25438,-60.746742 + 10485: -86.63336,-62.32999 + 10486: -87.502785,-62.954372 + 10487: -88.305336,-62.820576 + 10488: -87.97094,-60.992035 + 10489: -86.878586,-59.720974 + 10490: -85.71935,-58.717503 + 10491: -85.162025,-57.691734 + 10492: -85.65247,-57.178852 + 10493: -86.4996,-57.669437 + 10494: -87.43591,-59.118893 + 10495: -87.97094,-60.12236 + 10496: -88.52827,-61.304222 + 10497: -88.81808,-62.820576 + 10498: -88.77349,-64.18083 + 10499: -89.0633,-64.60452 + 10500: -89.20997,-63.38094 + 10501: -89.61112,-63.09107 + 10502: -89.3659,-61.931503 + 10503: -89.78947,-61.06183 + 10504: -89.43278,-60.192158 + 10505: -88.56335,-59.16639 + 10506: -88.0952,-58.22982 + 10507: -88.630226,-56.89186 + 10508: -89.76717,-56.780365 + 10509: -89.678,-58.341316 + 10510: -89.923225,-58.56431 + 10511: -89.74488,-57.87303 + 10512: -89.566536,-55.843792 + 10513: -91.483734,-56.356678 + 10514: -91.127045,-57.315548 + 10515: -90.92641,-58.49741 + 10516: -91.81812,-59.567776 + 10517: -91.79583,-60.12526 + 10518: -90.97099,-59.723873 + 10519: -91.95188,-58.7873 + 10520: -93.066536,-57.22635 + 10521: -92.59838,-56.312077 + 10522: -93.24488,-56.044487 + 10523: -93.980545,-57.293247 + 10524: -94.4487,-58.56431 + 10525: -93.64616,-59.14409 + 10526: -95.25124,-56.334377 + 10527: -96.343605,-55.93299 + 10528: -97.43596,-56.780365 + 10529: -98.57291,-56.95876 + 10530: -99.28628,-57.650036 + 10531: -98.01558,-55.88839 + 10532: -99.95507,-57.89533 + 10533: -99.28628,-58.7204 + 10534: -101.1366,-60.14756 + 10535: -99.82131,-63.180264 + 10536: -98.55061,-62.868073 + 10537: -98.99647,-64.18373 + 10538: -96.856346,-63.447857 + 10539: -96.16526,-62.823475 + 10540: -96.276726,-63.715446 + 10541: -95.18437,-63.96074 + 10542: -94.82768,-63.00187 + 10543: -94.40411,-61.351723 + 10544: -94.89456,-60.281357 + 10545: -92.620674,-59.233288 + 10546: -92.553795,-60.88344 + 10547: -92.06335,-61.30712 + 10548: -91.03787,-61.217926 + 10549: -91.127045,-61.864605 + 10550: -92.197105,-62.44439 + 10551: -91.30539,-62.64508 + 10552: -90.413666,-62.399788 + 10553: -91.483734,-63.22486 + 10554: -92.93278,-63.514755 + 10555: -93.066536,-64.33983 + 10556: -90.81494,-63.96074 + 10557: -90.16845,-63.804646 + 10558: -90.703476,-64.71892 + 10559: -92.2194,-65.321 + 10560: -92.59838,-65.87848 + 10561: -93.90565,-65.86877 + 10562: -93.05851,-65.31128 + 10563: -91.54259,-64.9099 + 10564: -90.539406,-65.51198 + 10565: -91.56488,-66.31475 + 10566: -89.82603,-66.62694 + 10567: -89.04577,-66.53774 + 10568: -90.539406,-67.45202 + 10569: -92.90246,-67.22902 + 10570: -93.63813,-67.25132 + 10571: -93.01392,-68.0095 + 10572: -92.010735,-67.741905 + 10573: -90.71774,-68.81227 + 10574: -89.20182,-68.43318 + 10575: -89.04577,-68.901474 + 10576: -91.20819,-69.36976 + 10577: -92.300545,-69.79344 + 10578: -92.96934,-70.10564 + 10579: -93.57125,-69.102165 + 10580: -93.68272,-69.92724 + 10581: -92.54577,-71.06451 + 10582: -91.65405,-70.48472 + 10583: -91.20819,-70.95301 + 10584: -91.11902,-71.80038 + 10585: -89.736855,-71.51049 + 10586: -88.64449,-71.35439 + 10587: -87.97571,-71.66659 + 10588: -88.443855,-70.618515 + 10589: -89.023476,-69.81574 + 10590: -87.886536,-68.700775 + 10591: -88.15405,-67.9872 + 10592: -87.596725,-70.75231 + 10593: -86.883354,-70.462425 + 10594: -88.759254,-72.51316 + 10595: -88.84991,-73.27183 + 10596: -88.00277,-73.47252 + 10597: -86.86583,-72.78124 + 10598: -86.24163,-72.91504 + 10599: -87.044174,-73.33872 + 10600: -85.79577,-73.65092 + 10601: -85.23844,-74.163795 + 10602: -86.754364,-74.78818 + 10603: -88.181114,-74.163795 + 10604: -88.60468,-74.74358 + 10605: -87.24481,-75.345665 + 10606: -85.92953,-75.12267 + 10607: -85.39449,-75.25646 + 10608: -85.260735,-76.19304 + 10609: -86.82124,-76.21534 + 10610: -87.53462,-76.12614 + 10611: -87.623795,-76.61672 + 10612: -85.52825,-77.2188 + 10613: -86.130165,-77.62019 + 10614: -87.98048,-77.062706 + 10615: -89.49641,-76.304535 + 10616: -90.455,-76.19304 + 10617: -90.67793,-76.99581 + 10618: -89.117424,-77.285706 + 10619: -88.827614,-77.75399 + 10620: -89.8308,-78.33377 + 10621: -89.96456,-78.91355 + 10622: -89.60787,-79.87242 + 10623: -89.80851,-80.36301 + 10624: -86.464554,-82.86053 + 10625: -85.17156,-79.80553 + 10626: -84.4136,-78.422966 + 10627: -84.123795,-79.29264 + 10628: -110.2534,-32.882637 + 10629: -109.5103,-31.960936 + 10630: -109.86699,-31.321688 + 10631: -110.47633,-31.723076 + 10632: -110.78843,-32.154198 + 10633: -111.72474,-30.84597 + 10634: -112.408394,-31.782541 + 10635: -112.86911,-31.633879 + 10636: -113.73111,-30.786505 + 10637: -113.01773,-29.151222 + 10638: -112.86911,-27.798397 + 10639: -113.270386,-27.872728 + 10640: -113.627075,-29.537745 + 10641: -114.63769,-29.686405 + 10642: -115.053825,-28.868765 + 10643: -114.682274,-27.159151 + 10644: -115.0241,-26.6983 + 10645: -115.94555,-27.545671 + 10646: -116.67378,-28.25925 + 10647: -116.95616,-29.136356 + 10648: -116.01986,-30.251322 + 10649: -115.96041,-30.578379 + 10650: -116.629196,-30.860836 + 10651: -116.74809,-31.440619 + 10652: -115.75234,-32.09473 + 10653: -116.1982,-33.016434 + 10654: -114.44448,-31.723076 + 10655: -113.74597,-30.41485 + 10656: -113.478455,-29.299885 + 10657: -114.191826,-29.835068 + 10658: -112.72049,-28.318714 + 10659: -113.983765,-27.426743 + 10660: -114.07293,-26.41584 + 10661: -113.13663,-26.014454 + 10662: -112.30436,-26.84696 + 10663: -111.917946,-25.464403 + 10664: -112.57188,-24.631897 + 10665: -111.01136,-23.99265 + 10666: -110.53578,-24.69136 + 10667: -114.74172,-25.954988 + 10668: -109.79297,-23.258667 + 10669: -108.81207,-22.634241 + 10670: -108.17288,-22.246986 + 10671: -109.07954,-23.704287 + 10672: -109.51054,-24.373266 + 10673: -111.21966,-25.012512 + 10674: -107.14748,-23.109638 + 10675: -106.68675,-21.935207 + 10676: -105.274864,-22.12847 + 10677: -106.04768,-23.154238 + 10678: -106.65703,-24.031343 + 10679: -106.89482,-24.67059 + 10680: -106.25575,-25.3693 + 10681: -105.33431,-23.942146 + 10682: -105.08166,-24.298935 + 10683: -106.40437,-25.711224 + 10684: -106.79079,-26.112612 + 10685: -105.63155,-26.142344 + 10686: -104.18993,-25.428766 + 10687: -103.99673,-25.785555 + 10688: -104.24938,-27.33164 + 10689: -105.215416,-27.5695 + 10690: -105.97338,-26.841055 + 10691: -105.30459,-28.208746 + 10692: -104.04131,-27.76276 + 10693: -104.10076,-26.335606 + 10694: -105.039215,-22.95046 + 10695: -106.12396,-21.35884 + 10696: -106.74817,-20.897987 + 10697: -105.02418,-20.318205 + 10698: -104.66749,-21.076382 + 10699: -105.60379,-20.957453 + 10700: -104.01356,-20.006016 + 10701: -77.69546,-90.87918 - node: cleanable: True color: '#DCBFFFCC' id: Grassd2 decals: - 8169: -119.99861,-39.37801 - 8170: -120.0432,-37.014282 - 8171: -119.7311,-36.835888 - 8172: -120.890335,-38.865128 - 8173: -122.82983,-38.10695 - 8174: -122.07186,-36.969685 - 8175: -120.62282,-39.31111 - 8176: -119.173775,-38.68673 - 8177: -118.50498,-38.820526 - 8178: -121.58141,-39.823997 - 8179: -122.094154,-40.80517 - 8180: -120.22154,-40.69367 - 8181: -118.61645,-39.489506 - 8182: -118.817085,-40.314583 - 8183: -119.61964,-40.80517 - 8184: -118.28205,-40.80517 - 8185: -119.7311,-39.957794 - 8186: -123.186516,-41.161957 - 8187: -118.34893,-39.40031 - 8188: -119.61964,-37.79476 - 8189: -117.63556,-40.314583 - 8190: -116.78842,-40.35918 - 8191: -118.03683,-41.719437 - 8192: -117.85848,-42.499912 - 8193: -116.76613,-41.29575 - 8194: -116.387146,-41.429546 - 8195: -116.89989,-42.767506 - 8196: -115.963585,-43.481083 - 8197: -117.0606,-41.770844 - 8198: -117.66251,-43.64399 - 8199: -115.945946,-42.66282 - 8200: -114.98735,-42.484425 - 8201: -115.32175,-44.045376 - 8202: -114.49691,-44.469063 - 8203: -114.14022,-42.95271 - 8204: -113.516014,-43.82238 - 8205: -114.34086,-44.60286 - 8206: -113.35996,-44.692055 - 8207: -112.93639,-43.933876 - 8208: -112.71346,-44.848152 - 8209: -112.93639,-45.963116 - 8210: -111.955505,-45.606327 - 8211: -111.24213,-45.450233 - 8212: -110.952324,-46.475998 - 8213: -111.13066,-46.877388 - 8214: -109.367805,-47.808216 - 8215: -106.91558,-49.882053 - 8216: -106.67036,-50.61793 - 8217: -107.1608,-50.751724 - 8218: -106.62577,-51.130814 - 8219: -105.42194,-50.97472 - 8220: -104.64169,-51.822094 - 8221: -105.77863,-52.691765 - 8222: -105.33277,-53.16005 - 8223: -104.03978,-52.178883 - 8224: -103.54933,-52.937057 - 8225: -104.775444,-54.14122 - 8226: -104.48564,-54.943996 - 8227: -103.52704,-54.029724 - 8228: -103.081184,-53.47224 - 8229: -104.10666,-53.85133 - 8230: -103.504745,-55.14469 - 8231: -101.94424,-53.91823 - 8232: -103.05889,-55.79137 - 8233: -105.04296,-54.877098 - 8234: -104.218124,-56.63874 - 8235: -103.928314,-57.173927 - 8236: -104.1416,-57.837513 - 8237: -122.03457,-24.95616 - 8238: -123.728836,-24.95616 - 8239: -124.35304,-24.04189 - 8240: -123.66196,-23.149916 - 8241: -124.04094,-22.614733 - 8242: -124.64285,-23.172215 - 8243: -123.929474,-24.04189 - 8244: -124.999535,-24.175684 - 8245: -125.289345,-23.216814 - 8246: -124.46451,-21.878855 - 8247: -125.40081,-21.299072 - 8248: -126.00272,-22.391739 - 8249: -126.27024,-23.37291 - 8250: -125.646034,-23.439808 - 8251: -125.04412,-22.03495 - 8252: -126.11419,-21.142979 - 8253: -126.67152,-24.220284 - 8254: -128.0091,-24.175684 - 8255: -129.43584,-24.197983 - 8256: -129.12373,-25.023056 - 8257: -130.32756,-24.822365 - 8258: -130.81801,-23.908092 - 8259: -132.44972,-23.707397 - 8260: -132.12096,-19.314434 - 8261: -131.27382,-20.652393 - 8262: -131.6528,-21.878855 - 8263: -133.81522,-19.961115 - 8264: -133.8821,-19.336733 - 8265: -132.74515,-19.381332 - 8266: -132.32158,-20.540895 - 8267: -132.21013,-21.232174 - 8268: -138.20766,-20.709616 - 8269: -138.62363,-20.06485 - 8270: -137.1077,-18.949884 - 8271: -137.06311,-19.997952 - 8272: -137.24146,-18.570795 - 8273: -137.88795,-17.968714 - 8274: -137.21916,-16.719954 - 8275: -137.35292,-18.214006 - 8276: -137.62044,-19.551966 - 8277: -139.0249,-17.522728 - 8278: -139.62682,-18.838387 - 8279: -139.53764,-18.280905 - 8280: -138.60133,-16.78685 - 8281: -139.62682,-16.273968 - 8282: -140.18413,-16.563858 - 8283: -140.54082,-14.779913 - 8284: -139.71597,-14.490023 - 8285: -140.2956,-15.448893 - 8286: -140.76375,-14.7130165 - 8287: -141.05356,-16.653055 - 8288: -141.76694,-14.512321 - 8289: -141.05356,-13.57575 - 8290: -138.22235,-13.018269 - 8291: -137.91025,-14.378527 - 8292: -137.24146,-14.779913 - 8293: -136.21597,-14.311628 - 8294: -136.32744,-15.493492 - 8295: -136.26056,-15.939478 - 8296: -135.05675,-15.159002 - 8297: -135.10133,-13.821043 - 8298: -134.36566,-13.085167 - 8299: -135.05675,-14.86911 - 8300: -134.2319,-16.273968 - 8301: -133.09496,-16.18477 - 8302: -133.65228,-16.965246 - 8303: -134.81152,-17.188238 - 8304: -135.70325,-16.385464 - 8305: -135.50261,-17.50043 - 8306: -133.42935,-17.879517 - 8307: -131.91344,-16.965246 - 8308: -130.3793,-16.605034 - 8309: -129.2583,-16.939156 - 8310: -130.36256,-18.196701 - 8311: -131.43262,-19.311666 - 8312: -130.8307,-20.002945 - 8313: -130.31798,-19.267069 - 8314: -128.84663,-18.285898 - 8315: -128.37848,-18.664988 - 8316: -129.53772,-18.821083 - 8317: -129.64919,-17.750715 - 8318: -130.58548,-16.97024 - 8319: -130.38486,-16.212063 - 8320: -129.09186,-16.055967 - 8321: -128.06638,-17.416225 - 8322: -127.48676,-18.486593 - 8323: -127.353004,-19.044075 - 8324: -126.90715,-18.152103 - 8325: -126.30524,-19.20017 - 8326: -125.68104,-20.18134 - 8327: -124.92307,-20.49353 - 8328: -125.658745,-20.49353 - 8329: -131.25427,-21.296307 - 8330: -132.36893,-15.759243 - 8331: -131.8339,-14.529509 - 8332: -133.1046,-13.83823 - 8333: -133.95172,-14.395714 - 8334: -134.13007,-13.815931 - 8335: -133.48357,-12.678667 - 8336: -134.44217,-12.232681 - 8337: -135.20013,-11.92049 - 8338: -136.09186,-12.968557 - 8339: -137.16191,-12.567169 - 8340: -136.53772,-11.519102 - 8341: -137.5409,-11.29611 - 8342: -137.58548,-13.459143 - 8343: -138.4995,-13.682135 - 8344: -139.7702,-12.790163 - 8345: -139.36893,-11.92049 - 8346: -140.37212,-12.366476 - 8347: -141.62051,-13.570639 - 8348: -141.93262,-14.529509 - 8349: -140.90714,-15.354584 - 8350: -140.61732,-15.733671 - 8351: -139.92625,-13.659836 - 8352: -139.30205,-13.146952 - 8353: -138.20969,-10.917021 - 8354: -139.41351,-10.544283 - 8355: -139.23517,-8.906668 - 8356: -138.1428,-7.947798 - 8357: -137.74153,-9.531049 - 8358: -138.03134,-10.200027 - 8359: -137.11732,-9.687143 - 8360: -137.71924,-8.5052805 - 8361: -138.54408,-8.170791 - 8362: -139.23517,-7.390315 - 8363: -140.0823,-6.9666286 - 8364: -139.19058,-6.074656 - 8365: -139.83708,-5.3833776 - 8366: -140.63963,-4.8927927 - 8367: -137.853,-6.8370523 - 8368: -137.09505,-8.576398 - 8369: -139.93727,-1.1342988 - 8370: -139.02327,-0.532217 - 8371: -140.98505,-0.019333363 - 8372: -139.2462,0.09216356 - 8373: -138.53282,-1.111999 - 8374: -137.50734,-1.1565976 - 8375: -136.59332,-0.9336047 - 8376: -138.13155,-2.1154675 - 8377: -134.89906,-0.9336047 - 8378: -131.81136,-2.8453088 - 8379: -132.07887,-3.358193 - 8380: -131.52155,-4.517757 - 8381: -130.60754,-4.495457 - 8382: -130.69672,-5.164437 - 8383: -131.92282,-5.275933 - 8384: -131.63301,-5.0752397 - 8385: -131.63301,-6.5692925 - 8386: -130.0948,-6.212504 - 8387: -129.4706,-5.275933 - 8388: -128.66805,-5.4097285 - 8389: -130.80818,-6.078708 - 8390: -130.71901,-6.8814836 - 8391: -130.1171,-7.884952 - 8392: -128.84639,-6.613891 - 8393: -128.48972,-6.1456065 - 8394: -127.553406,-6.4800954 - 8395: -126.52793,-6.413198 - 8396: -128.93556,-8.241741 - 8397: -131.16487,-8.375536 - 8398: -131.63301,-8.776924 - 8399: -132.14575,-9.468203 - 8400: -130.47379,-10.270977 - 8401: -129.89417,-9.490501 - 8402: -129.49289,-8.866121 - 8403: -128.64575,-10.047985 - 8404: -130.18398,-10.159481 - 8405: -131.14256,-10.783863 - 8406: -129.69353,-10.650066 - 8407: -127.75404,-9.156012 - 8408: -126.52793,-9.089115 - 8409: -128.91327,-9.245209 - 8410: -127.12984,-7.661959 - 8411: -126.260414,-6.948381 - 8412: -126.23812,-7.059878 - 8413: -126.840034,-6.01181 - 8414: -129.58516,-11.835684 - 8415: -128.8495,-12.638458 - 8416: -127.801735,-12.058677 - 8417: -126.70937,-10.02944 - 8418: -125.12657,-9.471957 - 8419: -126.352684,-10.720718 - 8420: -127.288994,-11.634991 - 8421: -126.575615,-11.3228 - 8422: -125.17116,-11.032909 - 8423: -126.865425,-13.106745 - 8424: -126.97689,-13.664227 - 8425: -125.61702,-14.132513 - 8426: -124.21256,-12.593861 - 8427: -123.87817,-11.211304 - 8428: -122.29536,-11.144405 - 8429: -121.91638,-12.237072 - 8430: -123.54377,-12.972948 - 8431: -122.67434,-13.686525 - 8432: -121.648865,-11.835684 - 8433: -123.87817,-10.36393 - 8434: -125.41638,-10.67612 - 8435: -124.97052,-9.182066 - 8436: -122.11702,-8.646883 - 8437: -120.37817,-8.669182 - 8438: -120.91319,-9.917944 - 8439: -122.31765,-10.297031 - 8440: -120.98007,-10.943712 - 8441: -119.6202,-9.628053 - 8442: -118.9737,-9.672651 - 8443: -120.17753,-10.67612 - 8444: -120.24441,-10.98831 - 8445: -121.44823,-9.449657 - 8446: -121.715744,-8.847576 - 8447: -121.40364,-12.348568 - 8448: -122.02785,-13.129044 - 8449: -124.32403,-13.708826 - 8450: -125.26033,-14.600798 - 8451: -125.371796,-15.381273 - 8452: -124.1011,-15.938757 - 8453: -122.76351,-14.734594 - 8454: -121.225296,-14.288607 - 8455: -122.38453,-15.51507 - 8456: -123.49918,-16.050253 - 8457: -122.51829,-16.830729 - 8458: -121.33676,-15.738062 - 8459: -121.73804,-12.950649 - 8460: -121.225296,-12.259371 - 8461: -122.495995,-15.581966 - 8462: -123.588356,-16.674633 - 8463: -122.07243,-17.14292 - 8464: -120.91319,-16.050253 - 8465: -119.26351,-16.050253 - 8466: -121.09154,-17.009123 - 8467: -122.25077,-17.923395 - 8468: -121.359055,-18.659271 - 8469: -120.04377,-17.321314 - 8470: -119.285805,-16.451641 - 8471: -118.57243,-16.897627 - 8472: -121.58556,-18.766079 - 8473: -121.58556,-18.498486 - 8474: -120.15881,-17.004433 - 8475: -118.55372,-16.402351 - 8476: -117.08238,-16.603045 - 8477: -118.86582,-17.517317 - 8478: -118.2862,-18.654581 - 8479: -117.19385,-17.004433 - 8480: -117.06009,-16.045563 - 8481: -116.56964,-17.807207 - 8482: -118.888115,-19.167465 - 8483: -119.891304,-19.903343 - 8484: -119.93589,-20.63922 - 8485: -118.13015,-20.148636 - 8486: -117.08238,-18.186296 - 8487: -116.14608,-17.874105 - 8488: -117.77347,-20.081738 - 8489: -119.33398,-21.375097 - 8490: -119.62379,-22.24477 - 8491: -117.72888,-21.798784 - 8492: -116.23525,-20.148636 - 8493: -115.36582,-20.28243 - 8494: -118.6206,-22.021778 - 8495: -118.64289,-22.668457 - 8496: -117.77347,-23.426634 - 8497: -116.50277,-22.824553 - 8498: -115.49958,-21.709587 - 8499: -115.07601,-20.393927 - 8500: -116.14608,-22.512363 - 8501: -117.3499,-22.155573 - 8502: -116.43589,-20.683819 - 8503: -115.52187,-19.435057 - 8504: -116.257545,-17.918705 - 8505: -114.40722,-17.784908 - 8506: -116.27984,-17.182827 - 8507: -113.13334,-20.706118 - 8508: -109.23206,-18.38699 - 8509: -109.165184,-18.453888 - 8510: -109.54417,-18.98907 - 8511: -108.7862,-17.918705 - 8512: -107.69385,-17.71801 - 8513: -106.95818,-16.892937 - 8514: -106.62379,-16.13476 - 8515: -106.13334,-16.75914 - 8516: -106.824425,-16.090162 - 8517: -105.70977,-15.086693 - 8518: -104.974106,-15.131292 - 8519: -105.17474,-16.000965 - 8520: -105.97729,-15.488081 - 8521: -105.531425,-15.019794 - 8522: -105.48684,-15.488081 - 8523: -105.888115,-15.867168 - 8524: -106.73525,-15.198189 - 8525: -98.51019,-12.9498825 - 8526: -99.42421,-13.150578 - 8527: -99.82548,-13.819557 - 8528: -100.315926,-13.440468 - 8529: -100.18217,-12.236305 - 8530: -101.029305,-11.701121 - 8531: -101.16306,-12.860685 - 8532: -101.675804,-11.366632 - 8533: -103.12484,-11.478128 - 8534: -103.39236,-11.165938 - 8535: -104.06115,-9.894877 - 8536: -105.01975,-10.430061 - 8537: -106.42421,-10.630755 - 8538: -106.26816,-9.448892 - 8539: -105.376434,-8.289328 - 8540: -105.39873,-7.6426477 - 8541: -107.092995,-7.9102397 - 8542: -108.22994,-7.9771376 - 8543: -107.69491,-7.107465 - 8544: -106.55797,-5.769506 - 8545: -105.599365,-5.6580095 - 8546: -105.309555,-6.839873 - 8547: -106.42421,-7.0851655 - 8548: -106.89236,-6.2377915 - 8549: -105.309555,-5.546513 - 8550: -105.8,-4.565344 - 8551: -106.7586,-5.2343225 - 8552: -108.675804,-6.28239 - 8553: -109.27771,-7.2412605 - 8554: -109.12166,-7.932539 - 8555: -107.33822,-5.5911117 - 8556: -107.80637,-3.6510725 - 8557: -106.69172,-3.0489912 - 8558: -105.042046,-4.2977514 - 8559: -104.28408,-4.743738 - 8560: -103.86051,-3.5618753 - 8561: -104.84141,-5.6803093 - 8562: -107.75409,-2.8036985 - 8563: -109.200325,-2.848297 - 8564: -109.66949,-4.766038 - 8565: -111.809616,-4.6991396 - 8566: -112.09942,-5.167425 - 8567: -110.8956,-6.059397 - 8568: -111.47522,-6.6614785 - 8569: -113.41471,-6.639179 - 8570: -112.656746,-4.67684 - 8571: -111.87649,-3.8294668 - 8572: -112.12171,-5.5688124 - 8573: -111.78732,-5.9924994 - 8574: -114.32872,-7.843342 - 8575: -114.93063,-7.5534506 - 8576: -114.84146,-6.995968 - 8577: -102.82661,-2.0970006 - 8578: -104.11927,-2.030035 - 8579: -105.56831,-2.8551092 - 8580: -106.61608,-3.3902926 - 8581: -107.284874,-3.2787962 - 8582: -107.10653,-3.568687 - 8583: -109.09061,-2.8997078 - 8584: -108.26577,-3.2303352 - 8585: -117.87419,-9.491268 - 8586: -118.394356,-9.966988 - 8587: -119.19691,-10.041318 - 8588: -119.910286,-10.056185 - 8589: -120.05891,-9.075014 - 8590: -95.94624,-16.944057 - 8591: -96.726494,-16.743362 - 8592: -96.90484,-17.858328 - 8593: -96.83796,-18.12592 - 8594: -97.64051,-17.590736 - 8595: -98.465355,-16.83256 - 8596: -99.13414,-16.83256 - 8597: -98.86662,-17.902927 - 8598: -98.04179,-18.728 - 8599: -98.108665,-18.884096 - 8600: -98.86662,-18.081322 - 8601: -97.93032,-17.345444 - 8602: -97.15006,-17.18935 - 8603: -99.42395,-17.880629 - 8604: -100.11503,-17.858328 - 8605: -100.76153,-18.10362 - 8606: -100.82841,-18.817198 - 8607: -99.93669,-19.41928 - 8608: -100.27108,-19.664572 - 8609: -101.05134,-20.177456 - 8610: -100.159615,-20.489647 - 8611: -98.22013,-19.553076 - 8612: -97.0386,-19.285484 - 8613: -97.6851,-20.222055 - 8614: -98.955795,-20.601143 - 8615: -97.84115,-21.06943 - 8616: -97.28382,-20.043661 - 8617: -96.61503,-20.333551 - 8618: -96.458984,-21.381618 - 8619: -95.812485,-21.114027 - 8620: -96.949425,-21.604612 - 8621: -97.64051,-22.541183 - 8622: -97.48446,-22.875671 - 8623: -99.40166,-21.493116 - 8624: -99.84752,-20.69034 - 8625: -100.8507,-20.73494 - 8626: -100.71694,-21.649212 - 8627: -100.672356,-22.65268 - 8628: -101.22968,-22.98717 - 8629: -99.62459,-22.474285 - 8630: -99.46854,-20.422749 - 8631: -100.2042,-19.508478 - 8632: -100.36025,-19.240885 - 8633: -100.89529,-19.642273 - 8634: -101.318855,-18.594206 - 8635: -101.00675,-17.791431 - 8636: -98.62141,-21.783007 - 8637: -99.04497,-22.98717 - 8638: -98.82204,-23.656149 - 8639: -97.9972,-23.009468 - 8640: -97.21694,-23.031769 - 8641: -97.77427,-24.280529 - 8642: -99.78064,-25.061005 - 8643: -100.71694,-24.414326 - 8644: -100.33796,-23.723045 - 8645: -98.465355,-24.86031 - 8646: -98.22013,-25.52929 - 8647: -97.57363,-26.153671 - 8648: -96.86025,-25.038706 - 8649: -96.30293,-25.061005 - 8650: -96.97172,-25.84148 - 8651: -97.3507,-26.778051 - 8652: -96.86025,-27.201738 - 8653: -98.22013,-27.067944 - 8654: -99.22331,-26.465862 - 8655: -99.75835,-26.82265 - 8656: -99.51312,-27.424732 - 8657: -98.3093,-26.421263 - 8658: -97.43987,-25.350895 - 8659: -97.99627,-29.207638 - 8660: -97.3603,-28.826252 - 8661: -96.40115,-28.14492 - 8662: -97.2037,-27.899628 - 8663: -98.22918,-28.590908 - 8664: -98.87568,-28.100323 - 8665: -99.96803,-29.549778 - 8666: -99.29924,-30.285654 - 8667: -98.050835,-29.906567 - 8668: -96.95847,-29.661274 - 8669: -96.40115,-30.530947 - 8670: -98.407524,-31.06613 - 8671: -98.74192,-31.73511 - 8672: -98.45211,-32.203396 - 8673: -97.24828,-31.556715 - 8674: -96.624084,-31.289124 - 8675: -97.44892,-32.33719 - 8676: -98.29606,-32.916973 - 8677: -98.02854,-33.675148 - 8678: -97.22599,-33.162266 - 8679: -97.09223,-33.63055 - 8680: -98.43606,-34.70005 - 8681: -98.90445,-34.777775 - 8682: -98.32483,-35.357983 - 8683: -97.4777,-34.7336 - 8684: -96.78661,-35.335682 - 8685: -97.99043,-35.78167 - 8686: -99.216545,-35.960064 - 8687: -99.75158,-36.183056 - 8688: -100.10827,-35.78167 - 8689: -98.32483,-37.03043 - 8690: -97.165596,-36.829735 - 8691: -96.296165,-35.78167 - 8692: -96.006355,-36.584442 - 8693: -97.32165,-37.231125 - 8694: -98.90445,-36.785137 - 8695: -100.71018,-37.09733 - 8696: -101.06687,-37.810905 - 8697: -101.022285,-38.94817 - 8698: -102.27069,-39.126564 - 8699: -102.716545,-39.527954 - 8700: -100.55413,-40.419926 - 8701: -99.84075,-40.152332 - 8702: -99.41718,-40.19693 - 8703: -100.84394,-41.1558 - 8704: -99.015915,-41.088905 - 8705: -97.1433,-39.773247 - 8706: -96.60827,-38.94817 - 8707: -96.74203,-37.587914 - 8708: -96.40763,-37.36492 - 8709: -96.74203,-38.59138 - 8710: -95.80572,-39.03737 - 8711: -94.98088,-38.61368 - 8712: -95.09235,-37.833206 - 8713: -96.05094,-36.985832 - 8714: -96.875786,-35.78167 - 8715: -95.73884,-35.558674 - 8716: -98.34506,-36.157757 - 8717: -97.76545,-35.459045 - 8718: -99.60834,-36.9754 - 8719: -93.92223,-38.92474 - 8720: -95.43815,-39.549118 - 8721: -95.68337,-40.396492 - 8722: -95.08147,-40.730984 - 8723: -96.10694,-41.22157 - 8724: -95.97318,-40.597187 - 8725: -94.97,-40.48569 - 8726: -95.52732,-41.333065 - 8727: -97.778915,-42.626423 - 8728: -97.42223,-43.05011 - 8729: -96.01777,-42.537228 - 8730: -95.23752,-42.31423 - 8731: -95.75025,-43.07241 - 8732: -96.61968,-44.05358 - 8733: -95.75025,-44.34347 - 8734: -94.925415,-43.183907 - 8735: -94.011406,-43.4069 - 8736: -96.2407,-44.231976 - 8737: -97.15472,-43.629894 - 8738: -96.931786,-43.11701 - 8739: -96.129234,-41.578358 - 8740: -96.86491,-42.76022 - 8741: -95.705666,-43.4292 - 8742: -96.352165,-43.340004 - 8743: -98.81155,-42.024345 - 8744: -97.46179,-42.871716 - 8745: -98.19746,-43.585297 - 8746: -97.28345,-44.165077 - 8747: -95.81211,-43.763687 - 8748: -96.703835,-44.811756 - 8749: -96.43632,-45.101646 - 8750: -97.39491,-41.868248 - 8751: -96.66605,-42.09124 - 8752: -94.81239,-45.458958 - 8753: -94.40791,-45.117832 - 8754: -92.81553,-43.765305 - 8755: -93.5512,-45.080963 - 8756: -94.26457,-45.83914 - 8757: -92.70406,-45.995235 - 8758: -101.86108,-37.837097 - 8759: -102.57769,-37.7702 - 8760: -102.08725,-39.01896 - 8761: -102.24329,-39.487244 - 8762: -103.00126,-40.00013 - 8763: -103.8261,-39.64334 - 8764: -103.67005,-38.528374 - 8765: -103.93757,-38.104687 - 8766: -104.96304,-38.30538 - 8767: -106.033104,-38.773666 - 8768: -105.00763,-39.93323 - 8769: -105.00763,-40.62451 - 8770: -105.899345,-40.156223 - 8771: -106.478966,-38.416878 - 8772: -107.03629,-37.881695 - 8773: -108.262405,-38.08239 - 8774: -108.08406,-39.26425 - 8775: -107.08088,-39.442646 - 8776: -107.03629,-38.03779 - 8777: -107.59362,-36.967422 - 8778: -108.396164,-36.766727 - 8779: -108.9312,-37.48031 - 8780: -109.73374,-37.903996 - 8781: -110.02355,-38.63987 - 8782: -109.51081,-38.95206 - 8783: -107.39298,-38.06009 - 8784: -105.72101,-38.149284 - 8785: -116.20562,-36.07545 - 8786: -115.13556,-35.919353 - 8787: -115.46995,-36.566036 - 8788: -115.35849,-36.69983 - 8789: -114.28842,-36.231544 - 8790: -113.70881,-36.07545 - 8791: -114.043205,-36.72213 - 8792: -114.19925,-36.989723 - 8793: -113.15148,-36.36534 - 8794: -112.50498,-36.07545 - 8795: -113.106895,-36.900524 - 8796: -113.90945,-37.814796 - 8797: -113.57505,-37.7256 - 8798: -111.880775,-36.65523 - 8799: -111.56868,-36.878227 - 8800: -112.95084,-38.34998 - 8801: -112.86167,-39.06356 - 8802: -111.14511,-37.859398 - 8803: -110.65466,-37.34651 - 8804: -111.390335,-38.08239 - 8805: -111.30116,-38.66217 - 8806: -112.08141,-37.10122 - 8807: -111.59026,-40.26511 - 8808: -110.92147,-39.506935 - 8809: -110.520195,-38.92715 - 8810: -110.98835,-40.376606 - 8811: -110.43102,-41.067886 - 8812: -107.956505,-39.39544 - 8813: -106.93102,-38.94945 - 8814: -107.376884,-40.17591 - 8815: -108.98199,-41.53617 - 8816: -109.450134,-42.11595 - 8817: -108.246315,-42.338943 - 8818: -106.24898,-41.179382 - 8819: -104.797066,-41.966537 - 8820: -106.88552,-44.19885 - 8821: -105.50106,-42.88643 - 8822: -104.68668,-42.61892 - 8823: -105.556114,-43.60009 - 8824: -106.38095,-43.042606 - 8825: -107.16121,-41.927643 - 8826: -108.38732,-43.064907 - 8827: -106.71535,-42.440525 - 8828: -106.82681,-44.804253 - 8829: -105.89051,-45.004948 - 8830: -103.81726,-44.023777 - 8831: -102.61344,-44.291367 - 8832: -103.79497,-45.339436 - 8833: -104.50834,-45.629326 - 8834: -105.62299,-45.986115 - 8835: -103.92873,-46.4098 - 8836: -102.92554,-46.610497 - 8837: -104.3077,-47.011883 - 8838: -104.6421,-47.257175 - 8839: -104.842735,-44.87115 - 8840: -103.54974,-45.16104 - 8841: -102.99242,-44.402866 - 8842: -104.263115,-43.198704 - 8843: -102.836365,-42.908813 - 8844: -103.97331,-41.45936 - 8845: -103.08159,-40.901875 - 8846: -103.57721,-47.89467 - 8847: -102.41798,-47.712753 - 8848: -101.7046,-46.66469 - 8849: -101.03581,-46.151802 - 8850: -101.63772,-47.19987 - 8851: -101.548546,-47.824253 - 8852: -100.34473,-47.93575 - 8853: -100.255554,-48.470932 - 8854: -101.30333,-49.340607 - 8855: -100.72371,-49.964985 - 8856: -99.67594,-49.340607 - 8857: -98.71734,-49.318306 - 8858: -99.83199,-50.07648 - 8859: -100.38931,-50.633965 - 8860: -98.49441,-50.79006 - 8861: -97.73645,-50.12108 - 8862: -97.51352,-50.410973 - 8863: -98.89568,-51.19145 - 8864: -97.624985,-50.879257 - 8865: -95.908424,-49.741993 - 8866: -95.3511,-49.4967 - 8867: -96.33199,-50.990753 - 8868: -97.335175,-52.15032 - 8869: -95.64091,-51.905025 - 8870: -94.16957,-51.302944 - 8871: -93.50078,-51.07995 - 8872: -94.838356,-51.838127 - 8873: -95.59632,-51.369843 - 8874: -96.51034,-51.659733 - 8875: -95.841545,-50.23258 - 8876: -96.33199,-49.630497 - 8877: -95.68549,-48.82772 - 8878: -94.57084,-49.697395 - 8879: -96.10906,-47.995598 - 8880: -95.93072,-47.019436 - 8881: -94.94982,-46.729546 - 8882: -96.08677,-46.573452 - 8883: -95.328804,-45.28009 - 8884: -94.2343,-46.01695 - 8885: -92.9781,-46.85517 - 8886: -92.438255,-46.699066 - 8887: -91.27902,-44.98202 - 8888: -90.0752,-44.35764 - 8889: -91.078384,-45.561802 - 8890: -91.368195,-44.04545 - 8891: -91.234436,-43.30957 - 8892: -91.63571,-42.81899 - 8893: -92.148445,-43.867054 - 8894: -90.54335,-43.889355 - 8895: -93.85421,-43.606403 - 8896: -92.763535,-50.769295 - 8897: -92.919586,-50.289978 - 8898: -90.24443,-49.041218 - 8899: -89.419586,-49.018917 - 8900: -91.06927,-49.108116 - 8901: -91.470535,-47.39085 - 8902: -91.45736,-47.50161 - 8903: -90.49876,-46.76573 - 8904: -91.925514,-48.08139 - 8905: -90.409584,-47.7246 - 8906: -89.96372,-47.167118 - 8907: -90.32041,-45.650764 - 8908: -89.33952,-44.89259 - 8909: -88.51469,-44.914886 - 8910: -89.54016,-45.896057 - 8911: -89.02742,-45.896057 - 8912: -87.97965,-44.714195 - 8913: -87.22169,-44.357407 - 8914: -87.02105,-45.16018 - 8915: -88.02424,-46.096752 - 8916: -88.53698,-47.211716 - 8917: -87.779015,-47.14482 - 8918: -86.552895,-45.985256 - 8919: -86.062454,-45.76226 - 8920: -85.9064,-46.297447 - 8921: -87.37774,-47.657703 - 8922: -88.158,-48.08139 - 8923: -88.358635,-48.46048 - 8924: -86.842705,-48.036793 - 8925: -85.86182,-47.39011 - 8926: -85.126144,-47.345512 - 8927: -86.50831,-48.192886 - 8928: -86.865,-49.06256 - 8929: -86.062454,-49.04026 - 8930: -85.39366,-48.259785 - 8931: -84.88093,-48.14829 - 8932: -85.282196,-49.196354 - 8933: -86.10704,-50.110626 - 8934: -86.64207,-50.75731 - 8935: -85.79494,-50.467415 - 8936: -84.25672,-49.486244 - 8937: -84.03379,-50.155228 - 8938: -85.61659,-51.158695 - 8939: -86.59748,-51.760777 - 8940: -87.37774,-52.407455 - 8941: -86.39685,-52.764244 - 8942: -85.37137,-52.139862 - 8943: -84.47965,-52.095264 - 8944: -85.349075,-52.80884 - 8945: -87.55608,-53.098732 - 8946: -88.80449,-53.031837 - 8947: -89.428696,-49.664642 - 8948: -82.95196,-47.566757 - 8949: -84.2951,-46.825096 - 8950: -84.718666,-46.7136 - 8951: -82.489365,-48.54214 - 8952: -81.50848,-48.051556 - 8953: -80.416115,-47.159584 - 8954: -81.97663,-45.777027 - 8955: -81.1072,-48.720535 - 8956: -80.482994,-49.746304 - 8957: -79.12312,-48.675938 - 8958: -77.74096,-48.051556 - 8959: -86.57513,-44.145893 - 8960: -85.791595,-44.409042 - 8961: -86.28204,-43.11568 - 8962: -87.61962,-43.918457 - 8963: -88.46676,-43.918457 - 8964: -85.1674,-42.045315 - 8965: -84.69924,-40.350567 - 8966: -84.09733,-40.863453 - 8967: -85.43491,-42.424404 - 8968: -84.96676,-42.89269 - 8969: -85.858475,-41.398636 - 8970: -85.10052,-40.32827 - 8971: -83.74064,-39.703888 - 8972: -83.2502,-40.350567 - 8973: -84.141914,-41.66623 - 8974: -83.02727,-42.000717 - 8975: -82.53682,-40.93035 - 8976: -81.9795,-41.26484 - 8977: -82.40306,-41.956116 - 8978: -81.24383,-42.023018 - 8979: -80.641914,-41.19794 - 8980: -79.61644,-40.082977 - 8981: -80.41898,-38.96801 - 8982: -81.578224,-39.793083 - 8983: -82.715164,-39.614693 - 8984: -81.77886,-38.70042 - 8985: -81.444466,-37.563156 - 8986: -82.11326,-37.94224 - 8987: -81.46676,-39.3471 - 8988: -81.60052,-39.3471 - 8989: -83.004974,-38.34363 - 8990: -83.562294,-37.206367 - 8991: -84.03045,-37.875343 - 8992: -83.8744,-38.722717 - 8993: -82.69287,-37.34016 - 8994: -82.6037,-36.38129 - 8995: -83.2502,-35.51162 - 8996: -82.18014,-35.355522 - 8997: -83.91898,-36.0914 - 8998: -81.6451,-35.13253 - 8999: -80.575035,-35.11023 - 9000: -81.511345,-35.913006 - 9001: -80.73109,-36.44819 - 9002: -80.61962,-35.533916 - 9003: -80.352104,-36.73808 - 9004: -79.99542,-37.273262 - 9005: -79.081406,-37.607754 - 9006: -79.17058,-38.455128 - 9007: -79.61644,-39.213303 - 9008: -78.43491,-39.101807 - 9009: -77.74383,-38.96801 - 9010: -79.504974,-39.3471 - 9011: -80.39669,-40.105274 - 9012: -79.01453,-40.95265 - 9013: -79.19287,-41.24254 - 9014: -80.70879,-41.86692 - 9015: -80.66421,-42.6251 - 9016: -78.54638,-41.84462 - 9017: -78.590965,-42.335205 - 9018: -79.19287,-43.11568 - 9019: -77.05274,-42.91499 - 9020: -76.94128,-43.51707 - 9021: -77.431725,-44.52054 - 9022: -77.5209,-45.10032 - 9023: -77.96676,-45.43481 - 9024: -77.008156,-45.7247 - 9025: -75.9158,-44.18605 - 9026: -75.20243,-44.029953 - 9027: -76.004974,-45.05572 - 9028: -75.715164,-46.505177 - 9029: -76.916985,-46.611225 - 9030: -75.3185,-45.691654 - 9031: -74.582825,-45.22337 - 9032: -73.4013,-45.13417 - 9033: -73.62423,-45.691654 - 9034: -73.735695,-46.316036 - 9035: -73.26754,-46.739723 - 9036: -72.509575,-46.449833 - 9037: -71.8185,-45.647057 - 9038: -73.089195,-45.000378 - 9039: -74.82805,-47.564796 - 9040: -76.38856,-47.16341 - 9041: -76.5669,-47.943886 - 9042: -75.20703,-48.166878 - 9043: -74.51595,-48.18918 - 9044: -75.3185,-48.72436 - 9045: -75.49684,-49.192646 - 9046: -74.47137,-50.41911 - 9047: -76.18792,-50.7313 - 9048: -77.302574,-50.04002 - 9049: -76.522316,-48.835857 - 9050: -76.76754,-48.41217 - 9051: -76.92359,-49.66093 - 9052: -77.72614,-50.597504 - 9053: -78.61786,-49.68323 - 9054: -78.41722,-48.322975 - 9055: -78.64015,-47.966187 - 9056: -79.15289,-48.813557 - 9057: -80.379005,-49.75013 - 9058: -81.13697,-49.616333 - 9059: -78.8185,-50.575203 - 9060: -78.46181,-50.263012 - 9061: -80.022316,-51.199585 - 9062: -80.60194,-52.203053 - 9063: -81.092384,-52.693638 - 9064: -81.78346,-53.29572 - 9065: -81.605125,-53.8755 - 9066: -80.512764,-53.340317 - 9067: -79.7548,-52.448345 - 9068: -79.55416,-53.630207 - 9069: -79.39812,-54.745174 - 9070: -79.4427,-54.990467 - 9071: -77.07964,-53.8755 - 9072: -77.302574,-52.225353 - 9073: -77.05735,-51.22188 - 9074: -77.97137,-53.117325 - 9075: -78.12742,-53.652508 - 9076: -76.812126,-53.028126 - 9077: -76.09875,-52.515244 - 9078: -76.16563,-53.22882 - 9079: -75.742065,-53.184223 - 9080: -76.32168,-51.823963 - 9081: -75.519135,-51.199585 - 9082: -75.25162,-50.196114 - 9083: -74.939514,-49.549435 - 9084: -74.56054,-49.01425 - 9085: -73.958626,-48.76896 - 9086: -74.00321,-49.883926 - 9087: -72.06372,-48.79126 - 9088: -71.55098,-47.966187 - 9089: -70.68156,-47.921585 - 9090: -71.84079,-48.43447 - 9091: -73.04461,-46.49443 - 9092: -72.308945,-47.118813 - 9093: -74.13697,-46.226837 - 9094: -72.95544,-51.02119 - 9095: -74.538246,-52.203053 - 9096: -74.382195,-52.738235 - 9097: -73.4013,-51.69017 - 9098: -72.64333,-51.712467 - 9099: -73.668816,-52.827435 - 9100: -73.35671,-53.20652 - 9101: -72.48728,-52.55984 - 9102: -71.952255,-52.60444 - 9103: -73.17837,-53.786304 - 9104: -73.91404,-54.455284 - 9105: -74.025505,-55.23576 - 9106: -75.162445,-55.659447 - 9107: -76.12104,-55.21346 - 9108: -77.10194,-55.23576 - 9109: -75.11786,-54.54448 - 9110: -74.649704,-54.812073 - 9111: -75.96499,-56.39532 - 9112: -74.025505,-56.038532 - 9113: -72.64333,-55.949337 - 9114: -71.61786,-53.51871 - 9115: -70.50321,-52.98353 - 9116: -71.28346,-54.34379 - 9117: -72.82168,-56.283825 - 9118: -72.308945,-57.1535 - 9119: -71.26117,-56.016235 - 9120: -70.72614,-55.414154 - 9121: -72.175186,-55.72634 - 9122: -71.61786,-54.745174 - 9123: -73.04461,-54.94587 - 9124: -71.23888,-52.715935 - 9125: -70.8599,-51.757065 - 9126: -69.85671,-51.37798 - 9127: -70.36945,-52.136154 - 9128: -71.172,-49.817028 - 9129: -72.019135,-50.240715 - 9130: -73.02054,-57.05329 - 9131: -70.74665,-57.187088 - 9132: -69.40907,-56.45121 - 9133: -68.60653,-55.024055 - 9134: -68.584236,-56.13902 - 9135: -69.81035,-56.607304 - 9136: -69.9441,-56.808 - 9137: -69.36449,-55.893726 - 9138: -69.18614,-54.622665 - 9139: -69.67659,-54.332775 - 9140: -70.635185,-55.09095 - 9141: -70.055565,-54.399673 - 9142: -69.60971,-53.329308 - 9143: -68.76257,-52.81642 - 9144: -69.11926,-53.5746 - 9145: -70.52372,-53.75299 - 9146: -69.74347,-53.373905 - 9147: -68.02691,-53.5523 - 9148: -67.60334,-53.351604 - 9149: -66.845375,-52.01365 - 9150: -66.555565,-52.682625 - 9151: -67.60334,-53.819893 - 9152: -67.15748,-54.555767 - 9153: -66.39952,-53.596897 - 9154: -66.221176,-53.10631 - 9155: -65.95366,-53.90909 - 9156: -65.73073,-54.243576 - 9157: -65.32945,-54.622665 - 9158: -66.57786,-55.247047 - 9159: -67.424995,-55.626137 - 9160: -66.97913,-56.183617 - 9161: -65.95366,-55.69303 - 9162: -65.26257,-55.670734 - 9163: -66.24347,-56.11672 - 9164: -67.714806,-54.912556 - 9165: -68.071495,-54.48887 - 9166: -67.96003,-57.446865 - 9167: -68.33901,-58.032066 - 9168: -66.82308,-58.098965 - 9169: -66.421814,-57.340786 - 9170: -69.07468,-58.098965 - 9171: -68.94092,-57.496883 - 9172: -68.49506,-56.761005 - 9173: -68.004616,-56.515713 - 9174: -67.358116,-58.21046 - 9175: -66.815,-57.184692 - 9176: -66.52519,-58.65645 - 9177: -65.61118,-58.411156 - 9178: -64.63029,-57.22929 - 9179: -64.00609,-56.9171 - 9180: -64.5857,-57.89827 - 9181: -65.00927,-58.52265 - 9182: -64.49653,-58.79024 - 9183: -63.582516,-57.719875 - 9184: -63.136654,-56.448814 - 9185: -63.939205,-55.200054 - 9186: -64.13985,-55.155457 - 9187: -62.93602,-54.64257 - 9188: -65.03156,-53.549904 - 9189: -64.80863,-52.903225 - 9190: -65.29908,-51.944355 - 9191: -66.63666,-51.877457 - 9192: -67.90736,-51.83286 - 9193: -66.815,-51.007786 + 8165: -119.99861,-39.37801 + 8166: -120.0432,-37.014282 + 8167: -119.7311,-36.835888 + 8168: -120.890335,-38.865128 + 8169: -122.82983,-38.10695 + 8170: -122.07186,-36.969685 + 8171: -120.62282,-39.31111 + 8172: -119.173775,-38.68673 + 8173: -118.50498,-38.820526 + 8174: -121.58141,-39.823997 + 8175: -122.094154,-40.80517 + 8176: -120.22154,-40.69367 + 8177: -118.61645,-39.489506 + 8178: -118.817085,-40.314583 + 8179: -119.61964,-40.80517 + 8180: -118.28205,-40.80517 + 8181: -119.7311,-39.957794 + 8182: -123.186516,-41.161957 + 8183: -118.34893,-39.40031 + 8184: -119.61964,-37.79476 + 8185: -117.63556,-40.314583 + 8186: -116.78842,-40.35918 + 8187: -118.03683,-41.719437 + 8188: -117.85848,-42.499912 + 8189: -116.76613,-41.29575 + 8190: -116.387146,-41.429546 + 8191: -116.89989,-42.767506 + 8192: -115.963585,-43.481083 + 8193: -117.0606,-41.770844 + 8194: -117.66251,-43.64399 + 8195: -115.945946,-42.66282 + 8196: -114.98735,-42.484425 + 8197: -115.32175,-44.045376 + 8198: -114.49691,-44.469063 + 8199: -114.14022,-42.95271 + 8200: -113.516014,-43.82238 + 8201: -114.34086,-44.60286 + 8202: -113.35996,-44.692055 + 8203: -112.93639,-43.933876 + 8204: -112.71346,-44.848152 + 8205: -112.93639,-45.963116 + 8206: -111.955505,-45.606327 + 8207: -111.24213,-45.450233 + 8208: -110.952324,-46.475998 + 8209: -111.13066,-46.877388 + 8210: -109.367805,-47.808216 + 8211: -106.91558,-49.882053 + 8212: -106.67036,-50.61793 + 8213: -107.1608,-50.751724 + 8214: -106.62577,-51.130814 + 8215: -105.42194,-50.97472 + 8216: -104.64169,-51.822094 + 8217: -105.77863,-52.691765 + 8218: -105.33277,-53.16005 + 8219: -104.03978,-52.178883 + 8220: -103.54933,-52.937057 + 8221: -104.775444,-54.14122 + 8222: -104.48564,-54.943996 + 8223: -103.52704,-54.029724 + 8224: -103.081184,-53.47224 + 8225: -104.10666,-53.85133 + 8226: -103.504745,-55.14469 + 8227: -101.94424,-53.91823 + 8228: -103.05889,-55.79137 + 8229: -105.04296,-54.877098 + 8230: -104.218124,-56.63874 + 8231: -103.928314,-57.173927 + 8232: -104.1416,-57.837513 + 8233: -122.03457,-24.95616 + 8234: -123.728836,-24.95616 + 8235: -124.35304,-24.04189 + 8236: -123.66196,-23.149916 + 8237: -124.04094,-22.614733 + 8238: -124.64285,-23.172215 + 8239: -123.929474,-24.04189 + 8240: -124.999535,-24.175684 + 8241: -125.289345,-23.216814 + 8242: -124.46451,-21.878855 + 8243: -125.40081,-21.299072 + 8244: -126.00272,-22.391739 + 8245: -126.27024,-23.37291 + 8246: -125.646034,-23.439808 + 8247: -125.04412,-22.03495 + 8248: -126.11419,-21.142979 + 8249: -126.67152,-24.220284 + 8250: -128.0091,-24.175684 + 8251: -129.43584,-24.197983 + 8252: -129.12373,-25.023056 + 8253: -130.32756,-24.822365 + 8254: -130.81801,-23.908092 + 8255: -132.44972,-23.707397 + 8256: -132.12096,-19.314434 + 8257: -131.27382,-20.652393 + 8258: -131.6528,-21.878855 + 8259: -133.81522,-19.961115 + 8260: -133.8821,-19.336733 + 8261: -132.74515,-19.381332 + 8262: -132.32158,-20.540895 + 8263: -132.21013,-21.232174 + 8264: -138.20766,-20.709616 + 8265: -138.62363,-20.06485 + 8266: -137.1077,-18.949884 + 8267: -137.06311,-19.997952 + 8268: -137.24146,-18.570795 + 8269: -137.88795,-17.968714 + 8270: -137.21916,-16.719954 + 8271: -137.35292,-18.214006 + 8272: -137.62044,-19.551966 + 8273: -139.0249,-17.522728 + 8274: -139.62682,-18.838387 + 8275: -139.53764,-18.280905 + 8276: -138.60133,-16.78685 + 8277: -139.62682,-16.273968 + 8278: -140.18413,-16.563858 + 8279: -140.54082,-14.779913 + 8280: -139.71597,-14.490023 + 8281: -140.2956,-15.448893 + 8282: -140.76375,-14.7130165 + 8283: -141.05356,-16.653055 + 8284: -141.76694,-14.512321 + 8285: -141.05356,-13.57575 + 8286: -138.22235,-13.018269 + 8287: -137.91025,-14.378527 + 8288: -137.24146,-14.779913 + 8289: -136.21597,-14.311628 + 8290: -136.32744,-15.493492 + 8291: -136.26056,-15.939478 + 8292: -135.05675,-15.159002 + 8293: -135.10133,-13.821043 + 8294: -134.36566,-13.085167 + 8295: -135.05675,-14.86911 + 8296: -134.2319,-16.273968 + 8297: -133.09496,-16.18477 + 8298: -133.65228,-16.965246 + 8299: -134.81152,-17.188238 + 8300: -135.70325,-16.385464 + 8301: -135.50261,-17.50043 + 8302: -133.42935,-17.879517 + 8303: -131.91344,-16.965246 + 8304: -130.3793,-16.605034 + 8305: -129.2583,-16.939156 + 8306: -130.36256,-18.196701 + 8307: -131.43262,-19.311666 + 8308: -130.8307,-20.002945 + 8309: -130.31798,-19.267069 + 8310: -128.84663,-18.285898 + 8311: -128.37848,-18.664988 + 8312: -129.53772,-18.821083 + 8313: -129.64919,-17.750715 + 8314: -130.58548,-16.97024 + 8315: -130.38486,-16.212063 + 8316: -129.09186,-16.055967 + 8317: -128.06638,-17.416225 + 8318: -127.48676,-18.486593 + 8319: -127.353004,-19.044075 + 8320: -126.90715,-18.152103 + 8321: -126.30524,-19.20017 + 8322: -125.68104,-20.18134 + 8323: -124.92307,-20.49353 + 8324: -125.658745,-20.49353 + 8325: -131.25427,-21.296307 + 8326: -132.36893,-15.759243 + 8327: -131.8339,-14.529509 + 8328: -133.1046,-13.83823 + 8329: -133.95172,-14.395714 + 8330: -134.13007,-13.815931 + 8331: -133.48357,-12.678667 + 8332: -134.44217,-12.232681 + 8333: -135.20013,-11.92049 + 8334: -136.09186,-12.968557 + 8335: -137.16191,-12.567169 + 8336: -136.53772,-11.519102 + 8337: -137.5409,-11.29611 + 8338: -137.58548,-13.459143 + 8339: -138.4995,-13.682135 + 8340: -139.7702,-12.790163 + 8341: -139.36893,-11.92049 + 8342: -140.37212,-12.366476 + 8343: -141.62051,-13.570639 + 8344: -141.93262,-14.529509 + 8345: -140.90714,-15.354584 + 8346: -140.61732,-15.733671 + 8347: -139.92625,-13.659836 + 8348: -139.30205,-13.146952 + 8349: -138.20969,-10.917021 + 8350: -139.41351,-10.544283 + 8351: -139.23517,-8.906668 + 8352: -138.1428,-7.947798 + 8353: -137.74153,-9.531049 + 8354: -138.03134,-10.200027 + 8355: -137.11732,-9.687143 + 8356: -137.71924,-8.5052805 + 8357: -138.54408,-8.170791 + 8358: -139.23517,-7.390315 + 8359: -140.0823,-6.9666286 + 8360: -139.19058,-6.074656 + 8361: -139.83708,-5.3833776 + 8362: -140.63963,-4.8927927 + 8363: -137.853,-6.8370523 + 8364: -137.09505,-8.576398 + 8365: -139.93727,-1.1342988 + 8366: -139.02327,-0.532217 + 8367: -140.98505,-0.019333363 + 8368: -139.2462,0.09216356 + 8369: -138.53282,-1.111999 + 8370: -137.50734,-1.1565976 + 8371: -136.59332,-0.9336047 + 8372: -138.13155,-2.1154675 + 8373: -134.89906,-0.9336047 + 8374: -131.81136,-2.8453088 + 8375: -132.07887,-3.358193 + 8376: -131.52155,-4.517757 + 8377: -130.60754,-4.495457 + 8378: -130.69672,-5.164437 + 8379: -131.92282,-5.275933 + 8380: -131.63301,-5.0752397 + 8381: -131.63301,-6.5692925 + 8382: -130.0948,-6.212504 + 8383: -129.4706,-5.275933 + 8384: -128.66805,-5.4097285 + 8385: -130.80818,-6.078708 + 8386: -130.71901,-6.8814836 + 8387: -130.1171,-7.884952 + 8388: -128.84639,-6.613891 + 8389: -128.48972,-6.1456065 + 8390: -127.553406,-6.4800954 + 8391: -126.52793,-6.413198 + 8392: -128.93556,-8.241741 + 8393: -131.16487,-8.375536 + 8394: -131.63301,-8.776924 + 8395: -132.14575,-9.468203 + 8396: -130.47379,-10.270977 + 8397: -129.89417,-9.490501 + 8398: -129.49289,-8.866121 + 8399: -128.64575,-10.047985 + 8400: -130.18398,-10.159481 + 8401: -131.14256,-10.783863 + 8402: -129.69353,-10.650066 + 8403: -127.75404,-9.156012 + 8404: -126.52793,-9.089115 + 8405: -128.91327,-9.245209 + 8406: -127.12984,-7.661959 + 8407: -126.260414,-6.948381 + 8408: -126.23812,-7.059878 + 8409: -126.840034,-6.01181 + 8410: -129.58516,-11.835684 + 8411: -128.8495,-12.638458 + 8412: -127.801735,-12.058677 + 8413: -126.70937,-10.02944 + 8414: -125.12657,-9.471957 + 8415: -126.352684,-10.720718 + 8416: -127.288994,-11.634991 + 8417: -126.575615,-11.3228 + 8418: -125.17116,-11.032909 + 8419: -126.865425,-13.106745 + 8420: -126.97689,-13.664227 + 8421: -125.61702,-14.132513 + 8422: -124.21256,-12.593861 + 8423: -123.87817,-11.211304 + 8424: -122.29536,-11.144405 + 8425: -121.91638,-12.237072 + 8426: -123.54377,-12.972948 + 8427: -122.67434,-13.686525 + 8428: -121.648865,-11.835684 + 8429: -123.87817,-10.36393 + 8430: -125.41638,-10.67612 + 8431: -124.97052,-9.182066 + 8432: -122.11702,-8.646883 + 8433: -120.37817,-8.669182 + 8434: -120.91319,-9.917944 + 8435: -122.31765,-10.297031 + 8436: -120.98007,-10.943712 + 8437: -119.6202,-9.628053 + 8438: -118.9737,-9.672651 + 8439: -120.17753,-10.67612 + 8440: -120.24441,-10.98831 + 8441: -121.44823,-9.449657 + 8442: -121.715744,-8.847576 + 8443: -121.40364,-12.348568 + 8444: -122.02785,-13.129044 + 8445: -124.32403,-13.708826 + 8446: -125.26033,-14.600798 + 8447: -125.371796,-15.381273 + 8448: -124.1011,-15.938757 + 8449: -122.76351,-14.734594 + 8450: -121.225296,-14.288607 + 8451: -122.38453,-15.51507 + 8452: -123.49918,-16.050253 + 8453: -122.51829,-16.830729 + 8454: -121.33676,-15.738062 + 8455: -121.73804,-12.950649 + 8456: -121.225296,-12.259371 + 8457: -122.495995,-15.581966 + 8458: -123.588356,-16.674633 + 8459: -122.07243,-17.14292 + 8460: -120.91319,-16.050253 + 8461: -119.26351,-16.050253 + 8462: -121.09154,-17.009123 + 8463: -122.25077,-17.923395 + 8464: -121.359055,-18.659271 + 8465: -120.04377,-17.321314 + 8466: -119.285805,-16.451641 + 8467: -118.57243,-16.897627 + 8468: -121.58556,-18.766079 + 8469: -121.58556,-18.498486 + 8470: -120.15881,-17.004433 + 8471: -118.55372,-16.402351 + 8472: -117.08238,-16.603045 + 8473: -118.86582,-17.517317 + 8474: -118.2862,-18.654581 + 8475: -117.19385,-17.004433 + 8476: -117.06009,-16.045563 + 8477: -116.56964,-17.807207 + 8478: -118.888115,-19.167465 + 8479: -119.891304,-19.903343 + 8480: -119.93589,-20.63922 + 8481: -118.13015,-20.148636 + 8482: -117.08238,-18.186296 + 8483: -116.14608,-17.874105 + 8484: -117.77347,-20.081738 + 8485: -119.33398,-21.375097 + 8486: -119.62379,-22.24477 + 8487: -117.72888,-21.798784 + 8488: -116.23525,-20.148636 + 8489: -115.36582,-20.28243 + 8490: -118.6206,-22.021778 + 8491: -118.64289,-22.668457 + 8492: -117.77347,-23.426634 + 8493: -116.50277,-22.824553 + 8494: -115.49958,-21.709587 + 8495: -115.07601,-20.393927 + 8496: -116.14608,-22.512363 + 8497: -117.3499,-22.155573 + 8498: -116.43589,-20.683819 + 8499: -115.52187,-19.435057 + 8500: -116.257545,-17.918705 + 8501: -114.40722,-17.784908 + 8502: -116.27984,-17.182827 + 8503: -113.13334,-20.706118 + 8504: -109.23206,-18.38699 + 8505: -109.165184,-18.453888 + 8506: -109.54417,-18.98907 + 8507: -108.7862,-17.918705 + 8508: -107.69385,-17.71801 + 8509: -106.95818,-16.892937 + 8510: -106.62379,-16.13476 + 8511: -106.13334,-16.75914 + 8512: -106.824425,-16.090162 + 8513: -105.70977,-15.086693 + 8514: -104.974106,-15.131292 + 8515: -105.17474,-16.000965 + 8516: -105.97729,-15.488081 + 8517: -105.531425,-15.019794 + 8518: -105.48684,-15.488081 + 8519: -105.888115,-15.867168 + 8520: -106.73525,-15.198189 + 8521: -98.51019,-12.9498825 + 8522: -99.42421,-13.150578 + 8523: -99.82548,-13.819557 + 8524: -100.315926,-13.440468 + 8525: -100.18217,-12.236305 + 8526: -101.029305,-11.701121 + 8527: -101.16306,-12.860685 + 8528: -101.675804,-11.366632 + 8529: -103.12484,-11.478128 + 8530: -103.39236,-11.165938 + 8531: -104.06115,-9.894877 + 8532: -105.01975,-10.430061 + 8533: -106.42421,-10.630755 + 8534: -106.26816,-9.448892 + 8535: -105.376434,-8.289328 + 8536: -105.39873,-7.6426477 + 8537: -107.092995,-7.9102397 + 8538: -108.22994,-7.9771376 + 8539: -107.69491,-7.107465 + 8540: -106.55797,-5.769506 + 8541: -105.599365,-5.6580095 + 8542: -105.309555,-6.839873 + 8543: -106.42421,-7.0851655 + 8544: -106.89236,-6.2377915 + 8545: -105.309555,-5.546513 + 8546: -105.8,-4.565344 + 8547: -106.7586,-5.2343225 + 8548: -108.675804,-6.28239 + 8549: -109.27771,-7.2412605 + 8550: -109.12166,-7.932539 + 8551: -107.33822,-5.5911117 + 8552: -107.80637,-3.6510725 + 8553: -106.69172,-3.0489912 + 8554: -105.042046,-4.2977514 + 8555: -104.28408,-4.743738 + 8556: -103.86051,-3.5618753 + 8557: -104.84141,-5.6803093 + 8558: -107.75409,-2.8036985 + 8559: -109.200325,-2.848297 + 8560: -109.66949,-4.766038 + 8561: -111.809616,-4.6991396 + 8562: -112.09942,-5.167425 + 8563: -110.8956,-6.059397 + 8564: -111.47522,-6.6614785 + 8565: -113.41471,-6.639179 + 8566: -112.656746,-4.67684 + 8567: -111.87649,-3.8294668 + 8568: -112.12171,-5.5688124 + 8569: -111.78732,-5.9924994 + 8570: -114.32872,-7.843342 + 8571: -114.93063,-7.5534506 + 8572: -114.84146,-6.995968 + 8573: -102.82661,-2.0970006 + 8574: -104.11927,-2.030035 + 8575: -105.56831,-2.8551092 + 8576: -106.61608,-3.3902926 + 8577: -107.284874,-3.2787962 + 8578: -107.10653,-3.568687 + 8579: -109.09061,-2.8997078 + 8580: -108.26577,-3.2303352 + 8581: -117.87419,-9.491268 + 8582: -118.394356,-9.966988 + 8583: -119.19691,-10.041318 + 8584: -119.910286,-10.056185 + 8585: -120.05891,-9.075014 + 8586: -95.94624,-16.944057 + 8587: -96.726494,-16.743362 + 8588: -96.90484,-17.858328 + 8589: -96.83796,-18.12592 + 8590: -97.64051,-17.590736 + 8591: -98.465355,-16.83256 + 8592: -99.13414,-16.83256 + 8593: -98.86662,-17.902927 + 8594: -98.04179,-18.728 + 8595: -98.108665,-18.884096 + 8596: -98.86662,-18.081322 + 8597: -97.93032,-17.345444 + 8598: -97.15006,-17.18935 + 8599: -99.42395,-17.880629 + 8600: -100.11503,-17.858328 + 8601: -100.76153,-18.10362 + 8602: -100.82841,-18.817198 + 8603: -99.93669,-19.41928 + 8604: -100.27108,-19.664572 + 8605: -101.05134,-20.177456 + 8606: -100.159615,-20.489647 + 8607: -98.22013,-19.553076 + 8608: -97.0386,-19.285484 + 8609: -97.6851,-20.222055 + 8610: -98.955795,-20.601143 + 8611: -97.84115,-21.06943 + 8612: -97.28382,-20.043661 + 8613: -96.61503,-20.333551 + 8614: -96.458984,-21.381618 + 8615: -95.812485,-21.114027 + 8616: -96.949425,-21.604612 + 8617: -97.64051,-22.541183 + 8618: -97.48446,-22.875671 + 8619: -99.40166,-21.493116 + 8620: -99.84752,-20.69034 + 8621: -100.8507,-20.73494 + 8622: -100.71694,-21.649212 + 8623: -100.672356,-22.65268 + 8624: -101.22968,-22.98717 + 8625: -99.62459,-22.474285 + 8626: -99.46854,-20.422749 + 8627: -100.2042,-19.508478 + 8628: -100.36025,-19.240885 + 8629: -100.89529,-19.642273 + 8630: -101.318855,-18.594206 + 8631: -101.00675,-17.791431 + 8632: -98.62141,-21.783007 + 8633: -99.04497,-22.98717 + 8634: -98.82204,-23.656149 + 8635: -97.9972,-23.009468 + 8636: -97.21694,-23.031769 + 8637: -97.77427,-24.280529 + 8638: -99.78064,-25.061005 + 8639: -100.71694,-24.414326 + 8640: -100.33796,-23.723045 + 8641: -98.465355,-24.86031 + 8642: -98.22013,-25.52929 + 8643: -97.57363,-26.153671 + 8644: -96.86025,-25.038706 + 8645: -96.30293,-25.061005 + 8646: -96.97172,-25.84148 + 8647: -97.3507,-26.778051 + 8648: -96.86025,-27.201738 + 8649: -98.22013,-27.067944 + 8650: -99.22331,-26.465862 + 8651: -99.75835,-26.82265 + 8652: -99.51312,-27.424732 + 8653: -98.3093,-26.421263 + 8654: -97.43987,-25.350895 + 8655: -97.99627,-29.207638 + 8656: -97.3603,-28.826252 + 8657: -96.40115,-28.14492 + 8658: -97.2037,-27.899628 + 8659: -98.22918,-28.590908 + 8660: -98.87568,-28.100323 + 8661: -99.96803,-29.549778 + 8662: -99.29924,-30.285654 + 8663: -98.050835,-29.906567 + 8664: -96.95847,-29.661274 + 8665: -96.40115,-30.530947 + 8666: -98.407524,-31.06613 + 8667: -98.74192,-31.73511 + 8668: -98.45211,-32.203396 + 8669: -97.24828,-31.556715 + 8670: -96.624084,-31.289124 + 8671: -97.44892,-32.33719 + 8672: -98.29606,-32.916973 + 8673: -98.02854,-33.675148 + 8674: -97.22599,-33.162266 + 8675: -97.09223,-33.63055 + 8676: -98.43606,-34.70005 + 8677: -98.90445,-34.777775 + 8678: -98.32483,-35.357983 + 8679: -97.4777,-34.7336 + 8680: -96.78661,-35.335682 + 8681: -97.99043,-35.78167 + 8682: -99.216545,-35.960064 + 8683: -99.75158,-36.183056 + 8684: -100.10827,-35.78167 + 8685: -98.32483,-37.03043 + 8686: -97.165596,-36.829735 + 8687: -96.296165,-35.78167 + 8688: -96.006355,-36.584442 + 8689: -97.32165,-37.231125 + 8690: -98.90445,-36.785137 + 8691: -100.71018,-37.09733 + 8692: -101.06687,-37.810905 + 8693: -101.022285,-38.94817 + 8694: -102.27069,-39.126564 + 8695: -102.716545,-39.527954 + 8696: -100.55413,-40.419926 + 8697: -99.84075,-40.152332 + 8698: -99.41718,-40.19693 + 8699: -100.84394,-41.1558 + 8700: -99.015915,-41.088905 + 8701: -97.1433,-39.773247 + 8702: -96.60827,-38.94817 + 8703: -96.74203,-37.587914 + 8704: -96.40763,-37.36492 + 8705: -96.74203,-38.59138 + 8706: -95.80572,-39.03737 + 8707: -94.98088,-38.61368 + 8708: -95.09235,-37.833206 + 8709: -96.05094,-36.985832 + 8710: -96.875786,-35.78167 + 8711: -95.73884,-35.558674 + 8712: -98.34506,-36.157757 + 8713: -97.76545,-35.459045 + 8714: -99.60834,-36.9754 + 8715: -93.92223,-38.92474 + 8716: -95.43815,-39.549118 + 8717: -95.68337,-40.396492 + 8718: -95.08147,-40.730984 + 8719: -96.10694,-41.22157 + 8720: -95.97318,-40.597187 + 8721: -94.97,-40.48569 + 8722: -95.52732,-41.333065 + 8723: -97.778915,-42.626423 + 8724: -97.42223,-43.05011 + 8725: -96.01777,-42.537228 + 8726: -95.23752,-42.31423 + 8727: -95.75025,-43.07241 + 8728: -96.61968,-44.05358 + 8729: -95.75025,-44.34347 + 8730: -94.925415,-43.183907 + 8731: -94.011406,-43.4069 + 8732: -96.2407,-44.231976 + 8733: -97.15472,-43.629894 + 8734: -96.931786,-43.11701 + 8735: -96.129234,-41.578358 + 8736: -96.86491,-42.76022 + 8737: -95.705666,-43.4292 + 8738: -96.352165,-43.340004 + 8739: -98.81155,-42.024345 + 8740: -97.46179,-42.871716 + 8741: -98.19746,-43.585297 + 8742: -97.28345,-44.165077 + 8743: -95.81211,-43.763687 + 8744: -96.703835,-44.811756 + 8745: -96.43632,-45.101646 + 8746: -97.39491,-41.868248 + 8747: -96.66605,-42.09124 + 8748: -94.81239,-45.458958 + 8749: -94.40791,-45.117832 + 8750: -92.81553,-43.765305 + 8751: -93.5512,-45.080963 + 8752: -94.26457,-45.83914 + 8753: -92.70406,-45.995235 + 8754: -101.86108,-37.837097 + 8755: -102.57769,-37.7702 + 8756: -102.08725,-39.01896 + 8757: -102.24329,-39.487244 + 8758: -103.00126,-40.00013 + 8759: -103.8261,-39.64334 + 8760: -103.67005,-38.528374 + 8761: -103.93757,-38.104687 + 8762: -104.96304,-38.30538 + 8763: -106.033104,-38.773666 + 8764: -105.00763,-39.93323 + 8765: -105.00763,-40.62451 + 8766: -105.899345,-40.156223 + 8767: -106.478966,-38.416878 + 8768: -107.03629,-37.881695 + 8769: -108.262405,-38.08239 + 8770: -108.08406,-39.26425 + 8771: -107.08088,-39.442646 + 8772: -107.03629,-38.03779 + 8773: -107.59362,-36.967422 + 8774: -108.396164,-36.766727 + 8775: -108.9312,-37.48031 + 8776: -109.73374,-37.903996 + 8777: -110.02355,-38.63987 + 8778: -109.51081,-38.95206 + 8779: -107.39298,-38.06009 + 8780: -105.72101,-38.149284 + 8781: -116.20562,-36.07545 + 8782: -115.13556,-35.919353 + 8783: -115.46995,-36.566036 + 8784: -115.35849,-36.69983 + 8785: -114.28842,-36.231544 + 8786: -113.70881,-36.07545 + 8787: -114.043205,-36.72213 + 8788: -114.19925,-36.989723 + 8789: -113.15148,-36.36534 + 8790: -112.50498,-36.07545 + 8791: -113.106895,-36.900524 + 8792: -113.90945,-37.814796 + 8793: -113.57505,-37.7256 + 8794: -111.880775,-36.65523 + 8795: -111.56868,-36.878227 + 8796: -112.95084,-38.34998 + 8797: -112.86167,-39.06356 + 8798: -111.14511,-37.859398 + 8799: -110.65466,-37.34651 + 8800: -111.390335,-38.08239 + 8801: -111.30116,-38.66217 + 8802: -112.08141,-37.10122 + 8803: -111.59026,-40.26511 + 8804: -110.92147,-39.506935 + 8805: -110.520195,-38.92715 + 8806: -110.98835,-40.376606 + 8807: -110.43102,-41.067886 + 8808: -107.956505,-39.39544 + 8809: -106.93102,-38.94945 + 8810: -107.376884,-40.17591 + 8811: -108.98199,-41.53617 + 8812: -109.450134,-42.11595 + 8813: -108.246315,-42.338943 + 8814: -106.24898,-41.179382 + 8815: -104.797066,-41.966537 + 8816: -106.88552,-44.19885 + 8817: -105.50106,-42.88643 + 8818: -104.68668,-42.61892 + 8819: -105.556114,-43.60009 + 8820: -106.38095,-43.042606 + 8821: -107.16121,-41.927643 + 8822: -108.38732,-43.064907 + 8823: -106.71535,-42.440525 + 8824: -106.82681,-44.804253 + 8825: -105.89051,-45.004948 + 8826: -103.81726,-44.023777 + 8827: -102.61344,-44.291367 + 8828: -103.79497,-45.339436 + 8829: -104.50834,-45.629326 + 8830: -105.62299,-45.986115 + 8831: -103.92873,-46.4098 + 8832: -102.92554,-46.610497 + 8833: -104.3077,-47.011883 + 8834: -104.6421,-47.257175 + 8835: -104.842735,-44.87115 + 8836: -103.54974,-45.16104 + 8837: -102.99242,-44.402866 + 8838: -104.263115,-43.198704 + 8839: -102.836365,-42.908813 + 8840: -103.97331,-41.45936 + 8841: -103.08159,-40.901875 + 8842: -103.57721,-47.89467 + 8843: -102.41798,-47.712753 + 8844: -101.7046,-46.66469 + 8845: -101.03581,-46.151802 + 8846: -101.63772,-47.19987 + 8847: -101.548546,-47.824253 + 8848: -100.34473,-47.93575 + 8849: -100.255554,-48.470932 + 8850: -101.30333,-49.340607 + 8851: -100.72371,-49.964985 + 8852: -99.67594,-49.340607 + 8853: -98.71734,-49.318306 + 8854: -99.83199,-50.07648 + 8855: -100.38931,-50.633965 + 8856: -98.49441,-50.79006 + 8857: -97.73645,-50.12108 + 8858: -97.51352,-50.410973 + 8859: -98.89568,-51.19145 + 8860: -97.624985,-50.879257 + 8861: -95.908424,-49.741993 + 8862: -95.3511,-49.4967 + 8863: -96.33199,-50.990753 + 8864: -97.335175,-52.15032 + 8865: -95.64091,-51.905025 + 8866: -94.16957,-51.302944 + 8867: -93.50078,-51.07995 + 8868: -94.838356,-51.838127 + 8869: -95.59632,-51.369843 + 8870: -96.51034,-51.659733 + 8871: -95.841545,-50.23258 + 8872: -96.33199,-49.630497 + 8873: -95.68549,-48.82772 + 8874: -94.57084,-49.697395 + 8875: -96.10906,-47.995598 + 8876: -95.93072,-47.019436 + 8877: -94.94982,-46.729546 + 8878: -96.08677,-46.573452 + 8879: -95.328804,-45.28009 + 8880: -94.2343,-46.01695 + 8881: -92.9781,-46.85517 + 8882: -92.438255,-46.699066 + 8883: -91.27902,-44.98202 + 8884: -90.0752,-44.35764 + 8885: -91.078384,-45.561802 + 8886: -91.368195,-44.04545 + 8887: -91.234436,-43.30957 + 8888: -91.63571,-42.81899 + 8889: -92.148445,-43.867054 + 8890: -90.54335,-43.889355 + 8891: -93.85421,-43.606403 + 8892: -92.763535,-50.769295 + 8893: -92.919586,-50.289978 + 8894: -90.24443,-49.041218 + 8895: -89.419586,-49.018917 + 8896: -91.06927,-49.108116 + 8897: -91.470535,-47.39085 + 8898: -91.45736,-47.50161 + 8899: -90.49876,-46.76573 + 8900: -91.925514,-48.08139 + 8901: -90.409584,-47.7246 + 8902: -89.96372,-47.167118 + 8903: -90.32041,-45.650764 + 8904: -89.33952,-44.89259 + 8905: -88.51469,-44.914886 + 8906: -89.54016,-45.896057 + 8907: -89.02742,-45.896057 + 8908: -87.97965,-44.714195 + 8909: -87.22169,-44.357407 + 8910: -87.02105,-45.16018 + 8911: -88.02424,-46.096752 + 8912: -88.53698,-47.211716 + 8913: -87.779015,-47.14482 + 8914: -86.552895,-45.985256 + 8915: -86.062454,-45.76226 + 8916: -85.9064,-46.297447 + 8917: -87.37774,-47.657703 + 8918: -88.158,-48.08139 + 8919: -88.358635,-48.46048 + 8920: -86.842705,-48.036793 + 8921: -85.86182,-47.39011 + 8922: -85.126144,-47.345512 + 8923: -86.50831,-48.192886 + 8924: -86.865,-49.06256 + 8925: -86.062454,-49.04026 + 8926: -85.39366,-48.259785 + 8927: -84.88093,-48.14829 + 8928: -85.282196,-49.196354 + 8929: -86.10704,-50.110626 + 8930: -86.64207,-50.75731 + 8931: -85.79494,-50.467415 + 8932: -84.25672,-49.486244 + 8933: -84.03379,-50.155228 + 8934: -85.61659,-51.158695 + 8935: -86.59748,-51.760777 + 8936: -87.37774,-52.407455 + 8937: -86.39685,-52.764244 + 8938: -85.37137,-52.139862 + 8939: -84.47965,-52.095264 + 8940: -85.349075,-52.80884 + 8941: -87.55608,-53.098732 + 8942: -88.80449,-53.031837 + 8943: -89.428696,-49.664642 + 8944: -82.95196,-47.566757 + 8945: -84.2951,-46.825096 + 8946: -84.718666,-46.7136 + 8947: -82.489365,-48.54214 + 8948: -81.50848,-48.051556 + 8949: -80.416115,-47.159584 + 8950: -81.97663,-45.777027 + 8951: -81.1072,-48.720535 + 8952: -80.482994,-49.746304 + 8953: -79.12312,-48.675938 + 8954: -77.74096,-48.051556 + 8955: -86.57513,-44.145893 + 8956: -85.791595,-44.409042 + 8957: -86.28204,-43.11568 + 8958: -87.61962,-43.918457 + 8959: -88.46676,-43.918457 + 8960: -85.1674,-42.045315 + 8961: -84.69924,-40.350567 + 8962: -84.09733,-40.863453 + 8963: -85.43491,-42.424404 + 8964: -84.96676,-42.89269 + 8965: -85.858475,-41.398636 + 8966: -85.10052,-40.32827 + 8967: -83.74064,-39.703888 + 8968: -83.2502,-40.350567 + 8969: -84.141914,-41.66623 + 8970: -83.02727,-42.000717 + 8971: -82.53682,-40.93035 + 8972: -81.9795,-41.26484 + 8973: -82.40306,-41.956116 + 8974: -81.24383,-42.023018 + 8975: -80.641914,-41.19794 + 8976: -79.61644,-40.082977 + 8977: -80.41898,-38.96801 + 8978: -81.578224,-39.793083 + 8979: -82.715164,-39.614693 + 8980: -81.77886,-38.70042 + 8981: -81.444466,-37.563156 + 8982: -82.11326,-37.94224 + 8983: -81.46676,-39.3471 + 8984: -81.60052,-39.3471 + 8985: -83.004974,-38.34363 + 8986: -83.562294,-37.206367 + 8987: -84.03045,-37.875343 + 8988: -83.8744,-38.722717 + 8989: -82.69287,-37.34016 + 8990: -82.6037,-36.38129 + 8991: -83.2502,-35.51162 + 8992: -82.18014,-35.355522 + 8993: -83.91898,-36.0914 + 8994: -81.6451,-35.13253 + 8995: -80.575035,-35.11023 + 8996: -81.511345,-35.913006 + 8997: -80.73109,-36.44819 + 8998: -80.61962,-35.533916 + 8999: -80.352104,-36.73808 + 9000: -79.99542,-37.273262 + 9001: -79.081406,-37.607754 + 9002: -79.17058,-38.455128 + 9003: -79.61644,-39.213303 + 9004: -78.43491,-39.101807 + 9005: -77.74383,-38.96801 + 9006: -79.504974,-39.3471 + 9007: -80.39669,-40.105274 + 9008: -79.01453,-40.95265 + 9009: -79.19287,-41.24254 + 9010: -80.70879,-41.86692 + 9011: -80.66421,-42.6251 + 9012: -78.54638,-41.84462 + 9013: -78.590965,-42.335205 + 9014: -79.19287,-43.11568 + 9015: -77.05274,-42.91499 + 9016: -76.94128,-43.51707 + 9017: -77.431725,-44.52054 + 9018: -77.5209,-45.10032 + 9019: -77.96676,-45.43481 + 9020: -77.008156,-45.7247 + 9021: -75.9158,-44.18605 + 9022: -75.20243,-44.029953 + 9023: -76.004974,-45.05572 + 9024: -75.715164,-46.505177 + 9025: -76.916985,-46.611225 + 9026: -75.3185,-45.691654 + 9027: -74.582825,-45.22337 + 9028: -73.4013,-45.13417 + 9029: -73.62423,-45.691654 + 9030: -73.735695,-46.316036 + 9031: -73.26754,-46.739723 + 9032: -72.509575,-46.449833 + 9033: -71.8185,-45.647057 + 9034: -73.089195,-45.000378 + 9035: -74.82805,-47.564796 + 9036: -76.38856,-47.16341 + 9037: -76.5669,-47.943886 + 9038: -75.20703,-48.166878 + 9039: -74.51595,-48.18918 + 9040: -75.3185,-48.72436 + 9041: -75.49684,-49.192646 + 9042: -74.47137,-50.41911 + 9043: -76.18792,-50.7313 + 9044: -77.302574,-50.04002 + 9045: -76.522316,-48.835857 + 9046: -76.76754,-48.41217 + 9047: -76.92359,-49.66093 + 9048: -77.72614,-50.597504 + 9049: -78.61786,-49.68323 + 9050: -78.41722,-48.322975 + 9051: -78.64015,-47.966187 + 9052: -79.15289,-48.813557 + 9053: -80.379005,-49.75013 + 9054: -81.13697,-49.616333 + 9055: -78.8185,-50.575203 + 9056: -78.46181,-50.263012 + 9057: -80.022316,-51.199585 + 9058: -80.60194,-52.203053 + 9059: -81.092384,-52.693638 + 9060: -81.78346,-53.29572 + 9061: -81.605125,-53.8755 + 9062: -80.512764,-53.340317 + 9063: -79.7548,-52.448345 + 9064: -79.55416,-53.630207 + 9065: -79.39812,-54.745174 + 9066: -79.4427,-54.990467 + 9067: -77.07964,-53.8755 + 9068: -77.302574,-52.225353 + 9069: -77.05735,-51.22188 + 9070: -77.97137,-53.117325 + 9071: -78.12742,-53.652508 + 9072: -76.812126,-53.028126 + 9073: -76.09875,-52.515244 + 9074: -76.16563,-53.22882 + 9075: -75.742065,-53.184223 + 9076: -76.32168,-51.823963 + 9077: -75.519135,-51.199585 + 9078: -75.25162,-50.196114 + 9079: -74.939514,-49.549435 + 9080: -74.56054,-49.01425 + 9081: -73.958626,-48.76896 + 9082: -74.00321,-49.883926 + 9083: -72.06372,-48.79126 + 9084: -71.55098,-47.966187 + 9085: -70.68156,-47.921585 + 9086: -71.84079,-48.43447 + 9087: -73.04461,-46.49443 + 9088: -72.308945,-47.118813 + 9089: -74.13697,-46.226837 + 9090: -72.95544,-51.02119 + 9091: -74.538246,-52.203053 + 9092: -74.382195,-52.738235 + 9093: -73.4013,-51.69017 + 9094: -72.64333,-51.712467 + 9095: -73.668816,-52.827435 + 9096: -73.35671,-53.20652 + 9097: -72.48728,-52.55984 + 9098: -71.952255,-52.60444 + 9099: -73.17837,-53.786304 + 9100: -73.91404,-54.455284 + 9101: -74.025505,-55.23576 + 9102: -75.162445,-55.659447 + 9103: -76.12104,-55.21346 + 9104: -77.10194,-55.23576 + 9105: -75.11786,-54.54448 + 9106: -74.649704,-54.812073 + 9107: -75.96499,-56.39532 + 9108: -74.025505,-56.038532 + 9109: -72.64333,-55.949337 + 9110: -71.61786,-53.51871 + 9111: -70.50321,-52.98353 + 9112: -71.28346,-54.34379 + 9113: -72.82168,-56.283825 + 9114: -72.308945,-57.1535 + 9115: -71.26117,-56.016235 + 9116: -70.72614,-55.414154 + 9117: -72.175186,-55.72634 + 9118: -71.61786,-54.745174 + 9119: -73.04461,-54.94587 + 9120: -71.23888,-52.715935 + 9121: -70.8599,-51.757065 + 9122: -69.85671,-51.37798 + 9123: -70.36945,-52.136154 + 9124: -71.172,-49.817028 + 9125: -72.019135,-50.240715 + 9126: -73.02054,-57.05329 + 9127: -70.74665,-57.187088 + 9128: -69.40907,-56.45121 + 9129: -68.60653,-55.024055 + 9130: -68.584236,-56.13902 + 9131: -69.81035,-56.607304 + 9132: -69.9441,-56.808 + 9133: -69.36449,-55.893726 + 9134: -69.18614,-54.622665 + 9135: -69.67659,-54.332775 + 9136: -70.635185,-55.09095 + 9137: -70.055565,-54.399673 + 9138: -69.60971,-53.329308 + 9139: -68.76257,-52.81642 + 9140: -69.11926,-53.5746 + 9141: -70.52372,-53.75299 + 9142: -69.74347,-53.373905 + 9143: -68.02691,-53.5523 + 9144: -67.60334,-53.351604 + 9145: -66.845375,-52.01365 + 9146: -66.555565,-52.682625 + 9147: -67.60334,-53.819893 + 9148: -67.15748,-54.555767 + 9149: -66.39952,-53.596897 + 9150: -66.221176,-53.10631 + 9151: -65.95366,-53.90909 + 9152: -65.73073,-54.243576 + 9153: -65.32945,-54.622665 + 9154: -66.57786,-55.247047 + 9155: -67.424995,-55.626137 + 9156: -66.97913,-56.183617 + 9157: -65.95366,-55.69303 + 9158: -65.26257,-55.670734 + 9159: -66.24347,-56.11672 + 9160: -67.714806,-54.912556 + 9161: -68.071495,-54.48887 + 9162: -67.96003,-57.446865 + 9163: -68.33901,-58.032066 + 9164: -66.82308,-58.098965 + 9165: -66.421814,-57.340786 + 9166: -69.07468,-58.098965 + 9167: -68.94092,-57.496883 + 9168: -68.49506,-56.761005 + 9169: -68.004616,-56.515713 + 9170: -67.358116,-58.21046 + 9171: -66.815,-57.184692 + 9172: -66.52519,-58.65645 + 9173: -65.61118,-58.411156 + 9174: -64.63029,-57.22929 + 9175: -64.00609,-56.9171 + 9176: -64.5857,-57.89827 + 9177: -65.00927,-58.52265 + 9178: -64.49653,-58.79024 + 9179: -63.582516,-57.719875 + 9180: -63.136654,-56.448814 + 9181: -63.939205,-55.200054 + 9182: -64.13985,-55.155457 + 9183: -62.93602,-54.64257 + 9184: -65.03156,-53.549904 + 9185: -64.80863,-52.903225 + 9186: -65.29908,-51.944355 + 9187: -66.63666,-51.877457 + 9188: -67.90736,-51.83286 + 9189: -66.815,-51.007786 - node: color: '#FFFFFFFF' id: Grassd2 @@ -11308,1012 +11321,1012 @@ entities: 2894: 31.416012,-31.965834 3286: 30.226364,19.959724 4540: -36.587357,-24.848705 - 5660: -3,31 - 5769: 45.902214,-1.0103016 - 5773: 45,-1 - 5940: 33.847126,-37.927483 - 6128: -70.2355,-89.96552 - 6133: -61.420807,-89.209206 - 6138: -63.230465,-82.885796 - 6141: -65.1707,-82.99654 - 6144: -76.05005,-78.65363 - 6147: -75.95616,-77.145134 - 6150: -65.09022,-77.89249 - 6155: -59.830246,-76.76613 - 6156: -57.927986,-78.883 - 6157: -60.543785,-83.972855 - 6161: -77.18389,-87.127464 + 5656: -3,31 + 5765: 45.902214,-1.0103016 + 5769: 45,-1 + 5936: 33.847126,-37.927483 + 6124: -70.2355,-89.96552 + 6129: -61.420807,-89.209206 + 6134: -63.230465,-82.885796 + 6137: -65.1707,-82.99654 + 6140: -76.05005,-78.65363 + 6143: -75.95616,-77.145134 + 6146: -65.09022,-77.89249 + 6151: -59.830246,-76.76613 + 6152: -57.927986,-78.883 + 6153: -60.543785,-83.972855 + 6157: -77.18389,-87.127464 - node: cleanable: True color: '#DCBFFFBF' id: Grassd3 decals: - 10894: -26.509636,-70.794556 - 10895: -23.433147,-69.880226 - 10896: -23.232563,-70.59386 - 10897: -23.366322,-71.10674 - 10898: -21.805813,-70.25937 - 10899: -19.732563,-69.70189 - 10900: -20.245304,-70.70535 - 10901: -19.442757,-71.66422 - 10902: -18.172054,-71.55273 - 10903: -17.904537,-70.10327 - 10904: -17.859951,-68.38622 - 10905: -19.531929,-68.23013 - 10906: -20.156132,-68.96601 - 10907: -24.03511,-69.1667 - 10908: -25.863136,-68.36393 - 10909: -26.286705,-67.42735 - 10910: -24.726196,-65.13053 - 10911: -24.592438,-64.55074 - 10912: -24.726196,-66.29009 - 10913: -24.592438,-66.80298 - 10914: -25.974602,-65.82181 - 10915: -26.64339,-64.41695 - 10916: -23.522373,-62.7891 - 10917: -22.942757,-63.77027 - 10918: -24.079697,-64.90753 - 10919: -23.589252,-65.21973 - 10920: -22.60836,-63.324284 - 10921: -21.538296,-62.20932 - 10922: -21.828106,-63.279686 - 10923: -21.71664,-64.55074 - 10924: -20.111546,-64.37235 - 10925: -19.621098,-62.744503 - 10926: -18.930016,-62.543808 - 10927: -19.219826,-63.83717 - 10928: -19.554218,-65.554214 - 10929: -19.353584,-66.73608 - 10930: -18.394985,-66.0448 - 10931: -17.302628,-64.193954 - 10932: -15.786704,-64.50615 - 10933: -16.901356,-65.21973 - 10934: -14.93957,-64.974434 - 10935: -14.872691,-64.015564 - 10936: -14.181609,-64.796036 - 10937: -15.140208,-65.71031 - 10938: -16.009636,-67.895645 - 10939: -17.859951,-68.27473 - 10940: -18.729378,-67.070564 - 10941: -18.974602,-65.68801 - 10942: -19.955494,-64.66224 - 10943: -23.56696,-63.591877 - 10944: -26.019188,-63.881767 - 10945: -26.910908,-63.391182 - 10946: -25.305813,-62.343117 - 10947: -23.990524,-62.744503 - 10948: -24.904537,-61.02746 - 10949: -26.308998,-61.406544 - 10950: -27.423649,-61.60724 - 10951: -27.089252,-60.58147 - 10952: -25.88543,-59.6895 - 10953: -25.261227,-58.886723 - 10954: -24.74849,-59.7118 - 10955: -24.3918,-61.25045 - 10956: -23.321735,-60.64837 - 10957: -22.831291,-59.488804 - 10958: -21.828106,-59.265812 - 10959: -22.586067,-60.55917 - 10960: -21.71664,-60.514572 - 10961: -20.312183,-59.957092 - 10962: -19.576511,-61.005157 - 10963: -18.75167,-60.87136 - 10964: -21.092438,-59.421906 - 10965: -21.917278,-59.555702 - 10966: -23.33451,-57.48791 - 10967: -24.866875,-57.479282 - 10968: -26.430565,-58.37513 - 10969: -25.672707,-57.215084 - 10970: -23.621716,-56.10028 - 10971: -24.446556,-55.11911 - 10972: -25.605793,-56.189476 - 10973: -24.513435,-54.74002 - 10974: -22.663116,-55.69889 - 10975: -22.663116,-58.241013 - 10976: -22.15038,-58.084915 - 10977: -21.058022,-55.364403 - 10978: -20.58987,-55.921883 - 10979: -27.723629,-57.99572 + 10890: -26.509636,-70.794556 + 10891: -23.433147,-69.880226 + 10892: -23.232563,-70.59386 + 10893: -23.366322,-71.10674 + 10894: -21.805813,-70.25937 + 10895: -19.732563,-69.70189 + 10896: -20.245304,-70.70535 + 10897: -19.442757,-71.66422 + 10898: -18.172054,-71.55273 + 10899: -17.904537,-70.10327 + 10900: -17.859951,-68.38622 + 10901: -19.531929,-68.23013 + 10902: -20.156132,-68.96601 + 10903: -24.03511,-69.1667 + 10904: -25.863136,-68.36393 + 10905: -26.286705,-67.42735 + 10906: -24.726196,-65.13053 + 10907: -24.592438,-64.55074 + 10908: -24.726196,-66.29009 + 10909: -24.592438,-66.80298 + 10910: -25.974602,-65.82181 + 10911: -26.64339,-64.41695 + 10912: -23.522373,-62.7891 + 10913: -22.942757,-63.77027 + 10914: -24.079697,-64.90753 + 10915: -23.589252,-65.21973 + 10916: -22.60836,-63.324284 + 10917: -21.538296,-62.20932 + 10918: -21.828106,-63.279686 + 10919: -21.71664,-64.55074 + 10920: -20.111546,-64.37235 + 10921: -19.621098,-62.744503 + 10922: -18.930016,-62.543808 + 10923: -19.219826,-63.83717 + 10924: -19.554218,-65.554214 + 10925: -19.353584,-66.73608 + 10926: -18.394985,-66.0448 + 10927: -17.302628,-64.193954 + 10928: -15.786704,-64.50615 + 10929: -16.901356,-65.21973 + 10930: -14.93957,-64.974434 + 10931: -14.872691,-64.015564 + 10932: -14.181609,-64.796036 + 10933: -15.140208,-65.71031 + 10934: -16.009636,-67.895645 + 10935: -17.859951,-68.27473 + 10936: -18.729378,-67.070564 + 10937: -18.974602,-65.68801 + 10938: -19.955494,-64.66224 + 10939: -23.56696,-63.591877 + 10940: -26.019188,-63.881767 + 10941: -26.910908,-63.391182 + 10942: -25.305813,-62.343117 + 10943: -23.990524,-62.744503 + 10944: -24.904537,-61.02746 + 10945: -26.308998,-61.406544 + 10946: -27.423649,-61.60724 + 10947: -27.089252,-60.58147 + 10948: -25.88543,-59.6895 + 10949: -25.261227,-58.886723 + 10950: -24.74849,-59.7118 + 10951: -24.3918,-61.25045 + 10952: -23.321735,-60.64837 + 10953: -22.831291,-59.488804 + 10954: -21.828106,-59.265812 + 10955: -22.586067,-60.55917 + 10956: -21.71664,-60.514572 + 10957: -20.312183,-59.957092 + 10958: -19.576511,-61.005157 + 10959: -18.75167,-60.87136 + 10960: -21.092438,-59.421906 + 10961: -21.917278,-59.555702 + 10962: -23.33451,-57.48791 + 10963: -24.866875,-57.479282 + 10964: -26.430565,-58.37513 + 10965: -25.672707,-57.215084 + 10966: -23.621716,-56.10028 + 10967: -24.446556,-55.11911 + 10968: -25.605793,-56.189476 + 10969: -24.513435,-54.74002 + 10970: -22.663116,-55.69889 + 10971: -22.663116,-58.241013 + 10972: -22.15038,-58.084915 + 10973: -21.058022,-55.364403 + 10974: -20.58987,-55.921883 + 10975: -27.723629,-57.99572 - node: cleanable: True color: '#FFFFFFBF' id: Grassd3 decals: - 12263: -15.947785,-65.98522 - 12264: -16.839724,-64.39454 - 12265: -15.918055,-62.87819 - 12266: -17.181633,-68.30435 - 12267: -16.88432,-69.18146 - 12268: -15.055846,-67.8881 - 12269: -13.4354925,-66.32715 - 12270: -11.488093,-64.73646 - 12271: -12.380033,-67.07046 - 12272: -12.900329,-68.06649 - 12273: -10.729946,-68.58681 - 12274: -10.462364,-67.08532 - 12275: -12.142182,-67.90296 - 12276: -12.736808,-69.01793 - 12277: -11.592154,-68.97333 - 12278: -11.443498,-67.8881 - 12279: -13.167911,-67.189384 - 12280: -11.755675,-65.97036 - 12281: -12.69221,-65.4203 - 12282: -11.309706,-63.785027 - 12283: -13.286837,-63.799892 - 12284: -14.208506,-63.68096 - 12285: -10.729111,-65.60159 - 12286: -9.747803,-64.71146 - 12287: -9.049118,-66.42107 - 12288: -10.119444,-67.86309 - 12289: -9.34643,-68.309074 - 12290: -9.6437435,-69.58757 - 12291: -10.16404,-69.97409 - 12292: -9.509953,-67.20898 - 12293: -10.015385,-65.97508 - 12294: -9.331564,-63.87895 - 12295: -10.951919,-63.07617 - 12296: -11.219501,-61.82741 - 12297: -9.376162,-61.75308 - 12298: 10.174993,-61.44599 - 12299: 11.215588,-60.77701 - 12300: 10.858812,-61.52032 - 12301: 9.74389,-60.568886 - 12302: 9.758756,-61.90684 - 12303: 12.56836,-61.83251 - 12304: 13.876538,-60.672947 - 12305: 13.861672,-62.93261 - 12306: 13.281911,-62.917744 - 12307: 14.322507,-64.3003 - 12308: 13.817075,-63.69079 - 12309: 13.088658,-64.954414 - 12310: 13.950866,-66.03964 - 12311: 13.237315,-66.901886 - 12312: 13.965732,-62.100105 - 12313: 15.125251,-61.10407 - 12314: 15.957726,-61.921707 - 12315: 15.110385,-62.15957 - 12316: 16.478024,-61.386524 - 12317: 14.634685,-59.79584 - 12318: 13.995461,-59.69178 - 12319: 17.146976,-58.889004 - 12320: 18.15784,-58.859272 - 12321: 17.697006,-60.405357 - 12322: 15.452294,-59.76611 - 12323: 17.607811,-62.248764 - 12324: 15.838802,-64.24084 - 12325: 15.318505,-65.07334 - 12326: 15.154983,-63.88405 - 12327: 17.325363,-63.05154 - 12328: 13.443088,-65.72366 - 12329: 18.89172,-61.61556 - 12330: 19.962048,-61.95748 - 12331: 18.698467,-59.980274 - 12332: 19.649868,-59.89108 - 12333: 19.560673,-61.110107 - 12334: 21.047237,-60.901978 - 12335: 22.013504,-59.712685 - 12336: 22.236488,-58.493656 - 12337: 22.771652,-60.08434 - 12338: 22.02837,-60.634388 - 12339: 21.41888,-61.481762 - 12340: 22.414875,-61.91288 - 12341: 23.5298,-60.515457 - 12342: 22.905441,-60.604656 - 12343: 24.55553,-59.89108 - 12344: 21.091835,-58.71665 - 12345: 22.400013,-56.813774 - 12346: 21.151299,-56.91784 - 12347: 22.355415,-57.824677 - 12348: 23.396008,-57.988205 - 12349: 24.21362,-58.790977 - 12350: 24.066063,-61.283077 - 12351: 25.37191,-58.262035 - 12352: 27.512562,-58.12824 - 12353: 26.694954,-58.94588 - 12354: 28.062592,-58.87155 - 12355: 28.122055,-57.69712 - 12356: 26.63549,-58.098507 - 12357: 26.15979,-59.97165 - 12358: 29.177517,-58.113373 - 12359: 31.020855,-57.54846 - 12360: 31.749271,-58.039043 - 12361: 29.950531,-57.994442 - 12362: 32.685806,-56.90921 - 12363: 22.940735,-56.19375 - 12364: 21.829262,-53.08425 - 12365: 21.546814,-51.835487 - 12366: 22.022514,-50.556995 - 12367: 21.650871,-49.828552 - 12368: 20.729202,-47.98514 - 12369: 21.784664,-46.052536 - 12370: 22.40902,-47.152634 - 12371: 21.740067,-48.089207 - 12372: 21.056248,-47.018837 - 12373: 21.7252,-44.928234 - 12374: 23.107704,-43.843002 - 12375: 28.143677,-44.11059 - 12376: 29.020748,-43.7984 - 12377: 32.464516,-46.102665 - 12378: 33.460514,-46.845974 - 12379: 39.473858,-48.69641 - 12380: 40.871227,-47.269253 - 12381: 40.127945,-48.607212 - 12382: 41.450985,-48.904537 - 12383: 42.595642,-48.443684 - 12384: 41.7037,-47.224655 - 12385: 41.450985,-47.78957 - 12386: 39.696842,-46.57054 - 12387: 40.66311,-46.094822 - 12388: 40.66311,-46.65974 - 12389: 39.66711,-45.812366 - 12390: 38.92383,-46.644875 - 12391: 39.146812,-47.849037 - 12392: 41.034748,-44.771732 - 12393: 38.8495,-49.08293 - 12394: 42.737377,-46.03278 - 12395: 44.90776,-47.16261 - 12396: 42.336006,-49.139816 - 12397: 44.372597,-48.084316 - 12398: 43.807705,-47.236942 - 12399: 44.253674,-45.94358 - 12400: 45.130745,-44.66509 - 12401: 46.64704,-44.159637 - 12402: 47.241665,-44.323166 - 12403: 46.528114,-45.43813 - 12404: 46.40919,-46.746357 - 12405: 45.74024,-47.028816 - 12406: 45.948357,-44.69482 - 12407: 45.888893,-43.80285 - 12408: 48.546764,-43.840424 - 12409: 49.736015,-43.126846 - 12410: 48.784615,-42.175407 - 12411: 50.152256,-40.59959 - 12412: 51.46043,-40.168472 - 12413: 50.315777,-41.46183 - 12414: 49.914406,-41.997013 - 12415: 51.3861,-41.164505 - 12416: 51.400967,-40.540127 - 12417: 50.67255,-39.484627 - 12418: 50.330643,-39.276497 - 12419: 48.94814,-40.227936 - 12420: 49.096794,-41.2983 - 12421: 52.129383,-40.31713 - 12422: 52.17398,-41.49156 - 12423: 49.68161,-38.546272 - 12424: 51.019516,-36.539333 - 12425: 50.73707,-35.11218 - 12426: 54.065243,-30.059118 - 12427: 52.547268,-29.862556 - 12428: 50.89666,-20.273672 - 12429: 49.008724,-20.020948 - 12430: 48.978992,-18.80192 - 12431: 47.819473,-19.143843 - 12432: 49.291172,-16.690918 - 12433: 52.412956,-15.4718895 - 12434: 52.695404,-13.98527 - 12435: 51.119644,-15.1597 - 12436: 51.669674,-16.40846 - 12437: 51.565617,-16.60172 - 12438: 50.76287,-16.482792 - 12439: 52.011585,-14.104198 - 12440: 51.52102,-13.033833 - 12441: 50.643944,-13.866341 - 12442: 49.49929,-14.788044 - 12443: 49.02359,-15.546221 - 12444: 50.406094,-16.021938 - 12445: 53.46842,-15.308361 - 12446: 54.256294,-14.312326 - 12447: 53.721134,-13.152761 - 12448: 54.434685,-13.673079 - 12449: 54.776592,-15.650284 - 12450: 56.1145,-15.798946 - 12451: 55.237427,-15.813812 - 12452: 53.958984,-15.947609 - 12453: 53.31976,-14.312326 - 12454: 51.375492,-11.952736 - 12455: 53.129856,-11.253616 - 12456: 53.679886,-9.618334 - 12457: 52.535233,-11.015757 - 12458: 51.985203,-11.66987 - 12459: 53.962334,-8.533101 - 12460: 52.683887,-7.7749248 - 12461: 54.631287,-7.150544 - 12462: 55.285374,-8.14658 - 12463: 54.21505,-9.068285 - 12464: 54.42317,-10.287313 - 12465: 52.996067,-8.652031 - 12466: 54.00693,-7.8343897 - 12467: 53.070393,-6.454098 - 12468: 52.520367,-5.697342 - 12469: 52.014935,-5.4743485 - 12470: 52.74335,-4.68644 - 12471: 48.345264,-16.940538 - 12472: 48.954758,-17.624384 - 12473: 48.51233,-18.266678 - 12482: 47.436977,20.038652 - 12483: 48.95327,19.50347 - 12484: 45.28146,18.908821 - 12485: 45.1328,21.25768 - 12486: 46.322052,21.85233 - 12487: 46.75316,21.019821 - 12488: 48.86408,22.149652 - 12489: 48.046467,19.191278 - 12490: 49.39924,20.276512 - 12491: 49.830345,22.387512 - 12492: 50.172253,23.279484 - 12493: 49.696552,21.92666 - 12494: 51.034462,20.36571 - 12495: 49.90467,18.998018 - 12496: 51.108788,19.50347 - 12497: 52.104786,18.849356 + 12259: -15.947785,-65.98522 + 12260: -16.839724,-64.39454 + 12261: -15.918055,-62.87819 + 12262: -17.181633,-68.30435 + 12263: -16.88432,-69.18146 + 12264: -15.055846,-67.8881 + 12265: -13.4354925,-66.32715 + 12266: -11.488093,-64.73646 + 12267: -12.380033,-67.07046 + 12268: -12.900329,-68.06649 + 12269: -10.729946,-68.58681 + 12270: -10.462364,-67.08532 + 12271: -12.142182,-67.90296 + 12272: -12.736808,-69.01793 + 12273: -11.592154,-68.97333 + 12274: -11.443498,-67.8881 + 12275: -13.167911,-67.189384 + 12276: -11.755675,-65.97036 + 12277: -12.69221,-65.4203 + 12278: -11.309706,-63.785027 + 12279: -13.286837,-63.799892 + 12280: -14.208506,-63.68096 + 12281: -10.729111,-65.60159 + 12282: -9.747803,-64.71146 + 12283: -9.049118,-66.42107 + 12284: -10.119444,-67.86309 + 12285: -9.34643,-68.309074 + 12286: -9.6437435,-69.58757 + 12287: -10.16404,-69.97409 + 12288: -9.509953,-67.20898 + 12289: -10.015385,-65.97508 + 12290: -9.331564,-63.87895 + 12291: -10.951919,-63.07617 + 12292: -11.219501,-61.82741 + 12293: -9.376162,-61.75308 + 12294: 10.174993,-61.44599 + 12295: 11.215588,-60.77701 + 12296: 10.858812,-61.52032 + 12297: 9.74389,-60.568886 + 12298: 9.758756,-61.90684 + 12299: 12.56836,-61.83251 + 12300: 13.876538,-60.672947 + 12301: 13.861672,-62.93261 + 12302: 13.281911,-62.917744 + 12303: 14.322507,-64.3003 + 12304: 13.817075,-63.69079 + 12305: 13.088658,-64.954414 + 12306: 13.950866,-66.03964 + 12307: 13.237315,-66.901886 + 12308: 13.965732,-62.100105 + 12309: 15.125251,-61.10407 + 12310: 15.957726,-61.921707 + 12311: 15.110385,-62.15957 + 12312: 16.478024,-61.386524 + 12313: 14.634685,-59.79584 + 12314: 13.995461,-59.69178 + 12315: 17.146976,-58.889004 + 12316: 18.15784,-58.859272 + 12317: 17.697006,-60.405357 + 12318: 15.452294,-59.76611 + 12319: 17.607811,-62.248764 + 12320: 15.838802,-64.24084 + 12321: 15.318505,-65.07334 + 12322: 15.154983,-63.88405 + 12323: 17.325363,-63.05154 + 12324: 13.443088,-65.72366 + 12325: 18.89172,-61.61556 + 12326: 19.962048,-61.95748 + 12327: 18.698467,-59.980274 + 12328: 19.649868,-59.89108 + 12329: 19.560673,-61.110107 + 12330: 21.047237,-60.901978 + 12331: 22.013504,-59.712685 + 12332: 22.236488,-58.493656 + 12333: 22.771652,-60.08434 + 12334: 22.02837,-60.634388 + 12335: 21.41888,-61.481762 + 12336: 22.414875,-61.91288 + 12337: 23.5298,-60.515457 + 12338: 22.905441,-60.604656 + 12339: 24.55553,-59.89108 + 12340: 21.091835,-58.71665 + 12341: 22.400013,-56.813774 + 12342: 21.151299,-56.91784 + 12343: 22.355415,-57.824677 + 12344: 23.396008,-57.988205 + 12345: 24.21362,-58.790977 + 12346: 24.066063,-61.283077 + 12347: 25.37191,-58.262035 + 12348: 27.512562,-58.12824 + 12349: 26.694954,-58.94588 + 12350: 28.062592,-58.87155 + 12351: 28.122055,-57.69712 + 12352: 26.63549,-58.098507 + 12353: 26.15979,-59.97165 + 12354: 29.177517,-58.113373 + 12355: 31.020855,-57.54846 + 12356: 31.749271,-58.039043 + 12357: 29.950531,-57.994442 + 12358: 32.685806,-56.90921 + 12359: 22.940735,-56.19375 + 12360: 21.829262,-53.08425 + 12361: 21.546814,-51.835487 + 12362: 22.022514,-50.556995 + 12363: 21.650871,-49.828552 + 12364: 20.729202,-47.98514 + 12365: 21.784664,-46.052536 + 12366: 22.40902,-47.152634 + 12367: 21.740067,-48.089207 + 12368: 21.056248,-47.018837 + 12369: 21.7252,-44.928234 + 12370: 23.107704,-43.843002 + 12371: 28.143677,-44.11059 + 12372: 29.020748,-43.7984 + 12373: 32.464516,-46.102665 + 12374: 33.460514,-46.845974 + 12375: 39.473858,-48.69641 + 12376: 40.871227,-47.269253 + 12377: 40.127945,-48.607212 + 12378: 41.450985,-48.904537 + 12379: 42.595642,-48.443684 + 12380: 41.7037,-47.224655 + 12381: 41.450985,-47.78957 + 12382: 39.696842,-46.57054 + 12383: 40.66311,-46.094822 + 12384: 40.66311,-46.65974 + 12385: 39.66711,-45.812366 + 12386: 38.92383,-46.644875 + 12387: 39.146812,-47.849037 + 12388: 41.034748,-44.771732 + 12389: 38.8495,-49.08293 + 12390: 42.737377,-46.03278 + 12391: 44.90776,-47.16261 + 12392: 42.336006,-49.139816 + 12393: 44.372597,-48.084316 + 12394: 43.807705,-47.236942 + 12395: 44.253674,-45.94358 + 12396: 45.130745,-44.66509 + 12397: 46.64704,-44.159637 + 12398: 47.241665,-44.323166 + 12399: 46.528114,-45.43813 + 12400: 46.40919,-46.746357 + 12401: 45.74024,-47.028816 + 12402: 45.948357,-44.69482 + 12403: 45.888893,-43.80285 + 12404: 48.546764,-43.840424 + 12405: 49.736015,-43.126846 + 12406: 48.784615,-42.175407 + 12407: 50.152256,-40.59959 + 12408: 51.46043,-40.168472 + 12409: 50.315777,-41.46183 + 12410: 49.914406,-41.997013 + 12411: 51.3861,-41.164505 + 12412: 51.400967,-40.540127 + 12413: 50.67255,-39.484627 + 12414: 50.330643,-39.276497 + 12415: 48.94814,-40.227936 + 12416: 49.096794,-41.2983 + 12417: 52.129383,-40.31713 + 12418: 52.17398,-41.49156 + 12419: 49.68161,-38.546272 + 12420: 51.019516,-36.539333 + 12421: 50.73707,-35.11218 + 12422: 54.065243,-30.059118 + 12423: 52.547268,-29.862556 + 12424: 50.89666,-20.273672 + 12425: 49.008724,-20.020948 + 12426: 48.978992,-18.80192 + 12427: 47.819473,-19.143843 + 12428: 49.291172,-16.690918 + 12429: 52.412956,-15.4718895 + 12430: 52.695404,-13.98527 + 12431: 51.119644,-15.1597 + 12432: 51.669674,-16.40846 + 12433: 51.565617,-16.60172 + 12434: 50.76287,-16.482792 + 12435: 52.011585,-14.104198 + 12436: 51.52102,-13.033833 + 12437: 50.643944,-13.866341 + 12438: 49.49929,-14.788044 + 12439: 49.02359,-15.546221 + 12440: 50.406094,-16.021938 + 12441: 53.46842,-15.308361 + 12442: 54.256294,-14.312326 + 12443: 53.721134,-13.152761 + 12444: 54.434685,-13.673079 + 12445: 54.776592,-15.650284 + 12446: 56.1145,-15.798946 + 12447: 55.237427,-15.813812 + 12448: 53.958984,-15.947609 + 12449: 53.31976,-14.312326 + 12450: 51.375492,-11.952736 + 12451: 53.129856,-11.253616 + 12452: 53.679886,-9.618334 + 12453: 52.535233,-11.015757 + 12454: 51.985203,-11.66987 + 12455: 53.962334,-8.533101 + 12456: 52.683887,-7.7749248 + 12457: 54.631287,-7.150544 + 12458: 55.285374,-8.14658 + 12459: 54.21505,-9.068285 + 12460: 54.42317,-10.287313 + 12461: 52.996067,-8.652031 + 12462: 54.00693,-7.8343897 + 12463: 53.070393,-6.454098 + 12464: 52.520367,-5.697342 + 12465: 52.014935,-5.4743485 + 12466: 52.74335,-4.68644 + 12467: 48.345264,-16.940538 + 12468: 48.954758,-17.624384 + 12469: 48.51233,-18.266678 + 12478: 47.436977,20.038652 + 12479: 48.95327,19.50347 + 12480: 45.28146,18.908821 + 12481: 45.1328,21.25768 + 12482: 46.322052,21.85233 + 12483: 46.75316,21.019821 + 12484: 48.86408,22.149652 + 12485: 48.046467,19.191278 + 12486: 49.39924,20.276512 + 12487: 49.830345,22.387512 + 12488: 50.172253,23.279484 + 12489: 49.696552,21.92666 + 12490: 51.034462,20.36571 + 12491: 49.90467,18.998018 + 12492: 51.108788,19.50347 + 12493: 52.104786,18.849356 - node: cleanable: True color: '#FFFFFFCC' id: Grassd3 decals: - 15161: -138.43307,16.892298 - 15162: -137.76428,18.09646 - 15163: -137.87575,13.199259 - 15164: -137.11778,14.158131 - 15165: -137.7197,14.202728 - 15166: -136.40442,15.250795 - 15167: -135.71333,16.454958 - 15168: -135.98085,18.060509 - 15169: -136.96175,17.235435 - 15170: -137.27385,16.878645 - 15171: -135.24518,17.190834 - 15172: -134.39804,18.038208 - 15173: -134.10823,19.063976 - 15174: -135.55728,17.726019 - 15175: -136.07002,17.235435 - 15176: -136.76111,18.394997 - 15177: -136.1592,19.264671 - 15178: -135.06683,20.022846 - 15179: -135.35664,20.379635 - 15180: -135.44582,18.684889 - 15181: -135.11142,18.216602 - 15182: -136.91716,19.487663 - 15183: -137.63052,19.62146 - 15184: -136.96175,20.87022 - 15185: -136.96175,21.895988 - 15186: -138.09868,20.513432 - 15187: -138.63371,19.353868 - 15188: -139.57002,19.420765 - 15189: -137.80887,20.24584 - 15190: -136.76111,20.268139 - 15191: -138.74518,20.00055 - 15192: -137.63052,21.160112 - 15193: -138.09868,21.717594 - 15194: -138.29932,22.408873 - 15195: -139.10187,21.895988 - 15196: -140.10506,20.781025 - 15197: -140.99677,20.134344 - 15198: -139.92671,20.468834 - 15199: -140.08276,22.275078 - 15200: -140.61778,22.49807 - 15201: -141.01906,21.405405 - 15202: -140.50633,20.736425 - 15203: -140.08276,19.732956 - 15204: -140.75154,18.997078 - 15205: -140.52861,18.261202 - 15206: -139.45856,18.461895 - 15207: -141.58664,18.394997 - 15208: -140.96243,18.417297 - 15209: -140.49428,17.36923 - 15210: -140.87326,16.298862 - 15211: -139.88847,16.054493 - 15212: -138.79613,16.277485 - 15213: -139.88847,15.140221 - 15214: -138.50632,15.47471 - 15215: -138.90758,14.761131 - 15216: -140.97478,17.280954 - 15217: -141.8888,18.135513 - 15218: -141.53212,20.11564 - 15219: -141.79964,20.985313 - 15220: -140.32831,21.74349 - 15221: -141.62129,22.05568 - 15222: -141.88881,23.817326 - 15223: -142.93658,22.390171 - 15224: -141.88881,23.170647 - 15225: -142.60219,23.192945 - 15226: -142.31238,22.122578 - 15227: -140.79646,24.37481 - 15228: -141.95569,24.6647 - 15229: -141.88881,25.779665 - 15230: -140.21684,25.177584 - 15231: -138.61174,24.887691 - 15232: -139.79327,23.861923 - 15233: -139.74869,23.282143 - 15234: -138.96843,23.460537 - 15235: -138.76779,23.928822 - 15236: -139.48117,22.300972 - 15237: -138.79008,22.880754 - 15238: -140.32831,23.482836 - 15239: -139.63722,25.021488 - 15240: -137.89534,24.352509 - 15241: -137.00296,24.909992 - 15242: -136.91379,23.594332 - 15243: -136.245,23.438236 - 15244: -135.64308,23.884224 - 15245: -135.86601,23.103748 - 15246: -137.09213,22.457067 - 15247: -135.75455,22.345572 - 15248: -134.55074,22.41247 - 15249: -135.28639,21.431301 - 15250: -135.79913,21.029911 - 15251: -134.57303,21.052212 - 15252: -133.72589,21.3867 - 15253: -133.65901,20.45013 - 15254: -133.99341,19.714252 - 15255: -132.67812,20.294035 - 15256: -132.54436,21.186008 - 15257: -132.23225,20.11564 - 15258: -133.3915,18.933777 - 15259: -133.23544,18.131002 - 15260: -133.07939,17.974907 - 15261: -132.78958,19.312866 - 15262: -133.19086,19.803452 - 15263: -133.99341,17.595818 - 15264: -134.86284,16.59235 - 15265: -134.81825,16.057167 - 15266: -136.49022,16.190964 - 15267: -135.84372,15.276691 - 15268: -133.7394,22.733229 - 15269: -133.80627,23.848194 - 15270: -134.58653,24.071186 - 15271: -134.87633,24.071186 - 15272: -134.87633,25.074656 - 15273: -132.06741,22.01965 - 15274: -131.91136,20.815487 - 15275: -132.1343,19.589027 - 15276: -132.06741,18.986946 - 15334: 72.227875,58.82408 - 15335: 72.004944,58.274033 - 15336: 74.308556,58.125374 - 15337: 73.83297,59.924187 - 15338: 74.70983,60.444496 - 15339: 73.17904,58.79435 - 15340: 73.35738,58.259167 - 15341: 74.20452,57.396927 - 15342: 75.12597,57.08474 - 15343: 75.735306,58.482162 - 15344: 75.12597,60.013382 - 15345: 76.017685,59.879585 - 15346: 75.82448,57.709118 - 15347: 77.41471,57.723984 - 15348: 77.84571,58.705154 - 15349: 78.54423,60.13231 - 15350: 79.28732,58.749752 - 15351: 78.098366,56.846878 - 15352: 77.147194,56.68335 - 15353: 76.939125,58.05104 - 15354: 77.295815,55.731915 - 15355: 78.67798,55.731915 - 15356: 79.04953,56.698215 - 15357: 79.956116,57.010406 - 15358: 80.75866,57.218533 - 15359: 80.1939,58.83895 - 15360: 79.70346,59.76066 - 15361: 81.68011,58.318634 - 15362: 80.40197,58.184837 - 15363: 79.584564,60.801292 - 15364: 78.96036,61.69326 - 15365: 77.62278,62.45144 - 15366: 77.593056,60.801292 - 15367: 78.06864,59.62686 - 15368: 76.96885,60.295837 - 15369: 78.024055,61.767593 - 15370: 76.374374,61.827057 - 15371: 76.41896,62.540634 - 15372: 77.013435,63.23935 - 15373: 75.40834,62.45144 - 15374: 75.52724,61.69326 - 15375: 74.97735,61.51487 - 15376: 74.0559,62.689293 - 15377: 74.9179,63.700195 - 15378: 74.68011,62.65956 - 15379: 73.99645,63.744797 - 15380: 73.654625,62.124382 - 15381: 74.1748,61.782455 - 15382: 73.26821,61.09861 - 15383: 72.53998,60.816154 - 15384: 71.85632,61.90139 - 15385: 71.93063,62.45144 - 15386: 71.03892,61.90139 - 15387: 71.29157,60.697227 - 15388: 72.5697,61.85679 - 15389: 71.945496,60.831024 - 15390: 70.4593,60.32557 - 15391: 69.06572,61.415985 - 15392: 69.95739,62.352554 - 15393: 70.67077,62.545815 - 15394: 70.18032,63.170197 - 15395: 71.40577,63.110733 - 15396: 72.32722,64.03243 - 15397: 72.53528,63.006668 - 15398: 73.10004,64.76088 - 15399: 73.085175,65.20686 - 15400: 73.872856,64.53789 - 15401: 75.58199,64.34463 - 15402: 76.17647,63.735115 - 15403: 78.780136,59.498245 - 15404: 78.51262,62.337685 - 15405: 77.90328,63.19993 - 15406: 74.82684,59.280273 - 15407: 77.97759,56.084038 - 15408: 80.960945,58.611294 - 15409: 78.3601,57.83825 - 15418: 154.53595,46.02356 - 15419: 153.9712,48.595413 - 15420: 152.52959,47.16826 - 15421: 151.96483,47.67371 - 15422: 153.30241,48.89274 - 15423: 152.09859,50.1415 - 15424: 150.9988,48.981934 - 15425: 151.20686,48.104828 - 15426: 151.32576,50.186096 - 15427: 149.89902,49.561718 - 15428: 150.35974,48.595413 - 15429: 150.41919,50.06717 - 15430: 149.58691,50.92941 - 15431: 150.65697,51.717316 - 15432: 149.24509,49.130596 - 15433: 149.15591,50.528023 - 15434: 150.52321,50.86994 - 15435: 150.00305,52.05924 - 15436: 150.95421,53.099876 - 15437: 151.53383,51.1524 - 15438: 152.84169,52.2079 - 15439: 152.81197,51.137535 - 15440: 151.57841,52.832283 - 15441: 152.39583,51.583523 - 15442: 153.02003,50.364494 - 15443: 152.58904,49.413055 - 15444: 153.27269,49.59145 - 15445: 154.10497,47.525047 - 15446: 153.40645,47.034462 - 15447: 153.88203,46.484413 - 15448: 154.06038,46.05329 - 15449: 155.30878,46.26142 - 15450: 150.2382,48.006878 - 15489: 113.34822,-47.327263 - 15490: 113.05841,-48.37533 - 15491: 114.440575,-47.661755 - 15492: 114.26223,-46.078503 - 15493: 116.13484,-46.54679 - 15494: 114.77497,-48.37533 - 15495: 114.75268,-48.79902 - 15496: 115.44376,-47.79555 - 15497: 114.77497,-46.50219 - 15498: 112.38962,-47.015076 - 15499: 112.16669,-46.234596 - 15500: 113.3928,-45.275726 - 15501: 113.727196,-44.58445 - 15502: 115.22083,-45.16423 - 15503: 115.35459,-45.94471 - 15504: 115.55522,-44.472954 - 15505: 115.75586,-43.870872 - 15506: 117.02656,-44.472954 - 15507: 116.380066,-45.677116 - 15508: 117.76223,-45.34263 - 15509: 115.10937,-44.071564 - 15510: 116.29089,-44.718246 - 15511: 116.87051,-43.33569 - 15512: 117.360954,-42.912003 - 15513: 117.78452,-44.673645 - 15514: 118.85459,-44.183064 - 15515: 119.52338,-44.093864 - 15516: 119.032936,-45.85551 - 15517: 117.27178,-46.59139 - 15518: 117.04885,-47.639454 - 15519: 118.230385,-47.572556 - 15520: 118.43102,-47.015076 - 15521: 115.75586,-49.3788 - 15522: 115.75586,-50.025482 - 15523: 117.16032,-48.82132 - 15524: 116.46924,-49.913986 - 15525: 118.40873,-50.04778 - 15526: 119.27815,-49.245003 - 15527: 119.83548,-48.13004 - 15528: 119.300446,-47.661755 - 15529: 120.03612,-46.81438 - 15530: 120.860954,-45.989307 - 15531: 119.90236,-45.25343 - 15532: 119.434204,-44.673645 - 15533: 119.880066,-45.94471 - 15534: 121.21764,-44.89664 - 15535: 121.730385,-45.030437 - 15536: 122.04249,-43.60328 - 15537: 121.21764,-43.402588 - 15538: 120.236755,-43.893173 - 15539: 122.06478,-45.788612 - 15540: 120.88325,-46.925877 - 15541: 121.53986,-42.38497 - 15542: 120.69273,-41.73829 - 15543: 119.31057,-42.36267 - 15544: 121.7405,-40.77942 - 15545: 122.855156,-41.047012 - 15546: 122.67681,-43.41074 - 15547: 122.94433,-44.7264 - 15548: 122.409294,-44.34731 - 15549: 122.39745,-39.75881 - 15550: 123.66815,-39.9149 - 15551: 124.314644,-39.156727 - 15552: 123.48981,-37.796467 - 15553: 123.400635,-39.31282 - 15554: 124.247765,-37.952564 - 15555: 122.620384,-38.019463 - 15556: 121.86242,-38.889133 - 15557: 125.36242,-37.885666 - 15558: 126.0758,-37.796467 - 15559: 126.343315,-38.889133 - 15560: 126.878334,-38.309353 - 15561: 125.22866,-37.038292 - 15562: 123.73503,-36.926796 - 15563: 123.89108,-35.611134 - 15564: 125.22866,-35.52194 - 15565: 126.25414,-36.05712 - 15566: 126.65542,-35.298946 - 15567: 126.16497,-34.919857 - 15568: 122.821014,-36.7484 - 15569: 125.238014,-34.045795 - 15570: 125.05967,-33.153824 - 15571: 125.86222,-33.62211 - 15572: 126.01827,-33.9566 - 15573: 126.44184,-33.176125 - 15574: 126.70936,-32.083458 - 15575: 127.445015,-32.88623 - 15576: 127.890884,-34.670177 - 15577: 127.2221,-36.43182 - 15578: 126.89486,-39.817314 - 15579: 128.7006,-39.126038 - 15580: 129.07957,-40.865383 - 15581: 129.74837,-41.22217 - 15582: 130.52863,-40.419395 - 15583: 130.9299,-40.151806 - 15584: 130.70697,-41.333668 - 15585: 131.42035,-41.400566 - 15586: 132.66875,-40.820786 - 15587: 129.68149,-41.84655 - 15588: 129.16875,-42.114143 - 15589: 129.6369,-43.898087 - 15590: 130.70697,-42.939217 - 15591: 129.25792,-43.095314 - 15592: 130.75156,-42.047245 - 15593: 128.7452,-43.608196 - 15594: 128.3885,-40.014523 - 15595: 131.78331,-40.839596 - 15596: 132.31834,-40.906494 - 15597: 133.61134,-40.795 - 15603: 104.10985,-38.54268 - 15604: 103.75316,-37.56151 - 15605: 103.06207,-38.609573 - 15606: 104.288185,-39.033264 - 15607: 102.081184,-37.18242 - 15608: 103.84233,-36.959427 - 15609: 104.8901,-36.89253 - 15610: 104.22131,-37.895996 - 15611: 103.218124,-37.7622 - 15612: 104.511116,-37.18242 - 15613: 105.2022,-38.721073 - 15614: 105.38055,-38.988663 - 15615: 106.29456,-38.275085 - 15616: 106.96335,-39.34545 - 15617: 105.24679,-39.902935 - 15618: 104.288185,-40.05903 - 15619: 104.19902,-40.66111 - 15620: 105.49201,-41.486187 - 15621: 105.447426,-41.0402 - 15622: 104.90551,-40.929367 - 15623: 107.55837,-41.39765 - 15624: 106.577484,-40.126595 - 15625: 107.023346,-39.769806 - 15626: 107.04564,-41.53145 - 15627: 107.023346,-42.624115 - 15628: 106.923645,-41.955135 - 15629: 106.25485,-41.977436 - 15630: 107.703896,-41.888237 - 15631: 108.46186,-40.996265 - 15632: 106.96823,-40.483383 - 15633: 106.50008,-40.79557 - 15634: 107.770775,-40.55028 - 15635: 107.63702,-39.9259 - 15636: 106.12109,-39.65831 - 15637: 106.54466,-38.810936 - 15638: 107.6816,-38.788635 - 15639: 108.90772,-40.26039 - 15640: 108.84084,-40.996265 - 15641: 98.15124,-29.652235 - 15642: 98.19582,-28.269678 - 15643: 98.82003,-27.689896 - 15644: 98.86462,-28.648766 - 15645: 99.08755,-28.737965 - 15646: 99.778625,-27.756794 - 15647: 99.13213,-26.99862 - 15648: 100.11302,-26.463434 - 15649: 100.46971,-26.173544 - 15650: 100.91557,-26.887121 - 15651: 99.95697,-27.266209 - 15652: 101.00474,-26.976318 - 15653: 101.67353,-26.99862 - 15654: 101.02703,-26.084347 - 15655: 100.40283,-26.976318 - 15656: 100.00156,-28.135883 - 15657: 98.062065,-28.782562 - 15658: 98.998375,-28.113583 - 15659: 98.21812,-27.887585 - 15660: 98.062065,-28.428534 - 15672: -103.10218,2.1531644 - 15673: -102.136154,2.1085658 - 15674: -101.66057,2.1085658 - 15675: -102.58201,2.1531644 - 15676: -99.72851,2.0045023 - 15677: -104.32087,2.1234317 - 15678: -95.80402,2.9559398 - 15679: -95.313576,3.1640658 - 15680: -94.80827,2.8221436 - 15681: -93.91655,2.881609 - 15682: -93.15859,3.0154042 - 15683: -94.169205,3.134334 - 15684: -92.891075,2.8072777 - 15714: -90.88633,3.0785747 - 15715: -91.74832,3.8367505 - 15716: -90.633675,4.1340756 - 15717: -89.90543,4.728723 - 15718: -90.76743,5.263907 - 15719: -91.73346,5.7247586 - 15720: -90.72285,7.166781 - 15721: -89.78654,6.958654 - 15722: -90.33643,6.289675 - 15723: -88.93941,7.0924497 - 15724: -89.50416,8.207415 - 15725: -90.633675,8.519606 - 15726: -91.79291,8.445274 - 15727: -91.138985,10.035957 - 15728: -91.94153,10.600874 - 15729: -91.94153,6.8099923 - 15730: -91.22816,6.4829354 - 15731: -88.15498,8.010073 - 15732: -86.41613,8.054672 - 15733: -87.51592,6.969439 - 15734: -88.82378,4.962501 - 15735: -88.1104,6.0774665 - 15736: -86.77282,7.058636 - 15737: -85.940544,7.534355 - 15738: -85.19745,8.143869 - 15739: -85.33121,7.058636 - 15740: -83.309975,7.0437703 - 15741: -83.027596,7.965475 - 15742: -81.526535,8.054672 - 15743: -78.99537,8.001192 - 15744: -76.88497,7.882263 - 15745: -76.260765,8.224186 - 15746: -75.71087,8.001192 - 15747: -74.96777,8.179586 - 15748: -73.99045,12.2528 - 15749: -75.967094,12.119005 - 15750: -77.06688,12.327131 - 15751: -76.50213,13.323168 - 15752: -75.01592,12.133871 - 15753: -77.43843,13.04071 - 15754: -78.13695,12.089273 - 15755: -79.474525,12.044674 - 15756: -79.78663,12.981245 - 15757: -78.98408,13.977282 - 15758: -78.56794,14.690859 - 15759: -79.81635,14.244873 - 15760: -79.31104,13.47183 - 15761: -77.88429,14.601662 - 15762: -79.102974,15.077379 - 15763: -80.83252,12.16696 - 15764: -81.7718,11.987389 - 15765: -82.63379,12.507706 - 15766: -82.41086,13.087486 - 15767: -83.525505,12.805029 - 15768: -84.313194,13.07262 - 15769: -85.115746,12.611769 - 15770: -84.84823,11.898191 - 15771: -86.037186,12.091452 - 15772: -85.264366,13.132086 - 15773: -87.06678,11.972521 - 15774: -87.79502,13.132086 - 15775: -87.00734,13.132086 - 15776: -88.21116,14.024057 - 15777: -88.835365,14.068657 - 15778: -92.177795,16.112335 - 15779: -93.09924,16.186666 - 15780: -94.243614,16.082603 - 15781: -94.05041,17.197569 - 15782: -93.84234,18.3274 - 15783: -95.1502,18.104408 - 15784: -95.99733,17.093506 - 15785: -95.84871,16.260998 - 15786: -94.88268,16.84078 - 15787: -94.615166,17.450294 - 15788: -94.540855,18.357134 - 15789: -95.09075,18.95178 - 15790: -94.169304,19.486965 - 15791: -93.06952,18.624725 - 15792: -93.44106,17.851683 - 15793: -93.57691,20.183113 - 15794: -92.92299,19.722261 - 15795: -92.387955,20.822361 - 15796: -92.92299,21.818396 - 15797: -92.32851,22.190052 - 15798: -91.94209,21.075087 - 15799: -91.98668,20.168247 - 15800: -91.64486,22.04139 - 15801: -91.466515,22.85903 - 15802: -91.73403,23.706404 - 15803: -90.55993,24.434849 - 15804: -90.18838,23.929398 - 15805: -90.99093,23.914532 - 15806: -90.85717,24.970032 - 15807: -89.75738,24.984898 - 15808: -89.534454,24.598377 - 15809: -89.41556,25.534946 - 15810: -89.99517,26.114729 - 15811: -90.03976,22.963093 - 15812: -92.105576,24.286186 - 15813: -90.90176,21.967058 - 15814: -87.69034,27.50571 - 15815: -88.12125,28.249432 - 15816: -87.82405,29.21553 - 15817: -87.06609,28.650616 - 15818: -86.96206,27.922173 - 15819: -87.066895,29.809715 - 15820: -86.70998,29.601818 - 15821: -85.803505,30.330154 - 15822: -86.2345,31.014 - 15823: -85.03068,31.281593 - 15824: -84.138954,30.805874 - 15825: -84.064644,31.816776 - 15826: -84.80775,32.1587 - 15827: -83.20265,32.85741 - 15828: -83.09862,33.006073 - 15829: -82.578445,31.980305 - 15830: -81.82049,32.203297 - 15831: -82.96486,32.27763 - 15832: -83.88631,32.961475 - 15833: -82.14745,33.110138 - 15834: -81.865074,33.898045 - 15835: -81.33004,34.046707 - 15836: -80.83959,33.2142 - 15837: -81.33004,33.110138 - 15838: -79.97526,32.93942 - 15839: -78.56337,33.28134 - 15840: -78.77144,34.69363 - 15841: -79.78205,34.69363 - 15842: -79.94553,34.069252 - 15843: -78.39989,36.209984 - 15844: -79.455086,36.135654 - 15845: -80.094154,35.24368 - 15846: -78.949776,35.52614 - 15847: -78.89033,36.983025 - 15848: -78.13237,37.191154 - 15849: -81.14935,35.33288 - 15850: -80.2725,36.358646 - 15851: -80.36167,35.55587 - 15852: -80.85212,35.035553 - 15853: -78.32558,35.33288 - 15854: -82.05594,34.247646 - 15855: -78.42961,34.069252 - 15856: -77.98375,32.96915 - 15857: -76.93481,32.074207 - 15858: -75.95392,32.267467 - 15859: -74.60148,32.05934 - 15860: -74.943306,31.2863 - 15861: -74.45286,31.018707 - 15862: -73.84351,31.94041 - 15863: -73.858376,30.067268 - 15864: -72.90721,30.424057 - 15865: -72.53566,31.970146 - 15866: -73.145,29.398293 - 15867: -73.05583,28.313057 - 15868: -72.81804,27.852207 - 15869: -73.011246,28.937439 - 15870: -71.79473,31.969955 - 15871: -71.91363,32.95145 - 15872: -72.09197,34.319138 - 15873: -71.00704,34.00695 - 15874: -72.08651,35.82291 - 15875: -71.01644,36.28385 - 15876: -71.120476,37.74069 - 15877: -71.53661,38.394802 - 15878: -71.99734,38.766457 - 15879: -70.49627,39.435436 - 15880: -70.57058,38.12721 - 15881: -71.72982,37.10144 - 15882: -71.31368,36.729786 - 15883: -71.77441,37.785286 - 15884: -73.02281,38.32047 - 15885: -73.67674,39.078648 - 15886: -74.613045,39.004314 - 15887: -75.25211,38.15694 - 15888: -76.17355,38.008278 - 15889: -76.84235,38.171806 - 15890: -74.07801,37.948814 - 15891: -72.38711,40.07939 - 15892: -71.04953,39.915863 - 15893: -70.81174,39.425278 - 15894: -69.875435,40.74837 - 15895: -69.4593,41.253822 - 15896: -68.864815,40.391582 - 15897: -69.81599,39.529343 - 15898: -69.013435,39.053623 - 15899: -68.46354,40.005062 - 15900: -67.92851,40.807835 - 15901: -67.75017,41.328156 - 15902: -67.18541,40.59971 - 15903: -67.09624,40.019928 - 15904: -65.77352,40.763237 - 15905: -65.08987,40.956497 - 15906: -66.6801,41.922802 - 15907: -66.650375,42.39852 - 15908: -64.48052,41.848473 - 15909: -64.495384,41.13489 - 15910: -63.63339,41.10516 - 15911: -63.915768,42.264725 - 15912: -65.580315,41.789005 - 15913: -65.52087,42.309322 - 15914: -67.14082,42.175526 - 15915: -64.006035,43.098583 - 15916: -62.50497,43.083717 - 15917: -63.1589,41.953888 - 15918: -62.133423,41.299774 - 15919: -61.093082,42.028217 - 15920: -61.182255,43.083717 - 15921: -60.364845,43.440506 - 15922: -60.825565,41.924152 - 15923: -61.95508,41.240307 - 15924: -62.93597,41.38897 - 15925: -61.22684,41.136246 - 15926: -61.984802,42.37014 - 15927: -59.90412,42.53367 - 15928: -59.948708,43.410774 - 15929: -61.642975,44.020287 - 15930: -62.014526,44.16895 - 15931: -60.379707,45.105522 - 15932: -60.454018,45.804234 - 15933: -59.696056,45.254185 - 15934: -60.70667,44.347343 - 15935: -59.74064,44.183815 - 15936: -61.494354,45.17985 - 15937: -60.09733,46.32455 - 15938: -58.75975,45.967762 - 15939: -58.62599,45.298782 - 15940: -58.001785,45.670437 - 15941: -59.20561,45.93803 - 15942: -58.209854,46.889465 - 15943: -57.332996,46.161022 - 15944: -56.946587,45.194717 - 15945: -56.812828,44.733868 - 15946: -58.417923,44.40681 - 15947: -58.715164,43.73783 - 15948: -58.86378,42.905323 - 15949: -57.9572,41.67143 - 15950: -57.71941,41.165977 - 15951: -58.8192,41.136246 - 15952: -56.53045,41.017315 - 15953: -56.485863,41.716026 - 15954: -58.670578,42.102547 - 15955: -56.76824,43.172916 - 15956: -57.392445,44.064888 - 15957: -57.600513,44.927128 - 15958: -55.817074,43.54457 - 15959: -55.698177,42.816124 - 15960: -55.7279,41.968754 - 15961: -54.851044,41.299774 - 15962: -54.59839,41.38897 - 15963: -55.296906,40.913254 - 15964: -54.89563,42.280945 - 15965: -55.00058,40.073093 - 15966: -54.16831,40.979935 - 15967: -52.9199,40.10283 - 15968: -52.221386,39.998764 - 15969: -53.172554,39.12166 - 15970: -28.535511,41.975063 - 15971: -28.030201,42.242657 + 15157: -138.43307,16.892298 + 15158: -137.76428,18.09646 + 15159: -137.87575,13.199259 + 15160: -137.11778,14.158131 + 15161: -137.7197,14.202728 + 15162: -136.40442,15.250795 + 15163: -135.71333,16.454958 + 15164: -135.98085,18.060509 + 15165: -136.96175,17.235435 + 15166: -137.27385,16.878645 + 15167: -135.24518,17.190834 + 15168: -134.39804,18.038208 + 15169: -134.10823,19.063976 + 15170: -135.55728,17.726019 + 15171: -136.07002,17.235435 + 15172: -136.76111,18.394997 + 15173: -136.1592,19.264671 + 15174: -135.06683,20.022846 + 15175: -135.35664,20.379635 + 15176: -135.44582,18.684889 + 15177: -135.11142,18.216602 + 15178: -136.91716,19.487663 + 15179: -137.63052,19.62146 + 15180: -136.96175,20.87022 + 15181: -136.96175,21.895988 + 15182: -138.09868,20.513432 + 15183: -138.63371,19.353868 + 15184: -139.57002,19.420765 + 15185: -137.80887,20.24584 + 15186: -136.76111,20.268139 + 15187: -138.74518,20.00055 + 15188: -137.63052,21.160112 + 15189: -138.09868,21.717594 + 15190: -138.29932,22.408873 + 15191: -139.10187,21.895988 + 15192: -140.10506,20.781025 + 15193: -140.99677,20.134344 + 15194: -139.92671,20.468834 + 15195: -140.08276,22.275078 + 15196: -140.61778,22.49807 + 15197: -141.01906,21.405405 + 15198: -140.50633,20.736425 + 15199: -140.08276,19.732956 + 15200: -140.75154,18.997078 + 15201: -140.52861,18.261202 + 15202: -139.45856,18.461895 + 15203: -141.58664,18.394997 + 15204: -140.96243,18.417297 + 15205: -140.49428,17.36923 + 15206: -140.87326,16.298862 + 15207: -139.88847,16.054493 + 15208: -138.79613,16.277485 + 15209: -139.88847,15.140221 + 15210: -138.50632,15.47471 + 15211: -138.90758,14.761131 + 15212: -140.97478,17.280954 + 15213: -141.8888,18.135513 + 15214: -141.53212,20.11564 + 15215: -141.79964,20.985313 + 15216: -140.32831,21.74349 + 15217: -141.62129,22.05568 + 15218: -141.88881,23.817326 + 15219: -142.93658,22.390171 + 15220: -141.88881,23.170647 + 15221: -142.60219,23.192945 + 15222: -142.31238,22.122578 + 15223: -140.79646,24.37481 + 15224: -141.95569,24.6647 + 15225: -141.88881,25.779665 + 15226: -140.21684,25.177584 + 15227: -138.61174,24.887691 + 15228: -139.79327,23.861923 + 15229: -139.74869,23.282143 + 15230: -138.96843,23.460537 + 15231: -138.76779,23.928822 + 15232: -139.48117,22.300972 + 15233: -138.79008,22.880754 + 15234: -140.32831,23.482836 + 15235: -139.63722,25.021488 + 15236: -137.89534,24.352509 + 15237: -137.00296,24.909992 + 15238: -136.91379,23.594332 + 15239: -136.245,23.438236 + 15240: -135.64308,23.884224 + 15241: -135.86601,23.103748 + 15242: -137.09213,22.457067 + 15243: -135.75455,22.345572 + 15244: -134.55074,22.41247 + 15245: -135.28639,21.431301 + 15246: -135.79913,21.029911 + 15247: -134.57303,21.052212 + 15248: -133.72589,21.3867 + 15249: -133.65901,20.45013 + 15250: -133.99341,19.714252 + 15251: -132.67812,20.294035 + 15252: -132.54436,21.186008 + 15253: -132.23225,20.11564 + 15254: -133.3915,18.933777 + 15255: -133.23544,18.131002 + 15256: -133.07939,17.974907 + 15257: -132.78958,19.312866 + 15258: -133.19086,19.803452 + 15259: -133.99341,17.595818 + 15260: -134.86284,16.59235 + 15261: -134.81825,16.057167 + 15262: -136.49022,16.190964 + 15263: -135.84372,15.276691 + 15264: -133.7394,22.733229 + 15265: -133.80627,23.848194 + 15266: -134.58653,24.071186 + 15267: -134.87633,24.071186 + 15268: -134.87633,25.074656 + 15269: -132.06741,22.01965 + 15270: -131.91136,20.815487 + 15271: -132.1343,19.589027 + 15272: -132.06741,18.986946 + 15330: 72.227875,58.82408 + 15331: 72.004944,58.274033 + 15332: 74.308556,58.125374 + 15333: 73.83297,59.924187 + 15334: 74.70983,60.444496 + 15335: 73.17904,58.79435 + 15336: 73.35738,58.259167 + 15337: 74.20452,57.396927 + 15338: 75.12597,57.08474 + 15339: 75.735306,58.482162 + 15340: 75.12597,60.013382 + 15341: 76.017685,59.879585 + 15342: 75.82448,57.709118 + 15343: 77.41471,57.723984 + 15344: 77.84571,58.705154 + 15345: 78.54423,60.13231 + 15346: 79.28732,58.749752 + 15347: 78.098366,56.846878 + 15348: 77.147194,56.68335 + 15349: 76.939125,58.05104 + 15350: 77.295815,55.731915 + 15351: 78.67798,55.731915 + 15352: 79.04953,56.698215 + 15353: 79.956116,57.010406 + 15354: 80.75866,57.218533 + 15355: 80.1939,58.83895 + 15356: 79.70346,59.76066 + 15357: 81.68011,58.318634 + 15358: 80.40197,58.184837 + 15359: 79.584564,60.801292 + 15360: 78.96036,61.69326 + 15361: 77.62278,62.45144 + 15362: 77.593056,60.801292 + 15363: 78.06864,59.62686 + 15364: 76.96885,60.295837 + 15365: 78.024055,61.767593 + 15366: 76.374374,61.827057 + 15367: 76.41896,62.540634 + 15368: 77.013435,63.23935 + 15369: 75.40834,62.45144 + 15370: 75.52724,61.69326 + 15371: 74.97735,61.51487 + 15372: 74.0559,62.689293 + 15373: 74.9179,63.700195 + 15374: 74.68011,62.65956 + 15375: 73.99645,63.744797 + 15376: 73.654625,62.124382 + 15377: 74.1748,61.782455 + 15378: 73.26821,61.09861 + 15379: 72.53998,60.816154 + 15380: 71.85632,61.90139 + 15381: 71.93063,62.45144 + 15382: 71.03892,61.90139 + 15383: 71.29157,60.697227 + 15384: 72.5697,61.85679 + 15385: 71.945496,60.831024 + 15386: 70.4593,60.32557 + 15387: 69.06572,61.415985 + 15388: 69.95739,62.352554 + 15389: 70.67077,62.545815 + 15390: 70.18032,63.170197 + 15391: 71.40577,63.110733 + 15392: 72.32722,64.03243 + 15393: 72.53528,63.006668 + 15394: 73.10004,64.76088 + 15395: 73.085175,65.20686 + 15396: 73.872856,64.53789 + 15397: 75.58199,64.34463 + 15398: 76.17647,63.735115 + 15399: 78.780136,59.498245 + 15400: 78.51262,62.337685 + 15401: 77.90328,63.19993 + 15402: 74.82684,59.280273 + 15403: 77.97759,56.084038 + 15404: 80.960945,58.611294 + 15405: 78.3601,57.83825 + 15414: 154.53595,46.02356 + 15415: 153.9712,48.595413 + 15416: 152.52959,47.16826 + 15417: 151.96483,47.67371 + 15418: 153.30241,48.89274 + 15419: 152.09859,50.1415 + 15420: 150.9988,48.981934 + 15421: 151.20686,48.104828 + 15422: 151.32576,50.186096 + 15423: 149.89902,49.561718 + 15424: 150.35974,48.595413 + 15425: 150.41919,50.06717 + 15426: 149.58691,50.92941 + 15427: 150.65697,51.717316 + 15428: 149.24509,49.130596 + 15429: 149.15591,50.528023 + 15430: 150.52321,50.86994 + 15431: 150.00305,52.05924 + 15432: 150.95421,53.099876 + 15433: 151.53383,51.1524 + 15434: 152.84169,52.2079 + 15435: 152.81197,51.137535 + 15436: 151.57841,52.832283 + 15437: 152.39583,51.583523 + 15438: 153.02003,50.364494 + 15439: 152.58904,49.413055 + 15440: 153.27269,49.59145 + 15441: 154.10497,47.525047 + 15442: 153.40645,47.034462 + 15443: 153.88203,46.484413 + 15444: 154.06038,46.05329 + 15445: 155.30878,46.26142 + 15446: 150.2382,48.006878 + 15485: 113.34822,-47.327263 + 15486: 113.05841,-48.37533 + 15487: 114.440575,-47.661755 + 15488: 114.26223,-46.078503 + 15489: 116.13484,-46.54679 + 15490: 114.77497,-48.37533 + 15491: 114.75268,-48.79902 + 15492: 115.44376,-47.79555 + 15493: 114.77497,-46.50219 + 15494: 112.38962,-47.015076 + 15495: 112.16669,-46.234596 + 15496: 113.3928,-45.275726 + 15497: 113.727196,-44.58445 + 15498: 115.22083,-45.16423 + 15499: 115.35459,-45.94471 + 15500: 115.55522,-44.472954 + 15501: 115.75586,-43.870872 + 15502: 117.02656,-44.472954 + 15503: 116.380066,-45.677116 + 15504: 117.76223,-45.34263 + 15505: 115.10937,-44.071564 + 15506: 116.29089,-44.718246 + 15507: 116.87051,-43.33569 + 15508: 117.360954,-42.912003 + 15509: 117.78452,-44.673645 + 15510: 118.85459,-44.183064 + 15511: 119.52338,-44.093864 + 15512: 119.032936,-45.85551 + 15513: 117.27178,-46.59139 + 15514: 117.04885,-47.639454 + 15515: 118.230385,-47.572556 + 15516: 118.43102,-47.015076 + 15517: 115.75586,-49.3788 + 15518: 115.75586,-50.025482 + 15519: 117.16032,-48.82132 + 15520: 116.46924,-49.913986 + 15521: 118.40873,-50.04778 + 15522: 119.27815,-49.245003 + 15523: 119.83548,-48.13004 + 15524: 119.300446,-47.661755 + 15525: 120.03612,-46.81438 + 15526: 120.860954,-45.989307 + 15527: 119.90236,-45.25343 + 15528: 119.434204,-44.673645 + 15529: 119.880066,-45.94471 + 15530: 121.21764,-44.89664 + 15531: 121.730385,-45.030437 + 15532: 122.04249,-43.60328 + 15533: 121.21764,-43.402588 + 15534: 120.236755,-43.893173 + 15535: 122.06478,-45.788612 + 15536: 120.88325,-46.925877 + 15537: 121.53986,-42.38497 + 15538: 120.69273,-41.73829 + 15539: 119.31057,-42.36267 + 15540: 121.7405,-40.77942 + 15541: 122.855156,-41.047012 + 15542: 122.67681,-43.41074 + 15543: 122.94433,-44.7264 + 15544: 122.409294,-44.34731 + 15545: 122.39745,-39.75881 + 15546: 123.66815,-39.9149 + 15547: 124.314644,-39.156727 + 15548: 123.48981,-37.796467 + 15549: 123.400635,-39.31282 + 15550: 124.247765,-37.952564 + 15551: 122.620384,-38.019463 + 15552: 121.86242,-38.889133 + 15553: 125.36242,-37.885666 + 15554: 126.0758,-37.796467 + 15555: 126.343315,-38.889133 + 15556: 126.878334,-38.309353 + 15557: 125.22866,-37.038292 + 15558: 123.73503,-36.926796 + 15559: 123.89108,-35.611134 + 15560: 125.22866,-35.52194 + 15561: 126.25414,-36.05712 + 15562: 126.65542,-35.298946 + 15563: 126.16497,-34.919857 + 15564: 122.821014,-36.7484 + 15565: 125.238014,-34.045795 + 15566: 125.05967,-33.153824 + 15567: 125.86222,-33.62211 + 15568: 126.01827,-33.9566 + 15569: 126.44184,-33.176125 + 15570: 126.70936,-32.083458 + 15571: 127.445015,-32.88623 + 15572: 127.890884,-34.670177 + 15573: 127.2221,-36.43182 + 15574: 126.89486,-39.817314 + 15575: 128.7006,-39.126038 + 15576: 129.07957,-40.865383 + 15577: 129.74837,-41.22217 + 15578: 130.52863,-40.419395 + 15579: 130.9299,-40.151806 + 15580: 130.70697,-41.333668 + 15581: 131.42035,-41.400566 + 15582: 132.66875,-40.820786 + 15583: 129.68149,-41.84655 + 15584: 129.16875,-42.114143 + 15585: 129.6369,-43.898087 + 15586: 130.70697,-42.939217 + 15587: 129.25792,-43.095314 + 15588: 130.75156,-42.047245 + 15589: 128.7452,-43.608196 + 15590: 128.3885,-40.014523 + 15591: 131.78331,-40.839596 + 15592: 132.31834,-40.906494 + 15593: 133.61134,-40.795 + 15599: 104.10985,-38.54268 + 15600: 103.75316,-37.56151 + 15601: 103.06207,-38.609573 + 15602: 104.288185,-39.033264 + 15603: 102.081184,-37.18242 + 15604: 103.84233,-36.959427 + 15605: 104.8901,-36.89253 + 15606: 104.22131,-37.895996 + 15607: 103.218124,-37.7622 + 15608: 104.511116,-37.18242 + 15609: 105.2022,-38.721073 + 15610: 105.38055,-38.988663 + 15611: 106.29456,-38.275085 + 15612: 106.96335,-39.34545 + 15613: 105.24679,-39.902935 + 15614: 104.288185,-40.05903 + 15615: 104.19902,-40.66111 + 15616: 105.49201,-41.486187 + 15617: 105.447426,-41.0402 + 15618: 104.90551,-40.929367 + 15619: 107.55837,-41.39765 + 15620: 106.577484,-40.126595 + 15621: 107.023346,-39.769806 + 15622: 107.04564,-41.53145 + 15623: 107.023346,-42.624115 + 15624: 106.923645,-41.955135 + 15625: 106.25485,-41.977436 + 15626: 107.703896,-41.888237 + 15627: 108.46186,-40.996265 + 15628: 106.96823,-40.483383 + 15629: 106.50008,-40.79557 + 15630: 107.770775,-40.55028 + 15631: 107.63702,-39.9259 + 15632: 106.12109,-39.65831 + 15633: 106.54466,-38.810936 + 15634: 107.6816,-38.788635 + 15635: 108.90772,-40.26039 + 15636: 108.84084,-40.996265 + 15637: 98.15124,-29.652235 + 15638: 98.19582,-28.269678 + 15639: 98.82003,-27.689896 + 15640: 98.86462,-28.648766 + 15641: 99.08755,-28.737965 + 15642: 99.778625,-27.756794 + 15643: 99.13213,-26.99862 + 15644: 100.11302,-26.463434 + 15645: 100.46971,-26.173544 + 15646: 100.91557,-26.887121 + 15647: 99.95697,-27.266209 + 15648: 101.00474,-26.976318 + 15649: 101.67353,-26.99862 + 15650: 101.02703,-26.084347 + 15651: 100.40283,-26.976318 + 15652: 100.00156,-28.135883 + 15653: 98.062065,-28.782562 + 15654: 98.998375,-28.113583 + 15655: 98.21812,-27.887585 + 15656: 98.062065,-28.428534 + 15668: -103.10218,2.1531644 + 15669: -102.136154,2.1085658 + 15670: -101.66057,2.1085658 + 15671: -102.58201,2.1531644 + 15672: -99.72851,2.0045023 + 15673: -104.32087,2.1234317 + 15674: -95.80402,2.9559398 + 15675: -95.313576,3.1640658 + 15676: -94.80827,2.8221436 + 15677: -93.91655,2.881609 + 15678: -93.15859,3.0154042 + 15679: -94.169205,3.134334 + 15680: -92.891075,2.8072777 + 15710: -90.88633,3.0785747 + 15711: -91.74832,3.8367505 + 15712: -90.633675,4.1340756 + 15713: -89.90543,4.728723 + 15714: -90.76743,5.263907 + 15715: -91.73346,5.7247586 + 15716: -90.72285,7.166781 + 15717: -89.78654,6.958654 + 15718: -90.33643,6.289675 + 15719: -88.93941,7.0924497 + 15720: -89.50416,8.207415 + 15721: -90.633675,8.519606 + 15722: -91.79291,8.445274 + 15723: -91.138985,10.035957 + 15724: -91.94153,10.600874 + 15725: -91.94153,6.8099923 + 15726: -91.22816,6.4829354 + 15727: -88.15498,8.010073 + 15728: -86.41613,8.054672 + 15729: -87.51592,6.969439 + 15730: -88.82378,4.962501 + 15731: -88.1104,6.0774665 + 15732: -86.77282,7.058636 + 15733: -85.940544,7.534355 + 15734: -85.19745,8.143869 + 15735: -85.33121,7.058636 + 15736: -83.309975,7.0437703 + 15737: -83.027596,7.965475 + 15738: -81.526535,8.054672 + 15739: -78.99537,8.001192 + 15740: -76.88497,7.882263 + 15741: -76.260765,8.224186 + 15742: -75.71087,8.001192 + 15743: -74.96777,8.179586 + 15744: -73.99045,12.2528 + 15745: -75.967094,12.119005 + 15746: -77.06688,12.327131 + 15747: -76.50213,13.323168 + 15748: -75.01592,12.133871 + 15749: -77.43843,13.04071 + 15750: -78.13695,12.089273 + 15751: -79.474525,12.044674 + 15752: -79.78663,12.981245 + 15753: -78.98408,13.977282 + 15754: -78.56794,14.690859 + 15755: -79.81635,14.244873 + 15756: -79.31104,13.47183 + 15757: -77.88429,14.601662 + 15758: -79.102974,15.077379 + 15759: -80.83252,12.16696 + 15760: -81.7718,11.987389 + 15761: -82.63379,12.507706 + 15762: -82.41086,13.087486 + 15763: -83.525505,12.805029 + 15764: -84.313194,13.07262 + 15765: -85.115746,12.611769 + 15766: -84.84823,11.898191 + 15767: -86.037186,12.091452 + 15768: -85.264366,13.132086 + 15769: -87.06678,11.972521 + 15770: -87.79502,13.132086 + 15771: -87.00734,13.132086 + 15772: -88.21116,14.024057 + 15773: -88.835365,14.068657 + 15774: -92.177795,16.112335 + 15775: -93.09924,16.186666 + 15776: -94.243614,16.082603 + 15777: -94.05041,17.197569 + 15778: -93.84234,18.3274 + 15779: -95.1502,18.104408 + 15780: -95.99733,17.093506 + 15781: -95.84871,16.260998 + 15782: -94.88268,16.84078 + 15783: -94.615166,17.450294 + 15784: -94.540855,18.357134 + 15785: -95.09075,18.95178 + 15786: -94.169304,19.486965 + 15787: -93.06952,18.624725 + 15788: -93.44106,17.851683 + 15789: -93.57691,20.183113 + 15790: -92.92299,19.722261 + 15791: -92.387955,20.822361 + 15792: -92.92299,21.818396 + 15793: -92.32851,22.190052 + 15794: -91.94209,21.075087 + 15795: -91.98668,20.168247 + 15796: -91.64486,22.04139 + 15797: -91.466515,22.85903 + 15798: -91.73403,23.706404 + 15799: -90.55993,24.434849 + 15800: -90.18838,23.929398 + 15801: -90.99093,23.914532 + 15802: -90.85717,24.970032 + 15803: -89.75738,24.984898 + 15804: -89.534454,24.598377 + 15805: -89.41556,25.534946 + 15806: -89.99517,26.114729 + 15807: -90.03976,22.963093 + 15808: -92.105576,24.286186 + 15809: -90.90176,21.967058 + 15810: -87.69034,27.50571 + 15811: -88.12125,28.249432 + 15812: -87.82405,29.21553 + 15813: -87.06609,28.650616 + 15814: -86.96206,27.922173 + 15815: -87.066895,29.809715 + 15816: -86.70998,29.601818 + 15817: -85.803505,30.330154 + 15818: -86.2345,31.014 + 15819: -85.03068,31.281593 + 15820: -84.138954,30.805874 + 15821: -84.064644,31.816776 + 15822: -84.80775,32.1587 + 15823: -83.20265,32.85741 + 15824: -83.09862,33.006073 + 15825: -82.578445,31.980305 + 15826: -81.82049,32.203297 + 15827: -82.96486,32.27763 + 15828: -83.88631,32.961475 + 15829: -82.14745,33.110138 + 15830: -81.865074,33.898045 + 15831: -81.33004,34.046707 + 15832: -80.83959,33.2142 + 15833: -81.33004,33.110138 + 15834: -79.97526,32.93942 + 15835: -78.56337,33.28134 + 15836: -78.77144,34.69363 + 15837: -79.78205,34.69363 + 15838: -79.94553,34.069252 + 15839: -78.39989,36.209984 + 15840: -79.455086,36.135654 + 15841: -80.094154,35.24368 + 15842: -78.949776,35.52614 + 15843: -78.89033,36.983025 + 15844: -78.13237,37.191154 + 15845: -81.14935,35.33288 + 15846: -80.2725,36.358646 + 15847: -80.36167,35.55587 + 15848: -80.85212,35.035553 + 15849: -78.32558,35.33288 + 15850: -82.05594,34.247646 + 15851: -78.42961,34.069252 + 15852: -77.98375,32.96915 + 15853: -76.93481,32.074207 + 15854: -75.95392,32.267467 + 15855: -74.60148,32.05934 + 15856: -74.943306,31.2863 + 15857: -74.45286,31.018707 + 15858: -73.84351,31.94041 + 15859: -73.858376,30.067268 + 15860: -72.90721,30.424057 + 15861: -72.53566,31.970146 + 15862: -73.145,29.398293 + 15863: -73.05583,28.313057 + 15864: -72.81804,27.852207 + 15865: -73.011246,28.937439 + 15866: -71.79473,31.969955 + 15867: -71.91363,32.95145 + 15868: -72.09197,34.319138 + 15869: -71.00704,34.00695 + 15870: -72.08651,35.82291 + 15871: -71.01644,36.28385 + 15872: -71.120476,37.74069 + 15873: -71.53661,38.394802 + 15874: -71.99734,38.766457 + 15875: -70.49627,39.435436 + 15876: -70.57058,38.12721 + 15877: -71.72982,37.10144 + 15878: -71.31368,36.729786 + 15879: -71.77441,37.785286 + 15880: -73.02281,38.32047 + 15881: -73.67674,39.078648 + 15882: -74.613045,39.004314 + 15883: -75.25211,38.15694 + 15884: -76.17355,38.008278 + 15885: -76.84235,38.171806 + 15886: -74.07801,37.948814 + 15887: -72.38711,40.07939 + 15888: -71.04953,39.915863 + 15889: -70.81174,39.425278 + 15890: -69.875435,40.74837 + 15891: -69.4593,41.253822 + 15892: -68.864815,40.391582 + 15893: -69.81599,39.529343 + 15894: -69.013435,39.053623 + 15895: -68.46354,40.005062 + 15896: -67.92851,40.807835 + 15897: -67.75017,41.328156 + 15898: -67.18541,40.59971 + 15899: -67.09624,40.019928 + 15900: -65.77352,40.763237 + 15901: -65.08987,40.956497 + 15902: -66.6801,41.922802 + 15903: -66.650375,42.39852 + 15904: -64.48052,41.848473 + 15905: -64.495384,41.13489 + 15906: -63.63339,41.10516 + 15907: -63.915768,42.264725 + 15908: -65.580315,41.789005 + 15909: -65.52087,42.309322 + 15910: -67.14082,42.175526 + 15911: -64.006035,43.098583 + 15912: -62.50497,43.083717 + 15913: -63.1589,41.953888 + 15914: -62.133423,41.299774 + 15915: -61.093082,42.028217 + 15916: -61.182255,43.083717 + 15917: -60.364845,43.440506 + 15918: -60.825565,41.924152 + 15919: -61.95508,41.240307 + 15920: -62.93597,41.38897 + 15921: -61.22684,41.136246 + 15922: -61.984802,42.37014 + 15923: -59.90412,42.53367 + 15924: -59.948708,43.410774 + 15925: -61.642975,44.020287 + 15926: -62.014526,44.16895 + 15927: -60.379707,45.105522 + 15928: -60.454018,45.804234 + 15929: -59.696056,45.254185 + 15930: -60.70667,44.347343 + 15931: -59.74064,44.183815 + 15932: -61.494354,45.17985 + 15933: -60.09733,46.32455 + 15934: -58.75975,45.967762 + 15935: -58.62599,45.298782 + 15936: -58.001785,45.670437 + 15937: -59.20561,45.93803 + 15938: -58.209854,46.889465 + 15939: -57.332996,46.161022 + 15940: -56.946587,45.194717 + 15941: -56.812828,44.733868 + 15942: -58.417923,44.40681 + 15943: -58.715164,43.73783 + 15944: -58.86378,42.905323 + 15945: -57.9572,41.67143 + 15946: -57.71941,41.165977 + 15947: -58.8192,41.136246 + 15948: -56.53045,41.017315 + 15949: -56.485863,41.716026 + 15950: -58.670578,42.102547 + 15951: -56.76824,43.172916 + 15952: -57.392445,44.064888 + 15953: -57.600513,44.927128 + 15954: -55.817074,43.54457 + 15955: -55.698177,42.816124 + 15956: -55.7279,41.968754 + 15957: -54.851044,41.299774 + 15958: -54.59839,41.38897 + 15959: -55.296906,40.913254 + 15960: -54.89563,42.280945 + 15961: -55.00058,40.073093 + 15962: -54.16831,40.979935 + 15963: -52.9199,40.10283 + 15964: -52.221386,39.998764 + 15965: -53.172554,39.12166 + 15966: -28.535511,41.975063 + 15967: -28.030201,42.242657 - node: color: '#FFFFFFFF' id: Grassd3 @@ -12333,12 +12346,12 @@ entities: 3280: 30,20 3285: 25.558552,19.989456 4541: -35.873806,-24.878437 - 5767: 44.914944,-9.031243 - 6136: -57.72417,-86.07927 - 6139: -62.843956,-82.7966 - 6140: -65.60181,-83.78445 - 6142: -68.010956,-84.03717 - 6143: -71.97825,-80.99279 + 5763: 44.914944,-9.031243 + 6132: -57.72417,-86.07927 + 6135: -62.843956,-82.7966 + 6136: -65.60181,-83.78445 + 6138: -68.010956,-84.03717 + 6139: -71.97825,-80.99279 - node: cleanable: True color: '#FFFFFFFF' @@ -12369,159 +12382,159 @@ entities: color: '#DCBFFFCC' id: Grasse1 decals: - 8112: -129.50648,-31.658789 - 8113: -131.13356,-30.473171 - 8114: -129.7514,-29.068316 - 8115: -127.70045,-29.046017 - 8116: -128.34695,-30.651566 - 8117: -126.83102,-30.963757 - 8118: -125.9393,-29.380507 - 8119: -124.55714,-29.358208 - 8120: -124.980705,-31.320545 - 8121: -123.977516,-32.078724 - 8122: -122.66223,-29.960289 - 8123: -121.480705,-29.6258 - 8124: -121.971146,-31.744232 - 8125: -122.46159,-33.327484 - 8126: -121.547585,-33.929565 - 8127: -121.1686,-32.19022 - 8128: -121.815094,-30.785362 - 8129: -122.7514,-30.383976 - 8130: -124.44567,-32.212517 - 8131: -126.07306,-31.342846 - 8132: -128.43613,-32.10102 - 8133: -128.25778,-33.41668 - 8134: -127.76733,-32.903797 - 8135: -128.4584,-34.442448 - 8136: -129.97433,-33.327484 - 8137: -130.13039,-31.833431 - 8138: -129.99663,-34.843838 - 8139: -128.34695,-34.799236 - 8140: -129.1388,-35.608994 - 8141: -127.26613,-36.88049 - 8142: -126.686516,-37.281876 - 8143: -127.06549,-38.530636 - 8144: -126.01772,-39.221916 - 8145: -124.5018,-38.44144 - 8146: -122.94129,-38.44144 - 8147: -124.30116,-40.00239 - 8148: -123.27569,-40.537575 - 8149: -122.33938,-39.31111 - 8150: -121.87122,-38.196148 - 8151: -123.40944,-39.28881 - 8152: -122.45084,-36.835888 - 8153: -123.09734,-35.720924 - 8154: -122.094154,-34.382965 - 8155: -121.04639,-34.628258 - 8156: -123.56549,-33.55789 - 8157: -123.92218,-33.424095 - 8158: -123.72154,-34.22687 - 8159: -125.14829,-32.599022 - 8160: -125.39352,-31.39486 - 8161: -127.0432,-32.532124 - 8162: -123.2311,-31.573254 - 8163: -122.71836,-32.175335 - 8164: -124.30116,-30.525185 - 8165: -123.11964,-29.231827 - 8166: -120.06549,-35.966217 - 8167: -120.890335,-37.43797 - 8168: -120.26613,-38.32994 + 8108: -129.50648,-31.658789 + 8109: -131.13356,-30.473171 + 8110: -129.7514,-29.068316 + 8111: -127.70045,-29.046017 + 8112: -128.34695,-30.651566 + 8113: -126.83102,-30.963757 + 8114: -125.9393,-29.380507 + 8115: -124.55714,-29.358208 + 8116: -124.980705,-31.320545 + 8117: -123.977516,-32.078724 + 8118: -122.66223,-29.960289 + 8119: -121.480705,-29.6258 + 8120: -121.971146,-31.744232 + 8121: -122.46159,-33.327484 + 8122: -121.547585,-33.929565 + 8123: -121.1686,-32.19022 + 8124: -121.815094,-30.785362 + 8125: -122.7514,-30.383976 + 8126: -124.44567,-32.212517 + 8127: -126.07306,-31.342846 + 8128: -128.43613,-32.10102 + 8129: -128.25778,-33.41668 + 8130: -127.76733,-32.903797 + 8131: -128.4584,-34.442448 + 8132: -129.97433,-33.327484 + 8133: -130.13039,-31.833431 + 8134: -129.99663,-34.843838 + 8135: -128.34695,-34.799236 + 8136: -129.1388,-35.608994 + 8137: -127.26613,-36.88049 + 8138: -126.686516,-37.281876 + 8139: -127.06549,-38.530636 + 8140: -126.01772,-39.221916 + 8141: -124.5018,-38.44144 + 8142: -122.94129,-38.44144 + 8143: -124.30116,-40.00239 + 8144: -123.27569,-40.537575 + 8145: -122.33938,-39.31111 + 8146: -121.87122,-38.196148 + 8147: -123.40944,-39.28881 + 8148: -122.45084,-36.835888 + 8149: -123.09734,-35.720924 + 8150: -122.094154,-34.382965 + 8151: -121.04639,-34.628258 + 8152: -123.56549,-33.55789 + 8153: -123.92218,-33.424095 + 8154: -123.72154,-34.22687 + 8155: -125.14829,-32.599022 + 8156: -125.39352,-31.39486 + 8157: -127.0432,-32.532124 + 8158: -123.2311,-31.573254 + 8159: -122.71836,-32.175335 + 8160: -124.30116,-30.525185 + 8161: -123.11964,-29.231827 + 8162: -120.06549,-35.966217 + 8163: -120.890335,-37.43797 + 8164: -120.26613,-38.32994 - node: cleanable: True color: '#FFFFFFCC' id: Grasse1 decals: - 15147: -138.93506,20.752907 - 15148: -137.27423,15.6128235 - 15149: -134.57677,18.846222 - 15150: -138.67868,18.333338 - 15151: -141.73282,19.046917 - 15152: -140.97487,23.149988 - 15153: -134.73282,22.926994 - 15154: -135.86977,24.755539 - 15155: -138.03218,23.306084 - 15156: -142.51308,23.75207 - 15157: -136.31563,20.20648 - 15158: -133.10544,21.968124 - 15159: -136.36021,13.940374 - 15160: -139.68187,16.928482 - 15321: 69.82731,61.26214 - 15322: 72.99291,62.614967 - 15323: 72.39843,59.79039 - 15324: 75.653206,63.165016 - 15325: 78.38782,60.593163 - 15326: 76.17338,56.817146 - 15327: 74.5237,58.571358 - 15328: 76.42603,61.009415 - 15329: 79.443016,57.649654 - 15330: 74.61287,65.00842 - 15331: 76.95138,59.106544 - 15332: 74.33567,60.831024 - 15333: 71.452446,63.62587 - 15414: 149.55719,49.963104 - 15415: 151.71217,52.2079 - 15416: 153.36186,47.926437 - 15417: 152.27693,48.521084 - 15466: 113.45224,-46.605293 - 15467: 116.283455,-48.36694 - 15468: 119.493645,-46.82829 - 15469: 118.11148,-43.416496 - 15470: 119.91721,-42.992805 - 15471: 118.73568,-48.500736 - 15472: 117.59874,-49.749496 - 15473: 120.809296,-44.54574 - 15474: 122.21375,-42.18201 - 15475: 122.81567,-38.859413 - 15476: 124.68828,-36.60718 - 15477: 124.91121,-39.06011 - 15478: 127.541794,-39.416897 - 15479: 127.74242,-38.23503 - 15480: 125.53541,-39.907482 - 15481: 126.61198,-37.14691 - 15482: 124.828545,-34.894684 - 15483: 125.943184,-32.10727 - 15484: 128.03874,-33.44523 - 15485: 126.92408,-34.091908 - 15486: 129.47543,-40.235775 - 15487: 131.61557,-40.10198 - 15488: 130.09964,-42.5549 - 15598: 103.03978,-37.11552 - 15599: 105.26908,-37.8068 - 15600: 105.001564,-40.215126 - 15601: 106.13851,-41.396988 - 15602: 108.501564,-39.992134 - 15669: -103.84528,2.0788336 - 15670: -101.05123,2.0342345 - 15671: -100.36758,2.0639672 - 15685: -94.358246,3.0432925 - 15686: -91.67077,4.5703588 - 15687: -89.24826,5.8785844 - 15688: -91.41811,7.5138664 - 15689: -91.507286,9.193748 - 15690: -87.88096,7.2314086 - 15691: -84.40325,7.7219944 - 15692: -86.476456,12.621155 - 15693: -83.69724,12.115778 - 15694: -81.49768,12.7401085 - 15695: -77.5875,13.956526 - 15696: -78.43464,13.1388855 - 15697: -95.04906,16.444792 - 15698: -93.37958,16.786797 - 15699: -93.9592,19.12079 - 15700: -90.77551,23.08333 - 15701: -88.861404,27.031807 - 15702: -88.356094,26.288635 - 15703: -79.25886,33.417503 - 15704: -80.75992,34.354073 - 15705: -73.34987,30.959858 - 15706: -72.60677,39.35366 - 15707: -70.184265,38.450603 - 15708: -66.5937,41.503284 - 15709: -59.646137,41.5182 - 15710: -57.80325,42.752094 - 15711: -59.20028,44.818497 - 15712: -61.920025,43.12375 - 15713: -53.953995,40.10591 + 15143: -138.93506,20.752907 + 15144: -137.27423,15.6128235 + 15145: -134.57677,18.846222 + 15146: -138.67868,18.333338 + 15147: -141.73282,19.046917 + 15148: -140.97487,23.149988 + 15149: -134.73282,22.926994 + 15150: -135.86977,24.755539 + 15151: -138.03218,23.306084 + 15152: -142.51308,23.75207 + 15153: -136.31563,20.20648 + 15154: -133.10544,21.968124 + 15155: -136.36021,13.940374 + 15156: -139.68187,16.928482 + 15317: 69.82731,61.26214 + 15318: 72.99291,62.614967 + 15319: 72.39843,59.79039 + 15320: 75.653206,63.165016 + 15321: 78.38782,60.593163 + 15322: 76.17338,56.817146 + 15323: 74.5237,58.571358 + 15324: 76.42603,61.009415 + 15325: 79.443016,57.649654 + 15326: 74.61287,65.00842 + 15327: 76.95138,59.106544 + 15328: 74.33567,60.831024 + 15329: 71.452446,63.62587 + 15410: 149.55719,49.963104 + 15411: 151.71217,52.2079 + 15412: 153.36186,47.926437 + 15413: 152.27693,48.521084 + 15462: 113.45224,-46.605293 + 15463: 116.283455,-48.36694 + 15464: 119.493645,-46.82829 + 15465: 118.11148,-43.416496 + 15466: 119.91721,-42.992805 + 15467: 118.73568,-48.500736 + 15468: 117.59874,-49.749496 + 15469: 120.809296,-44.54574 + 15470: 122.21375,-42.18201 + 15471: 122.81567,-38.859413 + 15472: 124.68828,-36.60718 + 15473: 124.91121,-39.06011 + 15474: 127.541794,-39.416897 + 15475: 127.74242,-38.23503 + 15476: 125.53541,-39.907482 + 15477: 126.61198,-37.14691 + 15478: 124.828545,-34.894684 + 15479: 125.943184,-32.10727 + 15480: 128.03874,-33.44523 + 15481: 126.92408,-34.091908 + 15482: 129.47543,-40.235775 + 15483: 131.61557,-40.10198 + 15484: 130.09964,-42.5549 + 15594: 103.03978,-37.11552 + 15595: 105.26908,-37.8068 + 15596: 105.001564,-40.215126 + 15597: 106.13851,-41.396988 + 15598: 108.501564,-39.992134 + 15665: -103.84528,2.0788336 + 15666: -101.05123,2.0342345 + 15667: -100.36758,2.0639672 + 15681: -94.358246,3.0432925 + 15682: -91.67077,4.5703588 + 15683: -89.24826,5.8785844 + 15684: -91.41811,7.5138664 + 15685: -91.507286,9.193748 + 15686: -87.88096,7.2314086 + 15687: -84.40325,7.7219944 + 15688: -86.476456,12.621155 + 15689: -83.69724,12.115778 + 15690: -81.49768,12.7401085 + 15691: -77.5875,13.956526 + 15692: -78.43464,13.1388855 + 15693: -95.04906,16.444792 + 15694: -93.37958,16.786797 + 15695: -93.9592,19.12079 + 15696: -90.77551,23.08333 + 15697: -88.861404,27.031807 + 15698: -88.356094,26.288635 + 15699: -79.25886,33.417503 + 15700: -80.75992,34.354073 + 15701: -73.34987,30.959858 + 15702: -72.60677,39.35366 + 15703: -70.184265,38.450603 + 15704: -66.5937,41.503284 + 15705: -59.646137,41.5182 + 15706: -57.80325,42.752094 + 15707: -59.20028,44.818497 + 15708: -61.920025,43.12375 + 15709: -53.953995,40.10591 - node: color: '#FFFFFFFF' id: Grasse1 @@ -12546,12 +12559,12 @@ entities: 2879: 36,-32 2909: 33,-32 4542: -34.98187,-24.908169 - 5661: -3,33 - 5941: 34.813393,-37.986946 - 6132: -60.097767,-89.13488 - 6148: -74.39527,-77.0708 - 6149: -69.864365,-76.93862 - 6162: -74.1067,-87.98971 + 5657: -3,33 + 5937: 34.813393,-37.986946 + 6128: -60.097767,-89.13488 + 6144: -74.39527,-77.0708 + 6145: -69.864365,-76.93862 + 6158: -74.1067,-87.98971 - node: cleanable: True color: '#FFFFFFFF' @@ -12587,7 +12600,7 @@ entities: color: '#DCBFFFCC' id: Grasse2 decals: - 8111: -129.14441,-30.829712 + 8107: -129.14441,-30.829712 - node: color: '#FFFFFFFF' id: Grasse2 @@ -12629,11 +12642,11 @@ entities: 2886: 37,-29 3279: 26,20 4543: -33.495304,-24.818974 - 5659: -3,32 - 6135: -58.601242,-86.98611 - 6145: -77.1947,-78.861755 - 6153: -58.878845,-76.76831 - 6154: -58.536938,-76.909134 + 5655: -3,32 + 6131: -58.601242,-86.98611 + 6141: -77.1947,-78.861755 + 6149: -58.878845,-76.76831 + 6150: -58.536938,-76.909134 - node: cleanable: True color: '#FFFFFFFF' @@ -12665,977 +12678,977 @@ entities: color: '#DCBFFFCC' id: Grasse3 decals: - 7206: -99.65109,-13.764744 - 7207: -102.764145,-11.963446 - 7208: -102.050766,-11.145805 - 7209: -106.64313,-10.476826 - 7210: -105.72168,-8.796945 - 7211: -105.691956,-10.476826 - 7212: -106.00711,-10.928841 - 7213: -108.780624,-7.5637746 - 7214: -106.774254,-4.531069 - 7215: -105.213745,-4.9621887 - 7216: -106.060875,-6.52314 - 7217: -108.721176,-4.620266 - 7218: -109.88041,-3.9661531 - 7219: -111.708435,-5.363576 - 7220: -112.19888,-4.7837944 - 7221: -112.629875,-6.612337 - 7222: -113.922874,-6.8650627 - 7223: -115.8698,-7.890831 - 7224: -117.60865,-8.723338 - 7225: -117.04389,-9.763973 - 7226: -118.02478,-8.098957 - 7227: -116.419685,-8.411148 - 7228: -114.79973,-6.7609997 - 7229: -111.69357,-6.924528 - 7230: -112.60015,-5.363576 - 7231: -108.632,-3.668829 - 7232: -107.82945,-2.509265 - 7233: -105.27319,-3.7282934 - 7234: -106.640495,-6.002823 - 7235: -107.94835,-6.433943 - 7236: -106.80398,-7.311049 - 7237: -104.45578,-4.531069 - 7238: -103.3774,-1.923393 - 7239: -105.19057,-2.116654 - 7240: -104.254265,-3.6330068 - 7241: -107.99336,-8.043621 - 7242: -120.885315,-7.836407 - 7243: -120.759056,-9.797591 - 7244: -122.958626,-10.481437 - 7245: -124.23676,-8.9204855 - 7246: -127.09026,-6.9135475 - 7247: -129.31956,-8.905619 - 7248: -127.72933,-10.332775 - 7249: -126.06479,-8.66776 - 7250: -126.733574,-9.975986 - 7251: -127.43209,-12.176184 - 7252: -126.00534,-13.127621 - 7253: -125.05417,-14.688574 - 7254: -124.42997,-14.599375 - 7255: -122.79515,-12.488375 - 7256: -126.16882,-10.555768 - 7257: -128.39813,-11.418008 - 7258: -129.64653,-11.224747 - 7259: -129.55736,-8.281239 - 7260: -127.49154,-7.151407 - 7261: -127.83337,-8.504231 - 7262: -127.16457,-8.296104 - 7263: -130.25586,-6.348632 - 7264: -130.18155,-5.1296034 - 7265: -130.9841,-5.1444693 - 7266: -131.62317,-7.760921 - 7267: -131.04355,-9.321873 - 7268: -128.7994,-7.5527945 - 7269: -127.72933,-6.4675612 - 7270: -128.413,-7.612259 - 7271: -126.22827,-5.8729134 - 7272: -123.01147,-17.384777 - 7273: -123.81411,-15.954933 - 7274: -121.46591,-15.687342 - 7275: -119.16231,-17.322624 - 7276: -120.87144,-19.359293 - 7277: -119.02855,-20.816181 - 7278: -120.66337,-18.58625 - 7279: -121.079506,-17.857807 - 7280: -118.68672,-16.965834 - 7281: -118.61241,-19.047102 - 7282: -118.30109,-18.07702 - 7283: -117.06754,-16.218746 - 7284: -115.61107,-19.102789 - 7285: -116.25013,-20.589409 - 7286: -117.49854,-22.224693 - 7287: -117.88496,-23.904573 - 7288: -119.445465,-21.407051 - 7289: -114.942276,-20.782671 - 7290: -116.30958,-21.853037 - 7291: -113.767105,-20.975931 - 7292: -115.27612,-19.534758 - 7293: -104.55546,-20.15942 - 7294: -105.551216,-21.61631 - 7295: -107.527855,-21.646042 - 7296: -106.84421,-23.72731 - 7297: -104.95673,-25.76398 - 7298: -104.76353,-26.878946 - 7299: -105.19453,-27.473595 - 7300: -106.3389,-24.961206 - 7301: -108.04803,-23.53405 - 7302: -110.09898,-24.054367 - 7303: -109.118095,-25.06527 - 7304: -108.04803,-24.812544 - 7305: -112.13508,-24.411156 - 7306: -112.67011,-26.135635 - 7307: -112.22425,-27.696587 - 7308: -114.31979,-27.830383 - 7309: -114.14145,-29.554863 - 7310: -112.13508,-29.584595 - 7311: -111.971596,-31.264477 - 7312: -113.84421,-31.859125 - 7313: -112.41021,-30.249475 - 7314: -113.85703,-29.218395 - 7315: -115.68506,-28.133163 - 7316: -116.725395,-29.90224 - 7317: -115.61075,-31.492926 - 7318: -110.67657,-30.734749 - 7319: -111.46426,-32.310566 - 7320: -111.18188,-32.934948 - 7321: -109.17551,-31.061806 - 7322: -115.15266,-26.49334 - 7323: -116.3862,-27.846165 - 7324: -113.38408,-27.087988 - 7325: -122.64427,-29.230433 - 7326: -123.26847,-30.88058 - 7327: -123.68461,-32.67939 - 7328: -126.28546,-31.207638 - 7329: -127.07314,-29.839947 - 7330: -128.39587,-29.43856 - 7331: -130.11984,-30.360264 - 7332: -127.83111,-31.609026 - 7333: -125.03705,-29.973743 - 7334: -124.11561,-30.003475 - 7335: -127.7568,-32.12934 - 7336: -129.46593,-33.08078 - 7337: -129.59969,-34.151146 - 7338: -128.42558,-35.414772 - 7339: -128.1135,-36.693268 - 7340: -128.55934,-37.362247 - 7341: -126.017944,-37.34738 - 7342: -122.58723,-32.78761 - 7343: -121.42695,-32.56508 - 7344: -122.02142,-35.716713 - 7345: -120.87705,-36.60869 - 7346: -120.16367,-34.958538 - 7347: -121.189156,-35.53832 - 7348: -122.52673,-38.05071 - 7349: -121.01081,-39.685993 - 7350: -122.57132,-40.146843 - 7351: -125.26725,-39.244045 - 7352: -121.299095,-38.337204 - 7353: -118.594215,-39.05078 - 7354: -120.46683,-40.79013 - 7355: -117.26853,-43.31602 - 7356: -115.85664,-41.94833 - 7357: -114.44475,-43.985 - 7358: -112.572136,-45.0405 - 7359: -113.25579,-45.27836 - 7360: -110.15812,-46.8986 - 7361: -104.994286,-52.827374 - 7362: -103.47836,-52.515182 - 7363: -103.04736,-54.52212 - 7364: -101.51195,-48.478455 - 7365: -101.61569,-45.171932 - 7366: -104.216545,-44.413757 - 7367: -104.20168,-46.242302 - 7368: -102.552,-45.915245 - 7369: -104.08279,-42.823074 - 7370: -105.568985,-41.9311 - 7371: -107.61314,-43.159973 - 7372: -105.523476,-44.659454 - 7373: -104.05214,-42.607918 - 7374: -102.87804,-41.43349 - 7375: -103.294174,-43.767483 - 7376: -102.56594,-44.079674 - 7377: -104.081856,-40.489853 - 7378: -107.32178,-39.443935 - 7379: -104.6912,-38.32855 - 7380: -102.774,-38.92339 - 7381: -105.374855,-39.265312 - 7382: -105.79099,-40.068085 - 7383: -106.72379,-40.7668 - 7384: -107.3122,-41.287117 - 7385: -110.45549,-40.446148 - 7386: -112.17438,-38.02164 - 7387: -113.511955,-37.590523 - 7388: -109.85591,-37.35266 - 7389: -108.68181,-37.456726 - 7390: -111.60963,-39.24067 - 7391: -110.509834,-38.051373 - 7392: -112.754,-36.193096 - 7393: -114.90899,-36.282295 - 7394: -107.3621,-37.174267 - 7395: -107.65933,-38.170303 - 7396: -101.16487,-39.708702 - 7397: -99.544914,-41.061523 - 7398: -98.01412,-41.299385 - 7399: -96.15638,-38.10315 - 7400: -94.84852,-39.411377 - 7401: -96.98865,-41.03179 - 7402: -96.9292,-43.14279 - 7403: -95.57676,-44.123962 - 7404: -94.84852,-44.37669 - 7405: -95.94831,-41.59671 - 7406: -96.483345,-39.67897 - 7407: -98.38567,-40.22902 - 7408: -97.142204,-36.482735 - 7409: -98.79958,-36.566017 - 7410: -97.536316,-34.365818 - 7411: -98.93334,-33.414383 - 7412: -98.36158,-31.254745 - 7413: -96.96655,-29.171675 - 7414: -98.8243,-27.283667 - 7415: -99.52282,-28.695955 - 7416: -99.195854,-29.30547 - 7417: -97.5759,-27.655321 - 7418: -99.2553,-26.043911 - 7419: -98.764854,-24.57158 - 7420: -97.23407,-24.393187 - 7421: -96.55042,-25.31489 - 7422: -100.59288,-24.73511 - 7423: -98.24468,-22.210428 - 7424: -99.716034,-20.05258 - 7425: -99.40392,-18.9148 - 7426: -97.457,-18.751272 - 7427: -97.01114,-20.951471 - 7428: -98.43789,-19.82164 - 7429: -97.85828,-17.963364 - 7430: -100.53343,-18.305286 - 7431: -100.7415,-21.293394 - 7432: -97.11517,-23.062473 - 7433: -96.20056,-17.361832 - 7434: -98.21449,-12.902191 - 7435: -100.70052,-12.4549675 - 7436: -103.97982,-10.424377 - 7437: -94.42597,-46.56329 - 7438: -92.00347,-44.364033 - 7439: -89.71472,-44.512695 - 7440: -91.18606,-46.281773 - 7441: -89.83362,-47.069683 - 7442: -87.47056,-45.478996 - 7443: -85.91005,-46.846687 - 7444: -87.42597,-48.71983 - 7445: -94.67863,-50.59297 - 7446: -96.14996,-50.94976 - 7447: -99.63341,-50.416996 - 7448: -91.13978,-48.41355 - 7449: -89.51239,-48.145958 - 7450: -85.83453,-51.513153 - 7451: -84.27735,-48.56965 - 7452: -83.85951,-47.78917 - 7453: -83.10155,-49.06023 - 7454: -82.83404,-50.554283 - 7455: -79.579254,-48.993332 - 7456: -75.744865,-49.037933 - 7457: -79.021935,-51.914543 - 7458: -80.27034,-53.832283 - 7459: -76.43594,-54.16677 - 7460: -74.18435,-54.077576 - 7461: -76.525116,-51.334763 - 7462: -77.63976,-48.993332 - 7463: -76.079254,-49.573116 - 7464: -78.888176,-53.475494 - 7465: -77.63976,-54.32287 - 7466: -78.955055,-54.813454 - 7467: -74.518745,-51.37936 - 7468: -77.81811,-51.44626 - 7469: -77.951866,-49.81841 - 7470: -80.0697,-50.465088 - 7471: -75.65569,-46.428913 - 7472: -78.41866,-52.494324 - 7473: -75.5241,-55.639133 - 7474: -75.36564,-54.05347 - 7475: -75.477104,-52.537117 - 7476: -71.843346,-52.760113 - 7477: -70.059906,-52.80471 - 7478: -71.553535,-51.19916 - 7479: -68.74462,-51.935036 - 7480: -69.23507,-54.34336 - 7481: -71.44207,-54.81165 - 7482: -72.46755,-54.34336 - 7483: -73.136345,-55.815117 - 7484: -71.10767,-56.64019 - 7485: -69.92615,-55.70362 - 7486: -68.25417,-55.65902 - 7487: -67.80831,-57.130775 - 7488: -66.047165,-56.930084 - 7489: -66.403854,-54.70015 - 7490: -67.96436,-52.737812 - 7491: -66.96118,-51.82354 - 7492: -65.71277,-52.916206 - 7493: -63.19366,-55.39143 - 7494: -63.215954,-57.68826 - 7495: -62.457993,-58.64713 - 7496: -60.8306,-57.175373 - 7497: -62.1236,-55.61442 - 7498: -63.90704,-56.305702 - 7499: -64.75417,-56.506393 - 7500: -64.77647,-54.34336 - 7501: -64.263725,-59.383007 - 7502: -63.817867,-60.89936 - 7503: -64.620415,-62.304214 - 7504: -62.859264,-62.371113 - 7505: -60.161816,-60.453373 - 7506: -59.136333,-58.758625 - 7507: -58.33379,-58.245743 - 7508: -59.31468,-61.746735 - 7509: -60.56309,-62.259617 - 7510: -61.744617,-60.56487 - 7511: -60.919773,-58.714027 - 7512: -59.8943,-57.108475 - 7513: -61.292213,-55.12331 - 7514: -63.456127,-53.918304 - 7515: -64.94976,-51.688374 - 7516: -67.33511,-50.595707 - 7517: -59.204082,-56.70572 - 7518: -56.77415,-57.486195 - 7519: -54.856953,-58.46736 - 7520: -57.955677,-61.321674 - 7521: -56.640392,-62.548134 - 7522: -54.143574,-60.585796 - 7523: -52.583065,-60.630394 - 7524: -51.73593,-61.477768 - 7525: -53.920643,-63.261715 - 7526: -55.592617,-65.00106 - 7527: -57.286884,-66.27212 - 7528: -57.866505,-65.26865 - 7529: -57.777332,-61.990654 - 7530: -55.102173,-59.693825 - 7531: -56.462048,-59.42623 - 7532: -54.63402,-62.74883 - 7533: -55.23593,-64.06448 - 7534: -52.89517,-65.13486 - 7535: -52.04803,-62.213646 - 7536: -50.955677,-60.25131 - 7537: -50.130836,-60.674995 - 7538: -51.557587,-63.261715 - 7539: -53.140392,-63.95299 - 7540: -55.185375,-65.73903 - 7541: -57.649868,-67.89419 - 7542: -58.430973,-68.02885 - 7543: -56.290848,-70.08038 - 7544: -55.443714,-68.14034 - 7545: -53.99467,-66.78008 - 7546: -52.34499,-66.64629 - 7547: -52.032887,-67.805855 - 7548: -53.48193,-69.43371 - 7549: -51.720783,-70.25878 - 7550: -51.141163,-68.05115 - 7551: -50.227154,-69.83509 - 7552: -51.676197,-72.17652 - 7553: -54.485115,-71.44064 - 7554: -55.93416,-70.86086 - 7555: -57.294033,-72.28802 - 7556: -56.313137,-73.80437 - 7557: -54.61887,-73.023895 - 7558: -53.013775,-72.421814 - 7559: -52.501038,-73.84897 - 7560: -53.972378,-75.20923 - 7561: -55.309956,-76.480286 - 7562: -54.8418,-77.59525 - 7563: -50.985115,-77.260765 - 7564: -51.520145,-74.71864 - 7565: -55.889572,-74.80784 - 7566: -57.673016,-74.58485 - 7567: -55.57414,-78.24592 - 7568: -54.035923,-78.9372 - 7569: -52.36395,-76.90796 - 7570: -50.714264,-77.71074 - 7571: -50.558216,-79.53928 - 7572: -48.90853,-79.49468 - 7573: -47.035923,-78.62501 - 7574: -44.58369,-78.6919 - 7575: -43.312992,-79.38319 - 7576: -45.23019,-80.676544 - 7577: -48.328915,-80.319756 - 7578: -51.093243,-79.11559 - 7579: -52.94356,-78.53581 - 7580: -54.437195,-80.877235 - 7581: -55.418087,-81.836105 - 7582: -53.21108,-83.218666 - 7583: -50.870316,-81.94761 - 7584: -49.131462,-81.278625 - 7585: -47.79388,-81.76921 - 7586: -47.12509,-83.174065 - 7587: -45.60917,-83.06257 - 7588: -43.736557,-82.43819 - 7589: -42.309803,-82.52739 - 7590: -43.51363,-83.776146 - 7591: -45.742928,-83.174065 - 7592: -47.749294,-81.74691 - 7593: -51.026367,-83.33016 - 7594: -52.809803,-84.28903 - 7595: -54.370316,-84.556625 - 7596: -55.172863,-85.60469 - 7597: -52.185604,-85.82768 - 7598: -50.023182,-83.553154 - 7599: -50.558216,-85.82768 - 7600: -52.207897,-86.51896 - 7601: -51.71745,-87.611626 - 7602: -51.254017,-86.72192 - 7603: -51.204212,-84.68198 - 7604: -48.57364,-86.35442 - 7605: -49.309307,-88.18297 - 7606: -53.099117,-87.2241 - 7607: -54.414402,-86.934204 - 7608: -55.30612,-88.00457 - 7609: -53.678734,-89.96691 - 7610: -53.32205,-90.836586 - 7611: -54.25835,-91.41637 - 7612: -55.97491,-90.4575 - 7613: -56.978096,-90.1899 - 7614: -57.780643,-91.66166 - 7615: -57.40166,-93.06651 - 7616: -55.083195,-94.09228 - 7617: -53.767906,-92.93272 - 7618: -51.850708,-92.732025 - 7619: -51.27109,-93.93619 - 7620: -51.80612,-95.83163 - 7621: -50.312492,-95.83163 - 7622: -48.90803,-94.38217 - 7623: -47.793385,-93.75779 - 7624: -46.767906,-95.207245 - 7625: -46.65644,-96.7013 - 7626: -47.97173,-97.97236 - 7627: -49.888927,-98.37375 - 7628: -52.943066,-97.102684 - 7629: -53.745613,-95.72013 - 7630: -54.280643,-95.11805 - 7631: -56.509945,-96.34451 - 7632: -57.669178,-96.010025 - 7633: -58.137333,-95.184944 - 7634: -57.869816,-97.52954 - 7635: -55.75198,-99.13544 - 7636: -53.99084,-97.55142 - 7637: -52.853893,-98.52006 - 7638: -56.26472,-99.45663 - 7639: -58.315678,-99.63502 - 7640: -59.76472,-100.2817 - 7641: -58.33797,-101.10677 - 7642: -56.019497,-101.21827 - 7643: -54.03542,-100.1479 - 7644: -52.00676,-99.70192 - 7645: -51.739243,-100.92838 - 7646: -50.134148,-100.950676 - 7647: -48.863445,-99.56812 - 7648: -47.213764,-99.70192 - 7649: -48.61822,-101.66425 - 7650: -47.54816,-102.288635 - 7651: -47.1023,-98.94374 - 7652: -45.162807,-98.47546 - 7653: -45.876186,-96.75841 - 7654: -52.274273,-99.233635 - 7655: -52.274273,-99.233635 - 7656: -67.390755,-101.16037 - 7657: -70.4671,-101.18267 - 7658: -73.655,-101.40566 - 7659: -75.059456,-102.632126 - 7660: -76.73144,-102.14154 - 7661: -76.709145,-100.090004 - 7662: -77.33334,-98.395256 - 7663: -79.562645,-99.04194 - 7664: -80.632706,-100.491394 - 7665: -77.28876,-100.75899 - 7666: -78.559456,-100.714386 - 7667: -76.709145,-95.96463 - 7668: -77.60086,-94.359085 - 7669: -79.64136,-93.550545 - 7670: -82.26485,-95.96126 - 7671: -82.772064,-97.48282 - 7672: -82.22284,-98.9564 - 7673: -84.3176,-97.73075 - 7674: -85.655174,-95.099434 - 7675: -85.12014,-93.49388 - 7676: -83.292114,-93.82838 - 7677: -82.734795,-94.94334 - 7678: -81.085106,-93.003296 - 7679: -80.61696,-91.04096 - 7680: -79.101036,-90.92947 - 7681: -78.45454,-92.222824 - 7682: -78.43224,-94.38586 - 7683: -77.96409,-96.59349 - 7684: -76.47046,-94.63115 - 7685: -75.93543,-91.73224 - 7686: -76.06919,-90.72877 - 7687: -79.39085,-92.35662 - 7688: -84.585106,-95.144035 - 7689: -85.566,-96.92798 - 7690: -84.161545,-98.42203 - 7691: -82.4004,-99.938385 - 7692: -81.24116,-100.78576 - 7693: -87.39403,-94.40816 - 7694: -87.12651,-92.31202 - 7695: -87.02306,-96.62319 - 7696: -84.92779,-99.00916 - 7697: -88.379875,-90.95423 - 7698: -86.56754,-91.3607 - 7699: -89.30958,-88.2834 - 7700: -89.68856,-86.09807 - 7701: -88.417854,-83.77894 - 7702: -87.92741,-85.1615 - 7703: -87.280914,-83.71204 - 7704: -89.866905,-82.017296 - 7705: -89.26499,-80.34485 - 7706: -87.88283,-77.958824 - 7707: -85.22996,-77.86962 - 7708: -85.22996,-80.18875 - 7709: -83.134415,-79.698166 - 7710: -81.79684,-78.494 - 7711: -79.65671,-79.675865 - 7712: -80.81595,-80.76853 - 7713: -82.287285,-81.52671 - 7714: -81.707664,-82.90926 - 7715: -79.94652,-83.04306 - 7716: -79.27773,-84.04653 - 7717: -79.567535,-85.652084 - 7718: -82.220406,-84.314125 - 7719: -82.8892,-83.24376 - 7720: -80.280914,-86.87855 - 7721: -79.32232,-87.61442 - 7722: -79.300026,-88.3949 - 7723: -77.226776,-90.491035 - 7724: -90.58159,-77.60713 - 7725: -88.75295,-76.46889 - 7726: -87.460304,-77.762794 - 7727: -86.12272,-76.53634 - 7728: -86.43482,-74.306404 - 7729: -87.99534,-73.30294 - 7730: -88.64183,-75.867355 - 7731: -87.08132,-74.707794 - 7732: -86.96986,-71.76428 - 7733: -87.7947,-70.22563 - 7734: -89.0654,-69.66815 - 7735: -90.22463,-70.62702 - 7736: -89.82336,-71.3183 - 7737: -90.44756,-70.02494 - 7738: -92.05266,-69.132965 - 7739: -92.00807,-67.28212 - 7740: -90.893425,-66.211754 - 7741: -89.84565,-67.48282 - 7742: -91.740555,-68.151794 - 7743: -93.30106,-68.753876 - 7744: -94.19279,-70.292534 - 7745: -92.47623,-71.38519 - 7746: -90.84884,-70.60472 - 7747: -88.753296,-67.66121 - 7748: -89.84565,-65.10331 - 7749: -91.89661,-63.770077 - 7750: -93.32336,-65.96183 - 7751: -93.680046,-64.44548 - 7752: -92.83292,-61.992558 - 7753: -91.56222,-61.078285 - 7754: -89.57814,-62.483143 - 7755: -88.06222,-62.57234 - 7756: -87.41572,-60.98909 - 7757: -85.743744,-60.342407 - 7758: -84.49534,-61.234383 - 7759: -85.5654,-62.55004 - 7760: -83.73737,-62.86223 - 7761: -82.109985,-61.18978 - 7762: -80.23737,-59.807224 - 7763: -77.76285,-60.38701 - 7764: -76.58132,-62.037155 - 7765: -80.103615,-62.83993 - 7766: -82.86794,-63.575806 - 7767: -83.13546,-65.93953 - 7768: -80.906166,-66.40782 - 7769: -79.54629,-64.133286 - 7770: -78.07495,-63.48661 - 7771: -77.02718,-65.15906 - 7772: -76.9826,-67.210594 - 7773: -79.5017,-67.74577 - 7774: -80.92846,-69.931114 - 7775: -78.98897,-70.95688 - 7776: -77.69598,-68.86074 - 7777: -80.37113,-67.58968 - 7778: -81.820175,-67.45589 - 7779: -82.42209,-69.79732 - 7780: -80.25967,-72.25024 - 7781: -79.25648,-73.72199 - 7782: -80.28196,-75.03765 - 7783: -78.34247,-75.305244 - 7784: -77.33929,-72.38403 - 7785: -77.9189,-70.221 - 7786: -79.390236,-68.771545 - 7787: -81.44119,-72.986115 - 7788: -81.26285,-74.81466 - 7789: -81.820175,-76.30871 - 7790: -80.59406,-77.267586 - 7791: -79.65775,-76.65691 - 7792: -78.69916,-76.322426 - 7793: -82.57813,-77.52659 - 7794: -79.672264,-70.26857 - 7795: -80.78331,-70.955666 - 7796: -76.99379,-63.600155 - 7797: -78.54725,-60.78267 - 7798: -76.22878,-59.712303 - 7799: -74.8912,-61.184055 - 7800: -73.64279,-62.187523 - 7801: -71.83706,-61.317852 - 7802: -70.521774,-61.184055 - 7803: -70.36572,-62.9011 - 7804: -72.951706,-62.25442 - 7805: -73.91031,-59.912994 - 7806: -74.71285,-63.168694 - 7807: -72.14272,-62.70041 - 7808: -81.57815,-58.35206 - 7809: -84.03084,-57.72764 - 7810: -83.96396,-59.756874 - 7811: -84.521286,-59.68998 - 7812: -86.52766,-57.59384 - 7813: -87.48625,-56.969463 - 7814: -88.82383,-57.883736 - 7815: -88.62319,-59.489285 - 7816: -88.69007,-60.113667 - 7817: -90.04995,-59.868374 - 7818: -90.47351,-57.526947 - 7819: -90.428925,-56.43428 - 7820: -92.05631,-56.74647 - 7821: -93.3939,-58.084427 - 7822: -92.858864,-59.28859 - 7823: -88.95759,-60.604248 - 7824: -90.62956,-60.87184 - 7825: -91.65504,-57.99523 - 7826: -94.218735,-56.278183 - 7827: -94.6646,-57.59384 - 7828: -93.83976,-60.225163 - 7829: -94.10727,-61.964508 - 7830: -94.673,-63.525616 - 7831: -97.21427,-63.703995 - 7832: -97.92765,-63.391804 - 7833: -99.80026,-59.2984 - 7834: -97.01364,-56.46639 - 7835: -103.56778,-55.974827 - 7836: -105.90855,-51.225075 - 7837: -105.21746,-51.69336 - 7838: -100.633,-47.332405 - 7839: -95.85136,-45.91663 - 7840: -92.95327,-44.48947 - 7841: -92.37365,-45.203053 - 7842: -86.55061,-43.445396 - 7843: -84.25443,-41.260067 - 7844: -80.620674,-40.74718 - 7845: -79.5952,-42.06284 - 7846: -79.082466,-39.721413 - 7847: -80.04106,-37.803673 - 7848: -82.11431,-36.9117 - 7849: -82.916855,-38.53955 - 7850: -81.713036,-40.390392 - 7851: -82.02514,-40.568787 - 7852: -83.786285,-36.800205 - 7853: -81.98055,-35.194653 - 7854: -81.40093,-37.33539 - 7855: -80.66526,-38.82944 - 7856: -80.08565,-35.885933 - 7857: -76.84547,-45.457504 - 7858: -75.01745,-44.543236 - 7859: -73.234,-45.791996 - 7860: -74.772224,-46.683968 - 7861: -73.96967,-47.732037 - 7862: -72.119354,-45.836594 - 7863: -71.65121,-45.01152 - 7864: -72.342285,-47.95503 - 7865: -71.45057,-50.363354 - 7866: -70.67031,-50.80934 - 7867: -71.74037,-47.26375 - 7868: -71.74037,-42.982285 - 7869: -33.038296,-58.112267 - 7870: -30.719826,-57.554787 - 7871: -29.672054,-57.309494 - 7872: -27.799442,-58.848145 - 7873: -26.528744,-58.870445 - 7874: -25.191162,-56.37292 - 7875: -22.917278,-55.570145 - 7876: -22.025558,-56.529015 - 7877: -24.076515,-57.933872 - 7878: -23.430016,-59.762417 - 7879: -21.089252,-58.469055 - 7880: -20.242119,-58.714348 - 7881: -20.17524,-60.498295 - 7882: -22.627468,-61.769356 - 7883: -26.261227,-60.141502 - 7884: -27.130653,-60.074608 - 7885: -27.041481,-62.21534 - 7886: -25.503265,-64.11078 - 7887: -23.652946,-62.639027 - 7888: -21.802628,-60.92198 - 7889: -20.308998,-61.56866 - 7890: -21.06696,-63.887787 - 7891: -23.496895,-62.661327 - 7892: -24.834476,-60.67669 - 7893: -25.213455,-62.059246 - 7894: -25.949123,-66.6752 - 7895: -25.659317,-69.19502 - 7896: -20.910908,-68.503746 - 7897: -18.949123,-64.91355 - 7898: -19.863136,-62.705925 - 7899: -17.700718,-63.77629 - 7900: -17.745304,-66.6975 - 7901: -19.930016,-67.27728 - 7902: -22.805813,-64.77976 - 7903: -24.366322,-64.40067 - 7904: -24.187977,-67.29958 - 7905: -21.53511,-69.038925 - 7906: -18.081524,-68.5906 - 7907: -16.149231,-67.323166 - 7908: -24.088776,-68.20276 - 7909: -23.482643,-69.84851 - 7910: -25.289173,-70.69668 - 7911: -26.916561,-69.60401 - 7912: -27.34013,-70.60748 - 7913: -24.821022,-72.07923 - 7914: -21.588535,-70.96427 - 7915: -19.582165,-70.89737 - 7916: -18.578983,-72.50292 - 7917: -17.798729,-74.57676 - 7918: -19.22548,-74.95585 - 7919: -20.696815,-73.350296 - 7920: -22.792358,-71.92314 - 7921: -23.617199,-72.54752 - 7922: -23.594906,-74.688255 - 7923: -26.76051,-75.045044 - 7924: -27.629936,-74.286865 - 7925: -26.203186,-73.41719 - 7926: -25.48981,-74.309166 - 7927: -26.336945,-76.026215 - 7928: -28.16497,-77.23038 - 7929: -28.053505,-78.27844 - 7930: -28.811466,-81.28885 - 7931: -22.72548,-81.31115 - 7932: -20.897453,-80.08469 - 7933: -20.228664,-77.163475 - 7934: -18.645863,-76.6506 - 7935: -19.827389,-79.37111 - 7936: -20.964333,-80.48203 - 7937: -19.44841,-81.327736 - 7938: -19.992573,-80.200325 - 7939: -17.814949,-78.28983 - 7940: -17.52441,-76.40162 - 7941: -17.59129,-75.71074 - 7942: -17.680462,-81.35246 - 7943: -18.170906,-83.2925 - 7944: -21.225048,-82.19984 - 7945: -22.674091,-80.126 - 7946: -21.6932,-78.319756 - 7947: -21.91613,-77.91837 - 7948: -22.116768,-81.10717 - 7949: -22.80785,-83.404 - 7950: -25.148613,-82.77962 - 7951: -26.642246,-82.13294 - 7952: -26.575367,-83.69389 - 7953: -24.613583,-84.20678 - 7954: -24.390652,-81.30787 - 7955: -23.253708,-80.460495 - 7956: -33.434273,-81.415146 - 7957: -34.16994,-79.6981 - 7958: -31.40561,-79.16292 - 7959: -31.583954,-81.192154 - 7960: -29.978859,-80.813065 - 7961: -29.510704,-78.98452 - 7962: -31.69542,-82.28482 - 7963: -33.3451,-82.8423 - 7964: -35.52981,-82.39632 - 7965: -36.80051,-83.39979 - 7966: -35.061657,-85.049934 - 7967: -39.631725,-82.61931 - 7968: -40.30051,-82.329414 - 7969: -37.693584,-86.70783 - 7970: -36.84697,-87.58105 - 7971: -40.41385,-88.852104 - 7972: -42.687733,-90.07857 - 7973: -41.149517,-92.3085 - 7974: -40.569897,-94.42693 - 7975: -39.366077,-96.45617 - 7976: -37.51576,-95.31891 - 7977: -36.46799,-96.389275 - 7978: -37.426586,-98.686104 - 7979: -34.706844,-98.5969 - 7980: -33.993465,-96.87986 - 7981: -32.499836,-96.50077 - 7982: -29.289646,-94.73913 - 7983: -28.397926,-93.02208 - 7984: -29.936142,-89.87788 - 7985: -30.159073,-87.87094 - 7986: -31.808754,-88.25002 - 7987: -30.783276,-90.16776 - 7988: -32.38837,-88.896706 - 7989: -33.614487,-87.09046 - 7990: -34.862892,-85.9086 - 7991: -35.710026,-86.800575 - 7992: -33.324677,-87.78174 - 7993: -31.875633,-86.800575 - 7994: -47.863968,-89.63258 - 7995: -47.039127,-91.394226 - 7996: -34.665634,-78.15241 - 7997: -27.371681,-79.83549 - 7998: -25.102459,-85.92377 - 7999: -24.121372,-88.48595 - 8000: -24.478062,-90.47059 - 8001: -22.694622,-91.02807 - 8002: -21.223286,-90.381386 - 8003: -19.439846,-90.40369 - 8004: -19.083157,-92.43292 - 8005: -21.067234,-94.23917 - 8006: -23.43029,-93.3695 - 8007: -24.165958,-92.52212 - 8008: -25.369781,-93.480995 - 8009: -26.127743,-94.72975 - 8010: -24.567234,-97.40567 - 8011: -22.337933,-98.18615 - 8012: -20.933475,-95.62173 - 8013: -21.04494,-92.38833 - 8014: -20.130928,-92.23223 - 8015: -19.974876,-95.08654 - 8016: -21.892075,-97.73267 - 8017: -23.608635,-95.80076 - 8018: -23.764687,-95.269936 - 8019: -26.216915,-98.76976 - 8020: -25.512516,-101.32656 - 8021: -24.496387,-102.07653 - 8022: -21.964226,-99.983826 - 8023: -23.413269,-99.27025 - 8024: -24.951488,-99.35945 - 8025: -23.792252,-100.58591 - 8026: -23.99289,-102.41445 - 8027: -25.896374,-103.713295 - 8028: -27.36026,-105.81972 - 8029: -29.048191,-104.28118 - 8030: -26.5309,-101.895706 - 8031: -26.68695,-100.06716 - 8032: -26.798416,-102.0295 - 8033: -24.903511,-104.83922 - 8034: -24.100964,-104.192535 - 8035: -30.63976,-102.730934 - 8036: -31.56586,-102.95459 - 8037: -32.454865,-105.40551 - 8038: -31.626915,-106.8351 - 8039: -33.76704,-106.47831 - 8040: -31.22564,-104.649765 - 8041: -31.270226,-103.5125 - 8042: -34.235195,-102.08534 - 8043: -35.884876,-100.836586 - 8044: -36.24156,-102.82122 - 8045: -34.146023,-103.3787 - 8046: -34.034557,-101.12647 - 8047: -35.349842,-99.38713 - 8048: -39.617184,-102.330635 - 8049: -40.332554,-101.59476 - 8050: -40.332554,-103.267204 - 8051: -40.131916,-104.29298 - 8052: -42.62873,-104.51597 - 8053: -43.386692,-104.93965 - 8054: -44.25612,-105.67553 - 8055: -45.83892,-105.11805 - 8056: -47.065037,-103.80239 - 8057: -41.58096,-105.94312 - 8058: -41.22427,-102.62053 - 8059: -41.915356,-103.17801 - 8060: -40.956757,-105.54173 - 8061: -41.179684,-107.28108 - 8062: -39.106438,-107.68247 - 8063: -38.928093,-106.5006 - 8064: -38.504494,-102.48343 - 8065: -125.745995,-23.512453 - 8066: -123.316055,-24.60512 - 8067: -122.95937,-23.467854 - 8068: -125.23325,-21.08183 - 8069: -125.679115,-19.230986 - 8070: -128.28738,-17.536238 - 8071: -131.92114,-18.182919 - 8072: -132.45618,-22.107597 - 8073: -131.38611,-23.066467 - 8074: -135.867,-19.721571 - 8075: -133.12497,-18.339014 - 8076: -137.36064,-17.090252 - 8077: -138.76509,-18.651203 - 8078: -140.08038,-17.893028 - 8079: -139.41159,-14.793425 - 8080: -136.55809,-13.544662 - 8081: -134.12816,-15.729996 - 8082: -134.5963,-18.539707 - 8083: -132.74599,-18.918795 - 8084: -130.62816,-18.093721 - 8085: -130.60587,-16.042185 - 8086: -133.19185,-14.302839 - 8087: -134.79694,-12.875683 - 8088: -133.61542,-15.5515995 - 8089: -132.3893,-16.84496 - 8090: -131.56445,-15.997587 - 8091: -136.02986,-13.984619 - 8092: -138.2506,-15.545628 - 8093: -141.07683,-13.514254 - 8094: -138.73984,-11.811832 - 8095: -137.00098,-11.098254 - 8096: -137.60289,-12.324717 - 8097: -138.91818,-13.395082 - 8098: -135.55194,-12.012526 - 8099: -138.29398,-9.470406 - 8100: -139.00735,-7.131274 - 8101: -137.60289,-8.313137 - 8102: -140.122,-6.2839003 - 8103: -137.42455,-1.1773591 - 8104: -137.20161,-1.8463383 - 8105: -139.72072,-0.3522849 - 8106: -139.11882,0.026803493 - 8107: -138.31627,-1.1550598 - 8108: -135.68568,-0.68677425 - 8109: -140.65703,0.24979639 - 8110: -131.79872,-3.6090431 + 7202: -99.65109,-13.764744 + 7203: -102.764145,-11.963446 + 7204: -102.050766,-11.145805 + 7205: -106.64313,-10.476826 + 7206: -105.72168,-8.796945 + 7207: -105.691956,-10.476826 + 7208: -106.00711,-10.928841 + 7209: -108.780624,-7.5637746 + 7210: -106.774254,-4.531069 + 7211: -105.213745,-4.9621887 + 7212: -106.060875,-6.52314 + 7213: -108.721176,-4.620266 + 7214: -109.88041,-3.9661531 + 7215: -111.708435,-5.363576 + 7216: -112.19888,-4.7837944 + 7217: -112.629875,-6.612337 + 7218: -113.922874,-6.8650627 + 7219: -115.8698,-7.890831 + 7220: -117.60865,-8.723338 + 7221: -117.04389,-9.763973 + 7222: -118.02478,-8.098957 + 7223: -116.419685,-8.411148 + 7224: -114.79973,-6.7609997 + 7225: -111.69357,-6.924528 + 7226: -112.60015,-5.363576 + 7227: -108.632,-3.668829 + 7228: -107.82945,-2.509265 + 7229: -105.27319,-3.7282934 + 7230: -106.640495,-6.002823 + 7231: -107.94835,-6.433943 + 7232: -106.80398,-7.311049 + 7233: -104.45578,-4.531069 + 7234: -103.3774,-1.923393 + 7235: -105.19057,-2.116654 + 7236: -104.254265,-3.6330068 + 7237: -107.99336,-8.043621 + 7238: -120.885315,-7.836407 + 7239: -120.759056,-9.797591 + 7240: -122.958626,-10.481437 + 7241: -124.23676,-8.9204855 + 7242: -127.09026,-6.9135475 + 7243: -129.31956,-8.905619 + 7244: -127.72933,-10.332775 + 7245: -126.06479,-8.66776 + 7246: -126.733574,-9.975986 + 7247: -127.43209,-12.176184 + 7248: -126.00534,-13.127621 + 7249: -125.05417,-14.688574 + 7250: -124.42997,-14.599375 + 7251: -122.79515,-12.488375 + 7252: -126.16882,-10.555768 + 7253: -128.39813,-11.418008 + 7254: -129.64653,-11.224747 + 7255: -129.55736,-8.281239 + 7256: -127.49154,-7.151407 + 7257: -127.83337,-8.504231 + 7258: -127.16457,-8.296104 + 7259: -130.25586,-6.348632 + 7260: -130.18155,-5.1296034 + 7261: -130.9841,-5.1444693 + 7262: -131.62317,-7.760921 + 7263: -131.04355,-9.321873 + 7264: -128.7994,-7.5527945 + 7265: -127.72933,-6.4675612 + 7266: -128.413,-7.612259 + 7267: -126.22827,-5.8729134 + 7268: -123.01147,-17.384777 + 7269: -123.81411,-15.954933 + 7270: -121.46591,-15.687342 + 7271: -119.16231,-17.322624 + 7272: -120.87144,-19.359293 + 7273: -119.02855,-20.816181 + 7274: -120.66337,-18.58625 + 7275: -121.079506,-17.857807 + 7276: -118.68672,-16.965834 + 7277: -118.61241,-19.047102 + 7278: -118.30109,-18.07702 + 7279: -117.06754,-16.218746 + 7280: -115.61107,-19.102789 + 7281: -116.25013,-20.589409 + 7282: -117.49854,-22.224693 + 7283: -117.88496,-23.904573 + 7284: -119.445465,-21.407051 + 7285: -114.942276,-20.782671 + 7286: -116.30958,-21.853037 + 7287: -113.767105,-20.975931 + 7288: -115.27612,-19.534758 + 7289: -104.55546,-20.15942 + 7290: -105.551216,-21.61631 + 7291: -107.527855,-21.646042 + 7292: -106.84421,-23.72731 + 7293: -104.95673,-25.76398 + 7294: -104.76353,-26.878946 + 7295: -105.19453,-27.473595 + 7296: -106.3389,-24.961206 + 7297: -108.04803,-23.53405 + 7298: -110.09898,-24.054367 + 7299: -109.118095,-25.06527 + 7300: -108.04803,-24.812544 + 7301: -112.13508,-24.411156 + 7302: -112.67011,-26.135635 + 7303: -112.22425,-27.696587 + 7304: -114.31979,-27.830383 + 7305: -114.14145,-29.554863 + 7306: -112.13508,-29.584595 + 7307: -111.971596,-31.264477 + 7308: -113.84421,-31.859125 + 7309: -112.41021,-30.249475 + 7310: -113.85703,-29.218395 + 7311: -115.68506,-28.133163 + 7312: -116.725395,-29.90224 + 7313: -115.61075,-31.492926 + 7314: -110.67657,-30.734749 + 7315: -111.46426,-32.310566 + 7316: -111.18188,-32.934948 + 7317: -109.17551,-31.061806 + 7318: -115.15266,-26.49334 + 7319: -116.3862,-27.846165 + 7320: -113.38408,-27.087988 + 7321: -122.64427,-29.230433 + 7322: -123.26847,-30.88058 + 7323: -123.68461,-32.67939 + 7324: -126.28546,-31.207638 + 7325: -127.07314,-29.839947 + 7326: -128.39587,-29.43856 + 7327: -130.11984,-30.360264 + 7328: -127.83111,-31.609026 + 7329: -125.03705,-29.973743 + 7330: -124.11561,-30.003475 + 7331: -127.7568,-32.12934 + 7332: -129.46593,-33.08078 + 7333: -129.59969,-34.151146 + 7334: -128.42558,-35.414772 + 7335: -128.1135,-36.693268 + 7336: -128.55934,-37.362247 + 7337: -126.017944,-37.34738 + 7338: -122.58723,-32.78761 + 7339: -121.42695,-32.56508 + 7340: -122.02142,-35.716713 + 7341: -120.87705,-36.60869 + 7342: -120.16367,-34.958538 + 7343: -121.189156,-35.53832 + 7344: -122.52673,-38.05071 + 7345: -121.01081,-39.685993 + 7346: -122.57132,-40.146843 + 7347: -125.26725,-39.244045 + 7348: -121.299095,-38.337204 + 7349: -118.594215,-39.05078 + 7350: -120.46683,-40.79013 + 7351: -117.26853,-43.31602 + 7352: -115.85664,-41.94833 + 7353: -114.44475,-43.985 + 7354: -112.572136,-45.0405 + 7355: -113.25579,-45.27836 + 7356: -110.15812,-46.8986 + 7357: -104.994286,-52.827374 + 7358: -103.47836,-52.515182 + 7359: -103.04736,-54.52212 + 7360: -101.51195,-48.478455 + 7361: -101.61569,-45.171932 + 7362: -104.216545,-44.413757 + 7363: -104.20168,-46.242302 + 7364: -102.552,-45.915245 + 7365: -104.08279,-42.823074 + 7366: -105.568985,-41.9311 + 7367: -107.61314,-43.159973 + 7368: -105.523476,-44.659454 + 7369: -104.05214,-42.607918 + 7370: -102.87804,-41.43349 + 7371: -103.294174,-43.767483 + 7372: -102.56594,-44.079674 + 7373: -104.081856,-40.489853 + 7374: -107.32178,-39.443935 + 7375: -104.6912,-38.32855 + 7376: -102.774,-38.92339 + 7377: -105.374855,-39.265312 + 7378: -105.79099,-40.068085 + 7379: -106.72379,-40.7668 + 7380: -107.3122,-41.287117 + 7381: -110.45549,-40.446148 + 7382: -112.17438,-38.02164 + 7383: -113.511955,-37.590523 + 7384: -109.85591,-37.35266 + 7385: -108.68181,-37.456726 + 7386: -111.60963,-39.24067 + 7387: -110.509834,-38.051373 + 7388: -112.754,-36.193096 + 7389: -114.90899,-36.282295 + 7390: -107.3621,-37.174267 + 7391: -107.65933,-38.170303 + 7392: -101.16487,-39.708702 + 7393: -99.544914,-41.061523 + 7394: -98.01412,-41.299385 + 7395: -96.15638,-38.10315 + 7396: -94.84852,-39.411377 + 7397: -96.98865,-41.03179 + 7398: -96.9292,-43.14279 + 7399: -95.57676,-44.123962 + 7400: -94.84852,-44.37669 + 7401: -95.94831,-41.59671 + 7402: -96.483345,-39.67897 + 7403: -98.38567,-40.22902 + 7404: -97.142204,-36.482735 + 7405: -98.79958,-36.566017 + 7406: -97.536316,-34.365818 + 7407: -98.93334,-33.414383 + 7408: -98.36158,-31.254745 + 7409: -96.96655,-29.171675 + 7410: -98.8243,-27.283667 + 7411: -99.52282,-28.695955 + 7412: -99.195854,-29.30547 + 7413: -97.5759,-27.655321 + 7414: -99.2553,-26.043911 + 7415: -98.764854,-24.57158 + 7416: -97.23407,-24.393187 + 7417: -96.55042,-25.31489 + 7418: -100.59288,-24.73511 + 7419: -98.24468,-22.210428 + 7420: -99.716034,-20.05258 + 7421: -99.40392,-18.9148 + 7422: -97.457,-18.751272 + 7423: -97.01114,-20.951471 + 7424: -98.43789,-19.82164 + 7425: -97.85828,-17.963364 + 7426: -100.53343,-18.305286 + 7427: -100.7415,-21.293394 + 7428: -97.11517,-23.062473 + 7429: -96.20056,-17.361832 + 7430: -98.21449,-12.902191 + 7431: -100.70052,-12.4549675 + 7432: -103.97982,-10.424377 + 7433: -94.42597,-46.56329 + 7434: -92.00347,-44.364033 + 7435: -89.71472,-44.512695 + 7436: -91.18606,-46.281773 + 7437: -89.83362,-47.069683 + 7438: -87.47056,-45.478996 + 7439: -85.91005,-46.846687 + 7440: -87.42597,-48.71983 + 7441: -94.67863,-50.59297 + 7442: -96.14996,-50.94976 + 7443: -99.63341,-50.416996 + 7444: -91.13978,-48.41355 + 7445: -89.51239,-48.145958 + 7446: -85.83453,-51.513153 + 7447: -84.27735,-48.56965 + 7448: -83.85951,-47.78917 + 7449: -83.10155,-49.06023 + 7450: -82.83404,-50.554283 + 7451: -79.579254,-48.993332 + 7452: -75.744865,-49.037933 + 7453: -79.021935,-51.914543 + 7454: -80.27034,-53.832283 + 7455: -76.43594,-54.16677 + 7456: -74.18435,-54.077576 + 7457: -76.525116,-51.334763 + 7458: -77.63976,-48.993332 + 7459: -76.079254,-49.573116 + 7460: -78.888176,-53.475494 + 7461: -77.63976,-54.32287 + 7462: -78.955055,-54.813454 + 7463: -74.518745,-51.37936 + 7464: -77.81811,-51.44626 + 7465: -77.951866,-49.81841 + 7466: -80.0697,-50.465088 + 7467: -75.65569,-46.428913 + 7468: -78.41866,-52.494324 + 7469: -75.5241,-55.639133 + 7470: -75.36564,-54.05347 + 7471: -75.477104,-52.537117 + 7472: -71.843346,-52.760113 + 7473: -70.059906,-52.80471 + 7474: -71.553535,-51.19916 + 7475: -68.74462,-51.935036 + 7476: -69.23507,-54.34336 + 7477: -71.44207,-54.81165 + 7478: -72.46755,-54.34336 + 7479: -73.136345,-55.815117 + 7480: -71.10767,-56.64019 + 7481: -69.92615,-55.70362 + 7482: -68.25417,-55.65902 + 7483: -67.80831,-57.130775 + 7484: -66.047165,-56.930084 + 7485: -66.403854,-54.70015 + 7486: -67.96436,-52.737812 + 7487: -66.96118,-51.82354 + 7488: -65.71277,-52.916206 + 7489: -63.19366,-55.39143 + 7490: -63.215954,-57.68826 + 7491: -62.457993,-58.64713 + 7492: -60.8306,-57.175373 + 7493: -62.1236,-55.61442 + 7494: -63.90704,-56.305702 + 7495: -64.75417,-56.506393 + 7496: -64.77647,-54.34336 + 7497: -64.263725,-59.383007 + 7498: -63.817867,-60.89936 + 7499: -64.620415,-62.304214 + 7500: -62.859264,-62.371113 + 7501: -60.161816,-60.453373 + 7502: -59.136333,-58.758625 + 7503: -58.33379,-58.245743 + 7504: -59.31468,-61.746735 + 7505: -60.56309,-62.259617 + 7506: -61.744617,-60.56487 + 7507: -60.919773,-58.714027 + 7508: -59.8943,-57.108475 + 7509: -61.292213,-55.12331 + 7510: -63.456127,-53.918304 + 7511: -64.94976,-51.688374 + 7512: -67.33511,-50.595707 + 7513: -59.204082,-56.70572 + 7514: -56.77415,-57.486195 + 7515: -54.856953,-58.46736 + 7516: -57.955677,-61.321674 + 7517: -56.640392,-62.548134 + 7518: -54.143574,-60.585796 + 7519: -52.583065,-60.630394 + 7520: -51.73593,-61.477768 + 7521: -53.920643,-63.261715 + 7522: -55.592617,-65.00106 + 7523: -57.286884,-66.27212 + 7524: -57.866505,-65.26865 + 7525: -57.777332,-61.990654 + 7526: -55.102173,-59.693825 + 7527: -56.462048,-59.42623 + 7528: -54.63402,-62.74883 + 7529: -55.23593,-64.06448 + 7530: -52.89517,-65.13486 + 7531: -52.04803,-62.213646 + 7532: -50.955677,-60.25131 + 7533: -50.130836,-60.674995 + 7534: -51.557587,-63.261715 + 7535: -53.140392,-63.95299 + 7536: -55.185375,-65.73903 + 7537: -57.649868,-67.89419 + 7538: -58.430973,-68.02885 + 7539: -56.290848,-70.08038 + 7540: -55.443714,-68.14034 + 7541: -53.99467,-66.78008 + 7542: -52.34499,-66.64629 + 7543: -52.032887,-67.805855 + 7544: -53.48193,-69.43371 + 7545: -51.720783,-70.25878 + 7546: -51.141163,-68.05115 + 7547: -50.227154,-69.83509 + 7548: -51.676197,-72.17652 + 7549: -54.485115,-71.44064 + 7550: -55.93416,-70.86086 + 7551: -57.294033,-72.28802 + 7552: -56.313137,-73.80437 + 7553: -54.61887,-73.023895 + 7554: -53.013775,-72.421814 + 7555: -52.501038,-73.84897 + 7556: -53.972378,-75.20923 + 7557: -55.309956,-76.480286 + 7558: -54.8418,-77.59525 + 7559: -50.985115,-77.260765 + 7560: -51.520145,-74.71864 + 7561: -55.889572,-74.80784 + 7562: -57.673016,-74.58485 + 7563: -55.57414,-78.24592 + 7564: -54.035923,-78.9372 + 7565: -52.36395,-76.90796 + 7566: -50.714264,-77.71074 + 7567: -50.558216,-79.53928 + 7568: -48.90853,-79.49468 + 7569: -47.035923,-78.62501 + 7570: -44.58369,-78.6919 + 7571: -43.312992,-79.38319 + 7572: -45.23019,-80.676544 + 7573: -48.328915,-80.319756 + 7574: -51.093243,-79.11559 + 7575: -52.94356,-78.53581 + 7576: -54.437195,-80.877235 + 7577: -55.418087,-81.836105 + 7578: -53.21108,-83.218666 + 7579: -50.870316,-81.94761 + 7580: -49.131462,-81.278625 + 7581: -47.79388,-81.76921 + 7582: -47.12509,-83.174065 + 7583: -45.60917,-83.06257 + 7584: -43.736557,-82.43819 + 7585: -42.309803,-82.52739 + 7586: -43.51363,-83.776146 + 7587: -45.742928,-83.174065 + 7588: -47.749294,-81.74691 + 7589: -51.026367,-83.33016 + 7590: -52.809803,-84.28903 + 7591: -54.370316,-84.556625 + 7592: -55.172863,-85.60469 + 7593: -52.185604,-85.82768 + 7594: -50.023182,-83.553154 + 7595: -50.558216,-85.82768 + 7596: -52.207897,-86.51896 + 7597: -51.71745,-87.611626 + 7598: -51.254017,-86.72192 + 7599: -51.204212,-84.68198 + 7600: -48.57364,-86.35442 + 7601: -49.309307,-88.18297 + 7602: -53.099117,-87.2241 + 7603: -54.414402,-86.934204 + 7604: -55.30612,-88.00457 + 7605: -53.678734,-89.96691 + 7606: -53.32205,-90.836586 + 7607: -54.25835,-91.41637 + 7608: -55.97491,-90.4575 + 7609: -56.978096,-90.1899 + 7610: -57.780643,-91.66166 + 7611: -57.40166,-93.06651 + 7612: -55.083195,-94.09228 + 7613: -53.767906,-92.93272 + 7614: -51.850708,-92.732025 + 7615: -51.27109,-93.93619 + 7616: -51.80612,-95.83163 + 7617: -50.312492,-95.83163 + 7618: -48.90803,-94.38217 + 7619: -47.793385,-93.75779 + 7620: -46.767906,-95.207245 + 7621: -46.65644,-96.7013 + 7622: -47.97173,-97.97236 + 7623: -49.888927,-98.37375 + 7624: -52.943066,-97.102684 + 7625: -53.745613,-95.72013 + 7626: -54.280643,-95.11805 + 7627: -56.509945,-96.34451 + 7628: -57.669178,-96.010025 + 7629: -58.137333,-95.184944 + 7630: -57.869816,-97.52954 + 7631: -55.75198,-99.13544 + 7632: -53.99084,-97.55142 + 7633: -52.853893,-98.52006 + 7634: -56.26472,-99.45663 + 7635: -58.315678,-99.63502 + 7636: -59.76472,-100.2817 + 7637: -58.33797,-101.10677 + 7638: -56.019497,-101.21827 + 7639: -54.03542,-100.1479 + 7640: -52.00676,-99.70192 + 7641: -51.739243,-100.92838 + 7642: -50.134148,-100.950676 + 7643: -48.863445,-99.56812 + 7644: -47.213764,-99.70192 + 7645: -48.61822,-101.66425 + 7646: -47.54816,-102.288635 + 7647: -47.1023,-98.94374 + 7648: -45.162807,-98.47546 + 7649: -45.876186,-96.75841 + 7650: -52.274273,-99.233635 + 7651: -52.274273,-99.233635 + 7652: -67.390755,-101.16037 + 7653: -70.4671,-101.18267 + 7654: -73.655,-101.40566 + 7655: -75.059456,-102.632126 + 7656: -76.73144,-102.14154 + 7657: -76.709145,-100.090004 + 7658: -77.33334,-98.395256 + 7659: -79.562645,-99.04194 + 7660: -80.632706,-100.491394 + 7661: -77.28876,-100.75899 + 7662: -78.559456,-100.714386 + 7663: -76.709145,-95.96463 + 7664: -77.60086,-94.359085 + 7665: -79.64136,-93.550545 + 7666: -82.26485,-95.96126 + 7667: -82.772064,-97.48282 + 7668: -82.22284,-98.9564 + 7669: -84.3176,-97.73075 + 7670: -85.655174,-95.099434 + 7671: -85.12014,-93.49388 + 7672: -83.292114,-93.82838 + 7673: -82.734795,-94.94334 + 7674: -81.085106,-93.003296 + 7675: -80.61696,-91.04096 + 7676: -79.101036,-90.92947 + 7677: -78.45454,-92.222824 + 7678: -78.43224,-94.38586 + 7679: -77.96409,-96.59349 + 7680: -76.47046,-94.63115 + 7681: -75.93543,-91.73224 + 7682: -76.06919,-90.72877 + 7683: -79.39085,-92.35662 + 7684: -84.585106,-95.144035 + 7685: -85.566,-96.92798 + 7686: -84.161545,-98.42203 + 7687: -82.4004,-99.938385 + 7688: -81.24116,-100.78576 + 7689: -87.39403,-94.40816 + 7690: -87.12651,-92.31202 + 7691: -87.02306,-96.62319 + 7692: -84.92779,-99.00916 + 7693: -88.379875,-90.95423 + 7694: -86.56754,-91.3607 + 7695: -89.30958,-88.2834 + 7696: -89.68856,-86.09807 + 7697: -88.417854,-83.77894 + 7698: -87.92741,-85.1615 + 7699: -87.280914,-83.71204 + 7700: -89.866905,-82.017296 + 7701: -89.26499,-80.34485 + 7702: -87.88283,-77.958824 + 7703: -85.22996,-77.86962 + 7704: -85.22996,-80.18875 + 7705: -83.134415,-79.698166 + 7706: -81.79684,-78.494 + 7707: -79.65671,-79.675865 + 7708: -80.81595,-80.76853 + 7709: -82.287285,-81.52671 + 7710: -81.707664,-82.90926 + 7711: -79.94652,-83.04306 + 7712: -79.27773,-84.04653 + 7713: -79.567535,-85.652084 + 7714: -82.220406,-84.314125 + 7715: -82.8892,-83.24376 + 7716: -80.280914,-86.87855 + 7717: -79.32232,-87.61442 + 7718: -79.300026,-88.3949 + 7719: -77.226776,-90.491035 + 7720: -90.58159,-77.60713 + 7721: -88.75295,-76.46889 + 7722: -87.460304,-77.762794 + 7723: -86.12272,-76.53634 + 7724: -86.43482,-74.306404 + 7725: -87.99534,-73.30294 + 7726: -88.64183,-75.867355 + 7727: -87.08132,-74.707794 + 7728: -86.96986,-71.76428 + 7729: -87.7947,-70.22563 + 7730: -89.0654,-69.66815 + 7731: -90.22463,-70.62702 + 7732: -89.82336,-71.3183 + 7733: -90.44756,-70.02494 + 7734: -92.05266,-69.132965 + 7735: -92.00807,-67.28212 + 7736: -90.893425,-66.211754 + 7737: -89.84565,-67.48282 + 7738: -91.740555,-68.151794 + 7739: -93.30106,-68.753876 + 7740: -94.19279,-70.292534 + 7741: -92.47623,-71.38519 + 7742: -90.84884,-70.60472 + 7743: -88.753296,-67.66121 + 7744: -89.84565,-65.10331 + 7745: -91.89661,-63.770077 + 7746: -93.32336,-65.96183 + 7747: -93.680046,-64.44548 + 7748: -92.83292,-61.992558 + 7749: -91.56222,-61.078285 + 7750: -89.57814,-62.483143 + 7751: -88.06222,-62.57234 + 7752: -87.41572,-60.98909 + 7753: -85.743744,-60.342407 + 7754: -84.49534,-61.234383 + 7755: -85.5654,-62.55004 + 7756: -83.73737,-62.86223 + 7757: -82.109985,-61.18978 + 7758: -80.23737,-59.807224 + 7759: -77.76285,-60.38701 + 7760: -76.58132,-62.037155 + 7761: -80.103615,-62.83993 + 7762: -82.86794,-63.575806 + 7763: -83.13546,-65.93953 + 7764: -80.906166,-66.40782 + 7765: -79.54629,-64.133286 + 7766: -78.07495,-63.48661 + 7767: -77.02718,-65.15906 + 7768: -76.9826,-67.210594 + 7769: -79.5017,-67.74577 + 7770: -80.92846,-69.931114 + 7771: -78.98897,-70.95688 + 7772: -77.69598,-68.86074 + 7773: -80.37113,-67.58968 + 7774: -81.820175,-67.45589 + 7775: -82.42209,-69.79732 + 7776: -80.25967,-72.25024 + 7777: -79.25648,-73.72199 + 7778: -80.28196,-75.03765 + 7779: -78.34247,-75.305244 + 7780: -77.33929,-72.38403 + 7781: -77.9189,-70.221 + 7782: -79.390236,-68.771545 + 7783: -81.44119,-72.986115 + 7784: -81.26285,-74.81466 + 7785: -81.820175,-76.30871 + 7786: -80.59406,-77.267586 + 7787: -79.65775,-76.65691 + 7788: -78.69916,-76.322426 + 7789: -82.57813,-77.52659 + 7790: -79.672264,-70.26857 + 7791: -80.78331,-70.955666 + 7792: -76.99379,-63.600155 + 7793: -78.54725,-60.78267 + 7794: -76.22878,-59.712303 + 7795: -74.8912,-61.184055 + 7796: -73.64279,-62.187523 + 7797: -71.83706,-61.317852 + 7798: -70.521774,-61.184055 + 7799: -70.36572,-62.9011 + 7800: -72.951706,-62.25442 + 7801: -73.91031,-59.912994 + 7802: -74.71285,-63.168694 + 7803: -72.14272,-62.70041 + 7804: -81.57815,-58.35206 + 7805: -84.03084,-57.72764 + 7806: -83.96396,-59.756874 + 7807: -84.521286,-59.68998 + 7808: -86.52766,-57.59384 + 7809: -87.48625,-56.969463 + 7810: -88.82383,-57.883736 + 7811: -88.62319,-59.489285 + 7812: -88.69007,-60.113667 + 7813: -90.04995,-59.868374 + 7814: -90.47351,-57.526947 + 7815: -90.428925,-56.43428 + 7816: -92.05631,-56.74647 + 7817: -93.3939,-58.084427 + 7818: -92.858864,-59.28859 + 7819: -88.95759,-60.604248 + 7820: -90.62956,-60.87184 + 7821: -91.65504,-57.99523 + 7822: -94.218735,-56.278183 + 7823: -94.6646,-57.59384 + 7824: -93.83976,-60.225163 + 7825: -94.10727,-61.964508 + 7826: -94.673,-63.525616 + 7827: -97.21427,-63.703995 + 7828: -97.92765,-63.391804 + 7829: -99.80026,-59.2984 + 7830: -97.01364,-56.46639 + 7831: -103.56778,-55.974827 + 7832: -105.90855,-51.225075 + 7833: -105.21746,-51.69336 + 7834: -100.633,-47.332405 + 7835: -95.85136,-45.91663 + 7836: -92.95327,-44.48947 + 7837: -92.37365,-45.203053 + 7838: -86.55061,-43.445396 + 7839: -84.25443,-41.260067 + 7840: -80.620674,-40.74718 + 7841: -79.5952,-42.06284 + 7842: -79.082466,-39.721413 + 7843: -80.04106,-37.803673 + 7844: -82.11431,-36.9117 + 7845: -82.916855,-38.53955 + 7846: -81.713036,-40.390392 + 7847: -82.02514,-40.568787 + 7848: -83.786285,-36.800205 + 7849: -81.98055,-35.194653 + 7850: -81.40093,-37.33539 + 7851: -80.66526,-38.82944 + 7852: -80.08565,-35.885933 + 7853: -76.84547,-45.457504 + 7854: -75.01745,-44.543236 + 7855: -73.234,-45.791996 + 7856: -74.772224,-46.683968 + 7857: -73.96967,-47.732037 + 7858: -72.119354,-45.836594 + 7859: -71.65121,-45.01152 + 7860: -72.342285,-47.95503 + 7861: -71.45057,-50.363354 + 7862: -70.67031,-50.80934 + 7863: -71.74037,-47.26375 + 7864: -71.74037,-42.982285 + 7865: -33.038296,-58.112267 + 7866: -30.719826,-57.554787 + 7867: -29.672054,-57.309494 + 7868: -27.799442,-58.848145 + 7869: -26.528744,-58.870445 + 7870: -25.191162,-56.37292 + 7871: -22.917278,-55.570145 + 7872: -22.025558,-56.529015 + 7873: -24.076515,-57.933872 + 7874: -23.430016,-59.762417 + 7875: -21.089252,-58.469055 + 7876: -20.242119,-58.714348 + 7877: -20.17524,-60.498295 + 7878: -22.627468,-61.769356 + 7879: -26.261227,-60.141502 + 7880: -27.130653,-60.074608 + 7881: -27.041481,-62.21534 + 7882: -25.503265,-64.11078 + 7883: -23.652946,-62.639027 + 7884: -21.802628,-60.92198 + 7885: -20.308998,-61.56866 + 7886: -21.06696,-63.887787 + 7887: -23.496895,-62.661327 + 7888: -24.834476,-60.67669 + 7889: -25.213455,-62.059246 + 7890: -25.949123,-66.6752 + 7891: -25.659317,-69.19502 + 7892: -20.910908,-68.503746 + 7893: -18.949123,-64.91355 + 7894: -19.863136,-62.705925 + 7895: -17.700718,-63.77629 + 7896: -17.745304,-66.6975 + 7897: -19.930016,-67.27728 + 7898: -22.805813,-64.77976 + 7899: -24.366322,-64.40067 + 7900: -24.187977,-67.29958 + 7901: -21.53511,-69.038925 + 7902: -18.081524,-68.5906 + 7903: -16.149231,-67.323166 + 7904: -24.088776,-68.20276 + 7905: -23.482643,-69.84851 + 7906: -25.289173,-70.69668 + 7907: -26.916561,-69.60401 + 7908: -27.34013,-70.60748 + 7909: -24.821022,-72.07923 + 7910: -21.588535,-70.96427 + 7911: -19.582165,-70.89737 + 7912: -18.578983,-72.50292 + 7913: -17.798729,-74.57676 + 7914: -19.22548,-74.95585 + 7915: -20.696815,-73.350296 + 7916: -22.792358,-71.92314 + 7917: -23.617199,-72.54752 + 7918: -23.594906,-74.688255 + 7919: -26.76051,-75.045044 + 7920: -27.629936,-74.286865 + 7921: -26.203186,-73.41719 + 7922: -25.48981,-74.309166 + 7923: -26.336945,-76.026215 + 7924: -28.16497,-77.23038 + 7925: -28.053505,-78.27844 + 7926: -28.811466,-81.28885 + 7927: -22.72548,-81.31115 + 7928: -20.897453,-80.08469 + 7929: -20.228664,-77.163475 + 7930: -18.645863,-76.6506 + 7931: -19.827389,-79.37111 + 7932: -20.964333,-80.48203 + 7933: -19.44841,-81.327736 + 7934: -19.992573,-80.200325 + 7935: -17.814949,-78.28983 + 7936: -17.52441,-76.40162 + 7937: -17.59129,-75.71074 + 7938: -17.680462,-81.35246 + 7939: -18.170906,-83.2925 + 7940: -21.225048,-82.19984 + 7941: -22.674091,-80.126 + 7942: -21.6932,-78.319756 + 7943: -21.91613,-77.91837 + 7944: -22.116768,-81.10717 + 7945: -22.80785,-83.404 + 7946: -25.148613,-82.77962 + 7947: -26.642246,-82.13294 + 7948: -26.575367,-83.69389 + 7949: -24.613583,-84.20678 + 7950: -24.390652,-81.30787 + 7951: -23.253708,-80.460495 + 7952: -33.434273,-81.415146 + 7953: -34.16994,-79.6981 + 7954: -31.40561,-79.16292 + 7955: -31.583954,-81.192154 + 7956: -29.978859,-80.813065 + 7957: -29.510704,-78.98452 + 7958: -31.69542,-82.28482 + 7959: -33.3451,-82.8423 + 7960: -35.52981,-82.39632 + 7961: -36.80051,-83.39979 + 7962: -35.061657,-85.049934 + 7963: -39.631725,-82.61931 + 7964: -40.30051,-82.329414 + 7965: -37.693584,-86.70783 + 7966: -36.84697,-87.58105 + 7967: -40.41385,-88.852104 + 7968: -42.687733,-90.07857 + 7969: -41.149517,-92.3085 + 7970: -40.569897,-94.42693 + 7971: -39.366077,-96.45617 + 7972: -37.51576,-95.31891 + 7973: -36.46799,-96.389275 + 7974: -37.426586,-98.686104 + 7975: -34.706844,-98.5969 + 7976: -33.993465,-96.87986 + 7977: -32.499836,-96.50077 + 7978: -29.289646,-94.73913 + 7979: -28.397926,-93.02208 + 7980: -29.936142,-89.87788 + 7981: -30.159073,-87.87094 + 7982: -31.808754,-88.25002 + 7983: -30.783276,-90.16776 + 7984: -32.38837,-88.896706 + 7985: -33.614487,-87.09046 + 7986: -34.862892,-85.9086 + 7987: -35.710026,-86.800575 + 7988: -33.324677,-87.78174 + 7989: -31.875633,-86.800575 + 7990: -47.863968,-89.63258 + 7991: -47.039127,-91.394226 + 7992: -34.665634,-78.15241 + 7993: -27.371681,-79.83549 + 7994: -25.102459,-85.92377 + 7995: -24.121372,-88.48595 + 7996: -24.478062,-90.47059 + 7997: -22.694622,-91.02807 + 7998: -21.223286,-90.381386 + 7999: -19.439846,-90.40369 + 8000: -19.083157,-92.43292 + 8001: -21.067234,-94.23917 + 8002: -23.43029,-93.3695 + 8003: -24.165958,-92.52212 + 8004: -25.369781,-93.480995 + 8005: -26.127743,-94.72975 + 8006: -24.567234,-97.40567 + 8007: -22.337933,-98.18615 + 8008: -20.933475,-95.62173 + 8009: -21.04494,-92.38833 + 8010: -20.130928,-92.23223 + 8011: -19.974876,-95.08654 + 8012: -21.892075,-97.73267 + 8013: -23.608635,-95.80076 + 8014: -23.764687,-95.269936 + 8015: -26.216915,-98.76976 + 8016: -25.512516,-101.32656 + 8017: -24.496387,-102.07653 + 8018: -21.964226,-99.983826 + 8019: -23.413269,-99.27025 + 8020: -24.951488,-99.35945 + 8021: -23.792252,-100.58591 + 8022: -23.99289,-102.41445 + 8023: -25.896374,-103.713295 + 8024: -27.36026,-105.81972 + 8025: -29.048191,-104.28118 + 8026: -26.5309,-101.895706 + 8027: -26.68695,-100.06716 + 8028: -26.798416,-102.0295 + 8029: -24.903511,-104.83922 + 8030: -24.100964,-104.192535 + 8031: -30.63976,-102.730934 + 8032: -31.56586,-102.95459 + 8033: -32.454865,-105.40551 + 8034: -31.626915,-106.8351 + 8035: -33.76704,-106.47831 + 8036: -31.22564,-104.649765 + 8037: -31.270226,-103.5125 + 8038: -34.235195,-102.08534 + 8039: -35.884876,-100.836586 + 8040: -36.24156,-102.82122 + 8041: -34.146023,-103.3787 + 8042: -34.034557,-101.12647 + 8043: -35.349842,-99.38713 + 8044: -39.617184,-102.330635 + 8045: -40.332554,-101.59476 + 8046: -40.332554,-103.267204 + 8047: -40.131916,-104.29298 + 8048: -42.62873,-104.51597 + 8049: -43.386692,-104.93965 + 8050: -44.25612,-105.67553 + 8051: -45.83892,-105.11805 + 8052: -47.065037,-103.80239 + 8053: -41.58096,-105.94312 + 8054: -41.22427,-102.62053 + 8055: -41.915356,-103.17801 + 8056: -40.956757,-105.54173 + 8057: -41.179684,-107.28108 + 8058: -39.106438,-107.68247 + 8059: -38.928093,-106.5006 + 8060: -38.504494,-102.48343 + 8061: -125.745995,-23.512453 + 8062: -123.316055,-24.60512 + 8063: -122.95937,-23.467854 + 8064: -125.23325,-21.08183 + 8065: -125.679115,-19.230986 + 8066: -128.28738,-17.536238 + 8067: -131.92114,-18.182919 + 8068: -132.45618,-22.107597 + 8069: -131.38611,-23.066467 + 8070: -135.867,-19.721571 + 8071: -133.12497,-18.339014 + 8072: -137.36064,-17.090252 + 8073: -138.76509,-18.651203 + 8074: -140.08038,-17.893028 + 8075: -139.41159,-14.793425 + 8076: -136.55809,-13.544662 + 8077: -134.12816,-15.729996 + 8078: -134.5963,-18.539707 + 8079: -132.74599,-18.918795 + 8080: -130.62816,-18.093721 + 8081: -130.60587,-16.042185 + 8082: -133.19185,-14.302839 + 8083: -134.79694,-12.875683 + 8084: -133.61542,-15.5515995 + 8085: -132.3893,-16.84496 + 8086: -131.56445,-15.997587 + 8087: -136.02986,-13.984619 + 8088: -138.2506,-15.545628 + 8089: -141.07683,-13.514254 + 8090: -138.73984,-11.811832 + 8091: -137.00098,-11.098254 + 8092: -137.60289,-12.324717 + 8093: -138.91818,-13.395082 + 8094: -135.55194,-12.012526 + 8095: -138.29398,-9.470406 + 8096: -139.00735,-7.131274 + 8097: -137.60289,-8.313137 + 8098: -140.122,-6.2839003 + 8099: -137.42455,-1.1773591 + 8100: -137.20161,-1.8463383 + 8101: -139.72072,-0.3522849 + 8102: -139.11882,0.026803493 + 8103: -138.31627,-1.1550598 + 8104: -135.68568,-0.68677425 + 8105: -140.65703,0.24979639 + 8106: -131.79872,-3.6090431 - node: color: '#FFFFFFBF' id: Grasse3 decals: - 12206: -14.146673,-67.861145 + 12202: -14.146673,-67.861145 - node: cleanable: True color: '#FFFFFFBF' id: Grasse3 decals: - 12207: -10.115252,-64.14939 - 12208: -9.862535,-68.96604 - 12209: -11.869397,-67.092896 - 12210: -10.784206,-66.46852 - 12211: -12.449158,-64.402115 - 12212: -10.278774,-62.216785 - 12213: -9.476029,-62.737103 - 12214: 11.450465,-61.628952 - 12215: 16.311531,-59.9788 - 12216: 14.661445,-63.3237 - 12217: 16.252068,-63.01151 - 12218: 14.126281,-65.36037 - 12219: 17.887287,-61.00457 - 12220: 20.66716,-59.75581 - 12221: 20.74149,-61.86681 - 12222: 23.476768,-59.176025 - 12223: 22.346977,-57.60021 - 12224: 22.763218,-61.51002 - 12225: 25.168888,-59.302925 - 12226: 29.539387,-58.97587 - 12227: 21.095142,-52.617577 - 12228: 21.73434,-47.19939 - 12229: 22.65601,-44.909058 - 12230: 32.1194,-46.983047 - 12231: 39.660366,-47.442715 - 12232: 41.594276,-46.1352 - 12233: 42.97678,-47.29476 - 12234: 41.252365,-48.469193 - 12235: 45.340416,-45.92707 - 12236: 43.73493,-48.959778 - 12237: 40.44962,-44.945904 - 12238: 33.870403,-57.04366 - 12239: 49.634823,-40.296932 - 12240: 50.913177,-42.720215 - 12241: 51.849712,-39.09286 - 12242: 50.94291,-32.48369 - 12243: 54.020096,-25.83735 - 12244: 47.553543,-19.007807 - 12245: 50.095566,-15.142595 - 12246: 52.934902,-16.76301 - 12247: 55.12015,-14.0722275 - 12248: 52.5038,-13.0815525 - 12249: 53.678185,-9.506165 - 12250: 52.013233,-6.8998146 - 12251: 53.143024,-5.219934 - 12252: 53.811977,-11.5245695 - 12253: 51.89431,-10.142013 - 12254: 52.05783,-4.188263 - 12255: 47.09042,10.353611 - 12256: 49.810833,10.815094 - 12257: 46.391735,7.886223 - 12258: 46.24308,19.29968 - 12259: 47.744507,21.76747 - 12260: 50.49465,19.552406 - 12261: 50.375725,22.540512 - 12262: 45.25268,22.733774 + 12203: -10.115252,-64.14939 + 12204: -9.862535,-68.96604 + 12205: -11.869397,-67.092896 + 12206: -10.784206,-66.46852 + 12207: -12.449158,-64.402115 + 12208: -10.278774,-62.216785 + 12209: -9.476029,-62.737103 + 12210: 11.450465,-61.628952 + 12211: 16.311531,-59.9788 + 12212: 14.661445,-63.3237 + 12213: 16.252068,-63.01151 + 12214: 14.126281,-65.36037 + 12215: 17.887287,-61.00457 + 12216: 20.66716,-59.75581 + 12217: 20.74149,-61.86681 + 12218: 23.476768,-59.176025 + 12219: 22.346977,-57.60021 + 12220: 22.763218,-61.51002 + 12221: 25.168888,-59.302925 + 12222: 29.539387,-58.97587 + 12223: 21.095142,-52.617577 + 12224: 21.73434,-47.19939 + 12225: 22.65601,-44.909058 + 12226: 32.1194,-46.983047 + 12227: 39.660366,-47.442715 + 12228: 41.594276,-46.1352 + 12229: 42.97678,-47.29476 + 12230: 41.252365,-48.469193 + 12231: 45.340416,-45.92707 + 12232: 43.73493,-48.959778 + 12233: 40.44962,-44.945904 + 12234: 33.870403,-57.04366 + 12235: 49.634823,-40.296932 + 12236: 50.913177,-42.720215 + 12237: 51.849712,-39.09286 + 12238: 50.94291,-32.48369 + 12239: 54.020096,-25.83735 + 12240: 47.553543,-19.007807 + 12241: 50.095566,-15.142595 + 12242: 52.934902,-16.76301 + 12243: 55.12015,-14.0722275 + 12244: 52.5038,-13.0815525 + 12245: 53.678185,-9.506165 + 12246: 52.013233,-6.8998146 + 12247: 53.143024,-5.219934 + 12248: 53.811977,-11.5245695 + 12249: 51.89431,-10.142013 + 12250: 52.05783,-4.188263 + 12251: 47.09042,10.353611 + 12252: 49.810833,10.815094 + 12253: 46.391735,7.886223 + 12254: 46.24308,19.29968 + 12255: 47.744507,21.76747 + 12256: 50.49465,19.552406 + 12257: 50.375725,22.540512 + 12258: 45.25268,22.733774 - node: color: '#FFFFFFFF' id: Grasse3 @@ -13675,11 +13688,11 @@ entities: 4546: -36.24545,-24.848705 4547: -37.167118,-29.13017 4548: -37.449566,-24.863571 - 5939: 33.02952,-37.912617 - 6134: -58.705303,-88.079475 - 6137: -62.561512,-82.61821 - 6158: -60.639614,-89.08573 - 6159: -75.13243,-88.46542 + 5935: 33.02952,-37.912617 + 6130: -58.705303,-88.079475 + 6133: -62.561512,-82.61821 + 6154: -60.639614,-89.08573 + 6155: -75.13243,-88.46542 - node: cleanable: True color: '#FFFFFFFF' @@ -13715,1009 +13728,1009 @@ entities: color: '#FFFFFFFF' id: GrayConcreteTrimBox decals: - 6027: -59,-86 - 6028: -67,-84 - 6029: -74,-87 - 6030: -74,-79 - 6031: -64,-79 - 6782: -119,-44 - 6836: -128,-23 - 11259: 25,-47 - 12498: -21,-89 + 6023: -59,-86 + 6024: -67,-84 + 6025: -74,-87 + 6026: -74,-79 + 6027: -64,-79 + 6778: -119,-44 + 6832: -128,-23 + 11255: 25,-47 + 12494: -21,-89 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: - 6035: -71,-79 - 6036: -70,-80 - 6461: -95,-65 - 6718: -96,-61 - 6837: -132,-25 - 7132: -66,-60 - 7185: -97,1 - 11003: 12,-63 - 11124: 12,-72 - 12089: 102,3 - 12134: 96,21 - 12183: 127,6 - 17536: 127,11 - 17686: -158,-23 - 17693: -152,-23 - 17701: 82,31 - 17778: -7,12 + 6031: -71,-79 + 6032: -70,-80 + 6457: -95,-65 + 6714: -96,-61 + 6833: -132,-25 + 7128: -66,-60 + 7181: -97,1 + 10999: 12,-63 + 11120: 12,-72 + 12085: 102,3 + 12130: 96,21 + 12179: 127,6 + 17500: 127,11 + 17618: -158,-23 + 17625: -152,-23 + 17633: 82,31 + 17710: -7,12 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: - 6384: -101,-30 - 6385: -100,-31 - 6420: -101,-26 - 6423: -113,-33 - 11097: -6,-63 - 11098: 0,-63 - 11099: 6,-63 - 11109: -6,-72 - 11116: 0,-72 - 11117: 6,-72 + 6380: -101,-30 + 6381: -100,-31 + 6416: -101,-26 + 6419: -113,-33 + 11093: -6,-63 + 11094: 0,-63 + 11095: 6,-63 + 11105: -6,-72 + 11112: 0,-72 + 11113: 6,-72 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: - 6042: -66,-81 - 6056: -71,-85 - 6057: -72,-86 - 6058: -74,-89 - 6462: -102,-65 - 6717: -100,-61 - 7129: -69,-60 - 7184: -107,1 - 10989: -8,-63 - 11121: -2,-63 - 11122: 4,-63 - 11123: 10,-63 - 11127: -8,-72 - 11276: 35,-50 - 12088: 98,3 - 12135: 93,21 - 12182: 126,6 - 17535: 124,11 - 17654: -164,-26 - 17655: -162,-25 - 17685: -160,-23 - 17692: -154,-23 - 17704: 78,31 - 17766: -11,12 + 6038: -66,-81 + 6052: -71,-85 + 6053: -72,-86 + 6054: -74,-89 + 6458: -102,-65 + 6713: -100,-61 + 7125: -69,-60 + 7180: -107,1 + 10985: -8,-63 + 11117: -2,-63 + 11118: 4,-63 + 11119: 10,-63 + 11123: -8,-72 + 11272: 35,-50 + 12084: 98,3 + 12131: 93,21 + 12178: 126,6 + 17499: 124,11 + 17586: -164,-26 + 17587: -162,-25 + 17617: -160,-23 + 17624: -154,-23 + 17636: 78,31 + 17698: -11,12 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: - 6403: -108,-31 - 6404: -107,-30 - 6405: -106,-29 - 6417: -104,-22 - 6422: -115,-33 - 11106: 10,-72 - 11107: 4,-72 - 11108: -2,-72 + 6399: -108,-31 + 6400: -107,-30 + 6401: -106,-29 + 6413: -104,-22 + 6418: -115,-33 + 11102: 10,-72 + 11103: 4,-72 + 11104: -2,-72 - node: zIndex: 1 color: '#0000003F' id: GrayConcreteTrimCornerSe decals: - 6747: -106.279724,-30.721611 + 6743: -106.279724,-30.721611 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 6060: -73,-89 - 6061: -72,-88 - 6062: -71,-87 - 6063: -70,-86 - 6067: -69,-85 - 6075: -62,-78 - 6082: -66,-83 - 6085: -64,-82 - 6464: -95,-70 - 6722: -96,-62 - 6879: -132,-29 - 6901: -143,-36 - 11014: 12,-79 - 11125: 12,-65 - 12137: 96,19 - 12184: 127,5 - 15455: 128,-46 - 17534: 127,8 - 17659: -155,-36 - 17702: 82,29 - 17774: -7,8 + 6056: -73,-89 + 6057: -72,-88 + 6058: -71,-87 + 6059: -70,-86 + 6063: -69,-85 + 6071: -62,-78 + 6078: -66,-83 + 6081: -64,-82 + 6460: -95,-70 + 6718: -96,-62 + 6875: -132,-29 + 6897: -143,-36 + 11010: 12,-79 + 11121: 12,-65 + 12133: 96,19 + 12180: 127,5 + 15451: 128,-46 + 17498: 127,8 + 17591: -155,-36 + 17634: 82,29 + 17706: -7,8 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 6386: -100,-35 - 6387: -101,-36 - 6388: -102,-37 - 6419: -101,-28 - 6425: -109,-36 - 11090: -6,-74 - 11093: 6,-74 - 11110: -6,-65 - 11111: 0,-65 - 11112: 6,-65 + 6382: -100,-35 + 6383: -101,-36 + 6384: -102,-37 + 6415: -101,-28 + 6421: -109,-36 + 11086: -6,-74 + 11089: 6,-74 + 11106: -6,-65 + 11107: 0,-65 + 11108: 6,-65 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSw decals: - 6048: -71,-82 - 6049: -72,-80 - 6050: -73,-78 - 6077: -64,-77 - 6463: -102,-70 - 6723: -100,-62 - 6903: -145,-36 - 7186: -107,-1 - 10980: -8,-74 - 11017: 8,-79 - 11126: -8,-65 - 11137: 4,-74 - 12094: 98,-2 - 12136: 93,19 - 12185: 126,5 - 15456: 124,-46 - 17537: 124,8 - 17656: -164,-28 - 17657: -162,-29 - 17658: -157,-36 - 17703: 78,29 - 17770: -11,8 + 6044: -71,-82 + 6045: -72,-80 + 6046: -73,-78 + 6073: -64,-77 + 6459: -102,-70 + 6719: -100,-62 + 6899: -145,-36 + 7182: -107,-1 + 10976: -8,-74 + 11013: 8,-79 + 11122: -8,-65 + 11133: 4,-74 + 12090: 98,-2 + 12132: 93,19 + 12181: 126,5 + 15452: 124,-46 + 17501: 124,8 + 17588: -164,-28 + 17589: -162,-29 + 17590: -157,-36 + 17635: 78,29 + 17702: -11,8 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimCornerSw decals: - 6389: -106,-37 - 6390: -107,-36 - 6416: -104,-24 - 6426: -111,-36 - 11105: 10,-74 - 11113: 10,-65 - 11114: 4,-65 - 11115: -2,-65 + 6385: -106,-37 + 6386: -107,-36 + 6412: -104,-24 + 6422: -111,-36 + 11101: 10,-74 + 11109: 10,-65 + 11110: 4,-65 + 11111: -2,-65 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe decals: - 6037: -71,-80 - 6047: -70,-82 - 11139: -6,-72 - 11140: 0,-72 - 11141: 6,-72 - 11142: 6,-63 - 11143: 0,-63 - 11144: -6,-63 - 11145: -6,-72 - 12929: 112,-7 - 12930: 114,-7 - 17538: 124,8 + 6033: -71,-80 + 6043: -70,-82 + 11135: -6,-72 + 11136: 0,-72 + 11137: 6,-72 + 11138: 6,-63 + 11139: 0,-63 + 11140: -6,-63 + 11141: -6,-72 + 12925: 112,-7 + 12926: 114,-7 + 17502: 124,8 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe decals: - 6396: -117,-34 - 6408: -102,-30 - 6409: -101,-31 - 6818: -80,-45 - 11146: -6,-72 - 11147: 0,-72 - 11148: 6,-72 - 11164: 12,-72 - 11166: 6,-63 - 11168: 0,-63 - 11169: -6,-63 - 11181: 0,-68 + 6392: -117,-34 + 6404: -102,-30 + 6405: -101,-31 + 6814: -80,-45 + 11142: -6,-72 + 11143: 0,-72 + 11144: 6,-72 + 11160: 12,-72 + 11162: 6,-63 + 11164: 0,-63 + 11165: -6,-63 + 11177: 0,-68 - node: color: '#00000066' id: GrayConcreteTrimInnerNw decals: - 6204: -61,-79 + 6200: -61,-79 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 6045: -66,-82 - 6046: -64,-81 - 6059: -73,-89 - 6065: -71,-86 - 6066: -70,-85 - 12933: 114,-7 - 12934: 116,-7 - 17539: 127,8 + 6041: -66,-82 + 6042: -64,-81 + 6055: -73,-89 + 6061: -71,-86 + 6062: -70,-85 + 12929: 114,-7 + 12930: 116,-7 + 17503: 127,8 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 6397: -108,-34 - 6398: -107,-31 - 6399: -106,-30 - 6400: -103,-29 - 6819: -80,-45 - 11156: -2,-72 - 11157: 4,-72 - 11158: 10,-72 - 11165: 10,-63 - 11167: 4,-63 - 11170: -2,-63 - 11172: -8,-72 - 11182: 4,-68 + 6393: -108,-34 + 6394: -107,-31 + 6395: -106,-30 + 6396: -103,-29 + 6815: -80,-45 + 11152: -2,-72 + 11153: 4,-72 + 11154: 10,-72 + 11161: 10,-63 + 11163: 4,-63 + 11166: -2,-63 + 11168: -8,-72 + 11178: 4,-68 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 6064: -71,-86 - 6068: -70,-85 - 6069: -69,-83 - 6074: -63,-79 - 6081: -72,-87 - 6083: -66,-82 - 6187: -73,-88 - 7134: -117,-35 - 12935: 112,-5 - 12936: 114,-5 - 17541: 124,11 + 6060: -71,-86 + 6064: -70,-85 + 6065: -69,-83 + 6070: -63,-79 + 6077: -72,-87 + 6079: -66,-82 + 6183: -73,-88 + 7130: -117,-35 + 12931: 112,-5 + 12932: 114,-5 + 17505: 124,11 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 6411: -101,-35 - 6412: -102,-36 - 6820: -80,-45 - 11149: -6,-65 - 11150: 0,-65 - 11151: 6,-65 - 11159: -6,-74 - 11162: 6,-74 - 11163: 12,-65 - 11179: 0,-69 + 6407: -101,-35 + 6408: -102,-36 + 6816: -80,-45 + 11145: -6,-65 + 11146: 0,-65 + 11147: 6,-65 + 11155: -6,-74 + 11158: 6,-74 + 11159: 12,-65 + 11175: 0,-69 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw decals: - 6051: -72,-78 - 6054: -71,-80 - 6079: -70,-82 - 12931: 114,-5 - 12932: 116,-5 - 17540: 127,11 + 6047: -72,-78 + 6050: -71,-80 + 6075: -70,-82 + 12927: 114,-5 + 12928: 116,-5 + 17504: 127,11 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw decals: - 6401: -107,-35 - 6402: -106,-36 - 6821: -80,-45 - 11152: -2,-65 - 11153: 4,-65 - 11154: 10,-65 - 11155: 10,-74 - 11161: 4,-74 - 11171: -8,-65 - 11180: 4,-69 + 6397: -107,-35 + 6398: -106,-36 + 6817: -80,-45 + 11148: -2,-65 + 11149: 4,-65 + 11150: 10,-65 + 11151: 10,-74 + 11157: 4,-74 + 11167: -8,-65 + 11176: 4,-69 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 6019: -19,-88 - 6020: -19,-87 - 6021: -19,-86 - 6038: -70,-81 - 6072: -63,-81 - 6073: -63,-80 - 6076: -62,-77 - 6078: -64,-78 - 6189: -69,-84 - 6470: -95,-69 - 6471: -95,-68 - 6472: -95,-67 - 6880: -132,-28 - 6881: -132,-27 - 6882: -132,-26 - 6889: -143,-30 - 6890: -143,-31 - 6891: -143,-32 - 6892: -143,-33 - 6893: -143,-34 - 6894: -143,-35 - 7125: -66,-62 - 7126: -66,-61 - 11004: 12,-64 - 11005: 12,-66 - 11006: 12,-67 - 11007: 12,-68 - 11008: 12,-69 - 11009: 12,-70 - 11010: 12,-71 - 11011: 12,-76 - 11012: 12,-77 - 11013: 12,-78 - 12083: 102,1 - 12084: 102,2 - 12132: 96,20 - 12921: 112,-6 - 12922: 114,-6 - 15454: 128,-45 - 17522: 124,9 - 17523: 124,10 - 17524: 127,9 - 17525: 127,10 - 17660: -155,-35 - 17661: -155,-34 - 17662: -155,-33 - 17663: -155,-32 - 17664: -155,-31 - 17665: -155,-30 - 17689: -158,-24 - 17690: -152,-24 - 17706: 82,30 - 17775: -7,9 - 17776: -7,10 - 17777: -7,11 + 6015: -19,-88 + 6016: -19,-87 + 6017: -19,-86 + 6034: -70,-81 + 6068: -63,-81 + 6069: -63,-80 + 6072: -62,-77 + 6074: -64,-78 + 6185: -69,-84 + 6466: -95,-69 + 6467: -95,-68 + 6468: -95,-67 + 6876: -132,-28 + 6877: -132,-27 + 6878: -132,-26 + 6885: -143,-30 + 6886: -143,-31 + 6887: -143,-32 + 6888: -143,-33 + 6889: -143,-34 + 6890: -143,-35 + 7121: -66,-62 + 7122: -66,-61 + 11000: 12,-64 + 11001: 12,-66 + 11002: 12,-67 + 11003: 12,-68 + 11004: 12,-69 + 11005: 12,-70 + 11006: 12,-71 + 11007: 12,-76 + 11008: 12,-77 + 11009: 12,-78 + 12079: 102,1 + 12080: 102,2 + 12128: 96,20 + 12917: 112,-6 + 12918: 114,-6 + 15450: 128,-45 + 17486: 124,9 + 17487: 124,10 + 17488: 127,9 + 17489: 127,10 + 17592: -155,-35 + 17593: -155,-34 + 17594: -155,-33 + 17595: -155,-32 + 17596: -155,-31 + 17597: -155,-30 + 17621: -158,-24 + 17622: -152,-24 + 17638: 82,30 + 17707: -7,9 + 17708: -7,10 + 17709: -7,11 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 6376: -102,-20 - 6377: -102,-21 - 6378: -102,-22 - 6379: -102,-23 - 6380: -102,-25 - 6381: -102,-24 - 6382: -102,-25 - 6383: -102,-29 - 6413: -100,-34 - 6414: -100,-33 - 6415: -100,-32 - 6421: -101,-27 - 6431: -102,-28 - 6432: -102,-27 - 6433: -102,-26 - 6817: -95,-66 - 6823: -81,-45 - 11043: 0,-71 - 11044: 0,-70 - 11045: 0,-69 - 11046: 0,-68 - 11047: 0,-67 - 11048: 0,-66 - 11049: -6,-71 - 11050: -6,-70 - 11051: -6,-69 - 11052: -6,-68 - 11053: -6,-67 - 11054: -6,-66 - 11055: 6,-71 - 11056: 6,-70 - 11057: 6,-69 - 11058: 6,-67 - 11059: 6,-66 - 11060: 6,-68 - 11089: -6,-73 - 11091: 0,-73 - 11092: 6,-73 - 11094: 6,-64 - 11095: 0,-64 - 11096: -6,-64 - 11103: 12,-73 + 6372: -102,-20 + 6373: -102,-21 + 6374: -102,-22 + 6375: -102,-23 + 6376: -102,-25 + 6377: -102,-24 + 6378: -102,-25 + 6379: -102,-29 + 6409: -100,-34 + 6410: -100,-33 + 6411: -100,-32 + 6417: -101,-27 + 6427: -102,-28 + 6428: -102,-27 + 6429: -102,-26 + 6813: -95,-66 + 6819: -81,-45 + 11039: 0,-71 + 11040: 0,-70 + 11041: 0,-69 + 11042: 0,-68 + 11043: 0,-67 + 11044: 0,-66 + 11045: -6,-71 + 11046: -6,-70 + 11047: -6,-69 + 11048: -6,-68 + 11049: -6,-67 + 11050: -6,-66 + 11051: 6,-71 + 11052: 6,-70 + 11053: 6,-69 + 11054: 6,-67 + 11055: 6,-66 + 11056: 6,-68 + 11085: -6,-73 + 11087: 0,-73 + 11088: 6,-73 + 11090: 6,-64 + 11091: 0,-64 + 11092: -6,-64 + 11099: 12,-73 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 6039: -69,-82 - 6040: -68,-82 - 6041: -67,-82 - 6044: -65,-81 - 6071: -63,-82 - 6473: -101,-65 - 6474: -100,-65 - 6475: -98,-65 - 6476: -99,-65 - 6477: -97,-65 - 6478: -96,-65 - 6719: -99,-61 - 6720: -98,-61 - 6721: -97,-61 - 6838: -138,-25 - 6839: -139,-25 - 6840: -140,-25 - 6841: -141,-25 - 6842: -142,-25 - 6843: -143,-25 - 6844: -144,-25 - 6845: -145,-25 - 6846: -146,-25 - 6847: -147,-25 - 6848: -148,-25 - 6849: -150,-25 - 6850: -149,-25 - 6851: -151,-25 - 6852: -152,-25 - 6853: -154,-25 - 6854: -153,-25 - 6855: -155,-25 - 6856: -156,-25 - 6857: -158,-25 - 6858: -157,-25 - 7130: -68,-60 - 7131: -67,-60 - 7196: -106,1 - 7197: -105,1 - 7198: -104,1 - 7199: -103,1 - 7200: -101,1 - 7201: -100,1 - 7202: -102,1 - 7203: -99,1 - 7204: -98,1 - 10990: -7,-63 - 10991: -5,-63 - 10992: -4,-63 - 10993: -3,-63 - 10994: -1,-63 - 10995: 1,-63 - 10996: 2,-63 - 10997: 3,-63 - 10998: 5,-63 - 10999: 7,-63 - 11000: 8,-63 - 11001: 9,-63 - 11002: 11,-63 - 11128: -7,-72 - 11129: 11,-72 - 11277: 36,-50 - 11278: 37,-50 - 11279: 38,-50 - 11590: 42,17 - 11591: 43,17 - 11592: 44,17 - 11593: 45,17 - 11594: 46,17 - 11595: 47,17 - 11596: 48,17 - 11597: 49,17 - 11598: 50,17 - 11599: 51,17 - 11600: 52,17 - 11601: 53,17 - 11602: 54,17 - 11603: 55,17 - 11604: 56,17 - 11605: 57,17 - 11606: 58,17 - 11607: 59,17 - 11608: 60,17 - 11609: 61,17 - 11610: 62,17 - 11611: 63,17 - 11612: 65,17 - 11613: 64,17 - 11614: 66,17 - 11615: 67,17 - 11616: 68,17 - 11617: 69,17 - 11618: 70,17 - 11619: 71,17 - 11620: 72,17 - 11621: 73,17 - 11622: 74,17 - 11623: 75,17 - 11624: 76,17 - 11625: 77,17 - 11626: 78,17 - 11627: 80,17 - 11628: 79,17 - 11629: 81,17 - 11630: 83,17 - 11631: 82,17 - 11632: 84,17 - 11716: 84,13 - 11717: 83,13 - 11718: 82,13 - 11719: 81,13 - 11720: 80,13 - 11721: 79,13 - 11722: 78,13 - 11723: 76,13 - 11724: 77,13 - 11725: 75,13 - 11726: 74,13 - 11727: 73,13 - 11728: 72,13 - 11729: 71,13 - 11730: 70,13 - 11733: 69,13 - 11734: 68,13 - 11735: 67,13 - 11736: 65,13 - 11737: 66,13 - 11738: 64,13 - 11739: 63,13 - 11740: 62,13 - 11741: 61,13 - 11742: 60,13 - 11743: 59,13 - 11744: 58,13 - 11745: 56,13 - 11746: 57,13 - 11747: 55,13 - 11748: 54,13 - 11749: 53,13 - 11750: 52,13 - 11751: 50,13 - 11752: 51,13 - 11753: 49,13 - 11754: 48,13 - 11755: 47,13 - 11756: 46,13 - 11757: 45,13 - 11758: 44,13 - 11759: 43,13 - 11875: 85,17 - 11876: 86,17 - 11877: 85,13 - 11878: 86,13 - 11990: 129,6 - 11991: 130,6 - 11992: 131,6 - 11993: 132,6 - 11994: 133,6 - 11995: 134,6 - 11996: 136,6 - 11997: 135,6 - 11998: 137,6 - 11999: 138,6 - 12000: 139,6 - 12001: 140,6 - 12002: 141,6 - 12003: 142,6 - 12004: 142,5 - 12005: 141,5 - 12006: 140,5 - 12007: 139,5 - 12008: 138,5 - 12009: 137,5 - 12010: 135,5 - 12011: 134,5 - 12012: 136,5 - 12013: 133,5 - 12014: 132,5 - 12015: 131,5 - 12016: 130,5 - 12017: 129,5 - 12085: 99,3 - 12086: 100,3 - 12087: 101,3 - 12128: 94,21 - 12129: 95,21 - 12923: 113,-7 - 12924: 115,-7 - 17518: 126,11 - 17519: 125,11 - 17520: 125,8 - 17521: 126,8 - 17680: -163,-26 - 17682: -161,-25 - 17683: -160,-25 - 17684: -159,-25 - 17687: -159,-23 - 17694: -153,-23 - 17698: 79,31 - 17699: 80,31 - 17700: 81,31 - 17763: -10,12 - 17764: -9,12 - 17765: -8,12 + 6035: -69,-82 + 6036: -68,-82 + 6037: -67,-82 + 6040: -65,-81 + 6067: -63,-82 + 6469: -101,-65 + 6470: -100,-65 + 6471: -98,-65 + 6472: -99,-65 + 6473: -97,-65 + 6474: -96,-65 + 6715: -99,-61 + 6716: -98,-61 + 6717: -97,-61 + 6834: -138,-25 + 6835: -139,-25 + 6836: -140,-25 + 6837: -141,-25 + 6838: -142,-25 + 6839: -143,-25 + 6840: -144,-25 + 6841: -145,-25 + 6842: -146,-25 + 6843: -147,-25 + 6844: -148,-25 + 6845: -150,-25 + 6846: -149,-25 + 6847: -151,-25 + 6848: -152,-25 + 6849: -154,-25 + 6850: -153,-25 + 6851: -155,-25 + 6852: -156,-25 + 6853: -158,-25 + 6854: -157,-25 + 7126: -68,-60 + 7127: -67,-60 + 7192: -106,1 + 7193: -105,1 + 7194: -104,1 + 7195: -103,1 + 7196: -101,1 + 7197: -100,1 + 7198: -102,1 + 7199: -99,1 + 7200: -98,1 + 10986: -7,-63 + 10987: -5,-63 + 10988: -4,-63 + 10989: -3,-63 + 10990: -1,-63 + 10991: 1,-63 + 10992: 2,-63 + 10993: 3,-63 + 10994: 5,-63 + 10995: 7,-63 + 10996: 8,-63 + 10997: 9,-63 + 10998: 11,-63 + 11124: -7,-72 + 11125: 11,-72 + 11273: 36,-50 + 11274: 37,-50 + 11275: 38,-50 + 11586: 42,17 + 11587: 43,17 + 11588: 44,17 + 11589: 45,17 + 11590: 46,17 + 11591: 47,17 + 11592: 48,17 + 11593: 49,17 + 11594: 50,17 + 11595: 51,17 + 11596: 52,17 + 11597: 53,17 + 11598: 54,17 + 11599: 55,17 + 11600: 56,17 + 11601: 57,17 + 11602: 58,17 + 11603: 59,17 + 11604: 60,17 + 11605: 61,17 + 11606: 62,17 + 11607: 63,17 + 11608: 65,17 + 11609: 64,17 + 11610: 66,17 + 11611: 67,17 + 11612: 68,17 + 11613: 69,17 + 11614: 70,17 + 11615: 71,17 + 11616: 72,17 + 11617: 73,17 + 11618: 74,17 + 11619: 75,17 + 11620: 76,17 + 11621: 77,17 + 11622: 78,17 + 11623: 80,17 + 11624: 79,17 + 11625: 81,17 + 11626: 83,17 + 11627: 82,17 + 11628: 84,17 + 11712: 84,13 + 11713: 83,13 + 11714: 82,13 + 11715: 81,13 + 11716: 80,13 + 11717: 79,13 + 11718: 78,13 + 11719: 76,13 + 11720: 77,13 + 11721: 75,13 + 11722: 74,13 + 11723: 73,13 + 11724: 72,13 + 11725: 71,13 + 11726: 70,13 + 11729: 69,13 + 11730: 68,13 + 11731: 67,13 + 11732: 65,13 + 11733: 66,13 + 11734: 64,13 + 11735: 63,13 + 11736: 62,13 + 11737: 61,13 + 11738: 60,13 + 11739: 59,13 + 11740: 58,13 + 11741: 56,13 + 11742: 57,13 + 11743: 55,13 + 11744: 54,13 + 11745: 53,13 + 11746: 52,13 + 11747: 50,13 + 11748: 51,13 + 11749: 49,13 + 11750: 48,13 + 11751: 47,13 + 11752: 46,13 + 11753: 45,13 + 11754: 44,13 + 11755: 43,13 + 11871: 85,17 + 11872: 86,17 + 11873: 85,13 + 11874: 86,13 + 11986: 129,6 + 11987: 130,6 + 11988: 131,6 + 11989: 132,6 + 11990: 133,6 + 11991: 134,6 + 11992: 136,6 + 11993: 135,6 + 11994: 137,6 + 11995: 138,6 + 11996: 139,6 + 11997: 140,6 + 11998: 141,6 + 11999: 142,6 + 12000: 142,5 + 12001: 141,5 + 12002: 140,5 + 12003: 139,5 + 12004: 138,5 + 12005: 137,5 + 12006: 135,5 + 12007: 134,5 + 12008: 136,5 + 12009: 133,5 + 12010: 132,5 + 12011: 131,5 + 12012: 130,5 + 12013: 129,5 + 12081: 99,3 + 12082: 100,3 + 12083: 101,3 + 12124: 94,21 + 12125: 95,21 + 12919: 113,-7 + 12920: 115,-7 + 17482: 126,11 + 17483: 125,11 + 17484: 125,8 + 17485: 126,8 + 17612: -163,-26 + 17614: -161,-25 + 17615: -160,-25 + 17616: -159,-25 + 17619: -159,-23 + 17626: -153,-23 + 17630: 79,31 + 17631: 80,31 + 17632: 81,31 + 17695: -10,12 + 17696: -9,12 + 17697: -8,12 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 6363: -116,-34 - 6364: -112,-34 - 6365: -111,-34 - 6366: -110,-34 - 6367: -109,-34 - 6406: -105,-29 - 6407: -104,-29 - 6424: -114,-33 - 6437: -115,-34 - 6438: -114,-34 - 6439: -113,-34 - 6822: -80,-46 - 11034: -5,-72 - 11035: -4,-72 - 11036: -3,-72 - 11037: 1,-72 - 11038: 2,-72 - 11039: 3,-72 - 11040: 7,-72 - 11041: 8,-72 - 11042: 9,-72 - 11118: -1,-72 - 11119: 5,-72 - 11173: 1,-68 - 11174: 2,-68 - 11175: 3,-68 + 6359: -116,-34 + 6360: -112,-34 + 6361: -111,-34 + 6362: -110,-34 + 6363: -109,-34 + 6402: -105,-29 + 6403: -104,-29 + 6420: -114,-33 + 6433: -115,-34 + 6434: -114,-34 + 6435: -113,-34 + 6818: -80,-46 + 11030: -5,-72 + 11031: -4,-72 + 11032: -3,-72 + 11033: 1,-72 + 11034: 2,-72 + 11035: 3,-72 + 11036: 7,-72 + 11037: 8,-72 + 11038: 9,-72 + 11114: -1,-72 + 11115: 5,-72 + 11169: 1,-68 + 11170: 2,-68 + 11171: 3,-68 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 6025: -135,-5 - 6026: -134,-5 - 6070: -67,-83 - 6080: -73,-86 - 6084: -65,-82 - 6190: -68,-83 - 6465: -100,-70 - 6466: -99,-70 - 6467: -98,-70 - 6468: -97,-70 - 6469: -96,-70 - 6724: -99,-62 - 6725: -98,-62 - 6726: -97,-62 - 6780: -105,-37 - 6781: -104,-37 - 6859: -158,-29 - 6860: -157,-29 - 6861: -156,-29 - 6862: -152,-29 - 6863: -151,-29 - 6864: -150,-29 - 6865: -149,-29 - 6866: -148,-29 - 6867: -147,-29 - 6868: -146,-29 - 6869: -142,-29 - 6870: -141,-29 - 6871: -139,-29 - 6872: -140,-29 - 6873: -138,-29 - 6874: -137,-29 - 6875: -136,-29 - 6876: -135,-29 - 6877: -134,-29 - 6878: -133,-29 - 6883: -155,-29 - 6884: -154,-29 - 6885: -153,-29 - 6886: -145,-29 - 6887: -144,-29 - 6888: -143,-29 - 6902: -144,-36 - 7133: -116,-35 - 7187: -106,-1 - 7188: -105,-1 - 7189: -104,-1 - 7190: -102,-1 - 7191: -101,-1 - 7192: -103,-1 - 7193: -100,-1 - 7194: -98,-1 - 7195: -99,-1 - 11015: 11,-79 - 11016: 9,-79 - 11022: 7,-74 - 11023: 5,-74 - 11024: 2,-74 - 11025: 1,-74 - 11026: -1,-74 - 11027: -4,-74 - 11028: -5,-74 - 11029: -3,-74 - 11030: -7,-74 - 11130: -7,-65 - 11131: -1,-65 - 11132: 5,-65 - 11133: 11,-65 - 11633: 84,13 - 11634: 83,13 - 11635: 82,13 - 11636: 81,13 - 11637: 79,13 - 11638: 80,13 - 11639: 78,13 - 11640: 77,13 - 11641: 76,13 - 11642: 74,13 - 11643: 75,13 - 11644: 73,13 - 11645: 72,13 - 11646: 69,13 - 11647: 68,13 - 11648: 67,13 - 11649: 66,13 - 11650: 65,13 - 11651: 64,13 - 11652: 63,13 - 11653: 61,13 - 11654: 62,13 - 11655: 59,13 - 11656: 60,13 - 11657: 58,13 - 11658: 56,13 - 11659: 57,13 - 11660: 55,13 - 11661: 54,13 - 11662: 53,13 - 11663: 52,13 - 11664: 51,13 - 11665: 50,13 - 11666: 49,13 - 11667: 48,13 - 11668: 47,13 - 11669: 46,13 - 11670: 45,13 - 11671: 44,13 - 11672: 43,13 - 11673: 42,17 - 11674: 43,17 - 11675: 44,17 - 11676: 45,17 - 11677: 46,17 - 11678: 47,17 - 11679: 48,17 - 11680: 49,17 - 11681: 50,17 - 11682: 52,17 - 11683: 51,17 - 11684: 53,17 - 11685: 54,17 - 11686: 55,17 - 11687: 56,17 - 11688: 57,17 - 11689: 59,17 - 11690: 58,17 - 11691: 60,17 - 11692: 61,17 - 11693: 62,17 - 11694: 63,17 - 11695: 64,17 - 11696: 65,17 - 11697: 66,17 - 11698: 67,17 - 11699: 68,17 - 11700: 69,17 - 11701: 70,17 - 11702: 71,17 - 11703: 72,17 - 11704: 73,17 - 11705: 74,17 - 11706: 75,17 - 11707: 77,17 - 11708: 76,17 - 11709: 78,17 - 11710: 79,17 - 11711: 80,17 - 11712: 81,17 - 11713: 82,17 - 11714: 83,17 - 11715: 84,17 - 11731: 70,13 - 11732: 71,13 - 11879: 85,13 - 11880: 86,13 - 11881: 85,17 - 11882: 86,17 - 12018: 129,6 - 12019: 129,6 - 12020: 130,6 - 12021: 131,6 - 12022: 132,6 - 12023: 133,6 - 12024: 134,6 - 12025: 135,6 - 12026: 136,6 - 12027: 137,6 - 12028: 138,6 - 12029: 139,6 - 12030: 140,6 - 12031: 141,6 - 12032: 142,6 - 12033: 142,5 - 12034: 141,5 - 12035: 140,5 - 12036: 139,5 - 12037: 138,5 - 12038: 137,5 - 12039: 136,5 - 12040: 135,5 - 12041: 134,5 - 12042: 133,5 - 12043: 132,5 - 12044: 131,5 - 12045: 130,5 - 12046: 129,5 - 12082: 99,-2 - 12130: 95,19 - 12131: 94,19 - 12927: 113,-5 - 12928: 115,-5 - 15457: 125,-46 - 15458: 126,-46 - 15459: 127,-46 - 17526: 125,11 - 17527: 126,11 - 17528: 125,8 - 17529: 126,8 - 17673: -156,-36 - 17674: -159,-29 - 17675: -160,-29 - 17676: -161,-29 - 17681: -163,-28 - 17695: 81,29 - 17696: 80,29 - 17697: 79,29 - 17771: -10,8 - 17772: -9,8 - 17773: -8,8 + 6021: -135,-5 + 6022: -134,-5 + 6066: -67,-83 + 6076: -73,-86 + 6080: -65,-82 + 6186: -68,-83 + 6461: -100,-70 + 6462: -99,-70 + 6463: -98,-70 + 6464: -97,-70 + 6465: -96,-70 + 6720: -99,-62 + 6721: -98,-62 + 6722: -97,-62 + 6776: -105,-37 + 6777: -104,-37 + 6855: -158,-29 + 6856: -157,-29 + 6857: -156,-29 + 6858: -152,-29 + 6859: -151,-29 + 6860: -150,-29 + 6861: -149,-29 + 6862: -148,-29 + 6863: -147,-29 + 6864: -146,-29 + 6865: -142,-29 + 6866: -141,-29 + 6867: -139,-29 + 6868: -140,-29 + 6869: -138,-29 + 6870: -137,-29 + 6871: -136,-29 + 6872: -135,-29 + 6873: -134,-29 + 6874: -133,-29 + 6879: -155,-29 + 6880: -154,-29 + 6881: -153,-29 + 6882: -145,-29 + 6883: -144,-29 + 6884: -143,-29 + 6898: -144,-36 + 7129: -116,-35 + 7183: -106,-1 + 7184: -105,-1 + 7185: -104,-1 + 7186: -102,-1 + 7187: -101,-1 + 7188: -103,-1 + 7189: -100,-1 + 7190: -98,-1 + 7191: -99,-1 + 11011: 11,-79 + 11012: 9,-79 + 11018: 7,-74 + 11019: 5,-74 + 11020: 2,-74 + 11021: 1,-74 + 11022: -1,-74 + 11023: -4,-74 + 11024: -5,-74 + 11025: -3,-74 + 11026: -7,-74 + 11126: -7,-65 + 11127: -1,-65 + 11128: 5,-65 + 11129: 11,-65 + 11629: 84,13 + 11630: 83,13 + 11631: 82,13 + 11632: 81,13 + 11633: 79,13 + 11634: 80,13 + 11635: 78,13 + 11636: 77,13 + 11637: 76,13 + 11638: 74,13 + 11639: 75,13 + 11640: 73,13 + 11641: 72,13 + 11642: 69,13 + 11643: 68,13 + 11644: 67,13 + 11645: 66,13 + 11646: 65,13 + 11647: 64,13 + 11648: 63,13 + 11649: 61,13 + 11650: 62,13 + 11651: 59,13 + 11652: 60,13 + 11653: 58,13 + 11654: 56,13 + 11655: 57,13 + 11656: 55,13 + 11657: 54,13 + 11658: 53,13 + 11659: 52,13 + 11660: 51,13 + 11661: 50,13 + 11662: 49,13 + 11663: 48,13 + 11664: 47,13 + 11665: 46,13 + 11666: 45,13 + 11667: 44,13 + 11668: 43,13 + 11669: 42,17 + 11670: 43,17 + 11671: 44,17 + 11672: 45,17 + 11673: 46,17 + 11674: 47,17 + 11675: 48,17 + 11676: 49,17 + 11677: 50,17 + 11678: 52,17 + 11679: 51,17 + 11680: 53,17 + 11681: 54,17 + 11682: 55,17 + 11683: 56,17 + 11684: 57,17 + 11685: 59,17 + 11686: 58,17 + 11687: 60,17 + 11688: 61,17 + 11689: 62,17 + 11690: 63,17 + 11691: 64,17 + 11692: 65,17 + 11693: 66,17 + 11694: 67,17 + 11695: 68,17 + 11696: 69,17 + 11697: 70,17 + 11698: 71,17 + 11699: 72,17 + 11700: 73,17 + 11701: 74,17 + 11702: 75,17 + 11703: 77,17 + 11704: 76,17 + 11705: 78,17 + 11706: 79,17 + 11707: 80,17 + 11708: 81,17 + 11709: 82,17 + 11710: 83,17 + 11711: 84,17 + 11727: 70,13 + 11728: 71,13 + 11875: 85,13 + 11876: 86,13 + 11877: 85,17 + 11878: 86,17 + 12014: 129,6 + 12015: 129,6 + 12016: 130,6 + 12017: 131,6 + 12018: 132,6 + 12019: 133,6 + 12020: 134,6 + 12021: 135,6 + 12022: 136,6 + 12023: 137,6 + 12024: 138,6 + 12025: 139,6 + 12026: 140,6 + 12027: 141,6 + 12028: 142,6 + 12029: 142,5 + 12030: 141,5 + 12031: 140,5 + 12032: 139,5 + 12033: 138,5 + 12034: 137,5 + 12035: 136,5 + 12036: 135,5 + 12037: 134,5 + 12038: 133,5 + 12039: 132,5 + 12040: 131,5 + 12041: 130,5 + 12042: 129,5 + 12078: 99,-2 + 12126: 95,19 + 12127: 94,19 + 12923: 113,-5 + 12924: 115,-5 + 15453: 125,-46 + 15454: 126,-46 + 15455: 127,-46 + 17490: 125,11 + 17491: 126,11 + 17492: 125,8 + 17493: 126,8 + 17605: -156,-36 + 17606: -159,-29 + 17607: -160,-29 + 17608: -161,-29 + 17613: -163,-28 + 17627: 81,29 + 17628: 80,29 + 17629: 79,29 + 17703: -10,8 + 17704: -9,8 + 17705: -8,8 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 6391: -108,-35 - 6392: -112,-35 - 6393: -113,-35 - 6394: -114,-35 - 6395: -115,-35 - 6410: -103,-37 - 6427: -110,-36 - 6434: -111,-35 - 6435: -110,-35 - 6436: -109,-35 - 6806: -101,-70 - 6824: -80,-44 - 11080: -5,-65 - 11081: -4,-65 - 11082: -3,-65 - 11083: 1,-65 - 11084: 2,-65 - 11085: 3,-65 - 11086: 7,-65 - 11087: 8,-65 - 11088: 9,-65 - 11100: 8,-74 - 11101: 9,-74 - 11102: 11,-74 - 11160: 3,-74 - 11176: 1,-69 - 11177: 2,-69 - 11178: 3,-69 + 6387: -108,-35 + 6388: -112,-35 + 6389: -113,-35 + 6390: -114,-35 + 6391: -115,-35 + 6406: -103,-37 + 6423: -110,-36 + 6430: -111,-35 + 6431: -110,-35 + 6432: -109,-35 + 6802: -101,-70 + 6820: -80,-44 + 11076: -5,-65 + 11077: -4,-65 + 11078: -3,-65 + 11079: 1,-65 + 11080: 2,-65 + 11081: 3,-65 + 11082: 7,-65 + 11083: 8,-65 + 11084: 9,-65 + 11096: 8,-74 + 11097: 9,-74 + 11098: 11,-74 + 11156: 3,-74 + 11172: 1,-69 + 11173: 2,-69 + 11174: 3,-69 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 6022: -19,-88 - 6023: -19,-87 - 6024: -19,-86 - 6032: -73,-77 - 6033: -71,-77 - 6034: -71,-78 - 6043: -64,-80 - 6052: -72,-79 - 6053: -71,-81 - 6055: -70,-83 - 6185: -73,-88 - 6186: -73,-87 - 6188: -70,-84 - 6479: -102,-66 - 6480: -102,-67 - 6481: -102,-68 - 6482: -102,-69 - 6895: -145,-30 - 6896: -145,-31 - 6897: -145,-32 - 6898: -145,-33 - 6899: -145,-34 - 6900: -145,-35 - 7127: -69,-62 - 7128: -69,-61 - 7205: -107,0 - 10981: -8,-73 - 10982: -8,-71 - 10983: -8,-70 - 10984: -8,-69 - 10985: -8,-68 - 10986: -8,-67 - 10987: -8,-66 - 10988: -8,-64 - 11018: 8,-78 - 11019: 8,-77 - 11020: 8,-76 - 11021: 8,-75 - 11120: -2,-64 - 11134: 10,-64 - 11135: 4,-64 - 11136: 4,-73 - 11138: -2,-73 - 11280: 35,-51 - 11281: 35,-52 - 11282: 35,-53 - 11283: 35,-54 - 11284: 35,-55 - 12090: 98,2 - 12091: 98,1 - 12092: 98,0 - 12093: 98,-1 - 12133: 93,20 - 12925: 116,-6 - 12926: 114,-6 - 15453: 124,-45 - 17530: 127,9 - 17531: 127,10 - 17532: 124,9 - 17533: 124,10 - 17666: -157,-35 - 17667: -157,-34 - 17668: -157,-33 - 17669: -157,-32 - 17670: -157,-31 - 17671: -157,-30 - 17672: -164,-27 - 17677: -162,-28 - 17678: -162,-27 - 17679: -162,-26 - 17688: -160,-24 - 17691: -154,-24 - 17705: 78,30 - 17767: -11,11 - 17768: -11,10 - 17769: -11,9 + 6018: -19,-88 + 6019: -19,-87 + 6020: -19,-86 + 6028: -73,-77 + 6029: -71,-77 + 6030: -71,-78 + 6039: -64,-80 + 6048: -72,-79 + 6049: -71,-81 + 6051: -70,-83 + 6181: -73,-88 + 6182: -73,-87 + 6184: -70,-84 + 6475: -102,-66 + 6476: -102,-67 + 6477: -102,-68 + 6478: -102,-69 + 6891: -145,-30 + 6892: -145,-31 + 6893: -145,-32 + 6894: -145,-33 + 6895: -145,-34 + 6896: -145,-35 + 7123: -69,-62 + 7124: -69,-61 + 7201: -107,0 + 10977: -8,-73 + 10978: -8,-71 + 10979: -8,-70 + 10980: -8,-69 + 10981: -8,-68 + 10982: -8,-67 + 10983: -8,-66 + 10984: -8,-64 + 11014: 8,-78 + 11015: 8,-77 + 11016: 8,-76 + 11017: 8,-75 + 11116: -2,-64 + 11130: 10,-64 + 11131: 4,-64 + 11132: 4,-73 + 11134: -2,-73 + 11276: 35,-51 + 11277: 35,-52 + 11278: 35,-53 + 11279: 35,-54 + 11280: 35,-55 + 12086: 98,2 + 12087: 98,1 + 12088: 98,0 + 12089: 98,-1 + 12129: 93,20 + 12921: 116,-6 + 12922: 114,-6 + 15449: 124,-45 + 17494: 127,9 + 17495: 127,10 + 17496: 124,9 + 17497: 124,10 + 17598: -157,-35 + 17599: -157,-34 + 17600: -157,-33 + 17601: -157,-32 + 17602: -157,-31 + 17603: -157,-30 + 17604: -164,-27 + 17609: -162,-28 + 17610: -162,-27 + 17611: -162,-26 + 17620: -160,-24 + 17623: -154,-24 + 17637: 78,30 + 17699: -11,11 + 17700: -11,10 + 17701: -11,9 - node: zIndex: 1 color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 6368: -108,-33 - 6369: -108,-32 - 6370: -103,-28 - 6371: -103,-27 - 6372: -103,-26 - 6373: -103,-25 - 6374: -103,-21 - 6375: -103,-20 - 6418: -104,-23 - 6428: -103,-24 - 6429: -103,-23 - 6430: -103,-22 - 6825: -79,-45 - 11061: -2,-66 - 11062: -2,-67 - 11063: -2,-68 - 11064: -2,-69 - 11065: -2,-70 - 11066: -2,-71 - 11067: 4,-71 - 11068: 4,-70 - 11069: 4,-69 - 11070: 4,-68 - 11071: 4,-68 - 11072: 4,-66 - 11073: 4,-67 - 11074: 10,-66 - 11075: 10,-67 - 11076: 10,-68 - 11077: 10,-69 - 11078: 10,-70 - 11079: 10,-71 - 11104: 10,-73 + 6364: -108,-33 + 6365: -108,-32 + 6366: -103,-28 + 6367: -103,-27 + 6368: -103,-26 + 6369: -103,-25 + 6370: -103,-21 + 6371: -103,-20 + 6414: -104,-23 + 6424: -103,-24 + 6425: -103,-23 + 6426: -103,-22 + 6821: -79,-45 + 11057: -2,-66 + 11058: -2,-67 + 11059: -2,-68 + 11060: -2,-69 + 11061: -2,-70 + 11062: -2,-71 + 11063: 4,-71 + 11064: 4,-70 + 11065: 4,-69 + 11066: 4,-68 + 11067: 4,-68 + 11068: 4,-66 + 11069: 4,-67 + 11070: 10,-66 + 11071: 10,-67 + 11072: 10,-68 + 11073: 10,-69 + 11074: 10,-70 + 11075: 10,-71 + 11100: 10,-73 - node: color: '#1DDFBE8C' id: HalfTileOverlayGreyscale @@ -14752,8 +14765,8 @@ entities: color: '#515255FF' id: HalfTileOverlayGreyscale decals: - 17620: -47,9 - 17621: -46,9 + 17552: -47,9 + 17553: -46,9 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -14925,7 +14938,7 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 16997: 34,16 + 16967: 34,16 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -14982,8 +14995,8 @@ entities: 2869: 45,-32 2914: 20,10 2915: 21,10 - 11384: 56,-57 - 11385: 57,-57 + 11380: 56,-57 + 11381: 57,-57 - node: zIndex: 1 color: '#DE3A3A96' @@ -15044,9 +15057,9 @@ entities: 3811: -15,50 3812: -14,50 3838: -18,64 - 11373: 37,-57 - 11374: 38,-57 - 16592: -1,34 + 11369: 37,-57 + 11370: 38,-57 + 16562: -1,34 - node: color: '#1DDFBE8C' id: HalfTileOverlayGreyscale180 @@ -15085,8 +15098,8 @@ entities: color: '#515255FF' id: HalfTileOverlayGreyscale180 decals: - 17617: -47,7 - 17618: -46,7 + 17549: -47,7 + 17550: -46,7 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -15304,8 +15317,8 @@ entities: 1875: -67,-12 2863: 44,-36 2864: 45,-36 - 11379: 56,-61 - 11380: 57,-61 + 11375: 56,-61 + 11376: 57,-61 - node: zIndex: 1 color: '#DE3A3A96' @@ -15367,8 +15380,8 @@ entities: 3808: -17,47 3809: -16,47 3839: -18,59 - 11365: 37,-61 - 11366: 38,-61 + 11361: 37,-61 + 11362: 38,-61 - node: color: '#1DDFBE8C' id: HalfTileOverlayGreyscale270 @@ -15413,7 +15426,7 @@ entities: color: '#515255FF' id: HalfTileOverlayGreyscale270 decals: - 17619: -48,8 + 17551: -48,8 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -15630,12 +15643,12 @@ entities: 2867: 43,-33 2912: 19,8 2913: 19,9 - 11381: 55,-60 - 11382: 55,-59 - 11383: 55,-58 - 16516: -39,-32 - 16593: 0,37 - 16594: 0,38 + 11377: 55,-60 + 11378: 55,-59 + 11379: 55,-58 + 16512: -39,-32 + 16563: 0,37 + 16564: 0,38 - node: zIndex: 1 color: '#DE3A3A96' @@ -15688,9 +15701,9 @@ entities: 3841: -19,61 3842: -19,62 3843: -19,63 - 11370: 36,-60 - 11371: 36,-59 - 11372: 36,-58 + 11366: 36,-60 + 11367: 36,-59 + 11368: 36,-58 - node: color: '#1DDFBE8C' id: HalfTileOverlayGreyscale90 @@ -15715,7 +15728,7 @@ entities: color: '#515255FF' id: HalfTileOverlayGreyscale90 decals: - 17622: -45,8 + 17554: -45,8 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -15892,7 +15905,7 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 12772: 33,20 + 12768: 33,20 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -15927,12 +15940,12 @@ entities: 2860: 46,-35 2861: 46,-34 2862: 46,-33 - 11386: 58,-58 - 11387: 58,-59 - 11388: 58,-60 - 16517: -38,-32 - 16595: 1,37 - 16596: 1,38 + 11382: 58,-58 + 11383: 58,-59 + 11384: 58,-60 + 16513: -38,-32 + 16565: 1,37 + 16566: 1,38 - node: zIndex: 1 color: '#DE3A3A96' @@ -15983,12 +15996,12 @@ entities: 3845: -17,61 3846: -17,62 3847: -17,63 - 11367: 39,-60 - 11368: 39,-59 - 11369: 39,-58 - 16588: -2,37 - 16589: -2,38 - 16590: 0,33 + 11363: 39,-60 + 11364: 39,-59 + 11365: 39,-58 + 16558: -2,37 + 16559: -2,38 + 16560: 0,33 - node: color: '#FFFFFFFF' id: HatchSmall @@ -16035,21 +16048,21 @@ entities: color: '#9FED5896' id: MiniTileCheckerAOverlay decals: - 11547: -35,-9 - 11548: -34,-9 - 11549: -33,-9 - 11550: -33,-10 - 11551: -34,-10 - 11552: -35,-10 - 11553: -35,-11 - 11554: -34,-11 - 11555: -33,-11 - 11556: 23,-1 - 11557: 24,-1 - 11558: 24,0 - 11559: 25,0 - 11560: 25,1 - 11561: 25,-1 + 11543: -35,-9 + 11544: -34,-9 + 11545: -33,-9 + 11546: -33,-10 + 11547: -34,-10 + 11548: -35,-10 + 11549: -35,-11 + 11550: -34,-11 + 11551: -33,-11 + 11552: 23,-1 + 11553: 24,-1 + 11554: 24,0 + 11555: 25,0 + 11556: 25,1 + 11557: 25,-1 - node: color: '#52B4E996' id: MiniTileCornerOverlayNE @@ -16065,9 +16078,9 @@ entities: color: '#8C347F96' id: MiniTileCornerOverlayNE decals: - 16195: -18,6 - 16196: -17,5 - 16197: -16,4 + 16191: -18,6 + 16192: -17,5 + 16193: -16,4 - node: color: '#DE3A3A96' id: MiniTileCornerOverlayNE @@ -16093,10 +16106,10 @@ entities: color: '#9FED5896' id: MiniTileCornerOverlayNW decals: - 16340: -21,-15 - 16341: -20,-14 - 16342: -19,-13 - 16343: -18,-12 + 16336: -21,-15 + 16337: -20,-14 + 16338: -19,-13 + 16339: -18,-12 - node: color: '#DE3A3A96' id: MiniTileCornerOverlayNW @@ -16107,9 +16120,9 @@ entities: color: '#DE3A3A96' id: MiniTileCornerOverlayNW decals: - 16982: 21,5 - 16983: 22,6 - 16984: 23,7 + 16952: 21,5 + 16953: 22,6 + 16954: 23,7 - node: color: '#52B4E996' id: MiniTileCornerOverlaySE @@ -16144,50 +16157,50 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkBox decals: - 15981: -29,-25 - 15982: -25,-21 - 15983: -21,-17 - 15984: -17,-13 - 15985: -33,-29 - 15986: -29,-20 - 15987: -29,-15 - 15988: -29,-10 - 15989: -29,-5 - 15990: -29,0 - 15991: -29,5 - 15992: -29,10 - 15993: -29,15 - 15994: -25,11 - 15995: -21,7 - 15996: -17,3 - 15997: -3,8 - 15998: -3,13 - 15999: -3,18 - 16000: -3,23 - 16001: -3,28 - 16002: 17,-1 - 16003: 21,3 - 16004: 25,7 - 16005: 29,9 - 16006: 22,-5 - 16007: 27,-5 - 16008: 32,-5 - 16009: 17,-9 - 16010: 21,-13 - 16011: 25,-17 - 16064: -3,-18 - 16065: 2,-18 + 15977: -29,-25 + 15978: -25,-21 + 15979: -21,-17 + 15980: -17,-13 + 15981: -33,-29 + 15982: -29,-20 + 15983: -29,-15 + 15984: -29,-10 + 15985: -29,-5 + 15986: -29,0 + 15987: -29,5 + 15988: -29,10 + 15989: -29,15 + 15990: -25,11 + 15991: -21,7 + 15992: -17,3 + 15993: -3,8 + 15994: -3,13 + 15995: -3,18 + 15996: -3,23 + 15997: -3,28 + 15998: 17,-1 + 15999: 21,3 + 16000: 25,7 + 16001: 29,9 + 16002: 22,-5 + 16003: 27,-5 + 16004: 32,-5 + 16005: 17,-9 + 16006: 21,-13 + 16007: 25,-17 + 16060: -3,-18 + 16061: 2,-18 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkBox decals: - 16272: -67,-6 - 16273: -62,-6 - 16274: -57,-6 - 16275: -44,-5 - 16276: -39,-5 - 16277: -34,-5 + 16268: -67,-6 + 16269: -62,-6 + 16270: -57,-6 + 16271: -44,-5 + 16272: -39,-5 + 16273: -34,-5 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe @@ -16196,37 +16209,37 @@ entities: 227: 14,-1 1311: -62,-35 4450: -33,4 - 7160: -94,7 - 16036: 29,-34 - 16037: 40,-25 - 17010: -134,-22 + 7156: -94,7 + 16032: 29,-34 + 16033: 40,-25 + 16980: -134,-22 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: 425: -34,14 - 16079: 3,-17 - 16185: -28,16 - 16186: -27,15 - 16187: -26,14 - 16188: -25,13 - 16189: -24,12 - 16190: -23,11 - 16191: -22,10 - 16192: -21,9 - 16193: -20,8 - 16260: -72,-3 - 16451: 35,-4 - 16480: 19,-9 - 16481: 20,-10 - 16482: 21,-11 - 16483: 22,-12 - 16484: 23,-13 - 16485: 24,-14 - 16486: 25,-15 - 16487: 26,-16 - 16488: 27,-17 + 16075: 3,-17 + 16181: -28,16 + 16182: -27,15 + 16183: -26,14 + 16184: -25,13 + 16185: -24,12 + 16186: -23,11 + 16187: -22,10 + 16188: -21,9 + 16189: -20,8 + 16256: -72,-3 + 16447: 35,-4 + 16476: 19,-9 + 16477: 20,-10 + 16478: 21,-11 + 16479: 22,-12 + 16480: 23,-13 + 16481: 24,-14 + 16482: 25,-15 + 16483: 26,-16 + 16484: 27,-17 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw @@ -16235,31 +16248,31 @@ entities: 226: 12,-1 1312: -64,-35 4449: -53,4 - 6810: -101,-66 - 7157: -100,7 - 16030: 28,-25 - 16031: 39,-34 - 16719: 26,10 - 16973: 20,4 - 16974: 21,5 - 16975: 22,6 - 16976: 23,7 - 16977: 24,8 - 17009: -136,-22 + 6806: -101,-66 + 7153: -100,7 + 16026: 28,-25 + 16027: 39,-34 + 16689: 26,10 + 16943: 20,4 + 16944: 21,5 + 16945: 22,6 + 16946: 23,7 + 16947: 24,8 + 16979: -136,-22 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: 424: -40,14 - 16091: -16,-10 - 16107: -23,-17 - 16108: -24,-18 - 16109: -25,-19 - 16110: -26,-20 - 16259: -92,-3 - 16407: 19,3 - 16409: 25,9 + 16087: -16,-10 + 16103: -23,-17 + 16104: -24,-18 + 16105: -25,-19 + 16106: -26,-20 + 16255: -92,-3 + 16403: 19,3 + 16405: 25,9 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe @@ -16268,48 +16281,48 @@ entities: 225: 14,-2 1313: -62,-37 4448: -33,3 - 7158: -94,5 - 16032: 29,-26 - 16033: 40,-35 - 17007: -134,-24 + 7154: -94,5 + 16028: 29,-26 + 16029: 40,-35 + 16977: -134,-24 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: 426: -34,13 - 16258: -72,-9 - 16296: -35,-33 - 16297: -34,-32 - 16298: -33,-31 - 16299: -32,-30 - 16300: -31,-29 - 16301: -30,-28 - 16302: -29,-27 - 16303: -28,-26 - 16304: -27,-25 - 16305: -26,-24 - 16306: -25,-23 - 16307: -24,-22 - 16308: -23,-21 - 16309: -22,-20 - 16310: -21,-19 - 16311: -20,-18 - 16312: -19,-17 - 16313: -18,-16 - 16314: -17,-15 - 16315: -16,-14 - 16316: -15,-13 - 16415: 27,7 - 16416: 26,6 - 16417: 25,5 - 16418: 24,4 - 16419: 23,3 - 16420: 22,2 - 16421: 21,1 - 16422: 20,0 - 16423: 19,-1 - 16453: 35,-6 + 16254: -72,-9 + 16292: -35,-33 + 16293: -34,-32 + 16294: -33,-31 + 16295: -32,-30 + 16296: -31,-29 + 16297: -30,-28 + 16298: -29,-27 + 16299: -28,-26 + 16300: -27,-25 + 16301: -26,-24 + 16302: -25,-23 + 16303: -24,-22 + 16304: -23,-21 + 16305: -22,-20 + 16306: -21,-19 + 16307: -20,-18 + 16308: -19,-17 + 16309: -18,-16 + 16310: -17,-15 + 16311: -16,-14 + 16312: -15,-13 + 16411: 27,7 + 16412: 26,6 + 16413: 25,5 + 16414: 24,4 + 16415: 23,3 + 16416: 22,2 + 16417: 21,1 + 16418: 20,0 + 16419: 19,-1 + 16449: 35,-6 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw @@ -16318,345 +16331,345 @@ entities: 224: 12,-2 1314: -64,-37 4447: -53,3 - 7159: -100,5 - 16034: 28,-35 - 16035: 39,-26 - 16511: -36,-33 - 17008: -136,-24 + 7155: -100,5 + 16030: 28,-35 + 16031: 39,-26 + 16507: -36,-33 + 16978: -136,-24 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: 427: -40,13 - 16071: -4,-19 - 16149: -26,10 - 16150: -25,9 - 16151: -24,8 - 16152: -23,7 - 16153: -22,6 - 16154: -21,5 - 16155: -20,4 - 16156: -19,3 - 16157: -18,2 - 16158: -17,1 - 16159: -16,0 - 16261: -92,-9 - 16498: 19,-13 - 16499: 20,-14 - 16500: 21,-15 - 16501: 22,-16 - 16502: 23,-17 + 16067: -4,-19 + 16145: -26,10 + 16146: -25,9 + 16147: -24,8 + 16148: -23,7 + 16149: -22,6 + 16150: -21,5 + 16151: -20,4 + 16152: -19,3 + 16153: -18,2 + 16154: -17,1 + 16155: -16,0 + 16257: -92,-9 + 16494: 19,-13 + 16495: 20,-14 + 16496: 21,-15 + 16497: 22,-16 + 16498: 23,-17 - node: color: '#FFFFFFFF' id: MiniTileDarkEndE decals: - 16038: 35,-25 - 16039: 35,-35 - 16040: 35,-30 - 16054: 30,-35 - 16055: 30,-25 + 16034: 35,-25 + 16035: 35,-35 + 16036: 35,-30 + 16050: 30,-35 + 16051: 30,-25 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkEndE decals: - 16254: -91,-9 - 16255: -91,-3 - 16256: -81,-3 - 16257: -81,-9 + 16250: -91,-9 + 16251: -91,-3 + 16252: -81,-3 + 16253: -81,-9 - node: color: '#FFFFFFFF' id: MiniTileDarkEndN decals: - 16041: 28,-29 - 16042: 40,-29 - 16043: 28,-33 - 16044: 40,-33 + 16037: 28,-29 + 16038: 40,-29 + 16039: 28,-33 + 16040: 40,-33 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkEndN decals: - 16244: -72,-8 - 16245: -82,-8 - 16246: -92,-8 + 16240: -72,-8 + 16241: -82,-8 + 16242: -92,-8 - node: color: '#FFFFFFFF' id: MiniTileDarkEndS decals: - 16045: 28,-31 - 16046: 40,-31 - 16047: 40,-27 - 16048: 28,-27 + 16041: 28,-31 + 16042: 40,-31 + 16043: 40,-27 + 16044: 28,-27 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkEndS decals: - 16247: -92,-4 - 16248: -82,-4 - 16249: -72,-4 + 16243: -92,-4 + 16244: -82,-4 + 16245: -72,-4 - node: color: '#FFFFFFFF' id: MiniTileDarkEndW decals: - 16049: 33,-35 - 16050: 33,-30 - 16051: 33,-25 - 16052: 38,-25 - 16053: 38,-35 + 16045: 33,-35 + 16046: 33,-30 + 16047: 33,-25 + 16048: 38,-25 + 16049: 38,-35 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkEndW decals: - 16250: -73,-9 - 16251: -83,-9 - 16252: -83,-3 - 16253: -73,-3 + 16246: -73,-9 + 16247: -83,-9 + 16248: -83,-3 + 16249: -73,-3 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: - 5542: -31,24 - 7177: -100,5 - 11338: 50,-56 - 16060: 29,-35 - 16061: 28,-34 - 17011: -136,-24 + 5538: -31,24 + 7173: -100,5 + 11334: 50,-56 + 16056: 29,-35 + 16057: 28,-34 + 16981: -136,-24 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: - 16084: -2,-17 - 16175: -15,2 - 16176: -20,7 - 16177: -21,8 - 16178: -22,9 - 16179: -23,10 - 16180: -24,11 - 16181: -25,12 - 16182: -26,13 - 16183: -27,14 - 16184: -28,15 - 16262: -92,-9 - 16263: -82,-9 - 16435: 18,-4 - 16472: 18,-9 - 16473: 19,-10 - 16474: 21,-12 - 16475: 22,-13 - 16476: 23,-14 - 16477: 24,-15 - 16478: 25,-16 - 16479: 26,-17 + 16080: -2,-17 + 16171: -15,2 + 16172: -20,7 + 16173: -21,8 + 16174: -22,9 + 16175: -23,10 + 16176: -24,11 + 16177: -25,12 + 16178: -26,13 + 16179: -27,14 + 16180: -28,15 + 16258: -92,-9 + 16259: -82,-9 + 16431: 18,-4 + 16468: 18,-9 + 16469: 19,-10 + 16470: 21,-12 + 16471: 22,-13 + 16472: 23,-14 + 16473: 24,-15 + 16474: 25,-16 + 16475: 26,-17 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: - 5543: -27,24 - 7178: -94,5 - 11335: 50,-56 - 16058: 39,-35 - 16059: 40,-34 - 16092: -16,-11 - 16978: 21,4 - 16979: 22,5 - 16980: 23,6 - 16981: 24,7 - 17012: -134,-24 - 17653: -60,4 + 5539: -27,24 + 7174: -94,5 + 11331: 50,-56 + 16054: 39,-35 + 16055: 40,-34 + 16088: -16,-11 + 16948: 21,4 + 16949: 22,5 + 16950: 23,6 + 16951: 24,7 + 16982: -134,-24 + 17585: -60,4 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkInnerNw decals: 3644: -5,33 - 16119: -22,-17 - 16120: -23,-18 - 16121: -24,-19 - 16122: -25,-20 - 16123: -26,-21 - 16264: -72,-9 - 16265: -82,-9 - 16408: 20,3 - 16410: 25,8 - 16411: 26,9 + 16115: -22,-17 + 16116: -23,-18 + 16117: -24,-19 + 16118: -25,-20 + 16119: -26,-21 + 16260: -72,-9 + 16261: -82,-9 + 16404: 20,3 + 16406: 25,8 + 16407: 26,9 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 7175: -100,7 - 11336: 50,-53 - 16056: 29,-25 - 16057: 28,-26 - 17013: -136,-22 + 7171: -100,7 + 11332: 50,-53 + 16052: 29,-25 + 16053: 28,-26 + 16983: -136,-22 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: - 16266: -92,-3 - 16267: -82,-3 - 16319: -15,-12 - 16320: -16,-13 - 16321: -17,-14 - 16322: -18,-15 - 16323: -19,-16 - 16324: -20,-17 - 16325: -21,-18 - 16326: -22,-19 - 16327: -23,-20 - 16328: -24,-21 - 16329: -25,-22 - 16330: -26,-23 - 16331: -27,-24 - 16332: -28,-25 - 16333: -29,-26 - 16334: -30,-27 - 16335: -31,-28 - 16336: -32,-29 - 16337: -33,-30 - 16338: -34,-31 - 16339: -35,-32 - 16424: 21,2 - 16425: 22,3 - 16426: 23,4 - 16427: 24,5 - 16428: 25,6 - 16429: 26,7 - 16430: 27,8 - 16431: 19,0 - 16432: 18,-1 - 16469: 18,-6 + 16262: -92,-3 + 16263: -82,-3 + 16315: -15,-12 + 16316: -16,-13 + 16317: -17,-14 + 16318: -18,-15 + 16319: -19,-16 + 16320: -20,-17 + 16321: -21,-18 + 16322: -22,-19 + 16323: -23,-20 + 16324: -24,-21 + 16325: -25,-22 + 16326: -26,-23 + 16327: -27,-24 + 16328: -28,-25 + 16329: -29,-26 + 16330: -30,-27 + 16331: -31,-28 + 16332: -32,-29 + 16333: -33,-30 + 16334: -34,-31 + 16335: -35,-32 + 16420: 21,2 + 16421: 22,3 + 16422: 23,4 + 16423: 24,5 + 16424: 25,6 + 16425: 26,7 + 16426: 27,8 + 16427: 19,0 + 16428: 18,-1 + 16465: 18,-6 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 7176: -94,7 - 11337: 50,-53 - 16062: 39,-25 - 16063: 40,-26 - 17014: -134,-22 + 7172: -94,7 + 11333: 50,-53 + 16058: 39,-25 + 16059: 40,-26 + 16984: -134,-22 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkInnerSw decals: - 16076: 1,-19 - 16160: -16,1 - 16161: -17,2 - 16162: -18,3 - 16163: -19,4 - 16164: -20,5 - 16165: -21,6 - 16166: -22,7 - 16167: -23,8 - 16168: -24,9 - 16169: -25,10 - 16170: -26,11 - 16208: -30,-6 - 16268: -72,-3 - 16269: -82,-3 - 16493: 24,-17 - 16494: 23,-16 - 16495: 22,-15 - 16496: 21,-14 - 16497: 20,-13 + 16072: 1,-19 + 16156: -16,1 + 16157: -17,2 + 16158: -18,3 + 16159: -19,4 + 16160: -20,5 + 16161: -21,6 + 16162: -22,7 + 16163: -23,8 + 16164: -24,9 + 16165: -25,10 + 16166: -26,11 + 16204: -30,-6 + 16264: -72,-3 + 16265: -82,-3 + 16489: 24,-17 + 16490: 23,-16 + 16491: 22,-15 + 16492: 21,-14 + 16493: 20,-13 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: 1310: -62,-36 - 5533: -31,27 - 5534: -31,26 - 5535: -31,25 - 7162: -94,6 - 7168: -100,6 - 11325: 50,-54 - 11326: 50,-55 - 11359: 52,-52 - 11360: 52,-51 - 16022: 40,-34 - 16023: 40,-30 - 16024: 40,-26 - 16025: 28,-30 - 16173: -15,3 - 16999: -134,-23 - 17002: -136,-23 + 5529: -31,27 + 5530: -31,26 + 5531: -31,25 + 7158: -94,6 + 7164: -100,6 + 11321: 50,-54 + 11322: 50,-55 + 11355: 52,-52 + 11356: 52,-51 + 16018: 40,-34 + 16019: 40,-30 + 16020: 40,-26 + 16021: 28,-30 + 16169: -15,3 + 16969: -134,-23 + 16972: -136,-23 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 16077: 3,-19 - 16078: 3,-18 - 16085: -2,-16 - 16086: -2,-15 - 16087: -2,-14 - 16112: -28,-20 - 16113: -28,-19 - 16114: -28,-18 - 16115: -28,-17 - 16116: -28,-16 - 16117: -28,-15 - 16118: -28,-14 - 16124: -28,-13 - 16125: -28,-12 - 16126: -28,-11 - 16127: -28,-10 - 16128: -28,-9 - 16129: -28,-8 - 16130: -28,-7 - 16131: -28,-6 - 16132: -28,-5 - 16133: -28,-4 - 16134: -28,-3 - 16135: -28,-2 - 16136: -28,-1 - 16137: -28,0 - 16138: -28,1 - 16139: -28,2 - 16140: -28,3 - 16141: -28,4 - 16142: -28,5 - 16143: -28,6 - 16144: -28,7 - 16145: -28,8 - 16146: -28,9 - 16147: -28,10 - 16376: -2,28 - 16377: -2,27 - 16378: -2,26 - 16379: -2,25 - 16380: -2,24 - 16381: -2,23 - 16382: -2,22 - 16383: -2,21 - 16384: -2,20 - 16385: -2,19 - 16386: -2,18 - 16387: -2,17 - 16388: -2,16 - 16389: -2,15 - 16390: -2,14 - 16391: -2,13 - 16392: -2,12 - 16393: -2,11 - 16394: -2,10 - 16395: -2,9 - 16396: -2,8 - 16397: -2,7 - 16398: -2,6 - 16399: -2,5 - 16400: -2,4 - 16433: 18,-2 - 16434: 18,-3 - 16452: 35,-5 - 16470: 18,-7 - 16471: 18,-8 + 16073: 3,-19 + 16074: 3,-18 + 16081: -2,-16 + 16082: -2,-15 + 16083: -2,-14 + 16108: -28,-20 + 16109: -28,-19 + 16110: -28,-18 + 16111: -28,-17 + 16112: -28,-16 + 16113: -28,-15 + 16114: -28,-14 + 16120: -28,-13 + 16121: -28,-12 + 16122: -28,-11 + 16123: -28,-10 + 16124: -28,-9 + 16125: -28,-8 + 16126: -28,-7 + 16127: -28,-6 + 16128: -28,-5 + 16129: -28,-4 + 16130: -28,-3 + 16131: -28,-2 + 16132: -28,-1 + 16133: -28,0 + 16134: -28,1 + 16135: -28,2 + 16136: -28,3 + 16137: -28,4 + 16138: -28,5 + 16139: -28,6 + 16140: -28,7 + 16141: -28,8 + 16142: -28,9 + 16143: -28,10 + 16372: -2,28 + 16373: -2,27 + 16374: -2,26 + 16375: -2,25 + 16376: -2,24 + 16377: -2,23 + 16378: -2,22 + 16379: -2,21 + 16380: -2,20 + 16381: -2,19 + 16382: -2,18 + 16383: -2,17 + 16384: -2,16 + 16385: -2,15 + 16386: -2,14 + 16387: -2,13 + 16388: -2,12 + 16389: -2,11 + 16390: -2,10 + 16391: -2,9 + 16392: -2,8 + 16393: -2,7 + 16394: -2,6 + 16395: -2,5 + 16396: -2,4 + 16429: 18,-2 + 16430: 18,-3 + 16448: 35,-5 + 16466: 18,-7 + 16467: 18,-8 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN @@ -16695,53 +16708,53 @@ entities: 4487: -36,4 4488: -35,4 4489: -34,4 - 5536: -30,24 - 5537: -29,24 - 5538: -28,24 - 6811: -100,-66 - 6812: -99,-66 - 6813: -98,-66 - 6814: -97,-66 - 6815: -96,-66 - 6816: -95,-66 - 7152: -99,7 - 7153: -98,7 - 7154: -97,7 - 7155: -96,7 - 7156: -95,7 - 7169: -99,5 - 7170: -98,5 - 7171: -97,5 - 7172: -96,5 - 7173: -95,5 - 11327: 47,-56 - 11328: 48,-56 - 11329: 49,-56 - 11330: 51,-56 - 11331: 52,-56 - 11332: 53,-56 - 11346: 53,-53 - 11347: 52,-53 - 11348: 51,-53 - 11349: 50,-53 - 11350: 49,-53 - 11351: 48,-53 - 11352: 47,-53 - 16012: 29,-25 - 16013: 34,-25 - 16014: 39,-25 - 16015: 34,-35 - 16016: 34,-30 - 16098: -17,-11 - 16171: -19,7 - 16204: -29,16 - 16205: -30,16 - 16720: 27,10 - 16721: 28,10 - 16722: 29,10 - 16723: 30,10 - 17000: -135,-22 - 17001: -135,-24 + 5532: -30,24 + 5533: -29,24 + 5534: -28,24 + 6807: -100,-66 + 6808: -99,-66 + 6809: -98,-66 + 6810: -97,-66 + 6811: -96,-66 + 6812: -95,-66 + 7148: -99,7 + 7149: -98,7 + 7150: -97,7 + 7151: -96,7 + 7152: -95,7 + 7165: -99,5 + 7166: -98,5 + 7167: -97,5 + 7168: -96,5 + 7169: -95,5 + 11323: 47,-56 + 11324: 48,-56 + 11325: 49,-56 + 11326: 51,-56 + 11327: 52,-56 + 11328: 53,-56 + 11342: 53,-53 + 11343: 52,-53 + 11344: 51,-53 + 11345: 50,-53 + 11346: 49,-53 + 11347: 48,-53 + 11348: 47,-53 + 16008: 29,-25 + 16009: 34,-25 + 16010: 39,-25 + 16011: 34,-35 + 16012: 34,-30 + 16094: -17,-11 + 16167: -19,7 + 16200: -29,16 + 16201: -30,16 + 16690: 27,10 + 16691: 28,10 + 16692: 29,10 + 16693: 30,10 + 16970: -135,-22 + 16971: -135,-24 - node: zIndex: 1 color: '#FFFFFFFF' @@ -16753,55 +16766,55 @@ entities: 436: -36,14 437: -35,14 3642: -6,33 - 16080: 2,-17 - 16081: 1,-17 - 16082: 0,-17 - 16083: -1,-17 - 16088: -13,-10 - 16089: -14,-10 - 16090: -15,-10 - 16111: -27,-21 - 16231: -69,-5 - 16232: -68,-5 - 16233: -67,-5 - 16234: -66,-5 - 16235: -65,-5 - 16236: -64,-5 - 16237: -63,-5 - 16238: -62,-5 - 16239: -61,-5 - 16240: -60,-5 - 16241: -59,-5 - 16242: -58,-5 - 16243: -57,-5 - 16271: -82,-3 - 16288: -14,2 - 16289: -13,2 - 16401: 13,2 - 16402: 14,2 - 16403: 15,2 - 16404: 16,2 - 16405: 17,2 - 16406: 18,2 - 16436: 19,-4 - 16437: 20,-4 - 16438: 22,-4 - 16439: 23,-4 - 16440: 24,-4 - 16441: 25,-4 - 16442: 26,-4 - 16443: 27,-4 - 16444: 28,-4 - 16445: 29,-4 - 16446: 30,-4 - 16447: 31,-4 - 16448: 32,-4 - 16449: 33,-4 - 16450: 34,-4 - 16489: 27,-18 - 16490: 26,-18 - 16491: 25,-18 - 16492: 24,-18 + 16076: 2,-17 + 16077: 1,-17 + 16078: 0,-17 + 16079: -1,-17 + 16084: -13,-10 + 16085: -14,-10 + 16086: -15,-10 + 16107: -27,-21 + 16227: -69,-5 + 16228: -68,-5 + 16229: -67,-5 + 16230: -66,-5 + 16231: -65,-5 + 16232: -64,-5 + 16233: -63,-5 + 16234: -62,-5 + 16235: -61,-5 + 16236: -60,-5 + 16237: -59,-5 + 16238: -58,-5 + 16239: -57,-5 + 16267: -82,-3 + 16284: -14,2 + 16285: -13,2 + 16397: 13,2 + 16398: 14,2 + 16399: 15,2 + 16400: 16,2 + 16401: 17,2 + 16402: 18,2 + 16432: 19,-4 + 16433: 20,-4 + 16434: 22,-4 + 16435: 23,-4 + 16436: 24,-4 + 16437: 25,-4 + 16438: 26,-4 + 16439: 27,-4 + 16440: 28,-4 + 16441: 29,-4 + 16442: 30,-4 + 16443: 31,-4 + 16444: 32,-4 + 16445: 33,-4 + 16446: 34,-4 + 16485: 27,-18 + 16486: 26,-18 + 16487: 25,-18 + 16488: 24,-18 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS @@ -16838,36 +16851,36 @@ entities: 4467: -51,3 4468: -52,3 4514: -50,3 - 7147: -99,5 - 7148: -98,5 - 7149: -97,5 - 7150: -96,5 - 7151: -95,5 - 7163: -99,7 - 7164: -98,7 - 7165: -97,7 - 7166: -96,7 - 7167: -95,7 - 11333: 49,-53 - 11334: 51,-53 - 11339: 47,-56 - 11340: 48,-56 - 11341: 49,-56 - 11342: 50,-56 - 11343: 51,-56 - 11344: 52,-56 - 11345: 53,-56 - 11353: 47,-53 - 11354: 48,-53 - 11355: 52,-53 - 11356: 53,-53 - 16017: 34,-35 - 16018: 29,-35 - 16019: 34,-30 - 16020: 39,-35 - 16021: 34,-25 - 17005: -135,-22 - 17006: -135,-24 + 7143: -99,5 + 7144: -98,5 + 7145: -97,5 + 7146: -96,5 + 7147: -95,5 + 7159: -99,7 + 7160: -98,7 + 7161: -97,7 + 7162: -96,7 + 7163: -95,7 + 11329: 49,-53 + 11330: 51,-53 + 11335: 47,-56 + 11336: 48,-56 + 11337: 49,-56 + 11338: 50,-56 + 11339: 51,-56 + 11340: 52,-56 + 11341: 53,-56 + 11349: 47,-53 + 11350: 48,-53 + 11351: 52,-53 + 11352: 53,-53 + 16013: 34,-35 + 16014: 29,-35 + 16015: 34,-30 + 16016: 39,-35 + 16017: 34,-25 + 16975: -135,-22 + 16976: -135,-24 - node: zIndex: 1 color: '#FFFFFFFF' @@ -16878,153 +16891,153 @@ entities: 430: -37,13 431: -36,13 432: -35,13 - 16072: -3,-19 - 16073: -2,-19 - 16074: -1,-19 - 16075: 0,-19 - 16148: -27,11 - 16209: -32,-6 - 16210: -33,-6 - 16211: -34,-6 - 16212: -35,-6 - 16213: -36,-6 - 16214: -37,-6 - 16215: -38,-6 - 16216: -39,-6 - 16217: -40,-6 - 16218: -41,-6 - 16219: -42,-6 - 16220: -43,-6 - 16221: -44,-6 - 16222: -57,-7 - 16223: -58,-7 - 16224: -59,-7 - 16225: -60,-7 - 16226: -61,-7 - 16227: -62,-7 - 16228: -63,-7 - 16229: -64,-7 - 16230: -65,-7 - 16270: -82,-9 - 16290: -15,0 - 16291: -14,0 - 16292: -13,0 - 16317: -13,-12 - 16318: -14,-12 - 16412: 30,8 - 16413: 29,8 - 16414: 28,8 - 16454: 34,-6 - 16455: 33,-6 - 16456: 32,-6 - 16457: 31,-6 - 16458: 30,-6 - 16459: 29,-6 - 16460: 28,-6 - 16461: 27,-6 - 16462: 26,-6 - 16463: 25,-6 - 16464: 24,-6 - 16465: 23,-6 - 16466: 22,-6 - 16467: 20,-6 - 16468: 19,-6 - 16503: 18,-12 - 16504: 17,-12 - 16505: 16,-12 - 16506: 15,-12 - 16507: 14,-12 - 16508: 13,-12 + 16068: -3,-19 + 16069: -2,-19 + 16070: -1,-19 + 16071: 0,-19 + 16144: -27,11 + 16205: -32,-6 + 16206: -33,-6 + 16207: -34,-6 + 16208: -35,-6 + 16209: -36,-6 + 16210: -37,-6 + 16211: -38,-6 + 16212: -39,-6 + 16213: -40,-6 + 16214: -41,-6 + 16215: -42,-6 + 16216: -43,-6 + 16217: -44,-6 + 16218: -57,-7 + 16219: -58,-7 + 16220: -59,-7 + 16221: -60,-7 + 16222: -61,-7 + 16223: -62,-7 + 16224: -63,-7 + 16225: -64,-7 + 16226: -65,-7 + 16266: -82,-9 + 16286: -15,0 + 16287: -14,0 + 16288: -13,0 + 16313: -13,-12 + 16314: -14,-12 + 16408: 30,8 + 16409: 29,8 + 16410: 28,8 + 16450: 34,-6 + 16451: 33,-6 + 16452: 32,-6 + 16453: 31,-6 + 16454: 30,-6 + 16455: 29,-6 + 16456: 28,-6 + 16457: 27,-6 + 16458: 26,-6 + 16459: 25,-6 + 16460: 24,-6 + 16461: 23,-6 + 16462: 22,-6 + 16463: 20,-6 + 16464: 19,-6 + 16499: 18,-12 + 16500: 17,-12 + 16501: 16,-12 + 16502: 15,-12 + 16503: 14,-12 + 16504: 13,-12 - node: zIndex: 2 color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 16715: -51,2 - 16716: -50,2 - 16717: -49,2 - 16718: -48,2 + 16685: -51,2 + 16686: -50,2 + 16687: -49,2 + 16688: -48,2 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: 1307: -64,-36 - 5539: -27,25 - 5540: -27,26 - 5541: -27,27 - 6805: -101,-70 - 6807: -101,-69 - 6808: -101,-68 - 6809: -101,-67 - 7161: -100,6 - 7174: -94,6 - 11323: 50,-54 - 11324: 50,-55 - 11357: 48,-52 - 11358: 48,-51 - 16026: 28,-30 - 16027: 40,-30 - 16028: 28,-26 - 16029: 28,-34 - 16105: -22,-16 - 16293: -36,-30 - 16509: -36,-31 - 16510: -36,-32 - 17003: -136,-23 - 17004: -134,-23 + 5535: -27,25 + 5536: -27,26 + 5537: -27,27 + 6801: -101,-70 + 6803: -101,-69 + 6804: -101,-68 + 6805: -101,-67 + 7157: -100,6 + 7170: -94,6 + 11319: 50,-54 + 11320: 50,-55 + 11353: 48,-52 + 11354: 48,-51 + 16022: 28,-30 + 16023: 40,-30 + 16024: 28,-26 + 16025: 28,-34 + 16101: -22,-16 + 16289: -36,-30 + 16505: -36,-31 + 16506: -36,-32 + 16973: -136,-23 + 16974: -134,-23 - node: zIndex: 1 color: '#FFFFFFFF' id: MiniTileDarkLineW decals: 3643: -5,34 - 16066: -4,-14 - 16067: -4,-15 - 16068: -4,-16 - 16069: -4,-17 - 16070: -4,-18 - 16278: -30,-16 - 16279: -30,-15 - 16280: -30,-14 - 16281: -30,-13 - 16282: -30,-12 - 16283: -30,-11 - 16284: -30,-10 - 16285: -30,-9 - 16286: -30,-8 - 16287: -30,-7 - 16351: -4,4 - 16352: -4,5 - 16353: -4,6 - 16354: -4,7 - 16355: -4,8 - 16356: -4,9 - 16357: -4,10 - 16358: -4,11 - 16359: -4,12 - 16360: -4,13 - 16361: -4,14 - 16362: -4,15 - 16363: -4,16 - 16364: -4,17 - 16365: -4,18 - 16366: -4,19 - 16367: -4,20 - 16368: -4,21 - 16369: -4,22 - 16370: -4,23 - 16371: -4,24 - 16372: -4,25 - 16373: -4,26 - 16374: -4,27 - 16375: -4,28 + 16062: -4,-14 + 16063: -4,-15 + 16064: -4,-16 + 16065: -4,-17 + 16066: -4,-18 + 16274: -30,-16 + 16275: -30,-15 + 16276: -30,-14 + 16277: -30,-13 + 16278: -30,-12 + 16279: -30,-11 + 16280: -30,-10 + 16281: -30,-9 + 16282: -30,-8 + 16283: -30,-7 + 16347: -4,4 + 16348: -4,5 + 16349: -4,6 + 16350: -4,7 + 16351: -4,8 + 16352: -4,9 + 16353: -4,10 + 16354: -4,11 + 16355: -4,12 + 16356: -4,13 + 16357: -4,14 + 16358: -4,15 + 16359: -4,16 + 16360: -4,17 + 16361: -4,18 + 16362: -4,19 + 16363: -4,20 + 16364: -4,21 + 16365: -4,22 + 16366: -4,23 + 16367: -4,24 + 16368: -4,25 + 16369: -4,26 + 16370: -4,27 + 16371: -4,28 - node: color: '#52B4E996' id: MiniTileDiagonalCheckerAOverlay decals: - 5664: -51,-19 - 5665: -51,-18 - 5666: -50,-18 + 5660: -51,-19 + 5661: -51,-18 + 5662: -50,-18 - node: color: '#9FED5896' id: MiniTileDiagonalCheckerAOverlay @@ -17061,17 +17074,17 @@ entities: color: '#DE3A3A96' id: MiniTileEndOverlayE decals: - 5820: -45,12 + 5816: -45,12 - node: color: '#DE3A3A96' id: MiniTileEndOverlayN decals: - 5822: -52,16 + 5818: -52,16 - node: color: '#DE3A3A96' id: MiniTileEndOverlayS decals: - 5821: -52,11 + 5817: -52,11 - node: color: '#52FFFF3F' id: MiniTileInnerOverlayNE @@ -17082,16 +17095,16 @@ entities: color: '#8C347F96' id: MiniTileInnerOverlayNE decals: - 16199: -19,6 - 16200: -18,5 - 16201: -17,4 - 16202: -16,3 + 16195: -19,6 + 16196: -18,5 + 16197: -17,4 + 16198: -16,3 - node: color: '#9FED5872' id: MiniTileInnerOverlayNE decals: - 11503: 42,-60 - 11504: 48,-60 + 11499: 42,-60 + 11500: 48,-60 - node: zIndex: 2 color: '#9FED5896' @@ -17116,7 +17129,7 @@ entities: color: '#D381C996' id: MiniTileInnerOverlayNE decals: - 16756: 34,10 + 16726: 34,10 - node: zIndex: 2 color: '#D381C996' @@ -17128,12 +17141,12 @@ entities: color: '#DE3A3A66' id: MiniTileInnerOverlayNE decals: - 17567: 124,8 + 17531: 124,8 - node: color: '#DE3A3A96' id: MiniTileInnerOverlayNE decals: - 5807: -52,12 + 5803: -52,12 - node: color: '#52B4E996' id: MiniTileInnerOverlayNW @@ -17153,18 +17166,18 @@ entities: color: '#9FED5872' id: MiniTileInnerOverlayNW decals: - 11501: 46,-60 - 11502: 52,-60 + 11497: 46,-60 + 11498: 52,-60 - node: zIndex: 1 color: '#9FED5896' id: MiniTileInnerOverlayNW decals: - 16346: -21,-16 - 16347: -20,-15 - 16348: -19,-14 - 16349: -18,-13 - 16350: -17,-12 + 16342: -21,-16 + 16343: -20,-15 + 16344: -19,-14 + 16345: -18,-13 + 16346: -17,-12 - node: zIndex: 2 color: '#9FED5896' @@ -17189,7 +17202,7 @@ entities: color: '#D381C996' id: MiniTileInnerOverlayNW decals: - 16755: 33,10 + 16725: 33,10 - node: zIndex: 2 color: '#D381C996' @@ -17201,7 +17214,7 @@ entities: color: '#DE3A3A66' id: MiniTileInnerOverlayNW decals: - 17566: 127,8 + 17530: 127,8 - node: color: '#DE3A3A96' id: MiniTileInnerOverlayNW @@ -17212,10 +17225,10 @@ entities: color: '#DE3A3A96' id: MiniTileInnerOverlayNW decals: - 16987: 21,4 - 16988: 22,5 - 16989: 23,6 - 16990: 24,7 + 16957: 21,4 + 16958: 22,5 + 16959: 23,6 + 16960: 24,7 - node: color: '#52FFFF3F' id: MiniTileInnerOverlaySE @@ -17225,8 +17238,8 @@ entities: color: '#9FED5872' id: MiniTileInnerOverlaySE decals: - 11497: 42,-58 - 11498: 48,-58 + 11493: 42,-58 + 11494: 48,-58 - node: zIndex: 2 color: '#9FED5896' @@ -17257,12 +17270,12 @@ entities: color: '#DE3A3A66' id: MiniTileInnerOverlaySE decals: - 17569: 124,11 + 17533: 124,11 - node: color: '#DE3A3A96' id: MiniTileInnerOverlaySE decals: - 5806: -52,12 + 5802: -52,12 - node: color: '#52FFFF3F' id: MiniTileInnerOverlaySW @@ -17272,8 +17285,8 @@ entities: color: '#9FED5872' id: MiniTileInnerOverlaySW decals: - 11499: 46,-58 - 11500: 52,-58 + 11495: 46,-58 + 11496: 52,-58 - node: zIndex: 2 color: '#9FED5896' @@ -17304,7 +17317,7 @@ entities: color: '#DE3A3A66' id: MiniTileInnerOverlaySW decals: - 17568: 127,11 + 17532: 127,11 - node: color: '#52B4E996' id: MiniTileLineOverlayE @@ -17329,7 +17342,7 @@ entities: color: '#8C347F96' id: MiniTileLineOverlayE decals: - 16194: -19,7 + 16190: -19,7 - node: color: '#A4610696' id: MiniTileLineOverlayE @@ -17352,9 +17365,9 @@ entities: color: '#DE3A3A96' id: MiniTileLineOverlayE decals: - 5799: -52,13 - 5800: -52,14 - 5801: -52,15 + 5795: -52,13 + 5796: -52,14 + 5797: -52,15 - node: color: '#52B4E996' id: MiniTileLineOverlayN @@ -17362,7 +17375,7 @@ entities: 5367: -44,-31 5368: -43,-31 5369: -42,-31 - 16295: -36,-30 + 16291: -36,-30 - node: color: '#52FFFF3F' id: MiniTileLineOverlayN @@ -17388,23 +17401,23 @@ entities: color: '#8C347F96' id: MiniTileLineOverlayN decals: - 16198: -15,3 + 16194: -15,3 - node: zIndex: 1 color: '#9FED5896' id: MiniTileLineOverlayN decals: - 16345: -22,-16 + 16341: -22,-16 - node: zIndex: 1 color: '#D381C996' id: MiniTileLineOverlayN decals: - 16758: 26,10 - 16759: 27,10 - 16760: 28,10 - 16761: 29,10 - 16762: 30,10 + 16728: 26,10 + 16729: 27,10 + 16730: 28,10 + 16731: 29,10 + 16732: 30,10 - node: color: '#DE3A3A96' id: MiniTileLineOverlayN @@ -17441,30 +17454,30 @@ entities: 4506: -50,4 4507: -51,4 4508: -52,4 - 5814: -51,12 - 5815: -50,12 - 5816: -49,12 - 5817: -48,12 - 5818: -47,12 - 5819: -46,12 - 11523: -56,-4 - 11524: -55,-4 - 11525: -54,-4 - 11526: -53,-4 - 11527: -52,-4 - 11528: -51,-4 - 11529: -50,-4 - 11530: -49,-4 - 11531: -48,-4 - 11532: -47,-4 - 11533: -46,-4 - 11534: -45,-4 + 5810: -51,12 + 5811: -50,12 + 5812: -49,12 + 5813: -48,12 + 5814: -47,12 + 5815: -46,12 + 11519: -56,-4 + 11520: -55,-4 + 11521: -54,-4 + 11522: -53,-4 + 11523: -52,-4 + 11524: -51,-4 + 11525: -50,-4 + 11526: -49,-4 + 11527: -48,-4 + 11528: -47,-4 + 11529: -46,-4 + 11530: -45,-4 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileLineOverlayN decals: - 16985: 20,4 + 16955: 20,4 - node: color: '#52B4E996' id: MiniTileLineOverlayS @@ -17519,12 +17532,12 @@ entities: 4566: -68,-7 4567: -67,-7 4568: -66,-7 - 5808: -51,12 - 5809: -50,12 - 5810: -49,12 - 5811: -48,12 - 5812: -47,12 - 5813: -46,12 + 5804: -51,12 + 5805: -50,12 + 5806: -49,12 + 5807: -48,12 + 5808: -47,12 + 5809: -46,12 - node: color: '#52B4E996' id: MiniTileLineOverlayW @@ -17556,7 +17569,7 @@ entities: color: '#9FED5896' id: MiniTileLineOverlayW decals: - 16344: -17,-11 + 16340: -17,-11 - node: color: '#A4610696' id: MiniTileLineOverlayW @@ -17597,24 +17610,24 @@ entities: 4385: -30,12 4386: -30,14 4387: -30,15 - 5802: -52,12 - 5803: -52,13 - 5804: -52,14 - 5805: -52,15 + 5798: -52,12 + 5799: -52,13 + 5800: -52,14 + 5801: -52,15 - node: zIndex: 1 color: '#DE3A3A96' id: MiniTileLineOverlayW decals: - 16207: -30,16 - 16986: 24,8 + 16203: -30,16 + 16956: 24,8 - node: color: '#FFFFFFFF' id: MiniTileSteelBox decals: - 11265: -36,-22 - 11266: -34,-20 - 11267: -36,-18 + 11261: -36,-22 + 11262: -34,-20 + 11263: -36,-18 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe @@ -17667,10 +17680,10 @@ entities: 4045: -23,-17 4189: 25,9 4190: 19,3 - 16094: -18,-12 - 16095: -19,-13 - 16096: -20,-14 - 16097: -21,-15 + 16090: -18,-12 + 16091: -19,-13 + 16092: -20,-14 + 16093: -21,-15 - node: zIndex: 20 color: '#FFFFFFFF' @@ -17768,8 +17781,8 @@ entities: 4303: 24,-15 4304: 25,-16 4305: 26,-17 - 12810: 37,27 - 16203: -18,5 + 12806: 37,27 + 16199: -18,5 - node: zIndex: 1 color: '#FFFFFFFF' @@ -17796,13 +17809,13 @@ entities: 4294: 26,9 4295: 25,8 4296: 20,3 - 12809: 40,27 - 16099: -17,-11 - 16100: -17,-12 - 16101: -18,-13 - 16102: -19,-14 - 16103: -20,-15 - 16106: -22,-16 + 12805: 40,27 + 16095: -17,-11 + 16096: -17,-12 + 16097: -18,-13 + 16098: -19,-14 + 16099: -20,-15 + 16102: -22,-16 - node: zIndex: 1 color: '#FFFFFFFF' @@ -17844,7 +17857,7 @@ entities: 4291: 25,6 4292: 26,7 4293: 27,8 - 12808: 37,30 + 12804: 37,30 - node: zIndex: 1 color: '#FFFFFFFF' @@ -17873,7 +17886,7 @@ entities: 4281: 22,-15 4282: 21,-14 4283: 20,-13 - 12811: 40,30 + 12807: 40,30 - node: zIndex: 1 color: '#FFFFFFFF' @@ -17955,19 +17968,19 @@ entities: 4329: -2,27 4330: -2,28 5381: 18,-8 - 5991: -72,-71 - 5992: -72,-72 - 5993: -72,-73 - 5994: -72,-74 - 5995: -72,-75 - 5996: -63,-71 - 5997: -63,-72 - 5998: -63,-73 - 5999: -63,-74 - 6000: -63,-75 - 12802: 37,28 - 12803: 37,29 - 16172: -19,7 + 5987: -72,-71 + 5988: -72,-72 + 5989: -72,-73 + 5990: -72,-74 + 5991: -72,-75 + 5992: -63,-71 + 5993: -63,-72 + 5994: -63,-73 + 5995: -63,-74 + 5996: -63,-75 + 12798: 37,28 + 12799: 37,29 + 16168: -19,7 - node: zIndex: 1 color: '#FFFFFFFF' @@ -18043,27 +18056,27 @@ entities: 4237: 0,-17 4238: -1,-17 4535: 19,-4 - 6012: -73,-74 - 6013: -73,-72 - 6014: -62,-72 - 6015: -62,-74 - 11511: -45,-4 - 11512: -46,-4 - 11513: -47,-4 - 11514: -48,-4 - 11515: -49,-4 - 11516: -50,-4 - 11517: -51,-4 - 11518: -52,-4 - 11519: -53,-4 - 11520: -54,-4 - 11521: -55,-4 - 11522: -56,-4 - 12800: 38,27 - 12801: 39,27 - 16104: -22,-16 - 16174: -15,3 - 16294: -36,-30 + 6008: -73,-74 + 6009: -73,-72 + 6010: -62,-72 + 6011: -62,-74 + 11507: -45,-4 + 11508: -46,-4 + 11509: -47,-4 + 11510: -48,-4 + 11511: -49,-4 + 11512: -50,-4 + 11513: -51,-4 + 11514: -52,-4 + 11515: -53,-4 + 11516: -54,-4 + 11517: -55,-4 + 11518: -56,-4 + 12796: 38,27 + 12797: 39,27 + 16100: -22,-16 + 16170: -15,3 + 16290: -36,-30 - node: zIndex: 1 color: '#FFFFFFFF' @@ -18148,12 +18161,12 @@ entities: 4230: -1,-19 4231: 0,-19 4534: 19,-6 - 6011: -73,-74 - 6016: -73,-72 - 6017: -62,-72 - 6018: -62,-74 - 12804: 38,30 - 12805: 39,30 + 6007: -73,-74 + 6012: -73,-72 + 6013: -62,-72 + 6014: -62,-74 + 12800: 38,30 + 12801: 39,30 - node: zIndex: 1 color: '#FFFFFFFF' @@ -18238,20 +18251,20 @@ entities: 5481: 8,-43 5482: 8,-44 5483: 8,-45 - 6001: -72,-71 - 6002: -72,-72 - 6003: -72,-73 - 6004: -72,-74 - 6005: -72,-75 - 6006: -63,-75 - 6007: -63,-74 - 6008: -63,-73 - 6009: -63,-72 - 6010: -63,-71 - 12806: 40,29 - 12807: 40,28 - 16093: -17,-11 - 16206: -30,16 + 5997: -72,-71 + 5998: -72,-72 + 5999: -72,-73 + 6000: -72,-74 + 6001: -72,-75 + 6002: -63,-75 + 6003: -63,-74 + 6004: -63,-73 + 6005: -63,-72 + 6006: -63,-71 + 12802: 40,29 + 12803: 40,28 + 16089: -17,-11 + 16202: -30,16 - node: zIndex: 1 color: '#FFFFFFFF' @@ -18306,27 +18319,27 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteEndE decals: - 12188: -46,-25 + 12184: -46,-25 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndN decals: - 12186: -47,-22 + 12182: -47,-22 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndS decals: - 12187: -47,-28 + 12183: -47,-28 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndW decals: - 12189: -48,-25 + 12185: -48,-25 - node: color: '#7C5033FF' id: MiniTileWhiteInnerNe decals: - 5763: 44,-10 + 5759: 44,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe @@ -18337,7 +18350,7 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: - 17649: -48,7 + 17581: -48,7 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw @@ -18348,12 +18361,12 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 17650: -45,7 + 17582: -45,7 - node: color: '#7C5033FF' id: MiniTileWhiteInnerSe decals: - 5764: 44,0 + 5760: 44,0 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe @@ -18364,7 +18377,7 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe decals: - 17651: -48,9 + 17583: -48,9 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw @@ -18377,7 +18390,7 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 17652: -45,9 + 17584: -45,9 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE @@ -18385,8 +18398,8 @@ entities: 1440: -41,-32 1632: -51,-12 1633: -53,-12 - 12190: -47,-23 - 12191: -47,-27 + 12186: -47,-23 + 12187: -47,-27 - node: zIndex: 1 color: '#FFFFFFFF' @@ -18394,13 +18407,13 @@ entities: decals: 3541: 40,7 3542: 40,10 - 17645: -48,8 + 17577: -48,8 - node: color: '#7C5033FF' id: MiniTileWhiteLineN decals: - 5761: 46,-10 - 5762: 45,-10 + 5757: 46,-10 + 5758: 45,-10 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN @@ -18418,14 +18431,14 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 17643: -47,7 - 17644: -46,7 + 17575: -47,7 + 17576: -46,7 - node: color: '#7C5033FF' id: MiniTileWhiteLineS decals: - 5765: 45,0 - 5766: 46,0 + 5761: 45,0 + 5762: 46,0 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS @@ -18443,8 +18456,8 @@ entities: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 17646: -47,9 - 17647: -46,9 + 17578: -47,9 + 17579: -46,9 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW @@ -18452,8 +18465,8 @@ entities: 1441: -45,-32 1638: -53,-12 1639: -51,-12 - 12192: -47,-27 - 12193: -47,-23 + 12188: -47,-27 + 12189: -47,-23 - node: zIndex: 1 color: '#FFFFFFFF' @@ -18463,7 +18476,7 @@ entities: 3544: 39,9 3545: 39,8 3546: 39,7 - 17648: -45,8 + 17580: -45,8 - node: color: '#52B4E996' id: OffsetCheckerBOverlay @@ -18593,366 +18606,366 @@ entities: color: '#0000003F' id: OldConcreteTrimCornerNe decals: - 6748: -106.282265,-35.24788 + 6744: -106.282265,-35.24788 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimCornerNw decals: - 6749: -101.74836,-35.243477 + 6745: -101.74836,-35.243477 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerNw decals: - 6298: -118,-12 - 12587: 88,29 + 6294: -118,-12 + 12583: 88,29 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerSe decals: - 12588: 104,22 + 12584: 104,22 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimCornerSw decals: - 6750: -101.74709,-30.719452 + 6746: -101.74709,-30.719452 - node: color: '#FFFFFFFF' id: OldConcreteTrimCornerSw decals: - 6297: -118,-14 - 12584: 98,22 - 12586: 88,28 + 6293: -118,-14 + 12580: 98,22 + 12582: 88,28 - node: color: '#FFFFFFFF' id: OldConcreteTrimEndW decals: - 12585: 88,23 + 12581: 88,23 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimInnerNe decals: - 6758: -106.27922,-36.244915 - 6759: -106.00051,-36.24932 - 6765: -107.28366,-35.246166 - 6766: -107.27926,-34.995094 + 6754: -106.27922,-36.244915 + 6755: -106.00051,-36.24932 + 6761: -107.28366,-35.246166 + 6762: -107.27926,-34.995094 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNe decals: - 12595: 90,23 - 12596: 95,23 - 12597: 100,23 + 12591: 90,23 + 12592: 95,23 + 12593: 100,23 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimInnerNw decals: - 6760: -101.74978,-36.244915 - 6761: -102.00133,-36.254227 - 6772: -100.750786,-35.248127 - 6773: -100.750786,-34.997055 + 6756: -101.74978,-36.244915 + 6757: -102.00133,-36.254227 + 6768: -100.750786,-35.248127 + 6769: -100.750786,-34.997055 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNw decals: - 12592: 94,23 - 12593: 99,23 - 12594: 104,23 - 12601: 89,23 + 12588: 94,23 + 12589: 99,23 + 12590: 104,23 + 12597: 89,23 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimInnerSe decals: - 6752: -106.28193,-29.722713 - 6753: -106.00433,-29.71831 - 6767: -107.27926,-30.724016 - 6768: -107.27926,-31.00152 - 6774: -101.46433,-30.71973 - 6775: -101.46874,-31.001637 + 6748: -106.28193,-29.722713 + 6749: -106.00433,-29.71831 + 6763: -107.27926,-30.724016 + 6764: -107.27926,-31.00152 + 6770: -101.46433,-30.71973 + 6771: -101.46874,-31.001637 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerSe decals: - 12589: 90,28 - 12590: 95,28 - 12591: 100,28 + 12585: 90,28 + 12586: 95,28 + 12587: 100,28 - node: zIndex: 1 color: '#FFFFFFFF' id: OldConcreteTrimInnerSe decals: - 12071: 99,1 + 12067: 99,1 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimInnerSw decals: - 6751: -101.745026,-29.71831 - 6754: -101.998146,-29.716177 + 6747: -101.745026,-29.71831 + 6750: -101.998146,-29.716177 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerSw decals: - 12598: 94,28 - 12599: 99,28 - 12600: 104,28 - 12602: 89,28 - 12603: 98,23 + 12594: 94,28 + 12595: 99,28 + 12596: 104,28 + 12598: 89,28 + 12599: 98,23 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimLineE decals: - 6769: -107.28369,-32.005287 - 6770: -107.28369,-33.001175 - 6771: -107.27928,-33.99666 - 6776: -101.46794,-32.001423 - 6777: -101.46794,-32.99783 - 6778: -101.46794,-33.996845 + 6765: -107.28369,-32.005287 + 6766: -107.28369,-33.001175 + 6767: -107.27928,-33.99666 + 6772: -101.46794,-32.001423 + 6773: -101.46794,-32.99783 + 6774: -101.46794,-33.996845 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineE decals: - 6283: -114,-11 - 6284: -114,-10 - 6285: -112,-9 - 6286: -112,-10 - 6287: -112,-11 - 6288: -110,-10 - 6289: -110,-11 - 6290: -112,-15 - 6291: -112,-16 - 6292: -112,-17 - 6293: -110,-15 - 6294: -110,-16 - 6295: -114,-15 - 6296: -114,-16 - 12566: 90,27 - 12567: 90,26 - 12568: 90,25 - 12569: 90,24 - 12570: 95,27 - 12571: 95,26 - 12572: 95,25 - 12573: 95,24 - 12574: 100,27 - 12575: 100,26 - 12576: 100,25 - 12577: 100,24 - 12578: 104,23 - 12579: 104,24 - 12580: 104,25 - 12581: 104,26 - 12582: 104,27 - 12583: 104,28 - 12942: 115,4 - 12943: 115,2 - 12944: 115,3 + 6279: -114,-11 + 6280: -114,-10 + 6281: -112,-9 + 6282: -112,-10 + 6283: -112,-11 + 6284: -110,-10 + 6285: -110,-11 + 6286: -112,-15 + 6287: -112,-16 + 6288: -112,-17 + 6289: -110,-15 + 6290: -110,-16 + 6291: -114,-15 + 6292: -114,-16 + 12562: 90,27 + 12563: 90,26 + 12564: 90,25 + 12565: 90,24 + 12566: 95,27 + 12567: 95,26 + 12568: 95,25 + 12569: 95,24 + 12570: 100,27 + 12571: 100,26 + 12572: 100,25 + 12573: 100,24 + 12574: 104,23 + 12575: 104,24 + 12576: 104,25 + 12577: 104,26 + 12578: 104,27 + 12579: 104,28 + 12938: 115,4 + 12939: 115,2 + 12940: 115,3 - node: zIndex: 1 color: '#FFFFFFFF' id: OldConcreteTrimLineE decals: - 12067: 99,-1 - 12068: 99,0 - 12080: 99,-2 + 12063: 99,-1 + 12064: 99,0 + 12076: 99,-2 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimLineN decals: - 6762: -103.00162,-36.25043 - 6763: -104.001785,-36.250713 - 6764: -105.00164,-36.250713 + 6758: -103.00162,-36.25043 + 6759: -104.001785,-36.250713 + 6760: -105.00164,-36.250713 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineN decals: - 6276: -117,-12 - 6277: -116,-12 - 6278: -115,-12 - 6279: -113,-12 - 6280: -111,-12 - 6281: -109,-12 - 6282: -108,-12 - 6322: -114,-12 - 6323: -112,-12 - 6324: -110,-12 - 12542: 91,23 - 12543: 92,23 - 12544: 93,23 - 12545: 96,23 - 12546: 97,23 - 12547: 98,23 - 12548: 101,23 - 12549: 102,23 - 12550: 103,23 - 12551: 103,29 - 12552: 102,29 - 12553: 101,29 - 12554: 100,29 - 12555: 99,29 - 12556: 98,29 - 12557: 97,29 - 12558: 96,29 - 12559: 95,29 - 12560: 94,29 - 12561: 93,29 - 12562: 92,29 - 12563: 91,29 - 12564: 90,29 - 12565: 89,29 + 6272: -117,-12 + 6273: -116,-12 + 6274: -115,-12 + 6275: -113,-12 + 6276: -111,-12 + 6277: -109,-12 + 6278: -108,-12 + 6318: -114,-12 + 6319: -112,-12 + 6320: -110,-12 + 12538: 91,23 + 12539: 92,23 + 12540: 93,23 + 12541: 96,23 + 12542: 97,23 + 12543: 98,23 + 12544: 101,23 + 12545: 102,23 + 12546: 103,23 + 12547: 103,29 + 12548: 102,29 + 12549: 101,29 + 12550: 100,29 + 12551: 99,29 + 12552: 98,29 + 12553: 97,29 + 12554: 96,29 + 12555: 95,29 + 12556: 94,29 + 12557: 93,29 + 12558: 92,29 + 12559: 91,29 + 12560: 90,29 + 12561: 89,29 - node: zIndex: 1 color: '#0000003F' id: OldConcreteTrimLineS decals: - 6755: -105.00412,-29.716705 - 6756: -104.00427,-29.716705 - 6757: -103.000015,-29.716705 + 6751: -105.00412,-29.716705 + 6752: -104.00427,-29.716705 + 6753: -103.000015,-29.716705 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineS decals: - 6269: -115,-14 - 6270: -113,-14 - 6271: -111,-14 - 6272: -109,-14 - 6273: -108,-14 - 6274: -116,-14 - 6275: -117,-14 - 6325: -114,-14 - 6326: -112,-14 - 6327: -110,-14 - 12519: 91,28 - 12520: 92,28 - 12521: 93,28 - 12522: 96,28 - 12523: 97,28 - 12524: 98,28 - 12525: 101,28 - 12526: 102,28 - 12527: 103,28 - 12528: 89,23 - 12529: 90,23 - 12530: 91,23 - 12531: 92,23 - 12532: 94,23 - 12533: 93,23 - 12534: 95,23 - 12535: 96,23 - 12536: 97,23 - 12537: 99,22 - 12538: 100,22 - 12539: 101,22 - 12540: 102,22 - 12541: 103,22 + 6265: -115,-14 + 6266: -113,-14 + 6267: -111,-14 + 6268: -109,-14 + 6269: -108,-14 + 6270: -116,-14 + 6271: -117,-14 + 6321: -114,-14 + 6322: -112,-14 + 6323: -110,-14 + 12515: 91,28 + 12516: 92,28 + 12517: 93,28 + 12518: 96,28 + 12519: 97,28 + 12520: 98,28 + 12521: 101,28 + 12522: 102,28 + 12523: 103,28 + 12524: 89,23 + 12525: 90,23 + 12526: 91,23 + 12527: 92,23 + 12528: 94,23 + 12529: 93,23 + 12530: 95,23 + 12531: 96,23 + 12532: 97,23 + 12533: 99,22 + 12534: 100,22 + 12535: 101,22 + 12536: 102,22 + 12537: 103,22 - node: zIndex: 1 color: '#FFFFFFFF' id: OldConcreteTrimLineS decals: - 12069: 100,1 - 12070: 101,1 - 12081: 102,1 + 12065: 100,1 + 12066: 101,1 + 12077: 102,1 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineW decals: - 6123: -62,-79 - 6255: -114,-16 - 6256: -114,-15 - 6257: -112,-17 - 6258: -112,-16 - 6259: -112,-15 - 6260: -110,-16 - 6261: -110,-15 - 6262: -112,-11 - 6263: -112,-10 - 6264: -112,-9 - 6265: -110,-10 - 6266: -110,-11 - 6267: -114,-10 - 6268: -114,-11 - 6299: -118,-13 - 12503: 89,24 - 12504: 89,25 - 12505: 89,26 - 12506: 89,27 - 12507: 94,27 - 12508: 94,26 - 12509: 94,25 - 12510: 94,24 - 12511: 99,27 - 12512: 99,26 - 12513: 99,25 - 12514: 99,24 - 12515: 104,27 - 12516: 104,26 - 12517: 104,25 - 12518: 104,24 - 12939: 113,2 - 12940: 113,3 - 12941: 113,4 + 6119: -62,-79 + 6251: -114,-16 + 6252: -114,-15 + 6253: -112,-17 + 6254: -112,-16 + 6255: -112,-15 + 6256: -110,-16 + 6257: -110,-15 + 6258: -112,-11 + 6259: -112,-10 + 6260: -112,-9 + 6261: -110,-10 + 6262: -110,-11 + 6263: -114,-10 + 6264: -114,-11 + 6295: -118,-13 + 12499: 89,24 + 12500: 89,25 + 12501: 89,26 + 12502: 89,27 + 12503: 94,27 + 12504: 94,26 + 12505: 94,25 + 12506: 94,24 + 12507: 99,27 + 12508: 99,26 + 12509: 99,25 + 12510: 99,24 + 12511: 104,27 + 12512: 104,26 + 12513: 104,25 + 12514: 104,24 + 12935: 113,2 + 12936: 113,3 + 12937: 113,4 - node: color: '#00000019' id: OriginStationSign4 decals: - 15311: -135,26 + 15307: -135,26 - node: color: '#00000033' id: OriginStationSign4 decals: - 15303: -136,12 - 15304: -136,13 - 15305: -135,15 - 15306: -134,25 - 15307: -134,26 - 15308: -134,27 - 15309: -134,28 - 15310: -142,27 + 15299: -136,12 + 15300: -136,13 + 15301: -135,15 + 15302: -134,25 + 15303: -134,26 + 15304: -134,27 + 15305: -134,28 + 15306: -142,27 - node: color: '#0000003F' id: OriginStationSign4 decals: - 5488: 13,4 - 5489: 14,4 - 5490: 15,4 - 5983: -76,36 + 5484: 13,4 + 5485: 14,4 + 5486: 15,4 + 5979: -76,36 - node: color: '#0000004C' id: OriginStationSign4 decals: - 15282: -143,27 - 15283: -143,26 - 15284: -143,25 - 15285: -142,28 - 15286: -142,29 - 15287: -136,30 - 15288: -135,29 - 15289: -134,29 - 15290: -133,28 - 15291: -133,27 - 15292: -133,26 - 15293: -133,25 - 15294: -133,24 - 15295: -133,17 - 15296: -134,16 - 15297: -134,15 - 15298: -135,14 - 15299: -135,13 - 15300: -135,12 - 15301: -136,11 - 15302: -139,14 + 15278: -143,27 + 15279: -143,26 + 15280: -143,25 + 15281: -142,28 + 15282: -142,29 + 15283: -136,30 + 15284: -135,29 + 15285: -134,29 + 15286: -133,28 + 15287: -133,27 + 15288: -133,26 + 15289: -133,25 + 15290: -133,24 + 15291: -133,17 + 15292: -134,16 + 15293: -134,15 + 15294: -135,14 + 15295: -135,13 + 15296: -135,12 + 15297: -136,11 + 15298: -139,14 - node: color: '#00000066' id: OriginStationSign4 decals: - 5984: -76,33 + 5980: -76,33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -18990,10 +19003,10 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 17629: -48,8 - 17630: -48,9 - 17631: -47,9 - 17632: -46,9 + 17561: -48,8 + 17562: -48,9 + 17563: -47,9 + 17564: -46,9 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -19047,10 +19060,10 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: - 17625: -47,7 - 17626: -46,7 - 17627: -45,7 - 17628: -45,8 + 17557: -47,7 + 17558: -46,7 + 17559: -45,7 + 17560: -45,8 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -19071,10 +19084,10 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 17633: -48,7 - 17634: -47,7 - 17635: -46,7 - 17636: -48,8 + 17565: -48,7 + 17566: -47,7 + 17567: -46,7 + 17568: -48,8 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 @@ -19131,10 +19144,10 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 17637: -47,9 - 17638: -46,9 - 17639: -45,8 - 17640: -45,9 + 17569: -47,9 + 17570: -46,9 + 17571: -45,8 + 17572: -45,9 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 @@ -19157,7 +19170,7 @@ entities: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 16998: 33,16 + 16968: 33,16 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -19207,21 +19220,21 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 5968: 10,-6 + 5964: 10,-6 - node: zIndex: 1 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 5969: 10,-5 + 5965: 10,-5 - node: zIndex: 1 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 5970: 10,-4 + 5966: 10,-4 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -19239,29 +19252,29 @@ entities: color: '#FFFFFFFF' id: StandClear decals: - 5975: -88,-27 - 5976: -88,-20 + 5971: -88,-27 + 5972: -88,-20 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: 698: -69,10 - 5973: -76,-20 - 5974: -76,-27 - 5977: -92,-27 - 5978: -92,-20 + 5969: -76,-20 + 5970: -76,-27 + 5973: -92,-27 + 5974: -92,-20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 11505: 42,-61 - 11506: 44,-61 - 11507: 50,-61 - 11508: 52,-61 - 11509: 37,-61 - 11510: 57,-61 + 11501: 42,-61 + 11502: 44,-61 + 11503: 50,-61 + 11504: 52,-61 + 11505: 37,-61 + 11506: 57,-61 - node: color: '#1DDFBE8C' id: ThreeQuarterTileOverlayGreyscale @@ -19283,7 +19296,7 @@ entities: color: '#515255FF' id: ThreeQuarterTileOverlayGreyscale decals: - 17614: -48,9 + 17546: -48,9 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -19347,9 +19360,9 @@ entities: 1883: -69,-9 2870: 43,-32 2917: 19,10 - 11392: 55,-57 - 16515: -39,-31 - 16598: 0,39 + 11388: 55,-57 + 16511: -39,-31 + 16568: 0,39 - node: zIndex: 1 color: '#DE3A3A96' @@ -19370,7 +19383,7 @@ entities: 3760: -24,39 3815: -19,57 3849: -19,64 - 11364: 36,-57 + 11360: 36,-57 - node: color: '#1DDFBE8C' id: ThreeQuarterTileOverlayGreyscale180 @@ -19392,7 +19405,7 @@ entities: color: '#515255FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 17615: -45,7 + 17547: -45,7 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -19464,9 +19477,9 @@ entities: 2918: 20,7 2919: 21,8 2920: 22,9 - 11391: 58,-61 - 16514: -38,-33 - 16600: 1,36 + 11387: 58,-61 + 16510: -38,-33 + 16570: 1,36 - node: zIndex: 1 color: '#DE3A3A96' @@ -19488,8 +19501,8 @@ entities: 3759: -17,36 3820: -13,41 3850: -17,59 - 11363: 39,-61 - 16586: -2,36 + 11359: 39,-61 + 16556: -2,36 - node: color: '#1DDFBE8C' id: ThreeQuarterTileOverlayGreyscale270 @@ -19511,7 +19524,7 @@ entities: color: '#515255FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 17616: -48,7 + 17548: -48,7 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 @@ -19580,9 +19593,9 @@ entities: 1881: -69,-12 2872: 43,-36 2916: 19,7 - 11390: 55,-61 - 16513: -39,-33 - 16599: 0,36 + 11386: 55,-61 + 16509: -39,-33 + 16569: 0,36 - node: zIndex: 1 color: '#DE3A3A96' @@ -19605,7 +19618,7 @@ entities: 3814: -19,47 3819: -15,41 3851: -19,59 - 11361: 36,-61 + 11357: 36,-61 - node: color: '#1DDFBE8C' id: ThreeQuarterTileOverlayGreyscale90 @@ -19627,7 +19640,7 @@ entities: color: '#515255FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 17613: -45,9 + 17545: -45,9 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 @@ -19696,9 +19709,9 @@ entities: 1880: -66,-9 2871: 46,-32 2921: 22,10 - 11389: 58,-57 - 16512: -38,-31 - 16597: 1,39 + 11385: 58,-57 + 16508: -38,-31 + 16567: 1,39 - node: zIndex: 1 color: '#DE3A3A96' @@ -19720,23 +19733,23 @@ entities: 3813: -13,50 3816: -17,57 3848: -17,64 - 11362: 39,-57 - 16587: -2,39 - 16591: 0,34 + 11358: 39,-57 + 16557: -2,39 + 16561: 0,34 - node: color: '#FFFFFFFF' id: WarnBox decals: - 6330: -119,-13 + 6326: -119,-13 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnBox decals: - 11031: 12,-75 - 11032: 0,-74 - 11033: -2,-74 - 11185: 10,-79 + 11027: 12,-75 + 11028: 0,-74 + 11029: -2,-74 + 11181: 10,-79 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE @@ -19767,20 +19780,20 @@ entities: id: WarnCornerNW decals: 1783: -16,-35 - 17570: -70,-87 - 17571: -69,-86 + 17534: -70,-87 + 17535: -69,-86 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 17750: -21,42 + 17682: -21,42 - node: color: '#0000007F' id: WarnCornerSE decals: 1784: -9,-39 - 17575: -72,-85 - 17576: -71,-84 + 17539: -72,-85 + 17540: -71,-84 - node: color: '#0000007F' id: WarnCornerSW @@ -19795,7 +19808,7 @@ entities: 248: 25,-11 249: 24,-10 250: 23,-9 - 17751: -21,44 + 17683: -21,44 - node: zIndex: 1 color: '#FFFFFFFF' @@ -19826,9 +19839,9 @@ entities: decals: 2525: 0,15 4553: -13,54 - 11937: 130,9 - 12079: 100,-2 - 17747: -25,41 + 11933: 130,9 + 12075: 100,-2 + 17679: -25,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -19845,34 +19858,34 @@ entities: color: '#0000007F' id: WarnCornerSmallNW decals: - 17572: -70,-88 - 17573: -69,-87 - 17574: -68,-86 + 17536: -70,-88 + 17537: -69,-87 + 17538: -68,-86 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: 2523: 2,15 4554: -11,54 - 11934: 141,9 - 12077: 102,-2 - 17746: -21,41 - 17753: -20,42 + 11930: 141,9 + 12073: 102,-2 + 17678: -21,41 + 17685: -20,42 - node: color: '#0000007F' id: WarnCornerSmallSE decals: - 17577: -72,-84 - 17578: -73,-85 + 17541: -72,-84 + 17542: -73,-85 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: 2524: 0,17 4555: -13,58 - 11935: 130,20 - 12076: 100,0 - 17745: -25,45 + 11931: 130,20 + 12072: 100,0 + 17677: -25,45 - node: zIndex: 10 color: '#0000003F' @@ -19891,506 +19904,506 @@ entities: 256: 28,-13 2526: 2,17 4556: -11,58 - 11936: 141,20 - 12078: 102,0 - 17748: -21,45 - 17752: -20,44 + 11932: 141,20 + 12074: 102,0 + 17680: -21,45 + 17684: -20,44 - node: color: '#00000019' id: WarnFull decals: - 6653: -129,-39 - 6654: -129,-40 - 6655: -129,-41 - 6656: -129,-42 - 6657: -129,-43 - 6658: -128,-44 - 6659: -128,-45 - 6660: -128,-46 - 6661: -127,-47 - 6662: -127,-48 - 6663: -127,-49 - 6664: -126,-50 - 6665: -125,-51 - 6666: -124,-52 - 6667: -124,-53 - 6668: -123,-54 - 6669: -122,-55 - 6670: -122,-56 - 6671: -122,-57 - 6672: -122,-58 - 6673: -122,-59 - 6674: -122,-60 - 6675: -123,-61 - 6676: -123,-62 - 6677: -124,-63 - 6678: -125,-64 - 6679: -125,-65 - 6680: -125,-66 - 6681: -125,-67 - 6682: -124,-68 - 6683: -124,-69 - 6684: -123,-70 - 6685: -122,-70 - 6686: -121,-70 - 6687: -120,-71 - 6688: -119,-71 - 6689: -118,-71 - 6690: -117,-72 - 6691: -116,-72 - 6692: -115,-72 - 6693: -114,-73 - 6694: -113,-74 - 6695: -112,-74 - 6696: -111,-75 - 6697: -110,-75 - 6698: -109,-76 - 6699: -108,-77 - 6700: -107,-78 - 6701: -106,-79 - 6702: -105,-80 - 6703: -104,-80 - 6704: -103,-81 - 6705: -102,-81 - 6706: -101,-81 - 6707: -98,-82 - 6708: -97,-83 - 6709: -96,-83 - 6710: -95,-84 - 6711: -94,-85 - 6712: -93,-86 - 6713: -92,-87 - 6714: -91,-88 - 6715: -90,-90 - 6716: -99,-82 - 7026: -40,-109 - 7027: -39,-109 - 7028: -38,-109 - 7029: -37,-109 - 7030: -36,-108 - 7031: -35,-108 - 7032: -34,-108 - 7033: -33,-108 - 7034: -32,-109 - 7035: -31,-109 - 7036: -30,-109 - 7037: -29,-109 - 7038: -28,-110 - 7039: -27,-110 - 7040: -26,-110 - 7041: -25,-111 - 7042: -24,-111 - 7043: -23,-111 - 7044: -22,-112 - 7045: -21,-112 - 7046: -20,-113 - 7047: -19,-114 - 7048: -18,-114 - 7049: -17,-114 - 7050: -16,-114 - 7051: -15,-113 - 7052: -14,-113 - 7053: -14,-112 - 7054: -14,-111 - 7055: -14,-110 - 7056: -14,-109 - 7057: -14,-108 - 7058: -14,-107 - 7059: -14,-106 - 7060: -15,-105 - 7061: -15,-104 - 7062: -15,-103 - 7063: -15,-102 - 7064: -15,-101 - 7065: -16,-100 - 7066: -16,-99 - 7067: -16,-98 - 7068: -16,-97 - 7069: -16,-96 - 7070: -17,-95 - 7071: -17,-93 - 7072: -17,-94 - 7073: -18,-92 - 7106: -125,-6 - 7107: -123,-7 - 7108: -122,-7 - 7109: -121,-7 - 7110: -120,-7 - 7111: -119,-7 - 7112: -118,-7 - 7113: -117,-7 - 7114: -116,-6 - 7115: -115,-6 - 7116: -114,-5 + 6649: -129,-39 + 6650: -129,-40 + 6651: -129,-41 + 6652: -129,-42 + 6653: -129,-43 + 6654: -128,-44 + 6655: -128,-45 + 6656: -128,-46 + 6657: -127,-47 + 6658: -127,-48 + 6659: -127,-49 + 6660: -126,-50 + 6661: -125,-51 + 6662: -124,-52 + 6663: -124,-53 + 6664: -123,-54 + 6665: -122,-55 + 6666: -122,-56 + 6667: -122,-57 + 6668: -122,-58 + 6669: -122,-59 + 6670: -122,-60 + 6671: -123,-61 + 6672: -123,-62 + 6673: -124,-63 + 6674: -125,-64 + 6675: -125,-65 + 6676: -125,-66 + 6677: -125,-67 + 6678: -124,-68 + 6679: -124,-69 + 6680: -123,-70 + 6681: -122,-70 + 6682: -121,-70 + 6683: -120,-71 + 6684: -119,-71 + 6685: -118,-71 + 6686: -117,-72 + 6687: -116,-72 + 6688: -115,-72 + 6689: -114,-73 + 6690: -113,-74 + 6691: -112,-74 + 6692: -111,-75 + 6693: -110,-75 + 6694: -109,-76 + 6695: -108,-77 + 6696: -107,-78 + 6697: -106,-79 + 6698: -105,-80 + 6699: -104,-80 + 6700: -103,-81 + 6701: -102,-81 + 6702: -101,-81 + 6703: -98,-82 + 6704: -97,-83 + 6705: -96,-83 + 6706: -95,-84 + 6707: -94,-85 + 6708: -93,-86 + 6709: -92,-87 + 6710: -91,-88 + 6711: -90,-90 + 6712: -99,-82 + 7022: -40,-109 + 7023: -39,-109 + 7024: -38,-109 + 7025: -37,-109 + 7026: -36,-108 + 7027: -35,-108 + 7028: -34,-108 + 7029: -33,-108 + 7030: -32,-109 + 7031: -31,-109 + 7032: -30,-109 + 7033: -29,-109 + 7034: -28,-110 + 7035: -27,-110 + 7036: -26,-110 + 7037: -25,-111 + 7038: -24,-111 + 7039: -23,-111 + 7040: -22,-112 + 7041: -21,-112 + 7042: -20,-113 + 7043: -19,-114 + 7044: -18,-114 + 7045: -17,-114 + 7046: -16,-114 + 7047: -15,-113 + 7048: -14,-113 + 7049: -14,-112 + 7050: -14,-111 + 7051: -14,-110 + 7052: -14,-109 + 7053: -14,-108 + 7054: -14,-107 + 7055: -14,-106 + 7056: -15,-105 + 7057: -15,-104 + 7058: -15,-103 + 7059: -15,-102 + 7060: -15,-101 + 7061: -16,-100 + 7062: -16,-99 + 7063: -16,-98 + 7064: -16,-97 + 7065: -16,-96 + 7066: -17,-95 + 7067: -17,-93 + 7068: -17,-94 + 7069: -18,-92 + 7102: -125,-6 + 7103: -123,-7 + 7104: -122,-7 + 7105: -121,-7 + 7106: -120,-7 + 7107: -119,-7 + 7108: -118,-7 + 7109: -117,-7 + 7110: -116,-6 + 7111: -115,-6 + 7112: -114,-5 - node: color: '#00000033' id: WarnFull decals: - 5876: -54,11 - 5877: -53,11 - 5878: -53,13 - 5879: -54,13 - 5880: -54,14 - 5881: -53,14 - 5882: -53,16 - 5883: -54,16 - 5884: -51,13 - 5885: -51,14 - 5886: -51,15 - 5887: -51,16 - 5888: -50,16 - 5889: -50,15 - 5890: -50,14 - 5891: -50,13 - 5892: -48,13 - 5893: -48,14 - 5894: -48,15 - 5895: -48,16 - 5896: -47,16 - 5897: -47,15 - 5898: -47,14 - 5899: -47,13 - 5900: -45,13 - 5901: -45,14 - 5902: -45,15 - 5903: -45,16 - 5904: -45,11 - 5905: -46,11 - 5906: -47,11 - 5907: -48,11 - 5908: -49,11 - 5909: -50,11 - 5910: -51,11 - 6586: -90,-92 - 6587: -90,-91 - 6588: -91,-90 - 6589: -91,-89 - 6590: -92,-88 - 6591: -93,-87 - 6592: -94,-86 - 6593: -95,-85 - 6594: -96,-84 - 6595: -97,-84 - 6596: -98,-83 - 6597: -102,-82 - 6598: -103,-82 - 6599: -104,-81 - 6600: -105,-81 - 6601: -106,-80 - 6602: -107,-79 - 6603: -108,-78 - 6604: -109,-77 - 6605: -111,-76 - 6606: -110,-76 - 6607: -112,-75 - 6608: -113,-75 - 6609: -114,-74 - 6610: -115,-73 - 6611: -116,-73 - 6612: -117,-73 - 6613: -118,-72 - 6614: -119,-72 - 6615: -120,-72 - 6616: -121,-71 - 6617: -122,-71 - 6618: -123,-71 - 6619: -124,-70 - 6620: -125,-69 - 6621: -125,-68 - 6622: -126,-67 - 6623: -126,-66 - 6624: -126,-65 - 6625: -126,-64 - 6626: -125,-63 - 6627: -124,-62 - 6628: -124,-61 - 6629: -123,-60 - 6630: -123,-59 - 6631: -123,-58 - 6632: -123,-57 - 6633: -123,-56 - 6634: -123,-55 - 6635: -124,-54 - 6636: -125,-53 - 6637: -125,-52 - 6638: -126,-51 - 6639: -127,-50 - 6640: -128,-49 - 6641: -128,-48 - 6642: -128,-47 - 6643: -129,-46 - 6644: -129,-45 - 6645: -129,-44 - 6646: -130,-43 - 6647: -130,-42 - 6648: -130,-41 - 6649: -130,-40 - 6650: -130,-39 - 6651: -129,-38 - 6971: -17,-92 - 6972: -17,-89 - 6973: -17,-90 - 6974: -17,-91 - 6975: -16,-93 - 6976: -16,-94 - 6977: -16,-95 - 6978: -15,-96 - 6979: -15,-97 - 6980: -15,-98 - 6981: -15,-99 - 6982: -15,-100 - 6983: -14,-101 - 6984: -14,-102 - 6985: -14,-104 - 6986: -14,-103 - 6987: -14,-105 - 6988: -13,-106 - 6989: -13,-107 - 6990: -13,-108 - 6991: -13,-109 - 6992: -13,-110 - 6993: -13,-111 - 6994: -13,-112 - 6995: -13,-113 - 6996: -14,-114 - 6997: -15,-114 - 6998: -16,-115 - 6999: -17,-115 - 7000: -19,-115 - 7001: -18,-115 - 7002: -20,-114 - 7003: -21,-113 - 7004: -22,-113 - 7005: -23,-112 - 7006: -24,-112 - 7007: -25,-112 - 7008: -26,-111 - 7009: -27,-111 - 7010: -28,-111 - 7011: -29,-110 - 7012: -30,-110 - 7013: -31,-110 - 7014: -32,-110 - 7015: -33,-109 - 7016: -34,-109 - 7017: -35,-109 - 7018: -36,-109 - 7019: -37,-110 - 7020: -38,-110 - 7021: -39,-110 - 7022: -40,-110 - 7023: -41,-109 - 7024: -42,-108 - 7025: -44,-107 - 7092: -126,-5 - 7093: -125,-5 - 7094: -124,-6 - 7095: -123,-6 - 7096: -122,-6 - 7097: -121,-6 - 7098: -120,-6 - 7099: -119,-6 - 7100: -118,-6 - 7101: -117,-6 - 7102: -116,-5 - 7103: -115,-5 - 7104: -114,-4 - 7105: -113,-4 + 5872: -54,11 + 5873: -53,11 + 5874: -53,13 + 5875: -54,13 + 5876: -54,14 + 5877: -53,14 + 5878: -53,16 + 5879: -54,16 + 5880: -51,13 + 5881: -51,14 + 5882: -51,15 + 5883: -51,16 + 5884: -50,16 + 5885: -50,15 + 5886: -50,14 + 5887: -50,13 + 5888: -48,13 + 5889: -48,14 + 5890: -48,15 + 5891: -48,16 + 5892: -47,16 + 5893: -47,15 + 5894: -47,14 + 5895: -47,13 + 5896: -45,13 + 5897: -45,14 + 5898: -45,15 + 5899: -45,16 + 5900: -45,11 + 5901: -46,11 + 5902: -47,11 + 5903: -48,11 + 5904: -49,11 + 5905: -50,11 + 5906: -51,11 + 6582: -90,-92 + 6583: -90,-91 + 6584: -91,-90 + 6585: -91,-89 + 6586: -92,-88 + 6587: -93,-87 + 6588: -94,-86 + 6589: -95,-85 + 6590: -96,-84 + 6591: -97,-84 + 6592: -98,-83 + 6593: -102,-82 + 6594: -103,-82 + 6595: -104,-81 + 6596: -105,-81 + 6597: -106,-80 + 6598: -107,-79 + 6599: -108,-78 + 6600: -109,-77 + 6601: -111,-76 + 6602: -110,-76 + 6603: -112,-75 + 6604: -113,-75 + 6605: -114,-74 + 6606: -115,-73 + 6607: -116,-73 + 6608: -117,-73 + 6609: -118,-72 + 6610: -119,-72 + 6611: -120,-72 + 6612: -121,-71 + 6613: -122,-71 + 6614: -123,-71 + 6615: -124,-70 + 6616: -125,-69 + 6617: -125,-68 + 6618: -126,-67 + 6619: -126,-66 + 6620: -126,-65 + 6621: -126,-64 + 6622: -125,-63 + 6623: -124,-62 + 6624: -124,-61 + 6625: -123,-60 + 6626: -123,-59 + 6627: -123,-58 + 6628: -123,-57 + 6629: -123,-56 + 6630: -123,-55 + 6631: -124,-54 + 6632: -125,-53 + 6633: -125,-52 + 6634: -126,-51 + 6635: -127,-50 + 6636: -128,-49 + 6637: -128,-48 + 6638: -128,-47 + 6639: -129,-46 + 6640: -129,-45 + 6641: -129,-44 + 6642: -130,-43 + 6643: -130,-42 + 6644: -130,-41 + 6645: -130,-40 + 6646: -130,-39 + 6647: -129,-38 + 6967: -17,-92 + 6968: -17,-89 + 6969: -17,-90 + 6970: -17,-91 + 6971: -16,-93 + 6972: -16,-94 + 6973: -16,-95 + 6974: -15,-96 + 6975: -15,-97 + 6976: -15,-98 + 6977: -15,-99 + 6978: -15,-100 + 6979: -14,-101 + 6980: -14,-102 + 6981: -14,-104 + 6982: -14,-103 + 6983: -14,-105 + 6984: -13,-106 + 6985: -13,-107 + 6986: -13,-108 + 6987: -13,-109 + 6988: -13,-110 + 6989: -13,-111 + 6990: -13,-112 + 6991: -13,-113 + 6992: -14,-114 + 6993: -15,-114 + 6994: -16,-115 + 6995: -17,-115 + 6996: -19,-115 + 6997: -18,-115 + 6998: -20,-114 + 6999: -21,-113 + 7000: -22,-113 + 7001: -23,-112 + 7002: -24,-112 + 7003: -25,-112 + 7004: -26,-111 + 7005: -27,-111 + 7006: -28,-111 + 7007: -29,-110 + 7008: -30,-110 + 7009: -31,-110 + 7010: -32,-110 + 7011: -33,-109 + 7012: -34,-109 + 7013: -35,-109 + 7014: -36,-109 + 7015: -37,-110 + 7016: -38,-110 + 7017: -39,-110 + 7018: -40,-110 + 7019: -41,-109 + 7020: -42,-108 + 7021: -44,-107 + 7088: -126,-5 + 7089: -125,-5 + 7090: -124,-6 + 7091: -123,-6 + 7092: -122,-6 + 7093: -121,-6 + 7094: -120,-6 + 7095: -119,-6 + 7096: -118,-6 + 7097: -117,-6 + 7098: -116,-5 + 7099: -115,-5 + 7100: -114,-4 + 7101: -113,-4 - node: color: '#0000003F' id: WarnFull decals: - 7179: -99,6 - 7180: -98,6 - 7181: -97,6 - 7182: -96,6 - 7183: -95,6 + 7175: -99,6 + 7176: -98,6 + 7177: -97,6 + 7178: -96,6 + 7179: -95,6 - node: color: '#0000004C' id: WarnFull decals: - 6514: -130,-36 - 6515: -130,-37 - 6516: -130,-38 - 6517: -131,-39 - 6518: -131,-40 - 6519: -131,-41 - 6520: -131,-42 - 6521: -131,-43 - 6522: -130,-44 - 6523: -130,-45 - 6524: -130,-46 - 6525: -129,-47 - 6526: -129,-48 - 6527: -129,-49 - 6528: -128,-50 - 6529: -127,-51 - 6530: -126,-52 - 6531: -126,-53 - 6532: -125,-54 - 6533: -124,-55 - 6534: -124,-56 - 6535: -124,-57 - 6536: -124,-58 - 6537: -124,-59 - 6538: -124,-60 - 6539: -125,-61 - 6540: -125,-62 - 6541: -126,-63 - 6542: -127,-64 - 6543: -127,-65 - 6544: -127,-66 - 6545: -127,-67 - 6546: -126,-68 - 6547: -126,-69 - 6548: -125,-70 - 6549: -124,-71 - 6550: -123,-72 - 6551: -122,-72 - 6552: -121,-72 - 6553: -120,-73 - 6554: -119,-73 - 6555: -118,-73 - 6556: -117,-74 - 6557: -116,-74 - 6558: -115,-74 - 6559: -114,-75 - 6560: -113,-76 - 6561: -112,-76 - 6562: -111,-77 - 6563: -110,-77 - 6564: -109,-78 - 6565: -108,-79 - 6566: -107,-80 - 6567: -106,-81 - 6568: -105,-82 - 6569: -104,-82 - 6570: -103,-83 - 6571: -102,-83 - 6572: -98,-84 - 6573: -97,-85 - 6574: -96,-85 - 6575: -95,-86 - 6576: -94,-87 - 6577: -93,-88 - 6578: -92,-89 - 6579: -92,-90 - 6580: -91,-91 - 6581: -91,-92 - 6582: -90,-93 - 6583: -89,-94 - 6584: -89,-95 - 6585: -88,-97 - 6652: -131,-34 - 6904: -47,-106 - 6905: -46,-107 - 6906: -45,-107 - 6907: -44,-108 - 6908: -43,-108 - 6909: -42,-109 - 6910: -41,-110 - 6911: -40,-111 - 6912: -39,-111 - 6913: -38,-111 - 6914: -37,-111 - 6915: -36,-110 - 6916: -35,-110 - 6917: -34,-110 - 6918: -33,-110 - 6919: -32,-111 - 6920: -31,-111 - 6921: -30,-111 - 6922: -29,-111 - 6923: -28,-112 - 6924: -27,-112 - 6925: -26,-112 - 6926: -25,-113 - 6927: -24,-113 - 6928: -23,-113 - 6929: -22,-114 - 6930: -21,-114 - 6931: -20,-115 - 6932: -19,-116 - 6933: -18,-116 - 6934: -17,-116 - 6935: -16,-116 - 6936: -15,-115 - 6937: -14,-115 - 6938: -13,-114 - 6939: -12,-113 - 6940: -12,-112 - 6941: -12,-111 - 6942: -12,-110 - 6943: -12,-109 - 6944: -12,-108 - 6945: -12,-107 - 6946: -12,-106 - 6947: -13,-105 - 6948: -13,-104 - 6949: -13,-103 - 6950: -13,-102 - 6951: -13,-101 - 6952: -14,-100 - 6953: -14,-99 - 6954: -14,-98 - 6955: -14,-97 - 6956: -14,-96 - 6957: -15,-95 - 6958: -15,-94 - 6959: -15,-93 - 6960: -16,-92 - 6961: -16,-91 - 6962: -16,-90 - 6963: -16,-89 - 6964: -17,-88 - 6965: -17,-87 - 6966: -17,-86 - 6967: -17,-84 - 6968: -17,-83 - 6969: -17,-82 - 6970: -17,-80 - 7074: -128,-3 - 7075: -127,-4 - 7076: -126,-4 - 7077: -125,-4 - 7078: -124,-5 - 7079: -123,-5 - 7080: -122,-5 - 7081: -121,-5 - 7082: -120,-5 - 7083: -119,-5 - 7084: -118,-5 - 7085: -117,-5 - 7086: -116,-4 - 7087: -115,-4 - 7088: -114,-3 - 7089: -113,-3 - 7090: -112,-3 - 7091: -111,-2 + 6510: -130,-36 + 6511: -130,-37 + 6512: -130,-38 + 6513: -131,-39 + 6514: -131,-40 + 6515: -131,-41 + 6516: -131,-42 + 6517: -131,-43 + 6518: -130,-44 + 6519: -130,-45 + 6520: -130,-46 + 6521: -129,-47 + 6522: -129,-48 + 6523: -129,-49 + 6524: -128,-50 + 6525: -127,-51 + 6526: -126,-52 + 6527: -126,-53 + 6528: -125,-54 + 6529: -124,-55 + 6530: -124,-56 + 6531: -124,-57 + 6532: -124,-58 + 6533: -124,-59 + 6534: -124,-60 + 6535: -125,-61 + 6536: -125,-62 + 6537: -126,-63 + 6538: -127,-64 + 6539: -127,-65 + 6540: -127,-66 + 6541: -127,-67 + 6542: -126,-68 + 6543: -126,-69 + 6544: -125,-70 + 6545: -124,-71 + 6546: -123,-72 + 6547: -122,-72 + 6548: -121,-72 + 6549: -120,-73 + 6550: -119,-73 + 6551: -118,-73 + 6552: -117,-74 + 6553: -116,-74 + 6554: -115,-74 + 6555: -114,-75 + 6556: -113,-76 + 6557: -112,-76 + 6558: -111,-77 + 6559: -110,-77 + 6560: -109,-78 + 6561: -108,-79 + 6562: -107,-80 + 6563: -106,-81 + 6564: -105,-82 + 6565: -104,-82 + 6566: -103,-83 + 6567: -102,-83 + 6568: -98,-84 + 6569: -97,-85 + 6570: -96,-85 + 6571: -95,-86 + 6572: -94,-87 + 6573: -93,-88 + 6574: -92,-89 + 6575: -92,-90 + 6576: -91,-91 + 6577: -91,-92 + 6578: -90,-93 + 6579: -89,-94 + 6580: -89,-95 + 6581: -88,-97 + 6648: -131,-34 + 6900: -47,-106 + 6901: -46,-107 + 6902: -45,-107 + 6903: -44,-108 + 6904: -43,-108 + 6905: -42,-109 + 6906: -41,-110 + 6907: -40,-111 + 6908: -39,-111 + 6909: -38,-111 + 6910: -37,-111 + 6911: -36,-110 + 6912: -35,-110 + 6913: -34,-110 + 6914: -33,-110 + 6915: -32,-111 + 6916: -31,-111 + 6917: -30,-111 + 6918: -29,-111 + 6919: -28,-112 + 6920: -27,-112 + 6921: -26,-112 + 6922: -25,-113 + 6923: -24,-113 + 6924: -23,-113 + 6925: -22,-114 + 6926: -21,-114 + 6927: -20,-115 + 6928: -19,-116 + 6929: -18,-116 + 6930: -17,-116 + 6931: -16,-116 + 6932: -15,-115 + 6933: -14,-115 + 6934: -13,-114 + 6935: -12,-113 + 6936: -12,-112 + 6937: -12,-111 + 6938: -12,-110 + 6939: -12,-109 + 6940: -12,-108 + 6941: -12,-107 + 6942: -12,-106 + 6943: -13,-105 + 6944: -13,-104 + 6945: -13,-103 + 6946: -13,-102 + 6947: -13,-101 + 6948: -14,-100 + 6949: -14,-99 + 6950: -14,-98 + 6951: -14,-97 + 6952: -14,-96 + 6953: -15,-95 + 6954: -15,-94 + 6955: -15,-93 + 6956: -16,-92 + 6957: -16,-91 + 6958: -16,-90 + 6959: -16,-89 + 6960: -17,-88 + 6961: -17,-87 + 6962: -17,-86 + 6963: -17,-84 + 6964: -17,-83 + 6965: -17,-82 + 6966: -17,-80 + 7070: -128,-3 + 7071: -127,-4 + 7072: -126,-4 + 7073: -125,-4 + 7074: -124,-5 + 7075: -123,-5 + 7076: -122,-5 + 7077: -121,-5 + 7078: -120,-5 + 7079: -119,-5 + 7080: -118,-5 + 7081: -117,-5 + 7082: -116,-4 + 7083: -115,-4 + 7084: -114,-3 + 7085: -113,-3 + 7086: -112,-3 + 7087: -111,-2 - node: color: '#00000054' id: WarnFull decals: - 17707: 100,-35 - 17708: 101,-35 - 17709: 100,-34 - 17710: 100,-33 - 17711: 99,-33 - 17712: 99,-32 - 17713: 105,-27 - 17714: 106,-27 - 17715: 106,-28 - 17716: 107,-28 - 17717: 108,-28 - 17718: 110,-43 - 17719: 110,-44 - 17720: 111,-44 + 17639: 100,-35 + 17640: 101,-35 + 17641: 100,-34 + 17642: 100,-33 + 17643: 99,-33 + 17644: 99,-32 + 17645: 105,-27 + 17646: 106,-27 + 17647: 106,-28 + 17648: 107,-28 + 17649: 108,-28 + 17650: 110,-43 + 17651: 110,-44 + 17652: 111,-44 - node: color: '#FFFFFF3F' id: WarnFullGreyscale decals: - 12098: 101,4 - 12099: 102,4 + 12094: 101,4 + 12095: 102,4 - node: color: '#0000007F' id: WarnLineE @@ -20424,48 +20437,48 @@ entities: 4557: -13,57 4558: -13,56 4559: -13,55 - 5872: -53,12 - 5873: -53,15 - 5915: 29,-38 - 5916: 29,-39 - 5917: 29,-40 - 5918: 31,-38 - 5919: 31,-39 - 5920: 31,-40 - 5921: 39,-38 - 5922: 39,-39 - 5923: 39,-40 - 5924: 37,-38 - 5925: 37,-39 - 5926: 37,-40 - 5979: -88,-27 - 5980: -88,-20 - 11311: 57,-63 - 11312: 57,-64 - 11313: 52,-63 - 11314: 52,-64 - 11315: 50,-63 - 11316: 50,-64 - 11317: 44,-63 - 11318: 44,-64 - 11319: 42,-63 - 11320: 42,-64 - 11321: 37,-63 - 11322: 37,-64 - 11914: 130,19 - 11915: 130,18 - 11916: 130,17 - 11917: 130,16 - 11918: 130,15 - 11919: 130,14 - 11920: 130,13 - 11921: 130,12 - 11922: 130,11 - 11923: 130,10 - 12072: 100,-1 - 17739: -25,44 - 17740: -25,43 - 17741: -25,42 + 5868: -53,12 + 5869: -53,15 + 5911: 29,-38 + 5912: 29,-39 + 5913: 29,-40 + 5914: 31,-38 + 5915: 31,-39 + 5916: 31,-40 + 5917: 39,-38 + 5918: 39,-39 + 5919: 39,-40 + 5920: 37,-38 + 5921: 37,-39 + 5922: 37,-40 + 5975: -88,-27 + 5976: -88,-20 + 11307: 57,-63 + 11308: 57,-64 + 11309: 52,-63 + 11310: 52,-64 + 11311: 50,-63 + 11312: 50,-64 + 11313: 44,-63 + 11314: 44,-64 + 11315: 42,-63 + 11316: 42,-64 + 11317: 37,-63 + 11318: 37,-64 + 11910: 130,19 + 11911: 130,18 + 11912: 130,17 + 11913: 130,16 + 11914: 130,15 + 11915: 130,14 + 11916: 130,13 + 11917: 130,12 + 11918: 130,11 + 11919: 130,10 + 12068: 100,-1 + 17671: -25,44 + 17672: -25,43 + 17673: -25,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -20506,7 +20519,7 @@ entities: color: '#FF00FFFF' id: WarnLineGreyscaleE decals: - 17735: -65,-67 + 17667: -65,-67 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE @@ -20588,10 +20601,10 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 12059: 125,13 - 12060: 124,13 - 12061: 126,13 - 12062: 127,13 + 12055: 125,13 + 12056: 124,13 + 12057: 126,13 + 12058: 127,13 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -20612,7 +20625,7 @@ entities: color: '#00FFFFFF' id: WarnLineGreyscaleW decals: - 17734: -70,-67 + 17666: -70,-67 - node: color: '#334E6DC8' id: WarnLineGreyscaleW @@ -20693,24 +20706,24 @@ entities: 1292: -100,-6 2530: 1,17 4564: -12,58 - 5874: -49,13 - 5875: -46,13 - 11904: 131,20 - 11905: 132,20 - 11906: 133,20 - 11907: 134,20 - 11908: 135,20 - 11909: 136,20 - 11910: 137,20 - 11911: 138,20 - 11912: 139,20 - 11913: 140,20 - 12074: 101,0 - 12938: 114,7 - 12946: 114,1 - 17736: -24,45 - 17737: -23,45 - 17738: -22,45 + 5870: -49,13 + 5871: -46,13 + 11900: 131,20 + 11901: 132,20 + 11902: 133,20 + 11903: 134,20 + 11904: 135,20 + 11905: 136,20 + 11906: 137,20 + 11907: 138,20 + 11908: 139,20 + 11909: 140,20 + 12070: 101,0 + 12934: 114,7 + 12942: 114,1 + 17668: -24,45 + 17669: -23,45 + 17670: -22,45 - node: zIndex: 1 color: '#FFFFFFFF' @@ -20719,8 +20732,8 @@ entities: 287: 39,-5 288: 38,-5 289: 37,-5 - 11218: -3,-74 - 11219: 1,-74 + 11214: -3,-74 + 11215: 1,-74 - node: zIndex: 10 color: '#0000003F' @@ -20742,8 +20755,8 @@ entities: 1789: -16,-38 1790: -16,-37 1791: -16,-36 - 17579: -62,-81 - 17580: -62,-80 + 17543: -62,-81 + 17544: -62,-80 - node: color: '#FFFFFFFF' id: WarnLineS @@ -20772,47 +20785,47 @@ entities: 5377: 27,-10 5378: 27,-9 5379: 27,-8 - 5927: 31,-38 - 5928: 31,-39 - 5929: 31,-40 - 5930: 29,-40 - 5931: 29,-39 - 5932: 29,-38 - 5933: 37,-40 - 5934: 37,-39 - 5935: 37,-38 - 5936: 39,-40 - 5937: 39,-39 - 5938: 39,-38 - 5971: -76,-20 - 5972: -76,-27 - 5981: -92,-20 - 5982: -92,-27 - 11260: -37,-18 - 11299: 37,-64 - 11300: 37,-63 - 11301: 42,-63 - 11302: 42,-64 - 11303: 44,-63 - 11304: 44,-64 - 11305: 50,-63 - 11306: 50,-64 - 11307: 52,-63 - 11308: 52,-64 - 11309: 57,-63 - 11310: 57,-64 - 11924: 141,10 - 11925: 141,11 - 11926: 141,12 - 11927: 141,13 - 11928: 141,14 - 11929: 141,15 - 11930: 141,17 - 11931: 141,16 - 11932: 141,18 - 11933: 141,19 - 12075: 102,-1 - 17749: -20,43 + 5923: 31,-38 + 5924: 31,-39 + 5925: 31,-40 + 5926: 29,-40 + 5927: 29,-39 + 5928: 29,-38 + 5929: 37,-40 + 5930: 37,-39 + 5931: 37,-38 + 5932: 39,-40 + 5933: 39,-39 + 5934: 39,-38 + 5967: -76,-20 + 5968: -76,-27 + 5977: -92,-20 + 5978: -92,-27 + 11256: -37,-18 + 11295: 37,-64 + 11296: 37,-63 + 11297: 42,-63 + 11298: 42,-64 + 11299: 44,-63 + 11300: 44,-64 + 11301: 50,-63 + 11302: 50,-64 + 11303: 52,-63 + 11304: 52,-64 + 11305: 57,-63 + 11306: 57,-64 + 11920: 141,10 + 11921: 141,11 + 11922: 141,12 + 11923: 141,13 + 11924: 141,14 + 11925: 141,15 + 11926: 141,17 + 11927: 141,16 + 11928: 141,18 + 11929: 141,19 + 12071: 102,-1 + 17681: -20,43 - node: zIndex: 1 color: '#FFFFFFFF' @@ -20855,10 +20868,10 @@ entities: color: '#DE3A3A96' id: WarnLineW decals: - 12063: 131,6 - 12064: 134,6 - 12065: 137,6 - 12066: 140,6 + 12059: 131,6 + 12060: 134,6 + 12061: 137,6 + 12062: 140,6 - node: color: '#FFFFFFFF' id: WarnLineW @@ -20870,22 +20883,22 @@ entities: 3912: -10,75 3913: -9,75 4560: -12,54 - 11894: 131,9 - 11895: 132,9 - 11896: 133,9 - 11897: 134,9 - 11898: 135,9 - 11899: 137,9 - 11900: 136,9 - 11901: 138,9 - 11902: 139,9 - 11903: 140,9 - 12073: 101,-2 - 12937: 114,-1 - 12945: 114,5 - 17742: -24,41 - 17743: -23,41 - 17744: -22,41 + 11890: 131,9 + 11891: 132,9 + 11892: 133,9 + 11893: 134,9 + 11894: 135,9 + 11895: 137,9 + 11896: 136,9 + 11897: 138,9 + 11898: 139,9 + 11899: 140,9 + 12069: 101,-2 + 12933: 114,-1 + 12941: 114,5 + 17674: -24,41 + 17675: -23,41 + 17676: -22,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -20908,7 +20921,7 @@ entities: 4: 2,1 5: -3,1 6: -8,1 - 15084: 129,41 + 15080: 129,41 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -20920,21 +20933,28 @@ entities: 56: -4,-3 340: 2,-8 1885: -38,-8 - 5585: 4,25 - 7118: -20,-86 - 11229: 33,-49 - 12100: 96,7 - 12605: 90,34 - 12615: 93,32 - 12794: 17,-38 - 15080: 140,34 - 15135: -138,29 - 15146: -135,28 - 15462: 127,-42 - 16561: -65,-95 - 17484: -44,32 - 17511: -65,15 - 17612: -61,-92 + 5581: 4,25 + 7114: -20,-86 + 11225: 33,-49 + 12096: 96,7 + 12601: 90,34 + 12611: 93,32 + 12790: 17,-38 + 15076: 140,34 + 15131: -138,29 + 15142: -135,28 + 15458: 127,-42 + 17454: -44,32 + - node: + color: '#612620FF' + id: WoodTrimThinCornerNeWhite + decals: + 17734: -65,15 + 17746: -56,17 + 17764: -65,-95 + 17818: -61,-92 + 17819: -72,-95 + 17820: -61,-95 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -20947,18 +20967,25 @@ entities: 348: 1,-2 349: 2,-1 1884: -41,-8 - 5584: 0,25 - 5638: 1,-1 - 7117: -22,-86 - 11244: 23,-49 - 12604: 88,34 - 12750: 88,7 - 15081: 139,34 - 15463: 125,-42 - 16560: -70,-95 - 17483: -47,32 - 17512: -67,15 - 17609: -74,-92 + 5580: 0,25 + 5634: 1,-1 + 7113: -22,-86 + 11240: 23,-49 + 12600: 88,34 + 12746: 88,7 + 15077: 139,34 + 15459: 125,-42 + 17453: -47,32 + - node: + color: '#612620FF' + id: WoodTrimThinCornerNwWhite + decals: + 17735: -67,15 + 17745: -58,17 + 17763: -70,-95 + 17815: -74,-92 + 17825: -74,-95 + 17826: -63,-95 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe @@ -20970,17 +20997,24 @@ entities: 53: -4,-7 346: 2,-2 4573: 37,20 - 5487: 8,8 - 5586: 4,21 - 7119: -20,-88 - 12101: 96,6 - 12606: 90,31 - 12614: 93,31 - 15083: 140,33 - 15464: 127,-43 - 17486: -44,29 - 17513: -65,14 - 17610: -61,-93 + 5582: 4,21 + 7115: -20,-88 + 12097: 96,6 + 12602: 90,31 + 12610: 93,31 + 15079: 140,33 + 15460: 127,-43 + 17456: -44,29 + 17731: 8,8 + - node: + color: '#612620FF' + id: WoodTrimThinCornerSeWhite + decals: + 17733: -65,14 + 17743: -56,15 + 17816: -61,-93 + 17821: -72,-98 + 17822: -61,-98 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -20994,17 +21028,24 @@ entities: 342: 1,-8 1886: -41,-12 4569: -7,-47 - 5587: 0,21 - 5639: 1,-9 - 7120: -22,-88 - 12607: 88,31 - 12751: 88,6 - 15082: 139,33 - 15136: -140,27 - 15465: 125,-43 - 17485: -47,29 - 17514: -67,14 - 17611: -74,-93 + 5583: 0,21 + 5635: 1,-9 + 7116: -22,-88 + 12603: 88,31 + 12747: 88,6 + 15078: 139,33 + 15132: -140,27 + 15461: 125,-43 + 17455: -47,29 + - node: + color: '#612620FF' + id: WoodTrimThinCornerSwWhite + decals: + 17736: -67,14 + 17744: -58,15 + 17817: -74,-93 + 17823: -74,-98 + 17824: -63,-98 - node: color: '#FFFFFFFF' id: WoodTrimThinEndE @@ -21012,9 +21053,9 @@ entities: 347: 5,-1 354: 3,-1 357: 3,-9 - 5497: -6,-23 - 5498: -6,-19 - 5526: -11,-17 + 5493: -6,-23 + 5494: -6,-19 + 5522: -11,-17 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN @@ -21023,19 +21064,19 @@ entities: 336: 1,-4 2539: 15,-14 2540: 17,-14 - 5524: -13,-15 - 6300: -115,-15 - 6301: -113,-15 - 6302: -111,-15 - 6303: -109,-15 - 6304: -111,-9 - 6305: -113,-9 - 6306: -115,-10 - 6307: -109,-10 - 7135: -100,11 - 7136: -98,11 - 12194: 13,-20 - 12195: 19,-20 + 5520: -13,-15 + 6296: -115,-15 + 6297: -113,-15 + 6298: -111,-15 + 6299: -109,-15 + 6300: -111,-9 + 6301: -113,-9 + 6302: -115,-10 + 6303: -109,-10 + 7131: -100,11 + 7132: -98,11 + 12190: 13,-20 + 12191: 19,-20 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS @@ -21044,58 +21085,62 @@ entities: 338: 1,-6 2541: 15,-19 2542: 17,-19 - 5496: -9,-24 - 6308: -115,-11 - 6309: -113,-11 - 6310: -111,-11 - 6311: -109,-11 - 6312: -109,-16 - 6313: -111,-17 - 6314: -113,-17 - 6315: -115,-16 - 7137: -100,8 - 7138: -98,8 - 12196: 13,-23 - 12197: 19,-23 - 12776: 17,-43 - 15141: -138,27 - 16584: -70,-99 - 16585: -65,-99 + 5492: -9,-24 + 6304: -115,-11 + 6305: -113,-11 + 6306: -111,-11 + 6307: -109,-11 + 6308: -109,-16 + 6309: -111,-17 + 6310: -113,-17 + 6311: -115,-16 + 7133: -100,8 + 7134: -98,8 + 12192: 13,-23 + 12193: 19,-23 + 12772: 17,-43 + 15137: -138,27 + - node: + color: '#612620FF' + id: WoodTrimThinEndSWhite + decals: + 17755: -70,-99 + 17756: -65,-99 - node: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: 353: 4,-1 358: 4,-9 - 5495: -12,-23 - 5499: -8,-19 - 5525: -15,-17 - 12777: 12,-38 - 15142: -140,29 + 5491: -12,-23 + 5495: -8,-19 + 5521: -15,-17 + 12773: 12,-38 + 15138: -140,29 - node: color: '#0000003F' id: WoodTrimThinInnerNe decals: - 12850: -93,-54 - 17733: 34,-56 - 17794: -12,7 + 12846: -93,-54 + 17665: 34,-56 + 17726: -12,7 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinInnerNe decals: - 6511: -103,-71 - 6744: -101,-63 + 6507: -103,-71 + 6740: -101,-63 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinInnerNe decals: - 6220: -75,-88 - 6225: -68,-85 - 6236: -60,-87 - 6241: -65,-80 - 6252: -75,-80 + 6216: -75,-88 + 6221: -68,-85 + 6232: -60,-87 + 6237: -65,-80 + 6248: -75,-80 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -21103,201 +21148,256 @@ entities: 344: 1,-8 345: 2,-9 3947: -56,-8 - 5527: -13,-17 - 5530: -7,-23 - 5589: 0,21 - 5745: 43,-1 - 5757: 43,-12 - 5791: 45,-7 - 6802: -124,-46 - 12628: 88,31 - 12632: 90,34 - 16972: -24,49 - 17503: -47,29 - 17509: -44,32 + 5523: -13,-17 + 5526: -7,-23 + 5585: 0,21 + 5741: 43,-1 + 5753: 43,-12 + 5787: 45,-7 + 6798: -124,-46 + 12624: 88,31 + 12628: 90,34 + 16942: -24,49 + 17473: -47,29 + 17479: -44,32 + - node: + zIndex: 1 + color: '#612620FF' + id: WoodTrimThinInnerNeWhite + decals: + 17740: -65,15 + 17752: -56,17 + 17782: -65,-95 + 17788: -61,-92 + 17841: -72,-95 + 17842: -61,-95 - node: color: '#0000003F' id: WoodTrimThinInnerNw decals: - 12851: -89,-54 - 17795: -6,7 + 12847: -89,-54 + 17727: -6,7 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinInnerNw decals: - 6512: -94,-71 - 6743: -95,-63 + 6508: -94,-71 + 6739: -95,-63 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinInnerNw decals: - 6221: -73,-88 - 6226: -66,-85 - 6237: -58,-87 - 6242: -63,-80 - 6253: -73,-80 + 6217: -73,-88 + 6222: -66,-85 + 6233: -58,-87 + 6238: -63,-80 + 6249: -73,-80 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: 350: 2,-2 3946: -45,-8 - 5528: -13,-17 - 5529: -7,-23 - 5588: 4,21 - 6803: -118,-46 - 12631: 90,31 - 12633: 88,34 - 17504: -44,29 - 17510: -47,32 + 5524: -13,-17 + 5525: -7,-23 + 5584: 4,21 + 6799: -118,-46 + 12627: 90,31 + 12629: 88,34 + 17474: -44,29 + 17480: -47,32 + - node: + zIndex: 1 + color: '#612620FF' + id: WoodTrimThinInnerNwWhite + decals: + 17739: -67,15 + 17751: -58,17 + 17781: -70,-95 + 17789: -74,-92 + 17839: -74,-95 + 17840: -63,-95 - node: color: '#0000003F' id: WoodTrimThinInnerSe decals: - 17731: 34,-49 + 17663: 34,-49 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinInnerSe decals: - 6513: -103,-64 - 6742: -101,-60 - 11202: -9,-62 + 6509: -103,-64 + 6738: -101,-60 + 11198: -9,-62 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinInnerSe decals: - 6222: -75,-86 - 6223: -68,-83 - 6238: -60,-85 - 6239: -65,-78 - 6254: -75,-78 + 6218: -75,-86 + 6219: -68,-83 + 6234: -60,-85 + 6235: -65,-78 + 6250: -75,-78 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: 351: 1,-2 352: 2,-1 - 5502: -7,-19 - 5532: -9,-23 - 5591: 0,25 - 5748: 43,2 - 5758: 43,-9 - 5792: 45,-3 - 6804: -124,-41 - 11546: -56,-4 - 12630: 88,34 - 12634: 90,31 - 12775: 37,20 - 15320: -69,-18 - 16583: -70,-95 - 17505: -47,32 - 17507: -44,29 - 17762: 17,-26 + 5498: -7,-19 + 5528: -9,-23 + 5587: 0,25 + 5744: 43,2 + 5754: 43,-9 + 5788: 45,-3 + 6800: -124,-41 + 11542: -56,-4 + 12626: 88,34 + 12630: 90,31 + 12771: 37,20 + 15316: -69,-18 + 17475: -47,32 + 17477: -44,29 + 17694: 17,-26 + 17732: 8,8 + - node: + color: '#612620FF' + id: WoodTrimThinInnerSeWhite + decals: + 17779: -70,-95 + - node: + zIndex: 1 + color: '#612620FF' + id: WoodTrimThinInnerSeWhite + decals: + 17741: -65,14 + 17753: -56,15 + 17785: -70,-99 + 17786: -65,-99 + 17787: -61,-93 + 17843: -72,-98 + 17844: -61,-98 - node: color: '#0000003F' id: WoodTrimThinInnerSw decals: - 11874: 87,14 - 12849: -89,-49 - 17732: 39,-49 + 11870: 87,14 + 12845: -89,-49 + 17664: 39,-49 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinInnerSw decals: - 6510: -94,-64 - 6741: -95,-60 - 11214: 13,-62 + 6506: -94,-64 + 6737: -95,-60 + 11210: 13,-62 - node: angle: 4.71238898038469 rad color: '#0000003F' id: WoodTrimThinInnerSw decals: - 11873: 87,16 + 11869: 87,16 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinInnerSw decals: - 6219: -73,-86 - 6224: -66,-83 - 6235: -58,-85 - 6240: -63,-78 - 6251: -73,-78 + 6215: -73,-86 + 6220: -66,-83 + 6231: -58,-85 + 6236: -63,-78 + 6247: -73,-78 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 343: 2,-8 - 5501: -7,-19 - 5531: -9,-23 - 5590: 4,25 - 6801: -118,-41 - 11545: -45,-4 - 12629: 90,34 - 12635: 88,31 - 12795: 17,-38 - 12814: -7,-47 - 15145: -138,29 - 15319: -65,-18 - 16582: -65,-95 - 17506: -44,32 - 17508: -47,29 + 5497: -7,-19 + 5527: -9,-23 + 5586: 4,25 + 6797: -118,-41 + 11541: -45,-4 + 12625: 90,34 + 12631: 88,31 + 12791: 17,-38 + 12810: -7,-47 + 15141: -138,29 + 15315: -65,-18 + 17476: -44,32 + 17478: -47,29 + - node: + color: '#612620FF' + id: WoodTrimThinInnerSwWhite + decals: + 17780: -65,-95 + - node: + zIndex: 1 + color: '#612620FF' + id: WoodTrimThinInnerSwWhite + decals: + 17742: -67,14 + 17754: -58,15 + 17783: -70,-99 + 17784: -65,-99 + 17790: -74,-93 + 17845: -74,-98 + 17846: -63,-98 - node: color: '#0000003F' id: WoodTrimThinLineE decals: - 12838: -93,-53 - 12839: -93,-52 - 12840: -93,-51 - 12841: -93,-50 - 17725: 34,-50 - 17726: 34,-51 - 17727: 34,-52 - 17728: 34,-53 - 17729: 34,-54 - 17730: 34,-55 - 17784: -12,8 - 17785: -12,9 - 17786: -12,10 - 17787: -12,11 - 17788: -12,12 + 12834: -93,-53 + 12835: -93,-52 + 12836: -93,-51 + 12837: -93,-50 + 17657: 34,-50 + 17658: 34,-51 + 17659: 34,-52 + 17660: 34,-53 + 17661: 34,-54 + 17662: 34,-55 + 17716: -12,8 + 17717: -12,9 + 17718: -12,10 + 17719: -12,11 + 17720: -12,12 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinLineE decals: - 6498: -103,-70 - 6499: -103,-69 - 6500: -103,-68 - 6501: -103,-67 - 6502: -103,-66 - 6503: -103,-65 - 6732: -101,-62 - 6733: -101,-61 - 11193: -9,-63 - 11194: -9,-64 - 11195: -9,-65 - 11196: -9,-66 - 11197: -9,-67 - 11198: -9,-68 - 11199: -9,-69 - 11200: -9,-70 - 11201: -9,-71 + 6494: -103,-70 + 6495: -103,-69 + 6496: -103,-68 + 6497: -103,-67 + 6498: -103,-66 + 6499: -103,-65 + 6728: -101,-62 + 6729: -101,-61 + 11189: -9,-63 + 11190: -9,-64 + 11191: -9,-65 + 11192: -9,-66 + 11193: -9,-67 + 11194: -9,-68 + 11195: -9,-69 + 11196: -9,-70 + 11197: -9,-71 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinLineE decals: - 6215: -75,-87 - 6228: -68,-84 - 6234: -60,-86 - 6245: -65,-79 - 6248: -75,-79 + 6211: -75,-87 + 6224: -68,-84 + 6230: -60,-86 + 6241: -65,-79 + 6244: -75,-79 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -21325,132 +21425,141 @@ entities: 3942: -56,-5 4576: 37,21 4577: 37,22 - 5484: 8,10 - 5485: 8,9 - 5503: -7,-20 - 5504: -7,-21 - 5505: -7,-22 - 5520: -13,-16 - 5592: 0,22 - 5593: 0,23 - 5594: 0,24 - 5595: 4,22 - 5596: 4,23 - 5597: 4,24 - 5743: 43,1 - 5744: 43,0 - 5755: 43,-10 - 5756: 43,-11 - 5784: 45,-6 - 5785: 45,-5 - 5786: 45,-4 - 6316: -113,-16 - 6317: -111,-16 - 6318: -111,-10 - 6319: -113,-10 - 6793: -124,-42 - 6794: -124,-43 - 6795: -124,-44 - 6796: -124,-45 - 7124: -20,-87 - 7139: -100,9 - 7140: -100,10 - 7141: -98,10 - 7142: -98,9 - 11230: 33,-50 - 11231: 33,-51 - 11258: 33,-52 - 11563: -26,-8 - 11564: -26,-7 - 12198: 13,-22 - 12199: 13,-21 - 12200: 19,-22 - 12201: 19,-21 - 12612: 90,32 - 12613: 90,33 - 12624: 88,32 - 12625: 88,33 - 12773: 37,19 - 12774: 37,18 - 12790: 17,-42 - 12791: 17,-41 - 12792: 17,-40 - 12793: 17,-39 - 12796: 14,-35 - 12797: 14,-36 - 15110: -137,1 - 15111: -137,2 - 15112: -137,3 - 15113: -137,4 - 15114: -137,5 - 15115: -137,6 - 15116: -137,7 - 15117: -137,8 - 15118: -137,9 - 15119: -137,10 - 15120: -137,10 - 15121: -137,11 - 15122: -137,12 - 15137: -138,28 - 15312: -69,-20 - 15313: -69,-19 - 16566: -70,-96 - 16567: -70,-97 - 16568: -70,-98 - 16569: -65,-98 - 16570: -65,-97 - 16571: -65,-96 - 16970: -24,50 - 16971: -24,51 - 17487: -44,30 - 17488: -44,31 - 17499: -47,31 - 17500: -47,30 - 17757: 17,-29 - 17758: 17,-28 - 17759: 17,-27 + 5499: -7,-20 + 5500: -7,-21 + 5501: -7,-22 + 5516: -13,-16 + 5588: 0,22 + 5589: 0,23 + 5590: 0,24 + 5591: 4,22 + 5592: 4,23 + 5593: 4,24 + 5739: 43,1 + 5740: 43,0 + 5751: 43,-10 + 5752: 43,-11 + 5780: 45,-6 + 5781: 45,-5 + 5782: 45,-4 + 6312: -113,-16 + 6313: -111,-16 + 6314: -111,-10 + 6315: -113,-10 + 6789: -124,-42 + 6790: -124,-43 + 6791: -124,-44 + 6792: -124,-45 + 7120: -20,-87 + 7135: -100,9 + 7136: -100,10 + 7137: -98,10 + 7138: -98,9 + 11226: 33,-50 + 11227: 33,-51 + 11254: 33,-52 + 11559: -26,-8 + 11560: -26,-7 + 12194: 13,-22 + 12195: 13,-21 + 12196: 19,-22 + 12197: 19,-21 + 12608: 90,32 + 12609: 90,33 + 12620: 88,32 + 12621: 88,33 + 12769: 37,19 + 12770: 37,18 + 12786: 17,-42 + 12787: 17,-41 + 12788: 17,-40 + 12789: 17,-39 + 12792: 14,-35 + 12793: 14,-36 + 15106: -137,1 + 15107: -137,2 + 15108: -137,3 + 15109: -137,4 + 15110: -137,5 + 15111: -137,6 + 15112: -137,7 + 15113: -137,8 + 15114: -137,9 + 15115: -137,10 + 15116: -137,10 + 15117: -137,11 + 15118: -137,12 + 15133: -138,28 + 15308: -69,-20 + 15309: -69,-19 + 16940: -24,50 + 16941: -24,51 + 17457: -44,30 + 17458: -44,31 + 17469: -47,31 + 17470: -47,30 + 17689: 17,-29 + 17690: 17,-28 + 17691: 17,-27 + 17728: 8,9 + 17729: 8,10 + - node: + color: '#612620FF' + id: WoodTrimThinLineEWhite + decals: + 17749: -56,16 + 17765: -70,-98 + 17766: -70,-97 + 17767: -70,-96 + 17768: -65,-98 + 17769: -65,-97 + 17770: -65,-96 + 17831: -72,-97 + 17832: -72,-96 + 17833: -61,-97 + 17834: -61,-96 - node: color: '#0000003F' id: WoodTrimThinLineN decals: - 6483: -102,-71 - 6484: -101,-71 - 6485: -100,-71 - 6486: -99,-71 - 6487: -98,-71 - 6488: -97,-71 - 6489: -96,-71 - 6490: -95,-71 - 12835: -92,-54 - 12836: -91,-54 - 12837: -90,-54 - 15079: 84,12 - 15085: 129,40 - 17779: -11,7 - 17780: -10,7 - 17781: -9,7 - 17782: -8,7 - 17783: -7,7 + 6479: -102,-71 + 6480: -101,-71 + 6481: -100,-71 + 6482: -99,-71 + 6483: -98,-71 + 6484: -97,-71 + 6485: -96,-71 + 6486: -95,-71 + 12831: -92,-54 + 12832: -91,-54 + 12833: -90,-54 + 15075: 84,12 + 15081: 129,40 + 17711: -11,7 + 17712: -10,7 + 17713: -9,7 + 17714: -8,7 + 17715: -7,7 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinLineN decals: - 6727: -100,-63 - 6728: -99,-63 - 6729: -98,-63 - 6730: -97,-63 - 6731: -96,-63 + 6723: -100,-63 + 6724: -99,-63 + 6725: -98,-63 + 6726: -97,-63 + 6727: -96,-63 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinLineN decals: - 6216: -74,-88 - 6227: -67,-85 - 6233: -59,-87 - 6243: -64,-80 - 6249: -74,-80 + 6212: -74,-88 + 6223: -67,-85 + 6229: -59,-87 + 6239: -64,-80 + 6245: -74,-80 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -21468,335 +21577,340 @@ entities: 3937: -48,-8 3938: -47,-8 3939: -46,-8 - 5500: -7,-19 - 5509: -11,-23 - 5510: -10,-23 - 5511: -9,-23 - 5512: -8,-23 - 5522: -14,-17 - 5523: -12,-17 - 5598: 1,25 - 5599: 2,25 - 5600: 3,25 - 5601: 1,21 - 5602: 2,21 - 5603: 3,21 - 5634: -7,-1 - 5635: -2,-1 - 5636: -1,-1 - 5637: 0,-1 - 5670: -11,1 - 5671: -10,1 - 5672: -9,1 - 5673: -7,1 - 5674: -6,1 - 5675: -5,1 - 5676: -4,1 - 5677: -2,1 - 5678: -1,1 - 5679: 0,1 - 5680: 1,1 - 5681: 3,1 - 5682: 4,1 - 5683: 5,1 - 5684: 5,-11 - 5685: 4,-11 - 5686: 3,-11 - 5687: 1,-11 - 5688: 0,-11 - 5689: -1,-11 - 5690: -2,-11 - 5691: -4,-11 - 5692: -5,-11 - 5693: -6,-11 - 5694: -7,-11 - 5695: -9,-11 - 5696: -10,-11 - 5697: -11,-11 - 5726: -84,-1 - 5727: -83,-1 - 5728: -82,-1 - 5729: -80,-1 - 5730: -81,-1 - 5759: 44,-12 - 5760: 45,-12 - 5789: 46,-7 - 5790: 47,-7 - 6783: -123,-46 - 6784: -122,-46 - 6785: -121,-46 - 6786: -120,-46 - 6787: -119,-46 - 7121: -21,-86 - 11220: 24,-49 - 11221: 25,-49 - 11222: 26,-49 - 11223: 27,-49 - 11224: 28,-49 - 11225: 29,-49 - 11226: 30,-49 - 11227: 31,-49 - 11228: 32,-49 - 11232: 33,-53 - 11233: 32,-53 - 11234: 31,-53 - 11235: 29,-53 - 11236: 30,-53 - 11237: 28,-53 - 11238: 27,-53 - 11239: 26,-53 - 11240: 25,-53 - 11241: 24,-53 - 11242: 23,-53 - 11264: -38,-18 - 11562: -25,-9 - 12102: 90,7 - 12103: 91,7 - 12104: 92,7 - 12105: 93,7 - 12106: 94,7 - 12107: 95,7 - 12608: 89,34 - 12616: 91,32 - 12617: 92,32 - 12622: 89,31 - 12752: 89,7 - 12778: 13,-38 - 12779: 14,-38 - 12780: 15,-38 - 12781: 16,-38 - 15087: -137,1 - 15088: -138,3 - 15089: -137,3 - 15090: -138,4 - 15091: -137,4 - 15092: -138,5 - 15093: -137,5 - 15094: -138,6 - 15095: -137,6 - 15096: -138,7 - 15097: -137,7 - 15098: -138,8 - 15099: -137,8 - 15100: -138,9 - 15101: -137,9 - 15102: -138,10 - 15103: -137,10 - 15104: -138,11 - 15105: -137,11 - 15106: -138,1 - 15107: -137,2 - 15108: -138,2 - 15109: -137,3 - 15138: -139,29 - 15461: 126,-42 - 16562: -69,-95 - 16563: -68,-95 - 16564: -67,-95 - 16565: -66,-95 - 16967: -23,49 - 16968: -22,49 - 16969: -21,49 - 17489: -45,32 - 17490: -46,32 - 17501: -46,29 - 17502: -45,29 - 17515: -66,15 - 17595: -73,-92 - 17596: -72,-92 - 17597: -71,-92 - 17598: -70,-92 - 17599: -69,-92 - 17600: -68,-92 - 17601: -68,-92 - 17602: -66,-92 - 17603: -66,-92 - 17604: -65,-92 - 17605: -64,-92 - 17606: -63,-92 - 17607: -63,-92 - 17608: -62,-92 + 5496: -7,-19 + 5505: -11,-23 + 5506: -10,-23 + 5507: -9,-23 + 5508: -8,-23 + 5518: -14,-17 + 5519: -12,-17 + 5594: 1,25 + 5595: 2,25 + 5596: 3,25 + 5597: 1,21 + 5598: 2,21 + 5599: 3,21 + 5630: -7,-1 + 5631: -2,-1 + 5632: -1,-1 + 5633: 0,-1 + 5666: -11,1 + 5667: -10,1 + 5668: -9,1 + 5669: -7,1 + 5670: -6,1 + 5671: -5,1 + 5672: -4,1 + 5673: -2,1 + 5674: -1,1 + 5675: 0,1 + 5676: 1,1 + 5677: 3,1 + 5678: 4,1 + 5679: 5,1 + 5680: 5,-11 + 5681: 4,-11 + 5682: 3,-11 + 5683: 1,-11 + 5684: 0,-11 + 5685: -1,-11 + 5686: -2,-11 + 5687: -4,-11 + 5688: -5,-11 + 5689: -6,-11 + 5690: -7,-11 + 5691: -9,-11 + 5692: -10,-11 + 5693: -11,-11 + 5722: -84,-1 + 5723: -83,-1 + 5724: -82,-1 + 5725: -80,-1 + 5726: -81,-1 + 5755: 44,-12 + 5756: 45,-12 + 5785: 46,-7 + 5786: 47,-7 + 6779: -123,-46 + 6780: -122,-46 + 6781: -121,-46 + 6782: -120,-46 + 6783: -119,-46 + 7117: -21,-86 + 11216: 24,-49 + 11217: 25,-49 + 11218: 26,-49 + 11219: 27,-49 + 11220: 28,-49 + 11221: 29,-49 + 11222: 30,-49 + 11223: 31,-49 + 11224: 32,-49 + 11228: 33,-53 + 11229: 32,-53 + 11230: 31,-53 + 11231: 29,-53 + 11232: 30,-53 + 11233: 28,-53 + 11234: 27,-53 + 11235: 26,-53 + 11236: 25,-53 + 11237: 24,-53 + 11238: 23,-53 + 11260: -38,-18 + 11558: -25,-9 + 12098: 90,7 + 12099: 91,7 + 12100: 92,7 + 12101: 93,7 + 12102: 94,7 + 12103: 95,7 + 12604: 89,34 + 12612: 91,32 + 12613: 92,32 + 12618: 89,31 + 12748: 89,7 + 12774: 13,-38 + 12775: 14,-38 + 12776: 15,-38 + 12777: 16,-38 + 15083: -137,1 + 15084: -138,3 + 15085: -137,3 + 15086: -138,4 + 15087: -137,4 + 15088: -138,5 + 15089: -137,5 + 15090: -138,6 + 15091: -137,6 + 15092: -138,7 + 15093: -137,7 + 15094: -138,8 + 15095: -137,8 + 15096: -138,9 + 15097: -137,9 + 15098: -138,10 + 15099: -137,10 + 15100: -138,11 + 15101: -137,11 + 15102: -138,1 + 15103: -137,2 + 15104: -138,2 + 15105: -137,3 + 15134: -139,29 + 15457: 126,-42 + 16937: -23,49 + 16938: -22,49 + 16939: -21,49 + 17459: -45,32 + 17460: -46,32 + 17471: -46,29 + 17472: -45,29 + - node: + color: '#612620FF' + id: WoodTrimThinLineNWhite + decals: + 17738: -66,15 + 17750: -57,17 + 17771: -69,-95 + 17772: -68,-95 + 17773: -67,-95 + 17774: -66,-95 + 17803: -73,-92 + 17804: -72,-92 + 17805: -71,-92 + 17806: -70,-92 + 17807: -69,-92 + 17808: -68,-92 + 17809: -67,-92 + 17810: -65,-92 + 17811: -66,-92 + 17812: -64,-92 + 17813: -63,-92 + 17814: -62,-92 + 17835: -73,-95 + 17836: -62,-95 - node: color: '#0000003F' id: WoodTrimThinLineS decals: - 11760: 42,14 - 11761: 43,14 - 11762: 44,14 - 11763: 45,14 - 11764: 46,14 - 11765: 47,14 - 11766: 48,14 - 11767: 49,14 - 11768: 50,14 - 11769: 51,14 - 11770: 52,14 - 11771: 53,14 - 11772: 54,14 - 11773: 55,14 - 11774: 57,14 - 11775: 56,14 - 11776: 58,14 - 11777: 59,14 - 11778: 60,14 - 11779: 61,14 - 11780: 62,14 - 11781: 63,14 - 11782: 64,14 - 11783: 65,14 - 11784: 66,14 - 11785: 67,14 - 11786: 68,14 - 11787: 69,14 - 11788: 70,14 - 11789: 71,14 - 11790: 72,14 - 11791: 74,14 - 11792: 73,14 - 11793: 75,14 - 11794: 76,14 - 11795: 77,14 - 11796: 78,14 - 11797: 79,14 - 11798: 80,14 - 11799: 81,14 - 11800: 82,14 - 11801: 83,14 - 11802: 84,14 - 11857: 53,18 - 11858: 52,18 - 11859: 50,18 - 11860: 51,18 - 11861: 49,18 - 11862: 48,18 - 11863: 47,18 - 11864: 46,18 - 11865: 45,18 - 11866: 44,18 - 11867: 43,18 - 11868: 42,18 - 11869: 85,14 - 11870: 86,14 - 11883: 81,18 - 11884: 82,18 - 11885: 83,18 - 11886: 84,18 - 11887: 85,18 - 11888: 86,18 - 12842: -92,-49 - 12843: -91,-49 - 12844: -90,-49 - 17721: 36,-49 - 17722: 37,-49 - 17723: 38,-49 - 17724: 35,-49 + 11756: 42,14 + 11757: 43,14 + 11758: 44,14 + 11759: 45,14 + 11760: 46,14 + 11761: 47,14 + 11762: 48,14 + 11763: 49,14 + 11764: 50,14 + 11765: 51,14 + 11766: 52,14 + 11767: 53,14 + 11768: 54,14 + 11769: 55,14 + 11770: 57,14 + 11771: 56,14 + 11772: 58,14 + 11773: 59,14 + 11774: 60,14 + 11775: 61,14 + 11776: 62,14 + 11777: 63,14 + 11778: 64,14 + 11779: 65,14 + 11780: 66,14 + 11781: 67,14 + 11782: 68,14 + 11783: 69,14 + 11784: 70,14 + 11785: 71,14 + 11786: 72,14 + 11787: 74,14 + 11788: 73,14 + 11789: 75,14 + 11790: 76,14 + 11791: 77,14 + 11792: 78,14 + 11793: 79,14 + 11794: 80,14 + 11795: 81,14 + 11796: 82,14 + 11797: 83,14 + 11798: 84,14 + 11853: 53,18 + 11854: 52,18 + 11855: 50,18 + 11856: 51,18 + 11857: 49,18 + 11858: 48,18 + 11859: 47,18 + 11860: 46,18 + 11861: 45,18 + 11862: 44,18 + 11863: 43,18 + 11864: 42,18 + 11865: 85,14 + 11866: 86,14 + 11879: 81,18 + 11880: 82,18 + 11881: 83,18 + 11882: 84,18 + 11883: 85,18 + 11884: 86,18 + 12838: -92,-49 + 12839: -91,-49 + 12840: -90,-49 + 17653: 36,-49 + 17654: 37,-49 + 17655: 38,-49 + 17656: 35,-49 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinLineS decals: - 6491: -102,-64 - 6492: -101,-64 - 6493: -99,-64 - 6494: -98,-64 - 6495: -97,-64 - 6496: -96,-64 - 6497: -95,-64 - 6734: -100,-60 - 6735: -99,-60 - 6736: -98,-60 - 6737: -97,-60 - 6738: -96,-60 - 11186: -2,-62 - 11187: -3,-62 - 11188: -4,-62 - 11189: -5,-62 - 11190: -6,-62 - 11191: -7,-62 - 11192: -8,-62 - 11203: 6,-62 - 11204: 7,-62 - 11205: 8,-62 - 11206: 9,-62 - 11207: 10,-62 - 11208: 11,-62 - 11209: 12,-62 + 6487: -102,-64 + 6488: -101,-64 + 6489: -99,-64 + 6490: -98,-64 + 6491: -97,-64 + 6492: -96,-64 + 6493: -95,-64 + 6730: -100,-60 + 6731: -99,-60 + 6732: -98,-60 + 6733: -97,-60 + 6734: -96,-60 + 11182: -2,-62 + 11183: -3,-62 + 11184: -4,-62 + 11185: -5,-62 + 11186: -6,-62 + 11187: -7,-62 + 11188: -8,-62 + 11199: 6,-62 + 11200: 7,-62 + 11201: 8,-62 + 11202: 9,-62 + 11203: 10,-62 + 11204: 11,-62 + 11205: 12,-62 - node: angle: 3.141592653589793 rad color: '#0000003F' id: WoodTrimThinLineS decals: - 11803: 84,16 - 11804: 83,16 - 11805: 82,16 - 11806: 81,16 - 11807: 80,16 - 11808: 79,16 - 11809: 78,16 - 11810: 77,16 - 11811: 76,16 - 11812: 75,16 - 11813: 74,16 - 11814: 73,16 - 11815: 72,16 - 11816: 70,16 - 11817: 71,16 - 11818: 69,16 - 11819: 68,16 - 11820: 67,16 - 11821: 66,16 - 11822: 64,16 - 11823: 65,16 - 11824: 63,16 - 11825: 61,16 - 11826: 62,16 - 11827: 60,16 - 11828: 59,16 - 11829: 58,16 - 11830: 57,16 - 11831: 56,16 - 11832: 55,16 - 11833: 54,16 - 11834: 53,16 - 11835: 52,16 - 11836: 50,16 - 11837: 49,16 - 11838: 48,16 - 11839: 47,16 - 11840: 46,16 - 11841: 45,16 - 11842: 43,16 - 11843: 42,16 - 11844: 44,16 - 11845: 51,16 - 11846: 43,12 - 11847: 44,12 - 11848: 45,12 - 11849: 46,12 - 11850: 47,12 - 11851: 48,12 - 11852: 50,12 - 11853: 49,12 - 11854: 51,12 - 11855: 52,12 - 11856: 53,12 - 11871: 85,16 - 11872: 86,16 - 11889: 81,12 - 11890: 82,12 - 11891: 83,12 - 11892: 85,12 - 11893: 86,12 + 11799: 84,16 + 11800: 83,16 + 11801: 82,16 + 11802: 81,16 + 11803: 80,16 + 11804: 79,16 + 11805: 78,16 + 11806: 77,16 + 11807: 76,16 + 11808: 75,16 + 11809: 74,16 + 11810: 73,16 + 11811: 72,16 + 11812: 70,16 + 11813: 71,16 + 11814: 69,16 + 11815: 68,16 + 11816: 67,16 + 11817: 66,16 + 11818: 64,16 + 11819: 65,16 + 11820: 63,16 + 11821: 61,16 + 11822: 62,16 + 11823: 60,16 + 11824: 59,16 + 11825: 58,16 + 11826: 57,16 + 11827: 56,16 + 11828: 55,16 + 11829: 54,16 + 11830: 53,16 + 11831: 52,16 + 11832: 50,16 + 11833: 49,16 + 11834: 48,16 + 11835: 47,16 + 11836: 46,16 + 11837: 45,16 + 11838: 43,16 + 11839: 42,16 + 11840: 44,16 + 11841: 51,16 + 11842: 43,12 + 11843: 44,12 + 11844: 45,12 + 11845: 46,12 + 11846: 47,12 + 11847: 48,12 + 11848: 50,12 + 11849: 49,12 + 11850: 51,12 + 11851: 52,12 + 11852: 53,12 + 11867: 85,16 + 11868: 86,16 + 11885: 81,12 + 11886: 82,12 + 11887: 83,12 + 11888: 85,12 + 11889: 86,12 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinLineS decals: - 6217: -74,-86 - 6229: -67,-83 - 6232: -59,-85 - 6244: -64,-78 - 6250: -74,-78 + 6213: -74,-86 + 6225: -67,-83 + 6228: -59,-85 + 6240: -64,-78 + 6246: -74,-78 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -21809,180 +21923,185 @@ entities: 4579: -23,49 4580: -22,49 4581: -21,49 - 5486: 7,8 - 5513: -11,-23 - 5514: -10,-23 - 5515: -8,-23 - 5516: -7,-23 - 5517: -14,-17 - 5518: -13,-17 - 5519: -12,-17 - 5610: 1,25 - 5611: 2,25 - 5612: 3,25 - 5613: 1,21 - 5614: 2,21 - 5615: 3,21 - 5640: -2,-9 - 5641: -1,-9 - 5642: 0,-9 - 5643: -7,-9 - 5698: -11,-11 - 5699: -10,-11 - 5700: -9,-11 - 5701: -7,-11 - 5702: -6,-11 - 5703: -5,-11 - 5704: -4,-11 - 5705: -2,-11 - 5706: -1,-11 - 5707: 0,-11 - 5708: 1,-11 - 5709: 3,-11 - 5710: 4,-11 - 5711: 5,-11 - 5712: 5,1 - 5713: 4,1 - 5714: 3,1 - 5715: 1,1 - 5716: 0,1 - 5717: -1,1 - 5718: -2,1 - 5719: -4,1 - 5720: -5,1 - 5721: -6,1 - 5722: -7,1 - 5723: -9,1 - 5724: -10,1 - 5725: -11,1 - 5731: -84,-1 - 5732: -83,-1 - 5733: -82,-1 - 5734: -81,-1 - 5735: -80,-1 - 5746: 44,2 - 5747: 45,2 - 5787: 46,-3 - 5788: 47,-3 - 6788: -123,-41 - 6789: -122,-41 - 6790: -121,-41 - 6791: -120,-41 - 6792: -119,-41 - 7122: -21,-88 - 11245: 23,-52 - 11246: 24,-52 - 11247: 25,-52 - 11248: 26,-52 - 11249: 27,-52 - 11250: 28,-52 - 11251: 29,-52 - 11252: 30,-52 - 11253: 31,-52 - 11254: 32,-52 - 11255: 33,-52 - 11263: -38,-18 - 11535: -55,-4 - 11536: -54,-4 - 11537: -53,-4 - 11538: -52,-4 - 11539: -51,-4 - 11540: -50,-4 - 11541: -49,-4 - 11542: -48,-4 - 11543: -47,-4 - 11544: -46,-4 - 12108: 90,6 - 12109: 91,6 - 12110: 92,6 - 12111: 93,6 - 12112: 94,6 - 12113: 95,6 - 12609: 89,31 - 12618: 91,31 - 12619: 92,31 - 12623: 89,34 - 12753: 89,6 - 12782: 13,-38 - 12783: 14,-38 - 12784: 15,-38 - 12785: 16,-38 - 12812: -9,-47 - 12813: -8,-47 - 15139: -139,27 - 15143: -139,29 - 15314: -68,-18 - 15315: -67,-18 - 15316: -66,-18 - 15460: 126,-43 - 16572: -69,-95 - 16573: -68,-95 - 16574: -67,-95 - 16575: -66,-95 - 17491: -46,29 - 17492: -45,29 - 17497: -46,32 - 17498: -45,32 - 17516: -66,14 - 17581: -73,-93 - 17582: -72,-93 - 17583: -71,-93 - 17584: -70,-93 - 17585: -70,-93 - 17586: -69,-93 - 17587: -68,-93 - 17588: -67,-93 - 17589: -66,-93 - 17590: -65,-93 - 17591: -65,-93 - 17592: -64,-93 - 17593: -63,-93 - 17594: -62,-93 - 17760: 18,-26 - 17761: 19,-26 + 5509: -11,-23 + 5510: -10,-23 + 5511: -8,-23 + 5512: -7,-23 + 5513: -14,-17 + 5514: -13,-17 + 5515: -12,-17 + 5606: 1,25 + 5607: 2,25 + 5608: 3,25 + 5609: 1,21 + 5610: 2,21 + 5611: 3,21 + 5636: -2,-9 + 5637: -1,-9 + 5638: 0,-9 + 5639: -7,-9 + 5694: -11,-11 + 5695: -10,-11 + 5696: -9,-11 + 5697: -7,-11 + 5698: -6,-11 + 5699: -5,-11 + 5700: -4,-11 + 5701: -2,-11 + 5702: -1,-11 + 5703: 0,-11 + 5704: 1,-11 + 5705: 3,-11 + 5706: 4,-11 + 5707: 5,-11 + 5708: 5,1 + 5709: 4,1 + 5710: 3,1 + 5711: 1,1 + 5712: 0,1 + 5713: -1,1 + 5714: -2,1 + 5715: -4,1 + 5716: -5,1 + 5717: -6,1 + 5718: -7,1 + 5719: -9,1 + 5720: -10,1 + 5721: -11,1 + 5727: -84,-1 + 5728: -83,-1 + 5729: -82,-1 + 5730: -81,-1 + 5731: -80,-1 + 5742: 44,2 + 5743: 45,2 + 5783: 46,-3 + 5784: 47,-3 + 6784: -123,-41 + 6785: -122,-41 + 6786: -121,-41 + 6787: -120,-41 + 6788: -119,-41 + 7118: -21,-88 + 11241: 23,-52 + 11242: 24,-52 + 11243: 25,-52 + 11244: 26,-52 + 11245: 27,-52 + 11246: 28,-52 + 11247: 29,-52 + 11248: 30,-52 + 11249: 31,-52 + 11250: 32,-52 + 11251: 33,-52 + 11259: -38,-18 + 11531: -55,-4 + 11532: -54,-4 + 11533: -53,-4 + 11534: -52,-4 + 11535: -51,-4 + 11536: -50,-4 + 11537: -49,-4 + 11538: -48,-4 + 11539: -47,-4 + 11540: -46,-4 + 12104: 90,6 + 12105: 91,6 + 12106: 92,6 + 12107: 93,6 + 12108: 94,6 + 12109: 95,6 + 12605: 89,31 + 12614: 91,31 + 12615: 92,31 + 12619: 89,34 + 12749: 89,6 + 12778: 13,-38 + 12779: 14,-38 + 12780: 15,-38 + 12781: 16,-38 + 12808: -9,-47 + 12809: -8,-47 + 15135: -139,27 + 15139: -139,29 + 15310: -68,-18 + 15311: -67,-18 + 15312: -66,-18 + 15456: 126,-43 + 17461: -46,29 + 17462: -45,29 + 17467: -46,32 + 17468: -45,32 + 17692: 18,-26 + 17693: 19,-26 + 17730: 7,8 + - node: + color: '#612620FF' + id: WoodTrimThinLineSWhite + decals: + 17737: -66,14 + 17748: -57,15 + 17775: -69,-95 + 17776: -68,-95 + 17777: -67,-95 + 17778: -66,-95 + 17791: -73,-93 + 17792: -72,-93 + 17793: -71,-93 + 17794: -70,-93 + 17795: -69,-93 + 17796: -68,-93 + 17797: -67,-93 + 17798: -66,-93 + 17799: -65,-93 + 17800: -64,-93 + 17801: -63,-93 + 17802: -62,-93 + 17837: -73,-98 + 17838: -62,-98 - node: color: '#0000003F' id: WoodTrimThinLineW decals: - 12845: -89,-53 - 12846: -89,-52 - 12847: -89,-51 - 12848: -89,-50 - 17789: -6,8 - 17790: -6,9 - 17791: -6,10 - 17792: -6,11 - 17793: -6,12 + 12841: -89,-53 + 12842: -89,-52 + 12843: -89,-51 + 12844: -89,-50 + 17721: -6,8 + 17722: -6,9 + 17723: -6,10 + 17724: -6,11 + 17725: -6,12 - node: zIndex: 1 color: '#0000003F' id: WoodTrimThinLineW decals: - 6504: -94,-70 - 6505: -94,-69 - 6506: -94,-68 - 6507: -94,-67 - 6508: -94,-66 - 6509: -94,-65 - 6739: -95,-61 - 6740: -95,-62 - 11210: 13,-63 - 11211: 13,-64 - 11212: 13,-65 - 11213: 13,-66 - 11215: 13,-67 - 11216: 13,-68 - 11217: 13,-69 + 6500: -94,-70 + 6501: -94,-69 + 6502: -94,-68 + 6503: -94,-67 + 6504: -94,-66 + 6505: -94,-65 + 6735: -95,-61 + 6736: -95,-62 + 11206: 13,-63 + 11207: 13,-64 + 11208: 13,-65 + 11209: 13,-66 + 11211: 13,-67 + 11212: 13,-68 + 11213: 13,-69 - node: zIndex: 1 color: '#00000059' id: WoodTrimThinLineW decals: - 6218: -73,-87 - 6230: -66,-84 - 6231: -58,-86 - 6246: -63,-79 - 6247: -73,-79 + 6214: -73,-87 + 6226: -66,-84 + 6227: -58,-86 + 6242: -63,-79 + 6243: -73,-79 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -22012,72 +22131,66 @@ entities: 3945: -45,-5 4571: -7,-46 4572: -7,-45 - 5506: -7,-22 - 5507: -7,-21 - 5508: -7,-20 - 5521: -13,-16 - 5604: 0,22 - 5605: 0,23 - 5606: 0,24 - 5607: 4,22 - 5608: 4,23 - 5609: 4,24 - 6320: -113,-10 - 6321: -113,-16 - 6328: -111,-10 - 6329: -111,-16 - 6797: -118,-45 - 6798: -118,-44 - 6799: -118,-43 - 6800: -118,-42 - 7123: -22,-87 - 7143: -100,10 - 7144: -100,9 - 7145: -98,10 - 7146: -98,9 - 11243: 23,-50 - 11256: 23,-52 - 11257: 23,-51 - 12202: 13,-22 - 12203: 13,-21 - 12204: 19,-22 - 12205: 19,-21 - 12610: 88,32 - 12611: 88,33 - 12626: 90,32 - 12627: 90,33 - 12786: 17,-39 - 12787: 17,-40 - 12788: 17,-41 - 12789: 17,-42 - 12798: 16,-35 - 12799: 16,-36 - 15123: -138,12 - 15124: -138,11 - 15125: -138,10 - 15126: -138,9 - 15127: -138,8 - 15128: -138,7 - 15129: -138,6 - 15130: -138,5 - 15131: -138,4 - 15132: -138,3 - 15133: -138,2 - 15134: -138,1 - 15140: -140,28 - 15144: -138,28 - 15317: -65,-19 - 15318: -65,-20 - 16576: -70,-96 - 16577: -70,-97 - 16578: -70,-98 - 16579: -65,-98 - 16580: -65,-97 - 16581: -65,-96 - 17493: -47,30 - 17494: -47,31 - 17495: -44,31 - 17496: -44,30 + 5502: -7,-22 + 5503: -7,-21 + 5504: -7,-20 + 5517: -13,-16 + 5600: 0,22 + 5601: 0,23 + 5602: 0,24 + 5603: 4,22 + 5604: 4,23 + 5605: 4,24 + 6316: -113,-10 + 6317: -113,-16 + 6324: -111,-10 + 6325: -111,-16 + 6793: -118,-45 + 6794: -118,-44 + 6795: -118,-43 + 6796: -118,-42 + 7119: -22,-87 + 7139: -100,10 + 7140: -100,9 + 7141: -98,10 + 7142: -98,9 + 11239: 23,-50 + 11252: 23,-52 + 11253: 23,-51 + 12198: 13,-22 + 12199: 13,-21 + 12200: 19,-22 + 12201: 19,-21 + 12606: 88,32 + 12607: 88,33 + 12622: 90,32 + 12623: 90,33 + 12782: 17,-39 + 12783: 17,-40 + 12784: 17,-41 + 12785: 17,-42 + 12794: 16,-35 + 12795: 16,-36 + 15119: -138,12 + 15120: -138,11 + 15121: -138,10 + 15122: -138,9 + 15123: -138,8 + 15124: -138,7 + 15125: -138,6 + 15126: -138,5 + 15127: -138,4 + 15128: -138,3 + 15129: -138,2 + 15130: -138,1 + 15136: -140,28 + 15140: -138,28 + 15313: -65,-19 + 15314: -65,-20 + 17463: -47,30 + 17464: -47,31 + 17465: -44,31 + 17466: -44,30 - node: cleanable: True color: '#FFFFFFFF' @@ -22086,12 +22199,27 @@ entities: 4536: -64,-19 4537: -64,-18 4538: -64,-17 + - node: + color: '#612620FF' + id: WoodTrimThinLineWWhite + decals: + 17747: -58,16 + 17757: -70,-98 + 17758: -70,-97 + 17759: -70,-96 + 17760: -65,-98 + 17761: -65,-97 + 17762: -65,-96 + 17827: -74,-97 + 17828: -74,-96 + 17829: -63,-97 + 17830: -63,-96 - node: angle: 1.5707963267948966 rad color: '#FFFFFF7F' id: arrow decals: - 6745: -118,-13 + 6741: -118,-13 - node: cleanable: True zIndex: 20 @@ -22110,142 +22238,142 @@ entities: color: '#854218B2' id: dot decals: - 16778: 118.34907,24.778852 - 16779: 118.02202,25.10591 - 16780: 118.39366,25.626226 - 16781: 118.319336,25.908684 - 16782: 117.91796,25.73029 - 16783: 118.05175,24.957247 - 16784: 118.8099,24.838318 - 16785: 119.31533,25.358635 - 16786: 119.107216,25.819489 - 16787: 118.66124,26.161411 - 16788: 118.289604,25.432966 - 16789: 118.30447,25.061312 - 16790: 118.54232,24.972115 - 16791: 118.55718,24.48153 - 16792: 119.18154,24.67479 - 16793: 119.44912,25.195107 - 16794: 119.64237,25.596495 - 16795: 119.850494,25.120775 - 16796: 119.03288,24.79372 - 16797: 118.83963,24.763987 - 16798: 118.586914,24.897783 - 16799: 119.2856,25.953283 - 16800: 118.82476,26.04248 - 16801: 118.586914,26.131678 - 16802: 118.09635,25.626226 - 16803: 118.51259,25.328903 - 16804: 118.66124,25.566763 - 16805: 118.78017,25.477566 - 16806: 118.49772,25.447832 - 16807: 118.55718,25.462698 - 16808: 119.00315,25.195107 - 16809: 119.062614,25.314037 - 16810: 119.062614,25.120775 - 16811: 118.7207,25.135643 - 16812: 118.438255,25.209972 + 16748: 118.34907,24.778852 + 16749: 118.02202,25.10591 + 16750: 118.39366,25.626226 + 16751: 118.319336,25.908684 + 16752: 117.91796,25.73029 + 16753: 118.05175,24.957247 + 16754: 118.8099,24.838318 + 16755: 119.31533,25.358635 + 16756: 119.107216,25.819489 + 16757: 118.66124,26.161411 + 16758: 118.289604,25.432966 + 16759: 118.30447,25.061312 + 16760: 118.54232,24.972115 + 16761: 118.55718,24.48153 + 16762: 119.18154,24.67479 + 16763: 119.44912,25.195107 + 16764: 119.64237,25.596495 + 16765: 119.850494,25.120775 + 16766: 119.03288,24.79372 + 16767: 118.83963,24.763987 + 16768: 118.586914,24.897783 + 16769: 119.2856,25.953283 + 16770: 118.82476,26.04248 + 16771: 118.586914,26.131678 + 16772: 118.09635,25.626226 + 16773: 118.51259,25.328903 + 16774: 118.66124,25.566763 + 16775: 118.78017,25.477566 + 16776: 118.49772,25.447832 + 16777: 118.55718,25.462698 + 16778: 119.00315,25.195107 + 16779: 119.062614,25.314037 + 16780: 119.062614,25.120775 + 16781: 118.7207,25.135643 + 16782: 118.438255,25.209972 - node: cleanable: True color: '#920918B2' id: dot decals: - 16871: 114.72297,21.993938 - 16872: 115.00542,22.038538 - 16873: 114.812164,22.900778 - 16874: 115.302734,22.781849 - 16875: 114.72297,22.142601 - 16876: 115.302734,22.216932 - 16877: 115.19867,22.841312 - 16878: 115.287865,23.450829 - 16879: 115.287865,23.36163 - 16880: 115.139206,22.841312 - 16881: 114.90136,23.302166 - 16882: 115.16894,23.86708 - 16883: 115.2284,24.209003 - 16884: 114.90136,23.986012 - 16885: 115.02029,23.495426 - 16886: 115.25813,23.688686 - 16887: 115.55544,23.971146 - 16888: 115.3176,23.302166 - 16889: 115.2284,23.04944 - 16890: 115.64464,23.48056 - 16891: 115.43652,24.03061 - 16892: 115.61491,24.313068 - 16893: 115.7041,24.818518 - 16894: 115.36219,25.026646 - 16895: 115.37706,24.209003 - 16896: 115.24327,23.837349 - 16897: 115.124344,24.476595 - 16898: 115.37706,25.056377 - 16899: 115.05002,25.368568 - 16900: 114.78243,25.145575 - 16901: 114.841896,24.476595 - 16902: 114.78243,24.476595 - 16903: 114.663506,25.026646 - 16904: 115.03515,25.502363 - 16905: 115.02029,25.546963 - 16906: 114.812164,24.119806 - 16907: 114.663506,24.015743 - 16908: 114.827034,23.540026 - 16909: 114.76757,23.064306 - 16910: 114.63377,22.97511 - 16911: 114.827034,22.38046 - 16912: 114.61891,22.172335 - 16913: 115.18381,22.410192 - 16914: 115.25813,23.525158 - 16915: 115.55544,24.000877 - 16916: 115.52572,23.450829 - 16917: 115.55544,24.313068 - 16918: 115.39192,24.833385 - 16919: 115.58518,24.595526 - 16920: 115.49599,24.982046 - 16921: 115.52572,25.323969 - 16922: 114.7973,25.725357 - 16923: 115.154076,25.20504 - 16924: 114.93109,25.4429 - 16925: 116.729836,27.70256 - 16926: 117.012276,28.237747 - 16927: 116.53658,27.851223 - 16928: 116.44739,27.955288 - 16929: 116.7001,27.940422 - 16930: 116.40279,27.494434 - 16931: 116.89336,27.271442 - 16932: 117.30959,27.747162 - 16933: 116.7001,28.37154 - 16934: 117.48798,28.29721 - 16935: 117.07174,27.762028 - 16936: 117.51771,28.17828 - 16937: 117.7407,28.163414 - 16938: 117.62177,27.836357 - 16939: 116.714966,27.31604 - 16940: 116.59604,27.137646 - 16941: 120.163795,23.406229 - 16942: 120.773285,23.86708 - 16943: 120.461105,23.79275 - 16944: 119.80702,23.376497 - 16945: 120.13406,23.465694 - 16946: 120.19353,23.138638 - 16947: 120.31245,22.900778 - 16948: 120.907074,23.43596 - 16949: 121.085464,23.926546 - 16950: 121.15979,23.108906 - 16951: 120.08947,22.722383 - 16952: 120.75842,22.885912 - 16953: 119.61376,23.48056 - 16954: 120.639496,22.841312 - 16955: 121.085464,22.633186 - 16956: 120.74355,22.61832 - 16957: 121.53143,23.510292 - 16958: 121.14493,24.075209 - 16959: 119.79215,22.871046 - 16960: 117.66637,22.989975 - 16961: 120.58003,24.610392 - 16962: 120.56516,27.375504 - 16963: 117.770424,28.222878 - 16964: 115.124344,28.29721 - 16965: 115.54058,27.732296 - 16966: 116.13521,25.621294 + 16841: 114.72297,21.993938 + 16842: 115.00542,22.038538 + 16843: 114.812164,22.900778 + 16844: 115.302734,22.781849 + 16845: 114.72297,22.142601 + 16846: 115.302734,22.216932 + 16847: 115.19867,22.841312 + 16848: 115.287865,23.450829 + 16849: 115.287865,23.36163 + 16850: 115.139206,22.841312 + 16851: 114.90136,23.302166 + 16852: 115.16894,23.86708 + 16853: 115.2284,24.209003 + 16854: 114.90136,23.986012 + 16855: 115.02029,23.495426 + 16856: 115.25813,23.688686 + 16857: 115.55544,23.971146 + 16858: 115.3176,23.302166 + 16859: 115.2284,23.04944 + 16860: 115.64464,23.48056 + 16861: 115.43652,24.03061 + 16862: 115.61491,24.313068 + 16863: 115.7041,24.818518 + 16864: 115.36219,25.026646 + 16865: 115.37706,24.209003 + 16866: 115.24327,23.837349 + 16867: 115.124344,24.476595 + 16868: 115.37706,25.056377 + 16869: 115.05002,25.368568 + 16870: 114.78243,25.145575 + 16871: 114.841896,24.476595 + 16872: 114.78243,24.476595 + 16873: 114.663506,25.026646 + 16874: 115.03515,25.502363 + 16875: 115.02029,25.546963 + 16876: 114.812164,24.119806 + 16877: 114.663506,24.015743 + 16878: 114.827034,23.540026 + 16879: 114.76757,23.064306 + 16880: 114.63377,22.97511 + 16881: 114.827034,22.38046 + 16882: 114.61891,22.172335 + 16883: 115.18381,22.410192 + 16884: 115.25813,23.525158 + 16885: 115.55544,24.000877 + 16886: 115.52572,23.450829 + 16887: 115.55544,24.313068 + 16888: 115.39192,24.833385 + 16889: 115.58518,24.595526 + 16890: 115.49599,24.982046 + 16891: 115.52572,25.323969 + 16892: 114.7973,25.725357 + 16893: 115.154076,25.20504 + 16894: 114.93109,25.4429 + 16895: 116.729836,27.70256 + 16896: 117.012276,28.237747 + 16897: 116.53658,27.851223 + 16898: 116.44739,27.955288 + 16899: 116.7001,27.940422 + 16900: 116.40279,27.494434 + 16901: 116.89336,27.271442 + 16902: 117.30959,27.747162 + 16903: 116.7001,28.37154 + 16904: 117.48798,28.29721 + 16905: 117.07174,27.762028 + 16906: 117.51771,28.17828 + 16907: 117.7407,28.163414 + 16908: 117.62177,27.836357 + 16909: 116.714966,27.31604 + 16910: 116.59604,27.137646 + 16911: 120.163795,23.406229 + 16912: 120.773285,23.86708 + 16913: 120.461105,23.79275 + 16914: 119.80702,23.376497 + 16915: 120.13406,23.465694 + 16916: 120.19353,23.138638 + 16917: 120.31245,22.900778 + 16918: 120.907074,23.43596 + 16919: 121.085464,23.926546 + 16920: 121.15979,23.108906 + 16921: 120.08947,22.722383 + 16922: 120.75842,22.885912 + 16923: 119.61376,23.48056 + 16924: 120.639496,22.841312 + 16925: 121.085464,22.633186 + 16926: 120.74355,22.61832 + 16927: 121.53143,23.510292 + 16928: 121.14493,24.075209 + 16929: 119.79215,22.871046 + 16930: 117.66637,22.989975 + 16931: 120.58003,24.610392 + 16932: 120.56516,27.375504 + 16933: 117.770424,28.222878 + 16934: 115.124344,28.29721 + 16935: 115.54058,27.732296 + 16936: 116.13521,25.621294 - node: cleanable: True zIndex: 20 @@ -22260,19 +22388,19 @@ entities: color: '#00FF42FF' id: grasssnow01 decals: - 5494: -49,-52 + 5490: -49,-52 - node: angle: -0.5759586531581288 rad color: '#803F85FF' id: grasssnow01 decals: - 6177: -64.9365,-84.09051 + 6173: -64.9365,-84.09051 - node: angle: 0.5759586531581288 rad color: '#803F85FF' id: grasssnow01 decals: - 6193: -66.64739,-84.85671 + 6189: -66.64739,-84.85671 - node: cleanable: True color: '#28DF58FF' @@ -22284,69 +22412,69 @@ entities: color: '#803F85FF' id: grasssnow02 decals: - 6174: -64.7773,-79.38695 - 6175: -63.44606,-82.948235 - 6178: -58.186913,-85.71092 + 6170: -64.7773,-79.38695 + 6171: -63.44606,-82.948235 + 6174: -58.186913,-85.71092 - node: angle: 0.5759586531581288 rad color: '#803F85FF' id: grasssnow02 decals: - 6169: -75.87225,-77.743195 + 6165: -75.87225,-77.743195 - node: angle: 0.5759586531581288 rad color: '#803F85FF' id: grasssnow04 decals: - 6191: -72.76158,-86.76609 + 6187: -72.76158,-86.76609 - node: angle: 0.5759586531581288 rad color: '#803F85FF' id: grasssnow06 decals: - 6163: -64.28169,-81.929985 - 6170: -75.94658,-77.28234 - 6171: -74.34268,-77.62718 - 6172: -74.26152,-78.19937 - 6173: -71.1082,-80.62084 - 6180: -61.100807,-89.29427 - 6182: -71.90882,-90.388374 - 6183: -75.638306,-88.3963 - 6184: -75.316635,-78.95231 - 6194: -58.9031,-86.95339 - 6196: -67.74702,-83.63173 + 6159: -64.28169,-81.929985 + 6166: -75.94658,-77.28234 + 6167: -74.34268,-77.62718 + 6168: -74.26152,-78.19937 + 6169: -71.1082,-80.62084 + 6176: -61.100807,-89.29427 + 6178: -71.90882,-90.388374 + 6179: -75.638306,-88.3963 + 6180: -75.316635,-78.95231 + 6190: -58.9031,-86.95339 + 6192: -67.74702,-83.63173 - node: cleanable: True color: '#00FF42FF' id: grasssnow07 decals: - 5491: -47,-48 + 5487: -47,-48 - node: angle: -0.5759586531581288 rad color: '#803F85FF' id: grasssnow07 decals: - 6176: -66.2547,-84.96283 + 6172: -66.2547,-84.96283 - node: angle: 0.5759586531581288 rad color: '#803F85FF' id: grasssnow07 decals: - 6164: -61.65056,-77.79096 - 6192: -68.42651,-83.47463 + 6160: -61.65056,-77.79096 + 6188: -68.42651,-83.47463 - node: cleanable: True color: '#00FF42FF' id: grasssnow08 decals: - 5493: -52,-47 + 5489: -52,-47 - node: angle: 0.5759586531581288 rad color: '#803F85FF' id: grasssnow08 decals: - 6165: -62.200584,-82.69011 - 6179: -58.0441,-86.4691 + 6161: -62.200584,-82.69011 + 6175: -58.0441,-86.4691 - node: cleanable: True color: '#28DF58FF' @@ -22358,15 +22486,15 @@ entities: color: '#803F85FF' id: grasssnow09 decals: - 6166: -72.385155,-89.02414 - 6167: -74.32606,-88.55031 + 6162: -72.385155,-89.02414 + 6163: -74.32606,-88.55031 - node: angle: 0.5759586531581288 rad color: '#803F85FF' id: grasssnow10 decals: - 6168: -72.67816,-79.005554 - 6181: -59.97102,-88.744225 + 6164: -72.67816,-79.005554 + 6177: -59.97102,-88.744225 - node: cleanable: True color: '#28DF58FF' @@ -22378,13 +22506,13 @@ entities: color: '#803F85FF' id: grasssnow11 decals: - 6195: -61.829773,-78.72164 + 6191: -61.829773,-78.72164 - node: cleanable: True color: '#00FF42FF' id: grasssnow13 decals: - 5492: -53,-52 + 5488: -53,-52 - node: cleanable: True color: '#28DF58FF' @@ -22408,70 +22536,70 @@ entities: color: '#CDCDCDFF' id: i decals: - 6826: -79.68571,-45.08739 - 6827: -80.27774,-45.082336 + 6822: -79.68571,-45.08739 + 6823: -80.27774,-45.082336 - node: color: '#000000EF' id: smallbrush decals: - 15086: 129,41 + 15082: 129,41 - node: cleanable: True color: '#854218B2' id: smallbrush decals: - 16767: 118.928825,25.626226 - 16768: 118.39366,25.522163 - 16769: 117.828766,25.700558 - 16770: 118.18554,25.254572 - 16771: 118.36393,24.704523 - 16772: 119.01802,24.94238 - 16773: 119.34506,25.284304 - 16774: 118.83963,25.84922 - 16775: 118.64638,25.65596 - 16776: 119.13694,26.012749 - 16777: 118.73557,24.98698 + 16737: 118.928825,25.626226 + 16738: 118.39366,25.522163 + 16739: 117.828766,25.700558 + 16740: 118.18554,25.254572 + 16741: 118.36393,24.704523 + 16742: 119.01802,24.94238 + 16743: 119.34506,25.284304 + 16744: 118.83963,25.84922 + 16745: 118.64638,25.65596 + 16746: 119.13694,26.012749 + 16747: 118.73557,24.98698 - node: cleanable: True color: '#920918B2' id: smallbrush decals: - 16835: 120.62471,22.914236 - 16836: 120.104416,23.256159 - 16837: 120.713905,23.731876 - 16838: 120.98148,23.494017 - 16839: 120.90716,23.166962 - 16840: 120.50578,23.375088 - 16841: 121.21934,23.330488 - 16842: 114.8357,22.58718 - 16843: 114.65732,22.274988 - 16844: 115.31141,22.393919 - 16845: 114.8803,23.181828 - 16846: 114.74651,23.687279 - 16847: 115.11815,23.52375 - 16848: 114.74651,23.033165 - 16849: 115.01409,24.14813 - 16850: 114.64245,24.296793 - 16851: 114.68705,25.054968 - 16852: 115.17761,24.876574 - 16853: 115.47493,24.356256 - 16854: 114.939766,24.653582 - 16855: 115.073555,25.411758 - 16856: 116.95282,28.133682 - 16857: 117.62177,27.895824 - 16858: 116.7447,27.420105 - 16859: 121.36791,29.397308 - 16860: 121.68009,29.278381 - 16861: 121.93281,29.23378 - 16862: 122.42337,29.412174 - 16863: 122.021996,28.96619 - 16864: 122.23012,28.46074 - 16865: 122.37878,28.579666 - 16866: 122.11119,28.683731 - 16867: 122.30444,29.23378 - 16868: 122.23012,29.114853 - 16869: 122.25985,28.84726 - 16870: 122.14092,28.252613 + 16805: 120.62471,22.914236 + 16806: 120.104416,23.256159 + 16807: 120.713905,23.731876 + 16808: 120.98148,23.494017 + 16809: 120.90716,23.166962 + 16810: 120.50578,23.375088 + 16811: 121.21934,23.330488 + 16812: 114.8357,22.58718 + 16813: 114.65732,22.274988 + 16814: 115.31141,22.393919 + 16815: 114.8803,23.181828 + 16816: 114.74651,23.687279 + 16817: 115.11815,23.52375 + 16818: 114.74651,23.033165 + 16819: 115.01409,24.14813 + 16820: 114.64245,24.296793 + 16821: 114.68705,25.054968 + 16822: 115.17761,24.876574 + 16823: 115.47493,24.356256 + 16824: 114.939766,24.653582 + 16825: 115.073555,25.411758 + 16826: 116.95282,28.133682 + 16827: 117.62177,27.895824 + 16828: 116.7447,27.420105 + 16829: 121.36791,29.397308 + 16830: 121.68009,29.278381 + 16831: 121.93281,29.23378 + 16832: 122.42337,29.412174 + 16833: 122.021996,28.96619 + 16834: 122.23012,28.46074 + 16835: 122.37878,28.579666 + 16836: 122.11119,28.683731 + 16837: 122.30444,29.23378 + 16838: 122.23012,29.114853 + 16839: 122.25985,28.84726 + 16840: 122.14092,28.252613 - node: cleanable: True zIndex: 20 @@ -22484,37 +22612,37 @@ entities: color: '#854218B2' id: splatter decals: - 16763: 118.893196,25.239706 - 16764: 118.417496,25.091043 - 16765: 118.35803,25.938417 - 16766: 119.30943,25.641092 + 16733: 118.893196,25.239706 + 16734: 118.417496,25.091043 + 16735: 118.35803,25.938417 + 16736: 119.30943,25.641092 - node: cleanable: True color: '#920918B2' id: splatter decals: - 16813: 121.26393,29.489117 - 16814: 122.03695,29.414783 - 16815: 122.46805,28.939068 - 16816: 121.88829,28.924202 - 16817: 122.36399,28.01736 - 16818: 114.94604,24.954924 - 16819: 115.33254,24.300812 - 16820: 114.81225,23.79536 - 16821: 114.589264,24.285944 - 16822: 115.03523,24.598135 - 16823: 115.0055,24.10755 - 16824: 114.55953,24.910326 - 16825: 114.618996,23.825092 - 16826: 114.752785,22.977718 - 16827: 114.51493,23.304775 - 16828: 114.82711,22.546598 - 16829: 114.47034,22.412804 - 16830: 117.29481,28.002495 - 16831: 120.98148,23.602098 - 16832: 120.43146,23.230444 - 16833: 120.713905,23.05205 - 16834: 120.86256,23.36424 + 16783: 121.26393,29.489117 + 16784: 122.03695,29.414783 + 16785: 122.46805,28.939068 + 16786: 121.88829,28.924202 + 16787: 122.36399,28.01736 + 16788: 114.94604,24.954924 + 16789: 115.33254,24.300812 + 16790: 114.81225,23.79536 + 16791: 114.589264,24.285944 + 16792: 115.03523,24.598135 + 16793: 115.0055,24.10755 + 16794: 114.55953,24.910326 + 16795: 114.618996,23.825092 + 16796: 114.752785,22.977718 + 16797: 114.51493,23.304775 + 16798: 114.82711,22.546598 + 16799: 114.47034,22.412804 + 16800: 117.29481,28.002495 + 16801: 120.98148,23.602098 + 16802: 120.43146,23.230444 + 16803: 120.713905,23.05205 + 16804: 120.86256,23.36424 - node: cleanable: True zIndex: 20 @@ -32546,49 +32674,31 @@ entities: - type: Transform pos: -29.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - uid: 10546 components: - type: Transform pos: -25.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10530 - uid: 10547 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10529 - uid: 10548 components: - type: Transform pos: -21.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10528 - uid: 10549 components: - type: Transform pos: -25.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10527 - uid: 10550 components: - type: Transform pos: -29.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10526 - uid: 13792 components: - type: Transform @@ -32599,25 +32709,16 @@ entities: - type: Transform pos: -61.5,-93.5 parent: 2 - - type: DeviceLinkSink - links: - - 21360 - uid: 22680 components: - type: Transform pos: -72.5,-93.5 parent: 2 - - type: DeviceLinkSink - links: - - 3016 - uid: 25061 components: - type: Transform pos: 43.5,-55.5 parent: 2 - - type: DeviceLinkSink - links: - - 25076 - uid: 25062 components: - type: Transform @@ -32629,45 +32730,30 @@ entities: rot: 1.5707963267948966 rad pos: 89.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 27244 - uid: 26410 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 27240 - uid: 26427 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 27242 - uid: 26662 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 27241 - uid: 26689 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 27243 - uid: 27259 components: - type: Transform @@ -32686,14 +32772,16 @@ entities: rot: -1.5707963267948966 rad pos: 89.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 1494 - uid: 30765 components: - type: Transform pos: -134.5,-24.5 parent: 2 + - uid: 32292 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 - proto: AirlockArmoryGlassLocked entities: - uid: 6509 @@ -33028,19 +33116,11 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,56.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - uid: 17024 components: - type: Transform pos: -15.5,43.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - uid: 17190 components: - type: Transform @@ -33149,19 +33229,11 @@ entities: - type: Transform pos: -3.5,35.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - uid: 16792 components: - type: Transform pos: -1.5,35.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - uid: 19167 components: - type: Transform @@ -33213,8 +33285,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 27622 - type: DeviceLinkSource linkedPorts: 27622: @@ -33226,8 +33296,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 27621 - type: DeviceLinkSource linkedPorts: 27621: @@ -33239,10 +33307,6 @@ entities: - type: Transform pos: 2.5,58.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - proto: AirlockExternalGlassCargoLocked entities: - uid: 12189 @@ -33265,9 +33329,6 @@ entities: - type: Transform pos: -12.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12858 - type: DeviceLinkSource linkedPorts: 12858: @@ -33277,9 +33338,6 @@ entities: - type: Transform pos: -10.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12857 - type: DeviceLinkSource linkedPorts: 12857: @@ -33291,9 +33349,6 @@ entities: - type: Transform pos: -38.5,-55.5 parent: 2 - - type: DeviceLinkSink - links: - - 9803 - type: DeviceLinkSource linkedPorts: 9803: @@ -33303,9 +33358,6 @@ entities: - type: Transform pos: -38.5,-51.5 parent: 2 - - type: DeviceLinkSink - links: - - 9802 - type: DeviceLinkSource linkedPorts: 9802: @@ -33323,8 +33375,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16236 - type: DeviceLinkSource linkedPorts: 16236: @@ -33337,8 +33387,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 16235 - type: DeviceLinkSource linkedPorts: 16235: @@ -33351,8 +33399,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 17170 - type: DeviceLinkSource linkedPorts: 17170: @@ -33365,8 +33411,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 17169 - type: DeviceLinkSource linkedPorts: 17169: @@ -33379,8 +33423,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 17172 - type: DeviceLinkSource linkedPorts: 17172: @@ -33393,8 +33435,6 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - links: - - 17171 - type: DeviceLinkSource linkedPorts: 17171: @@ -33404,10 +33444,6 @@ entities: - type: Transform pos: -17.5,65.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - uid: 17188 components: - type: Transform @@ -33435,9 +33471,6 @@ entities: - type: Transform pos: 44.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 13645 - type: DeviceLinkSource linkedPorts: 13645: @@ -33447,9 +33480,6 @@ entities: - type: Transform pos: 42.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 13644 - type: DeviceLinkSource linkedPorts: 13644: @@ -33640,6 +33670,8 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-74.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43445 dockedWith: 31268 @@ -33657,6 +33689,8 @@ entities: - type: Transform pos: 0.5,-4.5 parent: 31265 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43445 dockedWith: 24718 @@ -33826,24 +33860,12 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - - 30076 - - 30081 - uid: 8581 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-25.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - - 30076 - - 30081 - uid: 10064 components: - type: Transform @@ -33948,9 +33970,6 @@ entities: - type: Transform pos: 40.5,-54.5 parent: 2 - - type: DeviceLinkSink - links: - - 25076 - uid: 25038 components: - type: MetaData @@ -33958,9 +33977,6 @@ entities: - type: Transform pos: 40.5,-52.5 parent: 2 - - type: DeviceLinkSink - links: - - 25076 - uid: 25055 components: - type: Transform @@ -34011,6 +34027,8 @@ entities: rot: 3.141592653589793 rad pos: -101.5,17.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43506 dockedWith: 31114 @@ -34024,6 +34042,8 @@ entities: rot: -1.5707963267948966 rad pos: -105.5,8.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43507 dockedWith: 31173 @@ -34037,6 +34057,8 @@ entities: rot: -1.5707963267948966 rad pos: -144.5,-32.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking578146 dockedWith: 31091 @@ -34050,6 +34072,8 @@ entities: rot: 1.5707963267948966 rad pos: -142.5,-32.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking578147 dockedWith: 31489 @@ -34075,6 +34099,8 @@ entities: rot: 1.5707963267948966 rad pos: -154.5,-32.5 parent: 2 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking578150 dockedWith: 31435 @@ -34128,6 +34154,8 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 31090 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking578146 dockedWith: 23437 @@ -34141,6 +34169,8 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 31113 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43506 dockedWith: 21223 @@ -34160,6 +34190,8 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 31171 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking43507 dockedWith: 21224 @@ -34173,6 +34205,8 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 31434 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking578150 dockedWith: 23498 @@ -34186,6 +34220,8 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 31488 + - type: Door + changeAirtight: False - type: Docking dockJointId: docking578147 dockedWith: 23438 @@ -34435,12 +34471,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-15.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 30076 - - 15139 - - 30081 - proto: AirlockMaintChiefMedicalOfficerLocked entities: - uid: 1917 @@ -34449,12 +34479,6 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - - 30076 - - 30081 - proto: AirlockMaintCommandLocked entities: - uid: 936 @@ -34481,10 +34505,6 @@ entities: - type: Transform pos: -23.5,30.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - uid: 22400 components: - type: Transform @@ -34591,35 +34611,17 @@ entities: rot: 1.5707963267948966 rad pos: -62.5,-37.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - - 30076 - - 30081 - uid: 4739 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - - 30076 - - 30081 - uid: 8496 components: - type: Transform pos: -43.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - - 30076 - - 30081 - proto: AirlockMaintResearchDirectorLocked entities: - uid: 3741 @@ -34627,10 +34629,6 @@ entities: - type: Transform pos: 7.5,24.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - proto: AirlockMaintRnDLocked entities: - uid: 15215 @@ -34639,20 +34637,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,38.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - uid: 15216 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - uid: 16635 components: - type: Transform @@ -34757,9 +34747,6 @@ entities: - type: Transform pos: -45.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 8493 - uid: 8518 components: - type: Transform @@ -34848,10 +34835,6 @@ entities: - type: Transform pos: 41.5,15.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - uid: 14974 components: - type: Transform @@ -35025,19 +35008,11 @@ entities: - type: Transform pos: 33.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - uid: 524 components: - type: Transform pos: 34.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - uid: 1004 components: - type: Transform @@ -35276,10 +35251,6 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 15158 - - 15157 - proto: AirlockSecurityLocked entities: - uid: 6475 @@ -35442,12 +35413,6 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,-35.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - - 30076 - - 30081 - uid: 8644 components: - type: Transform @@ -38374,300 +38339,193 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,40.5 parent: 2 - - type: DeviceLinkSink - links: - - 15135 - uid: 3758 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,40.5 parent: 2 - - type: DeviceLinkSink - links: - - 15135 - uid: 3787 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,40.5 parent: 2 - - type: DeviceLinkSink - links: - - 15135 - uid: 3789 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,40.5 parent: 2 - - type: DeviceLinkSink - links: - - 15134 - uid: 3790 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,40.5 parent: 2 - - type: DeviceLinkSink - links: - - 15134 - uid: 3791 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,40.5 parent: 2 - - type: DeviceLinkSink - links: - - 15134 - uid: 6362 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,19.5 parent: 2 - - type: DeviceLinkSink - links: - - 6375 - uid: 6363 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 6375 - uid: 6364 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,21.5 parent: 2 - - type: DeviceLinkSink - links: - - 6375 - uid: 15174 components: - type: Transform pos: 6.5,37.5 parent: 2 - - type: DeviceLinkSink - links: - - 15217 - uid: 15175 components: - type: Transform pos: 6.5,36.5 parent: 2 - - type: DeviceLinkSink - links: - - 15217 - uid: 15176 components: - type: Transform pos: 6.5,35.5 parent: 2 - - type: DeviceLinkSink - links: - - 15217 - uid: 16707 components: - type: Transform pos: 1.5,61.5 parent: 2 - - type: DeviceLinkSink - links: - - 16709 - uid: 16708 components: - type: Transform pos: 3.5,61.5 parent: 2 - - type: DeviceLinkSink - links: - - 16709 - uid: 16918 components: - type: Transform pos: -11.5,48.5 parent: 2 - - type: DeviceLinkSink - links: - - 16940 - - 16941 - uid: 16919 components: - type: Transform pos: -11.5,47.5 parent: 2 - - type: DeviceLinkSink - links: - - 16940 - - 16941 - uid: 26442 components: - type: Transform rot: -1.5707963267948966 rad pos: 107.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 27918 - uid: 26444 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 27918 - uid: 26445 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 27918 - uid: 26446 components: - type: Transform rot: -1.5707963267948966 rad pos: 119.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 27917 - uid: 26447 components: - type: Transform rot: -1.5707963267948966 rad pos: 120.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 27917 - uid: 26448 components: - type: Transform rot: -1.5707963267948966 rad pos: 121.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 27917 - uid: 26456 components: - type: Transform rot: -1.5707963267948966 rad pos: 113.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 27921 - uid: 26457 components: - type: Transform rot: -1.5707963267948966 rad pos: 114.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 27921 - uid: 26458 components: - type: Transform rot: -1.5707963267948966 rad pos: 115.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 27921 - uid: 31282 components: - type: Transform pos: -2.5,0.5 parent: 31265 - - type: DeviceLinkSink - links: - - 31346 - uid: 31283 components: - type: Transform pos: -2.5,-0.5 parent: 31265 - - type: DeviceLinkSink - links: - - 31346 - uid: 31284 components: - type: Transform pos: -2.5,-1.5 parent: 31265 - - type: DeviceLinkSink - links: - - 31346 - uid: 31285 components: - type: Transform pos: 3.5,0.5 parent: 31265 - - type: DeviceLinkSink - links: - - 31347 - uid: 31286 components: - type: Transform pos: 3.5,-0.5 parent: 31265 - - type: DeviceLinkSink - links: - - 31347 - uid: 31287 components: - type: Transform pos: 3.5,-1.5 parent: 31265 - - type: DeviceLinkSink - links: - - 31347 - uid: 31387 components: - type: Transform pos: 140.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 31388 components: - type: Transform pos: 137.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 31389 components: - type: Transform pos: 134.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 31390 components: - type: Transform pos: 131.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - proto: BlastDoorOpen entities: - uid: 27134 @@ -38675,25 +38533,16 @@ entities: - type: Transform pos: 97.5,16.5 parent: 2 - - type: DeviceLinkSink - links: - - 27113 - uid: 27135 components: - type: Transform pos: 97.5,15.5 parent: 2 - - type: DeviceLinkSink - links: - - 27113 - uid: 27136 components: - type: Transform pos: 97.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 27113 - proto: Bloodpack entities: - uid: 8594 @@ -38765,13 +38614,49 @@ entities: rot: 1.5707963267948966 rad pos: -85.518105,-87.374214 parent: 2 + - type: Paper + content: >- + До эвакуации осталась минута... Я еле как смог скрыться от сотрудников службы безопасности. Я боюсь возвращаться на станцию центрального командования. ГСБ слишком косо смотрел на меня, когда я задавал вопросы, а ГВ заполнял какие-то бланки... + + Мне кажется, мы находимся под информационным куполом, или как это можно назвать... Я не знаю! Я заслуженный научный руководитель. Добивался этой должности не один год. Почему меня считают безумцем?! + + Я не знаю на сколько хватит запасов. Смогу ли я дожить до прибытия следующего экипажа? + + В любом случае, этот дневник моё спасение. + + + + Слышу как сотрудники СБ бегают где-то со стороны пляжа. Мне чертовски повезло, что я нашел это место. + + + + Звук взлетающего шаттла отбытия. Наконец-то я могу хотя бы не бояться выйти на ружу. + + + + Думаю, когда прилетит следующий экипаж, я попытаюсь затесаться среди них. Банальная история "ГП, я потерял свой КПК" должна сработать. Обязательно напишу книгу. Может, даже, научную работу? Но только за пределами сектора... + + Я столкнулся со слишком резкой реакцией на, казалось бы, банальные вопросы. + + Правда, на эти банальные вопросы я до сих пор не смог найти ответ... Словно какая-то невидимая сила не позволяет мне об этом нормально думать. Честно говоря, даже сейчас не могу сосредоточиться. Буду писать так быстро, как только смогу, и как только вспомню. + + [italic]потолок[/italic] + [italic]размножение[/italic] + + Что ж, это успех. Потолок... Черт, я даже не понимаю, есть ли он. Ну, это очевидно, он должен быть. Но... Блять, это очень пугает! За столько лет я еще не сталкивался с подобным чувством. Казалось бы, просто посмотреть наверх. Просто... Я смотрел на верх? Я пытался? Я сейчас смотрю? Это безумие, что-то явно управляет мной и моими мыслями. Нет! Должно быть объяснение, но... Черт, снова! Ладно, займусь этим вопросом позже. + + Половое размножение... У меня есть привычка, читать в слух всё, что я записываю. Но, сейчас это не работает. Я... Я не могу произнести слово с... Опять забыл о чем думал, о чем хотел писать. Размножение... Почему я не слышал, чтобы кто-то этим занимался на станциях NanoTrasen? Это же самая банальная потребность любого существа. Почему мне сложно думать о том, что заложено мной природой? Почему у меня не получается произнести это слово в слух? Голова раскалывается... Слышу какие-то странные звуки, что-то типа бвоиньк. Не знаю... Видимо, мне стоит выспаться... + + + + Перечитываю то, что я написал. Что-то явно оказывает на меня меметическое воздействие. Да, это анти-научно, но кто же знает, что уже успели разработать? Для меня стало очевидным, что от нас много чего скрыют. Отправлюсь на поиски... Чего? Устройства, я полагаю? Не знаю. Попытаюсь найти источник того, что блокирует мне мысли. Ха-ха! Никто бы не подумал, что буду писать подобный бред. Тем не менее, если найду, то это будет отличным материалом для научной работы. Если меня не убьют еще до возвращения на ЦК... Надо избавиться от своих отпечатков. Это будет очень больно... - uid: 26434 components: - type: Transform rot: 1.5707963267948966 rad pos: 106.54,-0.47 parent: 2 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 20922 components: @@ -39121,6 +39006,12 @@ entities: - type: Transform pos: 37.49493,0.6154895 parent: 2 + - uid: 32288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.08347,6.601399 + parent: 2 - proto: BoxFolderRed entities: - uid: 6345 @@ -73099,6 +72990,30 @@ entities: - type: Transform pos: 15.5,-20.5 parent: 2 + - uid: 32283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 2 + - uid: 32284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 2 + - uid: 32285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 32286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 - proto: CandleRedSmallInfinite entities: - uid: 19116 @@ -73171,9 +73086,9 @@ entities: - type: Physics canCollide: False missingComponents: - - Sharp - MeleeWeapon - Reflect + - Sharp - proto: CarbonDioxideCanister entities: - uid: 6505 @@ -80040,7 +79955,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,16.5 + pos: -55.75,16.5 parent: 2 - uid: 6245 components: @@ -80063,7 +79978,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,14.5 + pos: -66.5,14.75 parent: 2 - uid: 10711 components: @@ -81146,6 +81061,14 @@ entities: - type: Transform pos: 15.506745,29.582027 parent: 2 +- proto: ChurchBell + entities: + - uid: 30948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 2 - proto: CigarCase entities: - uid: 1768 @@ -85411,15 +85334,10 @@ entities: - type: Transform pos: -19.5,57.5 parent: 2 - - uid: 19975 - components: - - type: Transform - pos: -6.5,36.5 - parent: 2 - - uid: 19976 + - uid: 19978 components: - type: Transform - pos: -4.5,36.5 + pos: -5.5,36.5 parent: 2 - uid: 27668 components: @@ -86008,15 +85926,15 @@ entities: ent: null - proto: ClosetToolFilled entities: - - uid: 19977 + - uid: 19974 components: - type: Transform - pos: -5.5,36.5 + pos: -6.5,36.5 parent: 2 - - uid: 19978 + - uid: 19975 components: - type: Transform - pos: -7.5,39.5 + pos: -4.5,36.5 parent: 2 - uid: 20105 components: @@ -86476,13 +86394,18 @@ entities: - type: Transform pos: -51.134075,-9.422615 parent: 2 -- proto: ClothingHandsGlovesPowerglove +- proto: ClothingHandsGlovesNorthStar entities: - - uid: 16005 + - uid: 951 components: + - type: MetaData + desc: Одев их, можно почувствовать себя легендарным боксёром Майком Брауном. + name: пара перчаток легендарного боксёра - type: Transform - pos: 22.70768,43.017372 + pos: 22.57035,43.286655 parent: 2 + - type: MeleeWeapon + attackRate: 2 - proto: ClothingHeadBandRed entities: - uid: 327 @@ -86591,6 +86514,9 @@ entities: parent: 2 - uid: 29357 components: + - type: MetaData + desc: По легенде, их носил некий Драган-Грауст. + name: именные кошачьи ушки - type: Transform pos: -22.5,6.5 parent: 28663 @@ -87438,8 +87364,6 @@ entities: - type: Transform pos: 112.59893,9.082148 parent: 2 - - type: Magboots - toggleActionEntity: 15121 - type: ActionsContainer - type: ContainerContainer containers: @@ -89200,6 +89124,8 @@ entities: - type: Transform pos: 31.5,-25.5 parent: 28663 + - type: ApcPowerReceiver + needsPower: False - proto: ComputerResearchAndDevelopment entities: - uid: 440 @@ -89438,93 +89364,60 @@ entities: - type: Transform pos: -24.5,-48.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9447 components: - type: Transform pos: -24.5,-49.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9448 components: - type: Transform pos: -24.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9449 components: - type: Transform pos: -24.5,-51.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9450 components: - type: Transform pos: -24.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9451 components: - type: Transform pos: -24.5,-45.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9452 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-45.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9453 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-46.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9454 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-47.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9455 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-48.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 9464 components: - type: Transform pos: -24.5,-47.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - uid: 12651 components: - type: Transform @@ -89535,41 +89428,26 @@ entities: - type: Transform pos: 0.5,-60.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12653 components: - type: Transform pos: 0.5,-59.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12654 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12655 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12656 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12657 components: - type: Transform @@ -89582,255 +89460,168 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-60.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12659 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-59.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12660 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-58.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12661 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-57.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12662 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12663 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12664 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12665 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12666 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12667 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-55.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12668 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-54.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12669 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12670 components: - type: Transform pos: -3.5,-55.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12671 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12672 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12673 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 12674 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-56.5 parent: 2 - - type: DeviceLinkSink - links: - - 12675 - uid: 13508 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-41.5 parent: 2 - - type: DeviceLinkSink - links: - - 27616 - uid: 13515 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-42.5 parent: 2 - - type: DeviceLinkSink - links: - - 27616 - uid: 14016 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - type: DeviceLinkSink - links: - - 14020 - uid: 14017 components: - type: Transform pos: 31.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 14020 - uid: 14018 components: - type: Transform pos: 31.5,-21.5 parent: 2 - - type: DeviceLinkSink - links: - - 14020 - uid: 14019 components: - type: Transform pos: 31.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 14020 - uid: 24949 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 25033 - uid: 24950 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 25033 - uid: 25030 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 25033 - uid: 25031 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 25033 - uid: 25040 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-50.5 parent: 2 - - type: DeviceLinkSink - links: - - 25033 - uid: 26665 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-43.5 parent: 2 - - type: DeviceLinkSink - links: - - 27616 - proto: CrateArtifactContainer entities: - uid: 27675 @@ -91212,6 +91003,13 @@ entities: rot: -1.5707963267948966 rad pos: -95.5,-58.5 parent: 2 +- proto: CutterMachine + entities: + - uid: 19977 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 - proto: CyborgEndoskeleton entities: - uid: 26610 @@ -98560,10 +98358,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9610 components: - type: Transform @@ -98572,20 +98366,12 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9628 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-21.5 parent: 2 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9645 components: - type: Transform @@ -98593,20 +98379,12 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9662 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-17.5 parent: 2 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9668 components: - type: Transform @@ -98614,19 +98392,12 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 15683 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,30.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - uid: 15692 components: - type: Transform @@ -98635,9 +98406,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30414 - uid: 15698 components: - type: Transform @@ -98646,36 +98414,24 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30414 - uid: 16636 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,37.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - uid: 16822 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,34.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - uid: 16824 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,39.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - uid: 18014 components: - type: Transform @@ -98688,26 +98444,17 @@ entities: rot: 3.141592653589793 rad pos: -21.5,49.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - uid: 30721 components: - type: Transform pos: 13.5,25.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - uid: 30749 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,26.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - proto: DisposalSignalRouterFlipped entities: - uid: 8069 @@ -98716,19 +98463,11 @@ entities: rot: 3.141592653589793 rad pos: -61.5,-27.5 parent: 2 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9611 components: - type: Transform pos: -46.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9627 components: - type: Transform @@ -98737,10 +98476,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9654 components: - type: Transform @@ -98749,10 +98484,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9661 components: - type: Transform @@ -98761,20 +98492,12 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 9670 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-24.5 parent: 2 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 15678 components: - type: Transform @@ -98789,26 +98512,17 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30414 - uid: 15693 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,16.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - uid: 15694 components: - type: Transform pos: 37.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - uid: 16818 components: - type: Transform @@ -98817,9 +98531,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30284 - uid: 16821 components: - type: Transform @@ -98827,9 +98538,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30284 - uid: 30349 components: - type: Transform @@ -98837,9 +98545,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30284 - uid: 30373 components: - type: Transform @@ -98848,9 +98553,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30284 - uid: 30722 components: - type: Transform @@ -98859,9 +98561,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30414 - uid: 30750 components: - type: Transform @@ -98869,9 +98568,6 @@ entities: parent: 2 - type: DisposalSignalRouter routing: True - - type: DeviceLinkSink - links: - - 30414 - proto: DisposalTrunk entities: - uid: 207 @@ -105139,6 +104835,40 @@ entities: - type: InsideEntityStorage - proto: FloorAzureWaterEntity entities: + - uid: 978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,34.5 + parent: 2 + - uid: 995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,35.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,34.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,35.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 - uid: 10006 components: - type: Transform @@ -105289,6 +105019,16 @@ entities: - type: Transform pos: -13.5,-38.5 parent: 2 + - uid: 16005 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - uid: 19490 + components: + - type: Transform + pos: -45.5,35.5 + parent: 2 - uid: 22165 components: - type: Transform @@ -109974,50 +109714,6 @@ entities: - type: Transform pos: -66.5,-89.5 parent: 2 - - uid: 30852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,34.5 - parent: 2 - - uid: 30853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,35.5 - parent: 2 - - uid: 30854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,35.5 - parent: 2 - - uid: 30855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,34.5 - parent: 2 - - uid: 30926 - components: - - type: Transform - pos: -45.5,35.5 - parent: 2 - - uid: 30940 - components: - - type: Transform - pos: -45.5,34.5 - parent: 2 - - uid: 30941 - components: - - type: Transform - pos: -44.5,35.5 - parent: 2 - - uid: 30942 - components: - - type: Transform - pos: -44.5,34.5 - parent: 2 - proto: FloraRockSolid01 entities: - uid: 22357 @@ -114640,6 +114336,18 @@ entities: - type: Transform pos: -26.67564,-28.187487 parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 32295 + components: + - type: Transform + pos: -24.387482,-29.459538 + parent: 2 + - uid: 32296 + components: + - type: Transform + pos: -24.625275,-29.593334 + parent: 2 - proto: FoodPlate entities: - uid: 8113 @@ -148985,17 +148693,17 @@ entities: - type: Transform pos: 40.5,-21.5 parent: 2 - - uid: 19490 - components: - - type: Transform - pos: -52.5,-31.5 - parent: 2 - uid: 19915 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-30.5 parent: 2 + - uid: 21547 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 - uid: 29752 components: - type: Transform @@ -151983,7 +151691,6 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 25061: [] 25038: - Pressed: DoorBolt 24996: @@ -152334,10 +152041,10 @@ entities: - type: Transform pos: -14.5,30.5 parent: 2 - - uid: 19974 + - uid: 19976 components: - type: Transform - pos: -8.5,39.5 + pos: -7.5,39.5 parent: 2 - proto: LockerFreezer entities: @@ -153458,17 +153165,11 @@ entities: - type: Transform pos: 108.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 27703 - uid: 27688 components: - type: Transform pos: 120.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 27704 - proto: MachineCentrifuge entities: - uid: 8027 @@ -154841,7 +154542,6 @@ entities: - type: Physics canCollide: False - type: Label - originalName: бумага currentLabel: Меню кухни - uid: 172 components: @@ -156916,11 +156616,6 @@ entities: - type: Transform pos: -71.5,-75.5 parent: 2 - - uid: 21547 - components: - - type: Transform - pos: -62.5,-75.5 - parent: 2 - uid: 21548 components: - type: Transform @@ -156931,15 +156626,15 @@ entities: - type: Transform pos: -66.5,-62.5 parent: 2 - - uid: 21559 + - uid: 21553 components: - type: Transform - pos: -73.5,-89.5 + pos: -62.5,-75.5 parent: 2 - - uid: 30948 + - uid: 21559 components: - type: Transform - pos: -41.5,28.5 + pos: -73.5,-89.5 parent: 2 - proto: PaperOffice entities: @@ -157162,11 +156857,6 @@ entities: rot: 3.141592653589793 rad pos: -11.03122,-18.431015 parent: 2 - - uid: 22883 - components: - - type: Transform - pos: -85.585846,-86.924355 - parent: 2 - uid: 27853 components: - type: Transform @@ -157183,6 +156873,11 @@ entities: - type: Transform pos: -136.67734,27.7972 parent: 2 + - uid: 32293 + components: + - type: Transform + pos: -85.53356,-87.012665 + parent: 2 - proto: PersonalAI entities: - uid: 18266 @@ -157949,6 +157644,11 @@ entities: - type: Transform pos: 39.5,-7.5 parent: 2 + - uid: 32289 + components: + - type: Transform + pos: 9.746,8.325 + parent: 2 - proto: PottedPlantAlt4 entities: - uid: 1795 @@ -158705,12 +158405,6 @@ entities: - type: Transform pos: 13.5,2.5 parent: 2 - - uid: 1061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 2 - uid: 1067 components: - type: Transform @@ -158744,24 +158438,6 @@ entities: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 1160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-21.5 - parent: 2 - - uid: 1173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-16.5 - parent: 2 - - uid: 1268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-16.5 - parent: 2 - uid: 1571 components: - type: Transform @@ -160820,9 +160496,6 @@ entities: rot: 1.5707963267948966 rad pos: 129.5,17.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27407 components: - type: Transform @@ -160927,27 +160600,18 @@ entities: rot: 1.5707963267948966 rad pos: 124.5,20.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27590 components: - type: Transform rot: 1.5707963267948966 rad pos: 124.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27591 components: - type: Transform rot: -1.5707963267948966 rad pos: 127.5,9.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27660 components: - type: Transform @@ -161012,61 +160676,40 @@ entities: rot: 1.5707963267948966 rad pos: 129.5,12.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27910 components: - type: Transform pos: 133.5,21.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27911 components: - type: Transform pos: 138.5,21.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27912 components: - type: Transform rot: -1.5707963267948966 rad pos: 142.5,17.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27913 components: - type: Transform rot: -1.5707963267948966 rad pos: 142.5,12.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27914 components: - type: Transform rot: 3.141592653589793 rad pos: 138.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 27915 components: - type: Transform rot: 3.141592653589793 rad pos: 133.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 27916 - uid: 29054 components: - type: Transform @@ -161773,6 +161416,30 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-22.5 parent: 28663 + - uid: 30852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 2 + - uid: 30853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - uid: 30854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 2 + - uid: 30855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 2 - proto: PoweredlightPink entities: - uid: 22742 @@ -163418,9 +163085,6 @@ entities: ent: 15930 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 18068 components: - type: Transform @@ -163435,9 +163099,6 @@ entities: ent: 18071 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 27583 components: - type: Transform @@ -163452,9 +163113,6 @@ entities: ent: 27584 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 27587 components: - type: Transform @@ -163469,9 +163127,6 @@ entities: ent: 27588 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 27896 components: - type: Transform @@ -163486,9 +163141,6 @@ entities: ent: 27897 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 27898 components: - type: Transform @@ -163502,9 +163154,6 @@ entities: ent: 27899 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 27900 components: - type: Transform @@ -163519,9 +163168,6 @@ entities: ent: 27901 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 28429 components: - type: Transform @@ -163536,9 +163182,6 @@ entities: ent: 28459 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30083 components: - type: Transform @@ -163553,10 +163196,6 @@ entities: ent: 30084 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30085 components: - type: Transform @@ -163570,10 +163209,6 @@ entities: ent: 30086 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30087 components: - type: Transform @@ -163588,10 +163223,6 @@ entities: ent: 30088 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30089 components: - type: Transform @@ -163606,10 +163237,6 @@ entities: ent: 30090 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30091 components: - type: Transform @@ -163623,10 +163250,6 @@ entities: ent: 30092 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30093 components: - type: Transform @@ -163641,10 +163264,6 @@ entities: ent: 30094 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30095 components: - type: Transform @@ -163658,10 +163277,6 @@ entities: ent: 30096 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30097 components: - type: Transform @@ -163676,10 +163291,6 @@ entities: ent: 30098 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30099 components: - type: Transform @@ -163694,10 +163305,6 @@ entities: ent: 30100 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30101 components: - type: Transform @@ -163712,10 +163319,6 @@ entities: ent: 30102 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30103 components: - type: Transform @@ -163730,10 +163333,6 @@ entities: ent: 30104 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30105 components: - type: Transform @@ -163748,10 +163347,6 @@ entities: ent: 30106 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30107 components: - type: Transform @@ -163766,10 +163361,6 @@ entities: ent: 30108 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30109 components: - type: Transform @@ -163784,10 +163375,6 @@ entities: ent: 30110 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30111 components: - type: Transform @@ -163802,10 +163389,6 @@ entities: ent: 30112 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30113 components: - type: Transform @@ -163819,10 +163402,6 @@ entities: ent: 30114 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30286 components: - type: Transform @@ -163836,9 +163415,6 @@ entities: ent: 30287 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30291 components: - type: Transform @@ -163853,9 +163429,6 @@ entities: ent: 30292 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30293 components: - type: Transform @@ -163870,9 +163443,6 @@ entities: ent: 30294 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30295 components: - type: Transform @@ -163886,9 +163456,6 @@ entities: ent: 30296 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30297 components: - type: Transform @@ -163903,9 +163470,6 @@ entities: ent: 30298 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30299 components: - type: Transform @@ -163920,9 +163484,6 @@ entities: ent: 30300 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30301 components: - type: Transform @@ -163936,9 +163497,6 @@ entities: ent: 30302 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30305 components: - type: Transform @@ -163953,9 +163511,6 @@ entities: ent: 30306 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30307 components: - type: Transform @@ -163969,9 +163524,6 @@ entities: ent: 30308 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30309 components: - type: Transform @@ -163985,9 +163537,6 @@ entities: ent: 30310 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30311 components: - type: Transform @@ -164002,9 +163551,6 @@ entities: ent: 30312 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30313 components: - type: Transform @@ -164031,9 +163577,6 @@ entities: ent: 30314 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30316 components: - type: Transform @@ -164048,9 +163591,6 @@ entities: ent: 30317 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30318 components: - type: Transform @@ -164065,9 +163605,6 @@ entities: ent: 30319 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30320 components: - type: Transform @@ -164082,9 +163619,6 @@ entities: ent: 30321 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30322 components: - type: Transform @@ -164099,9 +163633,6 @@ entities: ent: 30323 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30324 components: - type: Transform @@ -164115,9 +163646,6 @@ entities: ent: 30325 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30327 components: - type: Transform @@ -164132,9 +163660,6 @@ entities: ent: 30328 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30381 components: - type: Transform @@ -164148,9 +163673,6 @@ entities: ent: 30382 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30384 components: - type: Transform @@ -164165,9 +163687,6 @@ entities: ent: 30385 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30387 components: - type: Transform @@ -164182,9 +163701,6 @@ entities: ent: 30388 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30390 components: - type: Transform @@ -164199,9 +163715,6 @@ entities: ent: 30391 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30393 components: - type: Transform @@ -164216,9 +163729,6 @@ entities: ent: 30394 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30396 components: - type: Transform @@ -164247,9 +163757,6 @@ entities: ent: 30399 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30402 components: - type: Transform @@ -164263,9 +163770,6 @@ entities: ent: 30403 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30405 components: - type: Transform @@ -164279,9 +163783,6 @@ entities: ent: 30406 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30408 components: - type: Transform @@ -164295,9 +163796,6 @@ entities: ent: 30409 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30411 components: - type: Transform @@ -164312,9 +163810,6 @@ entities: ent: 30412 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 31398 components: - type: Transform @@ -164329,9 +163824,6 @@ entities: ent: 31399 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 31402 components: - type: Transform @@ -164346,9 +163838,6 @@ entities: ent: 31403 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 31404 components: - type: Transform @@ -164363,9 +163852,6 @@ entities: ent: 31405 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - proto: PoweredStrobeLightEpsilon entities: - uid: 14657 @@ -164384,9 +163870,6 @@ entities: ent: 14676 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 27585 components: - type: Transform @@ -164403,9 +163886,6 @@ entities: ent: 27586 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - uid: 30161 components: - type: Transform @@ -164422,9 +163902,6 @@ entities: ent: 30162 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 27916 - proto: PoweredStrobeLightPolice entities: - uid: 31167 @@ -164455,9 +163932,6 @@ entities: ent: 31168 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 31169 - uid: 31214 components: - type: Transform @@ -164486,9 +163960,6 @@ entities: ent: 31215 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 31217 - proto: PoweredStrobeLightSiren entities: - uid: 28408 @@ -164508,9 +163979,6 @@ entities: ent: 28409 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30077 components: - type: Transform @@ -164526,10 +163994,6 @@ entities: ent: 30078 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30079 components: - type: Transform @@ -164544,10 +164008,6 @@ entities: ent: 30080 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 15139 - - 29728 - uid: 30118 components: - type: Transform @@ -164565,10 +164025,6 @@ entities: ent: 30119 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 29728 - - 15139 - uid: 30122 components: - type: Transform @@ -164586,9 +164042,6 @@ entities: ent: 30123 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30414 - uid: 30159 components: - type: Transform @@ -164606,9 +164059,6 @@ entities: ent: 30160 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30289 components: - type: Transform @@ -164626,9 +164076,6 @@ entities: ent: 30290 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - uid: 30303 components: - type: Transform @@ -164644,9 +164091,6 @@ entities: ent: 30304 - type: ApcPowerReceiver powerLoad: 0 - - type: DeviceLinkSink - links: - - 30284 - proto: PrinterDoc entities: - uid: 1300 @@ -173182,9 +172626,6 @@ entities: - type: Transform pos: -24.5,-47.5 parent: 2 - - type: DeviceLinkSink - links: - - 9462 - proto: ReinforcedPlasmaWindow entities: - uid: 3059 @@ -176480,6 +175921,20 @@ entities: - type: Transform pos: 95.44451,32.869404 parent: 2 +- proto: RubberStampApproved + entities: + - uid: 32291 + components: + - type: Transform + pos: 9.547269,6.616265 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 32290 + components: + - type: Transform + pos: 9.725614,6.7797933 + parent: 2 - proto: SalvageMagnet entities: - uid: 12946 @@ -178732,55 +178187,35 @@ entities: - type: Transform pos: -15.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 11323 - uid: 11303 components: - type: Transform pos: -14.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 11323 - uid: 12960 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-48.5 parent: 2 - - type: DeviceLinkSink - links: - - 12959 - - 12914 - uid: 12961 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-47.5 parent: 2 - - type: DeviceLinkSink - links: - - 12959 - - 12914 - uid: 14978 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,29.5 parent: 2 - - type: DeviceLinkSink - links: - - 14980 - uid: 14979 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,28.5 parent: 2 - - type: DeviceLinkSink - links: - - 14980 - proto: ShuttersNormalOpen entities: - uid: 679 @@ -178788,488 +178223,317 @@ entities: - type: Transform pos: -19.5,-12.5 parent: 2 - - type: DeviceLinkSink - links: - - 681 - uid: 683 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-13.5 parent: 2 - - type: DeviceLinkSink - links: - - 681 - uid: 684 components: - type: Transform pos: -17.5,-9.5 parent: 2 - - type: DeviceLinkSink - links: - - 681 - uid: 685 components: - type: Transform pos: -17.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 681 - uid: 686 components: - type: Transform pos: -18.5,-10.5 parent: 2 - - type: DeviceLinkSink - links: - - 681 - uid: 688 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 681 - uid: 690 components: - type: Transform pos: -19.5,-11.5 parent: 2 - - type: DeviceLinkSink - links: - - 681 - uid: 928 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 1338 - uid: 946 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 1338 - uid: 967 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 1338 - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 1338 - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,5.5 parent: 2 - - type: DeviceLinkSink - links: - - 1338 - uid: 6014 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,15.5 parent: 2 - - type: DeviceLinkSink - links: - - 6018 - uid: 6015 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 6018 - uid: 6016 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,13.5 parent: 2 - - type: DeviceLinkSink - links: - - 6018 - uid: 6017 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,12.5 parent: 2 - - type: DeviceLinkSink - links: - - 6018 - uid: 6047 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,9.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6048 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,8.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6049 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,7.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6050 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,4.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6051 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,3.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6052 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6062 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-0.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6063 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 6263 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,15.5 parent: 2 - - type: DeviceLinkSink - links: - - 6288 - uid: 6264 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,14.5 parent: 2 - - type: DeviceLinkSink - links: - - 6288 - uid: 6265 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,17.5 parent: 2 - - type: DeviceLinkSink - links: - - 6288 - uid: 8026 components: - type: Transform pos: -31.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 8102 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 8108 components: - type: Transform pos: -34.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 8111 components: - type: Transform pos: -35.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 8112 components: - type: Transform pos: -41.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 8115 components: - type: Transform pos: -38.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 20045 - uid: 8494 components: - type: Transform pos: -46.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 8493 - uid: 8495 components: - type: Transform pos: -44.5,-14.5 parent: 2 - - type: DeviceLinkSink - links: - - 8493 - uid: 8521 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-19.5 parent: 2 - - type: DeviceLinkSink - links: - - 8042 - uid: 8525 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-22.5 parent: 2 - - type: DeviceLinkSink - links: - - 8042 - uid: 8526 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-16.5 parent: 2 - - type: DeviceLinkSink - links: - - 8042 - uid: 10532 components: - type: Transform pos: -30.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - uid: 10533 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10531 - uid: 10534 components: - type: Transform pos: -26.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10530 - uid: 10535 components: - type: Transform pos: -24.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10530 - uid: 10536 components: - type: Transform pos: -22.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10529 - uid: 10537 components: - type: Transform pos: -20.5,-39.5 parent: 2 - - type: DeviceLinkSink - links: - - 10529 - uid: 10538 components: - type: Transform pos: -20.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10528 - uid: 10539 components: - type: Transform pos: -22.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10528 - uid: 10540 components: - type: Transform pos: -24.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10527 - uid: 10541 components: - type: Transform pos: -26.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10527 - uid: 10542 components: - type: Transform pos: -28.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10526 - uid: 10543 components: - type: Transform pos: -30.5,-33.5 parent: 2 - - type: DeviceLinkSink - links: - - 10526 - uid: 12994 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-54.5 parent: 2 - - type: DeviceLinkSink - links: - - 12998 - uid: 12995 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-53.5 parent: 2 - - type: DeviceLinkSink - links: - - 12998 - uid: 12996 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-52.5 parent: 2 - - type: DeviceLinkSink - links: - - 12998 - uid: 12997 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-51.5 parent: 2 - - type: DeviceLinkSink - links: - - 12998 - uid: 16894 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,37.5 parent: 2 - - type: DeviceLinkSink - links: - - 16893 - uid: 16895 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,36.5 parent: 2 - - type: DeviceLinkSink - links: - - 16893 - uid: 16896 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,35.5 parent: 2 - - type: DeviceLinkSink - links: - - 16893 - uid: 26633 components: - type: Transform @@ -179286,63 +178550,42 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 2 - - type: DeviceLinkSink - links: - - 30116 - uid: 30126 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-5.5 parent: 2 - - type: DeviceLinkSink - links: - - 30116 - uid: 30127 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 2 - - type: DeviceLinkSink - links: - - 30116 - uid: 30128 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 - - type: DeviceLinkSink - links: - - 30116 - uid: 30148 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 - - type: DeviceLinkSink - links: - - 30116 - uid: 30149 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 - - type: DeviceLinkSink - links: - - 30116 - uid: 30150 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 2 - - type: DeviceLinkSink - links: - - 30116 - proto: ShuttersRadiationOpen entities: - uid: 16749 @@ -179351,9 +178594,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,56.5 parent: 2 - - type: DeviceLinkSink - links: - - 16985 - proto: ShuttleGunPerforator entities: - uid: 31218 @@ -179376,9 +178616,6 @@ entities: showEnts: False occludes: True ent: 31219 - - type: DeviceLinkSink - links: - - 31216 - uid: 31220 components: - type: Transform @@ -179399,9 +178636,6 @@ entities: showEnts: False occludes: True ent: 31221 - - type: DeviceLinkSink - links: - - 31216 - proto: ShuttleWindow entities: - uid: 31141 @@ -180088,6 +179322,15 @@ entities: - Pressed: Toggle 31285: - Pressed: Toggle + - uid: 32294 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 32292: + - Pressed: DoorBolt - proto: SignalTimer entities: - uid: 30076 @@ -180120,9 +179363,6 @@ entities: - Timer: DoorBolt 8581: - Timer: DoorBolt - - type: DeviceLinkSink - links: - - 29728 - uid: 30081 components: - type: Transform @@ -180152,9 +179392,6 @@ entities: - Timer: DoorBolt 8581: - Timer: DoorBolt - - type: DeviceLinkSink - links: - - 15139 - type: Stealth - type: StealthOnMove - uid: 30285 @@ -180185,9 +179422,6 @@ entities: - Timer: DoorBolt 16745: - Timer: DoorBolt - - type: DeviceLinkSink - links: - - 30284 - uid: 30410 components: - type: Transform @@ -180213,9 +179447,6 @@ entities: - Timer: DoorBolt 7259: - Timer: DoorBolt - - type: DeviceLinkSink - links: - - 30414 - proto: SignAnomaly entities: - uid: 27885 @@ -180291,14 +179522,6 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,-19.5 parent: 2 -- proto: SignCourt - entities: - - uid: 20052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,16.5 - parent: 2 - proto: SignCryogenicsMed entities: - uid: 8851 @@ -180564,6 +179787,12 @@ entities: parent: 2 - proto: SignLawyer entities: + - uid: 20052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,16.5 + parent: 2 - uid: 20463 components: - type: Transform @@ -180823,7 +180052,7 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-2.5 parent: 2 -- proto: SignXenolab +- proto: SignXenobio entities: - uid: 27884 components: @@ -183937,21 +183166,6 @@ entities: - type: Transform pos: 4.5,-7.5 parent: 2 - - uid: 951 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - uid: 978 - components: - - type: Transform - pos: 15.5,5.5 - parent: 2 - - uid: 995 - components: - - type: Transform - pos: 14.5,5.5 - parent: 2 - uid: 21145 components: - type: Transform @@ -184301,6 +183515,21 @@ entities: - type: Transform pos: -44.5,33.5 parent: 2 + - uid: 30926 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 30940 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 30941 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 - proto: StasisBed entities: - uid: 176 @@ -189417,6 +188646,30 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,30.5 parent: 2 + - uid: 32279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 2 + - uid: 32280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 32281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 32282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 2 - proto: TableFancyOrange entities: - uid: 8605 @@ -192456,6 +191709,11 @@ entities: - type: Transform pos: 5.5,-27.5 parent: 28663 + - uid: 32287 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 - proto: TargetClown entities: - uid: 6322 @@ -226509,43 +225767,28 @@ entities: rot: 3.141592653589793 rad pos: -37.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 6022 - uid: 6055 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 6021 - uid: 6056 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,6.5 parent: 2 - - type: DeviceLinkSink - links: - - 6020 - uid: 6057 components: - type: Transform pos: -31.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 6024 - uid: 6058 components: - type: Transform pos: -35.5,1.5 parent: 2 - - type: DeviceLinkSink - links: - - 6023 - uid: 6067 components: - type: Transform @@ -226574,24 +225817,12 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-20.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 30076 - - 15139 - - 30081 - uid: 8846 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-18.5 parent: 2 - - type: DeviceLinkSink - links: - - 29728 - - 30076 - - 15139 - - 30081 - uid: 19674 components: - type: Transform @@ -226626,9 +225857,9 @@ entities: pos: -5.5,87.5 parent: 2 missingComponents: + - Damageable - Destructible - Construction - - Damageable - uid: 26503 components: - type: Transform @@ -226643,9 +225874,9 @@ entities: pos: -7.5,87.5 parent: 2 missingComponents: + - Damageable - Destructible - Construction - - Damageable - uid: 30218 components: - type: MetaData @@ -226654,9 +225885,9 @@ entities: pos: -3.5,87.5 parent: 2 missingComponents: + - Damageable - Destructible - Construction - - Damageable - proto: WindoorSecureEngineeringLocked entities: - uid: 16745 @@ -226665,20 +225896,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,31.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - uid: 16746 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,32.5 parent: 2 - - type: DeviceLinkSink - links: - - 30284 - - 30285 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 942 @@ -226748,6 +225971,11 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-28.5 parent: 2 + - uid: 22883 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - uid: 14899 @@ -226756,20 +225984,12 @@ entities: rot: 3.141592653589793 rad pos: 27.5,11.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - uid: 14900 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,11.5 parent: 2 - - type: DeviceLinkSink - links: - - 30414 - - 30410 - uid: 15273 components: - type: Transform @@ -228889,11 +228109,6 @@ entities: - type: Transform pos: -71.5,-69.5 parent: 2 - - uid: 21553 - components: - - type: Transform - pos: -62.5,-69.5 - parent: 2 - uid: 23061 components: - type: Transform @@ -228943,6 +228158,11 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-17.5 parent: 28663 + - uid: 30942 + components: + - type: Transform + pos: -62.5,-69.5 + parent: 2 - proto: WoodenBench entities: - uid: 322 @@ -229306,7 +228526,6 @@ entities: parent: 2 - type: TimedSpawner maximumEntitiesSpawned: 3 - minimumEntitiesSpawned: 2 intervalSeconds: 960 chance: 1 prototypes: diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 58ff9247b85..80bce4b9228 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -18042,6 +18042,12 @@ entities: - type: Transform pos: 91.5,71.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 31366: + - DoorStatus: Close - uid: 16663 components: - type: Transform @@ -18492,12 +18498,24 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-55.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12402: + - DoorStatus: DoorBolt - uid: 12402 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-55.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12401: + - DoorStatus: DoorBolt - uid: 23029 components: - type: Transform @@ -18512,6 +18530,12 @@ entities: - type: Transform pos: 99.5,0.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23457: + - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 2870 @@ -18586,11 +18610,23 @@ entities: - type: Transform pos: 25.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15609: + - DoorStatus: Close - uid: 15612 components: - type: Transform pos: 27.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15610: + - DoorStatus: Close - uid: 33581 components: - type: Transform @@ -18618,11 +18654,23 @@ entities: - type: Transform pos: 16.5,-36.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10120: + - DoorStatus: DoorBolt - uid: 10120 components: - type: Transform pos: 16.5,-33.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10119: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 3715 @@ -18649,36 +18697,72 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12421: + - DoorStatus: DoorBolt - uid: 12404 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-47.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12395: + - DoorStatus: Close - uid: 12420 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-62.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12400: + - DoorStatus: Close - uid: 12421 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-62.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12403: + - DoorStatus: DoorBolt - uid: 12503 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-59.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12397: + - DoorStatus: Close - uid: 12504 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-62.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12399: + - DoorStatus: Close - uid: 20640 components: - type: Transform @@ -18713,6 +18797,12 @@ entities: - type: Transform pos: 96.5,0.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23458: + - DoorStatus: DoorBolt - uid: 24737 components: - type: Transform @@ -18792,6 +18882,8 @@ entities: - type: Transform pos: -41.5,-1.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 3000: @@ -18837,21 +18929,53 @@ entities: - type: Transform pos: 22.5,-50.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 19166: + - DoorStatus: DoorBolt + 19165: + - DoorStatus: DoorBolt - uid: 19164 components: - type: Transform pos: 22.5,-49.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 19166: + - DoorStatus: DoorBolt + 19165: + - DoorStatus: DoorBolt - uid: 19165 components: - type: Transform pos: 20.5,-50.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 19164: + - DoorStatus: DoorBolt + 19163: + - DoorStatus: DoorBolt - uid: 19166 components: - type: Transform pos: 20.5,-49.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 19164: + - DoorStatus: DoorBolt + 19163: + - DoorStatus: DoorBolt - uid: 26786 components: - type: Transform @@ -18938,6 +19062,8 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,32.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 6767 @@ -19008,38 +19134,80 @@ entities: - type: Transform pos: -29.5,-48.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12404: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12397 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-58.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12503: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12399 components: - type: Transform pos: -32.5,-64.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12504: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12400 components: - type: Transform pos: -37.5,-64.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 12420: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 15609 components: - type: Transform pos: 25.5,-61.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 15611: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 15610 components: - type: Transform pos: 27.5,-61.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 15612: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 31366 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,74.5 parent: 13329 + - type: DeviceLinkSource + linkedPorts: + 16079: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 3833 @@ -19047,6 +19215,8 @@ entities: - type: Transform pos: -38.5,16.5 parent: 13329 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 3834: @@ -27381,17 +27551,18 @@ entities: - type: Transform pos: 63.5,-57.5 parent: 13329 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 1203 components: - type: Transform - pos: -6.5,25.5 + rot: -1.5707963267948966 rad + pos: -7.5,28.5 parent: 13329 - uid: 1204 components: - type: Transform - pos: -7.5,28.5 + pos: -6.5,25.5 parent: 13329 - uid: 3030 components: @@ -27401,52 +27572,62 @@ entities: - uid: 3758 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,32.5 parent: 13329 - uid: 3759 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,34.5 parent: 13329 - uid: 3760 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,40.5 parent: 13329 - uid: 3761 components: - type: Transform + rot: -1.5707963267948966 rad pos: -41.5,42.5 parent: 13329 - uid: 6764 components: - type: Transform + rot: 3.141592653589793 rad pos: -4.5,76.5 parent: 13329 - uid: 10112 components: - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-37.5 parent: 13329 - uid: 10113 components: - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-35.5 parent: 13329 - uid: 12422 components: - type: Transform + rot: -1.5707963267948966 rad pos: -43.5,-32.5 parent: 13329 - uid: 12423 components: - type: Transform + rot: -1.5707963267948966 rad pos: -43.5,-39.5 parent: 13329 - uid: 13166 components: - type: Transform - pos: -30.5,-20.5 + rot: 3.141592653589793 rad + pos: -37.5,-20.5 parent: 13329 - uid: 13167 components: @@ -27456,27 +27637,30 @@ entities: - uid: 13252 components: - type: Transform - pos: -37.5,-20.5 + rot: 3.141592653589793 rad + pos: -30.5,-20.5 parent: 13329 - uid: 13282 components: - type: Transform - pos: -28.5,-30.5 + pos: -33.5,-30.5 parent: 13329 - uid: 13283 components: - type: Transform - pos: -33.5,-30.5 + rot: 1.5707963267948966 rad + pos: 95.5,61.5 parent: 13329 - uid: 13284 components: - type: Transform - pos: 95.5,61.5 + rot: 1.5707963267948966 rad + pos: 95.5,66.5 parent: 13329 - uid: 13285 components: - type: Transform - pos: 95.5,66.5 + pos: -28.5,-30.5 parent: 13329 - proto: AtmosFixBlockerMarker entities: @@ -164811,6 +164995,11 @@ entities: - type: Transform pos: 106.5,-45.5 parent: 13329 + - uid: 34593 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 13329 - uid: 35403 components: - type: Transform @@ -165044,6 +165233,11 @@ entities: - type: Transform pos: 36.5,56.5 parent: 13329 + - uid: 34228 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 13329 - uid: 34456 components: - type: Transform @@ -182222,13 +182416,6 @@ entities: pos: 22.5,15.5 parent: 13329 - proto: SignAtmos - entities: - - uid: 26471 - components: - - type: Transform - pos: 78.5,-21.5 - parent: 13329 -- proto: SignAtmosMinsky entities: - uid: 26468 components: @@ -182245,6 +182432,11 @@ entities: - type: Transform pos: 90.5,-19.5 parent: 13329 + - uid: 26471 + components: + - type: Transform + pos: 78.5,-21.5 + parent: 13329 - proto: SignBar entities: - uid: 1188 @@ -182333,8 +182525,6 @@ entities: - type: Transform pos: 16.5,39.5 parent: 13329 -- proto: SignChemistry1 - entities: - uid: 18455 components: - type: Transform @@ -182775,13 +182965,6 @@ entities: - type: Transform pos: 70.5,42.5 parent: 13329 -- proto: SignDrones - entities: - - uid: 26692 - components: - - type: Transform - pos: 82.5,-21.5 - parent: 13329 - proto: SignElectricalMed entities: - uid: 4728 @@ -182976,20 +183159,16 @@ entities: parent: 13329 - proto: SignHydro1 entities: - - uid: 20091 + - uid: 20090 components: - type: Transform - pos: -11.5,33.5 + pos: -2.5,37.5 parent: 13329 -- proto: SignHydro2 - entities: - - uid: 20090 + - uid: 20091 components: - type: Transform - pos: -2.5,37.5 + pos: -11.5,33.5 parent: 13329 -- proto: SignHydro3 - entities: - uid: 20092 components: - type: Transform @@ -183068,6 +183247,13 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 13329 +- proto: SignMaterials + entities: + - uid: 26692 + components: + - type: Transform + pos: 82.5,-21.5 + parent: 13329 - proto: SignMedical entities: - uid: 10600 @@ -183303,21 +183489,17 @@ entities: - type: Transform pos: 39.5,-12.5 parent: 13329 -- proto: SignScience1 - entities: - - uid: 20084 - components: - - type: Transform - pos: 26.5,-48.5 - parent: 13329 -- proto: SignScience2 - entities: - uid: 19938 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-40.5 parent: 13329 + - uid: 20084 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 13329 - proto: SignSecurearea entities: - uid: 15808 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 0a5da0bd316..3139f0630b1 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -47,6 +47,7 @@ tilemap: 101: FloorSteelHerringbone 102: FloorSteelLime 103: FloorSteelMini + 1: FloorSteelMono 106: FloorSteelPavement 107: FloorSteelPavementVertical 108: FloorTechMaint @@ -76,7 +77,7 @@ entities: version: 6 0,0: ind: 0,0 - tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD + tiles: XQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAeQAAAAAAeQAAAAAAHwAAAAADHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD version: 6 -1,-1: ind: -1,-1 @@ -88,7 +89,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAABTQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAPAAAAAAATQAAAAACagAAAAABagAAAAAAagAAAAADTQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAAAagAAAAADagAAAAABagAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAPAAAAAAATQAAAAADagAAAAADagAAAAAAagAAAAADTQAAAAACTQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAPAAAAAAATQAAAAACagAAAAADagAAAAADagAAAAAATQAAAAABTQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAPAAAAAAATQAAAAABagAAAAAAagAAAAABagAAAAAATQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAADTQAAAAABTQAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATQAAAAADPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAJgAAAAABPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,1: ind: 0,1 @@ -100,7 +101,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAABPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA version: 6 -3,0: ind: -3,0 @@ -140,7 +141,7 @@ entities: version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD + tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD version: 6 -4,3: ind: -4,3 @@ -148,7 +149,7 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,3: ind: -2,3 @@ -156,7 +157,7 @@ entities: version: 6 -3,4: ind: -3,4 - tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 @@ -176,7 +177,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: fgAAAAAAeQAAAAABeQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 @@ -192,7 +193,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAABbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA + tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA version: 6 1,-1: ind: 1,-1 @@ -200,11 +201,11 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: HwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAADHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: HwAAAAAAfgAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -212,11 +213,11 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA + tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -224,7 +225,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-3: ind: 1,-3 @@ -232,39 +233,35 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: fgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADTgAAAAAATgAAAAAATgAAAAACTgAAAAAATgAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA + tiles: XQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAACZgAAAAABZgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABZgAAAAADZgAAAAABZgAAAAAAZgAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACZgAAAAADZgAAAAACZgAAAAACZgAAAAACZgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAZgAAAAACZgAAAAABZgAAAAABZgAAAAABZgAAAAACZgAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAZgAAAAACZgAAAAACZgAAAAACZgAAAAABZgAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAZgAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: XQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAHwAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -308,15 +305,15 @@ entities: version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA version: 6 -6,3: ind: -6,3 @@ -324,11 +321,11 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 @@ -340,15 +337,15 @@ entities: version: 6 -4,-4: ind: -4,-4 - tiles: bAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD + tiles: fQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD version: 6 -5,-4: ind: -5,-4 - tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAADfgAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAACHwAAAAACJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC + tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACJwAAAAAAJwAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAJwAAAAAAJwAAAAAAJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC version: 6 -6,-4: ind: -6,-4 @@ -360,11 +357,11 @@ entities: version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAACfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAA version: 6 -6,-5: ind: -6,-5 @@ -372,7 +369,7 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAHwAAAAACEQAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACEQAAAAAAEQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACEQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACEQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAEQAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAADEQAAAAAAEQAAAAAAHwAAAAABEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA version: 6 0,4: ind: 0,4 @@ -452,51 +449,44 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 657: -8,-44 - 1390: 23,23 - 1391: 21,23 - 2506: -35,40 - 2507: -37,40 + 1258: 23,23 + 1259: 21,23 + 2210: -35,40 + 2211: -37,40 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 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 + 2065: 5,-30 + 2370: 20,-24 + 2371: 20,-26 + 2372: 20,-28 + 2373: 20,-30 + 2374: 20,-32 + 2375: 20,-34 + 2376: 20,-36 - node: color: '#FFFFFFFF' id: Arrows decals: - 1388: 23,25 - 1389: 21,25 - 1873: 31,21 - 3064: -31,-10 + 1256: 23,25 + 1257: 21,25 + 1730: 31,21 + 2648: -31,-10 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 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: - 2789: -19,-67 + 1136: 33,-3 + 2363: 21,-35 + 2364: 21,-33 + 2365: 21,-31 + 2366: 21,-29 + 2367: 21,-27 + 2368: 21,-25 + 2369: 21,-23 - node: color: '#FFFFFFFF' id: Bot @@ -520,1187 +510,1043 @@ entities: 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 + 680: 19,0 + 742: -30,37 + 951: 5,43 + 952: 3,41 + 953: 7,41 + 1041: -41,59 + 1043: 14,-2 + 1044: 15,-2 + 1092: 23,-6 + 1093: 23,-5 + 1094: 23,-4 + 1095: 25,-6 + 1096: 25,-5 + 1097: 25,-4 + 1098: 27,-6 + 1099: 27,-5 + 1100: 27,-4 + 1101: 29,-6 + 1102: 29,-5 + 1103: 29,-4 + 1141: 21,-20 + 1142: 18,-20 + 1143: 18,-18 + 1144: 18,-17 + 1145: 19,-17 + 1146: 19,-18 + 1147: 20,-18 + 1148: 20,-17 + 1149: 20,-15 + 1150: 20,-14 + 1151: 21,-14 + 1152: 21,-15 + 1153: 22,-15 + 1154: 22,-14 + 1203: 36,7 + 1204: 35,7 + 1211: 22,20 + 1212: 22,21 + 1213: 23,21 + 1214: 23,20 + 1219: 27,9 + 1220: 27,10 + 1278: 20,23 + 1445: -1,29 + 1646: 5,-26 + 1647: 5,-25 + 1648: 7,-30 + 1721: 33,17 + 1722: 32,17 + 1723: 31,17 + 2042: -40,54 + 2104: 1,-7 + 2105: -1,-7 + 2225: -13,38 + 2226: -12,31 + 2236: 12,-30 + 2237: 12,-29 + 2238: 12,-28 + 2239: 11,-23 + 2240: 10,-23 + 2246: 32,21 + 2247: 32,22 + 2248: 32,23 + 2261: 41,12 + 2262: 41,13 + 2263: 41,14 + 2325: 32,39 + 2326: 24,33 + 2380: 15,-22 + 2392: 7,35 + 2425: -4,-29 + 2426: -33,10 + 2427: -26,13 + 2428: -14,5 + 2429: 6,6 + 2430: -6,-9 + 2445: -43,19 + 2446: -41,19 + 2647: -33,-12 + 2666: -28,-14 + 2667: -23,-15 + 2668: -19,-23 + 2741: -20,-5 + 2840: 18,16 + 2841: 20,16 + 2853: 12,14 + 2856: 14,-18 + 2898: -6,-48 + 2899: -6,-49 + 2900: -6,-50 + 2901: -6,-51 + 2915: -2,-44 + 2916: -3,-44 + 2917: -1,-44 + 2918: 1,-44 + 2919: 2,-44 + 2920: 3,-44 + 2921: 4,-44 + 3033: 4,-51 + 3037: -4,-48 + 3038: -3,-48 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: Bot - decals: - 634: 14,-19 - - node: - color: '#52B4E996' id: BotGreyscale decals: - 2733: -4,-52 - 2734: -5,-52 - - node: - color: '#DE3A3A96' - id: BotGreyscale - decals: - 2735: -11,-52 - 2736: -12,-52 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 2429: -22,-1 - 2785: -18,-69 - 2786: -18,-68 - 2787: -18,-67 + 2133: -22,-1 - node: color: '#FFFFFFFF' id: BotLeft decals: - 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 + 2040: -39,56 + 2041: -41,56 + 2151: -57,-22 + 2207: -42,42 + 2208: -46,42 + 2209: -49,42 + 2249: 33,20 + 2250: 33,19 + 2264: 40,14 + 2447: -44,19 + 2448: -42,19 + 2449: -40,19 - node: color: '#FFFFFFFF' id: BotRight decals: - 2240: 3,-40 - 2262: -23,-40 - 2263: -22,-40 - 2500: -45,51 - 2501: -45,52 - 2502: -45,53 + 2204: -45,51 + 2205: -45,52 + 2206: -45,53 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 2729: -24,-5 - 2788: -19,-68 + 2357: -24,-5 - node: color: '#FFFFFFFF' id: Box decals: - 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: - 2782: -19,-70 - 2783: -18,-70 - 2784: -17,-70 + 2265: 39,9 + 2896: -14,-38 + 2897: -12,-38 + 3031: -5,-54 + 3032: -4,-54 + 3034: -4,-50 + 3035: 4,-49 + 3036: 4,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1845: -6,40 - 1846: -14,40 - 2113: -46,-13 - 2114: -46,-15 - 2115: -46,-17 - 2116: -46,-19 - 2117: -46,-21 + 1702: -6,40 + 1703: -14,40 + 1970: -46,-13 + 1971: -46,-15 + 1972: -46,-17 + 1973: -46,-19 + 1974: -46,-21 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1530: -7,36 - 1697: -57,-50 - 1807: -50,24 + 1387: -7,36 + 1554: -57,-50 + 1664: -50,24 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1529: -13,36 - 1714: -68,-50 + 1386: -13,36 + 1571: -68,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1525: -7,32 - 1705: -57,-60 - 1822: -50,12 + 1382: -7,32 + 1562: -57,-60 + 1679: -50,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1524: -13,32 - 1715: -68,-60 + 1381: -13,32 + 1572: -68,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1620: -12,40 - 1731: -66,-50 + 1477: -12,40 + 1588: -66,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1622: -8,40 - 1729: -64,-50 - 1730: -59,-50 + 1479: -8,40 + 1586: -64,-50 + 1587: -59,-50 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1619: -12,42 - 1706: -57,-59 + 1476: -12,42 + 1563: -57,-59 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1621: -8,42 - 1699: -59,-60 + 1478: -8,42 + 1556: -59,-60 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 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 + 1300: -17,37 + 1383: -7,33 + 1384: -7,34 + 1385: -7,35 + 1475: -12,41 + 1505: -17,39 + 1506: -17,40 + 1564: -57,-58 + 1656: -50,16 + 1657: -50,17 + 1658: -50,18 + 1659: -50,19 + 1660: -50,20 + 1661: -50,21 + 1662: -50,22 + 1663: -50,23 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 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 + 1388: -8,36 + 1389: -9,36 + 1390: -10,36 + 1391: -11,36 + 1392: -12,36 + 1471: -9,40 + 1472: -10,40 + 1473: -11,40 + 1582: -60,-50 + 1583: -61,-50 + 1584: -65,-50 + 1585: -62,-50 + 1665: -52,24 + 1666: -51,24 + 1667: -53,24 + 1668: -54,24 + 1669: -55,24 + 1670: -57,24 + 1671: -56,24 + 1672: -58,24 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 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 + 1323: -23,38 + 1370: -7,32 + 1371: -8,32 + 1372: -9,32 + 1373: -10,32 + 1374: -11,32 + 1375: -12,32 + 1376: -13,32 + 1468: -10,42 + 1469: -9,42 + 1470: -11,42 + 1555: -60,-60 + 1557: -64,-60 + 1558: -66,-60 + 1673: -58,12 + 1674: -57,12 + 1675: -56,12 + 1676: -55,12 + 1677: -54,12 + 1678: -51,12 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1520: -13,32 - 1521: -13,33 - 1522: -13,34 - 1523: -13,35 - 1617: -8,41 + 1377: -13,32 + 1378: -13,33 + 1379: -13,34 + 1380: -13,35 + 1474: -8,41 - node: color: '#9FED5896' id: BrickTileSteelBox decals: - 2397: 2,-9 - 2398: 2,-10 - 2399: 2,-11 + 2101: 2,-9 + 2102: 2,-10 + 2103: 2,-11 - node: color: '#9FED5896' id: BrickTileSteelCornerNe decals: - 2388: 1,-7 - 2452: -31,10 - 2463: -31,13 + 2092: 1,-7 + 2156: -31,10 + 2167: -31,13 - node: color: '#D381C996' id: BrickTileSteelCornerNe decals: - 2555: 33,9 + 2251: 33,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2449: -62,-24 - 2643: -25,11 + 2153: -62,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerNw decals: - 2389: -1,-7 - 2453: -33,10 - 2464: -33,13 + 2093: -1,-7 + 2157: -33,10 + 2168: -33,13 - node: color: '#D381C996' id: BrickTileSteelCornerNw decals: - 2556: 31,9 + 2252: 31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2450: -63,-24 - 2642: -27,11 + 2154: -63,-24 - node: color: '#9FED5896' id: BrickTileSteelCornerSe decals: - 2455: -31,6 - 2466: -31,12 + 2159: -31,6 + 2170: -31,12 - node: color: '#D381C996' id: BrickTileSteelCornerSe decals: - 2558: 33,7 + 2254: 33,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2451: -62,-25 - 2644: -25,7 + 2155: -62,-25 - node: color: '#9FED5896' id: BrickTileSteelCornerSw decals: - 2392: -1,-10 - 2454: -33,6 - 2465: -33,12 + 2096: -1,-10 + 2158: -33,6 + 2169: -33,12 - node: color: '#D381C996' id: BrickTileSteelCornerSw decals: - 2557: 31,7 + 2253: 31,7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2448: -63,-25 - 2641: -27,7 + 2152: -63,-25 - node: color: '#9FED5896' id: BrickTileSteelEndS decals: - 2396: 1,-12 + 2100: 1,-12 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 1723: -69,-52 - 1724: -69,-58 + 1580: -69,-52 + 1581: -69,-58 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 1704: -61,-61 - 1711: -56,-56 + 1561: -61,-61 + 1568: -56,-56 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 1716: -68,-60 - 1721: -69,-53 - 1722: -69,-51 + 1573: -68,-60 + 1578: -69,-53 + 1579: -69,-51 - node: color: '#9FED5896' id: BrickTileSteelInnerSw decals: - 2394: 1,-10 + 2098: 1,-10 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 1712: -56,-55 - 1713: -56,-52 + 1569: -56,-55 + 1570: -56,-52 - node: color: '#9FED5896' id: BrickTileSteelLineE decals: - 2384: 1,-11 - 2385: 1,-10 - 2386: 1,-9 - 2387: 1,-8 - 2457: -31,7 - 2458: -31,8 - 2459: -31,9 + 2088: 1,-11 + 2089: 1,-10 + 2090: 1,-9 + 2091: 1,-8 + 2161: -31,7 + 2162: -31,8 + 2163: -31,9 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 1717: -69,-57 - 1718: -69,-56 - 1720: -69,-54 - 2649: -25,8 - 2650: -25,9 - 2651: -25,10 + 1574: -69,-57 + 1575: -69,-56 + 1577: -69,-54 - node: color: '#334E6DC8' id: BrickTileSteelLineN decals: - 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 + 1301: -18,37 + 1302: -19,37 + 1303: -20,37 + 1304: -21,37 + 1305: -22,37 + 1306: -24,37 + 1307: -25,37 + 1308: -26,37 + 1309: -28,37 - node: color: '#9FED5896' id: BrickTileSteelLineN decals: - 2467: -32,13 + 2171: -32,13 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 1668: 26,32 - 1703: -62,-61 - 2652: -26,11 + 1525: 26,32 + 1560: -62,-61 - node: color: '#9FED5896' id: BrickTileSteelLineS decals: - 2393: 0,-10 - 2456: -32,6 + 2097: 0,-10 + 2160: -32,6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 1666: -27,24 - 1747: 8,-18 - 2648: -26,7 + 1523: -27,24 + 1604: 8,-18 - node: color: '#9FED5896' id: BrickTileSteelLineW decals: - 2390: -1,-8 - 2391: -1,-9 - 2395: 1,-11 - 2460: -33,9 + 2094: -1,-8 + 2095: -1,-9 + 2099: 1,-11 + 2164: -33,9 - node: color: '#D381C996' id: BrickTileSteelLineW decals: - 2559: 31,8 + 2255: 31,8 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 1667: 25,26 - 1710: -56,-53 - 2645: -27,8 - 2646: -27,9 - 2647: -27,10 + 1524: 25,26 + 1567: -56,-53 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2631: -19,40 + 2327: -19,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 2952: -21,-15 - 2962: -13,-15 - 3018: -13,-19 - 3046: -29,-16 - 3091: -12,-9 + 2536: -21,-15 + 2546: -13,-15 + 2602: -13,-19 + 2630: -29,-16 + 2675: -12,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 2191: -2,-33 + 2048: -2,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 2247: -22,-41 - 2268: -16,-39 - 2300: -6,-28 - 2849: -40,19 + 2433: -40,19 + 2973: -25,-45 + 2974: -26,-43 + 2975: -20,-45 + 2983: -14,-46 + 2985: -20,-49 + 2992: -21,-57 + 3017: -1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 2951: -21,-15 - 2997: -13,-19 + 2535: -21,-15 + 2581: -13,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2632: -21,40 + 2328: -21,40 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2953: -23,-15 - 2961: -15,-15 - 3019: -19,-19 - 3047: -31,-16 - 3090: -16,-9 + 2537: -23,-15 + 2545: -15,-15 + 2603: -19,-19 + 2631: -31,-16 + 2674: -16,-9 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 2192: -4,-33 + 2049: -4,-33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 2246: -25,-41 - 2267: -20,-39 - 2301: -14,-28 - 2523: 5,-24 - 2528: 9,-23 - 2853: -44,19 + 2227: 5,-24 + 2232: 9,-23 + 2437: -44,19 + 2972: -23,-45 + 2981: -16,-45 + 2982: -11,-46 + 2987: -16,-49 + 2995: -15,-57 + 3006: -10,-42 + 3015: 3,-40 + 3016: 1,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 2950: -23,-15 - 2990: -19,-19 + 2534: -23,-15 + 2574: -19,-19 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2949: -21,-24 - 2964: -13,-17 - 3016: -13,-23 - 3055: -29,-24 - 3093: -12,-13 + 2533: -21,-24 + 2548: -13,-17 + 2600: -13,-23 + 2639: -29,-24 + 2677: -12,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 2193: -2,-36 + 2050: -2,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1785: 7,-30 - 2231: 3,-45 - 2249: -22,-45 - 2269: -16,-45 - 2303: -6,-32 - 2856: -40,17 + 1642: 7,-30 + 2440: -40,17 + 2970: -26,-41 + 2986: -20,-47 + 2988: -19,-51 + 2994: -21,-55 + 3009: -9,-39 + 3010: -5,-39 + 3011: -4,-38 + 3013: 0,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 2946: -21,-24 - 2996: -13,-23 + 2530: -21,-24 + 2580: -13,-23 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 2476: -37,0 - 2948: -23,-24 - 2965: -15,-17 - 3017: -19,-23 - 3054: -31,-24 - 3092: -16,-13 + 2180: -37,0 + 2532: -23,-24 + 2549: -15,-17 + 2601: -19,-23 + 2638: -31,-24 + 2676: -16,-13 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 2194: -4,-36 + 2051: -4,-36 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 1784: 5,-30 - 2232: 0,-45 - 2248: -25,-45 - 2272: -20,-45 - 2302: -14,-32 - 2854: -44,17 + 1641: 5,-30 + 2438: -44,17 + 2984: -16,-47 + 2989: -17,-51 + 2993: -15,-55 + 3007: -11,-39 + 3008: -7,-39 + 3012: -2,-38 + 3014: 3,-38 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 2947: -23,-24 - 2991: -19,-23 + 2531: -23,-24 + 2575: -19,-23 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndS + decals: + 2980: -20,-40 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1608: -3,32 - 1632: -12,40 + 1465: -3,32 + 1489: -12,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2939: -21,-21 + 2523: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 2663: 12,20 + 2347: 12,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 2379: -11,-42 + 2976: -26,-45 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2911: -21,-21 + 2495: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 1606: -3,32 - 1634: -8,40 + 1463: -3,32 + 1491: -8,40 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 2940: -19,-21 + 2524: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerNw decals: - 2411: 7,-9 + 2115: 7,-9 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2662: 14,20 + 2346: 14,20 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 2378: -5,-42 - 2527: 9,-24 + 2231: 9,-24 + 3029: 3,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2912: -19,-21 + 2496: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 1609: -3,32 - 1633: -12,42 + 1466: -3,32 + 1490: -12,42 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 2937: -21,-21 + 2521: -21,-21 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2661: 12,23 + 2345: 12,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 1788: 7,-25 - 2377: -11,-40 + 1645: 7,-25 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: - 2909: -21,-21 + 2493: -21,-21 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 1607: -3,32 - 1631: -8,42 + 1464: -3,32 + 1488: -8,42 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 2938: -19,-21 + 2522: -19,-21 - node: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 2410: 7,-4 - 2412: 7,-11 + 2114: 7,-4 + 2116: 7,-11 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2660: 14,23 + 2344: 14,23 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 1787: 9,-25 - 2376: -5,-40 + 1644: 9,-25 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2910: -19,-21 + 2494: -19,-21 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 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 + 1399: -4,29 + 1400: -4,30 + 1401: -4,31 + 1402: -4,33 + 1403: -4,35 + 1404: -15,29 + 1405: -15,30 + 1406: -15,31 + 1407: -15,33 + 1408: -15,35 + 1486: -12,41 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 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: - 2684: -37,-60 - 2685: -37,-59 - 2686: -37,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteLineE - decals: - 2671: -40,-59 + 2513: -21,-17 + 2514: -21,-18 + 2515: -21,-19 + 2516: -21,-20 + 2517: -21,-22 + 2518: -21,-23 + 2547: -13,-16 + 2589: -13,-22 + 2590: -13,-21 + 2591: -13,-20 + 2625: -29,-22 + 2626: -29,-21 + 2627: -29,-20 + 2628: -29,-19 + 2629: -29,-18 + 2678: -12,-12 + 2679: -12,-10 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 2655: 12,21 - 2656: 12,22 - 2676: -40,-64 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineE - decals: - 2696: -42,-60 - 2697: -42,-59 - 2698: -42,-58 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineE - decals: - 2693: -42,-64 - 2694: -42,-63 - 2695: -42,-62 + 2339: 12,21 + 2340: 12,22 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 2197: -2,-35 - 2198: -2,-34 - 2681: -37,-64 - 2682: -37,-63 - 2683: -37,-62 + 2054: -2,-35 + 2055: -2,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 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 + 1632: 7,-29 + 1633: 7,-28 + 1634: 7,-27 + 1635: 7,-26 + 2058: -4,-35 + 2059: -4,-34 + 2442: -40,18 + 2971: -26,-40 + 2977: -26,-44 - 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 + 2487: -21,-23 + 2488: -21,-22 + 2489: -21,-20 + 2490: -21,-19 + 2499: -21,-18 + 2500: -21,-17 + 2586: -13,-22 + 2587: -13,-21 + 2588: -13,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 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 + 1360: -18,37 + 1361: -19,37 + 1362: -20,37 + 1363: -21,37 + 1364: -22,37 + 1365: -25,37 + 1366: -26,37 + 1367: -28,37 + 1368: -24,37 + 1483: -9,40 + 1484: -10,40 + 1485: -11,40 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2941: -20,-21 - 3008: -15,-19 - 3009: -16,-19 - 3010: -17,-19 - 3011: -18,-19 - 3096: -13,-9 - 3097: -14,-9 - 3098: -15,-9 + 2525: -20,-21 + 2592: -15,-19 + 2593: -16,-19 + 2594: -17,-19 + 2595: -18,-19 + 2680: -13,-9 + 2681: -14,-9 + 2682: -15,-9 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 2553: 17,16 - 2554: 18,16 - 2653: 13,20 + 2337: 13,20 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 2199: -3,-33 - 2243: -3,-39 + 2056: -3,-33 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 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 + 2062: -3,-34 + 2228: 8,-24 + 2230: 7,-24 + 2233: 10,-23 + 2234: 11,-23 + 2235: 12,-23 + 2434: -41,19 + 2435: -42,19 + 2436: -43,19 + 2978: -22,-45 + 2979: -21,-45 + 3018: -9,-42 + 3019: -8,-42 + 3020: -6,-42 + 3021: -7,-42 + 3022: -5,-42 + 3023: -4,-42 + 3024: -3,-42 + 3025: -2,-42 + 3026: 2,-42 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 1459: -26,39 - 1460: -28,39 - 1461: -27,39 - 2914: -20,-21 - 2998: -15,-19 - 2999: -16,-19 - 3000: -17,-19 - 3001: -18,-19 + 1316: -26,39 + 1317: -28,39 + 1318: -27,39 + 2498: -20,-21 + 2582: -15,-19 + 2583: -16,-19 + 2584: -17,-19 + 2585: -18,-19 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1623: -9,42 - 1624: -10,42 - 1625: -11,42 + 1480: -9,42 + 1481: -10,42 + 1482: -11,42 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 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 + 2178: -34,0 + 2179: -36,0 + 2526: -20,-21 + 2596: -17,-23 + 2597: -16,-23 + 2598: -15,-23 + 2599: -14,-23 + 2640: -30,-24 + 2684: -13,-13 + 2685: -15,-13 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 2407: 6,-4 - 2408: 5,-4 - 2409: 3,-4 + 2111: 6,-4 + 2112: 5,-4 + 2113: 3,-4 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2552: 17,14 - 2654: 13,23 + 2338: 13,23 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 2200: -3,-36 + 2057: -3,-36 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 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 + 2063: -3,-35 + 2229: 8,-25 + 2439: -43,17 + 2441: -42,17 + 2990: -20,-51 + 2991: -16,-51 + 3027: -10,-39 + 3028: -6,-39 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 1458: -27,39 - 2913: -20,-21 - 2992: -17,-23 - 2993: -16,-23 - 2994: -15,-23 - 2995: -14,-23 + 1315: -27,39 + 2497: -20,-21 + 2576: -17,-23 + 2577: -16,-23 + 2578: -15,-23 + 2579: -14,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 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 + 1393: -16,29 + 1394: -16,30 + 1395: -16,31 + 1396: -16,32 + 1397: -16,33 + 1398: -16,35 + 1409: -5,29 + 1410: -5,30 + 1411: -5,31 + 1412: -5,33 + 1413: -5,35 + 1487: -8,41 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 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 + 2507: -23,-22 + 2508: -23,-21 + 2509: -23,-20 + 2510: -23,-19 + 2511: -23,-18 + 2512: -23,-16 + 2519: -19,-22 + 2520: -19,-20 + 2632: -31,-17 + 2633: -31,-19 + 2634: -31,-20 + 2635: -31,-21 + 2636: -31,-22 + 2637: -31,-23 + 2683: -16,-12 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 2402: 7,-12 - 2403: 7,-8 - 2404: 7,-7 - 2405: 7,-6 - 2406: 7,-5 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 2687: -35,-60 - 2688: -35,-59 - 2689: -35,-58 - - node: - color: '#A4610696' - id: BrickTileWhiteLineW - decals: - 2670: -37,-59 + 2106: 7,-12 + 2107: 7,-8 + 2108: 7,-7 + 2109: 7,-6 + 2110: 7,-5 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 2658: 14,21 - 2659: 14,22 - 2677: -37,-64 - - node: - color: '#D4D4D428' - id: BrickTileWhiteLineW - decals: - 2699: -40,-60 - 2700: -40,-59 - 2701: -40,-58 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineW - decals: - 2690: -40,-64 - 2691: -40,-63 - 2692: -40,-62 + 2342: 14,21 + 2343: 14,22 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 2195: -4,-35 - 2196: -4,-34 - 2678: -35,-64 - 2679: -35,-63 - 2680: -35,-62 + 2052: -4,-35 + 2053: -4,-34 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 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 + 1636: 5,-28 + 1637: 5,-27 + 1638: 5,-29 + 1639: 5,-26 + 1640: 5,-25 + 1643: 9,-26 + 2060: -2,-35 + 2061: -2,-34 + 3030: 3,-41 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 2907: -19,-22 - 2908: -19,-20 - 2917: -23,-22 - 2918: -23,-21 - 2919: -23,-20 - 2920: -23,-19 - 2921: -23,-18 - 2922: -23,-16 + 2491: -19,-22 + 2492: -19,-20 + 2501: -23,-22 + 2502: -23,-21 + 2503: -23,-20 + 2504: -23,-19 + 2505: -23,-18 + 2506: -23,-16 - node: color: '#FFFFFFFF' id: Busha1 decals: 367: -40.05385,30.256437 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 1104: -25.204376,3.9985995 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1045: -67.012436,-29.136745 + 965: -67.012436,-29.136745 - node: color: '#9FED5896' id: Bushb1 decals: - 1078: 5.955755,-11.904804 + 998: 5.955755,-11.904804 - node: color: '#FFFFFFFF' id: Bushb1 @@ -1710,152 +1556,143 @@ entities: color: '#9FED5896' id: Bushb3 decals: - 1076: 5.424505,-4.9673038 + 996: 5.424505,-4.9673038 - node: color: '#FFFFFFFF' id: Bushb3 decals: 365: -39.256973,28.912687 - 1040: -71.06114,-43.947823 - 1733: -52.14543,-42.415432 + 960: -71.06114,-43.947823 + 1590: -52.14543,-42.415432 - node: color: '#9FED5896' id: Bushc1 decals: - 1075: 6.03388,-7.2173038 + 995: 6.03388,-7.2173038 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 949: -12.158052,22.978218 + 884: -12.158052,22.978218 - node: color: '#9FED5896' id: Bushc2 decals: - 1074: 6,-8 - 1077: 2.9401298,-4.9985538 + 994: 6,-8 + 997: 2.9401298,-4.9985538 - node: color: '#FFFFFFFF' id: Bushc2 decals: 366: -39.1476,33.037685 - 948: -9.158052,23.040718 + 883: -9.158052,23.040718 - node: color: '#FFFFFFFF' id: Bushc3 decals: 368: -39.11635,29.006437 - 1066: -65.91299,-37.046043 + 986: -65.91299,-37.046043 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 1058: -67.06147,-29.881145 - - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 1112: -27.485626,3.9673495 + 978: -67.06147,-29.881145 - node: color: '#FFFFFFFF' id: Bushe1 decals: - 1052: -65.58819,-29.014542 - 1111: -28.454376,3.9517245 + 972: -65.58819,-29.014542 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 1043: -71.81257,-43.137188 - 1053: -65.66631,-32.030167 - 1054: -59.71319,-35.530167 + 963: -71.81257,-43.137188 + 973: -65.66631,-32.030167 + 974: -59.71319,-35.530167 - node: color: '#FFFFFFFF' id: Bushe3 decals: - 1055: -65.26006,-35.280167 - 1056: -59.36944,-31.748917 - 1115: -24.141876,3.9673495 + 975: -65.26006,-35.280167 + 976: -59.36944,-31.748917 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 1284: -59.021492,-29.650486 + 1184: -59.021492,-29.650486 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 1047: -65.58819,-32.131794 - 1048: -59.291313,-31.866169 + 967: -65.58819,-32.131794 + 968: -59.291313,-31.866169 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 1049: -59.74444,-35.631794 - 1050: -65.52569,-29.053669 - 1283: -59.068367,-29.628086 + 969: -59.74444,-35.631794 + 970: -65.52569,-29.053669 + 1183: -59.068367,-29.628086 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 1051: -65.27569,-35.350544 + 971: -65.27569,-35.350544 - node: color: '#FFFFFFFF' id: Bushh2 decals: - 1059: -50.04093,-42.20576 + 979: -50.04093,-42.20576 - node: color: '#FFFFFFFF' id: Bushh3 decals: - 1057: -66.616165,-27.440277 - 1060: -53.009384,-36.94919 + 977: -66.616165,-27.440277 + 980: -53.009384,-36.94919 - node: color: '#FFFFFFFF' id: Bushi1 decals: 375: -38.850723,30.881437 - 940: -10.897953,23.01216 - 941: -7.147953,23.059034 - 943: -12.769052,22.88716 - 3188: -20,-22 + 875: -10.897953,23.01216 + 876: -7.147953,23.059034 + 878: -12.769052,22.88716 + 2772: -20,-22 - node: color: '#FFFFFFFF' id: Bushi2 decals: 374: -40.131973,32.52206 - 1079: 5.9999943,-7.451386 + 999: 5.9999943,-7.451386 - node: color: '#FFFFFFFF' id: Bushi3 decals: 372: -38.850723,29.881437 373: -40.05385,31.053312 - 1114: -28.032501,3.9673495 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 942: -9.757328,22.85591 - 1080: 5.4999943,-5.029511 - 1113: -25.548126,3.9829745 + 877: -9.757328,22.85591 + 1000: 5.4999943,-5.029511 - node: color: '#FFFFFFFF' id: Bushj1 decals: - 1044: -73.48444,-43.855938 - 1061: -68.11463,-38.9754 - 1067: -69.40792,-34.063843 + 964: -73.48444,-43.855938 + 981: -68.11463,-38.9754 + 987: -69.40792,-34.063843 - node: color: '#FFFFFFFF' id: Bushj2 decals: - 1062: -57.046288,-37.982056 + 982: -57.046288,-37.982056 - node: color: '#FFFFFFFF' id: Bushj3 decals: - 1063: -49.987144,-48.963146 + 983: -49.987144,-48.963146 - node: color: '#FFFFFFFF' id: Bushk1 @@ -1871,123 +1708,120 @@ entities: color: '#FFFFFFFF' id: Bushl1 decals: - 889: -59.13713,-56.211792 - 1081: 3.0098214,-4.939097 - 1599: -9.9612665,40.993107 + 824: -59.13713,-56.211792 + 1001: 3.0098214,-4.939097 + 1456: -9.9612665,40.993107 - node: color: '#FFFFFFFF' id: Bushl2 decals: - 890: -59.79338,-57.039917 - 1082: 6.009821,-11.977411 + 825: -59.79338,-57.039917 + 1002: 6.009821,-11.977411 - node: color: '#FFFFFFFF' id: Bushm2 decals: - 891: -59.16838,-57.789917 + 826: -59.16838,-57.789917 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 892: -65.91838,-51.868042 + 827: -65.91838,-51.868042 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 950: -10.126802,23.012297 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 662: -8,-45 + 885: -10.126802,23.012297 - node: color: '#52B4E996' id: CheckerNESW decals: 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 + 2550: -19,-17 + 2551: -19,-16 + 2552: -19,-15 + 2553: -18,-15 + 2554: -17,-15 + 2555: -17,-16 + 2556: -18,-16 + 2557: -18,-17 + 2558: -17,-17 + 2559: -18,-22 + 2560: -18,-21 + 2561: -18,-20 + 2562: -17,-20 + 2563: -17,-21 + 2564: -17,-22 + 2565: -16,-22 + 2566: -16,-21 + 2567: -16,-20 + 2568: -15,-20 + 2569: -15,-21 + 2570: -15,-22 + 2571: -14,-22 + 2572: -14,-21 + 2573: -14,-20 + 2610: -33,-20 + 2611: -34,-20 + 2612: -35,-20 + 2613: -35,-19 + 2614: -34,-19 + 2615: -33,-19 + 2616: -33,-18 + 2617: -34,-18 + 2618: -35,-18 + 2619: -35,-17 + 2620: -34,-17 + 2621: -33,-17 + 2622: -33,-16 + 2623: -34,-16 + 2624: -35,-16 - node: - color: '#D4D4D496' + color: '#9FED5896' id: CheckerNESW decals: - 1795: -15,8 + 2787: -28,13 + 2788: -27,13 + 2789: -29,12 + 2790: -28,11 + 2791: -27,11 + 2792: -29,10 + 2793: -28,9 + 2794: -27,9 + 2795: -29,8 + 2796: -28,7 + 2797: -27,7 - node: - color: '#EFB34196' + color: '#D4D4D496' id: CheckerNESW decals: - 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 + 1652: -15,8 - node: color: '#52B4E996' id: CheckerNWSE decals: 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 + 2702: -32,-8 + 2703: -32,-7 + 2704: -32,-6 + 2705: -31,-6 + 2706: -30,-6 + 2707: -29,-6 + 2708: -28,-6 + 2709: -28,-7 + 2710: -28,-8 + 2711: -29,-8 + 2712: -29,-7 + 2713: -30,-7 + 2714: -30,-8 + 2715: -31,-8 + 2716: -31,-7 + - node: + color: '#724276FF' + id: CheckerNWSE + decals: + 2842: 19,13 + 2843: 18,13 - node: color: '#79150096' id: CheckerNWSE @@ -2010,20 +1844,20 @@ entities: color: '#A4610696' id: CheckerNWSE decals: - 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 + 1004: 30,0 + 1005: 29,0 + 1006: 29,1 + 1007: 29,2 + 1008: 30,2 + 1009: 30,1 + 1010: 31,0 + 1011: 31,1 + 1012: 31,2 - node: color: '#EFB34196' id: CheckerNWSE decals: - 1119: 3,-28 + 1019: 3,-28 - node: color: '#FFFFFFFF' id: Delivery @@ -2051,71 +1885,68 @@ entities: 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 + 652: 14,-12 + 653: 14,-11 + 654: 14,-10 + 1045: 16,-2 + 1046: 17,-2 + 1138: 31,-6 + 1139: 31,-5 + 1140: 31,-4 + 1155: 18,-15 + 1156: 18,-14 + 1157: 19,-14 + 1158: 19,-15 + 1200: 38,7 + 1201: 39,7 + 1202: 40,7 + 1221: 28,9 + 1222: 28,10 + 1223: 26,9 + 1224: 26,10 + 2064: 4,-30 + 2764: -13,-8 + 2765: -12,-8 + 2868: 14,-24 + 2869: 14,-25 + 2870: 10,-31 + 2871: 11,-31 - node: color: '#FFFFFFFF' id: DiagonalCheckerAOverlay decals: - 1658: -29,22 - 1659: -28,22 - 1660: -27,22 - 1661: -26,22 - 1662: -26,23 - 1663: -27,23 - 1664: -28,23 - 1665: -29,23 + 1515: -29,22 + 1516: -28,22 + 1517: -27,22 + 1518: -26,22 + 1519: -26,23 + 1520: -27,23 + 1521: -28,23 + 1522: -29,23 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 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 + 858: -27,-36 + 859: -28,-38 + 860: -23,-36 + 861: -25,-38 + 2472: -41,-11 + 2473: -42,-13 + 2474: -43,-17 + 2475: -42,-16 + 2476: -42,-17 + 2477: -41,-16 + 2478: -42,-12 + 2479: -41,-9 + 2480: -42,-8 + 2481: -42,-7 + 2482: -39,-7 + 2483: -39,-6 + 2484: -38,-7 + 2485: -38,-8 + 2486: -40,-7 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2126,9 +1957,8 @@ entities: 232: -49,40 245: -34,57 246: -31,59 - 681: 1,-38 - 762: 53,19 - 763: 53,20 + 697: 53,19 + 698: 53,20 - node: cleanable: True color: '#FFFFFFFF' @@ -2139,32 +1969,31 @@ entities: 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 + 828: -76,-57 + 829: -76,-56 + 830: -77,-55 + 831: -79,-54 + 845: -22,-38 + 846: -23,-38 + 847: -24,-36 + 848: -25,-36 + 849: -25,-36 + 1065: 23,-12 + 1066: 23,-11 + 1067: 24,-12 + 1068: 34,-12 + 1069: 35,-11 + 1070: 32,-12 + 1071: 31,-10 + 2075: -13,-31 + 2185: -19,19 + 2186: -14,19 + 2187: -21,18 + 2190: -15,19 + 2450: -40,-8 + 2451: -41,-7 + 2452: -42,-14 + 2453: -42,-17 - node: color: '#FFFFFFFF' id: DirtLight @@ -2194,25 +2023,22 @@ entities: 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 + 641: -19,-44 + 642: -17,-42 + 643: -19,-42 + 644: -23,-43 + 645: -4,-41 + 646: 1,-40 + 647: 0,-39 + 648: 2,-39 + 649: 1,-34 + 650: 1,-31 + 693: 43,22 + 694: 45,22 + 695: 52,19 + 696: 51,20 + 699: 50,19 + 705: 45,23 - node: cleanable: True color: '#FFFFFFFF' @@ -2229,120 +2055,102 @@ entities: 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 + 682: 20,-11 + 683: 21,-10 + 684: 17,-11 + 685: 17,-12 + 686: 19,-8 + 838: -78,-53 + 839: -76,-53 + 840: -78,-56 + 841: -79,-56 + 842: -80,-53 + 843: -79,-52 + 844: -76,-55 + 937: 27,0 + 938: 28,1 + 939: 29,1 + 1077: 24,-11 + 1078: 24,-10 + 1079: 23,-10 + 1080: 26,-12 + 1081: 31,-12 + 1082: 32,-11 + 1083: 33,-10 + 1084: 34,-11 + 1085: 33,-12 + 1086: 32,-9 + 1087: 33,-9 + 1088: 24,-9 + 1089: 21,-9 + 1090: 24,-8 + 1091: 23,-8 + 1123: 29,-2 + 1124: 30,-3 + 1125: 31,-4 + 1126: 32,-4 + 1127: 30,0 + 1128: 33,-7 + 1129: 32,-8 + 1130: 24,-8 + 1131: 25,-7 + 1132: 26,-6 + 1133: 23,-3 + 1134: 22,-2 + 1135: 21,-2 + 1446: -1,29 + 1692: -58,15 + 1693: -57,16 + 1694: -58,21 + 1695: -57,20 + 1696: -57,23 + 1698: -51,14 + 1699: -51,15 + 1700: -56,20 + 1704: -4,27 + 1705: -6,27 + 1706: -14,26 + 1707: -19,27 + 1708: -26,28 + 1709: -26,27 + 1710: -27,26 + 1711: -25,25 + 1712: -27,31 + 1713: -39,37 + 1714: -37,36 + 1715: -36,35 + 1716: -41,43 + 1717: -47,52 + 1718: -49,53 + 1719: -47,56 + 2078: -11,-31 + 2079: -10,-30 + 2080: -10,-31 + 2081: -11,-29 + 2082: -13,-29 + 2083: -14,-30 + 2084: -13,-33 + 2085: -13,-34 + 2086: -19,-41 + 2087: -24,-43 + 2188: -18,19 + 2189: -21,19 + 2191: -16,19 + 2192: -22,19 + 2193: -31,16 + 2194: -31,17 + 2195: -7,18 + 2454: -41,-13 + 2455: -42,-10 + 2456: -42,-9 + 2457: -41,-8 + 2458: -40,-7 + 2468: -42,-15 + 2469: -42,-15 + 2470: -42,-14 + 2471: -42,-13 + 2742: -18,-9 + 2743: -23,-12 - node: color: '#FFFFFFFF' id: DirtMedium @@ -2355,21 +2163,17 @@ entities: 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 + 637: 1,-39 + 638: -23,-44 + 639: -18,-42 + 640: -16,-41 + 691: 46,23 + 692: 43,21 + 700: 52,19 + 701: 43,22 + 702: 46,23 + 703: 46,22 + 704: 44,23 - node: cleanable: True color: '#FFFFFFFF' @@ -2380,45 +2184,42 @@ entities: 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 + 681: 21,-11 + 832: -78,-54 + 833: -79,-55 + 834: -79,-53 + 835: -80,-53 + 836: -76,-54 + 837: -77,-53 + 850: -26,-36 + 851: -27,-37 + 936: 27,1 + 1072: 32,-10 + 1073: 31,-11 + 1074: 30,-11 + 1075: 25,-12 + 1076: 26,-11 + 1120: 34,-7 + 1121: 30,-2 + 1122: 31,-3 + 1447: 3,29 + 1697: -58,13 + 2076: -12,-31 + 2077: -12,-29 + 2459: -39,-8 + 2460: -42,-6 + 2461: -42,-7 + 2462: -41,-8 + 2463: -41,-12 + 2464: -42,-11 + 2465: -38,-8 + 2466: -38,-6 + 2467: -39,-7 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 3186: -20,-20 + 2770: -20,-20 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -2426,54 +2227,52 @@ entities: 75: -55,17 76: -53,18 77: -54.752693,18.73386 - 882: -59.152756,-56.526844 + 817: -59.152756,-56.526844 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 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 + 812: -64.66838,-52.26122 + 813: -65.559006,-53.82372 + 814: -64.94963,-56.339344 + 815: -59.777756,-52.66747 + 1455: -10.5706415,40.97748 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: 62: -53,22 63: -55,14 - 881: -60.121506,-53.44872 + 816: -60.121506,-53.44872 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 883: -62.184006,-55.76122 - 884: -61.777756,-56.370594 - 885: -62.152756,-53.308094 - 1597: -9.3987665,40.961857 + 818: -62.184006,-55.76122 + 819: -61.777756,-56.370594 + 820: -62.152756,-53.308094 + 1454: -9.3987665,40.961857 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 81: -54.471443,18.20261 82: -53.533943,17.17136 - 886: -58.996506,-57.370594 - 887: -62.88713,-57.995594 + 821: -58.996506,-57.370594 + 822: -62.88713,-57.995594 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 64: -53,14 65: -55,22 - 888: -59.809006,-54.414917 - 1107: -25.970001,3.9985995 - 3187: -20,-23 + 823: -59.809006,-54.414917 + 2771: -20,-23 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 947: -13.0907,22.978218 + 882: -13.0907,22.978218 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -2485,103 +2284,108 @@ entities: 78: -53.471443,17.280735 79: -54.76832,17.48386 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 + 804: -64.98088,-57.620594 + 805: -62.090256,-57.776844 + 806: -61.10588,-57.13622 + 807: -60.090256,-57.91747 + 808: -64.152756,-53.683094 + 809: -62.69963,-52.51122 + 1453: -9.9456415,40.993107 - node: color: '#FFFFFFFF' id: Flowersy3 decals: 377: -39.4601,29.881437 - 876: -65.652756,-52.401844 - 944: -7.856325,22.931343 + 811: -65.652756,-52.401844 + 879: -7.856325,22.931343 - node: color: '#FFFFFFFF' id: Flowersy4 decals: 80: -53.61207,18.499485 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: - 2718: -30,-62 + 810: -63.26213,-53.76122 + 880: -10.293825,23.009468 + 881: -11.18445,22.978218 + 2769: -20,-19 - node: color: '#4A8F37B1' id: FullTileOverlayGreyscale decals: - 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 + 1742: 5,23 + 1743: 6,23 + 1744: 3,23 + 1745: 2,23 + 1746: 2,20 + 1747: 2,21 + 1748: 3,20 + 1749: 5,20 + 1750: 6,20 + 1751: 6,21 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 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 + 2669: -14,-12 + 2670: -14,-11 + 2671: -14,-10 + 2672: -15,-11 + 2673: -13,-11 + 2717: -25,-14 + 2718: -26,-14 + 2739: -20,-5 + 2740: -18,-5 + 2744: -20,-7 + 2745: -18,-7 - node: color: '#79150096' id: FullTileOverlayGreyscale decals: - 808: -76,-46 - 809: -77,-46 - 810: -78,-46 - 811: -79,-46 - 812: -80,-46 - 813: -81,-46 + 743: -76,-46 + 744: -77,-46 + 745: -78,-46 + 746: -79,-46 + 747: -80,-46 + 748: -81,-46 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 2798: -29,7 + 2799: -29,9 + 2800: -29,11 + 2801: -29,13 + 2802: -26,13 + 2803: -23,13 + 2804: -23,12 + 2805: -24,5 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 1093: 28,1 - 1094: 30,-1 - 1095: 20,-1 + 1013: 28,1 + 1014: 30,-1 + 1015: 20,-1 - node: color: '#D4D4D406' id: FullTileOverlayGreyscale decals: - 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 + 2117: -22,-6 + 2118: -23,-6 + 2119: -24,-6 + 2120: -25,-6 + 2121: -26,-6 + 2122: -25,-5 + 2123: -25,-4 + 2124: -25,-3 + 2125: -25,-2 + 2126: -25,-1 + 2127: -23,-5 + 2128: -23,-4 + 2129: -23,-3 + 2130: -23,-2 + 2131: -23,-1 + 2132: -24,-1 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale @@ -2602,56 +2406,52 @@ entities: 479: -19,-4 480: 13,19 481: -38,10 - 680: -1,-34 - 1083: -19,0 - 2189: -3,-37 - 2190: -3,-32 + 636: -1,-34 + 1003: -19,0 + 2046: -3,-37 + 2047: -3,-32 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 711: -11,-34 - 2244: -26,-42 - 2245: -26,-41 + 651: -11,-34 - node: color: '#FFFFFFFF' id: Grassb1 decals: 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 + 871: -7.3405266,22.973469 + 874: -11.434277,23.035969 + 984: -56.986298,-31.010326 + 985: -59.069237,-37.03042 + 1592: -70.08625,-34.436035 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 1038: -74.07677,-44.072823 - 1046: -67.18431,-28.324245 - 1102: -29.016876,3.9360995 - 1732: -53.955444,-43.088474 + 958: -74.07677,-44.072823 + 966: -67.18431,-28.324245 + 1589: -53.955444,-43.088474 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1039: -71.98302,-44.010323 - 1103: -24.048126,3.9673495 + 959: -71.98302,-44.010323 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 938: -8.387402,22.973469 - 1041: -70.92052,-43.057198 - 1734: -52.942307,-42.899807 + 873: -8.387402,22.973469 + 961: -70.92052,-43.057198 + 1591: -52.942307,-42.899807 - node: color: '#FFFFFFFF' id: Grassb5 decals: 369: -39.881973,31.162687 371: -40.0851,28.850187 - 937: -12.856152,23.020344 - 1042: -73.10302,-35.91218 + 872: -12.856152,23.020344 + 962: -73.10302,-35.91218 - node: color: '#FFFFFFFF' id: Grassd1 @@ -2668,79 +2468,86 @@ entities: 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 + 801: -65.69963,-54.183094 + 802: -59.934006,-54.276844 + 803: -60.98088,-57.745594 + 2779: -27.285925,4.265137 + 2780: -29.097805,5.111672 - node: color: '#FFFFFFFF' id: Grassd2 decals: 83: -53.596443,17.79636 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 + 783: -65.01213,-58.04247 + 784: -62.29338,-52.69872 + 785: -61.684006,-53.433094 + 786: -65.027756,-53.464344 + 787: -62.809006,-53.32372 + 867: -12.746777,23.114094 + 868: -6.8249016,22.957844 + 2766: -20,-23 + 2776: -28.74137,4.8443456 + 2777: -28.177013,4.08692 + 2778: -23.974043,4.0126615 + 2785: -27.285925,5.6760283 + 2786: -25.503746,4.9037514 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 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 + 788: -63.38713,-53.72997 + 789: -59.98088,-52.35497 + 790: -65.01213,-57.19872 + 791: -60.19963,-57.464344 + 792: -59.41838,-56.79247 + 869: -9.168652,22.942219 + 870: -10.309277,23.067219 + 2782: -26.157211,4.161177 + 2783: -27.865131,5.1859293 + 2784: -26.469091,5.022563 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 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 + 793: -65.652756,-52.41747 + 794: -58.98088,-57.97997 + 795: -64.69963,-56.44872 + 796: -62.98088,-57.776844 + 992: 6,-7 + 993: 3,-5 + 2767: -20,-22 + 2774: -29.14236,4.101771 + 2775: -28.696815,5.5275135 - node: color: '#FFFFFFFF' id: Grasse2 decals: 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 + 865: -11.340527,23.020344 + 866: -7.8092766,22.989094 + 988: 6,-8 + 989: 5,-5 + 1450: -9,41 + 1451: -10.480507,40.958054 + 2768: -20,-20 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 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 + 797: -60.277756,-56.558094 + 798: -63.340256,-52.22997 + 799: -65.82463,-53.29247 + 800: -60.23088,-53.433094 + 862: -7.3717766,23.020344 + 863: -8.434277,22.973469 + 864: -11.918652,23.051594 + 990: 6,-5 + 991: 6,-12 + 1448: -11,41 + 1449: -10,41 + 1452: -9.464882,40.926804 + 2781: -24.983944,4.08692 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -2754,21 +2561,20 @@ entities: 398: -12,27 399: -13,27 400: -14,27 - 963: -1,66 - 1565: -3,27 - 1567: -17,27 - 2716: -31,-63 + 898: -1,66 + 1422: -3,27 + 1424: -17,27 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale decals: - 1401: 33,20 - 1402: 32,20 - 1403: 31,20 - 1404: 30,20 - 1405: 29,20 - 1406: 28,20 - 1407: 27,20 + 1267: 33,20 + 1268: 32,20 + 1269: 31,20 + 1270: 30,20 + 1271: 29,20 + 1272: 28,20 + 1273: 27,20 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -2784,22 +2590,34 @@ entities: 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 + 2731: -25,-8 + 2732: -24,-8 + 2733: -23,-8 + 2734: -22,-8 + 2735: -21,-8 + 2736: -20,-8 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale + decals: + 2817: 17,16 + 2829: 19,15 + 2839: 16,12 - node: color: '#79150096' id: HalfTileOverlayGreyscale decals: - 819: -76,-47 - 820: -77,-47 - 821: -78,-47 - 822: -79,-47 - 823: -80,-47 - 824: -81,-47 + 754: -76,-47 + 755: -77,-47 + 756: -78,-47 + 757: -79,-47 + 758: -80,-47 + 759: -81,-47 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 2806: -24,13 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -2811,49 +2629,39 @@ entities: 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 + 662: 21,2 + 663: 20,2 + 664: 19,2 + 665: 18,2 + 666: 17,2 + 667: 16,2 + 668: 15,2 + 1050: 26,-10 + 1051: 27,-10 + 1052: 28,-10 + 1053: 29,-10 + 1054: 30,-10 - node: color: '#D381C93B' id: HalfTileOverlayGreyscale decals: - 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 + 1251: 18,23 + 1252: 17,23 + 1253: 16,23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 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 + 1231: 29,11 + 1232: 28,11 + 1233: 27,11 + 1234: 26,11 + 1235: 25,11 + 1236: 24,11 + 1247: 24,23 + 1248: 25,23 + 1249: 20,23 + 1250: 19,23 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -2922,35 +2730,21 @@ entities: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 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: - 2717: -31,-64 + 635: -1,-39 + 2891: -11,-48 + 2892: -10,-48 + 2893: -9,-48 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale180 decals: - 1394: 27,18 - 1395: 28,18 - 1396: 29,18 - 1397: 30,18 - 1398: 31,18 - 1399: 32,18 - 1400: 33,18 + 1260: 27,18 + 1261: 28,18 + 1262: 29,18 + 1263: 30,18 + 1264: 31,18 + 1265: 32,18 + 1266: 33,18 - node: color: '#52B4E935' id: HalfTileOverlayGreyscale180 @@ -2962,7 +2756,7 @@ entities: color: '#52B4E957' id: HalfTileOverlayGreyscale180 decals: - 2496: -49,42 + 2200: -49,42 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -2978,12 +2772,26 @@ entities: 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 + 2723: -19,-13 + 2724: -20,-13 + 2725: -21,-13 + 2726: -23,-13 + 2727: -24,-13 + 2728: -25,-13 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale180 + decals: + 2813: 20,10 + 2814: 19,10 + 2815: 18,10 + 2816: 17,10 + 2818: 22,7 + 2819: 23,7 + 2838: 16,10 + 2846: 12,14 + 2847: 13,14 + 2848: 14,14 - node: color: '#79150096' id: HalfTileOverlayGreyscale180 @@ -2994,13 +2802,13 @@ entities: 37: -3,15 38: -2,15 39: -1,15 - 814: -80,-45 - 815: -79,-45 - 816: -78,-45 - 817: -77,-45 - 818: -76,-45 - 825: -81,-45 - 1742: 0,15 + 749: -80,-45 + 750: -79,-45 + 751: -78,-45 + 752: -77,-45 + 753: -76,-45 + 760: -81,-45 + 1599: 0,15 - node: color: '#9FED582F' id: HalfTileOverlayGreyscale180 @@ -3012,14 +2820,15 @@ entities: color: '#9FED5844' id: HalfTileOverlayGreyscale180 decals: - 2495: -46,42 + 2199: -46,42 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 2778: -20,9 - 2779: -21,9 - 2780: -22,9 + 2377: -20,9 + 2378: -21,9 + 2379: -22,9 + 2808: -23,9 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -3027,70 +2836,50 @@ entities: 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: - 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 + 655: 21,0 + 656: 20,0 + 657: 19,0 + 658: 18,0 + 659: 17,0 + 660: 16,0 + 661: 15,0 + 669: 19,-12 + 670: 20,-12 + 671: 21,-12 + 672: 16,-12 + 673: 17,-12 + 1055: 23,-12 + 1056: 24,-12 + 1057: 25,-12 + 1058: 26,-12 + 1059: 27,-12 + 1060: 28,-12 + 1061: 29,-12 + 1062: 30,-12 + 1063: 31,-12 + 1104: 26,-8 + 1105: 27,-8 + 1106: 28,-8 + 1107: 29,-8 + 1108: 30,-8 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 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 + 940: 24,25 + 941: 20,25 + 942: 19,25 + 943: 18,25 + 944: 17,25 + 945: 16,25 + 946: 15,25 + 947: 14,25 + 948: 13,25 + 1242: 21,18 + 1243: 22,18 + 1244: 23,18 + 1245: 24,18 + 1246: 25,18 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3133,7 +2922,7 @@ entities: 429: 14,20 471: -18,-3 472: -19,-3 - 2493: -43,42 + 2197: -43,42 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale180 @@ -3152,36 +2941,46 @@ entities: color: '#EFB3415D' id: HalfTileOverlayGreyscale180 decals: - 2494: -42,42 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 2719: -28,-60 - 2720: -27,-60 - 2721: -26,-60 + 2198: -42,42 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 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 + 894: -2,63 + 895: -2,64 + 896: -2,65 + 897: -2,66 + 1415: -5,28 + 1418: -16,28 + 1427: -5,34 + 1428: -16,34 + 1492: -5,36 + 1493: -16,36 + 2964: -10,-31 + 2965: -10,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: 524: -5,-4 525: -5,-3 - 3145: -26,-12 - 3146: -26,-9 + 2729: -26,-12 + 2730: -26,-9 + 2952: -6,-28 + 2953: -6,-29 + - node: + color: '#724276FF' + id: HalfTileOverlayGreyscale270 + decals: + 2820: 21,8 + 2821: 21,9 + 2828: 21,17 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 2962: -12,-28 + 2963: -12,-29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -3194,24 +2993,26 @@ entities: 582: 11,-4 583: 11,-3 584: 11,-2 - 998: 27,0 - 999: 27,1 - 1000: 27,2 + 933: 27,0 + 934: 27,1 + 935: 27,2 + 2950: -10,-28 + 2951: -10,-29 - node: - color: '#D381C93B' + color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 1346: 21,8 - 1347: 21,9 - 1369: 21,13 - 1370: 21,17 + 1724: 30,21 + 1725: 30,22 + 1726: 30,23 + 2948: -8,-28 + 2949: -8,-29 - node: - color: '#D381C996' + color: '#D4D4D428' id: HalfTileOverlayGreyscale270 decals: - 1867: 30,21 - 1868: 30,22 - 1869: 30,23 + 2968: -12,-31 + 2969: -12,-32 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3251,6 +3052,8 @@ entities: 468: -20,-3 469: -20,-2 470: -20,-1 + 2946: -6,-31 + 2947: -6,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale270 @@ -3266,25 +3069,26 @@ entities: 588: 9,-30 589: 9,-29 590: 9,-28 - 703: -10,-37 - 704: -10,-36 - 705: -10,-35 - 706: -10,-34 - 2702: -31,-60 + 2889: -14,-49 + 2890: -14,-50 + 2940: -8,-32 + 2941: -8,-31 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 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 + 899: 0,66 + 900: 0,65 + 901: 0,64 + 902: 0,63 + 1416: -4,28 + 1417: -15,28 + 1426: -4,34 + 1429: -15,34 + 1494: -15,36 + 1495: -4,36 + 2966: -12,-31 + 2967: -12,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -3295,37 +3099,55 @@ entities: 547: -15,-7 548: -15,-6 549: -15,-5 - 3153: -18,-9 - 3154: -18,-12 + 2737: -18,-9 + 2738: -18,-12 + 2954: -8,-28 + 2955: -8,-29 - node: - color: '#A4610696' + color: '#724276FF' id: HalfTileOverlayGreyscale90 decals: - 564: 5,-1 - 1149: 21,-4 + 2822: 23,12 + 2823: 23,13 + 2824: 23,14 + 2825: 23,15 + 2826: 23,16 + 2827: 23,17 + 2849: 15,15 + 2850: 15,16 + 2851: 15,17 + 2852: 15,18 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 2807: -24,8 + 2960: -14,-28 + 2961: -14,-29 - node: - cleanable: True color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1147: 21,-6 - 1148: 21,-5 + 564: 5,-1 + 1049: 21,-4 + 2958: -12,-28 + 2959: -12,-29 - node: - color: '#D381C93B' + cleanable: True + color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1392: 23,17 - 1416: 15,15 - 1417: 15,16 - 1418: 15,17 - 1419: 15,18 + 1047: 21,-6 + 1048: 21,-5 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 1870: 32,21 - 1871: 32,22 - 1872: 32,23 + 1727: 32,21 + 1728: 32,22 + 1729: 32,23 + 2956: -10,-28 + 2957: -10,-29 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3373,7 +3195,9 @@ entities: 465: -17,-3 466: -17,-2 467: -17,-1 - 2657: 14,21 + 2341: 14,21 + 2944: -8,-31 + 2945: -8,-32 - node: color: '#EDD75E93' id: HalfTileOverlayGreyscale90 @@ -3392,17 +3216,15 @@ entities: 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 + 2894: -8,-49 + 2895: -8,-50 + 2942: -10,-31 + 2943: -10,-32 - node: color: '#FFFFFFFF' id: HatchSmall decals: - 1610: -3,32 + 1467: -3,32 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3414,9 +3236,9 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 1142: 16,-4 - 1237: 34,-7 - 2209: 3,-30 + 1042: 16,-4 + 1137: 34,-7 + 2066: 3,-30 - node: color: '#FFFFFFFF' id: LoadingArea @@ -3426,100 +3248,97 @@ entities: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 1708: -57,-57 + 1565: -57,-57 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 1441: -27,38 - 1702: -65,-60 + 1298: -27,38 + 1559: -65,-60 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 1719: -69,-55 + 1576: -69,-55 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 1709: -56,-54 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineE - decals: - 2380: -11,-41 + 1566: -56,-54 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 1669: 25,26 + 1526: 25,26 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 1442: -27,38 + 1299: -27,38 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineS decals: - 1670: 26,32 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineW - decals: - 2381: -5,-41 + 1527: 26,32 - node: color: '#D381C996' id: MonoOverlay decals: - 2542: 29,21 - 2543: 28,22 - 2544: 29,23 - 2545: 27,23 - 2546: 27,21 + 2241: 29,21 + 2242: 28,22 + 2243: 29,23 + 2244: 27,23 + 2245: 27,21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 1557: -5,27 - 1563: -16,27 - 1566: -2,27 - 1644: -16,38 - 1645: -16,41 - 1646: -16,40 - 1647: -16,39 + 1414: -5,27 + 1420: -16,27 + 1423: -2,27 + 1501: -16,38 + 1502: -16,41 + 1503: -16,40 + 1504: -16,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: 518: -8,-4 551: -15,-5 - 3168: -22,-12 - 3169: -22,-10 + 2752: -22,-12 + 2753: -22,-10 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale + decals: + 2830: 20,15 + 2831: 21,16 + 2836: 17,12 - node: color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 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 + 761: -81,-45 + 762: -80,-45 + 763: -79,-45 + 764: -78,-45 + 765: -77,-45 + 766: -76,-45 + 1918: -52,13 + 1919: -53,13 + 1920: -54,13 + 1921: -55,13 + 1922: -56,13 + 1923: -56,21 + 1924: -55,21 + 1925: -54,21 + 1926: -53,21 + 1927: -52,21 + 1938: -51,13 + 1939: -51,14 + 1944: -51,22 + 1945: -51,21 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -3528,157 +3347,150 @@ entities: 17: -24,3 18: -28,3 19: -29,3 - 1105: -25,3 - 1116: -26,3 - 1117: -27,3 + 1016: -25,3 + 1017: -26,3 + 1018: -27,3 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: 562: 3,-2 585: 11,-9 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale - decals: - 1345: 21,7 - 1372: 21,12 - 1373: 21,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale decals: - 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 + 720: 8,7 + 721: 8,8 + 722: 8,9 + 723: 8,10 + 724: 8,11 + 725: 8,12 + 726: 8,13 + 727: 8,14 + 728: 8,15 + 729: 8,16 + 730: 8,17 + 731: 8,18 + 732: 8,19 + 733: 8,20 + 734: 8,21 + 735: 8,22 + 736: 8,23 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 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 + 1822: -12,4 + 1823: -11,4 + 1824: -10,4 + 1825: -9,4 + 1826: -8,4 + 1827: -7,4 + 1828: -6,4 + 1847: -22,3 + 1848: -22,4 + 1849: -22,5 + 1850: -22,6 + 1851: -22,7 + 1872: -44,-3 + 1975: 11,-19 + 1976: 11,-18 + 1977: 11,-17 + 1978: 10,-19 + 1979: 9,-19 + 1980: 8,-19 + 1981: 7,-19 + 1982: 5,-19 + 1983: 6,-19 + 1984: 4,-19 + 1985: 3,-19 + 1986: 2,-19 + 1987: 1,-19 + 1988: 0,-19 + 1989: -1,-19 + 1990: -2,-19 + 1991: -3,-19 + 1992: -4,-19 + 1993: 11,-16 + 1994: 11,-15 + 1995: 11,-14 + 2019: -37,34 + 2020: -37,33 + 2021: -37,32 + 2022: -37,31 + 2023: -37,30 + 2024: -37,29 + 2025: -37,28 + 2026: -37,27 + 2027: -37,26 + 2028: -37,25 + 2029: -37,24 + 2030: -37,23 + 2031: -37,22 + 2032: -37,21 + 2033: -37,20 + 2034: -37,19 + 2035: -37,18 + 2036: -37,17 + 2037: -37,16 + 2038: -37,15 + 2039: -38,15 + 2266: 7,34 + 2274: 13,27 + 2275: 14,27 + 2276: 15,27 + 2277: 16,27 + 2278: 17,27 + 2279: 18,27 + 2280: 19,27 + 2281: 20,27 + 2282: 21,27 + 2283: 21,28 + 2284: 21,29 + 2285: 21,30 + 2286: 21,31 + 2297: 24,40 + 2298: 23,40 + 2299: 22,40 + 2300: 21,40 + 2301: 20,40 + 2302: 20,39 + 2303: 20,38 + 2304: 20,37 + 2305: 20,36 + 2306: 20,35 + 2307: 20,34 + 2308: 20,33 + 2389: 7,35 + 2390: 7,36 + 2393: -58,9 + 2394: -58,8 + 2395: -59,8 + 2396: -60,8 + 2415: -46,-3 + 2416: -46,-5 + 2417: -46,-4 + 2418: -46,-6 + 2419: -46,-7 + 2420: -46,-8 + 2421: -46,-9 + 2422: -47,-9 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 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 + 1876: -58,10 + 1877: -57,10 + 1878: -56,10 + 1879: -55,10 + 1880: -54,10 + 1881: -53,10 + 1882: -52,10 + 1883: -51,10 + 1884: -50,10 + 1885: -49,10 + 1886: -48,10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3691,7 +3503,7 @@ entities: 348: -37,37 430: 12,20 475: -17,-1 - 2517: -49,45 + 2221: -49,45 - node: color: '#EDD75E93' id: QuarterTileOverlayGreyscale @@ -3703,19 +3515,19 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale decals: - 638: -4,-2 - 639: -4,-5 - 1120: 2,-28 - 1121: 1,-28 - 1122: 0,-28 - 1123: -1,-28 + 631: -4,-2 + 632: -4,-5 + 1020: 2,-28 + 1021: 1,-28 + 1022: 0,-28 + 1023: -1,-28 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 2796: 11,38 - 2797: 12,38 - 2798: 12,39 + 2386: 11,38 + 2387: 12,38 + 2388: 12,39 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3741,35 +3553,35 @@ entities: 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 + 2656: -29,-14 + 2657: -28,-14 + 2658: -28,-13 + 2659: -28,-12 + 2756: -23,-11 + 2757: -23,-9 - node: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 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 + 1928: -56,23 + 1929: -54,23 + 1930: -55,23 + 1931: -52,23 + 1932: -53,23 + 1933: -56,15 + 1934: -55,15 + 1935: -54,15 + 1936: -53,15 + 1937: -52,15 + 1940: -57,14 + 1941: -57,15 + 1942: -57,22 + 1943: -57,23 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 2781: -23,9 + 2809: -24,9 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -3780,117 +3592,117 @@ entities: 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 + 737: 13,0 + 738: 13,1 + 739: 13,2 + 740: 13,3 + 741: 13,4 + 2336: 5,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale180 decals: - 1292: 39,7 - 1293: 38,7 - 1294: 37,7 - 1295: 36,7 - 1296: 35,7 - 1297: 40,8 - 1298: 40,9 - 1299: 40,10 + 1192: 39,7 + 1193: 38,7 + 1194: 37,7 + 1195: 36,7 + 1196: 35,7 + 1197: 40,8 + 1198: 40,9 + 1199: 40,10 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 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 + 1761: 10,24 + 1762: 10,25 + 1763: 11,25 + 1766: -11,25 + 1767: -12,25 + 1768: -13,25 + 1769: -14,25 + 1770: -15,25 + 1771: -16,25 + 1772: -17,25 + 1773: -18,25 + 1774: -19,25 + 1775: -20,25 + 1776: -21,25 + 1777: -22,25 + 1778: -23,25 + 1779: -24,25 + 1780: -25,25 + 1781: -26,25 + 1782: -27,25 + 1783: -28,25 + 1784: -29,25 + 1785: -30,25 + 1786: -31,25 + 1787: -32,25 + 1788: -33,25 + 1789: -34,25 + 1790: -35,25 + 1791: -35,24 + 1792: -35,23 + 1793: -35,22 + 1794: -35,21 + 1795: -35,20 + 1796: -35,19 + 1797: -35,18 + 1798: -35,17 + 1799: -35,16 + 1800: -35,15 + 1801: -35,14 + 1802: -35,12 + 1803: -35,13 + 1804: -35,11 + 1805: -35,10 + 1806: -35,9 + 1807: -35,7 + 1808: -35,8 + 1809: -35,6 + 1810: -35,5 + 1859: -40,5 + 1860: -41,5 + 1861: -42,5 + 1862: -43,5 + 1863: -44,5 + 1864: -45,4 + 1865: -45,3 + 1866: -45,2 + 1867: -45,1 + 1868: -45,0 + 1869: -45,-1 + 1870: -45,-2 + 1962: -47,13 + 1963: -46,13 + 1964: -45,13 + 1965: -44,13 + 1966: -43,13 + 1967: -42,13 + 1968: -40,13 + 1969: -41,13 + 2172: -28,1 + 2173: -29,1 + 2174: -30,1 + 2175: -31,1 + 2176: -32,1 + 2177: -33,1 + 2309: 24,33 + 2310: 25,33 + 2311: 26,33 + 2312: 27,33 + 2313: 27,34 + 2314: 27,35 + 2315: 33,35 + 2316: 32,35 + 2317: 31,35 + 2318: 30,35 + 2319: 29,35 + 2406: -54,7 + 2407: -55,7 + 2408: -55,6 + 2409: -56,6 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -3922,35 +3734,31 @@ entities: 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 + 773: -81,-44 + 774: -80,-44 + 775: -79,-44 + 776: -78,-44 + 777: -77,-44 + 1024: -1,-21 + 1025: 0,-21 + 1026: 1,-21 + 1027: 3,-21 + 1028: 4,-21 + 1034: 2,-21 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 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 + 1811: -4,25 + 1812: -3,25 + 1813: -2,25 + 1814: -1,25 + 1815: 0,25 + 2381: 4,39 + 2382: 4,38 + 2383: 5,38 + 2384: 6,38 + 2385: 7,38 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -3966,121 +3774,121 @@ entities: 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 + 2660: -31,-14 + 2661: -32,-14 + 2662: -33,-14 + 2663: -34,-14 + 2664: -35,-14 + 2665: -35,-13 + 2748: -20,-11 + 2751: -20,-9 + 2762: -24,-11 + 2763: -24,-9 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale270 + decals: + 2832: 21,10 + 2837: 17,14 - node: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 832: -81,-47 - 833: -80,-47 - 834: -79,-47 - 835: -78,-47 - 836: -77,-47 - 837: -76,-47 + 767: -81,-47 + 768: -80,-47 + 769: -79,-47 + 770: -78,-47 + 771: -77,-47 + 772: -76,-47 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: 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: - 1348: 21,10 - 1371: 21,14 + 1064: 32,-12 + 2332: 8,1 + 2333: 9,1 + 2334: 10,1 + 2335: 11,1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 1337: 25,7 - 1338: 26,7 - 1339: 27,7 - 1340: 28,7 - 1341: 29,7 - 1411: 24,7 + 1237: 25,7 + 1238: 26,7 + 1239: 27,7 + 1240: 28,7 + 1241: 29,7 + 1277: 24,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 decals: - 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 + 1752: -9,25 + 1753: -8,25 + 1754: -7,25 + 1755: -6,25 + 1756: -5,25 + 1757: 1,25 + 1758: 2,25 + 1759: 8,25 + 1760: 8,24 + 1764: 6,25 + 1765: 7,25 + 1819: 8,6 + 1820: 8,5 + 1821: 8,4 + 1852: -37,1 + 1853: -37,2 + 1854: -37,3 + 1855: -37,4 + 1856: -37,5 + 1857: -38,5 + 1858: -39,5 + 1996: 11,-12 + 1997: 10,-12 + 1998: 9,-12 + 1999: 8,-12 + 2350: -46,4 + 2351: -46,3 + 2352: -46,2 + 2353: -46,1 + 2354: -46,0 + 2355: -46,-1 + 2356: -46,-2 + 2397: -46,5 + 2398: -47,5 + 2399: -48,5 + 2400: -49,5 + 2401: -51,5 + 2402: -50,5 + 2403: -51,6 + 2404: -51,7 + 2405: -52,7 + 2410: -57,6 + 2411: -58,6 + 2412: -58,7 + 2413: -59,7 + 2414: -60,7 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 decals: - 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 + 1898: -56,15 + 1899: -55,15 + 1900: -54,15 + 1901: -52,15 + 1902: -53,15 + 1903: -52,23 + 1904: -53,23 + 1905: -54,23 + 1906: -55,23 + 1907: -56,23 + 1946: -51,23 + 1947: -51,22 + 1948: -51,15 + 1949: -51,14 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4133,52 +3941,47 @@ entities: 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 + 1029: 8,-21 + 1030: 9,-21 + 1031: 11,-21 + 1032: 12,-21 + 1033: 13,-21 + 1816: 5,25 + 1817: 4,25 + 1818: 3,25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 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 + 1419: -15,27 + 1421: -4,27 + 1425: -18,27 + 1496: -4,37 + 1497: -4,38 + 1498: -4,39 + 1499: -4,40 + 1500: -4,41 + 1507: -19,27 + 1508: -20,27 + 1509: -21,27 + 1510: -22,27 + 1511: -23,27 + 1512: -24,27 - node: color: '#52B4E957' id: QuarterTileOverlayGreyscale90 decals: - 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 + 1887: -58,10 + 1888: -57,10 + 1889: -56,10 + 1890: -55,10 + 1891: -54,10 + 1892: -53,10 + 1893: -52,10 + 1894: -51,10 + 1895: -50,10 + 1896: -49,10 + 1897: -48,10 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -4186,10 +3989,16 @@ entities: 497: -9,-2 517: -9,-4 522: -11,-3 - 3163: -21,-12 - 3166: -21,-10 - 3176: -25,-10 - 3177: -25,-12 + 2747: -21,-12 + 2750: -21,-10 + 2760: -25,-10 + 2761: -25,-12 + - node: + color: '#724276FF' + id: QuarterTileOverlayGreyscale90 + decals: + 2833: 18,15 + 2834: 23,11 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -4199,140 +4008,135 @@ entities: 571: 16,-2 572: 15,-2 573: 14,-2 - - node: - color: '#D381C93B' - id: QuarterTileOverlayGreyscale90 - decals: - 1393: 23,16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 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 + 706: 10,23 + 707: 10,22 + 708: 10,21 + 709: 10,20 + 710: 10,19 + 711: 10,18 + 712: 10,14 + 713: 10,13 + 714: 10,12 + 715: 10,11 + 716: 10,10 + 717: 10,9 + 718: 10,8 + 719: 10,7 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 decals: - 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 + 1829: 0,4 + 1830: 1,4 + 1831: 2,4 + 1832: 4,4 + 1833: 3,4 + 1834: 5,4 + 1835: 6,4 + 1836: -14,3 + 1837: -15,3 + 1838: -16,3 + 1839: -17,3 + 1840: -18,3 + 1841: -19,3 + 1842: -20,3 + 1843: -20,4 + 1844: -20,5 + 1845: -20,6 + 1846: -20,7 + 1871: -45,-3 + 1873: -44,-3 + 1874: -44,-4 + 1875: -44,-5 + 1954: -47,15 + 1955: -46,15 + 1956: -45,15 + 1957: -44,15 + 1958: -43,15 + 1959: -42,15 + 1960: -41,15 + 1961: -40,15 + 2000: 9,-3 + 2001: 9,-4 + 2002: 9,-5 + 2003: 9,-6 + 2004: 9,-7 + 2005: 9,-8 + 2006: 9,-9 + 2007: 9,-10 + 2008: 10,-10 + 2009: -33,27 + 2010: -34,27 + 2011: -35,27 + 2012: -35,28 + 2013: -35,29 + 2014: -35,30 + 2015: -35,31 + 2016: -35,32 + 2017: -35,33 + 2018: -35,34 + 2136: 10,6 + 2137: 10,5 + 2138: 10,4 + 2139: 11,4 + 2140: 12,4 + 2141: 13,4 + 2142: -40,7 + 2143: -41,7 + 2144: -42,7 + 2145: -43,7 + 2146: -44,7 + 2147: -45,7 + 2148: -45,8 + 2149: -46,8 + 2150: -47,8 + 2267: 11,35 + 2268: 11,34 + 2269: 11,33 + 2270: 11,32 + 2271: 11,31 + 2272: 11,30 + 2273: 11,29 + 2287: 24,27 + 2288: 23,27 + 2289: 23,28 + 2290: 23,29 + 2291: 23,30 + 2292: 23,31 + 2293: 27,40 + 2294: 27,38 + 2295: 27,39 + 2296: 26,40 + 2320: 33,38 + 2321: 32,38 + 2322: 31,38 + 2323: 30,38 + 2324: 29,38 + 2391: 11,36 + 2431: -44,-7 + 2432: -44,-8 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 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 + 1908: -52,21 + 1909: -53,21 + 1910: -54,21 + 1911: -55,21 + 1912: -56,21 + 1913: -56,13 + 1914: -55,13 + 1915: -54,13 + 1916: -53,13 + 1917: -52,13 + 1950: -57,13 + 1951: -57,14 + 1952: -57,21 + 1953: -57,22 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4367,230 +4171,214 @@ entities: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 640: -2,-5 - 641: -2,-2 - 843: -81,-48 - 844: -80,-48 - 845: -79,-48 - 846: -78,-48 - 847: -77,-48 + 633: -2,-5 + 634: -2,-2 + 778: -81,-48 + 779: -80,-48 + 780: -79,-48 + 781: -78,-48 + 782: -77,-48 - node: + cleanable: True color: '#FFFFFFFF' - id: Rock01 + id: Rust decals: - 1106: -26.720001,4.0298495 + 852: -24,-36 + 853: -22,-38 + 854: -22,-38 + 855: -26,-37 + 856: -28,-37 + 857: -28,-37 - node: - cleanable: True + angle: -1.5707963267948966 rad color: '#FFFFFFFF' - id: Rust + id: StandClear decals: - 917: -24,-36 - 918: -22,-38 - 919: -22,-38 - 920: -26,-37 - 921: -28,-37 - 922: -28,-37 + 2867: 14,-19 - node: color: '#FFFFFFFF' id: StandClear decals: 389: 10,42 - 655: -10,-45 - 656: -6,-45 - 1037: 5,41 - 1386: 22,25 - 1387: 22,23 + 957: 5,41 + 1254: 22,25 + 1255: 22,23 - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear decals: - 2714: -32,-63 + 2773: -53,36 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 3136: -26,-8 - 3162: -20,-12 - 3165: -20,-10 - 3174: -24,-12 - 3175: -24,-10 + 2720: -26,-8 + 2746: -20,-12 + 2749: -20,-10 + 2758: -24,-12 + 2759: -24,-10 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2706: -32,-58 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2712: -30,-64 + 2887: -14,-48 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3138: -18,-13 + 2722: -18,-13 - node: - color: '#D381C93B' + color: '#724276FF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1415: 15,14 + 2845: 15,14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1291: 40,7 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2711: -30,-61 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2715: -32,-64 + 1191: 40,7 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3137: -26,-13 - 3170: -22,-9 - 3171: -22,-11 + 2721: -26,-13 + 2754: -22,-9 + 2755: -22,-11 - node: - color: '#EFB34196' + color: '#724276FF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2708: -32,-59 - 2710: -31,-61 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2713: -30,-63 + 2835: 21,7 + 2844: 17,13 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3135: -18,-8 + 2719: -18,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2707: -30,-58 + 2888: -8,-48 - node: color: '#FFFFFFFF' id: VentSmall decals: - 1462: -27,39 - 1582: -1,34 - 1671: 34,30 - 1672: 33,30 - 1844: -14,40 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 2667: -19,-48 + 1319: -27,39 + 1439: -1,34 + 1528: 34,30 + 1529: 33,30 + 1701: -14,40 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCorner decals: - 1140: -40,60 + 1040: -40,60 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCorner decals: 463: -6,-12 - 970: 2,64 + 905: 2,64 - node: color: '#FFFFFFFF' id: WarnCorner decals: - 1137: -42,58 + 1037: -42,58 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1139: -42,60 + 1039: -42,60 - node: color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 1138: -40,58 + 1038: -40,58 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 973: -4,64 + 908: -4,64 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 3065: -31,-11 + 2649: -31,-11 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 3069: -35,-11 + 2653: -35,-11 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2222: 2,-33 + 2072: 2,-33 + 2876: -8,-51 + 2997: -17,-53 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2221: 0,-33 + 2071: 0,-33 + 2878: -14,-51 + 2996: -19,-53 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 1876: 5,21 - 2220: 2,-35 + 1733: 5,21 + 2070: 2,-35 + 2810: 13,12 + 2877: -8,-53 + 2902: -5,-52 + 2999: -17,-56 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 1875: 3,21 - 2219: 0,-35 + 1732: 3,21 + 2069: 0,-35 + 2879: -14,-53 + 2998: -19,-56 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 2213: -10,-36 - 2756: -10,-52 + 2863: 14,-20 + 2864: 14,-19 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1275: 21,-19 - 1834: -58,19 - 2212: -6,-36 - 2755: -6,-52 + 1175: 21,-19 + 1691: -58,19 + 2932: 1,-52 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1277: 20,-19 - 1877: 5,22 - 2383: -10,-34 - 2754: -10,-50 + 1177: 20,-19 + 1734: 5,22 + 2865: 14,-18 + 2866: 14,-19 + 2930: -3,-50 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1274: 21,-16 - 1276: 19,-19 - 1282: 22,-19 - 1833: -58,17 - 1878: 3,22 - 2382: -6,-34 - 2757: -6,-50 + 1174: 21,-16 + 1176: 19,-19 + 1182: 22,-19 + 1690: -58,17 + 1735: 3,22 + 2931: 1,-50 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4606,290 +4394,303 @@ entities: color: '#52B4E996' id: WarnFullGreyscale decals: - 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 + 2182: -35,-1 + 2540: -24,-17 + 2541: -24,-23 + 2542: -20,-16 + 2543: -16,-16 + 2607: -14,-18 + 2608: -14,-14 + 2644: -28,-23 + 2645: -28,-17 + 2646: -32,-18 + 2690: -17,-11 + 2691: -17,-10 + 2695: -22,-14 + 2696: -27,-10 + 2697: -27,-11 - node: color: '#D381C996' id: WarnFullGreyscale decals: - 2560: 30,7 - 2561: 30,8 + 2256: 30,7 + 2257: 30,8 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 2513: -33,45 - 2516: -40,45 - - node: - color: '#FFFFFFFF' - id: WarnFullGreyscale - decals: - 2282: -21,-43 - 2283: -21,-42 - 2285: -18,-46 - 2286: -19,-38 + 2217: -33,45 + 2220: -40,45 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 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 + 1178: 20,-20 + 1189: 38,9 + 1190: 38,10 + 1209: 20,18 + 1210: 20,19 + 1217: 21,20 + 1218: 21,21 + 2073: 2,-34 + 2135: -2,-1 + 2881: -8,-52 + 2903: -5,-51 + 2904: -5,-50 + 2905: -5,-49 + 2906: -5,-48 + 2925: -3,-51 + 3001: -17,-54 + 3002: -17,-55 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 2634: -19,39 + 2330: -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 + 2529: -21,-16 + 2641: -29,-23 + 2642: -29,-17 + 2687: -12,-11 + 2692: -18,-11 + 2693: -18,-10 + 2700: -28,-11 + 2701: -28,-10 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 2563: 33,8 + 2259: 33,8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 2280: -22,-43 - 2281: -22,-42 - 3066: -31,-10 + 2650: -31,-10 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 2635: -20,40 + 2331: -20,40 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2954: -22,-15 - 3022: -14,-19 - 3025: -14,-15 + 2538: -22,-15 + 2606: -14,-19 + 2609: -14,-15 - node: color: '#D381C996' id: WarnLineGreyscaleN decals: - 2564: 32,9 + 2260: 32,9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 2511: -33,44 - 2512: -40,44 - - node: - color: '#FFFFFFFF' - id: WarnLineGreyscaleN - decals: - 2279: -19,-39 - 2299: -13,-39 + 2215: -33,44 + 2216: -40,44 - node: color: '#52B4E996' id: WarnLineGreyscaleS decals: - 2477: -35,0 - 2955: -22,-24 - 3020: -18,-23 - 3021: -14,-17 - 3102: -14,-13 - 3110: -22,-13 + 2181: -35,0 + 2539: -22,-24 + 2604: -18,-23 + 2605: -14,-17 + 2686: -14,-13 + 2694: -22,-13 - node: color: '#D381C996' id: WarnLineGreyscaleS decals: - 2562: 32,7 + 2258: 32,7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 2508: -32,42 - 2509: -35,42 - 2510: -37,42 - 2514: -33,46 - 2515: -40,46 - 2518: -47,45 - 2519: -48,45 - 2520: -49,45 + 2212: -32,42 + 2213: -35,42 + 2214: -37,42 + 2218: -33,46 + 2219: -40,46 + 2222: -47,45 + 2223: -48,45 + 2224: -49,45 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 2859: -41,17 + 2443: -41,17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2284: -18,-45 - 2497: -40,42 - 2498: -44,42 - 2499: -48,42 - 3067: -32,-11 - 3068: -33,-11 - 3070: -34,-11 + 2201: -40,42 + 2202: -44,42 + 2203: -48,42 + 2651: -32,-11 + 2652: -33,-11 + 2654: -34,-11 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 2633: -21,39 + 2329: -21,39 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: - 2943: -23,-23 - 2944: -23,-17 - 2960: -15,-16 - 3059: -31,-18 - 3104: -16,-11 - 3105: -16,-10 - 3114: -26,-11 - 3115: -26,-10 + 2527: -23,-23 + 2528: -23,-17 + 2544: -15,-16 + 2643: -31,-18 + 2688: -16,-11 + 2689: -16,-10 + 2698: -26,-11 + 2699: -26,-10 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 2860: -44,18 + 2444: -44,18 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 2277: -20,-43 - 2278: -20,-42 - 2461: -33,7 - 2462: -33,8 - 3071: -35,-10 + 2165: -33,7 + 2166: -33,8 + 2655: -35,-10 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 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 + 1164: 18,-16 + 1165: 19,-16 + 1166: 20,-16 + 1167: 21,-19 + 1168: 18,-19 + 1185: 38,9 + 1186: 37,9 + 1187: 36,9 + 1188: 35,9 + 1228: 28,11 + 1229: 27,11 + 1230: 26,11 + 1731: 4,21 + 1736: 6,22 + 1737: 2,22 + 2043: -21,43 + 2044: -20,43 + 2045: -19,43 + 2074: 1,-35 + 2348: -26,-58 + 2349: -27,-58 + 2811: 12,12 + 2857: 15,-19 + 2858: 16,-19 + 2859: 17,-19 + 2882: -13,-53 + 2883: -12,-53 + 2884: -11,-53 + 2885: -10,-53 + 2886: -9,-53 + 2907: -6,-52 + 2908: -3,-47 + 2909: 1,-47 + 2910: 2,-47 + 2911: 3,-47 + 2912: 4,-47 + 2913: -2,-47 + 2914: 0,-47 + 2922: -2,-50 + 2923: -1,-50 + 2924: 0,-50 + 3005: -18,-56 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 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 + 1172: 21,-18 + 1173: 21,-17 + 1179: 19,-20 + 1215: 24,20 + 1216: 24,21 + 1274: 27,18 + 1275: 27,19 + 1276: 27,20 + 1680: -58,12 + 1681: -58,13 + 1682: -58,14 + 1683: -58,15 + 1684: -58,16 + 1685: -58,20 + 1686: -58,21 + 1687: -58,22 + 1688: -58,23 + 1689: -58,24 + 2067: 0,-34 + 2134: -4,-1 + 2423: -47,-10 + 2424: -47,-9 + 2880: -14,-52 + 3003: -19,-54 + 3004: -19,-55 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 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 + 1159: 18,-16 + 1160: 19,-16 + 1161: 20,-16 + 1162: 21,-16 + 1163: 22,-16 + 1169: 18,-19 + 1170: 19,-19 + 1171: 20,-19 + 1180: 20,-21 + 1181: 19,-21 + 1205: 17,19 + 1206: 18,19 + 1207: 19,19 + 1208: 20,19 + 1225: 26,8 + 1226: 27,8 + 1227: 28,8 + 1322: -23,38 + 1738: 6,22 + 1739: 5,22 + 1740: 3,22 + 1741: 2,22 + 2068: 1,-33 + 2361: -12,-58 + 2362: -11,-58 + 2812: 12,10 + 2854: 13,10 + 2855: 14,10 + 2860: 15,-19 + 2861: 16,-19 + 2862: 17,-19 + 2872: -11,-51 + 2873: -10,-51 + 2874: -12,-51 + 2875: -9,-51 + 2926: -2,-52 + 2927: -1,-52 + 2928: 0,-52 + 2929: 0,-52 + 2933: -2,-48 + 2934: -1,-48 + 2935: 0,-48 + 2936: 1,-48 + 2937: 2,-48 + 2938: 3,-48 + 2939: 4,-48 + 3000: -18,-53 + 3039: -4,-48 + 3040: -3,-48 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -4904,17 +4705,13 @@ entities: 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 + 674: 13,-9 + 675: 12,-9 + 676: 11,-9 + 911: -6,82 + 912: 4,82 + 923: 3,78 + 924: -5,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -4926,13 +4723,13 @@ entities: 8: 0,22 9: 0,23 462: -6,-13 - 951: -47,-25 - 952: -47,-24 - 953: -47,-23 - 968: 2,62 - 969: 2,63 - 980: 4,87 - 990: 4,79 + 886: -47,-25 + 887: -47,-24 + 888: -47,-23 + 903: 2,62 + 904: 2,63 + 915: 4,87 + 925: 4,79 - node: color: '#FFFFFFFF' id: WarningLine @@ -4945,45 +4742,25 @@ entities: 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 + 677: 13,-9 + 678: 12,-9 + 679: 11,-9 + 687: 38,12 + 688: 37,12 + 689: 36,12 + 690: 35,12 + 909: 4,84 + 910: -6,84 + 913: 3,88 + 914: -5,88 + 949: 6,41 + 950: 4,41 + 954: 7,41 + 955: 3,41 + 956: 5,41 + 1116: 35,-12 + 1117: 34,-12 + 1118: 33,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -4995,315 +4772,303 @@ entities: 13: -4,22 14: -4,23 15: -2,22 - 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: - 631: 2,-38 - 632: 1,-38 - 633: 0,-38 - 749: 17,14 - 750: 18,14 + 889: -57,-25 + 890: -57,-24 + 891: -57,-23 + 906: -4,62 + 907: -4,63 + 916: -6,87 + 926: -6,79 + 1109: 35,-8 + 1110: 35,-7 + 1111: 35,-6 + 1112: 35,-5 + 1113: 35,-4 + 1114: 35,-3 + 1115: 35,-2 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 993: 4,78 - 995: -4,78 + 928: 4,78 + 930: -4,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 958: -47,-22 + 893: -47,-22 - node: color: '#FFFFFFFF' id: WarningLineCorner decals: - 669: -11,-42 - 983: 2,88 - 985: -6,88 - 997: -6,80 - 1136: 4,-21 - 1219: 32,-12 + 918: 2,88 + 920: -6,88 + 932: -6,80 + 1036: 4,-21 + 1119: 32,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCorner decals: - 987: -6,86 + 922: -6,86 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 992: -6,78 - 994: 2,78 + 927: -6,78 + 929: 2,78 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 984: 4,86 + 919: 4,86 - node: color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 668: -5,-42 - 982: 4,88 - 986: -4,88 - 996: 4,80 - 1135: 8,-21 + 917: 4,88 + 921: -4,88 + 931: 4,80 + 1035: 8,-21 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLineCornerFlipped decals: - 957: -57,-22 + 892: -57,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 1796: -11,34 - 1797: -10,34 - 1798: -9,34 + 1653: -11,34 + 1654: -10,34 + 1655: -9,34 - node: color: '#334E6DC8' id: WoodTrimThinEndE decals: - 1600: -9,41 + 1457: -9,41 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: - 1478: -22,31 + 1335: -22,31 - node: color: '#334E6DC8' id: WoodTrimThinEndW decals: - 1601: -11,41 + 1458: -11,41 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 1502: -13,32 - 1682: 42,40 - 2492: -27,52 + 1359: -13,32 + 1539: 42,40 + 2196: -27,52 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 1501: -7,32 + 1358: -7,32 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 1472: -24,37 - 1500: -13,36 - 1764: -21,36 + 1329: -24,37 + 1357: -13,36 + 1621: -21,36 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 1471: -24,37 - 1499: -7,36 + 1328: -24,37 + 1356: -7,36 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 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 + 1340: -20,30 + 1353: -13,33 + 1354: -13,34 + 1355: -13,35 + 1430: -2,32 + 1431: -2,33 + 1432: -2,31 + 1444: -19,32 + 1530: 35,37 + 1531: 35,38 + 1532: 35,39 + 1533: 35,40 + 1534: 35,41 + 1535: 43,37 + 1536: 43,38 + 1537: 43,39 + 1538: 43,40 + 1540: -75,-55 + 1542: -71,-55 + 1543: -71,-54 + 1544: -71,-53 + 1545: -71,-52 + 1546: -71,-56 + 1547: -71,-57 + 1619: -21,34 + 1620: -21,35 + 1626: 25,14 + 1627: 25,15 + 2358: -31,-3 + 2359: -31,-2 + 2360: -31,-1 - node: color: '#334E6DC8' id: WoodTrimThinLineN decals: - 1602: -10,41 + 1459: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 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 + 1281: -49,32 + 1282: -50,32 + 1283: -51,32 + 1284: -52,32 + 1285: -53,32 + 1292: -54,32 + 1293: -22,52 + 1294: -23,52 + 1295: -24,52 + 1296: -25,52 + 1297: -26,52 + 1321: -21,33 + 1333: -20,30 + 1334: -21,30 + 1348: -8,32 + 1349: -9,32 + 1350: -10,32 + 1351: -11,32 + 1352: -12,32 + 1434: -1,34 + 1440: -22,32 + 1441: -20,32 + 1514: -32,20 + 1605: 8,-18 + 1623: 26,13 + 1624: 27,13 + 1625: 28,13 - node: color: '#334E6DC8' id: WoodTrimThinLineS decals: - 1603: -10,41 + 1460: -10,41 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 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 + 1279: -43,32 + 1280: -44,32 + 1286: -52,29 + 1287: -53,29 + 1288: -51,29 + 1289: -50,29 + 1290: -49,29 + 1291: -54,29 + 1310: -18,37 + 1311: -19,37 + 1312: -20,37 + 1313: -21,37 + 1314: -22,37 + 1320: -21,33 + 1324: -25,37 + 1325: -26,37 + 1326: -27,37 + 1327: -28,37 + 1330: -19,36 + 1331: -20,36 + 1332: -18,36 + 1337: -22,30 + 1338: -21,30 + 1339: -20,30 + 1341: -12,36 + 1342: -10,36 + 1343: -9,36 + 1344: -8,36 + 1369: -11,36 + 1433: -1,34 + 1435: 3,34 + 1436: 4,34 + 1437: 5,34 + 1438: 2,34 + 1442: -19,32 + 1513: -32,24 + 1593: -6,15 + 1594: -5,15 + 1595: -4,15 + 1596: -3,15 + 1597: -2,15 + 1598: -1,15 + 1600: 0,15 + 1606: 9,-17 + 1607: 8,-17 + 1608: 7,-17 + 1609: 5,-12 + 1610: 4,-12 + 1611: 3,-12 + 1622: 28,16 + 1630: 27,16 + 1631: 26,16 + 2183: -42,32 + 2184: -45,32 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1863: -23,37 + 1720: -23,37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 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 + 1336: -22,30 + 1345: -7,33 + 1346: -7,34 + 1347: -7,35 + 1443: -19,32 + 1541: -70,-55 + 1548: -74,-57 + 1549: -74,-56 + 1550: -74,-55 + 1551: -74,-54 + 1552: -74,-53 + 1553: -74,-52 + 1601: 6,-11 + 1602: 6,-10 + 1603: 6,-9 + 1612: 3,-12 + 1613: 3,-11 + 1614: 3,-10 + 1615: 3,-9 + 1616: 3,-8 + 1617: 3,-7 + 1618: 3,-6 + 1628: 29,14 + 1629: 29,15 + 1649: 27,0 + 1650: 27,1 + 1651: 27,2 - node: color: '#FFFFFFFF' id: bushsnowa1 decals: - 1605: -11,41 + 1462: -11,41 - node: color: '#FFFFFFFF' id: bushsnowb3 decals: - 1604: -9,41 + 1461: -9,41 - type: GridAtmosphere version: 2 data: @@ -7768,11 +7533,6 @@ entities: - type: Transform pos: -0.39634466,12.638008 parent: 30 - - uid: 9608 - components: - - type: Transform - pos: -19.30925,-35.362278 - parent: 30 - proto: AirAlarm entities: - uid: 6224 @@ -7859,11 +7619,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-40.5 parent: 30 - - type: DeviceList - devices: - - 9952 - - 11153 - - 11094 - uid: 9671 components: - type: Transform @@ -7876,85 +7631,162 @@ entities: - 7116 - 9686 - 9864 - - uid: 17960 + - uid: 9996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-18.5 + pos: -3.5,-46.5 parent: 30 - type: DeviceList devices: - - 17227 - - 18435 - - 18436 - - 18437 - - uid: 20325 + - 11134 + - 9793 + - 9994 + - 19806 + - uid: 10010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 30 + - type: DeviceList + devices: + - 11180 + - 11192 + - 4353 + - 11188 + - 9301 + - 9300 + - 9769 + - 4241 + - 9782 + - 9618 + - 11189 + - uid: 13957 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-25.5 + pos: -2.5,-42.5 parent: 30 - type: DeviceList devices: - - 20326 - - 18441 - - 18438 - - 18440 - - 18442 - - 18439 - - 17228 - - uid: 20353 + - 19767 + - 19768 + - 9993 + - 11007 + - 19770 + - 19771 + - 8454 + - 8609 + - 7443 + - 7098 + - 10000 + - 7099 + - 7100 + - 11003 + - 19812 + - 19766 + - 19598 + - uid: 13958 components: - type: Transform - pos: -14.5,-45.5 + pos: -19.5,-38.5 parent: 30 - type: DeviceList devices: - - 20354 - - 11262 - - 11263 - - 11264 - - 11114 - - 11163 - - uid: 20356 + - 9897 + - 8297 + - 11005 + - 11009 + - 7226 + - 9884 + - 19562 + - 11280 + - 11007 + - 9993 + - 19768 + - 19767 + - uid: 13966 components: - type: Transform - pos: -9.5,-37.5 + rot: 1.5707963267948966 rad + pos: -14.5,-34.5 parent: 30 - type: DeviceList devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - - 11155 - - 11098 - - 11099 - - 11154 - - uid: 21740 + - 10042 + - 9903 + - 10043 + - 10022 + - 9899 + - 9908 + - 11011 + - uid: 14365 components: - type: Transform - pos: -16.5,-33.5 + rot: -1.5707963267948966 rad + pos: 24.5,16.5 parent: 30 - type: DeviceList devices: - - 11097 - - 11227 - - 21741 - - uid: 21743 + - 13002 + - 14522 + - 22440 + - 22439 + - 13082 + - 13085 + - 18074 + - 18214 + - 17912 + - 18601 + - 18212 + - 13073 + - 17724 + - 12664 + - 12665 + - 12666 + - 18073 + - uid: 17960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-33.5 + pos: -47.5,-18.5 parent: 30 - type: DeviceList devices: - - 11176 - - 11107 - - 21744 + - 17227 + - 18435 + - 18436 + - 18437 + - uid: 19570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 30 + - type: DeviceList + devices: + - 8335 + - 7222 + - 11280 + - 9839 + - 7224 + - 8311 + - 9995 + - uid: 20325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-25.5 + parent: 30 + - type: DeviceList + devices: + - 20326 + - 18441 + - 18438 + - 18440 + - 18442 + - 18439 + - 17228 - uid: 21747 components: - type: Transform @@ -7971,21 +7803,6 @@ entities: - 21749 - 11178 - 11179 - - uid: 21754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 30 - - type: DeviceList - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - - 11188 - - 11189 - uid: 21755 components: - type: Transform @@ -7994,23 +7811,6 @@ entities: - type: DeviceList devices: - 21756 - - uid: 21757 - components: - - type: Transform - pos: 14.5,-21.5 - parent: 30 - - type: DeviceList - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - - 11192 - - 11180 - uid: 21760 components: - type: Transform @@ -8280,17 +8080,6 @@ entities: - 18758 - 18759 - 21843 - - uid: 21844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-62.5 - parent: 30 - - type: DeviceList - devices: - - 18770 - - 18769 - - 21845 - uid: 21846 components: - type: Transform @@ -8879,26 +8668,6 @@ entities: - 22053 - 12959 - 12813 - - uid: 22054 - components: - - type: Transform - pos: 19.5,13.5 - parent: 30 - - type: DeviceList - devices: - - 9161 - - 12665 - - 12664 - - 12666 - - 12858 - - 13391 - - 22056 - - 13078 - - 12983 - - 13085 - - 13002 - - 13086 - - 13003 - uid: 22057 components: - type: Transform @@ -8964,7 +8733,6 @@ entities: - 13080 - 22071 - 13006 - - 9161 - uid: 22073 components: - type: Transform @@ -8975,7 +8743,6 @@ entities: - 320 - 21456 - 22072 - - 3357 - 3358 - uid: 22075 components: @@ -9033,6 +8800,13 @@ entities: - 22084 - 3484 - 3481 +- proto: AirAlarmElectronics + entities: + - uid: 15214 + components: + - type: Transform + pos: 3.6103516,20.451275 + parent: 30 - proto: AirCanister entities: - uid: 2087 @@ -9050,40 +8824,35 @@ entities: - type: Transform pos: 22.5,-13.5 parent: 30 - - uid: 15156 - components: - - type: Transform - pos: 16.5,8.5 - parent: 30 - - uid: 15645 + - uid: 12727 components: - type: Transform - pos: 22.5,-14.5 + pos: -52.5,-64.5 parent: 30 - - uid: 16895 + - uid: 12770 components: - type: Transform - pos: -44.5,25.5 + pos: -52.5,-65.5 parent: 30 - - uid: 18782 + - uid: 12816 components: - type: Transform - pos: -66.5,-65.5 + pos: -52.5,-63.5 parent: 30 - - uid: 18783 + - uid: 15156 components: - type: Transform - pos: -65.5,-65.5 + pos: 16.5,8.5 parent: 30 - - uid: 18784 + - uid: 15645 components: - type: Transform - pos: -64.5,-65.5 + pos: 22.5,-14.5 parent: 30 - - uid: 22767 + - uid: 16895 components: - type: Transform - pos: -27.5,-63.5 + pos: -44.5,25.5 parent: 30 - proto: Airlock entities: @@ -9223,6 +8992,30 @@ entities: - type: Transform pos: 6.5,-30.5 parent: 30 + - uid: 9894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 30 + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 30 + - uid: 11290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 30 + - uid: 19783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 30 - proto: AirlockAtmosphericsLocked entities: - uid: 8604 @@ -9240,6 +9033,18 @@ entities: - type: Transform pos: 20.5,-20.5 parent: 30 + - uid: 9978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 30 + - uid: 9989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 30 - proto: AirlockBarLocked entities: - uid: 455 @@ -9424,12 +9229,16 @@ entities: parent: 30 - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 9592 + - uid: 870 components: - - type: MetaData - name: CE's Office - type: Transform - pos: -18.5,-37.5 + pos: -7.5,-37.5 + parent: 30 + - uid: 9519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-30.5 parent: 30 - proto: AirlockChiefMedicalOfficerGlassLocked entities: @@ -9502,12 +9311,6 @@ entities: - type: Transform pos: -2.5,37.5 parent: 30 - - uid: 22638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-61.5 - parent: 30 - proto: AirlockCommandLocked entities: - uid: 4927 @@ -9546,12 +9349,20 @@ entities: parent: 30 - proto: AirlockEngineeringGlassLocked entities: - - uid: 9353 + - uid: 4827 components: - - type: MetaData - name: SMES bank - type: Transform - pos: -10.5,-33.5 + pos: -13.5,-32.5 + parent: 30 + - uid: 7125 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - uid: 7146 + components: + - type: Transform + pos: -11.5,-46.5 parent: 30 - uid: 9463 components: @@ -9560,27 +9371,29 @@ entities: - type: Transform pos: -12.5,-36.5 parent: 30 - - uid: 9934 + - uid: 10767 components: - type: Transform - pos: -0.5,-53.5 + rot: 1.5707963267948966 rad + pos: 0.5,-42.5 parent: 30 - - uid: 9935 + - uid: 10769 components: - type: Transform - pos: -0.5,-49.5 + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 parent: 30 - - uid: 10116 + - uid: 10785 components: - type: Transform - pos: -17.5,-45.5 + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 parent: 30 - - uid: 11177 + - uid: 10788 components: - - type: MetaData - name: SMES Bank - type: Transform - pos: -7.5,-37.5 + rot: 1.5707963267948966 rad + pos: -17.5,-45.5 parent: 30 - uid: 20984 components: @@ -9589,18 +9402,6 @@ entities: - type: Transform pos: 4.5,24.5 parent: 30 - - uid: 22635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - - uid: 22636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - proto: AirlockEngineeringLocked entities: - uid: 204 @@ -9610,6 +9411,11 @@ entities: - type: Transform pos: 1.5,22.5 parent: 30 + - uid: 340 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 - uid: 914 components: - type: Transform @@ -9660,27 +9466,11 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 30 - - uid: 9426 - components: - - type: Transform - pos: -20.5,-41.5 - parent: 30 - - uid: 9474 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 30 - - uid: 9577 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 9693 + - uid: 10786 components: - - type: MetaData - name: Thermo Electric Generator - type: Transform - pos: -7.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,-49.5 parent: 30 - uid: 11377 components: @@ -9707,27 +9497,11 @@ entities: - type: Transform pos: -62.5,43.5 parent: 30 - - uid: 17912 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - - uid: 18794 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - uid: 18927 components: - type: Transform pos: -39.5,-24.5 parent: 30 - - uid: 22633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - proto: AirlockExternal entities: - uid: 841 @@ -9735,6 +9509,12 @@ entities: - type: Transform pos: -82.5,-60.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6606: + - DoorStatus: Close - uid: 17373 components: - type: Transform @@ -9763,30 +9543,58 @@ entities: - type: Transform pos: 15.5,30.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1826: + - DoorStatus: DoorBolt - uid: 1826 components: - type: Transform pos: 17.5,30.5 parent: 30 - - uid: 22631 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1695: + - DoorStatus: DoorBolt + - uid: 9501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 + rot: 1.5707963267948966 rad + pos: -21.5,-55.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 22632: + 10789: - DoorStatus: DoorBolt - - uid: 22632 + - uid: 10534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 + rot: 3.141592653589793 rad + pos: -13.5,-55.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-57.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-57.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 22631: + 10534: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: @@ -9878,42 +9686,24 @@ entities: parent: 30 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 3531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-58.5 - parent: 30 - - uid: 6272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-56.5 - parent: 30 - - uid: 7207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-58.5 - parent: 30 - - uid: 10135 + - uid: 9342 components: - type: Transform - pos: -17.5,-52.5 + rot: 3.141592653589793 rad + pos: 5.5,-44.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 10136: + 10559: - DoorStatus: DoorBolt - - uid: 10136 + - uid: 10559 components: - type: Transform - pos: -17.5,-49.5 + rot: 3.141592653589793 rad + pos: 6.5,-45.5 parent: 30 - - type: DeviceLinkSource - linkedPorts: - 10135: - - DoorStatus: DoorBolt + - type: DeviceLinkSink + invokeCounter: 1 - uid: 20059 components: - type: Transform @@ -9939,6 +9729,12 @@ entities: - type: Transform pos: -63.5,-18.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17342: + - DoorStatus: DoorBolt - uid: 5391 components: - type: Transform @@ -9948,6 +9744,48 @@ entities: linkedPorts: 5390: - DoorStatus: DoorBolt + - uid: 9654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-54.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9655: + - DoorStatus: DoorBolt + 9675: + - DoorStatus: DoorBolt + - uid: 9655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-56.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9654: + - DoorStatus: DoorBolt + 9675: + - DoorStatus: DoorBolt + - uid: 9675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-56.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9654: + - DoorStatus: DoorBolt + 9655: + - DoorStatus: DoorBolt - uid: 15334 components: - type: Transform @@ -9971,6 +9809,12 @@ entities: - type: Transform pos: -63.5,-20.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 386: + - DoorStatus: DoorBolt - uid: 18018 components: - type: Transform @@ -10065,6 +9909,12 @@ entities: rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 30 + - uid: 11449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,36.5 + parent: 30 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 11864 @@ -10087,6 +9937,12 @@ entities: rot: 3.141592653589793 rad pos: -18.5,46.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1696: + - DoorStatus: DoorBolt - uid: 5390 components: - type: Transform @@ -10101,11 +9957,23 @@ entities: - type: Transform pos: 45.5,16.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15830: + - DoorStatus: DoorBolt - uid: 15830 components: - type: Transform pos: 48.5,16.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 15829: + - DoorStatus: DoorBolt - uid: 16278 components: - type: Transform @@ -10132,6 +10000,12 @@ entities: rot: -1.5707963267948966 rad pos: -85.5,-60.5 parent: 30 + - type: DeviceLinkSource + linkedPorts: + 841: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 460 @@ -10191,6 +10065,17 @@ entities: - type: Transform pos: -26.5,24.5 parent: 30 + - uid: 840 + components: + - type: Transform + pos: -50.5,62.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2312: + - DoorStatus: DoorBolt - uid: 1006 components: - type: Transform @@ -10266,11 +10151,32 @@ entities: - type: Transform pos: -25.5,28.5 parent: 30 + - uid: 1827 + components: + - type: Transform + pos: -46.5,62.5 + parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1829: + - DoorStatus: DoorBolt - uid: 2123 components: - type: Transform pos: -34.5,-0.5 parent: 30 + - uid: 4098 + components: + - type: Transform + pos: -62.5,-61.5 + parent: 30 + - uid: 4101 + components: + - type: Transform + pos: -61.5,-61.5 + parent: 30 - uid: 6287 components: - type: Transform @@ -10466,35 +10372,25 @@ entities: - type: Transform pos: -59.5,-22.5 parent: 30 - - uid: 18534 - components: - - type: Transform - pos: -57.5,-54.5 - parent: 30 - - uid: 18691 + - uid: 17717 components: - type: Transform - pos: -66.5,-54.5 + pos: -71.5,-59.5 parent: 30 - - uid: 18733 + - uid: 18360 components: - type: Transform pos: -71.5,-60.5 parent: 30 - - uid: 18734 - components: - - type: Transform - pos: -69.5,-58.5 - parent: 30 - - uid: 18814 + - uid: 18534 components: - type: Transform - pos: -59.5,-61.5 + pos: -57.5,-54.5 parent: 30 - - uid: 18815 + - uid: 18691 components: - type: Transform - pos: -58.5,-61.5 + pos: -66.5,-54.5 parent: 30 - uid: 19392 components: @@ -10516,6 +10412,18 @@ entities: - type: Transform pos: -69.5,-54.5 parent: 30 +- proto: AirlockGlassShuttle + entities: + - uid: 9121 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 30 + - uid: 11452 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 30 - proto: AirlockHatchMaintenance entities: - uid: 9957 @@ -10671,17 +10579,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 30 - - uid: 9462 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 30 - - uid: 22634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-60.5 - parent: 30 - proto: AirlockMaintGlass entities: - uid: 8303 @@ -10890,10 +10787,11 @@ entities: - type: Transform pos: -60.5,31.5 parent: 30 - - uid: 19687 + - uid: 18992 components: - type: Transform - pos: -19.5,-27.5 + rot: 3.141592653589793 rad + pos: -19.5,-28.5 parent: 30 - uid: 19815 components: @@ -11089,7 +10987,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: Door - secondsUntilStateChange: -537.51984 + secondsUntilStateChange: -19847.316 state: Opening - type: DeviceLinkSource lastSignals: @@ -11228,6 +11126,12 @@ entities: parent: 30 - proto: AirlockScienceGlassLocked entities: + - uid: 7677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 - uid: 12914 components: - type: Transform @@ -11240,16 +11144,6 @@ entities: parent: 30 - proto: AirlockScienceLocked entities: - - uid: 12651 - components: - - type: Transform - pos: 16.5,15.5 - parent: 30 - - uid: 12652 - components: - - type: Transform - pos: 19.5,15.5 - parent: 30 - uid: 12908 components: - type: MetaData @@ -11257,17 +11151,12 @@ entities: - type: Transform pos: 34.5,8.5 parent: 30 -- proto: AirlockSecurityGlass - entities: - - uid: 2312 + - uid: 14335 components: - type: Transform - pos: -50.5,62.5 + rot: 3.141592653589793 rad + pos: 14.5,13.5 parent: 30 - - type: DeviceLinkSource - linkedPorts: - 840: - - DoorStatus: DoorBolt - proto: AirlockSecurityGlassLocked entities: - uid: 1696 @@ -11276,6 +11165,12 @@ entities: rot: 3.141592653589793 rad pos: -21.5,46.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5070: + - DoorStatus: DoorBolt - uid: 1756 components: - type: Transform @@ -11286,11 +11181,6 @@ entities: - type: Transform pos: -32.5,45.5 parent: 30 - - uid: 1829 - components: - - type: Transform - pos: -46.5,62.5 - parent: 30 - uid: 1873 components: - type: Transform @@ -11350,15 +11240,6 @@ entities: parent: 30 - proto: AirlockSecurityLocked entities: - - uid: 840 - components: - - type: Transform - pos: -50.5,59.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 2312: - - DoorStatus: DoorBolt - uid: 1057 components: - type: Transform @@ -11374,16 +11255,33 @@ entities: - type: Transform pos: -28.5,46.5 parent: 30 - - uid: 1827 + - uid: 1828 + components: + - type: Transform + pos: -29.5,55.5 + parent: 30 + - uid: 1829 components: - type: Transform pos: -46.5,59.5 parent: 30 - - uid: 1828 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1827: + - DoorStatus: DoorBolt + - uid: 2312 components: - type: Transform - pos: -29.5,55.5 + pos: -50.5,59.5 parent: 30 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 840: + - DoorStatus: DoorBolt - uid: 13548 components: - type: Transform @@ -11408,6 +11306,11 @@ entities: - type: Transform pos: -6.5,14.5 parent: 30 + - uid: 12637 + components: + - type: Transform + pos: -67.5,-62.5 + parent: 30 - proto: AirlockTheatreLocked entities: - uid: 652 @@ -11424,6 +11327,16 @@ entities: parent: 30 - proto: AirSensor entities: + - uid: 4353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-26.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 7116 components: - type: Transform @@ -11461,76 +11374,83 @@ entities: deviceLists: - 8262 - 8254 - - uid: 9952 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 17227 + - uid: 9994 components: - type: Transform - pos: -46.5,-17.5 + pos: 0.5,-48.5 parent: 30 - - uid: 17228 + - type: DeviceNetwork + deviceLists: + - 9996 + - uid: 9995 components: - type: Transform - pos: -48.5,-23.5 + rot: -1.5707963267948966 rad + pos: -17.5,-51.5 parent: 30 - - uid: 20326 + - type: DeviceNetwork + deviceLists: + - 13965 + - 19570 + - uid: 9999 components: - type: Transform - pos: -56.5,-23.5 + pos: 1.5,-39.5 parent: 30 - - uid: 20354 + - type: DeviceNetwork + deviceLists: + - 19597 + - uid: 10000 components: - type: Transform - pos: -8.5,-44.5 + pos: -8.5,-40.5 parent: 30 - - uid: 20355 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 17227 components: - type: Transform - pos: -9.5,-39.5 + pos: -46.5,-17.5 parent: 30 - - uid: 20358 + - uid: 17228 components: - type: Transform - pos: -17.5,-40.5 + pos: -48.5,-23.5 parent: 30 - - uid: 21741 + - uid: 18073 components: - type: Transform - pos: -17.5,-34.5 + pos: 20.5,13.5 parent: 30 - - uid: 21744 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 19562 components: - type: Transform - pos: -12.5,-33.5 + pos: -17.5,-42.5 parent: 30 - - uid: 21745 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 20326 components: - type: Transform - pos: 1.5,-40.5 + pos: -56.5,-23.5 parent: 30 - uid: 21749 components: - type: Transform pos: -2.5,-25.5 parent: 30 - - uid: 21753 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 30 - uid: 21756 components: - type: Transform pos: 12.5,-36.5 parent: 30 - - uid: 21759 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 30 - uid: 21761 components: - type: Transform @@ -11626,11 +11546,6 @@ entities: - type: Transform pos: -66.5,-48.5 parent: 30 - - uid: 21845 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 30 - uid: 21847 components: - type: Transform @@ -11856,11 +11771,6 @@ entities: - type: Transform pos: 32.5,19.5 parent: 30 - - uid: 22056 - components: - - type: Transform - pos: 20.5,11.5 - parent: 30 - uid: 22058 components: - type: Transform @@ -11935,17 +11845,10 @@ entities: parent: 30 - proto: AmeController entities: - - uid: 9476 - components: - - type: Transform - pos: -11.5,-27.5 - parent: 30 -- proto: AmeJar - entities: - - uid: 801 + - uid: 11269 components: - type: Transform - pos: -17.490644,-32.439728 + pos: -13.5,-47.5 parent: 30 - proto: AnomalyScanner entities: @@ -12136,8 +12039,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 7079 components: - type: MetaData @@ -12163,8 +12064,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 7433 components: - type: MetaData @@ -12183,8 +12082,6 @@ entities: parent: 30 - type: Apc hasAccess: True - lastExternalState: Good - lastChargeState: Full - uid: 7610 components: - type: MetaData @@ -12236,6 +12133,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-23.5 parent: 30 + - uid: 8278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-45.5 + parent: 30 - uid: 8363 components: - type: MetaData @@ -12268,16 +12171,6 @@ entities: - type: Transform pos: 0.5,-31.5 parent: 30 - - uid: 9573 - components: - - type: MetaData - name: Engineering APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 30 - - type: Battery - startingCharge: 12000 - uid: 9628 components: - type: MetaData @@ -12286,29 +12179,16 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-2.5 parent: 30 - - uid: 10633 - components: - - type: MetaData - name: Engineering Central APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-38.5 - parent: 30 - - uid: 10641 + - uid: 9934 components: - - type: MetaData - name: AME APC - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-32.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10790 + - uid: 10590 components: - - type: MetaData - name: TEG APC - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + pos: -20.5,-53.5 parent: 30 - uid: 10791 components: @@ -12318,6 +12198,11 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 30 + - uid: 11014 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 30 - uid: 11808 components: - type: MetaData @@ -12340,13 +12225,6 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,10.5 parent: 30 - - uid: 12974 - components: - - type: MetaData - name: RND APC - - type: Transform - pos: 18.5,13.5 - parent: 30 - uid: 13096 components: - type: MetaData @@ -12368,6 +12246,12 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - uid: 14364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 30 - uid: 14541 components: - type: MetaData @@ -12409,6 +12293,11 @@ entities: - type: Transform pos: 0.5,85.5 parent: 30 + - uid: 20367 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 30 - uid: 22213 components: - type: MetaData @@ -12424,21 +12313,12 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,10.5 parent: 30 - - uid: 22672 - components: - - type: MetaData - name: Telecomms APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-57.5 - parent: 30 - - uid: 22673 +- proto: APCElectronics + entities: + - uid: 15969 components: - - type: MetaData - name: Telecomms Entrance APC - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-60.5 + pos: 3.115302,20.471077 parent: 30 - proto: APCSuperCapacity entities: @@ -12475,6 +12355,41 @@ entities: parent: 30 - proto: AsteroidRock entities: + - uid: 332 + components: + - type: Transform + pos: -61.5,-68.5 + parent: 30 + - uid: 333 + components: + - type: Transform + pos: -60.5,-69.5 + parent: 30 + - uid: 3342 + components: + - type: Transform + pos: -51.5,-67.5 + parent: 30 + - uid: 3343 + components: + - type: Transform + pos: -54.5,-68.5 + parent: 30 + - uid: 3345 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 30 + - uid: 3346 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 30 + - uid: 12854 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 30 - uid: 13747 components: - type: Transform @@ -12655,25 +12570,15 @@ entities: - type: Transform pos: -70.5,-49.5 parent: 30 - - uid: 18183 - components: - - type: Transform - pos: -74.5,-39.5 - parent: 30 - - uid: 18189 - components: - - type: Transform - pos: -53.5,-61.5 - parent: 30 - - uid: 18190 + - uid: 17791 components: - type: Transform - pos: -52.5,-61.5 + pos: -53.5,-68.5 parent: 30 - - uid: 18191 + - uid: 18183 components: - type: Transform - pos: -51.5,-61.5 + pos: -74.5,-39.5 parent: 30 - uid: 18192 components: @@ -12735,61 +12640,11 @@ entities: - type: Transform pos: -50.5,-62.5 parent: 30 - - uid: 18205 - components: - - type: Transform - pos: -51.5,-62.5 - parent: 30 - - uid: 18206 - components: - - type: Transform - pos: -52.5,-62.5 - parent: 30 - - uid: 18207 - components: - - type: Transform - pos: -52.5,-63.5 - parent: 30 - uid: 18208 components: - type: Transform pos: -50.5,-63.5 parent: 30 - - uid: 18210 - components: - - type: Transform - pos: -52.5,-64.5 - parent: 30 - - uid: 18211 - components: - - type: Transform - pos: -52.5,-65.5 - parent: 30 - - uid: 18212 - components: - - type: Transform - pos: -52.5,-66.5 - parent: 30 - - uid: 18213 - components: - - type: Transform - pos: -52.5,-67.5 - parent: 30 - - uid: 18214 - components: - - type: Transform - pos: -51.5,-66.5 - parent: 30 - - uid: 18215 - components: - - type: Transform - pos: -51.5,-65.5 - parent: 30 - - uid: 18216 - components: - - type: Transform - pos: -51.5,-64.5 - parent: 30 - uid: 18217 components: - type: Transform @@ -13000,36 +12855,6 @@ entities: - type: Transform pos: -81.5,-56.5 parent: 30 - - uid: 18354 - components: - - type: Transform - pos: -55.5,-69.5 - parent: 30 - - uid: 18355 - components: - - type: Transform - pos: -56.5,-69.5 - parent: 30 - - uid: 18356 - components: - - type: Transform - pos: -61.5,-69.5 - parent: 30 - - uid: 18357 - components: - - type: Transform - pos: -62.5,-69.5 - parent: 30 - - uid: 18358 - components: - - type: Transform - pos: -62.5,-68.5 - parent: 30 - - uid: 18359 - components: - - type: Transform - pos: -62.5,-67.5 - parent: 30 - uid: 18361 components: - type: Transform @@ -13085,25 +12910,60 @@ entities: - type: Transform pos: -66.5,-68.5 parent: 30 - - uid: 18372 + - uid: 18376 components: - type: Transform - pos: -65.5,-68.5 + pos: -79.5,-65.5 parent: 30 - - uid: 18373 + - uid: 18776 components: - type: Transform - pos: -64.5,-68.5 + pos: -58.5,-69.5 parent: 30 - - uid: 18374 + - uid: 18777 components: - type: Transform - pos: -63.5,-68.5 + pos: -57.5,-69.5 parent: 30 - - uid: 18376 + - uid: 18778 components: - type: Transform - pos: -79.5,-65.5 + pos: -59.5,-69.5 + parent: 30 + - uid: 18779 + components: + - type: Transform + pos: -57.5,-68.5 + parent: 30 + - uid: 18780 + components: + - type: Transform + pos: -58.5,-68.5 + parent: 30 + - uid: 18781 + components: + - type: Transform + pos: -56.5,-68.5 + parent: 30 + - uid: 18782 + components: + - type: Transform + pos: -55.5,-68.5 + parent: 30 + - uid: 18784 + components: + - type: Transform + pos: -59.5,-68.5 + parent: 30 + - uid: 18785 + components: + - type: Transform + pos: -60.5,-68.5 + parent: 30 + - uid: 18798 + components: + - type: Transform + pos: -56.5,-69.5 parent: 30 - uid: 19393 components: @@ -13115,72 +12975,77 @@ entities: - type: Transform pos: -73.5,-38.5 parent: 30 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 380 components: - type: Transform - pos: -59.5,-7.5 + pos: -52.5,-10.5 parent: 30 - - uid: 3707 + - uid: 868 components: - type: Transform + rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 30 - - uid: 9121 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 30 - - uid: 9122 + - uid: 1083 components: - type: Transform + rot: 1.5707963267948966 rad pos: 38.5,-3.5 parent: 30 - - uid: 9123 + - uid: 1475 components: - type: Transform - pos: -16.5,12.5 + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 parent: 30 - - uid: 9124 + - uid: 1490 components: - type: Transform - pos: -19.5,17.5 + rot: -1.5707963267948966 rad + pos: -65.5,23.5 parent: 30 - - uid: 9798 + - uid: 1493 components: - type: Transform - pos: -52.5,-7.5 + rot: -1.5707963267948966 rad + pos: -65.5,15.5 parent: 30 - - uid: 16402 + - uid: 3707 components: - type: Transform - pos: -65.5,23.5 + rot: -1.5707963267948966 rad + pos: -65.5,13.5 parent: 30 - - uid: 16403 + - uid: 11451 components: - type: Transform - pos: -65.5,21.5 + pos: -59.5,-10.5 parent: 30 - - uid: 16404 + - uid: 11453 components: - type: Transform - pos: -65.5,15.5 + rot: -1.5707963267948966 rad + pos: -53.5,36.5 parent: 30 - - uid: 16405 + - uid: 11454 components: - type: Transform - pos: -65.5,13.5 + rot: -1.5707963267948966 rad + pos: -65.5,21.5 parent: 30 - - uid: 20590 +- proto: AtmosDeviceFanTiny + entities: + - uid: 9123 components: - type: Transform - pos: -52.5,2.5 + pos: -16.5,12.5 parent: 30 - - uid: 20591 + - uid: 9124 components: - type: Transform - pos: -59.5,2.5 + pos: -19.5,17.5 parent: 30 - proto: AtmosFixBlockerMarker entities: @@ -13424,18 +13289,11 @@ entities: parent: 30 - proto: Autolathe entities: - - uid: 11276 + - uid: 3125 components: - type: Transform - pos: 3.5,-43.5 + pos: -21.5,-44.5 parent: 30 - - type: MaterialStorage - materialWhiteList: - - Steel - - Plastic - - Wood - - Glass - - Cloth - uid: 11726 components: - type: Transform @@ -13495,6 +13353,12 @@ entities: parent: 30 - proto: Barricade entities: + - uid: 3196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 30 - uid: 15531 components: - type: Transform @@ -13515,11 +13379,6 @@ entities: - type: Transform pos: -53.5,42.5 parent: 30 - - uid: 19688 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 30 - uid: 19689 components: - type: Transform @@ -13576,6 +13435,19 @@ entities: - type: Transform pos: -0.5,-10.5 parent: 30 +- proto: BaseComputer + entities: + - uid: 8821 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 30 + - uid: 9592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 30 - proto: BaseGasCondenser entities: - uid: 6731 @@ -13733,6 +13605,11 @@ entities: - type: Transform pos: -51.5,-53.5 parent: 30 + - uid: 18216 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 30 - uid: 21091 components: - type: Transform @@ -13777,14 +13654,6 @@ entities: - type: Transform pos: -17.5,31.5 parent: 30 -- proto: BedsheetCE - entities: - - uid: 9329 - components: - - type: Transform - parent: 9604 - - type: Physics - canCollide: False - proto: BedsheetCMO entities: - uid: 7166 @@ -13905,6 +13774,11 @@ entities: - type: Transform pos: -51.5,-53.5 parent: 30 + - uid: 18786 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 30 - uid: 21092 components: - type: Transform @@ -13990,50 +13864,57 @@ entities: - type: Transform pos: -43.5,16.5 parent: 30 - - uid: 9068 + - uid: 9064 components: - type: Transform - pos: 12.5,-38.5 + pos: -4.5,-58.5 parent: 30 - - uid: 9404 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9065 components: - type: Transform - pos: -24.5,-45.5 + pos: -3.5,-58.5 parent: 30 - - uid: 9405 + - uid: 9068 components: - type: Transform - pos: -23.5,-45.5 + pos: 12.5,-38.5 parent: 30 - - uid: 9825 + - uid: 9302 components: - type: Transform - pos: -13.5,-59.5 + pos: 2.5,-58.5 parent: 30 - - uid: 9826 + - uid: 9533 components: - type: Transform - pos: -13.5,-58.5 + pos: -16.5,-38.5 parent: 30 - - uid: 9827 + - uid: 9678 components: - type: Transform - pos: -13.5,-57.5 + pos: -2.5,-58.5 parent: 30 - - uid: 9828 + - uid: 9690 components: - type: Transform - pos: -1.5,-59.5 + pos: 1.5,-58.5 parent: 30 - - uid: 9829 + - uid: 9691 components: - type: Transform - pos: -1.5,-58.5 + pos: 3.5,-58.5 parent: 30 - - uid: 9830 + - uid: 11015 components: - type: Transform - pos: -1.5,-57.5 + pos: -18.5,-38.5 + parent: 30 + - uid: 11028 + components: + - type: Transform + pos: -17.5,-38.5 parent: 30 - uid: 11659 components: @@ -14070,16 +13951,11 @@ entities: - type: Transform pos: 36.5,14.5 parent: 30 - - uid: 13751 + - uid: 15990 components: - type: Transform pos: 48.5,25.5 parent: 30 - - uid: 14512 - components: - - type: Transform - pos: 48.5,23.5 - parent: 30 - uid: 16228 components: - type: Transform @@ -14216,38 +14092,38 @@ entities: enabled: False - proto: BookAtmosAirAlarms entities: - - uid: 22308 + - uid: 3347 components: - type: Transform - pos: -60.65072,-63.356808 + pos: -58.671722,-63.148144 parent: 30 - proto: BookAtmosDistro entities: - - uid: 22309 + - uid: 3359 components: - type: Transform - pos: -60.36943,-63.3924 + pos: -58.35984,-63.163 parent: 30 - proto: BookAtmosVentsMore entities: - - uid: 22310 + - uid: 16405 components: - type: Transform - pos: -60.68197,-63.450558 + pos: -58.656876,-63.44517 parent: 30 - proto: BookAtmosWaste entities: - - uid: 22311 + - uid: 3357 components: - type: Transform - pos: -60.353844,-63.575558 + pos: -58.35984,-63.50458 parent: 30 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 9948 components: - type: Transform - pos: -15.506373,7.7216425 + pos: -17.483065,5.6789637 parent: 30 - proto: BookRandomStory entities: @@ -14256,35 +14132,8 @@ entities: - type: Transform pos: 8.515235,-13.437349 parent: 30 - - uid: 22306 - components: - - type: Transform - pos: -54.57496,-63.325558 - parent: 30 - - uid: 22307 - components: - - type: Transform - pos: -54.340584,-63.466183 - parent: 30 -- proto: BooksBag - entities: - - uid: 22303 - components: - - type: Transform - pos: -60.525063,-67.28237 - parent: 30 - proto: Bookshelf entities: - - uid: 2356 - components: - - type: Transform - pos: -52.5,67.5 - parent: 30 - - uid: 2357 - components: - - type: Transform - pos: -52.5,66.5 - parent: 30 - uid: 12667 components: - type: Transform @@ -14307,6 +14156,16 @@ entities: - type: Transform pos: -39.5,-0.5 parent: 30 + - uid: 2356 + components: + - type: Transform + pos: -52.5,66.5 + parent: 30 + - uid: 2357 + components: + - type: Transform + pos: -52.5,67.5 + parent: 30 - uid: 2917 components: - type: Transform @@ -14327,50 +14186,30 @@ entities: - type: Transform pos: 7.5,-13.5 parent: 30 - - uid: 14970 - components: - - type: Transform - pos: -54.5,-65.5 - parent: 30 - - uid: 15180 - components: - - type: Transform - pos: -55.5,-65.5 - parent: 30 - - uid: 15213 - components: - - type: Transform - pos: -56.5,-65.5 - parent: 30 - - uid: 15214 - components: - - type: Transform - pos: -54.5,-67.5 - parent: 30 - - uid: 15280 + - uid: 10148 components: - type: Transform - pos: -55.5,-67.5 + pos: -60.5,-62.5 parent: 30 - - uid: 15353 + - uid: 10149 components: - type: Transform - pos: -56.5,-67.5 + pos: -58.5,-62.5 parent: 30 - - uid: 15355 + - uid: 12819 components: - type: Transform - pos: -54.5,-62.5 + pos: -59.5,-62.5 parent: 30 - - uid: 15975 + - uid: 14361 components: - type: Transform - pos: -55.5,-62.5 + pos: -58.5,-64.5 parent: 30 - - uid: 16165 + - uid: 14504 components: - type: Transform - pos: -56.5,-63.5 + pos: -67.5,-65.5 parent: 30 - uid: 16177 components: @@ -14412,6 +14251,11 @@ entities: - type: Transform pos: -76.5,-61.5 parent: 30 + - uid: 17544 + components: + - type: Transform + pos: -59.5,-64.5 + parent: 30 - uid: 17669 components: - type: Transform @@ -14432,6 +14276,21 @@ entities: - type: Transform pos: -74.5,-58.5 parent: 30 + - uid: 18773 + components: + - type: Transform + pos: -60.5,-66.5 + parent: 30 + - uid: 18774 + components: + - type: Transform + pos: -58.5,-66.5 + parent: 30 + - uid: 18783 + components: + - type: Transform + pos: -59.5,-66.5 + parent: 30 - uid: 18818 components: - type: Transform @@ -14580,6 +14439,11 @@ entities: parent: 30 - proto: BoxFolderGrey entities: + - uid: 339 + components: + - type: Transform + pos: 16.633371,16.353863 + parent: 30 - uid: 1403 components: - type: Transform @@ -14590,11 +14454,6 @@ entities: - type: Transform pos: -11.490971,34.71304 parent: 30 - - uid: 12865 - components: - - type: Transform - pos: 14.525648,10.557264 - parent: 30 - proto: BoxFolderRed entities: - uid: 1520 @@ -14656,11 +14515,6 @@ entities: - type: Transform pos: -7.4440956,34.21304 parent: 30 - - uid: 9616 - components: - - type: Transform - pos: -17.512093,-35.436672 - parent: 30 - uid: 11253 components: - type: Transform @@ -14671,10 +14525,10 @@ entities: - type: Transform pos: 17.53771,-0.43951988 parent: 30 - - uid: 19424 + - uid: 12842 components: - type: Transform - pos: -60.46691,-65.40645 + pos: -62.622215,-64.76696 parent: 30 - proto: BoxHandcuff entities: @@ -14707,7 +14561,7 @@ entities: - uid: 18788 components: - type: Transform - pos: -63.476974,-62.485996 + pos: -52.499535,-60.446262 parent: 30 - proto: BoxLightMixed entities: @@ -14854,11 +14708,6 @@ entities: parent: 30 - proto: Bucket entities: - - uid: 318 - components: - - type: Transform - pos: -24.461937,5.451811 - parent: 30 - uid: 323 components: - type: Transform @@ -14874,6 +14723,11 @@ entities: - type: Transform pos: -47.45382,68.49689 parent: 30 + - uid: 13049 + components: + - type: Transform + pos: -24.119356,6.357745 + parent: 30 - uid: 19541 components: - type: Transform @@ -14891,6 +14745,49 @@ entities: - type: Transform pos: -15.949732,15.31613 parent: 30 +- proto: ButtonFrameCaution + entities: + - uid: 12380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 30 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 9062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 30 + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 30 +- proto: ButtonFrameGrey + entities: + - uid: 11138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 30 +- proto: ButtonFrameJanitor + entities: + - uid: 9401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 30 + - uid: 9405 + components: + - type: Transform + pos: 18.5,17.5 + parent: 30 - proto: CableApcExtension entities: - uid: 41 @@ -14903,6 +14800,11 @@ entities: - type: Transform pos: 27.5,20.5 parent: 30 + - uid: 335 + components: + - type: Transform + pos: -67.5,-60.5 + parent: 30 - uid: 408 components: - type: Transform @@ -14913,15 +14815,25 @@ entities: - type: Transform pos: -14.5,20.5 parent: 30 - - uid: 828 + - uid: 773 components: - type: Transform - pos: 30.5,-6.5 + pos: -24.5,-41.5 parent: 30 - - uid: 870 + - uid: 788 components: - type: Transform - pos: -12.5,-55.5 + pos: -22.5,-40.5 + parent: 30 + - uid: 795 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 30 + - uid: 828 + components: + - type: Transform + pos: 30.5,-6.5 parent: 30 - uid: 878 components: @@ -14938,6 +14850,16 @@ entities: - type: Transform pos: -59.5,7.5 parent: 30 + - uid: 908 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 30 + - uid: 915 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 30 - uid: 917 components: - type: Transform @@ -15038,6 +14960,11 @@ entities: - type: Transform pos: -37.5,61.5 parent: 30 + - uid: 3126 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 30 - uid: 3193 components: - type: Transform @@ -16923,31 +16850,6 @@ entities: - type: Transform pos: -26.5,7.5 parent: 30 - - uid: 4126 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4127 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4128 - components: - - type: Transform - pos: -26.5,5.5 - parent: 30 - - uid: 4129 - components: - - type: Transform - pos: -27.5,5.5 - parent: 30 - - uid: 4130 - components: - - type: Transform - pos: -28.5,5.5 - parent: 30 - uid: 4131 components: - type: Transform @@ -16996,12 +16898,7 @@ entities: - uid: 4140 components: - type: Transform - pos: -25.5,6.5 - parent: 30 - - uid: 4141 - components: - - type: Transform - pos: -24.5,6.5 + pos: 16.5,11.5 parent: 30 - uid: 4142 components: @@ -17808,6 +17705,11 @@ entities: - type: Transform pos: -29.5,-22.5 parent: 30 + - uid: 4444 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 30 - uid: 4569 components: - type: Transform @@ -18858,11 +18760,6 @@ entities: - type: Transform pos: -51.5,55.5 parent: 30 - - uid: 4827 - components: - - type: Transform - pos: -7.5,-55.5 - parent: 30 - uid: 4829 components: - type: Transform @@ -18878,16 +18775,6 @@ entities: - type: Transform pos: -41.5,29.5 parent: 30 - - uid: 4893 - components: - - type: Transform - pos: -9.5,-55.5 - parent: 30 - - uid: 4894 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 30 - uid: 5188 components: - type: Transform @@ -20158,21 +20045,6 @@ entities: - type: Transform pos: 7.5,26.5 parent: 30 - - uid: 6274 - components: - - type: Transform - pos: -3.5,-55.5 - parent: 30 - - uid: 6466 - components: - - type: Transform - pos: -4.5,-55.5 - parent: 30 - - uid: 6467 - components: - - type: Transform - pos: -5.5,-55.5 - parent: 30 - uid: 6648 components: - type: Transform @@ -20448,6 +20320,11 @@ entities: - type: Transform pos: -29.5,-21.5 parent: 30 + - uid: 7107 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 30 - uid: 7138 components: - type: Transform @@ -20458,11 +20335,6 @@ entities: - type: Transform pos: -29.5,-23.5 parent: 30 - - uid: 7225 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 30 - uid: 7418 components: - type: Transform @@ -21423,16 +21295,26 @@ entities: - type: Transform pos: -34.5,-3.5 parent: 30 - - uid: 8253 + - uid: 8266 components: - type: Transform - pos: -11.5,-33.5 + pos: -20.5,-41.5 parent: 30 - uid: 8289 components: - type: Transform pos: -25.5,-23.5 parent: 30 + - uid: 8293 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 30 + - uid: 8294 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 30 - uid: 8302 components: - type: Transform @@ -21473,100 +21355,110 @@ entities: - type: Transform pos: 27.5,-21.5 parent: 30 - - uid: 8819 + - uid: 8800 components: - type: Transform - pos: -9.5,-58.5 + pos: -25.5,-41.5 parent: 30 - - uid: 8820 + - uid: 8807 components: - type: Transform - pos: -10.5,-58.5 + pos: -17.5,-36.5 + parent: 30 + - uid: 8818 + components: + - type: Transform + pos: -18.5,-36.5 parent: 30 - uid: 8822 components: - type: Transform - pos: -11.5,-58.5 + pos: -16.5,-36.5 parent: 30 - - uid: 9422 + - uid: 8823 components: - type: Transform - pos: -24.5,-6.5 + pos: -17.5,-42.5 parent: 30 - - uid: 9611 + - uid: 8824 components: - type: Transform - pos: 1.5,-8.5 + pos: -22.5,-48.5 parent: 30 - - uid: 9635 + - uid: 8825 components: - type: Transform - pos: -41.5,-11.5 + pos: -23.5,-48.5 parent: 30 - - uid: 9636 + - uid: 8835 components: - type: Transform - pos: -41.5,-12.5 + pos: -17.5,-41.5 parent: 30 - - uid: 9653 + - uid: 8836 components: - type: Transform - pos: -6.5,-58.5 + pos: -23.5,-49.5 parent: 30 - - uid: 9654 + - uid: 9406 components: - type: Transform - pos: -4.5,-58.5 + pos: -20.5,-42.5 parent: 30 - - uid: 9655 + - uid: 9421 components: - type: Transform - pos: -5.5,-58.5 + pos: -22.5,-41.5 parent: 30 - - uid: 9656 + - uid: 9422 components: - type: Transform - pos: -7.5,-58.5 + pos: -24.5,-6.5 parent: 30 - - uid: 9665 + - uid: 9567 components: - type: Transform - pos: -41.5,-13.5 + pos: -21.5,-41.5 parent: 30 - - uid: 9666 + - uid: 9611 components: - type: Transform - pos: -34.5,-5.5 + pos: 1.5,-8.5 parent: 30 - - uid: 9667 + - uid: 9619 components: - type: Transform - pos: -35.5,-6.5 + pos: -12.5,-28.5 parent: 30 - - uid: 9668 + - uid: 9635 components: - type: Transform - pos: -36.5,-6.5 + pos: -41.5,-11.5 parent: 30 - - uid: 9677 + - uid: 9636 components: - type: Transform - pos: -2.5,-55.5 + pos: -41.5,-12.5 parent: 30 - - uid: 9678 + - uid: 9665 components: - type: Transform - pos: -6.5,-55.5 + pos: -41.5,-13.5 parent: 30 - - uid: 9679 + - uid: 9666 components: - type: Transform - pos: -11.5,-55.5 + pos: -34.5,-5.5 parent: 30 - - uid: 9690 + - uid: 9667 components: - type: Transform - pos: -10.5,-55.5 + pos: -35.5,-6.5 + parent: 30 + - uid: 9668 + components: + - type: Transform + pos: -36.5,-6.5 parent: 30 - uid: 9698 components: @@ -21583,26 +21475,6 @@ entities: - type: Transform pos: -37.5,-6.5 parent: 30 - - uid: 9821 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 30 - - uid: 9822 - components: - - type: Transform - pos: -8.5,-58.5 - parent: 30 - - uid: 9823 - components: - - type: Transform - pos: -7.5,-56.5 - parent: 30 - - uid: 9824 - components: - - type: Transform - pos: -7.5,-57.5 - parent: 30 - uid: 9851 components: - type: Transform @@ -21633,6 +21505,21 @@ entities: - type: Transform pos: -18.5,-4.5 parent: 30 + - uid: 10001 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 30 + - uid: 10008 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 + - uid: 10009 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 30 - uid: 10048 components: - type: Transform @@ -21693,395 +21580,150 @@ entities: - type: Transform pos: -59.5,-8.5 parent: 30 - - uid: 10503 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 30 - - uid: 10536 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 30 - - uid: 10582 + - uid: 10163 components: - type: Transform - pos: -20.5,-38.5 + pos: -24.5,-48.5 parent: 30 - - uid: 10583 + - uid: 10176 components: - type: Transform - pos: -19.5,-38.5 + pos: -23.5,-47.5 parent: 30 - - uid: 10584 + - uid: 10179 components: - type: Transform - pos: -18.5,-38.5 + pos: -17.5,-43.5 parent: 30 - - uid: 10585 + - uid: 10180 components: - type: Transform pos: -17.5,-38.5 parent: 30 - - uid: 10586 - components: - - type: Transform - pos: -18.5,-37.5 - parent: 30 - - uid: 10587 - components: - - type: Transform - pos: -18.5,-36.5 - parent: 30 - - uid: 10588 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 30 - - uid: 10589 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 30 - - uid: 10590 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 30 - - uid: 10591 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 30 - - uid: 10592 - components: - - type: Transform - pos: -18.5,-39.5 - parent: 30 - - uid: 10593 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 30 - - uid: 10594 + - uid: 10181 components: - type: Transform pos: -18.5,-41.5 parent: 30 - - uid: 10595 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 30 - - uid: 10596 - components: - - type: Transform - pos: -18.5,-43.5 - parent: 30 - - uid: 10597 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 30 - - uid: 10598 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 10599 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 30 - - uid: 10600 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 30 - - uid: 10601 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 10602 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 10603 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 10604 + - uid: 10182 components: - type: Transform - pos: -23.5,-45.5 + pos: -19.5,-41.5 parent: 30 - - uid: 10605 + - uid: 10192 components: - type: Transform pos: -23.5,-46.5 parent: 30 - - uid: 10606 - components: - - type: Transform - pos: -23.5,-47.5 - parent: 30 - - uid: 10607 + - uid: 10194 components: - type: Transform - pos: -23.5,-48.5 + pos: -23.5,-45.5 parent: 30 - - uid: 10608 + - uid: 10235 components: - type: Transform - pos: -23.5,-49.5 + pos: -3.5,-14.5 parent: 30 - - uid: 10609 + - uid: 10268 components: - type: Transform - pos: -23.5,-50.5 + pos: -16.5,-30.5 parent: 30 - - uid: 10610 + - uid: 10269 components: - type: Transform - pos: -23.5,-41.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10611 + - uid: 10270 components: - type: Transform - pos: -23.5,-40.5 + pos: -20.5,-43.5 parent: 30 - - uid: 10612 + - uid: 10444 components: - type: Transform - pos: -24.5,-40.5 + pos: -17.5,-30.5 parent: 30 - - uid: 10613 + - uid: 10531 components: - type: Transform - pos: -25.5,-40.5 + pos: -15.5,-30.5 parent: 30 - - uid: 10614 + - uid: 10538 components: - type: Transform - pos: -22.5,-40.5 + pos: -20.5,-44.5 parent: 30 - - uid: 10615 + - uid: 10597 components: - type: Transform - pos: -21.5,-40.5 + pos: -19.5,-53.5 parent: 30 - - uid: 10616 + - uid: 10612 components: - type: Transform - pos: -17.5,-43.5 + pos: -14.5,-30.5 parent: 30 - uid: 10617 components: - type: Transform - pos: -17.5,-44.5 - parent: 30 - - uid: 10618 - components: - - type: Transform - pos: -17.5,-45.5 + pos: -17.5,-51.5 parent: 30 - uid: 10619 components: - type: Transform - pos: -17.5,-46.5 - parent: 30 - - uid: 10620 - components: - - type: Transform - pos: -17.5,-47.5 + pos: -20.5,-53.5 parent: 30 - uid: 10621 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 10622 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 10623 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - uid: 10624 components: - type: Transform pos: -17.5,-50.5 parent: 30 - - uid: 10625 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 10626 + - uid: 10624 components: - type: Transform - pos: -17.5,-52.5 + pos: -23.5,-55.5 parent: 30 - uid: 10627 components: - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 10628 - components: - - type: Transform - pos: -17.5,-54.5 + pos: -23.5,-56.5 parent: 30 - uid: 10629 components: - type: Transform - pos: -17.5,-40.5 - parent: 30 - - uid: 10630 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 30 - - uid: 10631 - components: - - type: Transform - pos: -15.5,-40.5 + pos: -19.5,-52.5 parent: 30 - uid: 10632 components: - type: Transform pos: -9.5,-7.5 parent: 30 - - uid: 10634 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 30 - - uid: 10635 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 30 - - uid: 10636 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 30 - - uid: 10637 - components: - - type: Transform - pos: -9.5,-40.5 - parent: 30 - - uid: 10638 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 30 - - uid: 10639 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 30 - - uid: 10640 - components: - - type: Transform - pos: -7.5,-41.5 - parent: 30 - uid: 10644 components: - type: Transform - pos: -7.5,-44.5 + pos: -19.5,-51.5 parent: 30 - uid: 10645 components: - type: Transform - pos: -8.5,-44.5 - parent: 30 - - uid: 10646 - components: - - type: Transform - pos: -9.5,-44.5 + pos: -17.5,-49.5 parent: 30 - uid: 10647 components: - type: Transform - pos: -10.5,-44.5 - parent: 30 - - uid: 10648 - components: - - type: Transform - pos: -11.5,-44.5 - parent: 30 - - uid: 10649 - components: - - type: Transform - pos: -12.5,-44.5 - parent: 30 - - uid: 10650 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 30 - - uid: 10651 - components: - - type: Transform - pos: -13.5,-45.5 + pos: -11.5,-57.5 parent: 30 - uid: 10652 components: - type: Transform - pos: -13.5,-46.5 - parent: 30 - - uid: 10653 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 30 - - uid: 10654 - components: - - type: Transform - pos: -13.5,-48.5 - parent: 30 - - uid: 10655 - components: - - type: Transform - pos: -13.5,-49.5 - parent: 30 - - uid: 10656 - components: - - type: Transform - pos: -13.5,-50.5 - parent: 30 - - uid: 10657 - components: - - type: Transform - pos: -13.5,-51.5 + pos: -13.5,-31.5 parent: 30 - uid: 10658 components: - type: Transform - pos: -13.5,-52.5 - parent: 30 - - uid: 10659 - components: - - type: Transform - pos: -13.5,-53.5 - parent: 30 - - uid: 10660 - components: - - type: Transform - pos: -13.5,-54.5 - parent: 30 - - uid: 10661 - components: - - type: Transform - pos: -13.5,-55.5 + pos: -11.5,-58.5 parent: 30 - uid: 10662 components: @@ -22123,85 +21765,45 @@ entities: - type: Transform pos: -63.5,23.5 parent: 30 - - uid: 10679 - components: - - type: Transform - pos: -1.5,-55.5 - parent: 30 - - uid: 10680 - components: - - type: Transform - pos: -1.5,-53.5 - parent: 30 - - uid: 10681 - components: - - type: Transform - pos: -1.5,-52.5 - parent: 30 - - uid: 10682 - components: - - type: Transform - pos: -1.5,-54.5 - parent: 30 - - uid: 10683 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 30 - - uid: 10684 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 30 - - uid: 10685 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 30 - - uid: 10686 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 30 - - uid: 10687 + - uid: 10672 components: - type: Transform - pos: -1.5,-47.5 + pos: -11.5,-29.5 parent: 30 - - uid: 10689 + - uid: 10673 components: - type: Transform - pos: -1.5,-45.5 + pos: -8.5,-29.5 parent: 30 - uid: 10690 components: - type: Transform - pos: -2.5,-44.5 + pos: -17.5,-55.5 parent: 30 - uid: 10691 components: - type: Transform - pos: -3.5,-44.5 + pos: -16.5,-55.5 parent: 30 - uid: 10692 components: - type: Transform - pos: -1.5,-44.5 + pos: -18.5,-55.5 parent: 30 - uid: 10693 components: - type: Transform - pos: -4.5,-44.5 + pos: -15.5,-55.5 parent: 30 - - uid: 10694 + - uid: 10695 components: - type: Transform - pos: -6.5,-44.5 + pos: -23.5,-57.5 parent: 30 - - uid: 10695 + - uid: 10696 components: - type: Transform - pos: -5.5,-44.5 + pos: -23.5,-58.5 parent: 30 - uid: 10717 components: @@ -22243,21 +21845,6 @@ entities: - type: Transform pos: 1.5,-37.5 parent: 30 - - uid: 10725 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 30 - - uid: 10726 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - uid: 10727 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 30 - uid: 10728 components: - type: Transform @@ -22311,7 +21898,7 @@ entities: - uid: 10740 components: - type: Transform - pos: 2.5,-20.5 + pos: -10.5,-37.5 parent: 30 - uid: 10744 components: @@ -22348,100 +21935,10 @@ entities: - type: Transform pos: -2.5,-25.5 parent: 30 - - uid: 10751 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 30 - - uid: 10752 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 30 - - uid: 10753 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 30 - - uid: 10754 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 30 - uid: 10755 components: - type: Transform - pos: -7.5,-29.5 - parent: 30 - - uid: 10756 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 30 - - uid: 10757 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 30 - - uid: 10758 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 30 - - uid: 10759 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 30 - - uid: 10760 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 30 - - uid: 10761 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 30 - - uid: 10762 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 30 - - uid: 10763 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 30 - - uid: 10764 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 30 - - uid: 10765 - components: - - type: Transform - pos: -16.5,-30.5 - parent: 30 - - uid: 10766 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 30 - - uid: 10767 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 30 - - uid: 10768 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 30 - - uid: 10769 - components: - - type: Transform - pos: -12.5,-26.5 + pos: -14.5,-55.5 parent: 30 - uid: 10770 components: @@ -22518,80 +22015,15 @@ entities: - type: Transform pos: -21.5,-25.5 parent: 30 - - uid: 10785 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 30 - - uid: 10786 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 30 - - uid: 10787 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 30 - - uid: 10788 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 30 - - uid: 10789 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 30 - uid: 10792 components: - type: Transform pos: -10.5,-7.5 parent: 30 - - uid: 10793 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 30 - - uid: 10794 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 30 - - uid: 10795 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 30 - uid: 10796 components: - type: Transform - pos: -6.5,-33.5 - parent: 30 - - uid: 10797 - components: - - type: Transform - pos: -5.5,-33.5 - parent: 30 - - uid: 10798 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 30 - - uid: 10799 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 30 - - uid: 10800 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 30 - - uid: 10801 - components: - - type: Transform - pos: -7.5,-27.5 + pos: -13.5,-55.5 parent: 30 - uid: 10802 components: @@ -23378,170 +22810,25 @@ entities: - type: Transform pos: 24.5,-35.5 parent: 30 - - uid: 11039 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 30 - - uid: 11040 - components: - - type: Transform - pos: -9.5,-35.5 - parent: 30 - - uid: 11041 - components: - - type: Transform - pos: -9.5,-36.5 - parent: 30 - - uid: 11042 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 30 - - uid: 11043 - components: - - type: Transform - pos: -5.5,-35.5 - parent: 30 - - uid: 11044 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 30 - - uid: 11045 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 30 - - uid: 11046 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 30 - - uid: 11047 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 30 - - uid: 11048 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 30 - - uid: 11049 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 30 - - uid: 11050 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 30 - - uid: 11051 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 30 - - uid: 11052 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 30 - - uid: 11053 - components: - - type: Transform - pos: -0.5,-40.5 - parent: 30 - - uid: 11054 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 30 - - uid: 11055 - components: - - type: Transform - pos: 1.5,-40.5 - parent: 30 - - uid: 11056 - components: - - type: Transform - pos: 2.5,-40.5 - parent: 30 - - uid: 11057 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 30 - - uid: 11058 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 30 - - uid: 11059 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 30 - - uid: 11060 - components: - - type: Transform - pos: 1.5,-43.5 - parent: 30 - - uid: 11061 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 30 - - uid: 11062 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 30 - - uid: 11063 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 30 - - uid: 11064 - components: - - type: Transform - pos: -2.5,-39.5 - parent: 30 - - uid: 11065 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 30 - - uid: 11066 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 30 - - uid: 11067 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 30 - - uid: 11068 + - uid: 11098 components: - type: Transform - pos: -12.5,-38.5 + pos: -13.5,-30.5 parent: 30 - - uid: 11069 + - uid: 11099 components: - type: Transform - pos: -12.5,-37.5 + pos: -17.5,-37.5 parent: 30 - - uid: 11070 + - uid: 11101 components: - type: Transform - pos: -15.5,-41.5 + pos: -12.5,-55.5 parent: 30 - - uid: 11071 + - uid: 11128 components: - type: Transform - pos: -15.5,-42.5 + pos: -12.5,-34.5 parent: 30 - uid: 11231 components: @@ -23578,11 +22865,66 @@ entities: - type: Transform pos: 22.5,-37.5 parent: 30 + - uid: 11300 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 30 + - uid: 11301 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 30 + - uid: 11305 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 30 + - uid: 11306 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 30 + - uid: 11311 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 30 + - uid: 11312 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 30 - uid: 11332 components: - type: Transform pos: 1.5,-9.5 parent: 30 + - uid: 11335 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 11339 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 30 + - uid: 11341 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 30 + - uid: 11342 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 11343 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 30 - uid: 11350 components: - type: Transform @@ -24688,11 +24030,6 @@ entities: - type: Transform pos: -41.5,25.5 parent: 30 - - uid: 12297 - components: - - type: Transform - pos: -7.5,-54.5 - parent: 30 - uid: 12307 components: - type: Transform @@ -25288,11 +24625,6 @@ entities: - type: Transform pos: 24.5,34.5 parent: 30 - - uid: 12442 - components: - - type: Transform - pos: -0.5,-47.5 - parent: 30 - uid: 12444 components: - type: Transform @@ -25303,10 +24635,15 @@ entities: - type: Transform pos: 31.5,31.5 parent: 30 - - uid: 12663 + - uid: 12668 components: - type: Transform - pos: -7.5,-53.5 + pos: -68.5,-60.5 + parent: 30 + - uid: 12680 + components: + - type: Transform + pos: -69.5,-60.5 parent: 30 - uid: 12832 components: @@ -25318,16 +24655,6 @@ entities: - type: Transform pos: 25.5,20.5 parent: 30 - - uid: 12961 - components: - - type: Transform - pos: 18.5,13.5 - parent: 30 - - uid: 12973 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13169 components: - type: Transform @@ -25663,11 +24990,6 @@ entities: - type: Transform pos: 14.5,11.5 parent: 30 - - uid: 13241 - components: - - type: Transform - pos: 13.5,11.5 - parent: 30 - uid: 13242 components: - type: Transform @@ -27713,6 +27035,11 @@ entities: - type: Transform pos: 23.5,-0.5 parent: 30 + - uid: 17725 + components: + - type: Transform + pos: 13.5,11.5 + parent: 30 - uid: 17811 components: - type: Transform @@ -27788,11 +27115,41 @@ entities: - type: Transform pos: -45.5,-25.5 parent: 30 + - uid: 18085 + components: + - type: Transform + pos: 16.5,13.5 + parent: 30 - uid: 18126 components: - type: Transform pos: -79.5,-57.5 parent: 30 + - uid: 18814 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - uid: 18820 + components: + - type: Transform + pos: -23.5,7.5 + parent: 30 + - uid: 18827 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - uid: 18831 + components: + - type: Transform + pos: -25.5,7.5 + parent: 30 + - uid: 18833 + components: + - type: Transform + pos: -27.5,7.5 + parent: 30 - uid: 18970 components: - type: Transform @@ -28743,90 +28100,20 @@ entities: - type: Transform pos: -58.5,-60.5 parent: 30 - - uid: 19178 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 30 - - uid: 19179 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 30 - - uid: 19180 - components: - - type: Transform - pos: -58.5,-61.5 - parent: 30 - - uid: 19181 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 30 - - uid: 19182 - components: - - type: Transform - pos: -58.5,-65.5 - parent: 30 - - uid: 19183 - components: - - type: Transform - pos: -58.5,-66.5 - parent: 30 - - uid: 19184 - components: - - type: Transform - pos: -58.5,-67.5 - parent: 30 - - uid: 19185 - components: - - type: Transform - pos: -58.5,-68.5 - parent: 30 - - uid: 19186 - components: - - type: Transform - pos: -57.5,-66.5 - parent: 30 - uid: 19187 components: - type: Transform - pos: -56.5,-66.5 + pos: -13.5,-34.5 parent: 30 - uid: 19188 components: - type: Transform - pos: -55.5,-66.5 + pos: -13.5,-32.5 parent: 30 - uid: 19189 components: - type: Transform - pos: -59.5,-63.5 - parent: 30 - - uid: 19190 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 30 - - uid: 19191 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 30 - - uid: 19192 - components: - - type: Transform - pos: -56.5,-64.5 - parent: 30 - - uid: 19193 - components: - - type: Transform - pos: -55.5,-64.5 - parent: 30 - - uid: 19194 - components: - - type: Transform - pos: -54.5,-64.5 + pos: -13.5,-33.5 parent: 30 - uid: 19195 components: @@ -29008,70 +28295,10 @@ entities: - type: Transform pos: -55.5,-59.5 parent: 30 - - uid: 19231 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - - uid: 19232 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 30 - - uid: 19233 - components: - - type: Transform - pos: -64.5,-61.5 - parent: 30 - - uid: 19234 - components: - - type: Transform - pos: -64.5,-62.5 - parent: 30 - - uid: 19235 - components: - - type: Transform - pos: -64.5,-63.5 - parent: 30 - - uid: 19236 - components: - - type: Transform - pos: -64.5,-64.5 - parent: 30 - - uid: 19237 - components: - - type: Transform - pos: -64.5,-65.5 - parent: 30 - - uid: 19238 - components: - - type: Transform - pos: -63.5,-64.5 - parent: 30 - - uid: 19239 - components: - - type: Transform - pos: -62.5,-64.5 - parent: 30 - uid: 19240 components: - type: Transform - pos: -65.5,-63.5 - parent: 30 - - uid: 19241 - components: - - type: Transform - pos: -67.5,-63.5 - parent: 30 - - uid: 19242 - components: - - type: Transform - pos: -66.5,-63.5 - parent: 30 - - uid: 19243 - components: - - type: Transform - pos: -68.5,-63.5 + pos: -11.5,-55.5 parent: 30 - uid: 19244 components: @@ -29718,16 +28945,6 @@ entities: - type: Transform pos: -70.5,-60.5 parent: 30 - - uid: 19373 - components: - - type: Transform - pos: -70.5,-59.5 - parent: 30 - - uid: 19374 - components: - - type: Transform - pos: -70.5,-58.5 - parent: 30 - uid: 19375 components: - type: Transform @@ -29813,16 +29030,6 @@ entities: - type: Transform pos: -50.5,43.5 parent: 30 - - uid: 19597 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 30 - - uid: 19598 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 30 - uid: 19599 components: - type: Transform @@ -29908,50 +29115,110 @@ entities: - type: Transform pos: -29.5,-34.5 parent: 30 - - uid: 19709 + - uid: 19796 components: - type: Transform - pos: -19.5,-34.5 + pos: -12.5,-29.5 parent: 30 - - uid: 19710 + - uid: 19797 components: - type: Transform - pos: -18.5,-34.5 + pos: -38.5,62.5 parent: 30 - - uid: 19781 + - uid: 19828 components: - type: Transform - pos: -1.5,-46.5 + pos: -7.5,-29.5 parent: 30 - - uid: 19794 + - uid: 19829 components: - type: Transform - pos: -1.5,-45.5 + pos: -10.5,-29.5 parent: 30 - - uid: 19795 + - uid: 19832 components: - type: Transform - pos: -13.5,-38.5 + pos: -10.5,-38.5 parent: 30 - - uid: 19796 + - uid: 19833 components: - type: Transform - pos: -14.5,-38.5 + pos: -10.5,-39.5 parent: 30 - - uid: 19797 + - uid: 19834 components: - type: Transform - pos: -38.5,62.5 + pos: -12.5,-39.5 parent: 30 - - uid: 19801 + - uid: 19835 components: - type: Transform - pos: -13.5,-32.5 + pos: -12.5,-40.5 parent: 30 - - uid: 19802 + - uid: 19837 components: - type: Transform - pos: -14.5,-32.5 + pos: -12.5,-41.5 + parent: 30 + - uid: 19838 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 30 + - uid: 19839 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 30 + - uid: 19842 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 30 + - uid: 19845 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 30 + - uid: 19846 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - uid: 19847 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 30 + - uid: 19848 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 30 + - uid: 19849 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 30 + - uid: 19850 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 30 + - uid: 19851 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 30 + - uid: 19852 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 30 + - uid: 19853 + components: + - type: Transform + pos: -11.5,-39.5 parent: 30 - uid: 20163 components: @@ -30448,50 +29715,320 @@ entities: - type: Transform pos: 0.5,66.5 parent: 30 + - uid: 20320 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 20321 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 30 + - uid: 20322 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 30 + - uid: 20323 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 30 + - uid: 20324 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 30 + - uid: 20327 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 30 + - uid: 20328 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 30 + - uid: 20334 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 30 + - uid: 20343 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 30 + - uid: 20344 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 30 + - uid: 20346 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 30 + - uid: 20353 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 20354 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 20355 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 20356 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 20357 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 + - uid: 20358 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 30 + - uid: 20359 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 30 + - uid: 20361 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 30 + - uid: 20362 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 30 - uid: 20363 components: - type: Transform - pos: -0.5,-49.5 + pos: 0.5,-40.5 parent: 30 - uid: 20364 components: - type: Transform - pos: 0.5,-49.5 + pos: 1.5,-40.5 parent: 30 - uid: 20365 components: - type: Transform - pos: 1.5,-49.5 + pos: 1.5,-39.5 parent: 30 - uid: 20366 components: - type: Transform - pos: 1.5,-51.5 + pos: 1.5,-38.5 parent: 30 - - uid: 20367 + - uid: 20368 components: - type: Transform - pos: 1.5,-50.5 + pos: 1.5,-42.5 parent: 30 - - uid: 20368 + - uid: 20396 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 30 + - uid: 20397 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 30 + - uid: 20399 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 30 + - uid: 20409 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 30 + - uid: 20410 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 30 + - uid: 20411 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 30 + - uid: 20412 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 30 + - uid: 20413 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 30 + - uid: 20414 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 30 + - uid: 20415 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 30 + - uid: 20416 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 30 + - uid: 20417 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 30 + - uid: 20418 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 30 + - uid: 20419 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 30 + - uid: 20420 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 30 + - uid: 20421 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 30 + - uid: 20422 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 30 + - uid: 20423 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 30 + - uid: 20424 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 30 + - uid: 20425 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 30 + - uid: 20426 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 30 + - uid: 20427 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 30 + - uid: 20428 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 30 + - uid: 20429 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 30 + - uid: 20430 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 30 + - uid: 20431 + components: + - type: Transform + pos: -3.5,-52.5 + parent: 30 + - uid: 20440 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 30 + - uid: 20450 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 30 + - uid: 20462 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 30 + - uid: 20463 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 30 + - uid: 20464 components: - type: Transform pos: 1.5,-52.5 parent: 30 - - uid: 20369 + - uid: 20465 components: - type: Transform - pos: 1.5,-53.5 + pos: 2.5,-52.5 parent: 30 - - uid: 20370 + - uid: 20466 components: - type: Transform - pos: 1.5,-54.5 + pos: 3.5,-52.5 parent: 30 - - uid: 20371 + - uid: 20467 components: - type: Transform - pos: 0.5,-54.5 + pos: 3.5,-51.5 + parent: 30 + - uid: 20468 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 30 + - uid: 20469 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 30 + - uid: 20470 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 30 + - uid: 20474 + components: + - type: Transform + pos: 2.5,-48.5 parent: 30 - uid: 20504 components: @@ -30558,6 +30095,56 @@ entities: - type: Transform pos: -33.5,-35.5 parent: 30 + - uid: 20518 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 30 + - uid: 20527 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 30 + - uid: 20528 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 30 + - uid: 20538 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 30 + - uid: 20539 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 30 + - uid: 20544 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 30 + - uid: 20545 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 30 + - uid: 20562 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 30 + - uid: 20569 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 30 + - uid: 20570 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 30 - uid: 20582 components: - type: Transform @@ -30578,6 +30165,41 @@ entities: - type: Transform pos: -59.5,4.5 parent: 30 + - uid: 20590 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 30 + - uid: 20591 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 30 + - uid: 20613 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 30 + - uid: 20617 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 30 + - uid: 20618 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 30 + - uid: 20619 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 30 + - uid: 20620 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 30 - uid: 21007 components: - type: Transform @@ -31088,276 +30710,6 @@ entities: - type: Transform pos: 1.5,10.5 parent: 30 - - uid: 22706 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - - uid: 22707 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 30 - - uid: 22708 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 30 - - uid: 22709 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 30 - - uid: 22710 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 30 - - uid: 22711 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 30 - - uid: 22712 - components: - - type: Transform - pos: -34.5,-62.5 - parent: 30 - - uid: 22713 - components: - - type: Transform - pos: -34.5,-63.5 - parent: 30 - - uid: 22714 - components: - - type: Transform - pos: -35.5,-60.5 - parent: 30 - - uid: 22715 - components: - - type: Transform - pos: -36.5,-60.5 - parent: 30 - - uid: 22716 - components: - - type: Transform - pos: -36.5,-61.5 - parent: 30 - - uid: 22717 - components: - - type: Transform - pos: -37.5,-61.5 - parent: 30 - - uid: 22718 - components: - - type: Transform - pos: -38.5,-61.5 - parent: 30 - - uid: 22719 - components: - - type: Transform - pos: -39.5,-61.5 - parent: 30 - - uid: 22720 - components: - - type: Transform - pos: -39.5,-60.5 - parent: 30 - - uid: 22721 - components: - - type: Transform - pos: -40.5,-60.5 - parent: 30 - - uid: 22722 - components: - - type: Transform - pos: -41.5,-60.5 - parent: 30 - - uid: 22723 - components: - - type: Transform - pos: -39.5,-59.5 - parent: 30 - - uid: 22724 - components: - - type: Transform - pos: -38.5,-59.5 - parent: 30 - - uid: 22725 - components: - - type: Transform - pos: -37.5,-59.5 - parent: 30 - - uid: 22726 - components: - - type: Transform - pos: -36.5,-59.5 - parent: 30 - - uid: 22727 - components: - - type: Transform - pos: -41.5,-59.5 - parent: 30 - - uid: 22728 - components: - - type: Transform - pos: -41.5,-58.5 - parent: 30 - - uid: 22729 - components: - - type: Transform - pos: -41.5,-61.5 - parent: 30 - - uid: 22730 - components: - - type: Transform - pos: -41.5,-62.5 - parent: 30 - - uid: 22731 - components: - - type: Transform - pos: -36.5,-58.5 - parent: 30 - - uid: 22732 - components: - - type: Transform - pos: -36.5,-62.5 - parent: 30 - - uid: 22733 - components: - - type: Transform - pos: -39.5,-62.5 - parent: 30 - - uid: 22734 - components: - - type: Transform - pos: -39.5,-58.5 - parent: 30 - - uid: 22735 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22736 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 30 - - uid: 22737 - components: - - type: Transform - pos: -29.5,-61.5 - parent: 30 - - uid: 22738 - components: - - type: Transform - pos: -29.5,-62.5 - parent: 30 - - uid: 22739 - components: - - type: Transform - pos: -29.5,-63.5 - parent: 30 - - uid: 22740 - components: - - type: Transform - pos: -30.5,-63.5 - parent: 30 - - uid: 22741 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 30 - - uid: 22742 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 30 - - uid: 22743 - components: - - type: Transform - pos: -29.5,-57.5 - parent: 30 - - uid: 22744 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - - uid: 22745 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 30 - - uid: 22746 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 30 - - uid: 22747 - components: - - type: Transform - pos: -28.5,-58.5 - parent: 30 - - uid: 22748 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - uid: 22749 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22750 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22751 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 30 - - uid: 22752 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22753 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22754 - components: - - type: Transform - pos: -26.5,-62.5 - parent: 30 - - uid: 22755 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22756 - components: - - type: Transform - pos: -24.5,-58.5 - parent: 30 - - uid: 22757 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 22758 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 22759 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 30 - proto: CableApcStack entities: - uid: 1637 @@ -31370,11 +30722,6 @@ entities: - type: Transform pos: -36.516556,-12.325844 parent: 30 - - uid: 9605 - components: - - type: Transform - pos: -15.653,-34.268528 - parent: 30 - uid: 10259 components: - type: Transform @@ -31390,15 +30737,15 @@ entities: - type: Transform pos: -42.554832,27.618874 parent: 30 - - uid: 11310 + - uid: 11024 components: - type: Transform - pos: -11.510529,-35.15977 + pos: -5.583432,-34.527874 parent: 30 - uid: 18792 components: - type: Transform - pos: -66.4926,-62.50162 + pos: -55.006935,-63.112835 parent: 30 - uid: 20302 components: @@ -31412,15 +30759,10 @@ entities: parent: 30 - proto: CableHV entities: - - uid: 829 - components: - - type: Transform - pos: -20.5,-56.5 - parent: 30 - - uid: 833 + - uid: 867 components: - type: Transform - pos: -20.5,-57.5 + pos: -17.5,-47.5 parent: 30 - uid: 933 components: @@ -31442,6 +30784,16 @@ entities: - type: Transform pos: -46.5,8.5 parent: 30 + - uid: 2403 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 30 + - uid: 3152 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 30 - uid: 3187 components: - type: Transform @@ -31452,6 +30804,11 @@ entities: - type: Transform pos: -47.5,9.5 parent: 30 + - uid: 3221 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 30 - uid: 3532 components: - type: Transform @@ -31632,10 +30989,15 @@ entities: - type: Transform pos: -44.5,18.5 parent: 30 - - uid: 4444 + - uid: 4406 components: - type: Transform - pos: -20.5,-58.5 + pos: -3.5,-44.5 + parent: 30 + - uid: 4412 + components: + - type: Transform + pos: -20.5,-41.5 parent: 30 - uid: 4456 components: @@ -32387,11 +31749,6 @@ entities: - type: Transform pos: -22.5,43.5 parent: 30 - - uid: 5240 - components: - - type: Transform - pos: -24.5,-58.5 - parent: 30 - uid: 5507 components: - type: Transform @@ -32637,21 +31994,6 @@ entities: - type: Transform pos: 12.5,42.5 parent: 30 - - uid: 5635 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 5722 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 6095 - components: - - type: Transform - pos: -21.5,-58.5 - parent: 30 - uid: 6387 components: - type: Transform @@ -32752,10 +32094,70 @@ entities: - type: Transform pos: 19.5,31.5 parent: 30 + - uid: 6467 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 30 + - uid: 7096 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 30 + - uid: 7097 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 30 + - uid: 7101 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 7104 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 7105 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 - uid: 7106 components: - type: Transform - pos: -7.5,-45.5 + pos: -1.5,-39.5 + parent: 30 + - uid: 7108 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 30 + - uid: 7109 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 7207 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 30 + - uid: 7208 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 30 + - uid: 7219 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 30 + - uid: 7220 + components: + - type: Transform + pos: -16.5,-35.5 parent: 30 - uid: 7615 components: @@ -33272,260 +32674,165 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 30 - - uid: 7965 + - uid: 8232 components: - type: Transform - pos: -7.5,-46.5 + pos: -16.5,-28.5 parent: 30 - - uid: 8225 + - uid: 8233 components: - type: Transform - pos: -7.5,-47.5 + pos: -15.5,-28.5 parent: 30 - - uid: 8230 + - uid: 8235 components: - type: Transform - pos: -7.5,-48.5 + pos: -15.5,-30.5 parent: 30 - - uid: 8231 + - uid: 8236 components: - type: Transform - pos: -7.5,-49.5 + pos: -15.5,-29.5 parent: 30 - - uid: 8232 + - uid: 8253 components: - type: Transform - pos: -7.5,-50.5 + pos: -13.5,-30.5 parent: 30 - - uid: 8402 + - uid: 8256 components: - type: Transform - pos: 3.5,-13.5 + pos: -14.5,-30.5 parent: 30 - - uid: 9293 + - uid: 8337 components: - type: Transform - pos: 3.5,-37.5 + pos: -12.5,-40.5 parent: 30 - - uid: 9484 + - uid: 8402 components: - type: Transform - pos: -8.5,-33.5 + pos: 3.5,-13.5 parent: 30 - - uid: 9485 + - uid: 8606 components: - type: Transform - pos: -7.5,-33.5 + pos: -7.5,-43.5 parent: 30 - - uid: 9486 + - uid: 8798 components: - type: Transform - pos: -6.5,-33.5 + pos: -13.5,-33.5 parent: 30 - - uid: 9490 + - uid: 8801 components: - type: Transform - pos: -8.5,-35.5 + pos: -10.5,-39.5 parent: 30 - - uid: 9491 + - uid: 9400 components: - type: Transform - pos: -7.5,-35.5 + pos: -20.5,-55.5 parent: 30 - - uid: 9492 + - uid: 9404 components: - type: Transform - pos: -6.5,-35.5 + pos: -19.5,-52.5 parent: 30 - - uid: 9493 + - uid: 9420 components: - type: Transform - pos: -8.5,-34.5 + pos: -15.5,-40.5 parent: 30 - - uid: 9494 + - uid: 9427 components: - type: Transform - pos: -6.5,-34.5 + pos: -23.5,-58.5 parent: 30 - - uid: 9495 + - uid: 9429 components: - type: Transform - pos: -7.5,-34.5 + pos: -23.5,-56.5 parent: 30 - - uid: 9499 + - uid: 9430 components: - type: Transform - pos: -9.5,-33.5 + pos: -6.5,-44.5 parent: 30 - - uid: 9500 + - uid: 9437 components: - type: Transform - pos: -7.5,-36.5 + pos: -23.5,-55.5 parent: 30 - - uid: 9501 + - uid: 9438 components: - type: Transform - pos: -7.5,-37.5 + pos: -22.5,-55.5 parent: 30 - - uid: 9502 + - uid: 9462 components: - type: Transform - pos: -7.5,-38.5 + pos: -5.5,-42.5 parent: 30 - - uid: 9503 + - uid: 9465 components: - type: Transform - pos: -6.5,-38.5 + pos: -8.5,-44.5 parent: 30 - - uid: 9504 + - uid: 9469 components: - type: Transform - pos: -5.5,-38.5 + pos: -9.5,-44.5 parent: 30 - - uid: 9505 + - uid: 9474 components: - type: Transform - pos: -4.5,-38.5 + pos: -12.5,-46.5 parent: 30 - - uid: 9506 + - uid: 9475 components: - type: Transform - pos: -3.5,-38.5 + pos: -11.5,-44.5 parent: 30 - - uid: 9507 + - uid: 9476 components: - type: Transform - pos: -10.5,-33.5 + pos: -12.5,-48.5 parent: 30 - - uid: 9508 + - uid: 9479 components: - type: Transform - pos: -11.5,-33.5 + pos: -16.5,-43.5 parent: 30 - - uid: 9509 + - uid: 9480 components: - type: Transform - pos: -12.5,-33.5 + pos: -13.5,-43.5 parent: 30 - - uid: 9510 + - uid: 9493 components: - type: Transform - pos: -12.5,-34.5 + pos: -17.5,-43.5 parent: 30 - - uid: 9511 + - uid: 9500 components: - type: Transform - pos: -12.5,-35.5 + pos: -15.5,-36.5 parent: 30 - uid: 9512 components: - type: Transform pos: -12.5,-36.5 parent: 30 - - uid: 9513 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 30 - - uid: 9514 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 30 - - uid: 9515 - components: - - type: Transform - pos: -12.5,-40.5 - parent: 30 - - uid: 9516 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 30 - - uid: 9517 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 30 - - uid: 9518 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 30 - - uid: 9519 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 30 - - uid: 9520 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 30 - uid: 9521 components: - type: Transform - pos: -11.5,-29.5 + pos: -11.5,-51.5 parent: 30 - uid: 9522 components: - type: Transform - pos: -9.5,-29.5 - parent: 30 - - uid: 9523 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 30 - - uid: 9524 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 30 - - uid: 9525 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 30 - - uid: 9526 - components: - - type: Transform - pos: -6.5,-29.5 - parent: 30 - - uid: 9527 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 30 - - uid: 9528 - components: - - type: Transform - pos: -13.5,-29.5 - parent: 30 - - uid: 9529 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 30 - - uid: 9530 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 30 - - uid: 9531 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 30 - - uid: 9532 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - uid: 9533 - components: - - type: Transform - pos: 1.5,-38.5 + pos: -16.5,-34.5 parent: 30 - uid: 9534 components: @@ -33672,15 +32979,30 @@ entities: - type: Transform pos: -2.5,-15.5 parent: 30 - - uid: 9571 + - uid: 9568 components: - type: Transform - pos: 2.5,-38.5 + pos: -14.5,-40.5 parent: 30 - - uid: 9572 + - uid: 9570 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 30 + - uid: 9576 components: - type: Transform - pos: 3.5,-38.5 + pos: -25.5,-41.5 + parent: 30 + - uid: 9577 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 30 + - uid: 9578 + components: + - type: Transform + pos: -21.5,-41.5 parent: 30 - uid: 9594 components: @@ -33692,260 +33014,365 @@ entities: - type: Transform pos: 3.5,-10.5 parent: 30 - - uid: 9793 + - uid: 9620 components: - type: Transform - pos: -12.5,-42.5 + pos: 1.5,-38.5 parent: 30 - - uid: 9795 + - uid: 9621 components: - type: Transform - pos: -17.5,-41.5 + pos: -0.5,-39.5 parent: 30 - - uid: 9839 + - uid: 9622 components: - type: Transform - pos: -7.5,-44.5 + pos: 0.5,-39.5 parent: 30 - - uid: 9999 + - uid: 9623 components: - type: Transform - pos: -17.5,-42.5 + pos: 1.5,-39.5 parent: 30 - - uid: 10151 + - uid: 9703 components: - type: Transform - pos: -13.5,-40.5 + pos: -5.5,-43.5 parent: 30 - - uid: 10152 + - uid: 9789 components: - type: Transform - pos: -14.5,-40.5 + pos: -0.5,-50.5 + parent: 30 + - uid: 9808 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 30 + - uid: 9814 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 30 + - uid: 9830 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 30 + - uid: 9875 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 9880 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 9895 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 30 + - uid: 9937 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 30 + - uid: 9945 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 30 + - uid: 9950 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 30 + - uid: 9952 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 30 + - uid: 9987 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 30 + - uid: 10087 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 30 + - uid: 10090 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 30 + - uid: 10138 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 30 + - uid: 10142 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 30 + - uid: 10144 + components: + - type: Transform + pos: -19.5,-60.5 parent: 30 - uid: 10153 components: - type: Transform - pos: -15.5,-40.5 + pos: -19.5,-55.5 parent: 30 - uid: 10154 components: - type: Transform - pos: -16.5,-40.5 + pos: -19.5,-53.5 parent: 30 - - uid: 10155 + - uid: 10156 components: - type: Transform - pos: -17.5,-40.5 + pos: -19.5,-47.5 parent: 30 - - uid: 10156 + - uid: 10164 components: - type: Transform - pos: -7.5,-43.5 + pos: -18.5,-60.5 parent: 30 - - uid: 10157 + - uid: 10189 components: - type: Transform - pos: -7.5,-42.5 + pos: -54.5,-62.5 parent: 30 - - uid: 10158 + - uid: 10204 components: - type: Transform - pos: -7.5,-41.5 + pos: -0.5,-47.5 parent: 30 - - uid: 10159 + - uid: 10211 components: - type: Transform - pos: -7.5,-40.5 + pos: -0.5,-46.5 parent: 30 - - uid: 10160 + - uid: 10271 components: - type: Transform - pos: -8.5,-40.5 + pos: -18.5,-46.5 parent: 30 - - uid: 10161 + - uid: 10274 components: - type: Transform - pos: -9.5,-40.5 + pos: -21.5,-55.5 parent: 30 - - uid: 10162 + - uid: 10510 components: - type: Transform - pos: -10.5,-40.5 + pos: -12.5,-43.5 parent: 30 - - uid: 10163 + - uid: 10529 components: - type: Transform - pos: -11.5,-40.5 + pos: -7.5,-44.5 parent: 30 - - uid: 10164 + - uid: 10530 components: - type: Transform - pos: -17.5,-43.5 + pos: -12.5,-44.5 parent: 30 - - uid: 10165 + - uid: 10537 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 30 + - uid: 10539 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 30 + - uid: 10540 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 30 + - uid: 10541 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 30 + - uid: 10542 components: - type: Transform pos: -17.5,-44.5 parent: 30 - - uid: 10166 + - uid: 10543 components: - type: Transform - pos: -17.5,-45.5 + pos: -14.5,-43.5 parent: 30 - - uid: 10167 + - uid: 10544 components: - type: Transform - pos: -17.5,-46.5 + pos: -16.5,-36.5 parent: 30 - - uid: 10168 + - uid: 10547 components: - type: Transform - pos: -17.5,-47.5 + pos: -4.5,-44.5 parent: 30 - - uid: 10169 + - uid: 10586 components: - type: Transform - pos: -17.5,-48.5 + pos: -19.5,-54.5 parent: 30 - - uid: 10170 + - uid: 10588 components: - type: Transform - pos: -17.5,-49.5 + pos: -15.5,-60.5 parent: 30 - - uid: 10171 + - uid: 10599 components: - type: Transform - pos: -17.5,-50.5 + pos: -19.5,-48.5 parent: 30 - - uid: 10172 + - uid: 10601 components: - type: Transform - pos: -17.5,-51.5 + pos: -12.5,-45.5 parent: 30 - - uid: 10173 + - uid: 10611 components: - type: Transform - pos: -17.5,-52.5 + pos: -5.5,-44.5 parent: 30 - - uid: 10174 + - uid: 10628 components: - type: Transform - pos: -17.5,-53.5 + pos: -21.5,-58.5 parent: 30 - - uid: 10175 + - uid: 10631 components: - type: Transform - pos: -17.5,-54.5 + pos: -22.5,-58.5 parent: 30 - - uid: 10176 + - uid: 10633 components: - type: Transform - pos: -17.5,-55.5 + pos: -20.5,-59.5 parent: 30 - - uid: 10177 + - uid: 10634 components: - type: Transform - pos: -17.5,-56.5 + pos: -20.5,-58.5 parent: 30 - - uid: 10178 + - uid: 10638 components: - type: Transform - pos: -17.5,-57.5 + pos: -17.5,-45.5 parent: 30 - - uid: 10179 + - uid: 10694 components: - type: Transform - pos: -17.5,-58.5 + pos: -17.5,-50.5 parent: 30 - - uid: 10180 + - uid: 10725 components: - type: Transform - pos: -17.5,-59.5 + pos: -17.5,-51.5 parent: 30 - - uid: 10181 + - uid: 10754 components: - type: Transform - pos: -17.5,-60.5 + pos: -17.5,-49.5 parent: 30 - - uid: 10182 + - uid: 11066 components: - type: Transform - pos: -17.5,-61.5 + pos: -19.5,-41.5 parent: 30 - - uid: 10183 + - uid: 11070 components: - type: Transform - pos: -17.5,-62.5 + pos: -0.5,-44.5 parent: 30 - - uid: 10184 + - uid: 11078 components: - type: Transform - pos: -17.5,-63.5 + pos: -12.5,-37.5 parent: 30 - - uid: 10185 + - uid: 11082 components: - type: Transform - pos: -17.5,-64.5 + pos: -12.5,-38.5 parent: 30 - - uid: 10535 + - uid: 11084 components: - type: Transform - pos: -16.5,-51.5 + pos: -8.5,-39.5 parent: 30 - - uid: 10670 + - uid: 11096 components: - type: Transform - pos: -20.5,-55.5 + pos: -18.5,-41.5 parent: 30 - - uid: 10671 + - uid: 11097 components: - type: Transform - pos: -21.5,-55.5 + pos: -11.5,-39.5 parent: 30 - - uid: 10672 + - uid: 11103 components: - type: Transform - pos: -22.5,-55.5 + pos: -12.5,-35.5 parent: 30 - - uid: 10673 + - uid: 11114 components: - type: Transform - pos: -22.5,-54.5 + pos: -16.5,-39.5 parent: 30 - - uid: 10674 + - uid: 11120 components: - type: Transform - pos: -22.5,-53.5 + pos: -13.5,-40.5 parent: 30 - - uid: 10675 + - uid: 11124 components: - type: Transform - pos: -22.5,-52.5 + pos: -0.5,-49.5 parent: 30 - - uid: 10676 + - uid: 11142 components: - type: Transform - pos: -22.5,-51.5 + pos: -18.5,-51.5 parent: 30 - - uid: 10677 + - uid: 11143 components: - type: Transform - pos: -22.5,-50.5 + pos: -19.5,-51.5 parent: 30 - - uid: 10678 + - uid: 11277 components: - type: Transform - pos: -22.5,-49.5 + pos: -6.5,-42.5 parent: 30 - - uid: 10688 + - uid: 11291 components: - type: Transform - pos: -22.5,-48.5 + pos: -0.5,-45.5 parent: 30 - - uid: 10696 + - uid: 11307 components: - type: Transform - pos: -22.5,-47.5 + pos: -16.5,-40.5 + parent: 30 + - uid: 11337 + components: + - type: Transform + pos: -12.5,-39.5 parent: 30 - uid: 11378 components: @@ -34137,6 +33564,26 @@ entities: - type: Transform pos: 3.5,-12.5 parent: 30 + - uid: 12213 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 30 + - uid: 12443 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 30 + - uid: 12814 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 30 + - uid: 13083 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 30 - uid: 13842 components: - type: Transform @@ -35862,6 +35309,11 @@ entities: - type: Transform pos: 46.5,31.5 parent: 30 + - uid: 16129 + components: + - type: Transform + pos: -55.5,-62.5 + parent: 30 - uid: 16265 components: - type: Transform @@ -36937,21 +36389,6 @@ entities: - type: Transform pos: -55.5,-48.5 parent: 30 - - uid: 17884 - components: - - type: Transform - pos: -52.5,-59.5 - parent: 30 - - uid: 17885 - components: - - type: Transform - pos: -53.5,-59.5 - parent: 30 - - uid: 17886 - components: - - type: Transform - pos: -54.5,-59.5 - parent: 30 - uid: 17887 components: - type: Transform @@ -37007,6 +36444,16 @@ entities: - type: Transform pos: -55.5,-49.5 parent: 30 + - uid: 17910 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 + - uid: 17911 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 30 - uid: 17913 components: - type: Transform @@ -37242,45 +36689,35 @@ entities: - type: Transform pos: -52.5,-43.5 parent: 30 - - uid: 18796 - components: - - type: Transform - pos: -69.5,-63.5 - parent: 30 - - uid: 18797 - components: - - type: Transform - pos: -68.5,-62.5 - parent: 30 - - uid: 18798 + - uid: 18766 components: - type: Transform - pos: -69.5,-62.5 + pos: -56.5,-65.5 parent: 30 - - uid: 18799 + - uid: 18767 components: - type: Transform - pos: -67.5,-62.5 + pos: -56.5,-64.5 parent: 30 - - uid: 18800 + - uid: 18768 components: - type: Transform - pos: -65.5,-62.5 + pos: -53.5,-61.5 parent: 30 - - uid: 18801 + - uid: 18795 components: - type: Transform - pos: -64.5,-62.5 + pos: -55.5,-63.5 parent: 30 - - uid: 18802 + - uid: 18799 components: - type: Transform - pos: -64.5,-61.5 + pos: -56.5,-63.5 parent: 30 - - uid: 18803 + - uid: 18800 components: - type: Transform - pos: -64.5,-60.5 + pos: -56.5,-62.5 parent: 30 - uid: 18804 components: @@ -37327,6 +36764,11 @@ entities: - type: Transform pos: -56.5,-59.5 parent: 30 + - uid: 18924 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 30 - uid: 18926 components: - type: Transform @@ -37402,6 +36844,31 @@ entities: - type: Transform pos: -54.5,-42.5 parent: 30 + - uid: 19243 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 30 + - uid: 19424 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 30 + - uid: 19785 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 30 + - uid: 19801 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 30 + - uid: 19802 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 - uid: 19816 components: - type: Transform @@ -37452,51 +36919,6 @@ entities: - type: Transform pos: -26.5,-41.5 parent: 30 - - uid: 20409 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 30 - - uid: 20410 - components: - - type: Transform - pos: -24.5,-41.5 - parent: 30 - - uid: 20411 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 30 - - uid: 20412 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 20413 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 20414 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 20415 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 30 - - uid: 20416 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 30 - - uid: 20417 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - uid: 21289 components: - type: Transform @@ -37552,61 +36974,6 @@ entities: - type: Transform pos: 0.5,84.5 parent: 30 - - uid: 22660 - components: - - type: Transform - pos: -25.5,-58.5 - parent: 30 - - uid: 22661 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - uid: 22662 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22663 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22664 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22665 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - - uid: 22666 - components: - - type: Transform - pos: -25.5,-62.5 - parent: 30 - - uid: 22667 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 30 - - uid: 22668 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 30 - - uid: 22669 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 30 - - uid: 22670 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 30 - proto: CableHVStack entities: - uid: 1639 @@ -37614,10 +36981,10 @@ entities: - type: Transform pos: -29.80019,33.583 parent: 30 - - uid: 9607 + - uid: 10203 components: - type: Transform - pos: -15.37175,-34.518528 + pos: -24.57955,-44.498714 parent: 30 - uid: 10314 components: @@ -37634,10 +37001,10 @@ entities: - type: Transform pos: -42.242332,27.415749 parent: 30 - - uid: 11312 + - uid: 11025 components: - type: Transform - pos: 1.5133002,-44.49842 + pos: -5.405215,-34.750645 parent: 30 - uid: 15972 components: @@ -37646,6 +37013,16 @@ entities: parent: 30 - proto: CableMV entities: + - uid: 845 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 30 + - uid: 866 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 30 - uid: 948 components: - type: Transform @@ -38416,26 +37793,6 @@ entities: - type: Transform pos: -23.5,6.5 parent: 30 - - uid: 4098 - components: - - type: Transform - pos: -24.5,6.5 - parent: 30 - - uid: 4099 - components: - - type: Transform - pos: -25.5,6.5 - parent: 30 - - uid: 4100 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - - uid: 4101 - components: - - type: Transform - pos: -26.5,6.5 - parent: 30 - uid: 4102 components: - type: Transform @@ -38671,6 +38028,16 @@ entities: - type: Transform pos: -5.5,12.5 parent: 30 + - uid: 4426 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - uid: 4455 + components: + - type: Transform + pos: -25.5,7.5 + parent: 30 - uid: 4512 components: - type: Transform @@ -39566,6 +38933,11 @@ entities: - type: Transform pos: -13.5,-7.5 parent: 30 + - uid: 7449 + components: + - type: Transform + pos: -23.5,7.5 + parent: 30 - uid: 7481 components: - type: Transform @@ -39776,16 +39148,6 @@ entities: - type: Transform pos: -24.5,-6.5 parent: 30 - - uid: 8004 - components: - - type: Transform - pos: -4.5,-47.5 - parent: 30 - - uid: 8005 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 30 - uid: 8045 components: - type: Transform @@ -39816,11 +39178,6 @@ entities: - type: Transform pos: -25.5,-5.5 parent: 30 - - uid: 8137 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 30 - uid: 8138 components: - type: Transform @@ -39831,10 +39188,25 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 30 - - uid: 8606 + - uid: 8251 components: - type: Transform - pos: 3.5,-37.5 + pos: -15.5,-40.5 + parent: 30 + - uid: 8837 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 30 + - uid: 9047 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 30 + - uid: 9048 + components: + - type: Transform + pos: -20.5,-43.5 parent: 30 - uid: 9055 components: @@ -39926,210 +39298,120 @@ entities: - type: Transform pos: -30.5,-13.5 parent: 30 - - uid: 10269 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 10270 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 30 - - uid: 10271 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 10272 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 30 - - uid: 10273 - components: - - type: Transform - pos: -17.5,-55.5 - parent: 30 - - uid: 10274 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 30 - - uid: 10275 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 30 - - uid: 10276 - components: - - type: Transform - pos: -17.5,-58.5 - parent: 30 - - uid: 10277 - components: - - type: Transform - pos: -17.5,-59.5 - parent: 30 - - uid: 10278 - components: - - type: Transform - pos: -17.5,-60.5 - parent: 30 - - uid: 10279 - components: - - type: Transform - pos: -17.5,-61.5 - parent: 30 - - uid: 10280 - components: - - type: Transform - pos: -17.5,-62.5 - parent: 30 - - uid: 10281 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 30 - - uid: 10282 - components: - - type: Transform - pos: -17.5,-64.5 - parent: 30 - - uid: 10534 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 30 - - uid: 10537 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 30 - - uid: 10538 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 30 - - uid: 10539 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 30 - - uid: 10540 + - uid: 9927 components: - type: Transform - pos: 0.5,-38.5 + pos: -16.5,-28.5 parent: 30 - - uid: 10541 + - uid: 9935 components: - type: Transform - pos: -0.5,-38.5 + pos: -16.5,-29.5 parent: 30 - - uid: 10542 + - uid: 10143 components: - type: Transform - pos: -1.5,-38.5 + pos: -23.5,-55.5 parent: 30 - - uid: 10543 + - uid: 10155 components: - type: Transform - pos: -1.5,-38.5 + pos: -17.5,-48.5 parent: 30 - - uid: 10544 + - uid: 10157 components: - type: Transform - pos: -2.5,-38.5 + pos: -22.5,-60.5 parent: 30 - - uid: 10545 + - uid: 10158 components: - type: Transform - pos: -3.5,-38.5 + pos: -21.5,-60.5 parent: 30 - - uid: 10546 + - uid: 10159 components: - type: Transform - pos: -4.5,-38.5 + pos: -20.5,-53.5 parent: 30 - - uid: 10547 + - uid: 10161 components: - type: Transform - pos: -20.5,-38.5 + pos: -20.5,-42.5 parent: 30 - - uid: 10548 + - uid: 10162 components: - type: Transform - pos: -19.5,-38.5 + pos: -18.5,-41.5 parent: 30 - - uid: 10549 + - uid: 10165 components: - type: Transform - pos: -18.5,-38.5 + pos: -23.5,-57.5 parent: 30 - - uid: 10550 + - uid: 10168 components: - type: Transform - pos: -17.5,-38.5 + pos: -17.5,-50.5 parent: 30 - - uid: 10551 + - uid: 10169 components: - type: Transform - pos: -16.5,-38.5 + pos: -17.5,-51.5 parent: 30 - - uid: 10552 + - uid: 10177 components: - type: Transform - pos: -15.5,-38.5 + pos: -20.5,-41.5 parent: 30 - - uid: 10553 + - uid: 10178 components: - type: Transform - pos: -14.5,-38.5 + pos: -16.5,-40.5 parent: 30 - - uid: 10554 + - uid: 10183 components: - type: Transform - pos: -13.5,-38.5 + pos: -17.5,-41.5 parent: 30 - - uid: 10555 + - uid: 10184 components: - type: Transform - pos: -12.5,-38.5 + pos: -20.5,-45.5 parent: 30 - - uid: 10556 + - uid: 10187 components: - type: Transform - pos: -11.5,-38.5 + pos: -53.5,-60.5 parent: 30 - - uid: 10557 + - uid: 10207 components: - type: Transform - pos: -10.5,-38.5 + pos: -55.5,-62.5 parent: 30 - - uid: 10558 + - uid: 10209 components: - type: Transform - pos: -9.5,-38.5 + pos: -53.5,-62.5 parent: 30 - - uid: 10559 + - uid: 10210 components: - type: Transform - pos: -8.5,-38.5 + pos: -53.5,-61.5 parent: 30 - - uid: 10560 + - uid: 10441 components: - type: Transform - pos: -7.5,-38.5 + pos: -18.5,-30.5 parent: 30 - - uid: 10561 + - uid: 10532 components: - type: Transform - pos: -6.5,-38.5 + pos: -17.5,-30.5 parent: 30 - - uid: 10562 + - uid: 10533 components: - type: Transform - pos: -5.5,-38.5 + pos: -16.5,-30.5 parent: 30 - uid: 10563 components: @@ -40226,16 +39508,186 @@ entities: - type: Transform pos: 9.5,-30.5 parent: 30 - - uid: 10642 + - uid: 10594 components: - type: Transform - pos: -7.5,-40.5 + pos: -16.5,-41.5 parent: 30 - - uid: 10643 + - uid: 10595 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 30 + - uid: 10596 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 30 + - uid: 10600 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 30 + - uid: 10602 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 30 + - uid: 10605 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 30 + - uid: 10615 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 30 + - uid: 10616 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 30 + - uid: 10618 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 30 + - uid: 10620 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 30 + - uid: 10625 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 30 + - uid: 10626 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 30 + - uid: 10630 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 30 + - uid: 10646 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 30 + - uid: 10675 components: - type: Transform pos: -7.5,-39.5 parent: 30 + - uid: 10679 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 30 + - uid: 10681 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 30 + - uid: 10683 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 30 + - uid: 10684 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 30 + - uid: 10685 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 30 + - uid: 10686 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 30 + - uid: 10687 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 30 + - uid: 10688 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 30 + - uid: 11064 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 30 + - uid: 11158 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 30 + - uid: 11227 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 + - uid: 11257 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 30 + - uid: 11263 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 30 + - uid: 11268 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 30 + - uid: 11302 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 11304 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 30 + - uid: 11313 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 30 + - uid: 11333 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 11334 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 30 + - uid: 11344 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 30 + - uid: 11464 + components: + - type: Transform + pos: -68.5,-60.5 + parent: 30 - uid: 11534 components: - type: Transform @@ -40666,25 +40118,40 @@ entities: - type: Transform pos: -10.5,-7.5 parent: 30 - - uid: 12380 + - uid: 12651 components: - type: Transform - pos: -0.5,-47.5 + pos: 21.5,11.5 parent: 30 - - uid: 12443 + - uid: 12652 components: - type: Transform - pos: -1.5,-47.5 + pos: 20.5,11.5 parent: 30 - - uid: 12860 + - uid: 12654 components: - type: Transform - pos: 21.5,12.5 + pos: 19.5,11.5 + parent: 30 + - uid: 12696 + components: + - type: Transform + pos: -69.5,-60.5 parent: 30 - uid: 12862 components: - type: Transform - pos: 20.5,12.5 + pos: 16.5,11.5 + parent: 30 + - uid: 12865 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - uid: 13075 + components: + - type: Transform + pos: -54.5,-62.5 parent: 30 - uid: 13099 components: @@ -41034,28 +40501,13 @@ entities: - uid: 13211 components: - type: Transform - pos: 19.5,12.5 - parent: 30 - - uid: 13283 - components: - - type: Transform - pos: 18.5,13.5 + pos: 18.5,11.5 parent: 30 - uid: 13307 components: - type: Transform pos: 26.5,20.5 parent: 30 - - uid: 13319 - components: - - type: Transform - pos: -2.5,-47.5 - parent: 30 - - uid: 13331 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13369 components: - type: Transform @@ -41081,6 +40533,26 @@ entities: - type: Transform pos: 15.5,55.5 parent: 30 + - uid: 13972 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 30 + - uid: 14345 + components: + - type: Transform + pos: 17.5,11.5 + parent: 30 + - uid: 14441 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 30 + - uid: 14523 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 30 - uid: 14542 components: - type: Transform @@ -41146,11 +40618,6 @@ entities: - type: Transform pos: 48.5,20.5 parent: 30 - - uid: 14590 - components: - - type: Transform - pos: -7.5,-43.5 - parent: 30 - uid: 14731 components: - type: Transform @@ -41331,45 +40798,15 @@ entities: - type: Transform pos: 32.5,44.5 parent: 30 - - uid: 14808 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 30 - - uid: 14827 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 30 - - uid: 14828 - components: - - type: Transform - pos: -6.5,-47.5 - parent: 30 - - uid: 14848 - components: - - type: Transform - pos: -3.5,-47.5 - parent: 30 - - uid: 14868 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 30 - - uid: 14895 - components: - - type: Transform - pos: -5.5,-47.5 - parent: 30 - - uid: 14915 + - uid: 16128 components: - type: Transform - pos: -7.5,-41.5 + pos: 23.5,-4.5 parent: 30 - - uid: 16128 + - uid: 16404 components: - type: Transform - pos: 23.5,-4.5 + pos: -56.5,-62.5 parent: 30 - uid: 16420 components: @@ -41381,10 +40818,10 @@ entities: - type: Transform pos: 23.5,-6.5 parent: 30 - - uid: 17593 + - uid: 17785 components: - type: Transform - pos: -7.5,-47.5 + pos: -56.5,-65.5 parent: 30 - uid: 18118 components: @@ -41396,20 +40833,20 @@ entities: - type: Transform pos: 16.5,47.5 parent: 30 - - uid: 18859 + - uid: 18189 components: - type: Transform - pos: -52.5,-59.5 + pos: -56.5,-64.5 parent: 30 - - uid: 18860 + - uid: 18190 components: - type: Transform - pos: -53.5,-59.5 + pos: -56.5,-63.5 parent: 30 - - uid: 18861 + - uid: 18207 components: - type: Transform - pos: -54.5,-59.5 + pos: 16.5,13.5 parent: 30 - uid: 18862 components: @@ -41491,21 +40928,6 @@ entities: - type: Transform pos: -68.5,-58.5 parent: 30 - - uid: 18878 - components: - - type: Transform - pos: -69.5,-58.5 - parent: 30 - - uid: 18879 - components: - - type: Transform - pos: -70.5,-58.5 - parent: 30 - - uid: 18880 - components: - - type: Transform - pos: -70.5,-59.5 - parent: 30 - uid: 18881 components: - type: Transform @@ -41881,6 +41303,31 @@ entities: - type: Transform pos: -59.5,-26.5 parent: 30 + - uid: 19182 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - uid: 19235 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 30 + - uid: 19412 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 30 + - uid: 19421 + components: + - type: Transform + pos: -20.5,-54.5 + parent: 30 + - uid: 19422 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 30 - uid: 19494 components: - type: Transform @@ -42001,31 +41448,6 @@ entities: - type: Transform pos: -8.5,-13.5 parent: 30 - - uid: 19828 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 30 - - uid: 19829 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 30 - - uid: 19830 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 30 - - uid: 19831 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 30 - - uid: 19832 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 30 - uid: 20157 components: - type: Transform @@ -42066,75 +41488,20 @@ entities: - type: Transform pos: 30.5,6.5 parent: 30 - - uid: 20418 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - - uid: 20419 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 30 - - uid: 20420 - components: - - type: Transform - pos: -23.5,-45.5 - parent: 30 - - uid: 20421 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 30 - - uid: 20422 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 30 - - uid: 20423 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 30 - - uid: 20424 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 30 - - uid: 20425 - components: - - type: Transform - pos: -21.5,-42.5 - parent: 30 - - uid: 20426 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 30 - - uid: 20427 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 30 - - uid: 20428 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 30 - - uid: 20429 + - uid: 20369 components: - type: Transform - pos: -18.5,-41.5 + pos: 1.5,-40.5 parent: 30 - - uid: 20430 + - uid: 20370 components: - type: Transform - pos: -18.5,-40.5 + pos: 1.5,-41.5 parent: 30 - - uid: 20431 + - uid: 20371 components: - type: Transform - pos: -18.5,-39.5 + pos: 1.5,-42.5 parent: 30 - uid: 20893 components: @@ -42656,166 +42023,6 @@ entities: - type: Transform pos: 3.5,10.5 parent: 30 - - uid: 22674 - components: - - type: Transform - pos: -27.5,-62.5 - parent: 30 - - uid: 22675 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - - uid: 22676 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22677 - components: - - type: Transform - pos: -26.5,-60.5 - parent: 30 - - uid: 22678 - components: - - type: Transform - pos: -26.5,-59.5 - parent: 30 - - uid: 22679 - components: - - type: Transform - pos: -27.5,-59.5 - parent: 30 - - uid: 22680 - components: - - type: Transform - pos: -27.5,-58.5 - parent: 30 - - uid: 22681 - components: - - type: Transform - pos: -28.5,-58.5 - parent: 30 - - uid: 22682 - components: - - type: Transform - pos: -29.5,-58.5 - parent: 30 - - uid: 22683 - components: - - type: Transform - pos: -29.5,-59.5 - parent: 30 - - uid: 22684 - components: - - type: Transform - pos: -29.5,-60.5 - parent: 30 - - uid: 22685 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22686 - components: - - type: Transform - pos: -30.5,-60.5 - parent: 30 - - uid: 22687 - components: - - type: Transform - pos: -31.5,-60.5 - parent: 30 - - uid: 22688 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 30 - - uid: 22689 - components: - - type: Transform - pos: -33.5,-60.5 - parent: 30 - - uid: 22690 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 30 - - uid: 22691 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 30 - - uid: 22692 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 30 - - uid: 22693 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 30 - - uid: 22694 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - - uid: 22695 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 30 - - uid: 22696 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 30 - - uid: 22697 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 30 - - uid: 22698 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 30 - - uid: 22699 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 30 - - uid: 22700 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 30 - - uid: 22701 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 30 - - uid: 22702 - components: - - type: Transform - pos: -33.5,-59.5 - parent: 30 - - uid: 22703 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 30 - - uid: 22704 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 30 - - uid: 22705 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - proto: CableMVStack entities: - uid: 1638 @@ -42823,10 +42030,10 @@ entities: - type: Transform pos: -30.17519,33.583 parent: 30 - - uid: 9606 + - uid: 10202 components: - type: Transform - pos: -15.528,-34.377903 + pos: -24.846876,-44.33535 parent: 30 - uid: 10260 components: @@ -42843,10 +42050,18 @@ entities: - type: Transform pos: -42.382957,27.540749 parent: 30 - - uid: 11311 + - uid: 10751 + components: + - type: Transform + pos: -5.4943237,-34.631832 + parent: 30 +- proto: CableMVStack10 + entities: + - uid: 10151 components: - type: Transform - pos: 1.2945502,-44.37342 + rot: 3.141592653589793 rad + pos: -24.347925,-59.731403 parent: 30 - proto: CableTerminal entities: @@ -42860,33 +42075,48 @@ entities: canCollide: False - type: Fixtures fixtures: {} - - uid: 9487 + - uid: 8419 components: - type: Transform - pos: -6.5,-33.5 + rot: 3.141592653589793 rad + pos: -15.5,-29.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 9488 + - uid: 9412 components: - type: Transform - pos: -8.5,-33.5 + rot: -1.5707963267948966 rad + pos: -18.5,-46.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - - uid: 9489 + - uid: 9418 components: - type: Transform - pos: -7.5,-33.5 + rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 30 + - uid: 9451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-44.5 + parent: 30 + - uid: 9499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 30 + - uid: 10503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 30 + - uid: 11340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 parent: 30 - - type: Physics - canCollide: False - - type: Fixtures - fixtures: {} - uid: 15296 components: - type: Transform @@ -42913,11 +42143,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,84.5 parent: 30 - - uid: 22671 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - proto: CandyBowl entities: - uid: 10047 @@ -42949,11 +42174,6 @@ entities: - type: Transform pos: 2.6220274,21.009964 parent: 30 - - uid: 22441 - components: - - type: Transform - pos: 2.452661,20.541075 - parent: 30 - proto: CarbonDioxideCanister entities: - uid: 8772 @@ -42971,10 +42191,10 @@ entities: - type: Transform pos: 19.5,-17.5 parent: 30 - - uid: 10430 + - uid: 9657 components: - type: Transform - pos: -14.5,-47.5 + pos: -5.5,-50.5 parent: 30 - proto: Carpet entities: @@ -43497,76 +42717,6 @@ entities: - type: Transform pos: -79.5,-49.5 parent: 30 - - uid: 19401 - components: - - type: Transform - pos: -59.5,-68.5 - parent: 30 - - uid: 19402 - components: - - type: Transform - pos: -59.5,-67.5 - parent: 30 - - uid: 19403 - components: - - type: Transform - pos: -59.5,-66.5 - parent: 30 - - uid: 19404 - components: - - type: Transform - pos: -59.5,-65.5 - parent: 30 - - uid: 19405 - components: - - type: Transform - pos: -59.5,-64.5 - parent: 30 - - uid: 19406 - components: - - type: Transform - pos: -59.5,-63.5 - parent: 30 - - uid: 19407 - components: - - type: Transform - pos: -59.5,-62.5 - parent: 30 - - uid: 19408 - components: - - type: Transform - pos: -58.5,-68.5 - parent: 30 - - uid: 19409 - components: - - type: Transform - pos: -58.5,-67.5 - parent: 30 - - uid: 19410 - components: - - type: Transform - pos: -58.5,-66.5 - parent: 30 - - uid: 19411 - components: - - type: Transform - pos: -58.5,-65.5 - parent: 30 - - uid: 19412 - components: - - type: Transform - pos: -58.5,-64.5 - parent: 30 - - uid: 19413 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 30 - - uid: 19414 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 30 - uid: 19478 components: - type: Transform @@ -44301,23 +43451,35 @@ entities: parent: 30 - proto: CarpetOrange entities: - - uid: 8294 + - uid: 4099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-35.5 + pos: -66.5,-63.5 parent: 30 - - uid: 8297 + - uid: 4100 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-36.5 + pos: -66.5,-62.5 parent: 30 - - uid: 8298 + - uid: 4128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-34.5 + pos: -65.5,-64.5 + parent: 30 + - uid: 4129 + components: + - type: Transform + pos: -65.5,-63.5 + parent: 30 + - uid: 4130 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 30 + - uid: 9492 + components: + - type: Transform + pos: -6.5,-33.5 parent: 30 - uid: 9720 components: @@ -44339,6 +43501,26 @@ entities: - type: Transform pos: -42.5,-13.5 parent: 30 + - uid: 9976 + components: + - type: Transform + pos: -63.5,-63.5 + parent: 30 + - uid: 10227 + components: + - type: Transform + pos: -61.5,-65.5 + parent: 30 + - uid: 10742 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 30 + - uid: 11020 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 30 - uid: 11619 components: - type: Transform @@ -44359,6 +43541,46 @@ entities: - type: Transform pos: 24.5,0.5 parent: 30 + - uid: 12771 + components: + - type: Transform + pos: -62.5,-65.5 + parent: 30 + - uid: 12772 + components: + - type: Transform + pos: -61.5,-63.5 + parent: 30 + - uid: 12809 + components: + - type: Transform + pos: -61.5,-64.5 + parent: 30 + - uid: 12820 + components: + - type: Transform + pos: -63.5,-64.5 + parent: 30 + - uid: 14360 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 30 + - uid: 14473 + components: + - type: Transform + pos: -63.5,-65.5 + parent: 30 + - uid: 14474 + components: + - type: Transform + pos: -62.5,-64.5 + parent: 30 + - uid: 14478 + components: + - type: Transform + pos: -62.5,-63.5 + parent: 30 - proto: CarpetPink entities: - uid: 15267 @@ -44774,11 +43996,6 @@ entities: - type: Transform pos: -58.5,-8.5 parent: 30 - - uid: 4987 - components: - - type: Transform - pos: -20.5,-58.5 - parent: 30 - uid: 5068 components: - type: Transform @@ -44901,20 +44118,22 @@ entities: - type: Transform pos: 27.5,-18.5 parent: 30 - - uid: 7443 + - uid: 7975 components: - type: Transform - pos: -19.5,-58.5 + pos: 24.5,-18.5 parent: 30 - - uid: 7444 + - uid: 8455 components: - type: Transform - pos: -18.5,-58.5 + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 parent: 30 - - uid: 7975 + - uid: 8526 components: - type: Transform - pos: 24.5,-18.5 + rot: 3.141592653589793 rad + pos: -6.5,-43.5 parent: 30 - uid: 8538 components: @@ -44971,96 +44190,125 @@ entities: - type: Transform pos: -5.5,-14.5 parent: 30 - - uid: 9213 + - uid: 9219 components: - type: Transform - pos: -5.5,-15.5 + pos: -5.5,-21.5 parent: 30 - - uid: 9214 + - uid: 9221 components: - type: Transform - pos: -5.5,-16.5 + pos: -5.5,-22.5 parent: 30 - - uid: 9215 + - uid: 9263 components: - type: Transform - pos: -5.5,-17.5 + pos: 25.5,-18.5 parent: 30 - - uid: 9216 + - uid: 9478 components: - type: Transform - pos: -5.5,-18.5 + pos: -12.5,-48.5 parent: 30 - - uid: 9217 + - uid: 9484 components: - type: Transform - pos: -5.5,-19.5 + rot: 3.141592653589793 rad + pos: -5.5,-43.5 parent: 30 - - uid: 9218 + - uid: 9518 components: - type: Transform - pos: -5.5,-20.5 + pos: -5.5,-18.5 parent: 30 - - uid: 9219 + - uid: 9520 components: - type: Transform - pos: -5.5,-21.5 + pos: -11.5,-51.5 parent: 30 - - uid: 9221 + - uid: 9563 components: - type: Transform - pos: -5.5,-22.5 + pos: -10.5,-51.5 parent: 30 - - uid: 9263 + - uid: 9569 components: - type: Transform - pos: 25.5,-18.5 + rot: -1.5707963267948966 rad + pos: -6.5,-44.5 parent: 30 - - uid: 9563 + - uid: 9571 components: - type: Transform - pos: -12.5,-29.5 + rot: -1.5707963267948966 rad + pos: -4.5,-44.5 parent: 30 - - uid: 9564 + - uid: 9613 components: - type: Transform - pos: -11.5,-29.5 + pos: -5.5,-17.5 parent: 30 - - uid: 9565 + - uid: 9615 components: - type: Transform - pos: -10.5,-29.5 + pos: -5.5,-19.5 parent: 30 - - uid: 9566 + - uid: 9616 components: - type: Transform - pos: -9.5,-29.5 + pos: -5.5,-20.5 parent: 30 - - uid: 9567 + - uid: 9704 components: - type: Transform - pos: -8.5,-29.5 + pos: -5.5,-16.5 parent: 30 - - uid: 9568 + - uid: 9705 components: - type: Transform - pos: -7.5,-29.5 + pos: -5.5,-15.5 parent: 30 - - uid: 9569 + - uid: 9799 components: - type: Transform - pos: -6.5,-29.5 + pos: -40.5,-24.5 parent: 30 - - uid: 9799 + - uid: 9821 components: - type: Transform - pos: -40.5,-24.5 + rot: 3.141592653589793 rad + pos: -0.5,-46.5 parent: 30 - uid: 9831 components: - type: Transform pos: -41.5,-24.5 parent: 30 + - uid: 9888 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 30 + - uid: 9889 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 30 + - uid: 9938 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 30 + - uid: 9939 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 30 + - uid: 9985 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 30 - uid: 10073 components: - type: Transform @@ -45076,6 +44324,107 @@ entities: - type: Transform pos: -48.5,-8.5 parent: 30 + - uid: 10659 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 30 + - uid: 10660 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 30 + - uid: 10670 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 30 + - uid: 10671 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 30 + - uid: 10689 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 30 + - uid: 11093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-45.5 + parent: 30 + - uid: 11094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 30 + - uid: 11121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 30 + - uid: 11148 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 + - uid: 11149 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 30 + - uid: 11150 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 30 + - uid: 11151 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 30 + - uid: 11152 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 30 + - uid: 11153 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 30 + - uid: 11154 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 30 + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-44.5 + parent: 30 + - uid: 11274 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 30 + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 30 + - uid: 11288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-44.5 + parent: 30 - uid: 11314 components: - type: Transform @@ -45256,6 +44605,17 @@ entities: - type: Transform pos: 37.5,-18.5 parent: 30 + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 30 + - uid: 14848 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 30 - uid: 14869 components: - type: Transform @@ -47089,6 +46449,16 @@ entities: - type: Transform pos: -59.5,23.5 parent: 30 + - uid: 18994 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 30 + - uid: 19241 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 30 - uid: 19591 components: - type: Transform @@ -47449,46 +46819,6 @@ entities: - type: Transform pos: -0.5,58.5 parent: 30 - - uid: 22647 - components: - - type: Transform - pos: -22.5,-58.5 - parent: 30 - - uid: 22648 - components: - - type: Transform - pos: -23.5,-58.5 - parent: 30 - - uid: 22760 - components: - - type: Transform - pos: -25.5,-63.5 - parent: 30 - - uid: 22761 - components: - - type: Transform - pos: -26.5,-63.5 - parent: 30 - - uid: 22762 - components: - - type: Transform - pos: -27.5,-63.5 - parent: 30 - - uid: 22763 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - - uid: 22764 - components: - - type: Transform - pos: -26.5,-61.5 - parent: 30 - - uid: 22765 - components: - - type: Transform - pos: -25.5,-61.5 - parent: 30 - proto: Chair entities: - uid: 586 @@ -47932,6 +47262,42 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-4.5 parent: 30 + - uid: 10125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 30 + - uid: 10127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 + parent: 30 + - uid: 10195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-41.5 + parent: 30 + - uid: 10196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-40.5 + parent: 30 + - uid: 10197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 30 + - uid: 10198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 30 - uid: 11360 components: - type: Transform @@ -48628,22 +47994,10 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-34.5 parent: 30 - - uid: 8251 - components: - - type: Transform - pos: -16.5,-28.5 - parent: 30 - - uid: 8300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 30 - - uid: 9047 + - uid: 9060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-36.5 + pos: 4.095898,-45.486774 parent: 30 - uid: 9126 components: @@ -48657,20 +48011,28 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-27.5 parent: 30 - - uid: 9446 + - uid: 9677 components: - type: Transform - pos: -23.5,-40.5 + pos: 2.8055086,-45.39959 parent: 30 - - uid: 11304 + - uid: 9964 components: - type: Transform - pos: -16.5,-43.5 + rot: 3.141592653589793 rad + pos: -8.548677,-35.341038 parent: 30 - - uid: 11305 + - uid: 10095 components: - type: Transform - pos: 1.5,-43.5 + rot: -1.5707963267948966 rad + pos: -16.516525,-31.38681 + parent: 30 + - uid: 10764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.450798,-48.444862 parent: 30 - uid: 11569 components: @@ -48718,12 +48080,6 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 30 - - uid: 12831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 30 - uid: 16157 components: - type: Transform @@ -48740,6 +48096,11 @@ entities: - type: Transform pos: -60.5,44.5 parent: 30 + - uid: 18995 + components: + - type: Transform + pos: -24.534996,-43.467594 + parent: 30 - uid: 20274 components: - type: Transform @@ -48781,20 +48142,19 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,20.5 parent: 30 - - uid: 22834 +- proto: ChairOfficeLight + entities: + - uid: 318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 + pos: 18.503437,14.498728 parent: 30 - - uid: 22837 + - uid: 334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-58.5 + rot: 1.5707963267948966 rad + pos: -66.47906,-63.39059 parent: 30 -- proto: ChairOfficeLight - entities: - uid: 2111 components: - type: Transform @@ -48894,6 +48254,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,23.5 parent: 30 + - uid: 14048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.504675,15.6658 + parent: 30 - proto: ChairWood entities: - uid: 562 @@ -48979,6 +48345,24 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,40.5 parent: 30 + - uid: 10229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.447754,-64.514534 + parent: 30 + - uid: 10230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.457657,-64.514534 + parent: 30 + - uid: 10232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.427956,-65.45017 + parent: 30 - uid: 13673 components: - type: Transform @@ -49141,12 +48525,6 @@ entities: rot: -1.5707963267948966 rad pos: -81.5,-44.5 parent: 30 - - uid: 17789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-63.5 - parent: 30 - uid: 18078 components: - type: Transform @@ -49162,16 +48540,6 @@ entities: - type: Transform pos: -58.5,-48.5 parent: 30 - - uid: 19422 - components: - - type: Transform - pos: -60.5,-66.5 - parent: 30 - - uid: 19423 - components: - - type: Transform - pos: -60.5,-64.5 - parent: 30 - uid: 19464 components: - type: Transform @@ -49539,29 +48907,23 @@ entities: - 0 - proto: ClosetChefFilled entities: - - uid: 64 + - uid: 18188 components: - type: Transform - pos: -17.5,5.5 + pos: -16.5,5.5 + parent: 30 +- proto: ClosetEmergency + entities: + - uid: 9869 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 30 + - uid: 13975 + components: + - type: Transform + pos: -15.5,-50.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetEmergencyFilledRandom entities: - uid: 893 @@ -49758,29 +49120,11 @@ entities: - type: Transform pos: -37.5,-5.5 parent: 30 - - uid: 11267 + - uid: 11456 components: - type: Transform - pos: -18.5,-51.5 + pos: -52.5,37.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11750 components: - type: Transform @@ -49827,6 +49171,16 @@ entities: - 0 - 0 - 0 + - uid: 12817 + components: + - type: Transform + pos: -53.5,-65.5 + parent: 30 + - uid: 14049 + components: + - type: Transform + pos: 14.5,10.5 + parent: 30 - uid: 15549 components: - type: Transform @@ -50034,29 +49388,11 @@ entities: - 0 - 0 - 0 - - uid: 18785 + - uid: 19242 components: - type: Transform - pos: -67.5,-65.5 + pos: -13.5,-35.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 19394 components: - type: Transform @@ -50154,52 +49490,6 @@ entities: - 0 - 0 - 0 - - uid: 22654 - components: - - type: Transform - pos: -23.5,-57.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22840 - components: - - type: Transform - pos: -27.5,-57.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetFireFilled entities: - uid: 1277 @@ -50294,6 +49584,11 @@ entities: - 0 - 0 - 0 + - uid: 9067 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 30 - uid: 9242 components: - type: Transform @@ -50340,75 +49635,21 @@ entities: - 0 - 0 - 0 - - uid: 9996 + - uid: 10562 components: - type: Transform - pos: -4.5,-43.5 + pos: 1.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9997 + - uid: 11069 components: - type: Transform - pos: -5.5,-43.5 + pos: 3.5,-37.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10094 + - uid: 11285 components: - type: Transform - pos: 3.5,-39.5 + pos: -6.5,-38.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 11752 components: - type: Transform @@ -50432,29 +49673,6 @@ entities: - 0 - 0 - 0 - - uid: 12771 - components: - - type: Transform - pos: 18.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 - uid: 13340 components: - type: Transform @@ -50524,33 +49742,15 @@ entities: - 0 - 0 - 0 - - uid: 22224 + - uid: 17726 components: - type: Transform - pos: 33.5,20.5 + pos: 13.5,12.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22841 + - uid: 22224 components: - type: Transform - pos: -25.5,-57.5 + pos: 33.5,20.5 parent: 30 - type: EntityStorage air: @@ -50893,102 +50093,30 @@ entities: - 0 - proto: ClosetRadiationSuitFilled entities: - - uid: 9993 + - uid: 9058 components: - type: Transform - pos: -1.5,-43.5 + pos: 4.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9994 + - uid: 9246 components: - type: Transform - pos: -2.5,-43.5 + pos: 3.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 9995 + - uid: 10049 components: - type: Transform - pos: -3.5,-43.5 + pos: -15.5,-48.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11246 + - uid: 11062 components: - type: Transform - pos: -1.5,-35.5 + pos: -15.5,-46.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 12770 + - uid: 11246 components: - type: Transform - pos: 17.5,16.5 + pos: -1.5,-35.5 parent: 30 - type: EntityStorage air: @@ -51031,52 +50159,11 @@ entities: - 0 - 0 - 0 - - uid: 21459 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21460 + - uid: 14333 components: - type: Transform - pos: 2.5,-37.5 + pos: 12.5,12.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: ClosetSteelBase entities: - uid: 7040 @@ -51141,29 +50228,6 @@ entities: - 0 - 0 - 0 - - uid: 16172 - components: - - type: Transform - pos: 52.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 - uid: 16213 components: - type: Transform @@ -51287,22 +50351,24 @@ entities: - type: Transform pos: -32.460716,58.62153 parent: 30 -- proto: ClothingBeltUtilityFilled +- proto: ClothingBeltUtilityEngineering entities: - - uid: 1630 + - uid: 8298 components: - type: Transform - pos: -28.53513,29.598625 + pos: -5.4889383,-38.35511 parent: 30 - - uid: 8337 + - uid: 11172 components: - type: Transform - pos: -4.5536795,-38.356297 + pos: -9.825792,-47.53879 parent: 30 - - uid: 11334 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 1630 components: - type: Transform - pos: -17.525967,-28.59756 + pos: -28.53513,29.598625 parent: 30 - proto: ClothingEyesEyepatch entities: @@ -51333,10 +50399,10 @@ entities: - type: Transform pos: 24.515018,11.567955 parent: 30 - - uid: 19524 + - uid: 18355 components: - type: Transform - pos: -57.565453,-65.51947 + pos: -58.808327,-65.48881 parent: 30 - uid: 19696 components: @@ -51378,31 +50444,16 @@ entities: parent: 30 - proto: ClothingEyesGlassesMeson entities: - - uid: 9437 - components: - - type: Transform - pos: -23.481958,-39.312622 - parent: 30 - - uid: 9438 + - uid: 9370 components: - type: Transform - pos: -23.481958,-39.468872 + pos: -2.4337187,-46.09784 parent: 30 - uid: 9440 components: - type: Transform pos: 5.538602,-23.326946 parent: 30 - - uid: 9618 - components: - - type: Transform - pos: -18.387093,-35.233547 - parent: 30 - - uid: 10009 - components: - - type: Transform - pos: -13.542964,-45.357754 - parent: 30 - uid: 22447 components: - type: Transform @@ -51427,27 +50478,27 @@ entities: parent: 30 - proto: ClothingEyesGlassesThermal entities: - - uid: 9441 + - uid: 9397 components: - type: Transform - pos: 5.522977,-23.530071 + pos: -2.5034692,-46.307095 parent: 30 - - uid: 10010 + - uid: 9441 components: - type: Transform - pos: -13.542964,-45.170254 + pos: 5.522977,-23.530071 parent: 30 - proto: ClothingEyesHudDiagnostic entities: - - uid: 11291 + - uid: 11115 components: - type: Transform - pos: -15.509655,-44.429184 + pos: -9.615068,-41.346893 parent: 30 - - uid: 11292 + - uid: 11116 components: - type: Transform - pos: -15.509655,-44.241684 + pos: -9.388378,-41.503834 parent: 30 - proto: ClothingEyesHudSecurity entities: @@ -51506,10 +50557,10 @@ entities: - type: Transform pos: -29.37888,29.583 parent: 30 - - uid: 9444 + - uid: 19401 components: - type: Transform - pos: -24.364544,-39.42136 + pos: -24.731133,-50.435394 parent: 30 - proto: ClothingHandsGlovesFingerless entities: @@ -51862,20 +50913,10 @@ entities: - type: Transform pos: 16.616007,29.472477 parent: 30 - - uid: 7751 - components: - - type: Transform - pos: -4.5693045,-38.59067 - parent: 30 - - uid: 7771 - components: - - type: Transform - pos: -4.3505545,-38.46567 - parent: 30 - - uid: 11337 + - uid: 8295 components: - type: Transform - pos: -17.479092,-30.706936 + pos: -5.4715004,-38.529488 parent: 30 - uid: 18177 components: @@ -51929,10 +50970,10 @@ entities: parent: 30 - proto: ClothingNeckCloakTrans entities: - - uid: 18360 + - uid: 3344 components: - type: Transform - pos: -64.42011,-67.461174 + pos: -56.501534,-67.426544 parent: 30 - proto: ClothingNeckHeadphones entities: @@ -51955,6 +50996,11 @@ entities: parent: 30 - proto: ClothingNeckScarfStripedGreen entities: + - uid: 3360 + components: + - type: Transform + pos: -66.40864,-64.41052 + parent: 30 - uid: 16211 components: - type: Transform @@ -51965,11 +51011,6 @@ entities: - type: Transform pos: -38.49321,0.5225295 parent: 30 - - uid: 19430 - components: - - type: Transform - pos: -57.52941,-67.45332 - parent: 30 - uid: 21488 components: - type: Transform @@ -52220,15 +51261,15 @@ entities: parent: 30 - proto: ClothingOuterVestHazard entities: - - uid: 11335 + - uid: 11258 components: - type: Transform - pos: -17.557217,-31.269436 + pos: -8.974306,-47.528893 parent: 30 - - uid: 11336 + - uid: 11262 components: - type: Transform - pos: -17.385342,-31.456936 + pos: -9.241632,-47.33087 parent: 30 - proto: ClothingOuterVestWeb entities: @@ -52291,10 +51332,10 @@ entities: - type: Transform pos: -3.4180164,22.487759 parent: 30 - - uid: 11268 + - uid: 4895 components: - type: Transform - pos: -16.51538,-50.461685 + pos: -19.595419,-50.39677 parent: 30 - proto: ClothingShoesBootsPerformer entities: @@ -52670,10 +51711,10 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-16.5 parent: 30 - - uid: 9588 + - uid: 9407 components: - type: Transform - pos: -18.5,-34.5 + pos: -8.5,-33.5 parent: 30 - uid: 9673 components: @@ -52686,17 +51727,23 @@ entities: - type: Transform pos: -42.5,-11.5 parent: 30 - - uid: 12854 + - uid: 14359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,10.5 + pos: 17.5,10.5 parent: 30 - - uid: 12929 + - uid: 14509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 + rot: 3.141592653589793 rad + pos: -66.5,-65.5 + parent: 30 + - uid: 14524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-65.5 parent: 30 - uid: 15363 components: @@ -52792,6 +51839,12 @@ entities: rot: 1.5707963267948966 rad pos: -57.5,31.5 parent: 30 + - uid: 18544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 30 - uid: 19463 components: - type: Transform @@ -52879,12 +51932,6 @@ entities: - type: Transform pos: -61.5,-20.5 parent: 30 - - uid: 22806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - proto: ComputerAnalysisConsole entities: - uid: 15282 @@ -53000,11 +52047,11 @@ entities: - type: Transform pos: -14.5,-14.5 parent: 30 - - uid: 22804 + - uid: 9596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-62.5 + rot: 3.141592653589793 rad + pos: -16.5,-32.5 parent: 30 - proto: ComputerCriminalRecords entities: @@ -53059,11 +52106,6 @@ entities: parent: 30 - proto: ComputerFrame entities: - - uid: 10213 - components: - - type: Transform - pos: -22.5,-68.5 - parent: 30 - uid: 20279 components: - type: Transform @@ -53142,10 +52184,23 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,43.5 parent: 30 - - uid: 11271 + - uid: 8525 components: - type: Transform - pos: -7.5,-35.5 + rot: 1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 30 + - uid: 10200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 30 + - uid: 10589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 parent: 30 - proto: ComputerRadar entities: @@ -53156,12 +52211,6 @@ entities: parent: 30 - proto: ComputerResearchAndDevelopment entities: - - uid: 490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 30 - uid: 5816 components: - type: Transform @@ -53227,10 +52276,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 30 - - uid: 11270 + - uid: 7225 components: - type: Transform - pos: -5.5,-38.5 + rot: -1.5707963267948966 rad + pos: -6.5,-45.5 parent: 30 - uid: 15966 components: @@ -53278,12 +52328,6 @@ entities: - type: Transform pos: -30.5,49.5 parent: 30 - - uid: 22805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-63.5 - parent: 30 - proto: ComputerSurveillanceCameraMonitor entities: - uid: 1073 @@ -53329,10 +52373,11 @@ entities: parent: 30 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 12814 + - uid: 17885 components: - type: Transform - pos: 20.5,12.5 + rot: 3.141592653589793 rad + pos: 20.5,10.5 parent: 30 - proto: ComputerTelevision entities: @@ -53343,25 +52388,25 @@ entities: parent: 30 - proto: ContainmentFieldGenerator entities: - - uid: 9413 + - uid: 8026 components: - type: Transform - pos: -23.5,-49.5 + pos: -19.5,-35.5 parent: 30 - - uid: 9414 + - uid: 10654 components: - type: Transform - pos: -23.5,-50.5 + pos: -19.5,-34.5 parent: 30 - - uid: 9415 + - uid: 18859 components: - type: Transform - pos: -22.5,-50.5 + pos: -18.5,-35.5 parent: 30 - - uid: 9416 + - uid: 19418 components: - type: Transform - pos: -22.5,-49.5 + pos: -18.5,-34.5 parent: 30 - proto: ConveyorBelt entities: @@ -53473,54 +52518,57 @@ entities: - type: Transform pos: 35.5,-17.5 parent: 30 - - uid: 14522 + - uid: 12943 components: - type: Transform - pos: 48.5,25.5 + rot: -1.5707963267948966 rad + pos: 53.5,24.5 parent: 30 - - uid: 14523 + - uid: 12944 components: - type: Transform - pos: 48.5,24.5 + rot: -1.5707963267948966 rad + pos: 52.5,24.5 parent: 30 - - uid: 14524 + - uid: 12961 components: - type: Transform - pos: 48.5,23.5 + rot: -1.5707963267948966 rad + pos: 51.5,24.5 parent: 30 - - uid: 14525 + - uid: 12973 components: - type: Transform - pos: 48.5,22.5 + pos: 50.5,24.5 parent: 30 - - uid: 14526 + - uid: 12983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,23.5 parent: 30 - - uid: 14527 + - uid: 13034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,24.5 parent: 30 - - uid: 14528 + - uid: 13048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,22.5 + rot: 3.141592653589793 rad + pos: 48.5,25.5 parent: 30 - - uid: 14529 + - uid: 16126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,22.5 + pos: 35.5,-15.5 parent: 30 - - uid: 16126 + - uid: 18374 components: - type: Transform - pos: 35.5,-15.5 + rot: -1.5707963267948966 rad + pos: 50.5,23.5 parent: 30 - proto: CornSeeds entities: @@ -53538,6 +52586,11 @@ entities: parent: 30 - proto: CrateArtifactContainer entities: + - uid: 17790 + components: + - type: Transform + pos: 41.5,12.5 + parent: 30 - uid: 22272 components: - type: Transform @@ -53585,12 +52638,28 @@ entities: - type: Transform pos: 23.5,-3.5 parent: 30 +- proto: CrateEngineeringAMEJar + entities: + - uid: 18993 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 30 + - type: Lock + locked: False - proto: CrateEngineeringAMEShielding entities: - - uid: 9478 + - uid: 19186 components: - type: Transform - pos: -16.5,-32.5 + pos: -13.5,-49.5 + parent: 30 +- proto: CrateEngineeringCableBulk + entities: + - uid: 3520 + components: + - type: Transform + pos: -43.5,19.5 parent: 30 - type: EntityStorage air: @@ -53598,8 +52667,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 2.0214376 - - 7.6044564 + - 3.4430928 + - 12.952587 - 0 - 0 - 0 @@ -53610,12 +52679,24 @@ entities: - 0 - 0 - 0 -- proto: CrateEngineeringCableBulk - entities: - - uid: 3520 + - type: Construction + containers: + - EntityStorageComponent + - entity_storage + - uid: 7840 components: - type: Transform - pos: -43.5,19.5 + pos: -37.5,-3.5 + parent: 30 + - uid: 10765 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 30 + - uid: 16813 + components: + - type: Transform + pos: -54.5,41.5 parent: 30 - type: EntityStorage air: @@ -53639,15 +52720,10 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 7840 - components: - - type: Transform - pos: -37.5,-3.5 - parent: 30 - - uid: 9578 + - uid: 22442 components: - type: Transform - pos: -22.5,-44.5 + pos: 5.5,20.5 parent: 30 - type: EntityStorage air: @@ -53667,14 +52743,19 @@ entities: - 0 - 0 - 0 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 16813 +- proto: CrateEngineeringCableHV + entities: + - uid: 10201 components: - type: Transform - pos: -54.5,41.5 + pos: -5.5,-45.5 + parent: 30 +- proto: CrateEngineeringCableLV + entities: + - uid: 19629 + components: + - type: Transform + pos: -31.5,-38.5 parent: 30 - type: EntityStorage air: @@ -53698,166 +52779,6 @@ entities: containers: - EntityStorageComponent - entity_storage - - uid: 20467 - components: - - type: Transform - pos: 3.5,-44.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 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - uid: 22442 - components: - - type: Transform - pos: 5.5,20.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableHV - entities: - - uid: 10219 - components: - - type: Transform - pos: -10.5,-68.5 - parent: 30 -- proto: CrateEngineeringCableLV - entities: - - uid: 19629 - components: - - type: Transform - pos: -31.5,-38.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 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage -- proto: CrateEngineeringCableMV - entities: - - uid: 10220 - components: - - type: Transform - pos: -9.5,-68.5 - parent: 30 -- proto: CrateEngineeringSingularityCollector - entities: - - uid: 10216 - components: - - type: Transform - pos: -13.5,-68.5 - parent: 30 - - uid: 10217 - components: - - type: Transform - pos: -12.5,-68.5 - parent: 30 - - uid: 10218 - components: - - type: Transform - pos: -11.5,-68.5 - parent: 30 -- proto: CrateEngineeringSingularityContainment - entities: - - uid: 11299 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 30 - - type: Construction - containers: - - EntityStorageComponent - - entity_storage - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringTeslaCoil - entities: - - uid: 20617 - components: - - type: Transform - pos: -12.5,-69.5 - parent: 30 -- proto: CrateEngineeringTeslaGenerator - entities: - - uid: 9475 - components: - - type: Transform - pos: -13.5,-69.5 - parent: 30 -- proto: CrateEngineeringTeslaGroundingRod - entities: - - uid: 20618 - components: - - type: Transform - pos: -11.5,-69.5 - parent: 30 - proto: CrateFilledSpawner entities: - uid: 3505 @@ -53977,31 +52898,6 @@ entities: - type: Transform pos: 17.5,18.5 parent: 30 -- proto: CrateNPCCow - entities: - - uid: 494 - components: - - type: Transform - pos: -16.5,5.5 - parent: 30 - - type: EntityStorage - air: - volume: 800 - immutable: False - temperature: 293.14987 - moles: - - 13.772371 - - 51.81035 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: CrateNPCHamlet entities: - uid: 4350 @@ -54196,10 +53092,10 @@ entities: available: False - proto: Crowbar entities: - - uid: 12836 + - uid: 18695 components: - type: Transform - pos: 16.474464,12.551813 + pos: 17.494757,13.487526 parent: 30 - proto: CrowbarRed entities: @@ -54223,11 +53119,6 @@ entities: - type: Transform pos: 11.455861,34.475574 parent: 30 - - uid: 11301 - components: - - type: Transform - pos: -18.417063,-48.52035 - parent: 30 - uid: 11738 components: - type: Transform @@ -54349,12 +53240,33 @@ entities: rot: 1.5707963267948966 rad pos: -74.382675,-63.392025 parent: 30 +- proto: DefaultStationBeaconAI + entities: + - uid: 20686 + components: + - type: Transform + pos: -0.5,74.5 + parent: 30 +- proto: DefaultStationBeaconAICore + entities: + - uid: 20685 + components: + - type: Transform + pos: -0.5,83.5 + parent: 30 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 20687 + components: + - type: Transform + pos: -0.5,61.5 + parent: 30 - proto: DefaultStationBeaconAME entities: - - uid: 20527 + - uid: 20688 components: - type: Transform - pos: -11.5,-30.5 + pos: -11.5,-48.5 parent: 30 - proto: DefaultStationBeaconAnomalyGenerator entities: @@ -54386,10 +53298,10 @@ entities: parent: 30 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 20534 + - uid: 11463 components: - type: Transform - pos: 10.5,-29.5 + pos: 11.5,-24.5 parent: 30 - proto: DefaultStationBeaconBar entities: @@ -54442,10 +53354,10 @@ entities: parent: 30 - proto: DefaultStationBeaconCERoom entities: - - uid: 20538 + - uid: 20689 components: - type: Transform - pos: -18.5,-36.5 + pos: -7.5,-35.5 parent: 30 - proto: DefaultStationBeaconChapel entities: @@ -54503,6 +53415,13 @@ entities: - type: Transform pos: 49.5,21.5 parent: 30 +- proto: DefaultStationBeaconDorms + entities: + - uid: 20690 + components: + - type: Transform + pos: 21.5,36.5 + parent: 30 - proto: DefaultStationBeaconEngineering entities: - uid: 20553 @@ -54510,6 +53429,25 @@ entities: - type: Transform pos: 1.5,-33.5 parent: 30 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 11455 + components: + - type: Transform + pos: -52.5,36.5 + parent: 30 + - uid: 20691 + components: + - type: Transform + pos: 25.5,42.5 + parent: 30 +- proto: DefaultStationBeaconEvac + entities: + - uid: 20692 + components: + - type: Transform + pos: -51.5,16.5 + parent: 30 - proto: DefaultStationBeaconEVAStorage entities: - uid: 20552 @@ -54517,6 +53455,13 @@ entities: - type: Transform pos: -1.5,23.5 parent: 30 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 20693 + components: + - type: Transform + pos: 11.5,41.5 + parent: 30 - proto: DefaultStationBeaconHOPOffice entities: - uid: 20554 @@ -54554,22 +53499,24 @@ entities: parent: 30 - proto: DefaultStationBeaconLibrary entities: - - uid: 20544 + - uid: 20684 components: - type: Transform - pos: -57.5,-66.5 + pos: -62.5,-62.5 parent: 30 - proto: DefaultStationBeaconMedbay entities: - - uid: 8026 + - uid: 20559 components: - type: Transform - pos: -22.5,-9.5 + pos: -11.5,-3.5 parent: 30 - - uid: 20559 +- proto: DefaultStationBeaconMedical + entities: + - uid: 13319 components: - type: Transform - pos: -11.5,-3.5 + pos: -22.5,-9.5 parent: 30 - proto: DefaultStationBeaconMorgue entities: @@ -54587,10 +53534,10 @@ entities: parent: 30 - proto: DefaultStationBeaconPowerBank entities: - - uid: 20562 + - uid: 20695 components: - type: Transform - pos: -7.5,-36.5 + pos: -8.5,-44.5 parent: 30 - proto: DefaultStationBeaconQMRoom entities: @@ -54627,6 +53574,13 @@ entities: - type: Transform pos: 31.5,-10.5 parent: 30 +- proto: DefaultStationBeaconScience + entities: + - uid: 20696 + components: + - type: Transform + pos: 14.5,15.5 + parent: 30 - proto: DefaultStationBeaconSecurityCheckpoint entities: - uid: 7064 @@ -54634,6 +53588,11 @@ entities: - type: Transform pos: -18.5,-0.5 parent: 30 + - uid: 20697 + components: + - type: Transform + pos: 13.5,22.5 + parent: 30 - proto: DefaultStationBeaconServerRoom entities: - uid: 20568 @@ -54641,6 +53600,20 @@ entities: - type: Transform pos: 32.5,14.5 parent: 30 +- proto: DefaultStationBeaconService + entities: + - uid: 20698 + components: + - type: Transform + pos: -10.5,14.5 + parent: 30 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 20694 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 30 - proto: DefaultStationBeaconSolars entities: - uid: 20441 @@ -54674,17 +53647,17 @@ entities: parent: 30 - proto: DefaultStationBeaconTEG entities: - - uid: 20569 + - uid: 20699 components: - type: Transform - pos: -7.5,-51.5 + pos: 0.5,-47.5 parent: 30 - proto: DefaultStationBeaconTelecoms entities: - - uid: 20570 + - uid: 20700 components: - type: Transform - pos: -35.5,-60.5 + pos: -13.5,-29.5 parent: 30 - proto: DefaultStationBeaconToolRoom entities: @@ -54818,17 +53791,27 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-5.5 parent: 30 - - uid: 8454 + - uid: 11022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 parent: 30 - - uid: 11022 + - uid: 11283 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -13.5,-39.5 + parent: 30 + - uid: 11284 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 30 + - uid: 12641 + components: + - type: Transform + pos: -24.5,13.5 parent: 30 - uid: 12784 components: @@ -54909,41 +53892,6 @@ entities: - type: Transform pos: 1.5,-29.5 parent: 30 - - uid: 13958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 30 - - uid: 13959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-41.5 - parent: 30 - - uid: 13960 - components: - - type: Transform - pos: 0.5,-40.5 - parent: 30 - - uid: 13977 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-40.5 - parent: 30 - - uid: 13978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 - parent: 30 - - uid: 13979 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-42.5 - parent: 30 - uid: 13991 components: - type: Transform @@ -54983,12 +53931,6 @@ entities: - type: Transform pos: -21.5,6.5 parent: 30 - - uid: 14051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 30 - uid: 14054 components: - type: Transform @@ -55127,40 +54069,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,15.5 parent: 30 - - uid: 14334 - components: - - type: Transform - pos: 23.5,15.5 - parent: 30 - - uid: 14335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 30 - - uid: 14336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 - parent: 30 - uid: 14348 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 30 - - uid: 14357 - components: - - type: Transform - pos: 13.5,12.5 - parent: 30 - - uid: 14358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,11.5 - parent: 30 - uid: 14379 components: - type: Transform @@ -55207,6 +54121,12 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-9.5 parent: 30 + - uid: 14456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 30 - uid: 14465 components: - type: Transform @@ -55261,6 +54181,18 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,34.5 parent: 30 + - uid: 19429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 30 + - uid: 19505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-46.5 + parent: 30 - uid: 19701 components: - type: Transform @@ -55388,17 +54320,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,64.5 parent: 30 - - uid: 22599 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 30 - - uid: 22618 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-58.5 - parent: 30 - proto: DisposalJunction entities: - uid: 6948 @@ -55412,6 +54333,12 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-9.5 parent: 30 + - uid: 9617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 30 - uid: 13878 components: - type: Transform @@ -55424,24 +54351,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-6.5 parent: 30 - - uid: 13901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 30 - uid: 13910 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 30 - - uid: 13957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-40.5 - parent: 30 - uid: 14018 components: - type: Transform @@ -55460,6 +54375,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,2.5 parent: 30 + - uid: 14047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 30 - uid: 14053 components: - type: Transform @@ -55492,12 +54413,6 @@ entities: - type: Transform pos: -32.5,46.5 parent: 30 - - uid: 14333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 30 - proto: DisposalJunctionFlipped entities: - uid: 7252 @@ -55592,12 +54507,6 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,16.5 parent: 30 - - uid: 14345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,11.5 - parent: 30 - uid: 14375 components: - type: Transform @@ -55624,8 +54533,44 @@ entities: - type: Transform pos: -35.5,37.5 parent: 30 + - uid: 19427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-42.5 + parent: 30 + - uid: 19765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 30 - proto: DisposalPipe entities: + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 30 + - uid: 1938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 30 + - uid: 3118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 30 + - uid: 3155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 30 - uid: 5299 components: - type: Transform @@ -55856,6 +54801,18 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-9.5 parent: 30 + - uid: 9746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 30 + - uid: 9891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 30 - uid: 11018 components: - type: Transform @@ -55876,12 +54833,42 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 30 + - uid: 11155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-45.5 + parent: 30 + - uid: 11162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-43.5 + parent: 30 + - uid: 11170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-44.5 + parent: 30 + - uid: 11349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 30 - uid: 11447 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 30 + - uid: 12297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 30 - uid: 12678 components: - type: Transform @@ -55918,11 +54905,28 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,23.5 parent: 30 - - uid: 13083 + - uid: 12840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-40.5 + pos: 52.5,23.5 + parent: 30 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 30 + - uid: 13081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 30 + - uid: 13331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,11.5 parent: 30 - uid: 13800 components: @@ -56406,12 +55410,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 30 - - uid: 13903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-18.5 - parent: 30 - uid: 13905 components: - type: Transform @@ -56644,155 +55642,24 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-36.5 parent: 30 - - uid: 13952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-37.5 - parent: 30 - - uid: 13953 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-39.5 - parent: 30 - - uid: 13954 + - uid: 13961 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-38.5 parent: 30 - - uid: 13956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 30 - - uid: 13961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 - parent: 30 - uid: 13962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-40.5 - parent: 30 - - uid: 13963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-40.5 - parent: 30 - - uid: 13964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 30 - - uid: 13965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 30 - - uid: 13966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-40.5 - parent: 30 - - uid: 13967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 30 - - uid: 13968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 30 - - uid: 13969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 30 - - uid: 13970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 30 - - uid: 13971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 30 - - uid: 13972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 30 - - uid: 13973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 - parent: 30 - - uid: 13974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-40.5 - parent: 30 - - uid: 13975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-40.5 - parent: 30 - - uid: 13976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-40.5 - parent: 30 - - uid: 13981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-43.5 - parent: 30 - - uid: 13982 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 30 - - uid: 13983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 + pos: 0.5,-39.5 parent: 30 - - uid: 13984 + - uid: 13963 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-42.5 parent: 30 - - uid: 13985 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 30 - uid: 13993 components: - type: Transform @@ -57021,41 +55888,23 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,6.5 parent: 30 - - uid: 14043 - components: - - type: Transform - pos: -25.5,12.5 - parent: 30 - uid: 14044 components: - type: Transform - pos: -25.5,11.5 + rot: 3.141592653589793 rad + pos: -24.5,8.5 parent: 30 - uid: 14045 components: - type: Transform - pos: -25.5,10.5 + rot: 3.141592653589793 rad + pos: -24.5,7.5 parent: 30 - uid: 14046 components: - type: Transform - pos: -25.5,9.5 - parent: 30 - - uid: 14047 - components: - - type: Transform - pos: -25.5,8.5 - parent: 30 - - uid: 14048 - components: - - type: Transform - pos: -25.5,7.5 - parent: 30 - - uid: 14049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,6.5 + rot: 1.5707963267948966 rad + pos: 19.5,15.5 parent: 30 - uid: 14050 components: @@ -58312,18 +57161,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,15.5 parent: 30 - - uid: 14329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,15.5 - parent: 30 - - uid: 14330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 30 - uid: 14331 components: - type: Transform @@ -58384,54 +57221,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,8.5 parent: 30 - - uid: 14359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 30 - - uid: 14360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,11.5 - parent: 30 - - uid: 14361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - - uid: 14362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,11.5 - parent: 30 - - uid: 14363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,11.5 - parent: 30 - - uid: 14364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,11.5 - parent: 30 - - uid: 14365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,11.5 - parent: 30 - - uid: 14366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 - parent: 30 - uid: 14367 components: - type: Transform @@ -58715,6 +57504,12 @@ entities: - type: Transform pos: -11.5,-1.5 parent: 30 + - uid: 14436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 30 - uid: 14438 components: - type: Transform @@ -58757,6 +57552,18 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-7.5 parent: 30 + - uid: 14458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 30 + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 30 - uid: 14463 components: - type: Transform @@ -58910,6 +57717,100 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,37.5 parent: 30 + - uid: 17808 + components: + - type: Transform + pos: 52.5,22.5 + parent: 30 + - uid: 19430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 30 + - uid: 19431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 30 + - uid: 19438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-39.5 + parent: 30 + - uid: 19441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 30 + - uid: 19473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 30 + - uid: 19474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-39.5 + parent: 30 + - uid: 19475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 30 + - uid: 19490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-39.5 + parent: 30 + - uid: 19524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 30 + - uid: 19631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-39.5 + parent: 30 + - uid: 19638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 30 + - uid: 19639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 30 + - uid: 19640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 30 + - uid: 19687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-42.5 + parent: 30 + - uid: 19688 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 30 - uid: 19703 components: - type: Transform @@ -58921,6 +57822,42 @@ entities: - type: Transform pos: -22.5,-35.5 parent: 30 + - uid: 19709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 30 + - uid: 19710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-40.5 + parent: 30 + - uid: 19724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-40.5 + parent: 30 + - uid: 19772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-44.5 + parent: 30 + - uid: 19773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 30 + - uid: 19774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-41.5 + parent: 30 - uid: 22109 components: - type: Transform @@ -59508,104 +58445,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,64.5 parent: 30 - - uid: 22600 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 30 - - uid: 22601 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 30 - - uid: 22602 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 30 - - uid: 22603 - components: - - type: Transform - pos: -17.5,-51.5 - parent: 30 - - uid: 22604 - components: - - type: Transform - pos: -17.5,-52.5 - parent: 30 - - uid: 22605 - components: - - type: Transform - pos: -17.5,-53.5 - parent: 30 - - uid: 22606 - components: - - type: Transform - pos: -17.5,-54.5 - parent: 30 - - uid: 22607 - components: - - type: Transform - pos: -17.5,-55.5 - parent: 30 - - uid: 22608 - components: - - type: Transform - pos: -17.5,-56.5 - parent: 30 - - uid: 22609 - components: - - type: Transform - pos: -17.5,-57.5 - parent: 30 - - uid: 22610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - - uid: 22611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - - uid: 22612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - - uid: 22613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - - uid: 22614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - - uid: 22615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - - uid: 22616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - - uid: 22617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - proto: DisposalTrunk entities: - uid: 356 @@ -59649,6 +58488,18 @@ entities: - type: Transform pos: -19.5,-4.5 parent: 30 + - uid: 9753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 30 + - uid: 11171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 30 - uid: 11226 components: - type: Transform @@ -59667,30 +58518,12 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 30 - - uid: 13902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-18.5 - parent: 30 - uid: 13911 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-29.5 parent: 30 - - uid: 13955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 30 - - uid: 13980 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-44.5 - parent: 30 - uid: 13986 components: - type: Transform @@ -59714,11 +58547,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,5.5 parent: 30 - - uid: 13990 - components: - - type: Transform - pos: -25.5,13.5 - parent: 30 - uid: 14076 components: - type: Transform @@ -59793,12 +58621,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,14.5 parent: 30 - - uid: 14356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 30 - uid: 14377 components: - type: Transform @@ -59827,15 +58649,21 @@ entities: - type: Transform pos: -7.5,-8.5 parent: 30 + - uid: 14449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,13.5 + parent: 30 - uid: 14453 components: - type: Transform pos: -21.5,-0.5 parent: 30 - - uid: 14534 + - uid: 14460 components: - type: Transform - pos: 52.5,22.5 + pos: 18.5,16.5 parent: 30 - uid: 16078 components: @@ -59848,6 +58676,23 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,37.5 parent: 30 + - uid: 17794 + components: + - type: Transform + pos: 52.5,24.5 + parent: 30 + - uid: 19428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-40.5 + parent: 30 + - uid: 19523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-46.5 + parent: 30 - uid: 19700 components: - type: Transform @@ -59872,6 +58717,11 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-34.5 parent: 30 + - uid: 19781 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 30 - uid: 22187 components: - type: Transform @@ -59890,17 +58740,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,64.5 parent: 30 - - uid: 22598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 - parent: 30 - - uid: 22619 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 30 - proto: DisposalUnit entities: - uid: 343 @@ -59983,13 +58822,6 @@ entities: - type: Transform pos: -24.5,53.5 parent: 30 - - uid: 5238 - components: - - type: MetaData - name: Telecomms Tube - - type: Transform - pos: -18.5,-47.5 - parent: 30 - uid: 5686 components: - type: Transform @@ -60055,30 +58887,30 @@ entities: - type: Transform pos: -18.5,-22.5 parent: 30 - - uid: 8504 + - uid: 7229 components: - type: Transform - pos: 6.5,-0.5 + pos: -25.5,-40.5 parent: 30 - - uid: 9187 + - uid: 8296 components: - type: Transform - pos: 7.5,-29.5 + pos: -13.5,-45.5 parent: 30 - - uid: 9234 + - uid: 8300 components: - type: Transform - pos: 3.5,-40.5 + pos: -4.5,-38.5 parent: 30 - - uid: 9316 + - uid: 8504 components: - type: Transform - pos: 14.5,-18.5 + pos: 6.5,-0.5 parent: 30 - - uid: 9428 + - uid: 9187 components: - type: Transform - pos: -21.5,-44.5 + pos: 7.5,-29.5 parent: 30 - uid: 10985 components: @@ -60090,11 +58922,6 @@ entities: - type: Transform pos: 19.5,0.5 parent: 30 - - uid: 12772 - components: - - type: Transform - pos: 12.5,12.5 - parent: 30 - uid: 12773 components: - type: Transform @@ -60105,6 +58932,11 @@ entities: - type: Transform pos: 20.5,23.5 parent: 30 + - uid: 13078 + components: + - type: Transform + pos: 18.5,16.5 + parent: 30 - uid: 14217 components: - type: Transform @@ -60120,6 +58952,11 @@ entities: - type: Transform pos: 32.5,39.5 parent: 30 + - uid: 19407 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 30 - uid: 19699 components: - type: Transform @@ -60140,11 +58977,6 @@ entities: - type: Transform pos: 2.5,64.5 parent: 30 - - uid: 22620 - components: - - type: Transform - pos: -26.5,-57.5 - parent: 30 - proto: DisposalYJunction entities: - uid: 6965 @@ -60153,12 +58985,24 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-9.5 parent: 30 + - uid: 13283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 30 - uid: 14077 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 30 + - uid: 19725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 30 - proto: DogBed entities: - uid: 2007 @@ -60205,6 +59049,11 @@ entities: - type: Transform pos: -27.536026,33.455597 parent: 30 + - uid: 15074 + components: + - type: Transform + pos: 3.1450052,20.758205 + parent: 30 - uid: 15078 components: - type: Transform @@ -60215,6 +59064,11 @@ entities: - type: Transform pos: 19.593287,54.456036 parent: 30 + - uid: 15355 + components: + - type: Transform + pos: 3.6301537,20.758205 + parent: 30 - proto: DoorRemoteSecurity entities: - uid: 2429 @@ -60286,10 +59140,10 @@ entities: parent: 30 - proto: DresserChiefEngineerFilled entities: - - uid: 11614 + - uid: 10741 components: - type: Transform - pos: -15.5,-36.5 + pos: -5.5,-33.5 parent: 30 - proto: DresserChiefMedicalOfficerFilled entities: @@ -60598,32 +59452,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 19638 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-49.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 19654 components: - type: Transform @@ -60799,15 +59627,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21331 components: - type: Transform @@ -60834,14 +59653,6 @@ entities: - type: PointLight enabled: True - type: ActiveEmergencyLight - - uid: 21377 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - uid: 21378 components: - type: Transform @@ -60974,82 +59785,28 @@ entities: - type: Transform pos: -32.550377,-19.499231 parent: 30 -- proto: Emitter +- proto: EmitterFlatpack entities: - - uid: 9409 + - uid: 16130 components: - type: Transform - pos: -25.5,-49.5 + pos: -17.734718,-34.28877 parent: 30 - - uid: 9412 + - uid: 18861 components: - type: Transform - pos: -25.5,-50.5 + pos: -17.74916,-34.519756 parent: 30 -- proto: EncryptionKeyCargo - entities: - - uid: 22622 - components: - - type: Transform - parent: 22621 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 22815 - components: - - type: Transform - parent: 22814 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 22817 - components: - - type: Transform - parent: 22816 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 22823 - components: - - type: Transform - parent: 22822 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 22828 - components: - - type: Transform - parent: 22827 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 22826 - components: - - type: Transform - parent: 22825 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 22813 + - uid: 19414 components: - type: Transform - parent: 22812 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 22830 + pos: -17.315872,-34.317642 + parent: 30 + - uid: 20701 components: - type: Transform - parent: 22829 - - type: Physics - canCollide: False + pos: -17.330315,-34.519756 + parent: 30 - proto: ExosuitFabricator entities: - uid: 12799 @@ -61166,36 +59923,11 @@ entities: - type: Transform pos: -26.5,-42.5 parent: 30 - - uid: 9613 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 30 - uid: 9614 components: - type: Transform pos: -4.5,-27.5 parent: 30 - - uid: 9769 - components: - - type: Transform - pos: -15.5,-49.5 - parent: 30 - - uid: 10013 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 30 - - uid: 10014 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 30 - - uid: 12809 - components: - - type: Transform - pos: 20.5,13.5 - parent: 30 - uid: 15868 components: - type: Transform @@ -61216,6 +59948,11 @@ entities: - type: Transform pos: -51.5,22.5 parent: 30 + - uid: 17685 + components: + - type: Transform + pos: 19.5,16.5 + parent: 30 - uid: 21381 components: - type: Transform @@ -61258,6 +59995,21 @@ entities: parent: 30 - type: FaxMachine name: Law Office + - uid: 10199 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 30 + - type: FaxMachine + destinationAddress: Engineering + name: Engineering + - uid: 14477 + components: + - type: Transform + pos: -62.5,-65.5 + parent: 30 + - type: FaxMachine + destinationAddress: Library - uid: 21701 components: - type: Transform @@ -61300,13 +60052,6 @@ entities: parent: 30 - type: FaxMachine name: Psych - - uid: 22435 - components: - - type: Transform - pos: -57.5,-63.5 - parent: 30 - - type: FaxMachine - name: Library - proto: FaxMachineCaptain entities: - uid: 22275 @@ -61369,6 +60114,11 @@ entities: - type: Transform pos: 2.5,34.5 parent: 30 + - uid: 9490 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 30 - uid: 11017 components: - type: Transform @@ -61376,18 +60126,32 @@ entities: parent: 30 - proto: filingCabinetRandom entities: - - uid: 21370 + - uid: 8234 components: - type: Transform - pos: -21.5,32.5 + pos: -15.5,-31.5 parent: 30 - - uid: 22833 + - uid: 21370 components: - type: Transform - pos: -29.5,-63.5 + pos: -21.5,32.5 parent: 30 - proto: FireAlarm entities: + - uid: 829 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 30 + - type: DeviceList + devices: + - 4353 + - 9301 + - 9300 + - 9769 + - 4241 + - 9782 + - 9618 - uid: 1980 components: - type: Transform @@ -61467,69 +60231,80 @@ entities: devices: - 7960 - 7116 - - uid: 17226 + - uid: 13959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-16.5 + rot: 3.141592653589793 rad + pos: -3.5,-42.5 parent: 30 - type: DeviceList devices: - - 17227 - - 15117 - - 15116 - - 13644 - - uid: 20334 + - 19812 + - 19766 + - 19598 + - 10000 + - 11011 + - 19767 + - 19768 + - 9993 + - 11007 + - 19770 + - 19771 + - 11281 + - 11003 + - uid: 13964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + pos: -20.5,-38.5 parent: 30 - type: DeviceList devices: - - 20354 - - 11262 - - 11263 - - 11264 - - uid: 20357 + - 19562 + - 11280 + - 11005 + - 11009 + - 19767 + - 19768 + - 11007 + - 9993 + - uid: 13965 components: - type: Transform - pos: -4.5,-37.5 + rot: -1.5707963267948966 rad + pos: -14.5,-52.5 parent: 30 - type: DeviceList devices: - - 11343 - - 11344 - - 11345 - - 11340 - - 11341 - - 11342 - - 20355 - - uid: 21739 + - 11280 + - 9839 + - 9995 + - uid: 17226 components: - type: Transform - pos: -16.5,-37.5 + rot: 1.5707963267948966 rad + pos: -47.5,-16.5 parent: 30 - type: DeviceList devices: - - 11340 - - 11341 - - 11342 - - 20358 - - uid: 21746 + - 17227 + - 15117 + - 15116 + - 13644 + - uid: 19597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 parent: 30 - type: DeviceList devices: - - 21745 - - 11343 - - 11344 - - 11345 - - 9305 + - 9999 + - 19812 + - 19766 + - 19598 + - 19806 - 9304 + - 9305 - 9306 - uid: 21748 components: @@ -61545,34 +60320,6 @@ entities: - 8626 - 7731 - 21749 - - uid: 21752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 - parent: 30 - - type: DeviceList - devices: - - 21753 - - 9302 - - 9303 - - 9301 - - 9300 - - uid: 21758 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 30 - - type: DeviceList - devices: - - 21759 - - 9303 - - 9302 - - 9301 - - 9300 - - 9307 - - 9308 - - 9309 - uid: 21769 components: - type: Transform @@ -62188,13 +60935,11 @@ entities: parent: 30 - type: DeviceList devices: - - 9161 - 12665 - 12664 - 12666 - 12858 - 13391 - - 22056 - uid: 22060 components: - type: Transform @@ -62341,10 +61086,10 @@ entities: - type: Transform pos: 23.339325,-11.410534 parent: 30 - - uid: 18795 + - uid: 12811 components: - type: Transform - pos: -62.63935,-64.45475 + pos: -52.242584,-60.55653 parent: 30 - uid: 20301 components: @@ -62551,24 +61296,6 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,27.5 parent: 30 - - uid: 11262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 - parent: 30 - - uid: 11263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 30 - - uid: 11264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-43.5 - parent: 30 - uid: 20347 components: - type: Transform @@ -62603,18 +61330,6 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-45.5 parent: 30 - - uid: 20361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-62.5 - parent: 30 - - uid: 20362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-62.5 - parent: 30 - uid: 20383 components: - type: Transform @@ -62654,12 +61369,18 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,7.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 22440 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,8.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - proto: FirelockElectronics entities: - uid: 1642 @@ -62672,6 +61393,11 @@ entities: - type: Transform pos: -28.192276,33.564972 parent: 30 + - uid: 14846 + components: + - type: Transform + pos: 2.6400542,20.579987 + parent: 30 - uid: 19627 components: - type: Transform @@ -62947,6 +61673,16 @@ entities: - type: Transform pos: -37.5,35.5 parent: 30 + - uid: 4241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 4842 components: - type: Transform @@ -63257,11 +61993,6 @@ entities: - type: Transform pos: -3.5,-21.5 parent: 30 - - uid: 9161 - components: - - type: Transform - pos: 14.5,13.5 - parent: 30 - uid: 9202 components: - type: Transform @@ -63272,36 +62003,43 @@ entities: - type: Transform pos: 11.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9301 components: - type: Transform pos: 10.5,-30.5 parent: 30 - - uid: 9302 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 30 - - uid: 9303 - components: - - type: Transform - pos: 11.5,-26.5 - parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9304 components: - type: Transform pos: 1.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9305 components: - type: Transform pos: 0.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9306 components: - type: Transform pos: 2.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 - uid: 9307 components: - type: Transform @@ -63327,11 +62065,50 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 30 + - uid: 9618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 - uid: 9669 components: - type: Transform pos: -10.5,-8.5 parent: 30 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 + - uid: 9782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 + - 829 + - uid: 9839 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - 13965 - uid: 9914 components: - type: Transform @@ -63342,6 +62119,17 @@ entities: - type: Transform pos: -35.5,-28.5 parent: 30 + - uid: 9993 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 - uid: 10394 components: - type: Transform @@ -63352,40 +62140,81 @@ entities: - type: Transform pos: -40.5,8.5 parent: 30 - - uid: 11275 + - uid: 11003 components: - type: Transform - pos: 18.5,24.5 + pos: -7.5,-37.5 parent: 30 - - uid: 11340 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 11005 components: - type: Transform - pos: -14.5,-41.5 + pos: -23.5,-45.5 parent: 30 - - uid: 11341 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 11007 components: - type: Transform - pos: -14.5,-40.5 + pos: -14.5,-43.5 parent: 30 - - uid: 11342 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 11009 components: - type: Transform - pos: -14.5,-39.5 + pos: -26.5,-41.5 parent: 30 - - uid: 11343 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - uid: 11011 components: - type: Transform - pos: -0.5,-41.5 + pos: -12.5,-36.5 parent: 30 - - uid: 11344 + - type: DeviceNetwork + deviceLists: + - 13966 + - 13959 + - uid: 11275 components: - type: Transform - pos: -0.5,-40.5 + pos: 18.5,24.5 parent: 30 - - uid: 11345 + - uid: 11280 components: - type: Transform - pos: -0.5,-39.5 + pos: -17.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - 13965 + - 13958 + - 13964 + - uid: 11281 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13959 + - uid: 11282 + components: + - type: Transform + pos: -2.5,-36.5 parent: 30 - uid: 11705 components: @@ -63472,21 +62301,39 @@ entities: - type: Transform pos: 21.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12665 components: - type: Transform pos: 22.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12666 components: - type: Transform pos: 23.5,17.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 12858 components: - type: Transform pos: 30.5,7.5 parent: 30 + - uid: 13073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 13391 components: - type: Transform @@ -63582,6 +62429,24 @@ entities: - type: Transform pos: -52.5,11.5 parent: 30 + - uid: 17724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 17912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 18069 components: - type: Transform @@ -63592,16 +62457,118 @@ entities: - type: Transform pos: -74.5,-55.5 parent: 30 + - uid: 18212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - uid: 18601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - uid: 19590 components: - type: Transform pos: -29.5,-37.5 parent: 30 + - uid: 19598 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 + - uid: 19630 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 - uid: 19741 components: - type: Transform pos: -20.5,-25.5 parent: 30 + - uid: 19766 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 + - uid: 19767 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 19768 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - 13964 + - 13957 + - 13959 + - uid: 19770 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 19771 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - uid: 19806 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19597 + - 9996 + - uid: 19812 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - 13959 + - 19597 - uid: 20051 components: - type: Transform @@ -63738,10 +62705,10 @@ entities: - type: Transform pos: -32.45644,29.55175 parent: 30 - - uid: 9445 + - uid: 14828 components: - type: Transform - pos: -23.99604,-39.42414 + pos: -21.50836,-48.326485 parent: 30 - uid: 15978 components: @@ -63803,11 +62770,6 @@ entities: - type: Transform pos: -39.51754,18.309746 parent: 30 - - uid: 22433 - components: - - type: Transform - pos: 0.84980106,-44.601856 - parent: 30 - uid: 22434 components: - type: Transform @@ -63845,6 +62807,22 @@ entities: parent: 30 - type: Fixtures fixtures: {} + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 30 + - type: Fixtures + fixtures: {} + - uid: 14330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 30 + - type: Fixtures + fixtures: {} - uid: 20458 components: - type: Transform @@ -63873,13 +62851,6 @@ entities: parent: 30 - type: Fixtures fixtures: {} - - uid: 22542 - components: - - type: Transform - pos: 18.5,14.5 - parent: 30 - - type: Fixtures - fixtures: {} - proto: FloorTileItemEighties entities: - uid: 15081 @@ -64084,11 +63055,6 @@ entities: - type: Transform pos: 46.4532,20.604744 parent: 30 - - uid: 16163 - components: - - type: Transform - pos: 52.484413,22.604744 - parent: 30 - proto: FoodBoxDonut entities: - uid: 2168 @@ -64435,19 +63401,19 @@ entities: - uid: 491 components: - type: Transform - pos: -14.547203,7.8102264 + pos: -15.331403,8.303028 parent: 30 - proto: GasAnalyzer entities: - - uid: 9443 + - uid: 9369 components: - type: Transform - pos: 5.410018,-23.577772 + pos: -2.4162815,-45.696774 parent: 30 - - uid: 10011 + - uid: 9443 components: - type: Transform - pos: -13.400943,-44.52121 + pos: 5.410018,-23.577772 parent: 30 - uid: 13344 components: @@ -64470,7 +63436,7 @@ entities: pos: -32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasMinerCarbonDioxide entities: - uid: 8691 @@ -64565,36 +63531,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,16.5 parent: 30 - - uid: 3125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-57.5 - parent: 30 - - uid: 3126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-58.5 - parent: 30 - - uid: 3221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-59.5 - parent: 30 - - uid: 7099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-57.5 - parent: 30 - - uid: 7100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-58.5 - parent: 30 - uid: 8566 components: - type: Transform @@ -64650,12 +63586,20 @@ entities: parent: 30 - type: AtmosPipeColor color: '#947507FF' - - uid: 9622 + - uid: 9218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-59.5 + rot: 3.141592653589793 rad + pos: 2.5,-56.5 parent: 30 + - uid: 9293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-56.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 12869 components: - type: Transform @@ -64674,29 +63618,11 @@ entities: parent: 30 - proto: GasPipeBend entities: - - uid: 866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-59.5 - parent: 30 - - uid: 867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-59.5 - parent: 30 - - uid: 906 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 30 - - uid: 916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-59.5 + pos: -53.5,-62.5 parent: 30 - uid: 939 components: @@ -64705,7 +63631,7 @@ entities: pos: -48.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 941 components: - type: Transform @@ -64713,21 +63639,21 @@ entities: pos: -53.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 943 components: - type: Transform pos: -47.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 946 components: - type: Transform pos: -48.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2474 components: - type: Transform @@ -64735,7 +63661,7 @@ entities: pos: -50.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2475 components: - type: Transform @@ -64743,14 +63669,14 @@ entities: pos: -49.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2576 components: - type: Transform pos: -33.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2577 components: - type: Transform @@ -64758,7 +63684,7 @@ entities: pos: -31.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2578 components: - type: Transform @@ -64766,7 +63692,7 @@ entities: pos: -29.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2579 components: - type: Transform @@ -64774,7 +63700,7 @@ entities: pos: -35.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2580 components: - type: Transform @@ -64782,14 +63708,14 @@ entities: pos: -35.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2581 components: - type: Transform pos: -29.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2681 components: - type: Transform @@ -64797,7 +63723,7 @@ entities: pos: -50.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2700 components: - type: Transform @@ -64805,14 +63731,14 @@ entities: pos: -50.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2701 components: - type: Transform pos: -46.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2711 components: - type: Transform @@ -64820,7 +63746,7 @@ entities: pos: -47.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2712 components: - type: Transform @@ -64828,7 +63754,7 @@ entities: pos: -51.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2725 components: - type: Transform @@ -64836,21 +63762,21 @@ entities: pos: -51.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2726 components: - type: Transform pos: -47.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2741 components: - type: Transform pos: -28.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2774 components: - type: Transform @@ -64858,7 +63784,7 @@ entities: pos: -36.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3039 components: - type: Transform @@ -64866,14 +63792,14 @@ entities: pos: -31.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3040 components: - type: Transform pos: -25.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3078 components: - type: Transform @@ -64881,7 +63807,7 @@ entities: pos: -40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3114 components: - type: Transform @@ -64889,19 +63815,14 @@ entities: pos: -47.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3116 components: - type: Transform pos: -44.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3152 - components: - - type: Transform - pos: -2.5,-56.5 - parent: 30 + color: '#0000FFFF' - uid: 3271 components: - type: Transform @@ -64909,7 +63830,7 @@ entities: pos: -49.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3272 components: - type: Transform @@ -64917,21 +63838,21 @@ entities: pos: -51.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3286 components: - type: Transform pos: -57.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3307 components: - type: Transform pos: -49.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3336 components: - type: Transform @@ -64939,15 +63860,7 @@ entities: pos: -16.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3356 components: - type: Transform @@ -64955,29 +63868,21 @@ entities: pos: -23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 3368 components: - type: Transform pos: -24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3372 components: - type: Transform pos: -23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3373 components: - type: Transform @@ -64985,7 +63890,7 @@ entities: pos: -26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3375 components: - type: Transform @@ -64993,7 +63898,22 @@ entities: pos: -24.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 4141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4424 + components: + - type: Transform + pos: -24.5,7.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 6148 components: - type: Transform @@ -65001,28 +63921,28 @@ entities: pos: -14.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6158 components: - type: Transform pos: -4.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6198 components: - type: Transform pos: -3.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6200 components: - type: Transform pos: -7.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6201 components: - type: Transform @@ -65030,7 +63950,7 @@ entities: pos: -11.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6202 components: - type: Transform @@ -65038,7 +63958,7 @@ entities: pos: -11.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6203 components: - type: Transform @@ -65046,7 +63966,7 @@ entities: pos: -15.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6250 components: - type: Transform @@ -65054,7 +63974,7 @@ entities: pos: -18.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6251 components: - type: Transform @@ -65062,14 +63982,14 @@ entities: pos: -18.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6255 components: - type: Transform pos: -21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6260 components: - type: Transform @@ -65077,22 +63997,14 @@ entities: pos: -26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6262 components: - type: Transform pos: -26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6789 components: - type: Transform @@ -65104,14 +64016,14 @@ entities: pos: -17.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6936 components: - type: Transform pos: -18.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6961 components: - type: Transform @@ -65119,7 +64031,7 @@ entities: pos: -18.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7001 components: - type: Transform @@ -65138,12 +64050,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-11.5 parent: 30 - - uid: 7098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 30 - uid: 7113 components: - type: Transform @@ -65151,33 +64057,14 @@ entities: pos: -30.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7123 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-59.5 - parent: 30 - - uid: 7148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-59.5 - parent: 30 + color: '#0000FFFF' - uid: 7154 components: - type: Transform pos: -30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7204 components: - type: Transform @@ -65185,29 +64072,7 @@ entities: pos: -34.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7224 - components: - - type: Transform - pos: -3.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7230 - components: - - type: Transform - pos: -9.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7353 components: - type: Transform @@ -65215,14 +64080,14 @@ entities: pos: -19.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7376 components: - type: Transform pos: -5.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7408 components: - type: Transform @@ -65230,29 +64095,13 @@ entities: pos: -19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7564 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-12.5 parent: 30 - - uid: 7667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7762 components: - type: Transform @@ -65260,7 +64109,7 @@ entities: pos: -29.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7887 components: - type: Transform @@ -65274,7 +64123,7 @@ entities: pos: -32.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8063 components: - type: Transform @@ -65282,7 +64131,7 @@ entities: pos: -28.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8076 components: - type: Transform @@ -65290,7 +64139,7 @@ entities: pos: -20.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8219 components: - type: Transform @@ -65298,7 +64147,7 @@ entities: pos: -24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8220 components: - type: Transform @@ -65306,23 +64155,7 @@ entities: pos: -22.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 8576 components: - type: Transform @@ -65378,7 +64211,7 @@ entities: pos: 16.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8786 components: - type: Transform @@ -65386,14 +64219,14 @@ entities: pos: 16.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8868 components: - type: Transform pos: 7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8869 components: - type: Transform @@ -65401,7 +64234,7 @@ entities: pos: 7.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8871 components: - type: Transform @@ -65409,14 +64242,14 @@ entities: pos: 11.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8911 components: - type: Transform pos: 11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8944 components: - type: Transform @@ -65424,21 +64257,21 @@ entities: pos: 13.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8966 components: - type: Transform pos: 13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8978 components: - type: Transform pos: 9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9023 components: - type: Transform @@ -65453,45 +64286,68 @@ entities: pos: -13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9067 + color: '#0000FFFF' + - uid: 9063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-52.5 + pos: 6.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#EB9834FF' + - uid: 9213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9262 components: - type: Transform pos: 21.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9620 + color: '#FF0000FF' + - uid: 9295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-39.5 + pos: -4.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9675 + color: '#FF0000FF' + - uid: 9428 components: - type: Transform - pos: -2.5,-51.5 + pos: -11.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9683 + color: '#FF0000FF' + - uid: 9436 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-53.5 + pos: -13.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' + - uid: 9653 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' + - uid: 9681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9750 components: - type: Transform @@ -65499,7 +64355,7 @@ entities: pos: -3.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9751 components: - type: Transform @@ -65507,7 +64363,7 @@ entities: pos: -3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9752 components: - type: Transform @@ -65515,69 +64371,61 @@ entities: pos: -1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9770 components: - type: Transform pos: 0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9869 + color: '#FF0000FF' + - uid: 9783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 + rot: 1.5707963267948966 rad + pos: 6.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9870 + color: '#EB9834FF' + - uid: 9790 components: - type: Transform - pos: 3.5,-49.5 + rot: 3.141592653589793 rad + pos: -5.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9883 + color: '#FF0000FF' + - uid: 9813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-54.5 + pos: 8.5,-46.5 parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9898 + - uid: 9892 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-46.5 + pos: -24.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9900 + color: '#0000FFFF' + - uid: 9898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-38.5 + pos: -22.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9901 + color: '#FF0000FF' + - uid: 9919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 + pos: -11.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#0000FFFF' - uid: 9983 components: - type: Transform @@ -65585,55 +64433,39 @@ entities: pos: 7.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11090 + color: '#0000FFFF' + - uid: 10604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-41.5 + rot: 3.141592653589793 rad + pos: -1.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11101 + color: '#0000FFFF' + - uid: 10606 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-29.5 + pos: -12.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11102 + color: '#0000FFFF' + - uid: 10636 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-30.5 + pos: 0.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11117 + color: '#FF0000FF' + - uid: 11130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-41.5 + pos: -1.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 11167 components: - type: Transform @@ -65649,21 +64481,29 @@ entities: pos: 11.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11191 components: - type: Transform pos: 12.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 11272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11668 components: - type: Transform pos: 34.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11778 components: - type: Transform @@ -65671,14 +64511,14 @@ entities: pos: 30.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11873 components: - type: Transform pos: 33.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11874 components: - type: Transform @@ -65686,14 +64526,14 @@ entities: pos: 5.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11982 components: - type: Transform pos: 21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12002 components: - type: Transform @@ -65701,7 +64541,7 @@ entities: pos: 33.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12493 components: - type: Transform @@ -65709,7 +64549,7 @@ entities: pos: 9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12514 components: - type: Transform @@ -65717,7 +64557,7 @@ entities: pos: 21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12515 components: - type: Transform @@ -65725,14 +64565,14 @@ entities: pos: 23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12588 components: - type: Transform pos: 26.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12589 components: - type: Transform @@ -65740,7 +64580,7 @@ entities: pos: 26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12610 components: - type: Transform @@ -65748,7 +64588,7 @@ entities: pos: 27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12618 components: - type: Transform @@ -65756,7 +64596,22 @@ entities: pos: 26.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 12639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12659 + components: + - type: Transform + pos: -52.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12750 components: - type: Transform @@ -65769,6 +64624,14 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,11.5 parent: 30 + - uid: 12831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 12883 components: - type: Transform @@ -65776,7 +64639,7 @@ entities: pos: 21.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12903 components: - type: Transform @@ -65784,7 +64647,7 @@ entities: pos: 43.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12909 components: - type: Transform @@ -65792,7 +64655,7 @@ entities: pos: 42.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12926 components: - type: Transform @@ -65806,14 +64669,14 @@ entities: pos: 23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12995 components: - type: Transform pos: 18.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12996 components: - type: Transform @@ -65821,7 +64684,7 @@ entities: pos: 18.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13016 components: - type: Transform @@ -65829,7 +64692,7 @@ entities: pos: 12.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13024 components: - type: Transform @@ -65837,7 +64700,7 @@ entities: pos: 12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13036 components: - type: Transform @@ -65845,7 +64708,7 @@ entities: pos: 21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13038 components: - type: Transform @@ -65853,14 +64716,14 @@ entities: pos: 17.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13039 components: - type: Transform pos: 17.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13341 components: - type: Transform @@ -65868,14 +64731,14 @@ entities: pos: 40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13752 components: - type: Transform pos: 31.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13767 components: - type: Transform @@ -65883,7 +64746,7 @@ entities: pos: 31.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13791 components: - type: Transform @@ -65891,7 +64754,23 @@ entities: pos: 29.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14978 components: - type: Transform @@ -65899,7 +64778,7 @@ entities: pos: 16.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15452 components: - type: Transform @@ -65907,7 +64786,7 @@ entities: pos: 52.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15888 components: - type: Transform @@ -65915,7 +64794,7 @@ entities: pos: 42.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15890 components: - type: Transform @@ -65923,7 +64802,7 @@ entities: pos: 32.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15963 components: - type: Transform @@ -65931,7 +64810,7 @@ entities: pos: 42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16099 components: - type: Transform @@ -65939,7 +64818,34 @@ entities: pos: 32.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 17723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-62.5 + parent: 30 + - uid: 17729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-65.5 + parent: 30 + - uid: 18071 + components: + - type: Transform + pos: 16.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18385 components: - type: Transform @@ -65947,7 +64853,7 @@ entities: pos: -45.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18386 components: - type: Transform @@ -65955,7 +64861,7 @@ entities: pos: -62.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18415 components: - type: Transform @@ -65963,7 +64869,7 @@ entities: pos: -44.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18447 components: - type: Transform @@ -65971,7 +64877,7 @@ entities: pos: -63.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18478 components: - type: Transform @@ -65979,7 +64885,7 @@ entities: pos: -62.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18479 components: - type: Transform @@ -65987,7 +64893,7 @@ entities: pos: -61.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18484 components: - type: Transform @@ -65995,21 +64901,21 @@ entities: pos: -65.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18485 components: - type: Transform pos: -58.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18498 components: - type: Transform pos: -62.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18513 components: - type: Transform @@ -66017,7 +64923,7 @@ entities: pos: -78.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18608 components: - type: Transform @@ -66025,15 +64931,7 @@ entities: pos: -56.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 18612 components: - type: Transform @@ -66041,7 +64939,7 @@ entities: pos: -68.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18613 components: - type: Transform @@ -66049,7 +64947,7 @@ entities: pos: -67.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18621 components: - type: Transform @@ -66057,7 +64955,7 @@ entities: pos: -58.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18648 components: - type: Transform @@ -66065,7 +64963,7 @@ entities: pos: -79.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18661 components: - type: Transform @@ -66073,7 +64971,7 @@ entities: pos: -77.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18743 components: - type: Transform @@ -66081,21 +64979,75 @@ entities: pos: -76.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18763 + color: '#FF0000FF' + - uid: 20642 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-65.5 + pos: 7.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18779 + color: '#03FCD3FF' + - uid: 20645 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,-64.5 + pos: -4.5,-52.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-50.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20671 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-48.5 + parent: 30 + - uid: 20674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-49.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21262 components: - type: Transform @@ -66103,14 +65055,14 @@ entities: pos: 21.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21269 components: - type: Transform pos: 27.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21270 components: - type: Transform @@ -66118,7 +65070,7 @@ entities: pos: 27.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21986 components: - type: Transform @@ -66126,7 +65078,7 @@ entities: pos: -0.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22264 components: - type: Transform @@ -66134,30 +65086,14 @@ entities: pos: 42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22266 components: - type: Transform pos: 43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPipeFourway entities: - uid: 2101 @@ -66166,91 +65102,91 @@ entities: pos: 32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2430 components: - type: Transform pos: -36.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2702 components: - type: Transform pos: -48.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2770 components: - type: Transform pos: -36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2805 components: - type: Transform pos: -10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2807 components: - type: Transform pos: -3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2843 components: - type: Transform pos: 8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2883 components: - type: Transform pos: -31.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2909 components: - type: Transform pos: -36.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2910 components: - type: Transform pos: -34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2950 components: - type: Transform pos: -1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2957 components: - type: Transform pos: 5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2986 components: - type: Transform pos: 10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7002 components: - type: Transform @@ -66262,14 +65198,14 @@ entities: pos: -29.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7086 components: - type: Transform pos: -34.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7603 components: - type: Transform @@ -66281,105 +65217,105 @@ entities: pos: -28.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8779 components: - type: Transform pos: 10.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8845 components: - type: Transform pos: 11.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8866 components: - type: Transform pos: 5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8870 components: - type: Transform pos: 13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8955 components: - type: Transform pos: 11.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11078 + color: '#FF0000FF' + - uid: 10136 components: - type: Transform - pos: -8.5,-39.5 + pos: -12.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11126 + color: '#0000FFFF' + - uid: 10439 components: - type: Transform - pos: -6.5,-41.5 + pos: -6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11876 components: - type: Transform pos: 21.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11937 components: - type: Transform pos: 20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12001 components: - type: Transform pos: 30.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12541 components: - type: Transform pos: 21.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12872 components: - type: Transform pos: 23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12886 components: - type: Transform pos: 21.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13034 + color: '#FF0000FF' + - uid: 14462 components: - type: Transform pos: 21.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 239 @@ -66389,7 +65325,7 @@ entities: pos: -50.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 475 components: - type: Transform @@ -66397,12 +65333,7 @@ entities: pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 845 - components: - - type: Transform - pos: -9.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 874 components: - type: Transform @@ -66410,7 +65341,7 @@ entities: pos: -52.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 875 components: - type: Transform @@ -66418,7 +65349,7 @@ entities: pos: -50.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 877 components: - type: Transform @@ -66426,12 +65357,7 @@ entities: pos: -51.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 908 - components: - - type: Transform - pos: -12.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 909 components: - type: Transform @@ -66439,12 +65365,7 @@ entities: pos: -48.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 915 - components: - - type: Transform - pos: -12.5,-57.5 - parent: 30 + color: '#0000FFFF' - uid: 935 components: - type: Transform @@ -66452,7 +65373,7 @@ entities: pos: -47.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 940 components: - type: Transform @@ -66460,7 +65381,7 @@ entities: pos: -46.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 942 components: - type: Transform @@ -66468,28 +65389,28 @@ entities: pos: -49.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 944 components: - type: Transform pos: -48.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 947 components: - type: Transform pos: -45.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 964 components: - type: Transform pos: -44.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1076 components: - type: Transform @@ -66497,7 +65418,7 @@ entities: pos: -47.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1307 components: - type: Transform @@ -66505,7 +65426,7 @@ entities: pos: -52.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1308 components: - type: Transform @@ -66513,14 +65434,14 @@ entities: pos: -51.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1415 components: - type: Transform pos: -47.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 1929 components: - type: Transform @@ -66528,14 +65449,14 @@ entities: pos: -31.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2100 components: - type: Transform pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2432 components: - type: Transform @@ -66543,7 +65464,7 @@ entities: pos: -36.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2433 components: - type: Transform @@ -66551,7 +65472,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2434 components: - type: Transform @@ -66559,7 +65480,7 @@ entities: pos: -36.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2435 components: - type: Transform @@ -66567,7 +65488,7 @@ entities: pos: -36.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2436 components: - type: Transform @@ -66575,7 +65496,7 @@ entities: pos: -34.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2437 components: - type: Transform @@ -66583,7 +65504,7 @@ entities: pos: -34.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2438 components: - type: Transform @@ -66591,7 +65512,7 @@ entities: pos: -36.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2439 components: - type: Transform @@ -66599,7 +65520,7 @@ entities: pos: -34.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2443 components: - type: Transform @@ -66607,7 +65528,7 @@ entities: pos: -35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2444 components: - type: Transform @@ -66615,7 +65536,7 @@ entities: pos: -36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2445 components: - type: Transform @@ -66623,7 +65544,7 @@ entities: pos: -37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2446 components: - type: Transform @@ -66631,7 +65552,7 @@ entities: pos: -38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2447 components: - type: Transform @@ -66639,7 +65560,7 @@ entities: pos: -39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2448 components: - type: Transform @@ -66647,7 +65568,7 @@ entities: pos: -37.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2449 components: - type: Transform @@ -66655,7 +65576,7 @@ entities: pos: -38.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2450 components: - type: Transform @@ -66663,7 +65584,7 @@ entities: pos: -39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2455 components: - type: Transform @@ -66671,7 +65592,7 @@ entities: pos: -40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2457 components: - type: Transform @@ -66679,7 +65600,7 @@ entities: pos: -40.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2460 components: - type: Transform @@ -66687,7 +65608,7 @@ entities: pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2461 components: - type: Transform @@ -66695,7 +65616,7 @@ entities: pos: -44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2462 components: - type: Transform @@ -66703,7 +65624,7 @@ entities: pos: -43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2464 components: - type: Transform @@ -66711,7 +65632,7 @@ entities: pos: -46.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2465 components: - type: Transform @@ -66719,7 +65640,7 @@ entities: pos: -47.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2466 components: - type: Transform @@ -66727,7 +65648,7 @@ entities: pos: -48.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2467 components: - type: Transform @@ -66735,7 +65656,7 @@ entities: pos: -43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2468 components: - type: Transform @@ -66743,7 +65664,7 @@ entities: pos: -44.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2469 components: - type: Transform @@ -66751,7 +65672,7 @@ entities: pos: -45.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2470 components: - type: Transform @@ -66759,7 +65680,7 @@ entities: pos: -46.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2471 components: - type: Transform @@ -66767,7 +65688,7 @@ entities: pos: -47.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2472 components: - type: Transform @@ -66775,7 +65696,7 @@ entities: pos: -48.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2473 components: - type: Transform @@ -66783,105 +65704,105 @@ entities: pos: -49.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2476 components: - type: Transform pos: -49.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2477 components: - type: Transform pos: -49.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2478 components: - type: Transform pos: -50.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2479 components: - type: Transform pos: -50.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2480 components: - type: Transform pos: -50.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2481 components: - type: Transform pos: -50.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2484 components: - type: Transform pos: -41.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2485 components: - type: Transform pos: -41.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2486 components: - type: Transform pos: -42.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2487 components: - type: Transform pos: -42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2488 components: - type: Transform pos: -42.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2489 components: - type: Transform pos: -42.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2494 components: - type: Transform pos: -36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2495 components: - type: Transform pos: -36.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2498 components: - type: Transform @@ -66889,7 +65810,7 @@ entities: pos: -34.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2499 components: - type: Transform @@ -66897,7 +65818,7 @@ entities: pos: -34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2500 components: - type: Transform @@ -66905,7 +65826,7 @@ entities: pos: -34.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2501 components: - type: Transform @@ -66913,7 +65834,7 @@ entities: pos: -34.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2502 components: - type: Transform @@ -66921,7 +65842,7 @@ entities: pos: -36.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2505 components: - type: Transform @@ -66929,7 +65850,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2506 components: - type: Transform @@ -66937,7 +65858,7 @@ entities: pos: -36.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2511 components: - type: Transform @@ -66945,7 +65866,7 @@ entities: pos: -34.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2514 components: - type: Transform @@ -66953,7 +65874,7 @@ entities: pos: -32.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2515 components: - type: Transform @@ -66961,7 +65882,7 @@ entities: pos: -31.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2516 components: - type: Transform @@ -66969,7 +65890,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2517 components: - type: Transform @@ -66977,7 +65898,7 @@ entities: pos: -31.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2518 components: - type: Transform @@ -66985,7 +65906,7 @@ entities: pos: -33.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2522 components: - type: Transform @@ -66993,7 +65914,7 @@ entities: pos: -31.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2528 components: - type: Transform @@ -67001,7 +65922,7 @@ entities: pos: -34.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2529 components: - type: Transform @@ -67009,7 +65930,7 @@ entities: pos: -35.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2530 components: - type: Transform @@ -67017,7 +65938,7 @@ entities: pos: -36.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2531 components: - type: Transform @@ -67025,7 +65946,7 @@ entities: pos: -37.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2533 components: - type: Transform @@ -67033,7 +65954,7 @@ entities: pos: -39.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2534 components: - type: Transform @@ -67041,7 +65962,7 @@ entities: pos: -32.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2535 components: - type: Transform @@ -67049,7 +65970,7 @@ entities: pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2536 components: - type: Transform @@ -67057,7 +65978,7 @@ entities: pos: -34.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2537 components: - type: Transform @@ -67065,7 +65986,7 @@ entities: pos: -35.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2538 components: - type: Transform @@ -67073,7 +65994,7 @@ entities: pos: -36.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2539 components: - type: Transform @@ -67081,7 +66002,7 @@ entities: pos: -37.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2540 components: - type: Transform @@ -67089,7 +66010,7 @@ entities: pos: -38.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2541 components: - type: Transform @@ -67097,7 +66018,7 @@ entities: pos: -39.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2543 components: - type: Transform @@ -67105,7 +66026,7 @@ entities: pos: -40.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2546 components: - type: Transform @@ -67113,7 +66034,7 @@ entities: pos: -38.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2547 components: - type: Transform @@ -67121,7 +66042,7 @@ entities: pos: -40.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2548 components: - type: Transform @@ -67129,7 +66050,7 @@ entities: pos: -38.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2549 components: - type: Transform @@ -67137,7 +66058,7 @@ entities: pos: -38.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2550 components: - type: Transform @@ -67145,49 +66066,49 @@ entities: pos: -40.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2555 components: - type: Transform pos: -33.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2556 components: - type: Transform pos: -33.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2557 components: - type: Transform pos: -33.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2558 components: - type: Transform pos: -31.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2559 components: - type: Transform pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2560 components: - type: Transform pos: -31.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2561 components: - type: Transform @@ -67195,7 +66116,7 @@ entities: pos: -32.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2562 components: - type: Transform @@ -67203,7 +66124,7 @@ entities: pos: -31.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2563 components: - type: Transform @@ -67211,7 +66132,7 @@ entities: pos: -30.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2564 components: - type: Transform @@ -67219,7 +66140,7 @@ entities: pos: -29.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2565 components: - type: Transform @@ -67227,7 +66148,7 @@ entities: pos: -28.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2566 components: - type: Transform @@ -67235,7 +66156,7 @@ entities: pos: -27.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2567 components: - type: Transform @@ -67243,7 +66164,7 @@ entities: pos: -26.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2568 components: - type: Transform @@ -67251,7 +66172,7 @@ entities: pos: -30.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2569 components: - type: Transform @@ -67259,7 +66180,7 @@ entities: pos: -29.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2570 components: - type: Transform @@ -67267,7 +66188,7 @@ entities: pos: -28.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2571 components: - type: Transform @@ -67275,7 +66196,7 @@ entities: pos: -27.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2572 components: - type: Transform @@ -67283,7 +66204,7 @@ entities: pos: -26.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2575 components: - type: Transform @@ -67291,7 +66212,7 @@ entities: pos: -33.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2584 components: - type: Transform @@ -67299,7 +66220,7 @@ entities: pos: -29.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2585 components: - type: Transform @@ -67307,7 +66228,7 @@ entities: pos: -35.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2586 components: - type: Transform @@ -67315,7 +66236,7 @@ entities: pos: -35.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2587 components: - type: Transform @@ -67323,7 +66244,7 @@ entities: pos: -35.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2588 components: - type: Transform @@ -67331,7 +66252,7 @@ entities: pos: -29.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2589 components: - type: Transform @@ -67339,7 +66260,7 @@ entities: pos: -29.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2590 components: - type: Transform @@ -67347,7 +66268,7 @@ entities: pos: -30.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2591 components: - type: Transform @@ -67355,91 +66276,91 @@ entities: pos: -34.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2602 components: - type: Transform pos: -46.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2603 components: - type: Transform pos: -48.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2604 components: - type: Transform pos: -48.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2605 components: - type: Transform pos: -48.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2606 components: - type: Transform pos: -44.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2607 components: - type: Transform pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2608 components: - type: Transform pos: -44.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2609 components: - type: Transform pos: -42.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2610 components: - type: Transform pos: -40.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2611 components: - type: Transform pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2612 components: - type: Transform pos: -40.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2613 components: - type: Transform pos: -38.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2614 components: - type: Transform @@ -67447,7 +66368,7 @@ entities: pos: -35.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2615 components: - type: Transform @@ -67455,7 +66376,7 @@ entities: pos: -36.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2616 components: - type: Transform @@ -67463,7 +66384,7 @@ entities: pos: -37.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2617 components: - type: Transform @@ -67471,7 +66392,7 @@ entities: pos: -39.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2618 components: - type: Transform @@ -67479,7 +66400,7 @@ entities: pos: -40.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2620 components: - type: Transform @@ -67487,7 +66408,7 @@ entities: pos: -43.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2621 components: - type: Transform @@ -67495,7 +66416,7 @@ entities: pos: -44.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2622 components: - type: Transform @@ -67503,7 +66424,7 @@ entities: pos: -45.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2623 components: - type: Transform @@ -67511,7 +66432,7 @@ entities: pos: -37.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2624 components: - type: Transform @@ -67519,7 +66440,7 @@ entities: pos: -38.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2625 components: - type: Transform @@ -67527,7 +66448,7 @@ entities: pos: -39.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2626 components: - type: Transform @@ -67535,7 +66456,7 @@ entities: pos: -41.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2627 components: - type: Transform @@ -67543,7 +66464,7 @@ entities: pos: -42.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2629 components: - type: Transform @@ -67551,7 +66472,7 @@ entities: pos: -45.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2630 components: - type: Transform @@ -67559,7 +66480,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2631 components: - type: Transform @@ -67567,7 +66488,7 @@ entities: pos: -47.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2632 components: - type: Transform @@ -67575,7 +66496,7 @@ entities: pos: -46.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2633 components: - type: Transform @@ -67583,7 +66504,7 @@ entities: pos: -46.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2634 components: - type: Transform @@ -67591,7 +66512,7 @@ entities: pos: -46.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2635 components: - type: Transform @@ -67599,7 +66520,7 @@ entities: pos: -46.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2636 components: - type: Transform @@ -67607,7 +66528,7 @@ entities: pos: -48.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2637 components: - type: Transform @@ -67615,7 +66536,7 @@ entities: pos: -48.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2649 components: - type: Transform @@ -67623,7 +66544,7 @@ entities: pos: -48.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2650 components: - type: Transform @@ -67631,7 +66552,7 @@ entities: pos: -48.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2651 components: - type: Transform @@ -67639,7 +66560,7 @@ entities: pos: -46.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2652 components: - type: Transform @@ -67647,7 +66568,7 @@ entities: pos: -46.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2653 components: - type: Transform @@ -67655,7 +66576,7 @@ entities: pos: -48.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2655 components: - type: Transform @@ -67663,7 +66584,7 @@ entities: pos: -46.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2656 components: - type: Transform @@ -67671,7 +66592,7 @@ entities: pos: -46.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2657 components: - type: Transform @@ -67679,7 +66600,7 @@ entities: pos: -46.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2660 components: - type: Transform @@ -67687,7 +66608,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2661 components: - type: Transform @@ -67695,7 +66616,7 @@ entities: pos: -48.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2663 components: - type: Transform @@ -67703,7 +66624,7 @@ entities: pos: -48.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2664 components: - type: Transform @@ -67711,7 +66632,7 @@ entities: pos: -46.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2665 components: - type: Transform @@ -67719,7 +66640,7 @@ entities: pos: -46.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2666 components: - type: Transform @@ -67727,7 +66648,7 @@ entities: pos: -48.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2671 components: - type: Transform @@ -67735,7 +66656,7 @@ entities: pos: -49.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2672 components: - type: Transform @@ -67743,7 +66664,7 @@ entities: pos: -47.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2673 components: - type: Transform @@ -67751,7 +66672,7 @@ entities: pos: -48.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2674 components: - type: Transform @@ -67759,7 +66680,7 @@ entities: pos: -49.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2678 components: - type: Transform @@ -67767,7 +66688,7 @@ entities: pos: -47.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2679 components: - type: Transform @@ -67775,7 +66696,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2680 components: - type: Transform @@ -67783,7 +66704,7 @@ entities: pos: -49.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2682 components: - type: Transform @@ -67791,7 +66712,7 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2683 components: - type: Transform @@ -67799,7 +66720,7 @@ entities: pos: -46.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2684 components: - type: Transform @@ -67807,7 +66728,7 @@ entities: pos: -46.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2685 components: - type: Transform @@ -67815,7 +66736,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2686 components: - type: Transform @@ -67823,7 +66744,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2687 components: - type: Transform @@ -67831,77 +66752,77 @@ entities: pos: -50.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2690 components: - type: Transform pos: -50.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2691 components: - type: Transform pos: -46.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2692 components: - type: Transform pos: -46.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2693 components: - type: Transform pos: -46.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2694 components: - type: Transform pos: -46.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2695 components: - type: Transform pos: -46.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2696 components: - type: Transform pos: -50.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2697 components: - type: Transform pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2698 components: - type: Transform pos: -50.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2699 components: - type: Transform pos: -50.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2703 components: - type: Transform @@ -67909,7 +66830,7 @@ entities: pos: -49.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2704 components: - type: Transform @@ -67917,7 +66838,7 @@ entities: pos: -47.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2710 components: - type: Transform @@ -67925,7 +66846,7 @@ entities: pos: -48.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2713 components: - type: Transform @@ -67933,7 +66854,7 @@ entities: pos: -49.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2714 components: - type: Transform @@ -67941,63 +66862,63 @@ entities: pos: -50.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2715 components: - type: Transform pos: -47.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2716 components: - type: Transform pos: -51.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2719 components: - type: Transform pos: -47.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2720 components: - type: Transform pos: -51.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2721 components: - type: Transform pos: -51.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2722 components: - type: Transform pos: -51.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2723 components: - type: Transform pos: -47.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2724 components: - type: Transform pos: -47.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2727 components: - type: Transform @@ -68005,7 +66926,7 @@ entities: pos: -50.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2728 components: - type: Transform @@ -68013,7 +66934,7 @@ entities: pos: -49.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2735 components: - type: Transform @@ -68021,7 +66942,7 @@ entities: pos: -32.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2736 components: - type: Transform @@ -68029,7 +66950,7 @@ entities: pos: -31.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2737 components: - type: Transform @@ -68037,7 +66958,7 @@ entities: pos: -30.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2738 components: - type: Transform @@ -68045,7 +66966,7 @@ entities: pos: -29.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2739 components: - type: Transform @@ -68053,7 +66974,7 @@ entities: pos: -30.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2740 components: - type: Transform @@ -68061,154 +66982,154 @@ entities: pos: -29.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2747 components: - type: Transform pos: -36.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2748 components: - type: Transform pos: -36.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2749 components: - type: Transform pos: -36.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2751 components: - type: Transform pos: -36.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2752 components: - type: Transform pos: -36.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2754 components: - type: Transform pos: -36.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2755 components: - type: Transform pos: -36.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2756 components: - type: Transform pos: -36.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2757 components: - type: Transform pos: -36.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2758 components: - type: Transform pos: -36.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2759 components: - type: Transform pos: -36.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2761 components: - type: Transform pos: -36.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2763 components: - type: Transform pos: -36.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2764 components: - type: Transform pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2765 components: - type: Transform pos: -36.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2766 components: - type: Transform pos: -36.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2768 components: - type: Transform pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2769 components: - type: Transform pos: -36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2771 components: - type: Transform pos: -36.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2772 components: - type: Transform pos: -36.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2773 components: - type: Transform pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2775 components: - type: Transform @@ -68216,7 +67137,7 @@ entities: pos: -35.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2776 components: - type: Transform @@ -68224,7 +67145,7 @@ entities: pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2778 components: - type: Transform @@ -68232,7 +67153,7 @@ entities: pos: -32.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2780 components: - type: Transform @@ -68240,7 +67161,7 @@ entities: pos: -30.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2781 components: - type: Transform @@ -68248,7 +67169,7 @@ entities: pos: -29.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2782 components: - type: Transform @@ -68256,7 +67177,7 @@ entities: pos: -28.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2783 components: - type: Transform @@ -68264,7 +67185,7 @@ entities: pos: -27.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2784 components: - type: Transform @@ -68272,7 +67193,7 @@ entities: pos: -26.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2785 components: - type: Transform @@ -68280,7 +67201,7 @@ entities: pos: -25.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2787 components: - type: Transform @@ -68288,7 +67209,7 @@ entities: pos: -23.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2789 components: - type: Transform @@ -68296,7 +67217,7 @@ entities: pos: -22.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2790 components: - type: Transform @@ -68304,7 +67225,7 @@ entities: pos: -20.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2791 components: - type: Transform @@ -68312,7 +67233,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2792 components: - type: Transform @@ -68320,7 +67241,7 @@ entities: pos: -18.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2793 components: - type: Transform @@ -68328,7 +67249,7 @@ entities: pos: -17.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2794 components: - type: Transform @@ -68336,7 +67257,7 @@ entities: pos: -16.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2795 components: - type: Transform @@ -68344,7 +67265,7 @@ entities: pos: -15.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2797 components: - type: Transform @@ -68352,7 +67273,7 @@ entities: pos: -13.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2798 components: - type: Transform @@ -68360,7 +67281,7 @@ entities: pos: -12.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2799 components: - type: Transform @@ -68368,7 +67289,7 @@ entities: pos: -11.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2800 components: - type: Transform @@ -68376,7 +67297,7 @@ entities: pos: -10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2801 components: - type: Transform @@ -68384,7 +67305,7 @@ entities: pos: -9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2803 components: - type: Transform @@ -68392,7 +67313,7 @@ entities: pos: -7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2804 components: - type: Transform @@ -68400,7 +67321,7 @@ entities: pos: -5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2806 components: - type: Transform @@ -68408,7 +67329,7 @@ entities: pos: -4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2808 components: - type: Transform @@ -68416,7 +67337,7 @@ entities: pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2809 components: - type: Transform @@ -68424,7 +67345,7 @@ entities: pos: -2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2810 components: - type: Transform @@ -68432,7 +67353,7 @@ entities: pos: -0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2811 components: - type: Transform @@ -68440,7 +67361,7 @@ entities: pos: 0.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2813 components: - type: Transform @@ -68448,7 +67369,7 @@ entities: pos: 2.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2815 components: - type: Transform @@ -68456,7 +67377,7 @@ entities: pos: 4.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2816 components: - type: Transform @@ -68464,7 +67385,7 @@ entities: pos: 5.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2817 components: - type: Transform @@ -68472,7 +67393,7 @@ entities: pos: 6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2818 components: - type: Transform @@ -68480,7 +67401,7 @@ entities: pos: 7.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2820 components: - type: Transform @@ -68488,7 +67409,7 @@ entities: pos: 8.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2821 components: - type: Transform @@ -68496,7 +67417,7 @@ entities: pos: 8.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2822 components: - type: Transform @@ -68504,7 +67425,7 @@ entities: pos: 8.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2823 components: - type: Transform @@ -68512,7 +67433,7 @@ entities: pos: 8.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2824 components: - type: Transform @@ -68520,7 +67441,7 @@ entities: pos: 8.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2825 components: - type: Transform @@ -68528,7 +67449,7 @@ entities: pos: 8.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2826 components: - type: Transform @@ -68536,7 +67457,7 @@ entities: pos: 8.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2827 components: - type: Transform @@ -68544,7 +67465,7 @@ entities: pos: 8.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2828 components: - type: Transform @@ -68552,7 +67473,7 @@ entities: pos: 8.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2829 components: - type: Transform @@ -68560,7 +67481,7 @@ entities: pos: 8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2830 components: - type: Transform @@ -68568,7 +67489,7 @@ entities: pos: 8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2832 components: - type: Transform @@ -68576,7 +67497,7 @@ entities: pos: 8.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2834 components: - type: Transform @@ -68584,7 +67505,7 @@ entities: pos: 8.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2835 components: - type: Transform @@ -68592,7 +67513,7 @@ entities: pos: 8.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2836 components: - type: Transform @@ -68600,7 +67521,7 @@ entities: pos: 8.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2837 components: - type: Transform @@ -68608,7 +67529,7 @@ entities: pos: 8.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2838 components: - type: Transform @@ -68616,7 +67537,7 @@ entities: pos: 8.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2839 components: - type: Transform @@ -68624,7 +67545,7 @@ entities: pos: 8.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2840 components: - type: Transform @@ -68632,7 +67553,7 @@ entities: pos: 8.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2841 components: - type: Transform @@ -68640,7 +67561,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2844 components: - type: Transform @@ -68648,7 +67569,7 @@ entities: pos: 7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2845 components: - type: Transform @@ -68656,7 +67577,7 @@ entities: pos: 6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2846 components: - type: Transform @@ -68664,7 +67585,7 @@ entities: pos: 5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2847 components: - type: Transform @@ -68672,7 +67593,7 @@ entities: pos: 4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2848 components: - type: Transform @@ -68680,7 +67601,7 @@ entities: pos: 3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2849 components: - type: Transform @@ -68688,7 +67609,7 @@ entities: pos: 2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2850 components: - type: Transform @@ -68696,7 +67617,7 @@ entities: pos: 1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2852 components: - type: Transform @@ -68704,7 +67625,7 @@ entities: pos: -0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2853 components: - type: Transform @@ -68712,7 +67633,7 @@ entities: pos: -1.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2855 components: - type: Transform @@ -68720,7 +67641,7 @@ entities: pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2856 components: - type: Transform @@ -68728,7 +67649,7 @@ entities: pos: -5.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2858 components: - type: Transform @@ -68736,7 +67657,7 @@ entities: pos: -6.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2859 components: - type: Transform @@ -68744,7 +67665,7 @@ entities: pos: -7.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2860 components: - type: Transform @@ -68752,7 +67673,7 @@ entities: pos: -8.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2861 components: - type: Transform @@ -68760,7 +67681,7 @@ entities: pos: -9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2863 components: - type: Transform @@ -68768,7 +67689,7 @@ entities: pos: -12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2864 components: - type: Transform @@ -68776,7 +67697,7 @@ entities: pos: -11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2865 components: - type: Transform @@ -68784,7 +67705,7 @@ entities: pos: -13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2867 components: - type: Transform @@ -68792,7 +67713,7 @@ entities: pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2868 components: - type: Transform @@ -68800,7 +67721,7 @@ entities: pos: -16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2869 components: - type: Transform @@ -68808,7 +67729,7 @@ entities: pos: -17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2870 components: - type: Transform @@ -68816,7 +67737,7 @@ entities: pos: -18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2872 components: - type: Transform @@ -68824,7 +67745,7 @@ entities: pos: -20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2874 components: - type: Transform @@ -68832,7 +67753,7 @@ entities: pos: -22.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2875 components: - type: Transform @@ -68840,7 +67761,7 @@ entities: pos: -23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2876 components: - type: Transform @@ -68848,7 +67769,7 @@ entities: pos: -24.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2877 components: - type: Transform @@ -68856,7 +67777,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2878 components: - type: Transform @@ -68864,7 +67785,7 @@ entities: pos: -26.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2880 components: - type: Transform @@ -68872,7 +67793,7 @@ entities: pos: -28.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2881 components: - type: Transform @@ -68880,7 +67801,7 @@ entities: pos: -29.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2882 components: - type: Transform @@ -68888,7 +67809,7 @@ entities: pos: -30.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2884 components: - type: Transform @@ -68896,7 +67817,7 @@ entities: pos: -33.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2885 components: - type: Transform @@ -68904,7 +67825,7 @@ entities: pos: -32.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2886 components: - type: Transform @@ -68912,7 +67833,7 @@ entities: pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2887 components: - type: Transform @@ -68920,161 +67841,161 @@ entities: pos: -35.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2889 components: - type: Transform pos: -34.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2890 components: - type: Transform pos: -34.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2891 components: - type: Transform pos: -34.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2892 components: - type: Transform pos: -34.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2894 components: - type: Transform pos: -34.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2895 components: - type: Transform pos: -34.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2896 components: - type: Transform pos: -34.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2897 components: - type: Transform pos: -34.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2898 components: - type: Transform pos: -34.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2900 components: - type: Transform pos: -34.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2901 components: - type: Transform pos: -34.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2902 components: - type: Transform pos: -34.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2903 components: - type: Transform pos: -34.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2904 components: - type: Transform pos: -34.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2906 components: - type: Transform pos: -34.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2907 components: - type: Transform pos: -34.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2908 components: - type: Transform pos: -34.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2911 components: - type: Transform pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2912 components: - type: Transform pos: -34.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2914 components: - type: Transform pos: -34.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2915 components: - type: Transform pos: -34.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2916 components: - type: Transform pos: -34.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2918 components: - type: Transform @@ -69082,7 +68003,7 @@ entities: pos: -33.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2920 components: - type: Transform @@ -69090,7 +68011,7 @@ entities: pos: -31.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2921 components: - type: Transform @@ -69098,7 +68019,7 @@ entities: pos: -30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2922 components: - type: Transform @@ -69106,7 +68027,7 @@ entities: pos: -29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2923 components: - type: Transform @@ -69114,7 +68035,7 @@ entities: pos: -28.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2925 components: - type: Transform @@ -69122,7 +68043,7 @@ entities: pos: -26.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2926 components: - type: Transform @@ -69130,7 +68051,7 @@ entities: pos: -25.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2927 components: - type: Transform @@ -69138,7 +68059,7 @@ entities: pos: -24.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2928 components: - type: Transform @@ -69146,7 +68067,7 @@ entities: pos: -23.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2929 components: - type: Transform @@ -69154,7 +68075,7 @@ entities: pos: -22.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2930 components: - type: Transform @@ -69162,7 +68083,7 @@ entities: pos: -21.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2931 components: - type: Transform @@ -69170,7 +68091,7 @@ entities: pos: -20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2934 components: - type: Transform @@ -69178,7 +68099,7 @@ entities: pos: -16.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2936 components: - type: Transform @@ -69186,7 +68107,7 @@ entities: pos: -15.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2937 components: - type: Transform @@ -69194,7 +68115,7 @@ entities: pos: -14.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2938 components: - type: Transform @@ -69202,7 +68123,7 @@ entities: pos: -13.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2939 components: - type: Transform @@ -69210,7 +68131,7 @@ entities: pos: -12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2940 components: - type: Transform @@ -69218,7 +68139,7 @@ entities: pos: -11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2942 components: - type: Transform @@ -69226,7 +68147,7 @@ entities: pos: -9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2943 components: - type: Transform @@ -69234,7 +68155,7 @@ entities: pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2944 components: - type: Transform @@ -69242,7 +68163,7 @@ entities: pos: -7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2945 components: - type: Transform @@ -69250,7 +68171,7 @@ entities: pos: -6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2946 components: - type: Transform @@ -69258,7 +68179,7 @@ entities: pos: -5.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2947 components: - type: Transform @@ -69266,7 +68187,7 @@ entities: pos: -4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2948 components: - type: Transform @@ -69274,7 +68195,7 @@ entities: pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2949 components: - type: Transform @@ -69282,7 +68203,7 @@ entities: pos: -2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2951 components: - type: Transform @@ -69290,7 +68211,7 @@ entities: pos: -0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2952 components: - type: Transform @@ -69298,7 +68219,7 @@ entities: pos: 0.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2953 components: - type: Transform @@ -69306,7 +68227,7 @@ entities: pos: 2.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2954 components: - type: Transform @@ -69314,7 +68235,7 @@ entities: pos: 1.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2955 components: - type: Transform @@ -69322,7 +68243,7 @@ entities: pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2956 components: - type: Transform @@ -69330,7 +68251,7 @@ entities: pos: 4.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2958 components: - type: Transform @@ -69338,7 +68259,7 @@ entities: pos: 6.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2959 components: - type: Transform @@ -69346,7 +68267,7 @@ entities: pos: 7.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2960 components: - type: Transform @@ -69354,7 +68275,7 @@ entities: pos: 9.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2961 components: - type: Transform @@ -69362,7 +68283,7 @@ entities: pos: 8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2963 components: - type: Transform @@ -69370,7 +68291,7 @@ entities: pos: 10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2964 components: - type: Transform @@ -69378,7 +68299,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2965 components: - type: Transform @@ -69386,7 +68307,7 @@ entities: pos: 10.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2966 components: - type: Transform @@ -69394,7 +68315,7 @@ entities: pos: 10.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2967 components: - type: Transform @@ -69402,7 +68323,7 @@ entities: pos: 10.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2968 components: - type: Transform @@ -69410,7 +68331,7 @@ entities: pos: 10.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2969 components: - type: Transform @@ -69418,7 +68339,7 @@ entities: pos: 10.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2970 components: - type: Transform @@ -69426,7 +68347,7 @@ entities: pos: 10.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2971 components: - type: Transform @@ -69434,7 +68355,7 @@ entities: pos: 10.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2972 components: - type: Transform @@ -69442,7 +68363,7 @@ entities: pos: 10.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2973 components: - type: Transform @@ -69450,7 +68371,7 @@ entities: pos: 10.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2974 components: - type: Transform @@ -69458,7 +68379,7 @@ entities: pos: 10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2976 components: - type: Transform @@ -69466,7 +68387,7 @@ entities: pos: 11.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2977 components: - type: Transform @@ -69474,7 +68395,7 @@ entities: pos: 10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2978 components: - type: Transform @@ -69482,7 +68403,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2979 components: - type: Transform @@ -69490,7 +68411,7 @@ entities: pos: 10.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2980 components: - type: Transform @@ -69498,7 +68419,7 @@ entities: pos: 10.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2981 components: - type: Transform @@ -69506,7 +68427,7 @@ entities: pos: 10.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2982 components: - type: Transform @@ -69514,7 +68435,7 @@ entities: pos: 10.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2983 components: - type: Transform @@ -69522,7 +68443,7 @@ entities: pos: 10.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2984 components: - type: Transform @@ -69530,7 +68451,7 @@ entities: pos: 10.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2987 components: - type: Transform @@ -69538,7 +68459,7 @@ entities: pos: 9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2988 components: - type: Transform @@ -69546,7 +68467,7 @@ entities: pos: 8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2989 components: - type: Transform @@ -69554,7 +68475,7 @@ entities: pos: 7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2990 components: - type: Transform @@ -69562,7 +68483,7 @@ entities: pos: 6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2991 components: - type: Transform @@ -69570,7 +68491,7 @@ entities: pos: 5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2992 components: - type: Transform @@ -69578,7 +68499,7 @@ entities: pos: 4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2993 components: - type: Transform @@ -69586,7 +68507,7 @@ entities: pos: 2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2995 components: - type: Transform @@ -69594,7 +68515,7 @@ entities: pos: 0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2996 components: - type: Transform @@ -69602,7 +68523,7 @@ entities: pos: 1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2998 components: - type: Transform @@ -69610,7 +68531,7 @@ entities: pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2999 components: - type: Transform @@ -69618,7 +68539,7 @@ entities: pos: -1.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3001 components: - type: Transform @@ -69626,7 +68547,7 @@ entities: pos: -4.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3002 components: - type: Transform @@ -69634,7 +68555,7 @@ entities: pos: -5.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3003 components: - type: Transform @@ -69642,7 +68563,7 @@ entities: pos: -6.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3004 components: - type: Transform @@ -69650,7 +68571,7 @@ entities: pos: -7.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3005 components: - type: Transform @@ -69658,7 +68579,7 @@ entities: pos: -9.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3007 components: - type: Transform @@ -69666,7 +68587,7 @@ entities: pos: -10.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3008 components: - type: Transform @@ -69674,7 +68595,7 @@ entities: pos: -11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3009 components: - type: Transform @@ -69682,7 +68603,7 @@ entities: pos: -12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3010 components: - type: Transform @@ -69690,7 +68611,7 @@ entities: pos: -13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3011 components: - type: Transform @@ -69698,7 +68619,7 @@ entities: pos: -14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3013 components: - type: Transform @@ -69706,7 +68627,7 @@ entities: pos: -16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3014 components: - type: Transform @@ -69714,7 +68635,7 @@ entities: pos: -17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3015 components: - type: Transform @@ -69722,7 +68643,7 @@ entities: pos: -18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3016 components: - type: Transform @@ -69730,7 +68651,7 @@ entities: pos: -19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3017 components: - type: Transform @@ -69738,7 +68659,7 @@ entities: pos: -20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3018 components: - type: Transform @@ -69746,7 +68667,7 @@ entities: pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3021 components: - type: Transform @@ -69754,7 +68675,7 @@ entities: pos: -24.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3024 components: - type: Transform @@ -69762,7 +68683,7 @@ entities: pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3025 components: - type: Transform @@ -69770,7 +68691,7 @@ entities: pos: -29.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3026 components: - type: Transform @@ -69778,7 +68699,7 @@ entities: pos: -28.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3028 components: - type: Transform @@ -69786,7 +68707,7 @@ entities: pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3029 components: - type: Transform @@ -69794,7 +68715,7 @@ entities: pos: -32.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3030 components: - type: Transform @@ -69802,7 +68723,7 @@ entities: pos: -33.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3031 components: - type: Transform @@ -69810,7 +68731,7 @@ entities: pos: -31.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3032 components: - type: Transform @@ -69818,7 +68739,7 @@ entities: pos: -31.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3033 components: - type: Transform @@ -69826,7 +68747,7 @@ entities: pos: -31.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3034 components: - type: Transform @@ -69834,7 +68755,7 @@ entities: pos: -25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3035 components: - type: Transform @@ -69842,7 +68763,7 @@ entities: pos: -25.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3036 components: - type: Transform @@ -69850,7 +68771,7 @@ entities: pos: -25.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3037 components: - type: Transform @@ -69858,7 +68779,7 @@ entities: pos: -25.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3038 components: - type: Transform @@ -69866,112 +68787,112 @@ entities: pos: -25.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3043 components: - type: Transform pos: -30.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3044 components: - type: Transform pos: -30.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3045 components: - type: Transform pos: -31.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3046 components: - type: Transform pos: -31.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3047 components: - type: Transform pos: -31.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3048 components: - type: Transform pos: -31.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3051 components: - type: Transform pos: -26.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3052 components: - type: Transform pos: -27.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3053 components: - type: Transform pos: -27.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3054 components: - type: Transform pos: -27.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3057 components: - type: Transform pos: -22.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3058 components: - type: Transform pos: -21.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3059 components: - type: Transform pos: -21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3060 components: - type: Transform pos: -21.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3061 components: - type: Transform pos: -21.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3070 components: - type: Transform @@ -69979,7 +68900,7 @@ entities: pos: -35.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3071 components: - type: Transform @@ -69987,7 +68908,7 @@ entities: pos: -36.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3072 components: - type: Transform @@ -69995,7 +68916,7 @@ entities: pos: -37.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3073 components: - type: Transform @@ -70003,7 +68924,7 @@ entities: pos: -38.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3074 components: - type: Transform @@ -70011,7 +68932,7 @@ entities: pos: -37.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3075 components: - type: Transform @@ -70019,7 +68940,7 @@ entities: pos: -38.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3079 components: - type: Transform @@ -70027,7 +68948,7 @@ entities: pos: -39.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3080 components: - type: Transform @@ -70035,7 +68956,7 @@ entities: pos: -35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3081 components: - type: Transform @@ -70043,7 +68964,7 @@ entities: pos: -36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3082 components: - type: Transform @@ -70051,7 +68972,7 @@ entities: pos: -37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3083 components: - type: Transform @@ -70059,7 +68980,7 @@ entities: pos: -38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3085 components: - type: Transform @@ -70067,7 +68988,7 @@ entities: pos: -40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3086 components: - type: Transform @@ -70075,7 +68996,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3088 components: - type: Transform @@ -70083,7 +69004,7 @@ entities: pos: -43.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3089 components: - type: Transform @@ -70091,7 +69012,7 @@ entities: pos: -37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3090 components: - type: Transform @@ -70099,7 +69020,7 @@ entities: pos: -38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3092 components: - type: Transform @@ -70107,7 +69028,7 @@ entities: pos: -40.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3094 components: - type: Transform @@ -70115,7 +69036,7 @@ entities: pos: -42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3095 components: - type: Transform @@ -70123,7 +69044,7 @@ entities: pos: -43.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3096 components: - type: Transform @@ -70131,7 +69052,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3101 components: - type: Transform @@ -70139,7 +69060,7 @@ entities: pos: -41.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3102 components: - type: Transform @@ -70147,7 +69068,7 @@ entities: pos: -41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3103 components: - type: Transform @@ -70155,7 +69076,7 @@ entities: pos: -41.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3104 components: - type: Transform @@ -70163,7 +69084,7 @@ entities: pos: -41.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3105 components: - type: Transform @@ -70171,7 +69092,7 @@ entities: pos: -41.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3106 components: - type: Transform @@ -70179,7 +69100,7 @@ entities: pos: -41.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3107 components: - type: Transform @@ -70187,7 +69108,7 @@ entities: pos: -39.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3108 components: - type: Transform @@ -70195,7 +69116,7 @@ entities: pos: -39.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3109 components: - type: Transform @@ -70203,7 +69124,7 @@ entities: pos: -39.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3110 components: - type: Transform @@ -70211,7 +69132,7 @@ entities: pos: -39.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3113 components: - type: Transform @@ -70219,7 +69140,7 @@ entities: pos: -46.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3121 components: - type: Transform @@ -70227,7 +69148,7 @@ entities: pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3122 components: - type: Transform @@ -70235,7 +69156,7 @@ entities: pos: -50.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3124 components: - type: Transform @@ -70243,7 +69164,7 @@ entities: pos: -48.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3127 components: - type: Transform @@ -70251,7 +69172,7 @@ entities: pos: -45.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3128 components: - type: Transform @@ -70259,7 +69180,7 @@ entities: pos: -44.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3129 components: - type: Transform @@ -70267,7 +69188,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3132 components: - type: Transform @@ -70275,7 +69196,7 @@ entities: pos: -49.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3133 components: - type: Transform @@ -70283,124 +69204,119 @@ entities: pos: -50.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3139 components: - type: Transform pos: -45.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3140 components: - type: Transform pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3141 components: - type: Transform pos: -45.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3142 components: - type: Transform pos: -45.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3143 components: - type: Transform pos: -44.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3144 components: - type: Transform pos: -44.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3145 components: - type: Transform pos: -44.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3146 components: - type: Transform pos: -45.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3149 components: - type: Transform pos: -45.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3150 components: - type: Transform pos: -45.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3151 components: - type: Transform pos: -45.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3153 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 3156 components: - type: Transform pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3157 components: - type: Transform pos: -44.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3158 components: - type: Transform pos: -44.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3159 components: - type: Transform pos: -44.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3160 components: - type: Transform pos: -44.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3164 components: - type: Transform @@ -70408,7 +69324,7 @@ entities: pos: -45.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3165 components: - type: Transform @@ -70416,7 +69332,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3178 components: - type: Transform @@ -70424,7 +69340,7 @@ entities: pos: -49.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3179 components: - type: Transform @@ -70432,28 +69348,28 @@ entities: pos: -48.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3190 components: - type: Transform pos: -51.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3191 components: - type: Transform pos: -51.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3192 components: - type: Transform pos: -52.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3205 components: - type: Transform @@ -70461,7 +69377,7 @@ entities: pos: -45.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3206 components: - type: Transform @@ -70469,7 +69385,7 @@ entities: pos: -45.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3207 components: - type: Transform @@ -70477,7 +69393,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3209 components: - type: Transform @@ -70485,7 +69401,7 @@ entities: pos: -45.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3210 components: - type: Transform @@ -70493,7 +69409,7 @@ entities: pos: -45.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3211 components: - type: Transform @@ -70501,7 +69417,7 @@ entities: pos: -44.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3212 components: - type: Transform @@ -70509,7 +69425,7 @@ entities: pos: -44.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3214 components: - type: Transform @@ -70517,7 +69433,7 @@ entities: pos: -44.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3215 components: - type: Transform @@ -70525,7 +69441,7 @@ entities: pos: -44.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3216 components: - type: Transform @@ -70533,21 +69449,21 @@ entities: pos: -44.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3217 components: - type: Transform pos: -45.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3218 components: - type: Transform pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3219 components: - type: Transform @@ -70555,7 +69471,7 @@ entities: pos: -45.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3220 components: - type: Transform @@ -70563,7 +69479,7 @@ entities: pos: -46.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3222 components: - type: Transform @@ -70571,7 +69487,7 @@ entities: pos: -33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3223 components: - type: Transform @@ -70579,7 +69495,7 @@ entities: pos: -32.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3224 components: - type: Transform @@ -70587,7 +69503,7 @@ entities: pos: -35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3225 components: - type: Transform @@ -70595,7 +69511,7 @@ entities: pos: -34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3226 components: - type: Transform @@ -70603,7 +69519,7 @@ entities: pos: -33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3227 components: - type: Transform @@ -70611,7 +69527,7 @@ entities: pos: -32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3232 components: - type: Transform @@ -70619,7 +69535,7 @@ entities: pos: -35.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3233 components: - type: Transform @@ -70627,7 +69543,7 @@ entities: pos: -36.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3234 components: - type: Transform @@ -70635,7 +69551,7 @@ entities: pos: -37.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3235 components: - type: Transform @@ -70643,7 +69559,7 @@ entities: pos: -38.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3236 components: - type: Transform @@ -70651,7 +69567,7 @@ entities: pos: -39.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3237 components: - type: Transform @@ -70659,7 +69575,7 @@ entities: pos: -37.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3238 components: - type: Transform @@ -70667,7 +69583,7 @@ entities: pos: -38.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3239 components: - type: Transform @@ -70675,7 +69591,7 @@ entities: pos: -39.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3240 components: - type: Transform @@ -70683,7 +69599,7 @@ entities: pos: -40.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3242 components: - type: Transform @@ -70691,7 +69607,7 @@ entities: pos: -40.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3243 components: - type: Transform @@ -70699,7 +69615,7 @@ entities: pos: -41.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3244 components: - type: Transform @@ -70707,7 +69623,7 @@ entities: pos: -42.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3247 components: - type: Transform @@ -70715,7 +69631,7 @@ entities: pos: -43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3248 components: - type: Transform @@ -70723,7 +69639,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3249 components: - type: Transform @@ -70731,7 +69647,7 @@ entities: pos: -42.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3250 components: - type: Transform @@ -70739,7 +69655,7 @@ entities: pos: -43.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3251 components: - type: Transform @@ -70747,7 +69663,7 @@ entities: pos: -43.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3252 components: - type: Transform @@ -70755,7 +69671,7 @@ entities: pos: -42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3256 components: - type: Transform @@ -70763,7 +69679,7 @@ entities: pos: -43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3257 components: - type: Transform @@ -70771,7 +69687,7 @@ entities: pos: -44.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3258 components: - type: Transform @@ -70779,7 +69695,7 @@ entities: pos: -45.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3259 components: - type: Transform @@ -70787,7 +69703,7 @@ entities: pos: -46.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3260 components: - type: Transform @@ -70795,7 +69711,7 @@ entities: pos: -47.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3261 components: - type: Transform @@ -70803,7 +69719,7 @@ entities: pos: -45.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3262 components: - type: Transform @@ -70811,7 +69727,7 @@ entities: pos: -46.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3263 components: - type: Transform @@ -70819,7 +69735,7 @@ entities: pos: -47.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3264 components: - type: Transform @@ -70827,7 +69743,7 @@ entities: pos: -48.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3265 components: - type: Transform @@ -70835,21 +69751,21 @@ entities: pos: -48.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3269 components: - type: Transform pos: -49.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3270 components: - type: Transform pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3273 components: - type: Transform @@ -70857,7 +69773,7 @@ entities: pos: -50.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3274 components: - type: Transform @@ -70865,7 +69781,7 @@ entities: pos: -49.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3276 components: - type: Transform @@ -70873,14 +69789,14 @@ entities: pos: -51.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3277 components: - type: Transform pos: -52.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3279 components: - type: Transform @@ -70888,7 +69804,7 @@ entities: pos: -53.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3280 components: - type: Transform @@ -70896,7 +69812,7 @@ entities: pos: -54.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3281 components: - type: Transform @@ -70904,7 +69820,7 @@ entities: pos: -55.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3282 components: - type: Transform @@ -70912,7 +69828,7 @@ entities: pos: -56.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3287 components: - type: Transform @@ -70920,7 +69836,7 @@ entities: pos: -58.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3288 components: - type: Transform @@ -70928,7 +69844,7 @@ entities: pos: -59.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3289 components: - type: Transform @@ -70936,7 +69852,7 @@ entities: pos: -58.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3290 components: - type: Transform @@ -70944,7 +69860,7 @@ entities: pos: -59.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3291 components: - type: Transform @@ -70952,7 +69868,7 @@ entities: pos: -57.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3292 components: - type: Transform @@ -70960,7 +69876,7 @@ entities: pos: -57.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3293 components: - type: Transform @@ -70968,7 +69884,7 @@ entities: pos: -57.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3295 components: - type: Transform @@ -70976,7 +69892,7 @@ entities: pos: -57.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3296 components: - type: Transform @@ -70984,7 +69900,7 @@ entities: pos: -57.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3297 components: - type: Transform @@ -70992,7 +69908,7 @@ entities: pos: -58.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3298 components: - type: Transform @@ -71000,7 +69916,7 @@ entities: pos: -59.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3299 components: - type: Transform @@ -71008,7 +69924,7 @@ entities: pos: -58.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3300 components: - type: Transform @@ -71016,35 +69932,35 @@ entities: pos: -59.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3301 components: - type: Transform pos: -57.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3308 components: - type: Transform pos: -49.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3309 components: - type: Transform pos: -49.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3310 components: - type: Transform pos: -49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3311 components: - type: Transform @@ -71052,7 +69968,7 @@ entities: pos: -50.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3312 components: - type: Transform @@ -71060,7 +69976,7 @@ entities: pos: -51.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3313 components: - type: Transform @@ -71068,7 +69984,7 @@ entities: pos: -52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3314 components: - type: Transform @@ -71076,7 +69992,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3315 components: - type: Transform @@ -71084,7 +70000,7 @@ entities: pos: -51.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3316 components: - type: Transform @@ -71092,7 +70008,7 @@ entities: pos: -52.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3319 components: - type: Transform @@ -71100,7 +70016,7 @@ entities: pos: -50.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3320 components: - type: Transform @@ -71108,7 +70024,7 @@ entities: pos: -50.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3321 components: - type: Transform @@ -71116,7 +70032,7 @@ entities: pos: -50.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3322 components: - type: Transform @@ -71124,7 +70040,7 @@ entities: pos: -50.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3329 components: - type: Transform @@ -71132,7 +70048,7 @@ entities: pos: -19.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3330 components: - type: Transform @@ -71140,7 +70056,7 @@ entities: pos: -19.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3331 components: - type: Transform @@ -71148,7 +70064,7 @@ entities: pos: -19.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3332 components: - type: Transform @@ -71156,7 +70072,7 @@ entities: pos: -19.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3334 components: - type: Transform @@ -71164,7 +70080,7 @@ entities: pos: -18.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3335 components: - type: Transform @@ -71172,7 +70088,7 @@ entities: pos: -17.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3337 components: - type: Transform @@ -71180,7 +70096,7 @@ entities: pos: -20.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3338 components: - type: Transform @@ -71188,7 +70104,7 @@ entities: pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3339 components: - type: Transform @@ -71196,7 +70112,7 @@ entities: pos: -22.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3340 components: - type: Transform @@ -71204,139 +70120,76 @@ entities: pos: -23.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3341 + color: '#0000FFFF' + - uid: 3350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3342 + color: '#FF0000FF' + - uid: 3351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3343 + color: '#FF0000FF' + - uid: 3352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 + rot: 3.141592653589793 rad + pos: -21.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3345 + color: '#FF0000FF' + - uid: 3354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,7.5 + rot: -1.5707963267948966 rad + pos: -22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3346 + color: '#FF0000FF' + - uid: 3355 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,8.5 + pos: -23.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,9.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,8.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3359 - components: - - type: Transform - pos: -27.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - uid: 3362 components: - type: Transform pos: -23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3363 components: - type: Transform pos: -23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3364 components: - type: Transform pos: -23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,12.5 + rot: 3.141592653589793 rad + pos: -62.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3366 components: - type: Transform @@ -71344,7 +70197,7 @@ entities: pos: -24.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3367 components: - type: Transform @@ -71352,7 +70205,7 @@ entities: pos: -24.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3369 components: - type: Transform @@ -71360,7 +70213,7 @@ entities: pos: -23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3370 components: - type: Transform @@ -71368,7 +70221,7 @@ entities: pos: -23.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3371 components: - type: Transform @@ -71376,7 +70229,7 @@ entities: pos: -23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3374 components: - type: Transform @@ -71384,7 +70237,7 @@ entities: pos: -25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3378 components: - type: Transform @@ -71392,7 +70245,7 @@ entities: pos: -20.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3379 components: - type: Transform @@ -71400,7 +70253,7 @@ entities: pos: -19.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3380 components: - type: Transform @@ -71408,7 +70261,7 @@ entities: pos: -18.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3382 components: - type: Transform @@ -71416,7 +70269,7 @@ entities: pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3383 components: - type: Transform @@ -71424,7 +70277,7 @@ entities: pos: -15.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3384 components: - type: Transform @@ -71432,84 +70285,84 @@ entities: pos: -14.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3385 components: - type: Transform pos: -16.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3386 components: - type: Transform pos: -16.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3387 components: - type: Transform pos: -16.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3389 components: - type: Transform pos: -17.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3390 components: - type: Transform pos: -17.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3391 components: - type: Transform pos: -17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3392 components: - type: Transform pos: -17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3393 components: - type: Transform pos: -16.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3394 components: - type: Transform pos: -16.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3395 components: - type: Transform pos: -16.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3396 components: - type: Transform pos: -17.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3402 components: - type: Transform @@ -71517,7 +70370,7 @@ entities: pos: -14.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3403 components: - type: Transform @@ -71525,63 +70378,63 @@ entities: pos: -15.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3411 components: - type: Transform pos: -1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3412 components: - type: Transform pos: -1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3413 components: - type: Transform pos: -1.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3414 components: - type: Transform pos: -1.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3415 components: - type: Transform pos: -1.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3416 components: - type: Transform pos: -3.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3417 components: - type: Transform pos: -3.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3418 components: - type: Transform pos: -3.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3425 components: - type: Transform @@ -71589,7 +70442,7 @@ entities: pos: -3.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3426 components: - type: Transform @@ -71597,7 +70450,7 @@ entities: pos: -3.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3427 components: - type: Transform @@ -71605,7 +70458,7 @@ entities: pos: -3.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3428 components: - type: Transform @@ -71613,7 +70466,7 @@ entities: pos: -3.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3429 components: - type: Transform @@ -71621,7 +70474,7 @@ entities: pos: -3.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3430 components: - type: Transform @@ -71629,7 +70482,7 @@ entities: pos: -1.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3431 components: - type: Transform @@ -71637,7 +70490,7 @@ entities: pos: -1.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3432 components: - type: Transform @@ -71645,7 +70498,7 @@ entities: pos: -1.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3433 components: - type: Transform @@ -71653,7 +70506,7 @@ entities: pos: -1.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3434 components: - type: Transform @@ -71661,7 +70514,7 @@ entities: pos: -1.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3435 components: - type: Transform @@ -71669,7 +70522,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3436 components: - type: Transform @@ -71677,7 +70530,7 @@ entities: pos: -2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3437 components: - type: Transform @@ -71685,7 +70538,7 @@ entities: pos: -1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3438 components: - type: Transform @@ -71693,7 +70546,7 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3439 components: - type: Transform @@ -71701,7 +70554,7 @@ entities: pos: 0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3440 components: - type: Transform @@ -71709,7 +70562,7 @@ entities: pos: 1.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3441 components: - type: Transform @@ -71717,7 +70570,7 @@ entities: pos: 2.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3443 components: - type: Transform @@ -71725,7 +70578,7 @@ entities: pos: 0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3444 components: - type: Transform @@ -71733,7 +70586,7 @@ entities: pos: 1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3445 components: - type: Transform @@ -71741,7 +70594,7 @@ entities: pos: 2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3446 components: - type: Transform @@ -71749,7 +70602,7 @@ entities: pos: -2.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3447 components: - type: Transform @@ -71757,7 +70610,7 @@ entities: pos: -3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3448 components: - type: Transform @@ -71765,7 +70618,7 @@ entities: pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3449 components: - type: Transform @@ -71773,7 +70626,7 @@ entities: pos: -5.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3450 components: - type: Transform @@ -71781,7 +70634,7 @@ entities: pos: -6.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3451 components: - type: Transform @@ -71789,7 +70642,7 @@ entities: pos: -7.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3453 components: - type: Transform @@ -71797,7 +70650,7 @@ entities: pos: -5.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3454 components: - type: Transform @@ -71805,7 +70658,7 @@ entities: pos: -6.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3455 components: - type: Transform @@ -71813,7 +70666,7 @@ entities: pos: -7.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3456 components: - type: Transform @@ -71821,7 +70674,7 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3457 components: - type: Transform @@ -71829,7 +70682,7 @@ entities: pos: -9.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3462 components: - type: Transform @@ -71837,7 +70690,7 @@ entities: pos: -11.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3463 components: - type: Transform @@ -71845,7 +70698,7 @@ entities: pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3464 components: - type: Transform @@ -71853,7 +70706,7 @@ entities: pos: -11.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3465 components: - type: Transform @@ -71861,7 +70714,7 @@ entities: pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3466 components: - type: Transform @@ -71869,7 +70722,7 @@ entities: pos: -13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3467 components: - type: Transform @@ -71877,7 +70730,7 @@ entities: pos: -14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3468 components: - type: Transform @@ -71885,7 +70738,7 @@ entities: pos: -15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3470 components: - type: Transform @@ -71893,7 +70746,7 @@ entities: pos: -15.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3471 components: - type: Transform @@ -71901,7 +70754,7 @@ entities: pos: -14.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3472 components: - type: Transform @@ -71909,113 +70762,141 @@ entities: pos: -13.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3473 components: - type: Transform pos: -10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3474 components: - type: Transform pos: -10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3475 components: - type: Transform pos: -10.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3476 components: - type: Transform pos: -9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3477 components: - type: Transform pos: -9.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3478 components: - type: Transform pos: -9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3487 components: - type: Transform pos: -3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3488 components: - type: Transform pos: -3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3489 components: - type: Transform pos: -3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3490 components: - type: Transform pos: -1.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3491 components: - type: Transform pos: -8.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3492 components: - type: Transform pos: -8.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3493 components: - type: Transform pos: 3.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3494 components: - type: Transform pos: 3.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4353 + color: '#FF0000FF' + - uid: 3531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-48.5 + pos: -13.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' + - uid: 3583 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3598 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4371 + components: + - type: Transform + pos: -25.5,9.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 4894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 4908 components: - type: Transform @@ -72023,21 +70904,21 @@ entities: pos: -26.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5006 components: - type: Transform pos: -19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5014 components: - type: Transform pos: -19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5418 components: - type: Transform @@ -72045,7 +70926,7 @@ entities: pos: -47.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5427 components: - type: Transform @@ -72053,7 +70934,7 @@ entities: pos: -53.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5428 components: - type: Transform @@ -72061,7 +70942,7 @@ entities: pos: -46.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5494 components: - type: Transform @@ -72069,7 +70950,7 @@ entities: pos: -53.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5625 components: - type: Transform @@ -72077,7 +70958,7 @@ entities: pos: -27.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5668 components: - type: Transform @@ -72085,7 +70966,7 @@ entities: pos: -30.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 5841 components: - type: Transform @@ -72099,63 +70980,63 @@ entities: pos: -2.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6114 components: - type: Transform pos: -2.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6115 components: - type: Transform pos: -2.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6116 components: - type: Transform pos: -2.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6117 components: - type: Transform pos: -2.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6118 components: - type: Transform pos: -2.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6119 components: - type: Transform pos: -0.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6120 components: - type: Transform pos: -0.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6121 components: - type: Transform pos: -0.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6124 components: - type: Transform @@ -72163,7 +71044,7 @@ entities: pos: -14.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6125 components: - type: Transform @@ -72171,7 +71052,7 @@ entities: pos: -14.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6126 components: - type: Transform @@ -72179,7 +71060,7 @@ entities: pos: -14.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6127 components: - type: Transform @@ -72187,7 +71068,7 @@ entities: pos: -14.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6128 components: - type: Transform @@ -72195,7 +71076,7 @@ entities: pos: -14.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6129 components: - type: Transform @@ -72203,7 +71084,7 @@ entities: pos: -14.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6130 components: - type: Transform @@ -72211,7 +71092,7 @@ entities: pos: -14.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6131 components: - type: Transform @@ -72219,7 +71100,7 @@ entities: pos: -14.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6133 components: - type: Transform @@ -72227,7 +71108,7 @@ entities: pos: -14.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6134 components: - type: Transform @@ -72235,7 +71116,7 @@ entities: pos: -14.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6135 components: - type: Transform @@ -72243,7 +71124,7 @@ entities: pos: -14.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6136 components: - type: Transform @@ -72251,7 +71132,7 @@ entities: pos: -4.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6137 components: - type: Transform @@ -72259,7 +71140,7 @@ entities: pos: -4.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6138 components: - type: Transform @@ -72267,7 +71148,7 @@ entities: pos: -4.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6139 components: - type: Transform @@ -72275,7 +71156,7 @@ entities: pos: -4.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6141 components: - type: Transform @@ -72283,7 +71164,7 @@ entities: pos: -4.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6142 components: - type: Transform @@ -72291,7 +71172,7 @@ entities: pos: -4.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6143 components: - type: Transform @@ -72299,7 +71180,7 @@ entities: pos: -4.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6144 components: - type: Transform @@ -72307,7 +71188,7 @@ entities: pos: -4.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6145 components: - type: Transform @@ -72315,7 +71196,7 @@ entities: pos: -4.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6146 components: - type: Transform @@ -72323,7 +71204,7 @@ entities: pos: -4.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6147 components: - type: Transform @@ -72331,7 +71212,7 @@ entities: pos: -4.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6149 components: - type: Transform @@ -72339,7 +71220,7 @@ entities: pos: -13.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6150 components: - type: Transform @@ -72347,7 +71228,7 @@ entities: pos: -12.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6152 components: - type: Transform @@ -72355,7 +71236,7 @@ entities: pos: -10.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6154 components: - type: Transform @@ -72363,7 +71244,7 @@ entities: pos: -8.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6155 components: - type: Transform @@ -72371,7 +71252,7 @@ entities: pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6156 components: - type: Transform @@ -72379,7 +71260,7 @@ entities: pos: -6.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6157 components: - type: Transform @@ -72387,189 +71268,189 @@ entities: pos: -5.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6159 components: - type: Transform pos: -15.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6160 components: - type: Transform pos: -15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6161 components: - type: Transform pos: -15.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6162 components: - type: Transform pos: -15.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6163 components: - type: Transform pos: -15.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6164 components: - type: Transform pos: -15.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6165 components: - type: Transform pos: -15.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6166 components: - type: Transform pos: -15.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6167 components: - type: Transform pos: -15.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6168 components: - type: Transform pos: -15.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6169 components: - type: Transform pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6171 components: - type: Transform pos: -15.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6173 components: - type: Transform pos: -15.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6174 components: - type: Transform pos: -3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6175 components: - type: Transform pos: -3.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6176 components: - type: Transform pos: -3.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6177 components: - type: Transform pos: -3.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6178 components: - type: Transform pos: -3.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6180 components: - type: Transform pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6181 components: - type: Transform pos: -3.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6182 components: - type: Transform pos: -3.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6183 components: - type: Transform pos: -3.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6184 components: - type: Transform pos: -3.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6186 components: - type: Transform pos: -3.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6187 components: - type: Transform pos: -3.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6188 components: - type: Transform pos: -3.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6189 components: - type: Transform @@ -72577,7 +71458,7 @@ entities: pos: -4.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6190 components: - type: Transform @@ -72585,7 +71466,7 @@ entities: pos: -5.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6191 components: - type: Transform @@ -72593,7 +71474,7 @@ entities: pos: -6.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6192 components: - type: Transform @@ -72601,7 +71482,7 @@ entities: pos: -8.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6194 components: - type: Transform @@ -72609,7 +71490,7 @@ entities: pos: -10.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6195 components: - type: Transform @@ -72617,7 +71498,7 @@ entities: pos: -14.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6196 components: - type: Transform @@ -72625,7 +71506,7 @@ entities: pos: -13.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6197 components: - type: Transform @@ -72633,56 +71514,56 @@ entities: pos: -12.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6206 components: - type: Transform pos: -11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6207 components: - type: Transform pos: -11.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6208 components: - type: Transform pos: -11.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6209 components: - type: Transform pos: -7.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6210 components: - type: Transform pos: -7.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6211 components: - type: Transform pos: -7.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6212 components: - type: Transform pos: -7.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6215 components: - type: Transform @@ -72690,7 +71571,7 @@ entities: pos: -3.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6216 components: - type: Transform @@ -72698,7 +71579,7 @@ entities: pos: -2.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6217 components: - type: Transform @@ -72706,7 +71587,7 @@ entities: pos: -1.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6218 components: - type: Transform @@ -72714,7 +71595,7 @@ entities: pos: -0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6219 components: - type: Transform @@ -72722,7 +71603,7 @@ entities: pos: -2.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6220 components: - type: Transform @@ -72730,7 +71611,7 @@ entities: pos: -1.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6221 components: - type: Transform @@ -72738,7 +71619,7 @@ entities: pos: -0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6226 components: - type: Transform @@ -72746,7 +71627,7 @@ entities: pos: -16.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6227 components: - type: Transform @@ -72754,7 +71635,7 @@ entities: pos: -17.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6228 components: - type: Transform @@ -72762,7 +71643,7 @@ entities: pos: -18.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6230 components: - type: Transform @@ -72770,7 +71651,7 @@ entities: pos: -16.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6231 components: - type: Transform @@ -72778,7 +71659,7 @@ entities: pos: -17.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6232 components: - type: Transform @@ -72786,7 +71667,7 @@ entities: pos: -18.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6233 components: - type: Transform @@ -72794,7 +71675,7 @@ entities: pos: -19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6235 components: - type: Transform @@ -72802,7 +71683,7 @@ entities: pos: -21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6236 components: - type: Transform @@ -72810,7 +71691,7 @@ entities: pos: -22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6237 components: - type: Transform @@ -72818,7 +71699,7 @@ entities: pos: -23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6238 components: - type: Transform @@ -72826,35 +71707,35 @@ entities: pos: -24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6241 components: - type: Transform pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6242 components: - type: Transform pos: -20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6243 components: - type: Transform pos: -20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6244 components: - type: Transform pos: -20.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6247 components: - type: Transform @@ -72862,7 +71743,7 @@ entities: pos: -15.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6248 components: - type: Transform @@ -72870,7 +71751,7 @@ entities: pos: -16.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6249 components: - type: Transform @@ -72878,7 +71759,7 @@ entities: pos: -17.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6253 components: - type: Transform @@ -72886,7 +71767,7 @@ entities: pos: -20.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6256 components: - type: Transform @@ -72894,7 +71775,7 @@ entities: pos: -22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6257 components: - type: Transform @@ -72902,7 +71783,7 @@ entities: pos: -23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6258 components: - type: Transform @@ -72910,7 +71791,7 @@ entities: pos: -24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6259 components: - type: Transform @@ -72918,14 +71799,14 @@ entities: pos: -25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6263 components: - type: Transform pos: -26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6264 components: - type: Transform @@ -72933,14 +71814,14 @@ entities: pos: -27.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6267 components: - type: Transform pos: -19.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6681 components: - type: Transform @@ -72948,7 +71829,7 @@ entities: pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6685 components: - type: Transform @@ -72956,7 +71837,7 @@ entities: pos: -17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6686 components: - type: Transform @@ -72964,14 +71845,14 @@ entities: pos: -14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6724 components: - type: Transform pos: -12.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6729 components: - type: Transform @@ -72979,7 +71860,7 @@ entities: pos: -15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6812 components: - type: Transform @@ -72987,7 +71868,7 @@ entities: pos: -16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6813 components: - type: Transform @@ -72995,7 +71876,7 @@ entities: pos: -17.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6814 components: - type: Transform @@ -73003,7 +71884,7 @@ entities: pos: -17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6816 components: - type: Transform @@ -73011,7 +71892,7 @@ entities: pos: -30.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6819 components: - type: Transform @@ -73019,7 +71900,7 @@ entities: pos: -14.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6820 components: - type: Transform @@ -73027,7 +71908,7 @@ entities: pos: -15.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6822 components: - type: Transform @@ -73035,7 +71916,7 @@ entities: pos: -16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6825 components: - type: Transform @@ -73043,7 +71924,7 @@ entities: pos: -17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6893 components: - type: Transform @@ -73051,7 +71932,7 @@ entities: pos: -17.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6896 components: - type: Transform @@ -73059,7 +71940,7 @@ entities: pos: -33.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6897 components: - type: Transform @@ -73067,7 +71948,7 @@ entities: pos: -18.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6898 components: - type: Transform @@ -73075,7 +71956,7 @@ entities: pos: -32.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6901 components: - type: Transform @@ -73083,7 +71964,7 @@ entities: pos: -29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6902 components: - type: Transform @@ -73091,7 +71972,7 @@ entities: pos: -31.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6909 components: - type: Transform @@ -73099,14 +71980,14 @@ entities: pos: -30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6910 components: - type: Transform pos: -28.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6922 components: - type: Transform @@ -73114,7 +71995,7 @@ entities: pos: -31.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6925 components: - type: Transform @@ -73122,7 +72003,7 @@ entities: pos: -32.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6930 components: - type: Transform @@ -73130,42 +72011,42 @@ entities: pos: -32.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6931 components: - type: Transform pos: -18.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6932 components: - type: Transform pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6937 components: - type: Transform pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6938 components: - type: Transform pos: -18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6957 components: - type: Transform pos: -18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7004 components: - type: Transform @@ -73179,7 +72060,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7059 components: - type: Transform @@ -73187,7 +72068,7 @@ entities: pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7060 components: - type: Transform @@ -73195,7 +72076,7 @@ entities: pos: -26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7069 components: - type: Transform @@ -73203,7 +72084,7 @@ entities: pos: -25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7070 components: - type: Transform @@ -73211,7 +72092,7 @@ entities: pos: -27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7073 components: - type: Transform @@ -73219,7 +72100,7 @@ entities: pos: -24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7091 components: - type: Transform @@ -73227,25 +72108,15 @@ entities: pos: -12.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7101 + color: '#FF0000FF' + - uid: 7095 components: - type: Transform - pos: -11.5,-54.5 + rot: -1.5707963267948966 rad + pos: -15.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7103 - components: - - type: Transform - pos: -11.5,-56.5 - parent: 30 - - uid: 7105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 7117 components: - type: Transform @@ -73253,7 +72124,7 @@ entities: pos: -26.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7118 components: - type: Transform @@ -73261,7 +72132,7 @@ entities: pos: -27.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7150 components: - type: Transform @@ -73269,7 +72140,7 @@ entities: pos: -31.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7152 components: - type: Transform @@ -73277,7 +72148,7 @@ entities: pos: -30.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7153 components: - type: Transform @@ -73285,7 +72156,7 @@ entities: pos: -33.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7157 components: - type: Transform @@ -73293,21 +72164,21 @@ entities: pos: -27.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7203 components: - type: Transform pos: -34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7205 components: - type: Transform pos: -34.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7212 components: - type: Transform @@ -73315,7 +72186,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7213 components: - type: Transform @@ -73323,38 +72194,21 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7216 components: - type: Transform pos: -11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7229 + color: '#FF0000FF' + - uid: 7223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 + pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7257 components: - type: Transform @@ -73362,7 +72216,7 @@ entities: pos: -18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7303 components: - type: Transform @@ -73370,35 +72224,35 @@ entities: pos: -21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7306 components: - type: Transform pos: -8.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7307 components: - type: Transform pos: -8.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7308 components: - type: Transform pos: -8.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7309 components: - type: Transform pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7312 components: - type: Transform @@ -73406,7 +72260,7 @@ entities: pos: -7.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7313 components: - type: Transform @@ -73414,7 +72268,7 @@ entities: pos: -6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7314 components: - type: Transform @@ -73422,7 +72276,7 @@ entities: pos: -5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7315 components: - type: Transform @@ -73430,42 +72284,42 @@ entities: pos: -4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7316 components: - type: Transform pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7317 components: - type: Transform pos: -3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7318 components: - type: Transform pos: -3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7319 components: - type: Transform pos: -1.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7320 components: - type: Transform pos: -1.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7324 components: - type: Transform @@ -73473,7 +72327,7 @@ entities: pos: -3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7325 components: - type: Transform @@ -73481,7 +72335,7 @@ entities: pos: -4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7326 components: - type: Transform @@ -73489,7 +72343,7 @@ entities: pos: -5.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7327 components: - type: Transform @@ -73497,7 +72351,7 @@ entities: pos: -6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7328 components: - type: Transform @@ -73505,7 +72359,7 @@ entities: pos: -7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7329 components: - type: Transform @@ -73513,7 +72367,7 @@ entities: pos: -8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7330 components: - type: Transform @@ -73521,28 +72375,28 @@ entities: pos: -9.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7331 components: - type: Transform pos: -10.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7332 components: - type: Transform pos: -10.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7333 components: - type: Transform pos: -10.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7334 components: - type: Transform @@ -73550,7 +72404,7 @@ entities: pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7335 components: - type: Transform @@ -73558,7 +72412,7 @@ entities: pos: -9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7336 components: - type: Transform @@ -73566,70 +72420,70 @@ entities: pos: -10.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7341 components: - type: Transform pos: -12.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7342 components: - type: Transform pos: -12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7343 components: - type: Transform pos: -12.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7344 components: - type: Transform pos: -12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7345 components: - type: Transform pos: -12.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7347 components: - type: Transform pos: -11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7348 components: - type: Transform pos: -11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7349 components: - type: Transform pos: -11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7350 components: - type: Transform pos: -11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7357 components: - type: Transform @@ -73637,7 +72491,7 @@ entities: pos: -10.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7358 components: - type: Transform @@ -73645,7 +72499,7 @@ entities: pos: -9.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7359 components: - type: Transform @@ -73653,7 +72507,7 @@ entities: pos: -8.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7361 components: - type: Transform @@ -73661,7 +72515,7 @@ entities: pos: -10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7362 components: - type: Transform @@ -73669,7 +72523,7 @@ entities: pos: -8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7363 components: - type: Transform @@ -73677,7 +72531,7 @@ entities: pos: -9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7375 components: - type: Transform @@ -73685,28 +72539,28 @@ entities: pos: -6.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7400 components: - type: Transform pos: -19.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7401 components: - type: Transform pos: -19.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7405 components: - type: Transform pos: -17.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7406 components: - type: Transform @@ -73714,21 +72568,21 @@ entities: pos: -24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7409 components: - type: Transform pos: -34.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7410 components: - type: Transform pos: -34.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7480 components: - type: Transform @@ -73742,7 +72596,7 @@ entities: pos: -20.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7495 components: - type: Transform @@ -73750,7 +72604,7 @@ entities: pos: -21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7505 components: - type: Transform @@ -73758,14 +72612,14 @@ entities: pos: -25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7526 components: - type: Transform pos: -34.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7531 components: - type: Transform @@ -73773,7 +72627,7 @@ entities: pos: -16.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7551 components: - type: Transform @@ -73781,7 +72635,7 @@ entities: pos: -26.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7566 components: - type: Transform @@ -73789,7 +72643,7 @@ entities: pos: -19.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7568 components: - type: Transform @@ -73797,7 +72651,7 @@ entities: pos: -21.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7570 components: - type: Transform @@ -73805,7 +72659,7 @@ entities: pos: -20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7573 components: - type: Transform @@ -73813,7 +72667,7 @@ entities: pos: -22.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7599 components: - type: Transform @@ -73821,7 +72675,7 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7604 components: - type: Transform @@ -73829,7 +72683,7 @@ entities: pos: -27.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7661 components: - type: Transform @@ -73837,7 +72691,7 @@ entities: pos: -19.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7662 components: - type: Transform @@ -73845,7 +72699,7 @@ entities: pos: -30.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7664 components: - type: Transform @@ -73853,7 +72707,7 @@ entities: pos: -30.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7665 components: - type: Transform @@ -73861,7 +72715,7 @@ entities: pos: -28.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7668 components: - type: Transform @@ -73869,31 +72723,7 @@ entities: pos: -30.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7755 components: - type: Transform @@ -73901,7 +72731,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7756 components: - type: Transform @@ -73909,7 +72739,7 @@ entities: pos: -29.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7761 components: - type: Transform @@ -73917,7 +72747,7 @@ entities: pos: -26.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7763 components: - type: Transform @@ -73925,7 +72755,7 @@ entities: pos: -29.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7764 components: - type: Transform @@ -73933,7 +72763,7 @@ entities: pos: -28.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7816 components: - type: Transform @@ -73941,7 +72771,7 @@ entities: pos: -29.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7817 components: - type: Transform @@ -73949,7 +72779,7 @@ entities: pos: -26.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7818 components: - type: Transform @@ -73957,7 +72787,7 @@ entities: pos: -27.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7821 components: - type: Transform @@ -73965,7 +72795,7 @@ entities: pos: -32.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7832 components: - type: Transform @@ -73973,7 +72803,7 @@ entities: pos: -17.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7884 components: - type: Transform @@ -73981,15 +72811,7 @@ entities: pos: -31.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0000FFFF' - uid: 7925 components: - type: Transform @@ -73997,7 +72819,7 @@ entities: pos: -18.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7928 components: - type: Transform @@ -74005,7 +72827,7 @@ entities: pos: -19.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7929 components: - type: Transform @@ -74013,21 +72835,21 @@ entities: pos: -13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7950 components: - type: Transform pos: -28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7951 components: - type: Transform pos: -28.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7958 components: - type: Transform @@ -74035,7 +72857,7 @@ entities: pos: -22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7999 components: - type: Transform @@ -74043,7 +72865,7 @@ entities: pos: -20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8029 components: - type: Transform @@ -74051,7 +72873,7 @@ entities: pos: -22.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8030 components: - type: Transform @@ -74059,7 +72881,7 @@ entities: pos: -22.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8031 components: - type: Transform @@ -74067,7 +72889,7 @@ entities: pos: -22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8032 components: - type: Transform @@ -74075,7 +72897,7 @@ entities: pos: -22.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8037 components: - type: Transform @@ -74083,7 +72905,7 @@ entities: pos: -22.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8041 components: - type: Transform @@ -74091,7 +72913,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8042 components: - type: Transform @@ -74099,7 +72921,7 @@ entities: pos: -17.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8049 components: - type: Transform @@ -74107,7 +72929,7 @@ entities: pos: -27.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8050 components: - type: Transform @@ -74115,7 +72937,7 @@ entities: pos: -29.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8057 components: - type: Transform @@ -74123,28 +72945,28 @@ entities: pos: -20.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8060 components: - type: Transform pos: -28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8061 components: - type: Transform pos: -11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8065 components: - type: Transform pos: -28.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8066 components: - type: Transform @@ -74152,7 +72974,7 @@ entities: pos: -20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8067 components: - type: Transform @@ -74160,7 +72982,7 @@ entities: pos: -18.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8068 components: - type: Transform @@ -74168,7 +72990,7 @@ entities: pos: -20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8072 components: - type: Transform @@ -74176,14 +72998,14 @@ entities: pos: -22.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8077 components: - type: Transform pos: -28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8088 components: - type: Transform @@ -74191,7 +73013,7 @@ entities: pos: -20.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8091 components: - type: Transform @@ -74199,14 +73021,14 @@ entities: pos: -22.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8094 components: - type: Transform pos: -13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8095 components: - type: Transform @@ -74214,7 +73036,7 @@ entities: pos: -15.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8097 components: - type: Transform @@ -74222,14 +73044,14 @@ entities: pos: -24.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8098 components: - type: Transform pos: -13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8099 components: - type: Transform @@ -74237,7 +73059,7 @@ entities: pos: -21.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8105 components: - type: Transform @@ -74245,7 +73067,7 @@ entities: pos: -23.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8106 components: - type: Transform @@ -74253,7 +73075,7 @@ entities: pos: -20.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8141 components: - type: Transform @@ -74261,7 +73083,7 @@ entities: pos: -20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8142 components: - type: Transform @@ -74269,7 +73091,7 @@ entities: pos: -20.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8213 components: - type: Transform @@ -74277,7 +73099,7 @@ entities: pos: -26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8214 components: - type: Transform @@ -74285,7 +73107,7 @@ entities: pos: -25.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8217 components: - type: Transform @@ -74293,7 +73115,7 @@ entities: pos: -20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8218 components: - type: Transform @@ -74301,7 +73123,7 @@ entities: pos: -21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8221 components: - type: Transform @@ -74309,7 +73131,7 @@ entities: pos: -24.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8222 components: - type: Transform @@ -74317,7 +73139,61 @@ entities: pos: -22.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8384 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8393 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 8543 components: - type: Transform @@ -74331,7 +73207,7 @@ entities: pos: -33.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8575 components: - type: Transform @@ -74681,7 +73557,7 @@ entities: pos: 9.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8778 components: - type: Transform @@ -74689,7 +73565,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8780 components: - type: Transform @@ -74697,7 +73573,7 @@ entities: pos: 12.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8782 components: - type: Transform @@ -74705,7 +73581,7 @@ entities: pos: 14.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8783 components: - type: Transform @@ -74713,7 +73589,7 @@ entities: pos: 15.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8785 components: - type: Transform @@ -74721,7 +73597,7 @@ entities: pos: 16.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8787 components: - type: Transform @@ -74729,7 +73605,7 @@ entities: pos: 17.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8788 components: - type: Transform @@ -74737,7 +73613,7 @@ entities: pos: 18.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8789 components: - type: Transform @@ -74745,46 +73621,7 @@ entities: pos: 19.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8807 - components: - - type: Transform - pos: -9.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8839 components: - type: Transform @@ -74792,7 +73629,7 @@ entities: pos: 14.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8840 components: - type: Transform @@ -74800,7 +73637,7 @@ entities: pos: 13.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8841 components: - type: Transform @@ -74808,7 +73645,7 @@ entities: pos: 13.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8842 components: - type: Transform @@ -74816,7 +73653,7 @@ entities: pos: 15.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8843 components: - type: Transform @@ -74824,7 +73661,7 @@ entities: pos: 12.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8844 components: - type: Transform @@ -74832,7 +73669,7 @@ entities: pos: 10.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8846 components: - type: Transform @@ -74840,7 +73677,7 @@ entities: pos: 9.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8854 components: - type: Transform @@ -74848,7 +73685,7 @@ entities: pos: -1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8855 components: - type: Transform @@ -74856,7 +73693,7 @@ entities: pos: -0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8856 components: - type: Transform @@ -74864,7 +73701,7 @@ entities: pos: 0.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8857 components: - type: Transform @@ -74872,7 +73709,7 @@ entities: pos: 1.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8858 components: - type: Transform @@ -74880,7 +73717,7 @@ entities: pos: 2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8859 components: - type: Transform @@ -74888,7 +73725,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8860 components: - type: Transform @@ -74896,7 +73733,7 @@ entities: pos: 3.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8861 components: - type: Transform @@ -74904,7 +73741,7 @@ entities: pos: 3.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8862 components: - type: Transform @@ -74912,7 +73749,7 @@ entities: pos: 3.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8864 components: - type: Transform @@ -74920,7 +73757,7 @@ entities: pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8865 components: - type: Transform @@ -74928,21 +73765,21 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8867 components: - type: Transform pos: 7.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8873 components: - type: Transform pos: 7.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8874 components: - type: Transform @@ -74950,14 +73787,14 @@ entities: pos: 8.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8875 components: - type: Transform pos: 7.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8878 components: - type: Transform @@ -74965,7 +73802,7 @@ entities: pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8879 components: - type: Transform @@ -74973,7 +73810,7 @@ entities: pos: 8.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8880 components: - type: Transform @@ -74981,7 +73818,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8881 components: - type: Transform @@ -74989,7 +73826,7 @@ entities: pos: 10.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8882 components: - type: Transform @@ -74997,7 +73834,7 @@ entities: pos: 11.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8883 components: - type: Transform @@ -75005,7 +73842,7 @@ entities: pos: 11.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8885 components: - type: Transform @@ -75013,7 +73850,7 @@ entities: pos: 11.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8886 components: - type: Transform @@ -75021,7 +73858,7 @@ entities: pos: 11.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8887 components: - type: Transform @@ -75029,7 +73866,7 @@ entities: pos: 11.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8888 components: - type: Transform @@ -75037,7 +73874,7 @@ entities: pos: 10.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8889 components: - type: Transform @@ -75045,7 +73882,7 @@ entities: pos: 9.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8890 components: - type: Transform @@ -75053,42 +73890,42 @@ entities: pos: 8.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8891 components: - type: Transform pos: 7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8892 components: - type: Transform pos: 7.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8894 components: - type: Transform pos: 7.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8895 components: - type: Transform pos: 7.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8896 components: - type: Transform pos: 7.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8897 components: - type: Transform @@ -75096,7 +73933,7 @@ entities: pos: 11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8898 components: - type: Transform @@ -75104,7 +73941,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8899 components: - type: Transform @@ -75112,7 +73949,7 @@ entities: pos: 11.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8900 components: - type: Transform @@ -75120,7 +73957,7 @@ entities: pos: 11.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8902 components: - type: Transform @@ -75128,7 +73965,7 @@ entities: pos: 11.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8904 components: - type: Transform @@ -75136,7 +73973,7 @@ entities: pos: 11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8905 components: - type: Transform @@ -75144,7 +73981,7 @@ entities: pos: 11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8906 components: - type: Transform @@ -75152,7 +73989,7 @@ entities: pos: 11.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8907 components: - type: Transform @@ -75160,7 +73997,7 @@ entities: pos: 11.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8908 components: - type: Transform @@ -75168,7 +74005,7 @@ entities: pos: 11.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8909 components: - type: Transform @@ -75176,7 +74013,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8910 components: - type: Transform @@ -75184,7 +74021,7 @@ entities: pos: 11.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8913 components: - type: Transform @@ -75192,7 +74029,7 @@ entities: pos: 10.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8914 components: - type: Transform @@ -75200,7 +74037,7 @@ entities: pos: -0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8915 components: - type: Transform @@ -75208,7 +74045,7 @@ entities: pos: 0.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8916 components: - type: Transform @@ -75216,7 +74053,7 @@ entities: pos: 1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8917 components: - type: Transform @@ -75224,7 +74061,7 @@ entities: pos: 2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8918 components: - type: Transform @@ -75232,7 +74069,7 @@ entities: pos: 3.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8921 components: - type: Transform @@ -75240,7 +74077,7 @@ entities: pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8922 components: - type: Transform @@ -75248,7 +74085,7 @@ entities: pos: 7.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8923 components: - type: Transform @@ -75256,7 +74093,7 @@ entities: pos: 8.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8924 components: - type: Transform @@ -75264,7 +74101,7 @@ entities: pos: 5.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8925 components: - type: Transform @@ -75272,7 +74109,7 @@ entities: pos: 5.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8926 components: - type: Transform @@ -75280,7 +74117,7 @@ entities: pos: 5.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8927 components: - type: Transform @@ -75288,7 +74125,7 @@ entities: pos: 8.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8928 components: - type: Transform @@ -75296,7 +74133,7 @@ entities: pos: 5.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8929 components: - type: Transform @@ -75304,14 +74141,14 @@ entities: pos: 4.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8930 components: - type: Transform pos: 7.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8931 components: - type: Transform @@ -75319,7 +74156,7 @@ entities: pos: 3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8932 components: - type: Transform @@ -75327,7 +74164,7 @@ entities: pos: 5.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8933 components: - type: Transform @@ -75345,7 +74182,7 @@ entities: pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8935 components: - type: Transform @@ -75353,7 +74190,7 @@ entities: pos: 6.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8937 components: - type: Transform @@ -75361,7 +74198,7 @@ entities: pos: 6.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8938 components: - type: Transform @@ -75369,7 +74206,7 @@ entities: pos: 8.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8941 components: - type: Transform @@ -75377,7 +74214,7 @@ entities: pos: 10.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8942 components: - type: Transform @@ -75385,7 +74222,7 @@ entities: pos: 11.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8943 components: - type: Transform @@ -75393,7 +74230,7 @@ entities: pos: 12.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8945 components: - type: Transform @@ -75401,7 +74238,7 @@ entities: pos: 13.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8946 components: - type: Transform @@ -75409,7 +74246,7 @@ entities: pos: 13.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8948 components: - type: Transform @@ -75417,7 +74254,7 @@ entities: pos: 13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8949 components: - type: Transform @@ -75425,7 +74262,7 @@ entities: pos: 13.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8950 components: - type: Transform @@ -75433,7 +74270,7 @@ entities: pos: 13.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8951 components: - type: Transform @@ -75441,7 +74278,7 @@ entities: pos: 13.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8952 components: - type: Transform @@ -75449,7 +74286,7 @@ entities: pos: 13.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8953 components: - type: Transform @@ -75457,7 +74294,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8954 components: - type: Transform @@ -75465,7 +74302,7 @@ entities: pos: 13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8956 components: - type: Transform @@ -75473,7 +74310,7 @@ entities: pos: 13.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8958 components: - type: Transform @@ -75481,7 +74318,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8959 components: - type: Transform @@ -75489,7 +74326,7 @@ entities: pos: 13.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8961 components: - type: Transform @@ -75497,7 +74334,7 @@ entities: pos: 13.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8962 components: - type: Transform @@ -75505,7 +74342,7 @@ entities: pos: 13.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8963 components: - type: Transform @@ -75513,7 +74350,7 @@ entities: pos: 13.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8964 components: - type: Transform @@ -75521,7 +74358,7 @@ entities: pos: 13.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8965 components: - type: Transform @@ -75529,7 +74366,7 @@ entities: pos: 13.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8967 components: - type: Transform @@ -75537,7 +74374,7 @@ entities: pos: 11.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8969 components: - type: Transform @@ -75545,7 +74382,7 @@ entities: pos: 12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8970 components: - type: Transform @@ -75553,7 +74390,7 @@ entities: pos: 11.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8971 components: - type: Transform @@ -75561,7 +74398,7 @@ entities: pos: 10.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8972 components: - type: Transform @@ -75569,7 +74406,7 @@ entities: pos: 9.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8973 components: - type: Transform @@ -75577,7 +74414,7 @@ entities: pos: 9.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8974 components: - type: Transform @@ -75585,7 +74422,7 @@ entities: pos: 9.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8975 components: - type: Transform @@ -75593,7 +74430,7 @@ entities: pos: 9.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8976 components: - type: Transform @@ -75601,7 +74438,7 @@ entities: pos: 9.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8977 components: - type: Transform @@ -75609,7 +74446,7 @@ entities: pos: 9.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9015 components: - type: Transform @@ -75659,7 +74496,7 @@ entities: pos: -22.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9036 components: - type: Transform @@ -75667,7 +74504,7 @@ entities: pos: -29.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9039 components: - type: Transform @@ -75675,21 +74512,21 @@ entities: pos: -29.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9050 components: - type: Transform pos: -13.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9052 components: - type: Transform pos: -13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9053 components: - type: Transform @@ -75697,37 +74534,45 @@ entities: pos: -14.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9062 + color: '#0000FFFF' + - uid: 9075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-49.5 + pos: 6.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9065 + color: '#EB9834FF' + - uid: 9217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 + rot: 3.141592653589793 rad + pos: -3.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9075 + color: '#FF0000FF' + - uid: 9261 components: - type: Transform - pos: 6.5,-37.5 + pos: 7.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9261 + color: '#0000FFFF' + - uid: 9294 components: - type: Transform - pos: 7.5,-21.5 + rot: 1.5707963267948966 rad + pos: 5.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' + - uid: 9320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9341 components: - type: Transform @@ -75735,31 +74580,169 @@ entities: pos: -49.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9623 + color: '#0000FFFF' + - uid: 9416 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9417 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9424 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9425 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9426 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9431 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9432 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9433 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9445 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-39.5 + pos: -14.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9659 + color: '#FF0000FF' + - uid: 9447 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9449 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9450 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9564 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9590 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-52.5 + pos: -7.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9660 + color: '#0000FFFF' + - uid: 9608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-52.5 + pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0000FFFF' + - uid: 9638 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9639 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 9670 components: - type: Transform @@ -75767,7 +74750,15 @@ entities: pos: -29.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 30 + - type: AtmosPipeColor + color: '#EB9834FF' - uid: 9685 components: - type: Transform @@ -75775,7 +74766,7 @@ entities: pos: -23.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9687 components: - type: Transform @@ -75783,7 +74774,7 @@ entities: pos: -24.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9688 components: - type: Transform @@ -75791,15 +74782,15 @@ entities: pos: -24.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9702 + color: '#0000FFFF' + - uid: 9701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-51.5 + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#EB9834FF' - uid: 9729 components: - type: Transform @@ -75807,7 +74798,7 @@ entities: pos: 3.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9730 components: - type: Transform @@ -75815,7 +74806,7 @@ entities: pos: 2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9731 components: - type: Transform @@ -75823,7 +74814,7 @@ entities: pos: 1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9732 components: - type: Transform @@ -75831,7 +74822,7 @@ entities: pos: 0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9733 components: - type: Transform @@ -75839,7 +74830,7 @@ entities: pos: -0.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9734 components: - type: Transform @@ -75847,7 +74838,7 @@ entities: pos: -1.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9735 components: - type: Transform @@ -75855,70 +74846,70 @@ entities: pos: -2.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9736 components: - type: Transform pos: -3.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9737 components: - type: Transform pos: -3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9738 components: - type: Transform pos: -3.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9739 components: - type: Transform pos: -3.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9740 components: - type: Transform pos: -3.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9741 components: - type: Transform pos: -3.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9742 components: - type: Transform pos: -3.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9743 components: - type: Transform pos: -3.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9745 components: - type: Transform pos: -3.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9747 components: - type: Transform @@ -75926,7 +74917,7 @@ entities: pos: -2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9748 components: - type: Transform @@ -75934,7 +74925,7 @@ entities: pos: -1.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9749 components: - type: Transform @@ -75942,7 +74933,7 @@ entities: pos: -0.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9755 components: - type: Transform @@ -75950,7 +74941,7 @@ entities: pos: -1.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9756 components: - type: Transform @@ -75958,7 +74949,7 @@ entities: pos: -1.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9757 components: - type: Transform @@ -75966,7 +74957,7 @@ entities: pos: -1.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9758 components: - type: Transform @@ -75974,7 +74965,7 @@ entities: pos: -1.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9759 components: - type: Transform @@ -75982,7 +74973,7 @@ entities: pos: -1.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9760 components: - type: Transform @@ -75990,7 +74981,7 @@ entities: pos: -0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9761 components: - type: Transform @@ -75998,7 +74989,7 @@ entities: pos: 0.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9762 components: - type: Transform @@ -76006,7 +74997,7 @@ entities: pos: 1.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9764 components: - type: Transform @@ -76014,7 +75005,7 @@ entities: pos: 3.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9765 components: - type: Transform @@ -76022,7 +75013,7 @@ entities: pos: 4.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9766 components: - type: Transform @@ -76030,7 +75021,7 @@ entities: pos: -0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9767 components: - type: Transform @@ -76038,7 +75029,7 @@ entities: pos: 0.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9768 components: - type: Transform @@ -76046,139 +75037,138 @@ entities: pos: 1.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9771 components: - type: Transform pos: 2.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9772 components: - type: Transform pos: 2.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9773 components: - type: Transform pos: 2.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9775 components: - type: Transform pos: 2.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9776 components: - type: Transform pos: 0.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9777 components: - type: Transform pos: 0.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9778 components: - type: Transform pos: 0.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9780 components: - type: Transform pos: 0.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9781 components: - type: Transform pos: 0.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9782 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9783 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9784 components: - type: Transform pos: 2.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9785 components: - type: Transform pos: 2.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9786 components: - type: Transform pos: 2.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9787 components: - type: Transform pos: 2.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9788 components: - type: Transform - pos: 2.5,-37.5 + rot: 3.141592653589793 rad + pos: 8.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9789 + color: '#EB9834FF' + - uid: 9794 components: - type: Transform - pos: 2.5,-38.5 + rot: 3.141592653589793 rad + pos: 2.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9790 + color: '#0000FFFF' + - uid: 9795 components: - type: Transform - pos: 2.5,-39.5 + rot: 3.141592653589793 rad + pos: 2.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9806 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-57.5 + pos: 2.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-38.5 parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9810 components: - type: Transform @@ -76186,14 +75176,14 @@ entities: pos: -54.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9834 components: - type: Transform pos: -34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9853 components: - type: Transform @@ -76201,7 +75191,7 @@ entities: pos: -23.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9860 components: - type: Transform @@ -76209,7 +75199,7 @@ entities: pos: -23.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9861 components: - type: Transform @@ -76217,15 +75207,7 @@ entities: pos: -24.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9863 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 9865 components: - type: Transform @@ -76233,215 +75215,137 @@ entities: pos: -18.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9873 + color: '#0000FFFF' + - uid: 9886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 + pos: -22.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9874 + color: '#FF0000FF' + - uid: 9887 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9877 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 + pos: -0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9880 + color: '#0000FFFF' + - uid: 9893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-54.5 + pos: -15.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9881 + color: '#0000FFFF' + - uid: 9900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-54.5 + pos: -10.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9882 + color: '#0000FFFF' + - uid: 9901 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-52.5 + pos: -9.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9886 + color: '#0000FFFF' + - uid: 9904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-51.5 + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9887 + color: '#0000FFFF' + - uid: 9906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-50.5 + rot: -1.5707963267948966 rad + pos: -3.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9888 + color: '#0000FFFF' + - uid: 9907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-49.5 + rot: -1.5707963267948966 rad + pos: -5.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9889 + color: '#0000FFFF' + - uid: 9920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-48.5 + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9890 + color: '#0000FFFF' + - uid: 9921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-47.5 + pos: -11.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9891 + color: '#0000FFFF' + - uid: 9922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 + rot: 1.5707963267948966 rad + pos: -12.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9892 + color: '#0000FFFF' + - uid: 9923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 + pos: -11.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9893 + color: '#0000FFFF' + - uid: 9924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-43.5 + pos: -11.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9894 + color: '#0000FFFF' + - uid: 9925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-42.5 + pos: -11.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9895 + color: '#0000FFFF' + - uid: 9936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-41.5 + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9896 + color: '#0000FFFF' + - uid: 9966 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-40.5 + pos: -4.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' - - uid: 9897 + color: '#FF0000FF' + - uid: 9979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-39.5 + pos: -22.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#EB9834FF' + color: '#FF0000FF' - uid: 9980 components: - type: Transform @@ -76459,569 +75363,541 @@ entities: pos: 5.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9984 components: - type: Transform pos: 5.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10091 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11075 + color: '#FF0000FF' + - uid: 9988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-39.5 + pos: -16.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11076 + color: '#FF0000FF' + - uid: 10019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 + pos: -11.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11077 + color: '#0000FFFF' + - uid: 10020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 + pos: -11.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11079 + color: '#0000FFFF' + - uid: 10021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-39.5 + pos: -11.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11081 + color: '#0000FFFF' + - uid: 10091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 + pos: 5.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11082 + color: '#FF0000FF' + - uid: 10120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-39.5 + pos: -18.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11083 + color: '#0000FFFF' + - uid: 10128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 + rot: 3.141592653589793 rad + pos: 8.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11084 + color: '#EB9834FF' + - uid: 10129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-39.5 + pos: 6.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11085 + color: '#EB9834FF' + - uid: 10130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-39.5 + pos: 0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11086 + color: '#0000FFFF' + - uid: 10131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-39.5 + pos: -2.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11089 + color: '#0000FFFF' + - uid: 10132 components: - type: Transform - pos: -18.5,-40.5 + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11091 + color: '#0000FFFF' + - uid: 10133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 + rot: 1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11092 + color: '#0000FFFF' + - uid: 10167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-41.5 + rot: 3.141592653589793 rad + pos: 0.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11093 + color: '#FF0000FF' + - uid: 10171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 + pos: -16.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11095 + color: '#FF0000FF' + - uid: 10172 components: - type: Transform - pos: -17.5,-38.5 + pos: -16.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11096 + color: '#FF0000FF' + - uid: 10173 components: - type: Transform - pos: -17.5,-37.5 + pos: -16.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11100 + color: '#FF0000FF' + - uid: 10174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-29.5 + pos: -16.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11103 + color: '#FF0000FF' + - uid: 10175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 + pos: -18.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11104 + color: '#0000FFFF' + - uid: 10212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-30.5 + pos: 6.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11105 + color: '#EB9834FF' + - uid: 10213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 + pos: 6.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11106 + color: '#EB9834FF' + - uid: 10215 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-30.5 + pos: -2.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11108 + color: '#FF0000FF' + - uid: 10216 components: - type: Transform - pos: -8.5,-38.5 + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11109 + color: '#0000FFFF' + - uid: 10217 components: - type: Transform - pos: -8.5,-37.5 + rot: 1.5707963267948966 rad + pos: -19.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11110 + color: '#0000FFFF' + - uid: 10218 components: - type: Transform - pos: -8.5,-36.5 + rot: 1.5707963267948966 rad + pos: -14.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11111 + color: '#0000FFFF' + - uid: 10219 components: - type: Transform - pos: -8.5,-40.5 + rot: 1.5707963267948966 rad + pos: -17.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11112 + color: '#0000FFFF' + - uid: 10220 components: - type: Transform - pos: -8.5,-41.5 + pos: -12.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11113 + color: '#0000FFFF' + - uid: 10262 components: - type: Transform - pos: -8.5,-42.5 + pos: -13.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11116 + color: '#FF0000FF' + - uid: 10263 components: - type: Transform - pos: 2.5,-40.5 + pos: -12.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11118 + color: '#0000FFFF' + - uid: 10264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 + pos: -12.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11119 + color: '#0000FFFF' + - uid: 10267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-41.5 + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11120 + color: '#FF0000FF' + - uid: 10272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-41.5 + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11121 + color: '#0000FFFF' + - uid: 10273 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-41.5 + pos: -11.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11123 + color: '#0000FFFF' + - uid: 10275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 + pos: -18.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11124 + color: '#0000FFFF' + - uid: 10276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 + pos: -16.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11125 + color: '#FF0000FF' + - uid: 10277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 + pos: -16.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11127 + color: '#FF0000FF' + - uid: 10278 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-41.5 + pos: -0.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11128 + color: '#FF0000FF' + - uid: 10280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 + rot: 3.141592653589793 rad + pos: 0.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11129 + color: '#FF0000FF' + - uid: 10281 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-41.5 + pos: -4.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11130 + color: '#FF0000FF' + - uid: 10282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 + rot: 1.5707963267948966 rad + pos: -13.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11131 + color: '#0000FFFF' + - uid: 10290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + rot: 1.5707963267948966 rad + pos: -15.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11133 + color: '#0000FFFF' + - uid: 10397 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-41.5 + pos: -16.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11134 + color: '#0000FFFF' + - uid: 10435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-41.5 + pos: -12.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11135 + color: '#0000FFFF' + - uid: 10436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-41.5 + pos: -13.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11136 + color: '#FF0000FF' + - uid: 10437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-41.5 + pos: -12.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11139 + color: '#0000FFFF' + - uid: 10438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-42.5 + pos: -11.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11141 + color: '#FF0000FF' + - uid: 10535 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-42.5 + pos: -21.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11142 + color: '#0000FFFF' + - uid: 10536 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-42.5 + pos: -20.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11143 + color: '#0000FFFF' + - uid: 10557 components: - type: Transform - pos: -17.5,-43.5 + rot: 3.141592653589793 rad + pos: 8.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11144 + color: '#EB9834FF' + - uid: 10603 components: - type: Transform - pos: -17.5,-44.5 + rot: 3.141592653589793 rad + pos: -3.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11145 + color: '#FF0000FF' + - uid: 10607 components: - type: Transform - pos: -17.5,-45.5 + rot: -1.5707963267948966 rad + pos: -3.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11146 + color: '#FF0000FF' + - uid: 10608 components: - type: Transform - pos: -17.5,-46.5 + rot: 1.5707963267948966 rad + pos: -10.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11147 + color: '#FF0000FF' + - uid: 10609 components: - type: Transform - pos: -19.5,-41.5 + rot: 3.141592653589793 rad + pos: 0.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11148 + color: '#FF0000FF' + - uid: 10610 components: - type: Transform - pos: -19.5,-40.5 + pos: -13.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11149 + color: '#FF0000FF' + - uid: 10635 components: - type: Transform - pos: -19.5,-39.5 + rot: -1.5707963267948966 rad + pos: -7.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11150 + color: '#FF0000FF' + - uid: 10642 components: - type: Transform - pos: -19.5,-38.5 + rot: -1.5707963267948966 rad + pos: -6.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11151 + color: '#FF0000FF' + - uid: 10643 components: - type: Transform - pos: -19.5,-37.5 + rot: 3.141592653589793 rad + pos: -8.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11156 + color: '#FF0000FF' + - uid: 10793 components: - type: Transform - pos: -6.5,-42.5 + pos: 6.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11157 + color: '#EB9834FF' + - uid: 11088 components: - type: Transform - pos: -6.5,-40.5 + rot: 3.141592653589793 rad + pos: -3.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11158 + color: '#FF0000FF' + - uid: 11100 components: - type: Transform - pos: -6.5,-39.5 + rot: 3.141592653589793 rad + pos: 2.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11159 + color: '#0000FFFF' + - uid: 11102 components: - type: Transform - pos: -6.5,-38.5 + pos: -16.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11160 + color: '#FF0000FF' + - uid: 11109 components: - type: Transform - pos: -6.5,-37.5 + pos: -8.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11161 + color: '#FF0000FF' + - uid: 11118 components: - type: Transform - pos: -6.5,-36.5 + rot: 1.5707963267948966 rad + pos: -10.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11168 + color: '#FF0000FF' + - uid: 11119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-28.5 + rot: 1.5707963267948966 rad + pos: -9.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11169 + color: '#FF0000FF' + - uid: 11131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-28.5 + pos: 7.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11170 + color: '#EB9834FF' + - uid: 11132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + rot: 3.141592653589793 rad + pos: -1.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11171 + color: '#FF0000FF' + - uid: 11133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-28.5 + rot: 3.141592653589793 rad + pos: 2.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11172 + color: '#0000FFFF' + - uid: 11135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 + rot: 3.141592653589793 rad + pos: -1.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11173 + color: '#FF0000FF' + - uid: 11160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 + pos: -6.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11174 + color: '#0000FFFF' + - uid: 11168 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-28.5 + pos: -3.5,-28.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 11175 + - uid: 11169 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-28.5 + pos: -2.5,-28.5 parent: 30 - type: AtmosPipeColor color: '#0335FCFF' @@ -77032,7 +75908,7 @@ entities: pos: 10.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11182 components: - type: Transform @@ -77040,7 +75916,7 @@ entities: pos: 10.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11183 components: - type: Transform @@ -77048,7 +75924,7 @@ entities: pos: 10.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11184 components: - type: Transform @@ -77056,7 +75932,7 @@ entities: pos: 11.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11185 components: - type: Transform @@ -77064,7 +75940,7 @@ entities: pos: 11.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11186 components: - type: Transform @@ -77072,7 +75948,7 @@ entities: pos: 11.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11187 components: - type: Transform @@ -77080,7 +75956,7 @@ entities: pos: 11.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11202 components: - type: Transform @@ -77088,7 +75964,7 @@ entities: pos: 9.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11203 components: - type: Transform @@ -77096,7 +75972,7 @@ entities: pos: 9.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11204 components: - type: Transform @@ -77104,7 +75980,7 @@ entities: pos: 9.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11205 components: - type: Transform @@ -77112,7 +75988,7 @@ entities: pos: 9.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11206 components: - type: Transform @@ -77120,7 +75996,7 @@ entities: pos: 7.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11207 components: - type: Transform @@ -77128,7 +76004,7 @@ entities: pos: 7.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11212 components: - type: Transform @@ -77136,7 +76012,7 @@ entities: pos: 20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11338 components: - type: Transform @@ -77144,7 +76020,7 @@ entities: pos: 29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11640 components: - type: Transform @@ -77152,7 +76028,7 @@ entities: pos: 28.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11641 components: - type: Transform @@ -77160,7 +76036,7 @@ entities: pos: 34.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11665 components: - type: Transform @@ -77168,7 +76044,7 @@ entities: pos: 26.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11672 components: - type: Transform @@ -77176,7 +76052,7 @@ entities: pos: 30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11686 components: - type: Transform @@ -77184,7 +76060,7 @@ entities: pos: 27.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11696 components: - type: Transform @@ -77192,21 +76068,28 @@ entities: pos: 25.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 11701 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11711 components: - type: Transform pos: 33.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11713 components: - type: Transform pos: 29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11745 components: - type: Transform @@ -77214,7 +76097,7 @@ entities: pos: 27.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11781 components: - type: Transform @@ -77222,7 +76105,7 @@ entities: pos: 28.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11802 components: - type: Transform @@ -77230,7 +76113,7 @@ entities: pos: 29.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11858 components: - type: Transform @@ -77238,7 +76121,7 @@ entities: pos: 30.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11862 components: - type: Transform @@ -77246,7 +76129,7 @@ entities: pos: 35.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11870 components: - type: Transform @@ -77254,7 +76137,7 @@ entities: pos: 28.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11875 components: - type: Transform @@ -77262,14 +76145,14 @@ entities: pos: 34.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11878 components: - type: Transform pos: 21.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11880 components: - type: Transform @@ -77277,14 +76160,14 @@ entities: pos: 22.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11881 components: - type: Transform pos: 29.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11897 components: - type: Transform @@ -77292,7 +76175,7 @@ entities: pos: 12.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11898 components: - type: Transform @@ -77300,7 +76183,7 @@ entities: pos: 13.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11899 components: - type: Transform @@ -77308,7 +76191,7 @@ entities: pos: 14.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11900 components: - type: Transform @@ -77316,7 +76199,7 @@ entities: pos: 26.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11901 components: - type: Transform @@ -77324,7 +76207,7 @@ entities: pos: 15.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11902 components: - type: Transform @@ -77332,7 +76215,7 @@ entities: pos: 17.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11903 components: - type: Transform @@ -77340,7 +76223,7 @@ entities: pos: 18.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11905 components: - type: Transform @@ -77348,7 +76231,7 @@ entities: pos: 20.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11906 components: - type: Transform @@ -77356,7 +76239,7 @@ entities: pos: 14.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11907 components: - type: Transform @@ -77364,7 +76247,7 @@ entities: pos: 15.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11908 components: - type: Transform @@ -77372,7 +76255,7 @@ entities: pos: 16.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11909 components: - type: Transform @@ -77380,7 +76263,7 @@ entities: pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11910 components: - type: Transform @@ -77388,7 +76271,7 @@ entities: pos: 18.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11911 components: - type: Transform @@ -77396,7 +76279,7 @@ entities: pos: 19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11912 components: - type: Transform @@ -77404,7 +76287,7 @@ entities: pos: 22.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11913 components: - type: Transform @@ -77412,7 +76295,7 @@ entities: pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11914 components: - type: Transform @@ -77420,7 +76303,7 @@ entities: pos: 22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11915 components: - type: Transform @@ -77428,7 +76311,7 @@ entities: pos: 23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11916 components: - type: Transform @@ -77436,14 +76319,14 @@ entities: pos: 23.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11917 components: - type: Transform pos: 29.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11918 components: - type: Transform @@ -77451,7 +76334,7 @@ entities: pos: 26.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11919 components: - type: Transform @@ -77459,7 +76342,7 @@ entities: pos: 35.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11921 components: - type: Transform @@ -77467,7 +76350,7 @@ entities: pos: 27.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11927 components: - type: Transform @@ -77475,7 +76358,7 @@ entities: pos: 22.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11928 components: - type: Transform @@ -77483,42 +76366,42 @@ entities: pos: 23.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11943 components: - type: Transform pos: 21.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11946 components: - type: Transform pos: 21.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11947 components: - type: Transform pos: 21.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11948 components: - type: Transform pos: 21.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11949 components: - type: Transform pos: 20.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11951 components: - type: Transform @@ -77526,7 +76409,7 @@ entities: pos: 14.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11952 components: - type: Transform @@ -77534,7 +76417,7 @@ entities: pos: 15.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11953 components: - type: Transform @@ -77542,7 +76425,7 @@ entities: pos: 16.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11954 components: - type: Transform @@ -77550,7 +76433,7 @@ entities: pos: 17.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11955 components: - type: Transform @@ -77558,7 +76441,7 @@ entities: pos: 18.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11956 components: - type: Transform @@ -77566,7 +76449,7 @@ entities: pos: 19.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11957 components: - type: Transform @@ -77574,7 +76457,7 @@ entities: pos: 12.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11958 components: - type: Transform @@ -77582,7 +76465,7 @@ entities: pos: 13.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11959 components: - type: Transform @@ -77590,7 +76473,7 @@ entities: pos: 15.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11960 components: - type: Transform @@ -77598,7 +76481,7 @@ entities: pos: 14.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11961 components: - type: Transform @@ -77606,7 +76489,7 @@ entities: pos: 16.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11962 components: - type: Transform @@ -77614,7 +76497,7 @@ entities: pos: 17.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11963 components: - type: Transform @@ -77622,7 +76505,7 @@ entities: pos: 18.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11964 components: - type: Transform @@ -77630,7 +76513,7 @@ entities: pos: 19.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11965 components: - type: Transform @@ -77638,77 +76521,77 @@ entities: pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11969 components: - type: Transform pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11970 components: - type: Transform pos: 21.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11971 components: - type: Transform pos: 21.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11972 components: - type: Transform pos: 21.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11973 components: - type: Transform pos: 21.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11974 components: - type: Transform pos: 20.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11975 components: - type: Transform pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11976 components: - type: Transform pos: 20.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11977 components: - type: Transform pos: 20.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11980 components: - type: Transform pos: 20.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11983 components: - type: Transform @@ -77716,7 +76599,7 @@ entities: pos: 20.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11984 components: - type: Transform @@ -77724,7 +76607,7 @@ entities: pos: 19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11986 components: - type: Transform @@ -77732,7 +76615,7 @@ entities: pos: 21.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11988 components: - type: Transform @@ -77740,7 +76623,7 @@ entities: pos: 23.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11989 components: - type: Transform @@ -77748,7 +76631,7 @@ entities: pos: 27.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11990 components: - type: Transform @@ -77756,7 +76639,7 @@ entities: pos: 26.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11992 components: - type: Transform @@ -77764,7 +76647,7 @@ entities: pos: 28.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11993 components: - type: Transform @@ -77772,7 +76655,7 @@ entities: pos: 31.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12000 components: - type: Transform @@ -77780,7 +76663,7 @@ entities: pos: 25.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12004 components: - type: Transform @@ -77788,7 +76671,7 @@ entities: pos: 30.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12005 components: - type: Transform @@ -77796,7 +76679,7 @@ entities: pos: 30.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12006 components: - type: Transform @@ -77804,7 +76687,7 @@ entities: pos: 30.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12008 components: - type: Transform @@ -77812,7 +76695,7 @@ entities: pos: 25.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12009 components: - type: Transform @@ -77820,7 +76703,7 @@ entities: pos: 25.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12016 components: - type: Transform @@ -77828,14 +76711,14 @@ entities: pos: 31.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12021 components: - type: Transform pos: 29.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12022 components: - type: Transform @@ -77843,7 +76726,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12023 components: - type: Transform @@ -77851,7 +76734,7 @@ entities: pos: 26.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12024 components: - type: Transform @@ -77859,7 +76742,7 @@ entities: pos: 36.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12036 components: - type: Transform @@ -77867,7 +76750,7 @@ entities: pos: 26.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12037 components: - type: Transform @@ -77875,7 +76758,7 @@ entities: pos: 26.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12040 components: - type: Transform @@ -77883,7 +76766,7 @@ entities: pos: 29.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12041 components: - type: Transform @@ -77891,7 +76774,7 @@ entities: pos: 29.5,-0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12042 components: - type: Transform @@ -77899,7 +76782,7 @@ entities: pos: 29.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12061 components: - type: Transform @@ -77907,7 +76790,7 @@ entities: pos: 32.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12065 components: - type: Transform @@ -77915,7 +76798,7 @@ entities: pos: 34.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12066 components: - type: Transform @@ -77923,7 +76806,7 @@ entities: pos: 36.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12082 components: - type: Transform @@ -77931,7 +76814,7 @@ entities: pos: 7.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12101 components: - type: Transform @@ -77939,7 +76822,7 @@ entities: pos: 34.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12127 components: - type: Transform @@ -77947,7 +76830,7 @@ entities: pos: 31.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12130 components: - type: Transform @@ -77955,7 +76838,7 @@ entities: pos: 34.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12236 components: - type: Transform @@ -77963,63 +76846,63 @@ entities: pos: 32.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12464 components: - type: Transform pos: 10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12465 components: - type: Transform pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12466 components: - type: Transform pos: 10.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12467 components: - type: Transform pos: 10.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12468 components: - type: Transform pos: 10.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12469 components: - type: Transform pos: 10.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12470 components: - type: Transform pos: 8.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12471 components: - type: Transform pos: 8.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12474 components: - type: Transform @@ -78027,7 +76910,7 @@ entities: pos: 8.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12475 components: - type: Transform @@ -78035,7 +76918,7 @@ entities: pos: 10.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12476 components: - type: Transform @@ -78043,7 +76926,7 @@ entities: pos: 8.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12477 components: - type: Transform @@ -78051,7 +76934,7 @@ entities: pos: 8.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12478 components: - type: Transform @@ -78059,7 +76942,7 @@ entities: pos: 8.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12479 components: - type: Transform @@ -78067,7 +76950,7 @@ entities: pos: 8.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12480 components: - type: Transform @@ -78075,7 +76958,7 @@ entities: pos: 8.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12481 components: - type: Transform @@ -78083,7 +76966,7 @@ entities: pos: 8.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12482 components: - type: Transform @@ -78091,7 +76974,7 @@ entities: pos: 8.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12483 components: - type: Transform @@ -78099,7 +76982,7 @@ entities: pos: 10.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12484 components: - type: Transform @@ -78107,7 +76990,7 @@ entities: pos: 10.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12485 components: - type: Transform @@ -78115,7 +76998,7 @@ entities: pos: 10.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12486 components: - type: Transform @@ -78123,7 +77006,7 @@ entities: pos: 10.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12487 components: - type: Transform @@ -78131,7 +77014,7 @@ entities: pos: 10.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12494 components: - type: Transform @@ -78139,7 +77022,7 @@ entities: pos: 9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12496 components: - type: Transform @@ -78147,7 +77030,7 @@ entities: pos: 9.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12497 components: - type: Transform @@ -78155,7 +77038,7 @@ entities: pos: 10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12498 components: - type: Transform @@ -78163,7 +77046,7 @@ entities: pos: 11.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12499 components: - type: Transform @@ -78171,7 +77054,7 @@ entities: pos: 12.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12500 components: - type: Transform @@ -78179,7 +77062,7 @@ entities: pos: 13.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12501 components: - type: Transform @@ -78187,7 +77070,7 @@ entities: pos: 14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12502 components: - type: Transform @@ -78195,7 +77078,7 @@ entities: pos: 15.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12504 components: - type: Transform @@ -78203,7 +77086,7 @@ entities: pos: 17.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12505 components: - type: Transform @@ -78211,7 +77094,7 @@ entities: pos: 19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12506 components: - type: Transform @@ -78219,7 +77102,7 @@ entities: pos: 20.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12507 components: - type: Transform @@ -78227,7 +77110,7 @@ entities: pos: 18.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12508 components: - type: Transform @@ -78235,7 +77118,7 @@ entities: pos: 21.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12509 components: - type: Transform @@ -78243,7 +77126,7 @@ entities: pos: 21.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12510 components: - type: Transform @@ -78251,7 +77134,7 @@ entities: pos: 21.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12511 components: - type: Transform @@ -78259,7 +77142,7 @@ entities: pos: 21.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12512 components: - type: Transform @@ -78267,7 +77150,7 @@ entities: pos: 21.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12516 components: - type: Transform @@ -78275,7 +77158,7 @@ entities: pos: 11.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12517 components: - type: Transform @@ -78283,7 +77166,7 @@ entities: pos: 12.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12518 components: - type: Transform @@ -78291,7 +77174,7 @@ entities: pos: 13.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12519 components: - type: Transform @@ -78299,7 +77182,7 @@ entities: pos: 14.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12520 components: - type: Transform @@ -78307,7 +77190,7 @@ entities: pos: 15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12521 components: - type: Transform @@ -78315,7 +77198,7 @@ entities: pos: 16.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12522 components: - type: Transform @@ -78323,7 +77206,7 @@ entities: pos: 17.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12524 components: - type: Transform @@ -78331,7 +77214,7 @@ entities: pos: 19.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12525 components: - type: Transform @@ -78339,7 +77222,7 @@ entities: pos: 20.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12526 components: - type: Transform @@ -78347,7 +77230,7 @@ entities: pos: 21.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12527 components: - type: Transform @@ -78355,7 +77238,7 @@ entities: pos: 22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12529 components: - type: Transform @@ -78363,7 +77246,7 @@ entities: pos: 23.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12530 components: - type: Transform @@ -78371,7 +77254,7 @@ entities: pos: 23.5,28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12531 components: - type: Transform @@ -78379,7 +77262,7 @@ entities: pos: 23.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12532 components: - type: Transform @@ -78387,7 +77270,7 @@ entities: pos: 23.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12533 components: - type: Transform @@ -78395,7 +77278,7 @@ entities: pos: 23.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12534 components: - type: Transform @@ -78403,7 +77286,7 @@ entities: pos: 23.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12535 components: - type: Transform @@ -78411,7 +77294,7 @@ entities: pos: 23.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12546 components: - type: Transform @@ -78419,7 +77302,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12547 components: - type: Transform @@ -78427,7 +77310,7 @@ entities: pos: 21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12548 components: - type: Transform @@ -78435,7 +77318,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12549 components: - type: Transform @@ -78443,7 +77326,7 @@ entities: pos: 21.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12550 components: - type: Transform @@ -78451,7 +77334,7 @@ entities: pos: 23.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12551 components: - type: Transform @@ -78459,7 +77342,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12552 components: - type: Transform @@ -78467,7 +77350,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12553 components: - type: Transform @@ -78475,7 +77358,7 @@ entities: pos: 21.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12554 components: - type: Transform @@ -78483,7 +77366,7 @@ entities: pos: 21.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12555 components: - type: Transform @@ -78491,7 +77374,7 @@ entities: pos: 20.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12556 components: - type: Transform @@ -78499,7 +77382,7 @@ entities: pos: 20.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12557 components: - type: Transform @@ -78507,7 +77390,7 @@ entities: pos: 21.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12558 components: - type: Transform @@ -78515,14 +77398,14 @@ entities: pos: 22.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12560 components: - type: Transform pos: 23.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12561 components: - type: Transform @@ -78530,7 +77413,7 @@ entities: pos: 22.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12562 components: - type: Transform @@ -78538,7 +77421,7 @@ entities: pos: 21.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12563 components: - type: Transform @@ -78546,7 +77429,7 @@ entities: pos: 20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12564 components: - type: Transform @@ -78554,7 +77437,7 @@ entities: pos: 19.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12565 components: - type: Transform @@ -78562,7 +77445,7 @@ entities: pos: 20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12566 components: - type: Transform @@ -78570,7 +77453,7 @@ entities: pos: 19.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12567 components: - type: Transform @@ -78578,7 +77461,7 @@ entities: pos: 20.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12568 components: - type: Transform @@ -78586,7 +77469,7 @@ entities: pos: 19.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12569 components: - type: Transform @@ -78594,7 +77477,7 @@ entities: pos: 22.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12570 components: - type: Transform @@ -78602,7 +77485,7 @@ entities: pos: 21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12571 components: - type: Transform @@ -78610,7 +77493,7 @@ entities: pos: 20.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12572 components: - type: Transform @@ -78618,7 +77501,7 @@ entities: pos: 19.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12573 components: - type: Transform @@ -78626,7 +77509,7 @@ entities: pos: 20.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12574 components: - type: Transform @@ -78634,7 +77517,7 @@ entities: pos: 19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12575 components: - type: Transform @@ -78642,7 +77525,7 @@ entities: pos: 19.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12585 components: - type: Transform @@ -78650,14 +77533,14 @@ entities: pos: 24.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12586 components: - type: Transform pos: 25.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12590 components: - type: Transform @@ -78665,7 +77548,7 @@ entities: pos: 26.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12591 components: - type: Transform @@ -78673,7 +77556,7 @@ entities: pos: 26.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12592 components: - type: Transform @@ -78681,7 +77564,7 @@ entities: pos: 27.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12593 components: - type: Transform @@ -78689,7 +77572,7 @@ entities: pos: 28.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12594 components: - type: Transform @@ -78697,7 +77580,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12595 components: - type: Transform @@ -78705,7 +77588,7 @@ entities: pos: 30.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12596 components: - type: Transform @@ -78713,7 +77596,7 @@ entities: pos: 22.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12597 components: - type: Transform @@ -78721,7 +77604,7 @@ entities: pos: 23.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12598 components: - type: Transform @@ -78729,7 +77612,7 @@ entities: pos: 25.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12601 components: - type: Transform @@ -78737,7 +77620,7 @@ entities: pos: 27.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12602 components: - type: Transform @@ -78745,7 +77628,7 @@ entities: pos: 28.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12603 components: - type: Transform @@ -78753,7 +77636,7 @@ entities: pos: 29.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12604 components: - type: Transform @@ -78761,7 +77644,7 @@ entities: pos: 30.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12607 components: - type: Transform @@ -78769,7 +77652,7 @@ entities: pos: 24.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12608 components: - type: Transform @@ -78777,7 +77660,7 @@ entities: pos: 25.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12609 components: - type: Transform @@ -78785,63 +77668,63 @@ entities: pos: 26.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12612 components: - type: Transform pos: 26.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12613 components: - type: Transform pos: 26.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12614 components: - type: Transform pos: 26.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12615 components: - type: Transform pos: 26.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12616 components: - type: Transform pos: 26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12617 components: - type: Transform pos: 26.5,30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12655 components: - type: Transform pos: 28.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12658 components: - type: Transform pos: 28.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12677 components: - type: Transform @@ -78849,14 +77732,14 @@ entities: pos: 26.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12745 components: - type: Transform pos: 16.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12752 components: - type: Transform @@ -78876,7 +77759,7 @@ entities: pos: 27.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12812 components: - type: Transform @@ -78884,14 +77767,14 @@ entities: pos: 26.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12825 components: - type: Transform pos: 28.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12873 components: - type: Transform @@ -78899,7 +77782,7 @@ entities: pos: 23.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12876 components: - type: Transform @@ -78907,7 +77790,7 @@ entities: pos: 24.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12879 components: - type: Transform @@ -78915,7 +77798,7 @@ entities: pos: 22.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12880 components: - type: Transform @@ -78923,7 +77806,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12884 components: - type: Transform @@ -78931,7 +77814,7 @@ entities: pos: 24.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12887 components: - type: Transform @@ -78939,7 +77822,7 @@ entities: pos: 25.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12888 components: - type: Transform @@ -78947,7 +77830,7 @@ entities: pos: 27.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12907 components: - type: Transform @@ -78960,7 +77843,7 @@ entities: pos: 26.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12924 components: - type: Transform @@ -78973,7 +77856,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12939 components: - type: Transform @@ -78981,7 +77864,7 @@ entities: pos: 13.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12941 components: - type: Transform @@ -78989,7 +77872,7 @@ entities: pos: 15.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12942 components: - type: Transform @@ -78997,15 +77880,7 @@ entities: pos: 16.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12945 components: - type: Transform @@ -79013,7 +77888,7 @@ entities: pos: 19.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12946 components: - type: Transform @@ -79021,7 +77896,7 @@ entities: pos: 20.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12947 components: - type: Transform @@ -79029,7 +77904,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12948 components: - type: Transform @@ -79037,7 +77912,7 @@ entities: pos: 22.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12950 components: - type: Transform @@ -79045,7 +77920,7 @@ entities: pos: 23.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12952 components: - type: Transform @@ -79053,7 +77928,7 @@ entities: pos: 23.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12953 components: - type: Transform @@ -79061,7 +77936,7 @@ entities: pos: 23.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12955 components: - type: Transform @@ -79069,7 +77944,7 @@ entities: pos: 23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12957 components: - type: Transform @@ -79077,7 +77952,7 @@ entities: pos: 25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12958 components: - type: Transform @@ -79085,7 +77960,7 @@ entities: pos: 24.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12962 components: - type: Transform @@ -79093,7 +77968,7 @@ entities: pos: 27.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12964 components: - type: Transform @@ -79101,7 +77976,7 @@ entities: pos: 29.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12965 components: - type: Transform @@ -79109,7 +77984,7 @@ entities: pos: 30.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12966 components: - type: Transform @@ -79117,21 +77992,21 @@ entities: pos: 31.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12967 components: - type: Transform pos: 32.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12968 components: - type: Transform pos: 32.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12969 components: - type: Transform @@ -79139,7 +78014,7 @@ entities: pos: 33.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12970 components: - type: Transform @@ -79147,7 +78022,7 @@ entities: pos: 34.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12971 components: - type: Transform @@ -79155,7 +78030,7 @@ entities: pos: 35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12972 components: - type: Transform @@ -79163,7 +78038,7 @@ entities: pos: 36.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12977 components: - type: Transform @@ -79171,7 +78046,7 @@ entities: pos: 22.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12978 components: - type: Transform @@ -79179,7 +78054,7 @@ entities: pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12979 components: - type: Transform @@ -79187,7 +78062,7 @@ entities: pos: 20.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12980 components: - type: Transform @@ -79195,7 +78070,7 @@ entities: pos: 19.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12981 components: - type: Transform @@ -79203,7 +78078,7 @@ entities: pos: 18.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12982 components: - type: Transform @@ -79211,21 +78086,21 @@ entities: pos: 17.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12984 components: - type: Transform pos: 23.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12985 components: - type: Transform pos: 23.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12987 components: - type: Transform @@ -79233,7 +78108,7 @@ entities: pos: 14.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12988 components: - type: Transform @@ -79241,7 +78116,7 @@ entities: pos: 14.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12990 components: - type: Transform @@ -79249,7 +78124,7 @@ entities: pos: 14.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12992 components: - type: Transform @@ -79257,7 +78132,7 @@ entities: pos: 15.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12993 components: - type: Transform @@ -79265,7 +78140,7 @@ entities: pos: 16.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12994 components: - type: Transform @@ -79273,7 +78148,7 @@ entities: pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12998 components: - type: Transform @@ -79281,7 +78156,7 @@ entities: pos: 22.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12999 components: - type: Transform @@ -79289,7 +78164,7 @@ entities: pos: 21.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13000 components: - type: Transform @@ -79297,7 +78172,7 @@ entities: pos: 20.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13001 components: - type: Transform @@ -79305,7 +78180,7 @@ entities: pos: 19.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13008 components: - type: Transform @@ -79313,7 +78188,7 @@ entities: pos: 9.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13009 components: - type: Transform @@ -79321,7 +78196,7 @@ entities: pos: 10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13010 components: - type: Transform @@ -79329,7 +78204,7 @@ entities: pos: 11.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13012 components: - type: Transform @@ -79337,7 +78212,7 @@ entities: pos: 12.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13013 components: - type: Transform @@ -79345,7 +78220,7 @@ entities: pos: 12.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13014 components: - type: Transform @@ -79353,7 +78228,7 @@ entities: pos: 12.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13015 components: - type: Transform @@ -79361,7 +78236,7 @@ entities: pos: 12.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13018 components: - type: Transform @@ -79369,7 +78244,7 @@ entities: pos: 14.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13019 components: - type: Transform @@ -79377,7 +78252,7 @@ entities: pos: 15.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13020 components: - type: Transform @@ -79385,14 +78260,14 @@ entities: pos: 16.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13021 components: - type: Transform pos: 17.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13023 components: - type: Transform @@ -79400,7 +78275,7 @@ entities: pos: 12.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13025 components: - type: Transform @@ -79408,7 +78283,7 @@ entities: pos: 13.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13026 components: - type: Transform @@ -79416,7 +78291,7 @@ entities: pos: 14.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13027 components: - type: Transform @@ -79424,7 +78299,7 @@ entities: pos: 15.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13028 components: - type: Transform @@ -79432,7 +78307,7 @@ entities: pos: 16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13029 components: - type: Transform @@ -79440,7 +78315,7 @@ entities: pos: 17.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13031 components: - type: Transform @@ -79448,7 +78323,7 @@ entities: pos: 19.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13032 components: - type: Transform @@ -79456,21 +78331,21 @@ entities: pos: 20.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13040 components: - type: Transform pos: 17.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13041 components: - type: Transform pos: 17.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13042 components: - type: Transform @@ -79478,7 +78353,7 @@ entities: pos: 18.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13043 components: - type: Transform @@ -79486,7 +78361,7 @@ entities: pos: 19.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13044 components: - type: Transform @@ -79494,7 +78369,7 @@ entities: pos: 20.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13045 components: - type: Transform @@ -79502,7 +78377,7 @@ entities: pos: 21.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13046 components: - type: Transform @@ -79510,7 +78385,7 @@ entities: pos: 21.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13047 components: - type: Transform @@ -79518,23 +78393,7 @@ entities: pos: 21.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,12.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,13.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13050 components: - type: Transform @@ -79542,7 +78401,7 @@ entities: pos: 20.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13051 components: - type: Transform @@ -79550,7 +78409,7 @@ entities: pos: 19.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13052 components: - type: Transform @@ -79558,7 +78417,7 @@ entities: pos: 18.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13053 components: - type: Transform @@ -79566,28 +78425,28 @@ entities: pos: 17.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13054 components: - type: Transform pos: 21.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13055 components: - type: Transform pos: 21.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13056 components: - type: Transform pos: 21.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13057 components: - type: Transform @@ -79595,7 +78454,7 @@ entities: pos: 22.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13058 components: - type: Transform @@ -79603,7 +78462,7 @@ entities: pos: 23.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13060 components: - type: Transform @@ -79611,7 +78470,7 @@ entities: pos: 24.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13061 components: - type: Transform @@ -79619,7 +78478,7 @@ entities: pos: 26.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13062 components: - type: Transform @@ -79627,7 +78486,7 @@ entities: pos: 28.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13063 components: - type: Transform @@ -79635,7 +78494,7 @@ entities: pos: 29.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13064 components: - type: Transform @@ -79643,7 +78502,7 @@ entities: pos: 30.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13065 components: - type: Transform @@ -79651,7 +78510,7 @@ entities: pos: 31.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13066 components: - type: Transform @@ -79659,7 +78518,7 @@ entities: pos: 32.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13067 components: - type: Transform @@ -79667,7 +78526,7 @@ entities: pos: 33.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13068 components: - type: Transform @@ -79675,7 +78534,7 @@ entities: pos: 34.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13069 components: - type: Transform @@ -79683,7 +78542,7 @@ entities: pos: 35.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13070 components: - type: Transform @@ -79691,7 +78550,7 @@ entities: pos: 36.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13071 components: - type: Transform @@ -79699,7 +78558,7 @@ entities: pos: 37.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13089 components: - type: Transform @@ -79707,7 +78566,7 @@ entities: pos: 24.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13090 components: - type: Transform @@ -79715,14 +78574,14 @@ entities: pos: 25.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13152 components: - type: Transform pos: 28.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13337 components: - type: Transform @@ -79730,7 +78589,7 @@ entities: pos: 25.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13339 components: - type: Transform @@ -79738,7 +78597,7 @@ entities: pos: 39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13348 components: - type: Transform @@ -79746,7 +78605,7 @@ entities: pos: 40.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13349 components: - type: Transform @@ -79754,7 +78613,7 @@ entities: pos: 40.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13350 components: - type: Transform @@ -79762,7 +78621,7 @@ entities: pos: 40.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13351 components: - type: Transform @@ -79770,7 +78629,7 @@ entities: pos: 40.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13352 components: - type: Transform @@ -79778,14 +78637,14 @@ entities: pos: 40.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13468 components: - type: Transform pos: 16.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13635 components: - type: Transform @@ -79793,7 +78652,7 @@ entities: pos: 51.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13636 components: - type: Transform @@ -79801,7 +78660,7 @@ entities: pos: 49.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13637 components: - type: Transform @@ -79809,7 +78668,7 @@ entities: pos: 47.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13638 components: - type: Transform @@ -79817,7 +78676,7 @@ entities: pos: 45.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13639 components: - type: Transform @@ -79825,7 +78684,7 @@ entities: pos: 43.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13640 components: - type: Transform @@ -79833,7 +78692,7 @@ entities: pos: 34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13641 components: - type: Transform @@ -79841,7 +78700,7 @@ entities: pos: 36.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13754 components: - type: Transform @@ -79849,7 +78708,7 @@ entities: pos: 32.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13755 components: - type: Transform @@ -79857,7 +78716,7 @@ entities: pos: 33.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13756 components: - type: Transform @@ -79865,7 +78724,7 @@ entities: pos: 34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13758 components: - type: Transform @@ -79873,7 +78732,7 @@ entities: pos: 36.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13759 components: - type: Transform @@ -79881,7 +78740,7 @@ entities: pos: 37.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13760 components: - type: Transform @@ -79889,7 +78748,7 @@ entities: pos: 38.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13761 components: - type: Transform @@ -79897,7 +78756,7 @@ entities: pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13762 components: - type: Transform @@ -79905,7 +78764,7 @@ entities: pos: 40.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13763 components: - type: Transform @@ -79913,7 +78772,7 @@ entities: pos: 41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13764 components: - type: Transform @@ -79921,7 +78780,7 @@ entities: pos: 42.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13766 components: - type: Transform @@ -79929,7 +78788,7 @@ entities: pos: 44.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13769 components: - type: Transform @@ -79937,7 +78796,7 @@ entities: pos: 32.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13770 components: - type: Transform @@ -79945,7 +78804,7 @@ entities: pos: 33.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13771 components: - type: Transform @@ -79953,7 +78812,7 @@ entities: pos: 34.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13773 components: - type: Transform @@ -79961,7 +78820,7 @@ entities: pos: 36.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13774 components: - type: Transform @@ -79969,7 +78828,7 @@ entities: pos: 37.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13775 components: - type: Transform @@ -79977,7 +78836,7 @@ entities: pos: 38.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13777 components: - type: Transform @@ -79985,7 +78844,7 @@ entities: pos: 40.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13778 components: - type: Transform @@ -79993,7 +78852,7 @@ entities: pos: 41.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13779 components: - type: Transform @@ -80001,7 +78860,7 @@ entities: pos: 42.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13780 components: - type: Transform @@ -80009,7 +78868,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13781 components: - type: Transform @@ -80017,28 +78876,28 @@ entities: pos: 44.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13785 components: - type: Transform pos: 30.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13786 components: - type: Transform pos: 30.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13787 components: - type: Transform pos: 30.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13792 components: - type: Transform @@ -80046,7 +78905,7 @@ entities: pos: 29.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13793 components: - type: Transform @@ -80054,7 +78913,7 @@ entities: pos: 29.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13794 components: - type: Transform @@ -80062,7 +78921,7 @@ entities: pos: 29.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13795 components: - type: Transform @@ -80070,7 +78929,7 @@ entities: pos: 29.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13796 components: - type: Transform @@ -80078,7 +78937,7 @@ entities: pos: 29.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13797 components: - type: Transform @@ -80086,28 +78945,152 @@ entities: pos: 29.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 13955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-44.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14448 + components: + - type: Transform + pos: 21.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14454 + components: + - type: Transform + pos: -25.5,8.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14461 + components: + - type: Transform + pos: 21.5,13.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-61.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14498 + components: + - type: Transform + pos: -25.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-62.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14974 components: - type: Transform pos: 16.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14975 components: - type: Transform pos: 16.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14977 components: - type: Transform pos: 16.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14980 components: - type: Transform @@ -80115,7 +79098,7 @@ entities: pos: 19.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14981 components: - type: Transform @@ -80123,63 +79106,63 @@ entities: pos: 18.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14988 components: - type: Transform pos: 16.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14990 components: - type: Transform pos: 16.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15018 components: - type: Transform pos: 16.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15049 components: - type: Transform pos: 16.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15053 components: - type: Transform pos: 16.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15054 components: - type: Transform pos: 16.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15055 components: - type: Transform pos: 16.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15061 components: - type: Transform pos: 16.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15453 components: - type: Transform @@ -80187,7 +79170,7 @@ entities: pos: 50.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15454 components: - type: Transform @@ -80195,7 +79178,7 @@ entities: pos: 48.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15455 components: - type: Transform @@ -80203,7 +79186,7 @@ entities: pos: 46.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15456 components: - type: Transform @@ -80211,7 +79194,7 @@ entities: pos: 44.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15457 components: - type: Transform @@ -80219,7 +79202,7 @@ entities: pos: 33.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15458 components: - type: Transform @@ -80227,7 +79210,7 @@ entities: pos: 35.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15459 components: - type: Transform @@ -80235,7 +79218,7 @@ entities: pos: 37.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15618 components: - type: Transform @@ -80243,7 +79226,7 @@ entities: pos: 52.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15624 components: - type: Transform @@ -80251,21 +79234,21 @@ entities: pos: 38.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15734 components: - type: Transform pos: 42.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15735 components: - type: Transform pos: 42.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15740 components: - type: Transform @@ -80273,7 +79256,7 @@ entities: pos: 39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15741 components: - type: Transform @@ -80281,7 +79264,7 @@ entities: pos: 40.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15743 components: - type: Transform @@ -80289,35 +79272,35 @@ entities: pos: 41.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15744 components: - type: Transform pos: 42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15745 components: - type: Transform pos: 42.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15746 components: - type: Transform pos: 42.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15747 components: - type: Transform pos: 42.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15748 components: - type: Transform @@ -80325,14 +79308,14 @@ entities: pos: 52.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15994 components: - type: Transform pos: 32.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16101 components: - type: Transform @@ -80340,7 +79323,7 @@ entities: pos: 34.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16102 components: - type: Transform @@ -80348,7 +79331,7 @@ entities: pos: 26.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16122 components: - type: Transform @@ -80356,7 +79339,7 @@ entities: pos: 24.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 16783 components: - type: Transform @@ -80364,56 +79347,79 @@ entities: pos: 17.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 17715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18077 + components: + - type: Transform + pos: 16.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18377 components: - type: Transform pos: -45.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18378 components: - type: Transform pos: -45.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18379 components: - type: Transform pos: -45.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18381 components: - type: Transform pos: -45.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18382 components: - type: Transform pos: -45.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18383 components: - type: Transform pos: -45.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18384 components: - type: Transform pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18388 components: - type: Transform @@ -80421,7 +79427,7 @@ entities: pos: -60.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18389 components: - type: Transform @@ -80429,7 +79435,7 @@ entities: pos: -59.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18390 components: - type: Transform @@ -80437,7 +79443,7 @@ entities: pos: -58.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18392 components: - type: Transform @@ -80445,7 +79451,7 @@ entities: pos: -56.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18393 components: - type: Transform @@ -80453,7 +79459,7 @@ entities: pos: -55.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18394 components: - type: Transform @@ -80461,7 +79467,7 @@ entities: pos: -54.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18395 components: - type: Transform @@ -80469,7 +79475,7 @@ entities: pos: -53.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18396 components: - type: Transform @@ -80477,7 +79483,7 @@ entities: pos: -52.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18398 components: - type: Transform @@ -80485,7 +79491,7 @@ entities: pos: -50.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18399 components: - type: Transform @@ -80493,7 +79499,7 @@ entities: pos: -51.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18400 components: - type: Transform @@ -80501,7 +79507,7 @@ entities: pos: -48.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18401 components: - type: Transform @@ -80509,7 +79515,7 @@ entities: pos: -47.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18402 components: - type: Transform @@ -80517,91 +79523,91 @@ entities: pos: -46.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18404 components: - type: Transform pos: -44.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18405 components: - type: Transform pos: -44.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18406 components: - type: Transform pos: -44.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18407 components: - type: Transform pos: -44.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18408 components: - type: Transform pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18409 components: - type: Transform pos: -44.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18410 components: - type: Transform pos: -44.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18411 components: - type: Transform pos: -44.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18413 components: - type: Transform pos: -44.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18414 components: - type: Transform pos: -44.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18417 components: - type: Transform pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18418 components: - type: Transform pos: -62.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18419 components: - type: Transform @@ -80609,7 +79615,7 @@ entities: pos: -60.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18420 components: - type: Transform @@ -80617,7 +79623,7 @@ entities: pos: -59.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18422 components: - type: Transform @@ -80625,7 +79631,7 @@ entities: pos: -57.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18423 components: - type: Transform @@ -80633,7 +79639,7 @@ entities: pos: -56.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18424 components: - type: Transform @@ -80641,7 +79647,7 @@ entities: pos: -55.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18425 components: - type: Transform @@ -80649,7 +79655,7 @@ entities: pos: -54.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18427 components: - type: Transform @@ -80657,7 +79663,7 @@ entities: pos: -52.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18428 components: - type: Transform @@ -80665,7 +79671,7 @@ entities: pos: -49.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18429 components: - type: Transform @@ -80673,7 +79679,7 @@ entities: pos: -50.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18431 components: - type: Transform @@ -80681,7 +79687,7 @@ entities: pos: -48.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18432 components: - type: Transform @@ -80689,7 +79695,7 @@ entities: pos: -47.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18433 components: - type: Transform @@ -80697,7 +79703,7 @@ entities: pos: -46.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18434 components: - type: Transform @@ -80705,7 +79711,7 @@ entities: pos: -45.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18443 components: - type: Transform @@ -80713,21 +79719,21 @@ entities: pos: -62.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18444 components: - type: Transform pos: -63.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18445 components: - type: Transform pos: -63.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18448 components: - type: Transform @@ -80735,189 +79741,189 @@ entities: pos: -63.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18452 components: - type: Transform pos: -62.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18453 components: - type: Transform pos: -62.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18454 components: - type: Transform pos: -62.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18455 components: - type: Transform pos: -62.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18456 components: - type: Transform pos: -62.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18457 components: - type: Transform pos: -62.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18458 components: - type: Transform pos: -62.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18459 components: - type: Transform pos: -62.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18460 components: - type: Transform pos: -62.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18461 components: - type: Transform pos: -62.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18462 components: - type: Transform pos: -62.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18463 components: - type: Transform pos: -62.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18464 components: - type: Transform pos: -62.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18465 components: - type: Transform pos: -61.5,-37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18466 components: - type: Transform pos: -61.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18467 components: - type: Transform pos: -61.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18468 components: - type: Transform pos: -61.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18469 components: - type: Transform pos: -61.5,-33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18470 components: - type: Transform pos: -61.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18471 components: - type: Transform pos: -61.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18472 components: - type: Transform pos: -61.5,-30.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18473 components: - type: Transform pos: -61.5,-29.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18474 components: - type: Transform pos: -61.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18475 components: - type: Transform pos: -61.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18476 components: - type: Transform pos: -61.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18477 components: - type: Transform pos: -61.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18480 components: - type: Transform @@ -80925,7 +79931,7 @@ entities: pos: -63.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18481 components: - type: Transform @@ -80933,7 +79939,7 @@ entities: pos: -60.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18482 components: - type: Transform @@ -80941,7 +79947,7 @@ entities: pos: -59.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18483 components: - type: Transform @@ -80949,49 +79955,49 @@ entities: pos: -64.5,-38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18486 components: - type: Transform pos: -65.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18487 components: - type: Transform pos: -65.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18488 components: - type: Transform pos: -65.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18489 components: - type: Transform pos: -65.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18490 components: - type: Transform pos: -65.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18491 components: - type: Transform pos: -65.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18494 components: - type: Transform @@ -80999,28 +80005,28 @@ entities: pos: -63.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18495 components: - type: Transform pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18496 components: - type: Transform pos: -62.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18497 components: - type: Transform pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18499 components: - type: Transform @@ -81028,7 +80034,7 @@ entities: pos: -66.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18500 components: - type: Transform @@ -81036,7 +80042,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18502 components: - type: Transform @@ -81044,7 +80050,7 @@ entities: pos: -69.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18503 components: - type: Transform @@ -81052,7 +80058,7 @@ entities: pos: -70.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18504 components: - type: Transform @@ -81060,7 +80066,7 @@ entities: pos: -71.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18505 components: - type: Transform @@ -81068,7 +80074,7 @@ entities: pos: -72.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18506 components: - type: Transform @@ -81076,7 +80082,7 @@ entities: pos: -73.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18507 components: - type: Transform @@ -81084,7 +80090,7 @@ entities: pos: -74.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18508 components: - type: Transform @@ -81092,7 +80098,7 @@ entities: pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18509 components: - type: Transform @@ -81100,21 +80106,21 @@ entities: pos: -76.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18511 components: - type: Transform pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18512 components: - type: Transform pos: -77.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18514 components: - type: Transform @@ -81122,7 +80128,7 @@ entities: pos: -78.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18515 components: - type: Transform @@ -81130,7 +80136,7 @@ entities: pos: -78.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18516 components: - type: Transform @@ -81138,7 +80144,7 @@ entities: pos: -78.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18517 components: - type: Transform @@ -81146,7 +80152,7 @@ entities: pos: -78.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18518 components: - type: Transform @@ -81154,7 +80160,7 @@ entities: pos: -78.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18522 components: - type: Transform @@ -81162,7 +80168,7 @@ entities: pos: -68.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18527 components: - type: Transform @@ -81170,7 +80176,7 @@ entities: pos: -64.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18528 components: - type: Transform @@ -81178,7 +80184,7 @@ entities: pos: -65.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18529 components: - type: Transform @@ -81186,63 +80192,63 @@ entities: pos: -66.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18530 components: - type: Transform pos: -67.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18531 components: - type: Transform pos: -67.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18532 components: - type: Transform pos: -67.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18533 components: - type: Transform pos: -67.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18535 components: - type: Transform pos: -67.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18536 components: - type: Transform pos: -67.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18537 components: - type: Transform pos: -67.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18538 components: - type: Transform pos: -67.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18539 components: - type: Transform @@ -81250,7 +80256,7 @@ entities: pos: -66.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18540 components: - type: Transform @@ -81258,7 +80264,7 @@ entities: pos: -65.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18541 components: - type: Transform @@ -81266,7 +80272,7 @@ entities: pos: -64.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18543 components: - type: Transform @@ -81274,15 +80280,7 @@ entities: pos: -62.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18545 components: - type: Transform @@ -81290,7 +80288,7 @@ entities: pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18546 components: - type: Transform @@ -81298,7 +80296,7 @@ entities: pos: -59.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18548 components: - type: Transform @@ -81306,7 +80304,7 @@ entities: pos: -57.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18549 components: - type: Transform @@ -81314,7 +80312,7 @@ entities: pos: -56.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18551 components: - type: Transform @@ -81322,7 +80320,7 @@ entities: pos: -56.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18552 components: - type: Transform @@ -81330,7 +80328,7 @@ entities: pos: -56.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18553 components: - type: Transform @@ -81338,7 +80336,7 @@ entities: pos: -56.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18555 components: - type: Transform @@ -81346,7 +80344,7 @@ entities: pos: -56.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18556 components: - type: Transform @@ -81354,7 +80352,7 @@ entities: pos: -56.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18557 components: - type: Transform @@ -81362,7 +80360,7 @@ entities: pos: -56.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18558 components: - type: Transform @@ -81370,7 +80368,7 @@ entities: pos: -57.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18559 components: - type: Transform @@ -81378,7 +80376,7 @@ entities: pos: -58.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18560 components: - type: Transform @@ -81386,7 +80384,7 @@ entities: pos: -59.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18561 components: - type: Transform @@ -81394,7 +80392,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18562 components: - type: Transform @@ -81402,63 +80400,63 @@ entities: pos: -61.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18563 components: - type: Transform pos: -55.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18564 components: - type: Transform pos: -55.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18565 components: - type: Transform pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18567 components: - type: Transform pos: -55.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18569 components: - type: Transform pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18571 components: - type: Transform pos: -55.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18572 components: - type: Transform pos: -55.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18573 components: - type: Transform pos: -55.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18574 components: - type: Transform @@ -81466,7 +80464,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18575 components: - type: Transform @@ -81474,7 +80472,7 @@ entities: pos: -57.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18576 components: - type: Transform @@ -81482,7 +80480,7 @@ entities: pos: -58.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18577 components: - type: Transform @@ -81490,7 +80488,7 @@ entities: pos: -59.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18579 components: - type: Transform @@ -81498,7 +80496,7 @@ entities: pos: -62.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18580 components: - type: Transform @@ -81506,7 +80504,7 @@ entities: pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18581 components: - type: Transform @@ -81514,7 +80512,7 @@ entities: pos: -64.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18582 components: - type: Transform @@ -81522,7 +80520,7 @@ entities: pos: -65.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18583 components: - type: Transform @@ -81530,7 +80528,7 @@ entities: pos: -66.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18584 components: - type: Transform @@ -81538,7 +80536,7 @@ entities: pos: -67.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18585 components: - type: Transform @@ -81546,7 +80544,7 @@ entities: pos: -68.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18586 components: - type: Transform @@ -81554,7 +80552,7 @@ entities: pos: -68.5,-50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18587 components: - type: Transform @@ -81562,7 +80560,7 @@ entities: pos: -68.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18588 components: - type: Transform @@ -81570,7 +80568,7 @@ entities: pos: -68.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18589 components: - type: Transform @@ -81578,7 +80576,7 @@ entities: pos: -68.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18590 components: - type: Transform @@ -81586,7 +80584,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18592 components: - type: Transform @@ -81594,7 +80592,7 @@ entities: pos: -68.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18593 components: - type: Transform @@ -81602,7 +80600,7 @@ entities: pos: -68.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18594 components: - type: Transform @@ -81610,7 +80608,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18595 components: - type: Transform @@ -81618,7 +80616,7 @@ entities: pos: -68.5,-58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18596 components: - type: Transform @@ -81626,7 +80624,7 @@ entities: pos: -67.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18597 components: - type: Transform @@ -81634,7 +80632,7 @@ entities: pos: -66.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18598 components: - type: Transform @@ -81642,7 +80640,7 @@ entities: pos: -65.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18600 components: - type: Transform @@ -81650,15 +80648,7 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18602 components: - type: Transform @@ -81666,7 +80656,7 @@ entities: pos: -61.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18605 components: - type: Transform @@ -81674,7 +80664,7 @@ entities: pos: -58.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18606 components: - type: Transform @@ -81682,7 +80672,7 @@ entities: pos: -57.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18607 components: - type: Transform @@ -81690,7 +80680,7 @@ entities: pos: -56.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18617 components: - type: Transform @@ -81698,7 +80688,7 @@ entities: pos: -61.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18619 components: - type: Transform @@ -81706,7 +80696,7 @@ entities: pos: -60.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18620 components: - type: Transform @@ -81714,7 +80704,7 @@ entities: pos: -59.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18622 components: - type: Transform @@ -81722,7 +80712,7 @@ entities: pos: -58.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18624 components: - type: Transform @@ -81730,7 +80720,7 @@ entities: pos: -58.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18625 components: - type: Transform @@ -81738,7 +80728,7 @@ entities: pos: -58.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18626 components: - type: Transform @@ -81746,7 +80736,7 @@ entities: pos: -58.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18627 components: - type: Transform @@ -81754,7 +80744,7 @@ entities: pos: -58.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18628 components: - type: Transform @@ -81762,7 +80752,7 @@ entities: pos: -58.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18631 components: - type: Transform @@ -81770,7 +80760,7 @@ entities: pos: -62.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18632 components: - type: Transform @@ -81778,7 +80768,7 @@ entities: pos: -63.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18633 components: - type: Transform @@ -81786,7 +80776,7 @@ entities: pos: -64.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18634 components: - type: Transform @@ -81794,7 +80784,7 @@ entities: pos: -65.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18635 components: - type: Transform @@ -81802,7 +80792,7 @@ entities: pos: -66.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18638 components: - type: Transform @@ -81810,7 +80800,7 @@ entities: pos: -69.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18639 components: - type: Transform @@ -81818,7 +80808,7 @@ entities: pos: -70.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18640 components: - type: Transform @@ -81826,7 +80816,7 @@ entities: pos: -71.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18641 components: - type: Transform @@ -81834,7 +80824,7 @@ entities: pos: -72.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18642 components: - type: Transform @@ -81842,7 +80832,7 @@ entities: pos: -73.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18643 components: - type: Transform @@ -81850,7 +80840,7 @@ entities: pos: -74.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18645 components: - type: Transform @@ -81858,7 +80848,7 @@ entities: pos: -76.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18646 components: - type: Transform @@ -81866,7 +80856,7 @@ entities: pos: -77.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18647 components: - type: Transform @@ -81874,7 +80864,7 @@ entities: pos: -78.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18649 components: - type: Transform @@ -81882,7 +80872,7 @@ entities: pos: -79.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18650 components: - type: Transform @@ -81890,7 +80880,7 @@ entities: pos: -79.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18651 components: - type: Transform @@ -81898,7 +80888,7 @@ entities: pos: -79.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18652 components: - type: Transform @@ -81906,7 +80896,7 @@ entities: pos: -79.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18653 components: - type: Transform @@ -81914,7 +80904,7 @@ entities: pos: -79.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18654 components: - type: Transform @@ -81922,28 +80912,28 @@ entities: pos: -79.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18656 components: - type: Transform pos: -75.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18657 components: - type: Transform pos: -75.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18659 components: - type: Transform pos: -75.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18660 components: - type: Transform @@ -81951,7 +80941,7 @@ entities: pos: -76.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18664 components: - type: Transform @@ -81959,7 +80949,7 @@ entities: pos: -67.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18665 components: - type: Transform @@ -81967,7 +80957,7 @@ entities: pos: -67.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18666 components: - type: Transform @@ -81975,7 +80965,7 @@ entities: pos: -67.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18669 components: - type: Transform @@ -81983,7 +80973,7 @@ entities: pos: -56.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18670 components: - type: Transform @@ -81991,7 +80981,7 @@ entities: pos: -56.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18671 components: - type: Transform @@ -81999,7 +80989,7 @@ entities: pos: -56.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18672 components: - type: Transform @@ -82007,7 +80997,7 @@ entities: pos: -55.5,-47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18673 components: - type: Transform @@ -82015,7 +81005,7 @@ entities: pos: -55.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18680 components: - type: Transform @@ -82023,7 +81013,7 @@ entities: pos: -54.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18681 components: - type: Transform @@ -82031,7 +81021,7 @@ entities: pos: -53.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18682 components: - type: Transform @@ -82039,7 +81029,7 @@ entities: pos: -55.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18683 components: - type: Transform @@ -82047,7 +81037,7 @@ entities: pos: -54.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18684 components: - type: Transform @@ -82055,7 +81045,7 @@ entities: pos: -53.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18685 components: - type: Transform @@ -82063,7 +81053,7 @@ entities: pos: -54.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18686 components: - type: Transform @@ -82071,7 +81061,7 @@ entities: pos: -53.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18687 components: - type: Transform @@ -82079,7 +81069,7 @@ entities: pos: -54.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18688 components: - type: Transform @@ -82087,7 +81077,7 @@ entities: pos: -53.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18689 components: - type: Transform @@ -82095,7 +81085,7 @@ entities: pos: -55.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18690 components: - type: Transform @@ -82103,7 +81093,7 @@ entities: pos: -55.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18701 components: - type: Transform @@ -82111,7 +81101,7 @@ entities: pos: -69.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18702 components: - type: Transform @@ -82119,7 +81109,7 @@ entities: pos: -70.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18703 components: - type: Transform @@ -82127,7 +81117,7 @@ entities: pos: -71.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18705 components: - type: Transform @@ -82135,7 +81125,7 @@ entities: pos: -68.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18706 components: - type: Transform @@ -82143,7 +81133,7 @@ entities: pos: -69.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18707 components: - type: Transform @@ -82151,7 +81141,7 @@ entities: pos: -70.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18708 components: - type: Transform @@ -82159,7 +81149,7 @@ entities: pos: -71.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18709 components: - type: Transform @@ -82167,7 +81157,7 @@ entities: pos: -72.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18710 components: - type: Transform @@ -82175,7 +81165,7 @@ entities: pos: -73.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18712 components: - type: Transform @@ -82183,7 +81173,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18713 components: - type: Transform @@ -82191,7 +81181,7 @@ entities: pos: -76.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18714 components: - type: Transform @@ -82199,7 +81189,7 @@ entities: pos: -77.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18715 components: - type: Transform @@ -82207,7 +81197,7 @@ entities: pos: -78.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18716 components: - type: Transform @@ -82215,7 +81205,7 @@ entities: pos: -79.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18718 components: - type: Transform @@ -82223,7 +81213,7 @@ entities: pos: -81.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18719 components: - type: Transform @@ -82231,7 +81221,7 @@ entities: pos: -82.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18721 components: - type: Transform @@ -82239,7 +81229,7 @@ entities: pos: -76.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18722 components: - type: Transform @@ -82247,7 +81237,7 @@ entities: pos: -74.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18723 components: - type: Transform @@ -82255,7 +81245,7 @@ entities: pos: -73.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18724 components: - type: Transform @@ -82263,7 +81253,7 @@ entities: pos: -72.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18725 components: - type: Transform @@ -82271,7 +81261,7 @@ entities: pos: -77.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18726 components: - type: Transform @@ -82279,7 +81269,7 @@ entities: pos: -78.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18727 components: - type: Transform @@ -82287,7 +81277,7 @@ entities: pos: -79.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18728 components: - type: Transform @@ -82295,7 +81285,7 @@ entities: pos: -75.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18735 components: - type: Transform @@ -82303,7 +81293,7 @@ entities: pos: -68.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18736 components: - type: Transform @@ -82311,7 +81301,7 @@ entities: pos: -69.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18737 components: - type: Transform @@ -82319,7 +81309,7 @@ entities: pos: -70.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18738 components: - type: Transform @@ -82327,7 +81317,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18740 components: - type: Transform @@ -82335,7 +81325,7 @@ entities: pos: -73.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18741 components: - type: Transform @@ -82343,7 +81333,7 @@ entities: pos: -74.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18742 components: - type: Transform @@ -82351,7 +81341,7 @@ entities: pos: -75.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18746 components: - type: Transform @@ -82359,7 +81349,7 @@ entities: pos: -69.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18747 components: - type: Transform @@ -82367,7 +81357,7 @@ entities: pos: -70.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18749 components: - type: Transform @@ -82375,7 +81365,7 @@ entities: pos: -72.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18750 components: - type: Transform @@ -82383,7 +81373,7 @@ entities: pos: -73.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18751 components: - type: Transform @@ -82391,7 +81381,7 @@ entities: pos: -74.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18752 components: - type: Transform @@ -82399,7 +81389,7 @@ entities: pos: -75.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18755 components: - type: Transform @@ -82407,7 +81397,7 @@ entities: pos: -71.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18760 components: - type: Transform @@ -82415,102 +81405,138 @@ entities: parent: 30 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 18761 + - uid: 20329 components: - type: Transform - pos: -59.5,-62.5 + pos: 4.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18762 + color: '#0000FFFF' + - uid: 20330 components: - type: Transform - pos: -59.5,-63.5 + pos: 4.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18764 + color: '#0000FFFF' + - uid: 20331 components: - type: Transform - pos: -58.5,-60.5 + pos: 4.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18765 + color: '#0000FFFF' + - uid: 20332 components: - type: Transform - pos: -58.5,-61.5 + pos: 4.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18766 + color: '#0000FFFF' + - uid: 20333 components: - type: Transform - pos: -58.5,-62.5 + pos: 4.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18767 + color: '#0000FFFF' + - uid: 20640 components: - type: Transform - pos: -58.5,-63.5 + rot: -1.5707963267948966 rad + pos: -2.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18768 + color: '#FF0000FF' + - uid: 20641 components: - type: Transform - pos: -58.5,-64.5 + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18771 + color: '#FF0000FF' + - uid: 20643 components: - type: Transform - pos: -64.5,-61.5 + rot: 1.5707963267948966 rad + pos: 5.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18773 + color: '#03FCD3FF' + - uid: 20646 components: - type: Transform - pos: -64.5,-63.5 + rot: -1.5707963267948966 rad + pos: 6.5,-51.5 parent: 30 - - uid: 20329 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20650 components: - type: Transform - pos: 4.5,-3.5 + rot: 3.141592653589793 rad + pos: -3.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20330 + color: '#FF0000FF' + - uid: 20651 components: - type: Transform - pos: 4.5,-4.5 + pos: 3.5,-54.5 + parent: 30 + - uid: 20652 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 30 + - uid: 20658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20331 + color: '#03FCD3FF' + - uid: 20659 components: - type: Transform - pos: 4.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20332 + color: '#03FCD3FF' + - uid: 20660 components: - type: Transform - pos: 4.5,-6.5 + rot: 1.5707963267948966 rad + pos: 3.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 20333 + color: '#03FCD3FF' + - uid: 20661 components: - type: Transform - pos: 4.5,-7.5 + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#03FCD3FF' + - uid: 20662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 20669 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21264 components: - type: Transform @@ -82518,7 +81544,7 @@ entities: pos: 22.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21265 components: - type: Transform @@ -82526,7 +81552,7 @@ entities: pos: 23.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21266 components: - type: Transform @@ -82534,7 +81560,7 @@ entities: pos: 24.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21267 components: - type: Transform @@ -82542,7 +81568,7 @@ entities: pos: 25.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21268 components: - type: Transform @@ -82550,7 +81576,7 @@ entities: pos: 26.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21271 components: - type: Transform @@ -82558,7 +81584,7 @@ entities: pos: 27.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21272 components: - type: Transform @@ -82566,7 +81592,7 @@ entities: pos: 26.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21273 components: - type: Transform @@ -82574,28 +81600,28 @@ entities: pos: 25.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21546 components: - type: Transform pos: 39.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21547 components: - type: Transform pos: 39.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21548 components: - type: Transform pos: 39.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21550 components: - type: Transform @@ -82603,7 +81629,7 @@ entities: pos: 43.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21551 components: - type: Transform @@ -82611,7 +81637,7 @@ entities: pos: 43.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21552 components: - type: Transform @@ -82619,7 +81645,7 @@ entities: pos: 43.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21987 components: - type: Transform @@ -82627,7 +81653,7 @@ entities: pos: -0.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21988 components: - type: Transform @@ -82635,7 +81661,7 @@ entities: pos: -0.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21989 components: - type: Transform @@ -82643,7 +81669,7 @@ entities: pos: -0.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21990 components: - type: Transform @@ -82651,7 +81677,7 @@ entities: pos: -0.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21991 components: - type: Transform @@ -82659,7 +81685,7 @@ entities: pos: -0.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21992 components: - type: Transform @@ -82667,7 +81693,7 @@ entities: pos: -0.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21993 components: - type: Transform @@ -82675,7 +81701,7 @@ entities: pos: -0.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21994 components: - type: Transform @@ -82683,7 +81709,7 @@ entities: pos: -0.5,45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21995 components: - type: Transform @@ -82691,7 +81717,7 @@ entities: pos: -0.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21996 components: - type: Transform @@ -82699,7 +81725,7 @@ entities: pos: -0.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21997 components: - type: Transform @@ -82707,7 +81733,7 @@ entities: pos: -0.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21998 components: - type: Transform @@ -82715,7 +81741,7 @@ entities: pos: -0.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21999 components: - type: Transform @@ -82723,7 +81749,7 @@ entities: pos: -0.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22000 components: - type: Transform @@ -82731,7 +81757,7 @@ entities: pos: -0.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22001 components: - type: Transform @@ -82739,7 +81765,7 @@ entities: pos: -0.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22002 components: - type: Transform @@ -82747,7 +81773,7 @@ entities: pos: -0.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22003 components: - type: Transform @@ -82755,7 +81781,7 @@ entities: pos: -0.5,54.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22004 components: - type: Transform @@ -82763,7 +81789,7 @@ entities: pos: -0.5,55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22005 components: - type: Transform @@ -82771,7 +81797,7 @@ entities: pos: -0.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22006 components: - type: Transform @@ -82779,7 +81805,7 @@ entities: pos: -0.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22007 components: - type: Transform @@ -82787,7 +81813,7 @@ entities: pos: -0.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22008 components: - type: Transform @@ -82795,7 +81821,7 @@ entities: pos: -0.5,59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22009 components: - type: Transform @@ -82803,7 +81829,7 @@ entities: pos: -0.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22010 components: - type: Transform @@ -82811,7 +81837,7 @@ entities: pos: -0.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22011 components: - type: Transform @@ -82819,7 +81845,7 @@ entities: pos: -0.5,62.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22012 components: - type: Transform @@ -82827,7 +81853,7 @@ entities: pos: -0.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22013 components: - type: Transform @@ -82835,316 +81861,106 @@ entities: pos: -0.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22015 components: - type: Transform pos: -0.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22016 components: - type: Transform pos: -0.5,67.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22017 components: - type: Transform pos: -0.5,68.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22018 components: - type: Transform pos: -0.5,69.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22019 components: - type: Transform pos: -0.5,70.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22020 components: - type: Transform pos: -0.5,71.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22021 components: - type: Transform pos: -0.5,72.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22022 components: - type: Transform pos: -0.5,73.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22267 components: - type: Transform pos: 43.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22268 components: - type: Transform pos: 43.5,12.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22269 components: - type: Transform pos: 43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22270 components: - type: Transform pos: 43.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22271 components: - type: Transform pos: 43.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-48.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-50.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-54.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-55.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-56.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-57.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22794 + color: '#0000FFFF' +- proto: GasPipeTJunction + entities: + - uid: 336 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-58.5 + pos: -53.5,-63.5 parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' -- proto: GasPipeTJunction - entities: - uid: 924 components: - type: Transform @@ -83152,17 +81968,7 @@ entities: 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 + color: '#FF0000FF' - uid: 962 components: - type: Transform @@ -83170,14 +81976,7 @@ entities: pos: -45.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1938 - components: - - type: Transform - pos: -5.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 2431 components: - type: Transform @@ -83185,7 +81984,7 @@ entities: pos: -34.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2440 components: - type: Transform @@ -83193,7 +81992,7 @@ entities: pos: -34.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2441 components: - type: Transform @@ -83201,7 +82000,7 @@ entities: pos: -36.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2442 components: - type: Transform @@ -83209,28 +82008,28 @@ entities: pos: -34.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2456 components: - type: Transform pos: -42.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2458 components: - type: Transform pos: -41.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2459 components: - type: Transform pos: -41.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2463 components: - type: Transform @@ -83238,7 +82037,7 @@ entities: pos: -45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2496 components: - type: Transform @@ -83246,7 +82045,7 @@ entities: pos: -36.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2497 components: - type: Transform @@ -83254,28 +82053,28 @@ entities: pos: -34.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2507 components: - type: Transform pos: -36.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2508 components: - type: Transform pos: -34.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2509 components: - type: Transform pos: -35.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2510 components: - type: Transform @@ -83283,7 +82082,7 @@ entities: pos: -33.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2512 components: - type: Transform @@ -83291,7 +82090,7 @@ entities: pos: -33.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2513 components: - type: Transform @@ -83299,7 +82098,7 @@ entities: pos: -31.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2519 components: - type: Transform @@ -83307,7 +82106,7 @@ entities: pos: -33.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2520 components: - type: Transform @@ -83315,7 +82114,7 @@ entities: pos: -31.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2521 components: - type: Transform @@ -83323,7 +82122,7 @@ entities: pos: -31.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2527 components: - type: Transform @@ -83331,7 +82130,7 @@ entities: pos: -33.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2532 components: - type: Transform @@ -83339,7 +82138,7 @@ entities: pos: -38.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2542 components: - type: Transform @@ -83347,7 +82146,7 @@ entities: pos: -40.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2553 components: - type: Transform @@ -83355,7 +82154,7 @@ entities: pos: -31.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2554 components: - type: Transform @@ -83363,49 +82162,49 @@ entities: pos: -33.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2582 components: - type: Transform pos: -34.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2583 components: - type: Transform pos: -30.5,53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2596 components: - type: Transform pos: -38.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2597 components: - type: Transform pos: -40.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2598 components: - type: Transform pos: -42.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2599 components: - type: Transform pos: -44.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2600 components: - type: Transform @@ -83413,7 +82212,7 @@ entities: pos: -46.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2601 components: - type: Transform @@ -83421,7 +82220,7 @@ entities: pos: -48.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2619 components: - type: Transform @@ -83429,14 +82228,14 @@ entities: pos: -41.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2628 components: - type: Transform pos: -43.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2654 components: - type: Transform @@ -83444,7 +82243,7 @@ entities: pos: -48.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2658 components: - type: Transform @@ -83452,7 +82251,7 @@ entities: pos: -48.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2659 components: - type: Transform @@ -83460,7 +82259,7 @@ entities: pos: -46.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2662 components: - type: Transform @@ -83468,7 +82267,7 @@ entities: pos: -46.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2667 components: - type: Transform @@ -83476,7 +82275,7 @@ entities: pos: -48.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2668 components: - type: Transform @@ -83484,7 +82283,7 @@ entities: pos: -46.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2677 components: - type: Transform @@ -83492,7 +82291,7 @@ entities: pos: -46.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2688 components: - type: Transform @@ -83500,7 +82299,7 @@ entities: pos: -50.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2689 components: - type: Transform @@ -83508,14 +82307,14 @@ entities: pos: -46.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2709 components: - type: Transform pos: -48.5,58.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2717 components: - type: Transform @@ -83523,7 +82322,7 @@ entities: pos: -51.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2718 components: - type: Transform @@ -83531,14 +82330,14 @@ entities: pos: -47.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2729 components: - type: Transform pos: -48.5,64.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2750 components: - type: Transform @@ -83546,7 +82345,7 @@ entities: pos: -36.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2753 components: - type: Transform @@ -83554,7 +82353,7 @@ entities: pos: -36.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2760 components: - type: Transform @@ -83562,7 +82361,7 @@ entities: pos: -36.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2762 components: - type: Transform @@ -83570,7 +82369,7 @@ entities: pos: -36.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2767 components: - type: Transform @@ -83578,7 +82377,7 @@ entities: pos: -34.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2777 components: - type: Transform @@ -83586,7 +82385,7 @@ entities: pos: -34.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2779 components: - type: Transform @@ -83594,7 +82393,7 @@ entities: pos: -32.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2786 components: - type: Transform @@ -83602,7 +82401,7 @@ entities: pos: -27.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2788 components: - type: Transform @@ -83610,7 +82409,7 @@ entities: pos: -21.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2796 components: - type: Transform @@ -83618,28 +82417,28 @@ entities: pos: -17.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2802 components: - type: Transform pos: -8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2812 components: - type: Transform pos: 1.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2814 components: - type: Transform pos: 3.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2819 components: - type: Transform @@ -83647,7 +82446,7 @@ entities: pos: 8.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2831 components: - type: Transform @@ -83655,7 +82454,7 @@ entities: pos: 10.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2833 components: - type: Transform @@ -83663,7 +82462,7 @@ entities: pos: 10.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2842 components: - type: Transform @@ -83671,7 +82470,7 @@ entities: pos: 8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2851 components: - type: Transform @@ -83679,14 +82478,14 @@ entities: pos: 3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2854 components: - type: Transform pos: -2.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2857 components: - type: Transform @@ -83694,7 +82493,7 @@ entities: pos: -4.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2866 components: - type: Transform @@ -83702,7 +82501,7 @@ entities: pos: -14.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2871 components: - type: Transform @@ -83710,21 +82509,21 @@ entities: pos: -23.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2873 components: - type: Transform pos: -21.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2879 components: - type: Transform pos: -27.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2888 components: - type: Transform @@ -83732,7 +82531,7 @@ entities: pos: -34.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2893 components: - type: Transform @@ -83740,7 +82539,7 @@ entities: pos: -34.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2899 components: - type: Transform @@ -83748,7 +82547,7 @@ entities: pos: -34.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2905 components: - type: Transform @@ -83756,7 +82555,7 @@ entities: pos: -34.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2913 components: - type: Transform @@ -83764,21 +82563,21 @@ entities: pos: -34.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2919 components: - type: Transform pos: -31.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2924 components: - type: Transform pos: -24.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2932 components: - type: Transform @@ -83786,21 +82585,21 @@ entities: pos: -19.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2935 components: - type: Transform pos: -14.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2941 components: - type: Transform pos: -6.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2962 components: - type: Transform @@ -83808,7 +82607,7 @@ entities: pos: 10.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2975 components: - type: Transform @@ -83816,7 +82615,7 @@ entities: pos: 8.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2985 components: - type: Transform @@ -83824,21 +82623,21 @@ entities: pos: 10.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2994 components: - type: Transform pos: 0.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2997 components: - type: Transform pos: -0.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3000 components: - type: Transform @@ -83846,7 +82645,7 @@ entities: pos: -3.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3012 components: - type: Transform @@ -83854,28 +82653,28 @@ entities: pos: -15.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3019 components: - type: Transform pos: -22.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3020 components: - type: Transform pos: -19.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3022 components: - type: Transform pos: -26.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3023 components: - type: Transform @@ -83883,14 +82682,14 @@ entities: pos: -25.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3027 components: - type: Transform pos: -30.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3084 components: - type: Transform @@ -83898,28 +82697,28 @@ entities: pos: -42.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3087 components: - type: Transform pos: -41.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3091 components: - type: Transform pos: -39.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3093 components: - type: Transform pos: -39.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3097 components: - type: Transform @@ -83927,14 +82726,14 @@ entities: pos: -44.5,5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3098 components: - type: Transform pos: -45.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3120 components: - type: Transform @@ -83942,19 +82741,7 @@ entities: pos: -51.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-57.5 - parent: 30 - - uid: 3131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 30 + color: '#FF0000FF' - uid: 3134 components: - type: Transform @@ -83962,7 +82749,7 @@ entities: pos: -52.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3137 components: - type: Transform @@ -83970,7 +82757,7 @@ entities: pos: -44.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3138 components: - type: Transform @@ -83978,7 +82765,7 @@ entities: pos: -45.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3154 components: - type: Transform @@ -83986,7 +82773,7 @@ entities: pos: -44.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3213 components: - type: Transform @@ -83994,7 +82781,7 @@ entities: pos: -44.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3241 components: - type: Transform @@ -84002,7 +82789,7 @@ entities: pos: -44.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3245 components: - type: Transform @@ -84010,7 +82797,7 @@ entities: pos: -43.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3246 components: - type: Transform @@ -84018,14 +82805,14 @@ entities: pos: -42.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3255 components: - type: Transform pos: -41.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3268 components: - type: Transform @@ -84033,7 +82820,7 @@ entities: pos: -49.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3275 components: - type: Transform @@ -84041,14 +82828,14 @@ entities: pos: -50.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3278 components: - type: Transform pos: -52.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3283 components: - type: Transform @@ -84056,7 +82843,7 @@ entities: pos: -57.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3284 components: - type: Transform @@ -84064,7 +82851,7 @@ entities: pos: -57.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3285 components: - type: Transform @@ -84072,7 +82859,7 @@ entities: pos: -57.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3294 components: - type: Transform @@ -84080,7 +82867,7 @@ entities: pos: -57.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3306 components: - type: Transform @@ -84088,22 +82875,14 @@ entities: pos: -49.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3333 components: - type: Transform pos: -19.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3349 components: - type: Transform @@ -84111,14 +82890,14 @@ entities: pos: -23.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3353 components: - type: Transform pos: -21.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3381 components: - type: Transform @@ -84126,7 +82905,7 @@ entities: pos: -17.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3388 components: - type: Transform @@ -84134,7 +82913,7 @@ entities: pos: -16.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3397 components: - type: Transform @@ -84142,7 +82921,7 @@ entities: pos: -17.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3399 components: - type: Transform @@ -84150,7 +82929,7 @@ entities: pos: -16.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3404 components: - type: Transform @@ -84164,7 +82943,7 @@ entities: pos: -3.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3420 components: - type: Transform @@ -84172,21 +82951,21 @@ entities: pos: -1.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3423 components: - type: Transform pos: -3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3424 components: - type: Transform pos: -1.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3442 components: - type: Transform @@ -84194,21 +82973,21 @@ entities: pos: -4.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3452 components: - type: Transform pos: -0.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3458 components: - type: Transform pos: -8.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3459 components: - type: Transform @@ -84216,7 +82995,7 @@ entities: pos: -10.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3460 components: - type: Transform @@ -84224,7 +83003,7 @@ entities: pos: -9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3461 components: - type: Transform @@ -84232,13 +83011,7 @@ entities: pos: -12.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-58.5 - parent: 30 + color: '#FF0000FF' - uid: 5857 components: - type: Transform @@ -84258,14 +83031,14 @@ entities: pos: -8.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6111 components: - type: Transform pos: -10.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6132 components: - type: Transform @@ -84273,7 +83046,7 @@ entities: pos: -14.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6140 components: - type: Transform @@ -84281,21 +83054,21 @@ entities: pos: -4.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6151 components: - type: Transform pos: -11.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6153 components: - type: Transform pos: -9.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6170 components: - type: Transform @@ -84303,7 +83076,7 @@ entities: pos: -15.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6172 components: - type: Transform @@ -84311,7 +83084,7 @@ entities: pos: -15.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6179 components: - type: Transform @@ -84319,7 +83092,7 @@ entities: pos: -3.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6185 components: - type: Transform @@ -84327,7 +83100,7 @@ entities: pos: -3.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6193 components: - type: Transform @@ -84335,7 +83108,7 @@ entities: pos: -9.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6199 components: - type: Transform @@ -84343,14 +83116,14 @@ entities: pos: -7.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6234 components: - type: Transform pos: -20.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6240 components: - type: Transform @@ -84358,14 +83131,14 @@ entities: pos: -20.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6252 components: - type: Transform pos: -19.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6254 components: - type: Transform @@ -84373,7 +83146,7 @@ entities: pos: -21.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6261 components: - type: Transform @@ -84381,29 +83154,14 @@ entities: pos: -26.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6600 - components: - - type: Transform - pos: -11.5,-53.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 6666 components: - type: Transform pos: -30.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6687 components: - type: Transform @@ -84411,7 +83169,7 @@ entities: pos: -17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6713 components: - type: Transform @@ -84419,7 +83177,7 @@ entities: pos: -13.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6933 components: - type: Transform @@ -84427,7 +83185,7 @@ entities: pos: -18.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7014 components: - type: Transform @@ -84435,7 +83193,7 @@ entities: pos: -23.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7044 components: - type: Transform @@ -84443,14 +83201,14 @@ entities: pos: -19.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7045 components: - type: Transform pos: -22.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7058 components: - type: Transform @@ -84458,64 +83216,28 @@ entities: pos: -30.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7061 components: - type: Transform pos: -19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7074 components: - type: Transform pos: -20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7096 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 30 - - uid: 7097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-58.5 - parent: 30 - - uid: 7124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-52.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#FF0000FF' - uid: 7147 components: - type: Transform pos: -28.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-49.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7310 components: - type: Transform @@ -84523,7 +83245,7 @@ entities: pos: -8.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7311 components: - type: Transform @@ -84531,7 +83253,7 @@ entities: pos: -3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7321 components: - type: Transform @@ -84539,7 +83261,7 @@ entities: pos: -1.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7322 components: - type: Transform @@ -84547,7 +83269,7 @@ entities: pos: -10.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7323 components: - type: Transform @@ -84555,7 +83277,7 @@ entities: pos: -2.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7337 components: - type: Transform @@ -84563,7 +83285,7 @@ entities: pos: -11.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7338 components: - type: Transform @@ -84571,21 +83293,21 @@ entities: pos: -12.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7351 components: - type: Transform pos: -18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7374 components: - type: Transform pos: -7.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7534 components: - type: Transform @@ -84593,14 +83315,14 @@ entities: pos: -17.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7545 components: - type: Transform pos: -23.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7593 components: - type: Transform @@ -84614,7 +83336,7 @@ entities: pos: -29.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7819 components: - type: Transform @@ -84622,14 +83344,14 @@ entities: pos: -28.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7878 components: - type: Transform pos: -13.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7886 components: - type: Transform @@ -84637,7 +83359,7 @@ entities: pos: -12.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7924 components: - type: Transform @@ -84645,7 +83367,7 @@ entities: pos: -22.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7926 components: - type: Transform @@ -84653,7 +83375,7 @@ entities: pos: -22.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7946 components: - type: Transform @@ -84661,14 +83383,14 @@ entities: pos: -25.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7948 components: - type: Transform pos: -29.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7949 components: - type: Transform @@ -84676,7 +83398,7 @@ entities: pos: -28.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7961 components: - type: Transform @@ -84684,7 +83406,7 @@ entities: pos: -17.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8018 components: - type: Transform @@ -84692,7 +83414,7 @@ entities: pos: -20.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8028 components: - type: Transform @@ -84700,7 +83422,7 @@ entities: pos: -22.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8089 components: - type: Transform @@ -84708,14 +83430,14 @@ entities: pos: -30.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8104 components: - type: Transform pos: -21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8107 components: - type: Transform @@ -84723,77 +83445,68 @@ entities: pos: -20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8235 + color: '#FF0000FF' + - uid: 8299 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-51.5 + pos: 20.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8237 + color: '#FF0000FF' + - uid: 8360 components: - type: Transform - pos: -9.5,-49.5 + pos: -16.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8239 + color: '#FF0000FF' + - uid: 8376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-49.5 + rot: 3.141592653589793 rad + pos: -1.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8269 + color: '#0000FFFF' + - uid: 8408 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-47.5 + pos: -13.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8299 + color: '#FF0000FF' + - uid: 8427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-19.5 + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8376 + color: '#FF0000FF' + - uid: 8790 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,37.5 + pos: 20.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 8790 + color: '#FF0000FF' + - uid: 8820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-21.5 + pos: -21.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8853 components: - type: Transform pos: -2.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8872 components: - type: Transform @@ -84801,7 +83514,7 @@ entities: pos: 9.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8876 components: - type: Transform @@ -84809,14 +83522,14 @@ entities: pos: 7.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8877 components: - type: Transform pos: 2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8884 components: - type: Transform @@ -84824,7 +83537,7 @@ entities: pos: 11.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8893 components: - type: Transform @@ -84832,7 +83545,7 @@ entities: pos: 9.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8901 components: - type: Transform @@ -84840,7 +83553,7 @@ entities: pos: 11.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8903 components: - type: Transform @@ -84848,7 +83561,7 @@ entities: pos: 11.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8912 components: - type: Transform @@ -84856,14 +83569,14 @@ entities: pos: 12.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8919 components: - type: Transform pos: 4.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8920 components: - type: Transform @@ -84871,21 +83584,21 @@ entities: pos: 6.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8936 components: - type: Transform pos: 5.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8939 components: - type: Transform pos: 7.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8940 components: - type: Transform @@ -84893,7 +83606,7 @@ entities: pos: 7.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8947 components: - type: Transform @@ -84901,7 +83614,7 @@ entities: pos: 13.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8957 components: - type: Transform @@ -84909,7 +83622,7 @@ entities: pos: 20.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8960 components: - type: Transform @@ -84917,14 +83630,14 @@ entities: pos: 13.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8968 components: - type: Transform pos: 9.5,3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8979 components: - type: Transform @@ -84932,7 +83645,7 @@ entities: pos: 7.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9085 components: - type: Transform @@ -84940,29 +83653,43 @@ entities: pos: 3.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9658 + color: '#FF0000FF' + - uid: 9353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-52.5 + pos: 3.5,-49.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9444 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 9446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9689 components: - type: Transform pos: -25.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9694 components: - type: Transform pos: -25.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9697 components: - type: Transform @@ -84970,7 +83697,7 @@ entities: pos: -25.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9728 components: - type: Transform @@ -84978,7 +83705,7 @@ entities: pos: 2.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9744 components: - type: Transform @@ -84986,23 +83713,7 @@ entities: pos: -1.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-27.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9754 components: - type: Transform @@ -85010,14 +83721,14 @@ entities: pos: -3.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9763 components: - type: Transform pos: 4.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9774 components: - type: Transform @@ -85025,7 +83736,7 @@ entities: pos: 0.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9779 components: - type: Transform @@ -85033,7 +83744,15 @@ entities: pos: 2.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 9818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-55.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9847 components: - type: Transform @@ -85041,7 +83760,7 @@ entities: pos: -11.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9850 components: - type: Transform @@ -85049,99 +83768,131 @@ entities: pos: -29.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9867 + color: '#FF0000FF' + - uid: 9885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-53.5 + rot: 1.5707963267948966 rad + pos: -18.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9981 + color: '#0000FFFF' + - uid: 9896 components: - type: Transform - pos: 6.5,-27.5 + rot: -1.5707963267948966 rad + pos: -16.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10388 + color: '#FF0000FF' + - uid: 9918 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-17.5 + pos: -11.5,-35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10402 + color: '#0000FFFF' + - uid: 9981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-18.5 + pos: 6.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11073 + color: '#0000FFFF' + - uid: 9992 components: - type: Transform - pos: -11.5,-39.5 + rot: 3.141592653589793 rad + pos: -8.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11080 + color: '#FF0000FF' + - uid: 10137 components: - type: Transform - pos: -3.5,-39.5 + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11087 + color: '#0000FFFF' + - uid: 10160 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-39.5 + pos: -5.5,-40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11122 + color: '#FF0000FF' + - uid: 10214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10265 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-41.5 + pos: -23.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11132 + color: '#0000FFFF' + - uid: 10266 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-41.5 + pos: -11.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11138 + color: '#0000FFFF' + - uid: 10279 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 10388 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-42.5 + pos: 21.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11140 + color: '#FF0000FF' + - uid: 10402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-42.5 + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' + - uid: 10430 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 11193 components: - type: Transform pos: 6.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11694 components: - type: Transform @@ -85149,7 +83900,7 @@ entities: pos: 25.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11746 components: - type: Transform @@ -85157,14 +83908,14 @@ entities: pos: 33.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11763 components: - type: Transform pos: 24.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11776 components: - type: Transform @@ -85172,7 +83923,7 @@ entities: pos: 6.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11859 components: - type: Transform @@ -85180,7 +83931,7 @@ entities: pos: 24.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11860 components: - type: Transform @@ -85188,7 +83939,7 @@ entities: pos: 26.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11861 components: - type: Transform @@ -85196,7 +83947,7 @@ entities: pos: 25.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11877 components: - type: Transform @@ -85204,7 +83955,7 @@ entities: pos: 21.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11879 components: - type: Transform @@ -85212,7 +83963,7 @@ entities: pos: 20.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11904 components: - type: Transform @@ -85220,7 +83971,7 @@ entities: pos: 19.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11934 components: - type: Transform @@ -85228,14 +83979,14 @@ entities: pos: 16.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11935 components: - type: Transform pos: 17.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11936 components: - type: Transform @@ -85243,7 +83994,7 @@ entities: pos: 21.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11950 components: - type: Transform @@ -85251,7 +84002,7 @@ entities: pos: 13.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11968 components: - type: Transform @@ -85259,7 +84010,7 @@ entities: pos: 20.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11999 components: - type: Transform @@ -85267,21 +84018,21 @@ entities: pos: 6.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12018 components: - type: Transform pos: 24.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12020 components: - type: Transform pos: 33.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12062 components: - type: Transform @@ -85289,7 +84040,7 @@ entities: pos: 29.5,-6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12472 components: - type: Transform @@ -85297,7 +84048,7 @@ entities: pos: 8.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12473 components: - type: Transform @@ -85305,21 +84056,21 @@ entities: pos: 10.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12488 components: - type: Transform pos: 10.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12503 components: - type: Transform pos: 16.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12513 components: - type: Transform @@ -85327,7 +84078,7 @@ entities: pos: 21.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12523 components: - type: Transform @@ -85335,7 +84086,7 @@ entities: pos: 18.5,25.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12528 components: - type: Transform @@ -85343,7 +84094,7 @@ entities: pos: 23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12540 components: - type: Transform @@ -85351,7 +84102,7 @@ entities: pos: 23.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12542 components: - type: Transform @@ -85359,7 +84110,7 @@ entities: pos: 23.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12543 components: - type: Transform @@ -85367,14 +84118,14 @@ entities: pos: 21.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12544 components: - type: Transform pos: 23.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12545 components: - type: Transform @@ -85382,7 +84133,7 @@ entities: pos: 20.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12559 components: - type: Transform @@ -85390,7 +84141,7 @@ entities: pos: 24.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12582 components: - type: Transform @@ -85398,7 +84149,7 @@ entities: pos: 20.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12584 components: - type: Transform @@ -85406,7 +84157,7 @@ entities: pos: 25.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12599 components: - type: Transform @@ -85414,19 +84165,26 @@ entities: pos: 23.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12600 components: - type: Transform pos: 26.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12754 components: - type: Transform pos: 32.5,14.5 parent: 30 + - uid: 12835 + components: + - type: Transform + pos: -61.5,-59.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 12882 components: - type: Transform @@ -85434,14 +84192,14 @@ entities: pos: 23.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12885 components: - type: Transform pos: 28.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12940 components: - type: Transform @@ -85449,15 +84207,7 @@ entities: pos: 14.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12951 components: - type: Transform @@ -85465,7 +84215,7 @@ entities: pos: 23.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12954 components: - type: Transform @@ -85473,14 +84223,14 @@ entities: pos: 23.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12963 components: - type: Transform pos: 28.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12989 components: - type: Transform @@ -85488,7 +84238,7 @@ entities: pos: 14.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12991 components: - type: Transform @@ -85496,14 +84246,14 @@ entities: pos: 14.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12997 components: - type: Transform pos: 23.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13007 components: - type: Transform @@ -85511,7 +84261,7 @@ entities: pos: 8.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13011 components: - type: Transform @@ -85519,14 +84269,14 @@ entities: pos: 12.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13017 components: - type: Transform pos: 13.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13022 components: - type: Transform @@ -85534,7 +84284,7 @@ entities: pos: 12.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13030 components: - type: Transform @@ -85542,7 +84292,7 @@ entities: pos: 18.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13033 components: - type: Transform @@ -85550,7 +84300,7 @@ entities: pos: 21.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13059 components: - type: Transform @@ -85558,7 +84308,7 @@ entities: pos: 25.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13076 components: - type: Transform @@ -85566,7 +84316,7 @@ entities: pos: 38.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13634 components: - type: Transform @@ -85574,21 +84324,21 @@ entities: pos: 52.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13753 components: - type: Transform pos: 31.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13757 components: - type: Transform pos: 35.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13765 components: - type: Transform @@ -85596,7 +84346,7 @@ entities: pos: 43.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13768 components: - type: Transform @@ -85604,7 +84354,7 @@ entities: pos: 31.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13772 components: - type: Transform @@ -85612,14 +84362,14 @@ entities: pos: 35.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13776 components: - type: Transform pos: 39.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13784 components: - type: Transform @@ -85627,7 +84377,7 @@ entities: pos: 30.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13790 components: - type: Transform @@ -85635,7 +84385,43 @@ entities: pos: 30.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14512 + components: + - type: Transform + pos: 17.5,15.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16802 + components: + - type: Transform + pos: -62.5,-60.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-64.5 + parent: 30 - uid: 18380 components: - type: Transform @@ -85643,7 +84429,7 @@ entities: pos: -45.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18387 components: - type: Transform @@ -85651,14 +84437,14 @@ entities: pos: -61.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18391 components: - type: Transform pos: -57.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18397 components: - type: Transform @@ -85666,7 +84452,7 @@ entities: pos: -53.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18403 components: - type: Transform @@ -85674,7 +84460,7 @@ entities: pos: -44.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18412 components: - type: Transform @@ -85682,14 +84468,14 @@ entities: pos: -44.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18416 components: - type: Transform pos: -61.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18421 components: - type: Transform @@ -85697,14 +84483,14 @@ entities: pos: -58.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18426 components: - type: Transform pos: -51.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18430 components: - type: Transform @@ -85712,7 +84498,7 @@ entities: pos: -49.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18446 components: - type: Transform @@ -85720,7 +84506,7 @@ entities: pos: -63.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18492 components: - type: Transform @@ -85728,7 +84514,7 @@ entities: pos: -65.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18493 components: - type: Transform @@ -85736,7 +84522,7 @@ entities: pos: -64.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18501 components: - type: Transform @@ -85744,14 +84530,14 @@ entities: pos: -68.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18510 components: - type: Transform pos: -77.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18521 components: - type: Transform @@ -85759,7 +84545,7 @@ entities: pos: -68.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18525 components: - type: Transform @@ -85767,14 +84553,14 @@ entities: pos: -62.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18526 components: - type: Transform pos: -60.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18542 components: - type: Transform @@ -85782,14 +84568,7 @@ entities: pos: -60.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18547 - components: - - type: Transform - pos: -59.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18550 components: - type: Transform @@ -85797,7 +84576,7 @@ entities: pos: -56.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18554 components: - type: Transform @@ -85805,7 +84584,7 @@ entities: pos: -56.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18566 components: - type: Transform @@ -85813,7 +84592,7 @@ entities: pos: -55.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18568 components: - type: Transform @@ -85821,7 +84600,7 @@ entities: pos: -67.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18570 components: - type: Transform @@ -85829,7 +84608,7 @@ entities: pos: -55.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18578 components: - type: Transform @@ -85837,7 +84616,7 @@ entities: pos: -63.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18591 components: - type: Transform @@ -85845,28 +84624,14 @@ entities: pos: -68.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18599 - components: - - type: Transform - pos: -64.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18603 components: - type: Transform pos: -63.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18604 - components: - - type: Transform - pos: -58.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18610 components: - type: Transform @@ -85874,7 +84639,7 @@ entities: pos: -67.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18611 components: - type: Transform @@ -85882,7 +84647,7 @@ entities: pos: -68.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18614 components: - type: Transform @@ -85890,7 +84655,7 @@ entities: pos: -56.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18615 components: - type: Transform @@ -85898,7 +84663,7 @@ entities: pos: -55.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18616 components: - type: Transform @@ -85906,14 +84671,14 @@ entities: pos: -61.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18618 components: - type: Transform pos: -61.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18623 components: - type: Transform @@ -85921,7 +84686,7 @@ entities: pos: -58.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18636 components: - type: Transform @@ -85929,7 +84694,7 @@ entities: pos: -67.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18637 components: - type: Transform @@ -85937,7 +84702,7 @@ entities: pos: -68.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18644 components: - type: Transform @@ -85945,7 +84710,7 @@ entities: pos: -75.5,-46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18658 components: - type: Transform @@ -85953,28 +84718,28 @@ entities: pos: -75.5,-43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18704 components: - type: Transform pos: -74.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18711 components: - type: Transform pos: -75.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18717 components: - type: Transform pos: -80.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18739 components: - type: Transform @@ -85982,7 +84747,7 @@ entities: pos: -72.5,-54.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18748 components: - type: Transform @@ -85990,17 +84755,20 @@ entities: pos: -71.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18780 + color: '#0000FFFF' + - uid: 20668 components: - type: Transform - pos: -65.5,-64.5 + rot: 1.5707963267948966 rad + pos: -3.5,-50.5 parent: 30 - - uid: 18781 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-64.5 + rot: 1.5707963267948966 rad + pos: -3.5,-48.5 parent: 30 - uid: 22014 components: @@ -86009,35 +84777,9 @@ entities: pos: -0.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22787 - components: - - type: Transform - pos: -26.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22788 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPort entities: - - uid: 6670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 30 - - uid: 6711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-48.5 - parent: 30 - uid: 6757 components: - type: Transform @@ -86050,34 +84792,6 @@ entities: 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 - - uid: 8801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-51.5 - parent: 30 - - uid: 9064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 10390 components: - type: Transform @@ -86085,7 +84799,7 @@ entities: pos: 20.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 10392 components: - type: Transform @@ -86093,7 +84807,7 @@ entities: pos: 20.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11744 components: - type: Transform @@ -86101,7 +84815,7 @@ entities: pos: 5.5,-25.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11869 components: - type: Transform @@ -86109,7 +84823,13 @@ entities: pos: 5.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 12699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-63.5 + parent: 30 - uid: 12867 components: - type: Transform @@ -86128,37 +84848,57 @@ entities: rot: 3.141592653589793 rad pos: 38.5,9.5 parent: 30 + - uid: 14363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-65.5 + parent: 30 - uid: 16775 components: - type: Transform pos: 36.5,10.5 parent: 30 - - uid: 18776 + - uid: 18772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-65.5 + rot: -1.5707963267948966 rad + pos: -52.5,-64.5 parent: 30 - - uid: 18777 + - uid: 19440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-65.5 + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 parent: 30 - - uid: 18778 + - uid: 20655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-65.5 + pos: -3.5,-47.5 parent: 30 - - uid: 19440 + - uid: 20656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 + pos: -2.5,-47.5 + parent: 30 + - uid: 20657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-50.5 parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' - proto: GasPressurePump entities: + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-61.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7140 components: - type: MetaData @@ -86187,7 +84927,7 @@ entities: pos: -30.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8781 components: - type: Transform @@ -86195,7 +84935,7 @@ entities: pos: 16.5,-24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8792 components: - type: Transform @@ -86243,32 +84983,12 @@ entities: parent: 30 - type: AtmosPipeColor color: '#EB9834FF' - - uid: 9066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9862 + - uid: 9182 components: - - type: MetaData - name: mix to sme loop - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-54.5 + pos: 4.5,-48.5 parent: 30 - - type: AtmosPipeColor - color: '#34E5EBFF' - uid: 12922 components: - type: Transform @@ -86280,14 +85000,13 @@ entities: - type: Transform pos: 38.5,10.5 parent: 30 - - uid: 18772 + - uid: 20670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-62.5 + pos: -3.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF0000FF' - proto: GasThermoMachineFreezer entities: - uid: 482 @@ -86300,33 +85019,24 @@ entities: - type: Transform pos: -36.5,-9.5 parent: 30 - - uid: 6659 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 30 - - uid: 7109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-51.5 - parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7112 + - uid: 905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-52.5 + rot: -1.5707963267948966 rad + pos: 4.5,-53.5 parent: 30 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 7598 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-13.5 parent: 30 + - uid: 11013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 30 - uid: 12038 components: - type: Transform @@ -86351,10 +85061,11 @@ entities: parent: 30 - proto: GasThermoMachineHeater entities: - - uid: 6642 + - uid: 9997 components: - type: Transform - pos: -11.5,-47.5 + rot: 1.5707963267948966 rad + pos: -5.5,-53.5 parent: 30 - uid: 12085 components: @@ -86362,66 +85073,33 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-35.5 parent: 30 -- proto: GasValve - entities: - - uid: 6714 - components: - - type: Transform - pos: -11.5,-55.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7222 - components: - - type: MetaData - name: Emergency Dump Valve - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-48.5 - parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 8278 + - uid: 13960 components: - - type: MetaData - name: Cold Loop Valve - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-49.5 + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 parent: 30 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 9657 +- proto: GasValve + entities: + - uid: 20648 components: - type: Transform - pos: -9.5,-55.5 + pos: -4.5,-53.5 parent: 30 - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-55.5 - parent: 30 - - type: GasValve - open: False - - uid: 9808 + color: '#FF0000FF' + - uid: 20649 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-55.5 + pos: -3.5,-53.5 parent: 30 - type: GasValve open: False + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 21274 components: - type: MetaData @@ -86433,7 +85111,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVentPump entities: - uid: 2451 @@ -86443,7 +85121,7 @@ entities: pos: -35.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2454 components: - type: Transform @@ -86451,7 +85129,7 @@ entities: pos: -35.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2482 components: - type: Transform @@ -86459,7 +85137,7 @@ entities: pos: -49.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2491 components: - type: Transform @@ -86467,14 +85145,14 @@ entities: pos: -41.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2493 components: - type: Transform pos: -45.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2503 components: - type: Transform @@ -86482,14 +85160,14 @@ entities: pos: -35.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2523 components: - type: Transform pos: -33.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2524 components: - type: Transform @@ -86497,7 +85175,7 @@ entities: pos: -30.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2544 components: - type: Transform @@ -86505,14 +85183,14 @@ entities: pos: -41.5,48.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2551 components: - type: Transform pos: -40.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2573 components: - type: Transform @@ -86520,7 +85198,7 @@ entities: pos: -25.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2592 components: - type: Transform @@ -86528,7 +85206,7 @@ entities: pos: -31.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2594 components: - type: Transform @@ -86536,7 +85214,7 @@ entities: pos: -30.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2638 components: - type: Transform @@ -86544,7 +85222,7 @@ entities: pos: -38.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2639 components: - type: Transform @@ -86552,7 +85230,7 @@ entities: pos: -42.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2640 components: - type: Transform @@ -86560,14 +85238,14 @@ entities: pos: -46.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2644 components: - type: Transform pos: -41.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2669 components: - type: Transform @@ -86575,7 +85253,7 @@ entities: pos: -47.5,49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2676 components: - type: Transform @@ -86583,14 +85261,14 @@ entities: pos: -50.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2705 components: - type: Transform pos: -48.5,68.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2706 components: - type: Transform @@ -86598,7 +85276,7 @@ entities: pos: -48.5,66.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2707 components: - type: Transform @@ -86606,7 +85284,7 @@ entities: pos: -49.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2708 components: - type: Transform @@ -86614,7 +85292,7 @@ entities: pos: -45.5,61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2734 components: - type: Transform @@ -86622,7 +85300,7 @@ entities: pos: -47.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2743 components: - type: Transform @@ -86630,14 +85308,14 @@ entities: pos: -28.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 2862 components: - type: Transform pos: -8.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3042 components: - type: Transform @@ -86645,7 +85323,7 @@ entities: pos: -26.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3050 components: - type: Transform @@ -86653,7 +85331,7 @@ entities: pos: -30.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3056 components: - type: Transform @@ -86661,7 +85339,7 @@ entities: pos: -26.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3062 components: - type: Transform @@ -86669,7 +85347,7 @@ entities: pos: -22.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3064 components: - type: Transform @@ -86677,7 +85355,7 @@ entities: pos: -35.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3066 components: - type: Transform @@ -86685,7 +85363,7 @@ entities: pos: -35.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3069 components: - type: Transform @@ -86693,21 +85371,21 @@ entities: pos: -35.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3077 components: - type: Transform pos: -40.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3099 components: - type: Transform pos: -42.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3111 components: - type: Transform @@ -86715,7 +85393,7 @@ entities: pos: -39.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3135 components: - type: Transform @@ -86723,7 +85401,7 @@ entities: pos: -53.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3148 components: - type: Transform @@ -86731,7 +85409,7 @@ entities: pos: -45.5,4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3171 components: - type: Transform @@ -86739,7 +85417,7 @@ entities: pos: -45.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3228 components: - type: Transform @@ -86747,28 +85425,28 @@ entities: pos: -31.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3230 components: - type: Transform pos: -32.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3253 components: - type: Transform pos: -43.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3266 components: - type: Transform pos: -44.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3302 components: - type: Transform @@ -86776,7 +85454,7 @@ entities: pos: -60.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3303 components: - type: Transform @@ -86784,7 +85462,7 @@ entities: pos: -60.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3304 components: - type: Transform @@ -86792,7 +85470,7 @@ entities: pos: -60.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3305 components: - type: Transform @@ -86800,7 +85478,7 @@ entities: pos: -60.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3323 components: - type: Transform @@ -86808,43 +85486,35 @@ entities: pos: -56.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3324 components: - type: Transform pos: -50.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3325 components: - type: Transform pos: -27.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3327 components: - type: Transform pos: -17.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 3357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3376 components: - type: Transform pos: -26.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3401 components: - type: Transform @@ -86852,21 +85522,21 @@ entities: pos: -13.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3407 components: - type: Transform pos: -10.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3410 components: - type: Transform pos: 5.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3422 components: - type: Transform @@ -86874,14 +85544,14 @@ entities: pos: -0.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3469 components: - type: Transform pos: -16.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3479 components: - type: Transform @@ -86889,14 +85559,14 @@ entities: pos: -8.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3480 components: - type: Transform pos: -9.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3481 components: - type: Transform @@ -86904,7 +85574,7 @@ entities: pos: 3.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 3485 components: - type: Transform @@ -86912,21 +85582,21 @@ entities: pos: -0.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6109 components: - type: Transform pos: -23.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6113 components: - type: Transform pos: 3.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6123 components: - type: Transform @@ -86934,14 +85604,14 @@ entities: pos: -0.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6205 components: - type: Transform pos: -9.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6214 components: - type: Transform @@ -86949,7 +85619,7 @@ entities: pos: -7.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6223 components: - type: Transform @@ -86957,7 +85627,7 @@ entities: pos: 0.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6229 components: - type: Transform @@ -86965,7 +85635,7 @@ entities: pos: -19.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6239 components: - type: Transform @@ -86973,7 +85643,7 @@ entities: pos: -25.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6245 components: - type: Transform @@ -86981,7 +85651,7 @@ entities: pos: -20.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6246 components: - type: Transform @@ -86989,7 +85659,7 @@ entities: pos: -19.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6834 components: - type: Transform @@ -86997,7 +85667,7 @@ entities: pos: -25.5,-22.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6900 components: - type: Transform @@ -87005,7 +85675,7 @@ entities: pos: -28.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6920 components: - type: Transform @@ -87013,7 +85683,7 @@ entities: pos: -33.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 6939 components: - type: Transform @@ -87021,14 +85691,25 @@ entities: pos: -18.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 7099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7115 components: - type: Transform pos: -28.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7136 components: - type: Transform @@ -87038,7 +85719,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7137 components: - type: Transform @@ -87048,14 +85729,14 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7340 components: - type: Transform pos: -12.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7373 components: - type: Transform @@ -87063,7 +85744,7 @@ entities: pos: -7.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 7424 components: - type: Transform @@ -87071,7 +85752,18 @@ entities: pos: -35.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 7443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 7569 components: - type: Transform @@ -87082,14 +85774,14 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8033 components: - type: Transform pos: -13.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8100 components: - type: Transform @@ -87097,14 +85789,36 @@ entities: pos: -13.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 8224 components: - type: Transform pos: -22.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 8316 components: - type: Transform @@ -87112,14 +85826,36 @@ entities: pos: -29.5,-7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 8335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-48.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 9046 components: - type: Transform pos: -25.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9686 components: - type: Transform @@ -87130,7 +85866,7 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 9811 components: - type: Transform @@ -87138,60 +85874,84 @@ entities: pos: -54.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11153 + color: '#0000FFFF' + - uid: 9884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-42.5 + pos: -23.5,-42.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11154 + color: '#0000FFFF' + - uid: 9903 components: - type: Transform - pos: -12.5,-40.5 + rot: 1.5707963267948966 rad + pos: -12.5,-35.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11155 + color: '#0000FFFF' + - uid: 9908 components: - type: Transform - pos: -2.5,-40.5 + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11162 + color: '#0000FFFF' + - uid: 10022 components: - type: Transform - pos: -6.5,-35.5 + rot: 1.5707963267948966 rad + pos: -12.5,-31.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11163 + color: '#0000FFFF' + - uid: 10233 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-43.5 + pos: -63.5,-63.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11165 + color: '#0000FFFF' + - uid: 11026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-32.5 + pos: -6.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11176 + color: '#0000FFFF' + - uid: 11134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11165 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-28.5 + pos: 1.5,-32.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11178 components: - type: Transform @@ -87199,36 +85959,42 @@ entities: pos: -2.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11180 components: - type: Transform pos: 10.5,-23.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11188 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11200 components: - type: Transform pos: 2.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11208 components: - type: Transform pos: 9.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11211 components: - type: Transform @@ -87236,14 +86002,14 @@ entities: pos: 12.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11216 components: - type: Transform pos: -2.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11217 components: - type: Transform @@ -87251,7 +86017,7 @@ entities: pos: 5.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11220 components: - type: Transform @@ -87259,7 +86025,7 @@ entities: pos: 8.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11222 components: - type: Transform @@ -87267,21 +86033,14 @@ entities: pos: 14.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11224 components: - type: Transform pos: 12.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 11227 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11664 components: - type: Transform @@ -87289,7 +86048,7 @@ entities: pos: 33.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11868 components: - type: Transform @@ -87297,7 +86056,7 @@ entities: pos: 24.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11872 components: - type: Transform @@ -87305,7 +86064,7 @@ entities: pos: 24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11922 components: - type: Transform @@ -87313,7 +86072,7 @@ entities: pos: 37.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11938 components: - type: Transform @@ -87321,7 +86080,7 @@ entities: pos: 17.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11939 components: - type: Transform @@ -87329,14 +86088,14 @@ entities: pos: 20.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11981 components: - type: Transform pos: 20.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11991 components: - type: Transform @@ -87344,21 +86103,21 @@ entities: pos: 19.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12007 components: - type: Transform pos: 30.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12010 components: - type: Transform pos: 25.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12060 components: - type: Transform @@ -87366,7 +86125,7 @@ entities: pos: 37.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12081 components: - type: Transform @@ -87374,7 +86133,7 @@ entities: pos: 30.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12230 components: - type: Transform @@ -87382,7 +86141,7 @@ entities: pos: 34.5,-14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12491 components: - type: Transform @@ -87390,7 +86149,7 @@ entities: pos: 9.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12492 components: - type: Transform @@ -87398,14 +86157,14 @@ entities: pos: 11.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12495 components: - type: Transform pos: 9.5,41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12537 components: - type: Transform @@ -87413,14 +86172,14 @@ entities: pos: 9.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12538 components: - type: Transform pos: 18.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12579 components: - type: Transform @@ -87428,7 +86187,7 @@ entities: pos: 18.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12580 components: - type: Transform @@ -87436,7 +86195,7 @@ entities: pos: 18.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12581 components: - type: Transform @@ -87444,14 +86203,14 @@ entities: pos: 18.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12587 components: - type: Transform pos: 25.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12605 components: - type: Transform @@ -87459,14 +86218,14 @@ entities: pos: 24.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12611 components: - type: Transform pos: 27.5,27.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12756 components: - type: Transform @@ -87479,7 +86238,7 @@ entities: pos: 32.5,11.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12959 components: - type: Transform @@ -87487,7 +86246,7 @@ entities: pos: 27.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12976 components: - type: Transform @@ -87495,23 +86254,18 @@ entities: pos: 37.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,10.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13002 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13003 components: - type: Transform @@ -87519,7 +86273,7 @@ entities: pos: 28.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13004 components: - type: Transform @@ -87527,14 +86281,14 @@ entities: pos: 24.5,19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13005 components: - type: Transform pos: 14.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13006 components: - type: Transform @@ -87542,14 +86296,18 @@ entities: pos: 13.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 13081 + color: '#0000FFFF' + - uid: 13085 components: - type: Transform - pos: 18.5,16.5 + rot: 3.141592653589793 rad + pos: 17.5,14.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13335 components: - type: Transform @@ -87557,7 +86315,7 @@ entities: pos: 9.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13360 components: - type: Transform @@ -87565,28 +86323,28 @@ entities: pos: 26.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13469 components: - type: Transform pos: 16.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13470 components: - type: Transform pos: 20.5,44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13593 components: - type: Transform pos: 35.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13783 components: - type: Transform @@ -87594,7 +86352,7 @@ entities: pos: 45.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13788 components: - type: Transform @@ -87602,14 +86360,22 @@ entities: pos: 30.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13789 components: - type: Transform pos: 30.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 14510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 30 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 15441 components: - type: Transform @@ -87617,14 +86383,14 @@ entities: pos: 51.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 15619 components: - type: Transform pos: 52.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 16096 components: - type: Transform @@ -87632,7 +86398,18 @@ entities: pos: 6.5,-28.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' + - uid: 18074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 18436 components: - type: Transform @@ -87640,7 +86417,7 @@ entities: pos: -45.5,-13.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18437 components: - type: Transform @@ -87648,35 +86425,35 @@ entities: pos: -45.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18438 components: - type: Transform pos: -58.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18439 components: - type: Transform pos: -49.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18440 components: - type: Transform pos: -53.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18449 components: - type: Transform pos: -63.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18450 components: - type: Transform @@ -87684,7 +86461,7 @@ entities: pos: -62.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18629 components: - type: Transform @@ -87692,49 +86469,49 @@ entities: pos: -59.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18655 components: - type: Transform pos: -79.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18662 components: - type: Transform pos: -77.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18663 components: - type: Transform pos: -75.5,-41.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18667 components: - type: Transform pos: -68.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18668 components: - type: Transform pos: -67.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18674 components: - type: Transform pos: -55.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18678 components: - type: Transform @@ -87742,7 +86519,7 @@ entities: pos: -52.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18679 components: - type: Transform @@ -87750,7 +86527,7 @@ entities: pos: -52.5,-52.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18720 components: - type: Transform @@ -87758,7 +86535,7 @@ entities: pos: -83.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18731 components: - type: Transform @@ -87766,7 +86543,7 @@ entities: pos: -80.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18732 components: - type: Transform @@ -87774,7 +86551,7 @@ entities: pos: -74.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18753 components: - type: Transform @@ -87782,21 +86559,21 @@ entities: pos: -76.5,-55.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18754 components: - type: Transform pos: -71.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18757 components: - type: Transform pos: -60.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 18758 components: - type: Transform @@ -87804,15 +86581,7 @@ entities: pos: -60.5,-49.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 18769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-64.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 20335 components: - type: Transform @@ -87820,7 +86589,7 @@ entities: pos: 4.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 21549 components: - type: Transform @@ -87828,14 +86597,14 @@ entities: pos: 39.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22023 components: - type: Transform pos: -0.5,74.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22024 components: - type: Transform @@ -87843,46 +86612,14 @@ entities: pos: 0.5,65.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 22025 components: - type: Transform pos: -1.5,38.5 parent: 30 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-59.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-60.5 - parent: 30 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasVentScrubber entities: - uid: 2324 @@ -87897,7 +86634,7 @@ entities: pos: -35.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2453 components: - type: Transform @@ -87905,7 +86642,7 @@ entities: pos: -35.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2483 components: - type: Transform @@ -87913,7 +86650,7 @@ entities: pos: -50.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2490 components: - type: Transform @@ -87921,7 +86658,7 @@ entities: pos: -42.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2492 components: - type: Transform @@ -87929,7 +86666,7 @@ entities: pos: -41.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2504 components: - type: Transform @@ -87937,7 +86674,7 @@ entities: pos: -35.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2525 components: - type: Transform @@ -87945,7 +86682,7 @@ entities: pos: -35.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2526 components: - type: Transform @@ -87953,7 +86690,7 @@ entities: pos: -34.5,46.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2545 components: - type: Transform @@ -87961,14 +86698,14 @@ entities: pos: -41.5,47.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2552 components: - type: Transform pos: -38.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2574 components: - type: Transform @@ -87976,7 +86713,7 @@ entities: pos: -25.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2593 components: - type: Transform @@ -87984,7 +86721,7 @@ entities: pos: -33.5,57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2595 components: - type: Transform @@ -87992,7 +86729,7 @@ entities: pos: -34.5,52.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2641 components: - type: Transform @@ -88000,7 +86737,7 @@ entities: pos: -48.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2642 components: - type: Transform @@ -88008,7 +86745,7 @@ entities: pos: -44.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2643 components: - type: Transform @@ -88016,7 +86753,7 @@ entities: pos: -40.5,40.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2645 components: - type: Transform @@ -88024,7 +86761,7 @@ entities: pos: -43.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2670 components: - type: Transform @@ -88032,7 +86769,7 @@ entities: pos: -47.5,50.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2675 components: - type: Transform @@ -88040,7 +86777,7 @@ entities: pos: -50.5,51.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2730 components: - type: Transform @@ -88048,7 +86785,7 @@ entities: pos: -48.5,63.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2731 components: - type: Transform @@ -88056,7 +86793,7 @@ entities: pos: -50.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2732 components: - type: Transform @@ -88064,7 +86801,7 @@ entities: pos: -46.5,60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2733 components: - type: Transform @@ -88072,7 +86809,7 @@ entities: pos: -49.5,56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 2742 components: - type: Transform @@ -88080,7 +86817,7 @@ entities: pos: -28.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3006 components: - type: Transform @@ -88088,7 +86825,7 @@ entities: pos: -10.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3041 components: - type: Transform @@ -88096,7 +86833,7 @@ entities: pos: -30.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3049 components: - type: Transform @@ -88104,7 +86841,7 @@ entities: pos: -31.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3055 components: - type: Transform @@ -88112,7 +86849,7 @@ entities: pos: -27.5,23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3063 components: - type: Transform @@ -88120,7 +86857,7 @@ entities: pos: -21.5,22.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3065 components: - type: Transform @@ -88128,7 +86865,7 @@ entities: pos: -35.5,24.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3067 components: - type: Transform @@ -88136,7 +86873,7 @@ entities: pos: -35.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3068 components: - type: Transform @@ -88144,7 +86881,7 @@ entities: pos: -35.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3076 components: - type: Transform @@ -88152,7 +86889,7 @@ entities: pos: -39.5,10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3100 components: - type: Transform @@ -88160,7 +86897,7 @@ entities: pos: -39.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3112 components: - type: Transform @@ -88168,7 +86905,7 @@ entities: pos: -41.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3136 components: - type: Transform @@ -88176,7 +86913,7 @@ entities: pos: -52.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3147 components: - type: Transform @@ -88184,7 +86921,7 @@ entities: pos: -44.5,6.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3170 components: - type: Transform @@ -88192,7 +86929,7 @@ entities: pos: -44.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3229 components: - type: Transform @@ -88200,7 +86937,7 @@ entities: pos: -31.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3231 components: - type: Transform @@ -88208,14 +86945,14 @@ entities: pos: -31.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3254 components: - type: Transform pos: -42.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3267 components: - type: Transform @@ -88223,7 +86960,7 @@ entities: pos: -41.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3317 components: - type: Transform @@ -88231,7 +86968,7 @@ entities: pos: -53.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3318 components: - type: Transform @@ -88239,7 +86976,7 @@ entities: pos: -53.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3326 components: - type: Transform @@ -88247,7 +86984,7 @@ entities: pos: -24.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3328 components: - type: Transform @@ -88255,7 +86992,7 @@ entities: pos: -14.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3358 components: - type: Transform @@ -88263,7 +87000,7 @@ entities: pos: -24.5,9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3377 components: - type: Transform @@ -88271,14 +87008,14 @@ entities: pos: -24.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3398 components: - type: Transform pos: -17.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3400 components: - type: Transform @@ -88286,7 +87023,7 @@ entities: pos: -13.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3408 components: - type: Transform @@ -88294,7 +87031,7 @@ entities: pos: -6.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3409 components: - type: Transform @@ -88302,7 +87039,7 @@ entities: pos: 1.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3421 components: - type: Transform @@ -88310,21 +87047,21 @@ entities: pos: -4.5,7.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3482 components: - type: Transform pos: -12.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3483 components: - type: Transform pos: -10.5,17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3484 components: - type: Transform @@ -88332,14 +87069,14 @@ entities: pos: 3.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 3486 components: - type: Transform pos: -4.5,14.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 5029 components: - type: Transform @@ -88347,7 +87084,7 @@ entities: pos: -28.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6108 components: - type: Transform @@ -88355,7 +87092,7 @@ entities: pos: -19.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6112 components: - type: Transform @@ -88363,7 +87100,7 @@ entities: pos: 0.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6122 components: - type: Transform @@ -88371,7 +87108,7 @@ entities: pos: -2.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6204 components: - type: Transform @@ -88379,7 +87116,7 @@ entities: pos: -9.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6213 components: - type: Transform @@ -88387,7 +87124,7 @@ entities: pos: -11.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6222 components: - type: Transform @@ -88395,7 +87132,7 @@ entities: pos: 0.5,32.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6265 components: - type: Transform @@ -88403,7 +87140,7 @@ entities: pos: -27.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6266 components: - type: Transform @@ -88411,7 +87148,7 @@ entities: pos: -21.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6268 components: - type: Transform @@ -88419,14 +87156,14 @@ entities: pos: -19.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6911 components: - type: Transform pos: -28.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 6935 components: - type: Transform @@ -88434,7 +87171,28 @@ entities: pos: -33.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 7098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7100 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7119 components: - type: Transform @@ -88442,7 +87200,7 @@ entities: pos: -28.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7130 components: - type: Transform @@ -88453,7 +87211,7 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7131 components: - type: Transform @@ -88464,14 +87222,47 @@ entities: deviceLists: - 8267 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 7222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-52.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19570 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-42.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 7339 components: - type: Transform pos: -11.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7377 components: - type: Transform @@ -88479,7 +87270,7 @@ entities: pos: -7.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7378 components: - type: Transform @@ -88487,7 +87278,7 @@ entities: pos: -5.5,-11.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7407 components: - type: Transform @@ -88495,7 +87286,7 @@ entities: pos: -18.5,-1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7567 components: - type: Transform @@ -88503,7 +87294,7 @@ entities: pos: -17.5,-20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7571 components: - type: Transform @@ -88513,7 +87304,7 @@ entities: deviceLists: - 8254 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 7572 components: - type: Transform @@ -88521,21 +87312,32 @@ entities: pos: -13.5,-12.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 8223 components: - type: Transform pos: -24.5,-3.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 8609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-47.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 13957 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9049 components: - type: Transform pos: -25.5,-16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9713 components: - type: Transform @@ -88543,7 +87345,18 @@ entities: pos: -25.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 9793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-45.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 9996 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 9846 components: - type: Transform @@ -88551,7 +87364,7 @@ entities: pos: -29.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 9864 components: - type: Transform @@ -88562,69 +87375,66 @@ entities: deviceLists: - 9671 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10039 + color: '#FF0000FF' + - uid: 9897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-9.5 + rot: 3.141592653589793 rad + pos: -22.5,-47.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13958 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11094 + color: '#FF0000FF' + - uid: 9899 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11097 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-40.5 + pos: -15.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11099 + color: '#FF0000FF' + - uid: 10039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + rot: 1.5707963267948966 rad + pos: -55.5,-9.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11107 + color: '#FF0000FF' + - uid: 10042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-30.5 + rot: -1.5707963267948966 rad + pos: -12.5,-34.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11114 + color: '#FF0000FF' + - uid: 10043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 13966 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11115 + color: '#FF0000FF' + - uid: 10752 components: - type: Transform - pos: -8.5,-35.5 + pos: -8.5,-36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11166 components: - type: Transform @@ -88632,7 +87442,7 @@ entities: pos: 1.5,-34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11179 components: - type: Transform @@ -88640,23 +87450,29 @@ entities: pos: -2.5,-27.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11189 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-28.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11192 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-23.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 10010 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11201 components: - type: Transform @@ -88664,14 +87480,14 @@ entities: pos: 4.5,-19.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11209 components: - type: Transform pos: 7.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11210 components: - type: Transform @@ -88679,14 +87495,14 @@ entities: pos: 12.5,-15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11214 components: - type: Transform pos: 20.5,-18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11215 components: - type: Transform @@ -88694,14 +87510,14 @@ entities: pos: -2.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11218 components: - type: Transform pos: 6.5,-2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11219 components: - type: Transform @@ -88709,7 +87525,7 @@ entities: pos: 8.5,-8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11221 components: - type: Transform @@ -88717,7 +87533,7 @@ entities: pos: 12.5,-4.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11223 components: - type: Transform @@ -88725,14 +87541,14 @@ entities: pos: 9.5,2.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11681 components: - type: Transform pos: 25.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11714 components: - type: Transform @@ -88740,35 +87556,35 @@ entities: pos: 6.5,-26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11764 components: - type: Transform pos: 24.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11797 components: - type: Transform pos: 32.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11944 components: - type: Transform pos: 19.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11945 components: - type: Transform pos: 16.5,-10.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 11985 components: - type: Transform @@ -88776,28 +87592,28 @@ entities: pos: 18.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12043 components: - type: Transform pos: 29.5,1.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12044 components: - type: Transform pos: 26.5,0.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12489 components: - type: Transform pos: 8.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12490 components: - type: Transform @@ -88805,7 +87621,7 @@ entities: pos: 9.5,31.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12536 components: - type: Transform @@ -88813,7 +87629,7 @@ entities: pos: 9.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12539 components: - type: Transform @@ -88821,7 +87637,7 @@ entities: pos: 16.5,26.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12576 components: - type: Transform @@ -88829,7 +87645,7 @@ entities: pos: 18.5,33.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12577 components: - type: Transform @@ -88837,7 +87653,7 @@ entities: pos: 18.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12578 components: - type: Transform @@ -88845,21 +87661,21 @@ entities: pos: 18.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12583 components: - type: Transform pos: 21.5,43.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12606 components: - type: Transform pos: 24.5,37.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12619 components: - type: Transform @@ -88867,7 +87683,7 @@ entities: pos: 27.5,29.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12755 components: - type: Transform @@ -88881,7 +87697,7 @@ entities: pos: 29.5,20.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 12824 components: - type: Transform @@ -88889,15 +87705,7 @@ entities: pos: 28.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13079 components: - type: Transform @@ -88905,7 +87713,7 @@ entities: pos: 13.5,21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13080 components: - type: Transform @@ -88913,14 +87721,17 @@ entities: pos: 13.5,16.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13082 components: - type: Transform pos: 18.5,15.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13084 components: - type: Transform @@ -88928,22 +87739,14 @@ entities: pos: 22.5,18.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13085 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,11.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13086 components: - type: Transform pos: 25.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13336 components: - type: Transform @@ -88951,21 +87754,21 @@ entities: pos: 9.5,15.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13353 components: - type: Transform pos: 40.5,13.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13355 components: - type: Transform pos: 38.5,8.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13782 components: - type: Transform @@ -88973,21 +87776,32 @@ entities: pos: 45.5,35.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13798 components: - type: Transform pos: 29.5,42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 13799 components: - type: Transform pos: 30.5,36.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 14522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 14540 components: - type: Transform @@ -88995,14 +87809,25 @@ entities: pos: 20.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18060 components: - type: Transform pos: 30.5,-5.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 18214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 14365 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18435 components: - type: Transform @@ -89010,7 +87835,7 @@ entities: pos: -44.5,-17.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18441 components: - type: Transform @@ -89018,7 +87843,7 @@ entities: pos: -57.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18442 components: - type: Transform @@ -89026,14 +87851,14 @@ entities: pos: -51.5,-23.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18451 components: - type: Transform pos: -61.5,-21.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18519 components: - type: Transform @@ -89041,28 +87866,36 @@ entities: pos: -77.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18520 components: - type: Transform pos: -78.5,-39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18523 components: - type: Transform pos: -68.5,-42.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18524 components: - type: Transform pos: -64.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' + - uid: 18547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-63.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 18630 components: - type: Transform @@ -89070,14 +87903,14 @@ entities: pos: -67.5,-44.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18675 components: - type: Transform pos: -56.5,-45.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18676 components: - type: Transform @@ -89085,7 +87918,7 @@ entities: pos: -52.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18677 components: - type: Transform @@ -89093,7 +87926,7 @@ entities: pos: -52.5,-57.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18729 components: - type: Transform @@ -89101,7 +87934,7 @@ entities: pos: -80.5,-59.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18730 components: - type: Transform @@ -89109,21 +87942,21 @@ entities: pos: -75.5,-61.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18744 components: - type: Transform pos: -76.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18745 components: - type: Transform pos: -72.5,-53.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18756 components: - type: Transform @@ -89131,22 +87964,14 @@ entities: pos: -63.5,-60.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 18759 components: - type: Transform pos: -63.5,-48.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-65.5 - parent: 30 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21545 components: - type: Transform @@ -89154,37 +87979,53 @@ entities: pos: 35.5,34.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - uid: 21553 components: - type: Transform pos: 43.5,39.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 8255 + - uid: 9216 components: - type: Transform - pos: -9.5,-50.5 + pos: -5.5,-56.5 parent: 30 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8258 + color: '#FF0000FF' + - uid: 9373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10044 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-50.5 + pos: -1.5,-51.5 + parent: 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-49.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - proto: GeneratorRTG entities: - - uid: 22223 + - uid: 2402 components: - type: Transform - pos: -67.5,-64.5 + pos: -53.5,-59.5 parent: 30 - proto: Girder entities: @@ -89281,7 +88122,8 @@ entities: - uid: 194 components: - type: Transform - pos: -11.5,-56.5 + rot: 3.141592653589793 rad + pos: -4.5,-54.5 parent: 30 - uid: 317 components: @@ -89293,6 +88135,11 @@ entities: - type: Transform pos: -19.5,8.5 parent: 30 + - uid: 331 + components: + - type: Transform + pos: -62.5,-66.5 + parent: 30 - uid: 348 components: - type: Transform @@ -89408,6 +88255,11 @@ entities: - type: Transform pos: 6.5,0.5 parent: 30 + - uid: 399 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 30 - uid: 425 components: - type: Transform @@ -89848,10 +88700,11 @@ entities: - type: Transform pos: -42.5,34.5 parent: 30 - - uid: 1493 + - uid: 1476 components: - type: Transform - pos: -53.5,34.5 + rot: -1.5707963267948966 rad + pos: -53.5,37.5 parent: 30 - uid: 1494 components: @@ -90342,41 +89195,26 @@ entities: - type: Transform pos: -53.5,72.5 parent: 30 - - uid: 2402 - components: - - type: Transform - pos: -34.5,66.5 - parent: 30 - - uid: 2403 - components: - - type: Transform - pos: -33.5,66.5 - parent: 30 - uid: 2933 components: - type: Transform pos: -15.5,-16.5 parent: 30 - - uid: 3712 + - uid: 3348 components: - type: Transform - pos: -46.5,3.5 + rot: 3.141592653589793 rad + pos: -61.5,-70.5 parent: 30 - - uid: 4241 + - uid: 3712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-67.5 + pos: -46.5,3.5 parent: 30 - uid: 4370 components: - type: Transform - pos: -34.5,67.5 - parent: 30 - - uid: 4371 - components: - - type: Transform - pos: -35.5,67.5 + pos: -79.5,42.5 parent: 30 - uid: 4390 components: @@ -90393,27 +89231,6 @@ entities: - type: Transform pos: -46.5,-5.5 parent: 30 - - uid: 4412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-67.5 - parent: 30 - - uid: 4424 - components: - - type: Transform - pos: -36.5,68.5 - parent: 30 - - uid: 4426 - components: - - type: Transform - pos: -35.5,68.5 - parent: 30 - - uid: 4455 - components: - - type: Transform - pos: -32.5,65.5 - parent: 30 - uid: 4789 components: - type: Transform @@ -90465,6 +89282,12 @@ entities: - type: Transform pos: -60.5,5.5 parent: 30 + - uid: 4893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 30 - uid: 5018 components: - type: Transform @@ -90730,11 +89553,6 @@ entities: - type: Transform pos: -50.5,4.5 parent: 30 - - uid: 5732 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 30 - uid: 5771 components: - type: Transform @@ -90883,7 +89701,8 @@ entities: - uid: 6496 components: - type: Transform - pos: -32.5,64.5 + rot: -1.5707963267948966 rad + pos: -85.5,40.5 parent: 30 - uid: 6534 components: @@ -91007,7 +89826,8 @@ entities: - uid: 6717 components: - type: Transform - pos: -31.5,64.5 + rot: -1.5707963267948966 rad + pos: -88.5,40.5 parent: 30 - uid: 6746 components: @@ -91076,16 +89896,6 @@ entities: - type: Transform pos: -12.5,-13.5 parent: 30 - - uid: 7110 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 30 - - uid: 7111 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 30 - uid: 7172 components: - type: Transform @@ -91162,11 +89972,6 @@ entities: - type: Transform pos: -63.5,42.5 parent: 30 - - uid: 7449 - components: - - type: Transform - pos: -89.5,42.5 - parent: 30 - uid: 7457 components: - type: Transform @@ -91242,6 +90047,12 @@ entities: - type: Transform pos: 47.5,12.5 parent: 30 + - uid: 7751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-79.5 + parent: 30 - uid: 7839 components: - type: Transform @@ -91278,11 +90089,6 @@ entities: - type: Transform pos: -32.5,-5.5 parent: 30 - - uid: 8256 - components: - - type: Transform - pos: -20.5,-47.5 - parent: 30 - uid: 8271 components: - type: Transform @@ -91328,11 +90134,6 @@ entities: - type: Transform pos: 7.5,-12.5 parent: 30 - - uid: 8361 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 30 - uid: 8373 components: - type: Transform @@ -91373,16 +90174,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 30 - - uid: 8418 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 30 - - uid: 8422 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 30 - uid: 8423 components: - type: Transform @@ -91403,11 +90194,6 @@ entities: - type: Transform pos: 17.5,-16.5 parent: 30 - - uid: 8427 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 30 - uid: 8446 components: - type: Transform @@ -91742,11 +90528,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-35.5 parent: 30 - - uid: 9104 - components: - - type: Transform - pos: -4.5,-56.5 - parent: 30 - uid: 9105 components: - type: Transform @@ -91782,15 +90563,11 @@ entities: - type: Transform pos: 24.5,-34.5 parent: 30 - - uid: 9129 - components: - - type: Transform - pos: -5.5,-56.5 - parent: 30 - - uid: 9164 + - uid: 9122 components: - type: Transform - pos: -9.5,-56.5 + rot: -1.5707963267948966 rad + pos: -53.5,35.5 parent: 30 - uid: 9165 components: @@ -91805,7 +90582,8 @@ entities: - uid: 9174 components: - type: Transform - pos: -2.5,-56.5 + rot: 3.141592653589793 rad + pos: -2.5,-54.5 parent: 30 - uid: 9185 components: @@ -91837,170 +90615,241 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 30 - - uid: 9295 + - uid: 9297 components: - type: Transform - pos: 4.5,-44.5 + pos: 4.5,-38.5 parent: 30 - - uid: 9297 + - uid: 9324 components: - type: Transform - pos: 4.5,-38.5 + rot: 3.141592653589793 rad + pos: -3.5,-60.5 parent: 30 - - uid: 9342 + - uid: 9326 components: - type: Transform - pos: -3.5,-56.5 + rot: 3.141592653589793 rad + pos: -0.5,-60.5 parent: 30 - - uid: 9343 + - uid: 9328 components: - type: Transform - pos: -12.5,-56.5 + rot: 3.141592653589793 rad + pos: 2.5,-60.5 + parent: 30 + - uid: 9329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 30 + - uid: 9348 + components: + - type: Transform + pos: 13.5,-52.5 parent: 30 - uid: 9362 components: - type: Transform pos: -8.5,-37.5 parent: 30 + - uid: 9364 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 30 - uid: 9365 components: - type: Transform pos: -6.5,-37.5 parent: 30 - - uid: 9424 + - uid: 9371 components: - type: Transform - pos: -20.5,-43.5 + pos: 8.5,-58.5 parent: 30 - - uid: 9425 + - uid: 9372 components: - type: Transform - pos: -20.5,-40.5 + pos: 8.5,-55.5 parent: 30 - - uid: 9589 + - uid: 9398 components: - type: Transform - pos: -17.5,-37.5 + pos: 8.5,-57.5 parent: 30 - - uid: 9590 + - uid: 9399 components: - type: Transform - pos: -19.5,-37.5 + pos: 8.5,-54.5 parent: 30 - - uid: 9662 + - uid: 9409 components: - type: Transform - pos: 12.5,37.5 + rot: 3.141592653589793 rad + pos: -3.5,-44.5 parent: 30 - - uid: 9682 + - uid: 9504 components: - type: Transform - pos: 1.5,-55.5 + pos: 13.5,-49.5 parent: 30 - - uid: 9719 + - uid: 9505 components: - type: Transform - pos: 12.5,36.5 + pos: 13.5,-47.5 parent: 30 - - uid: 9814 + - uid: 9572 components: - type: Transform - pos: 0.5,-55.5 + rot: 3.141592653589793 rad + pos: -18.5,-49.5 parent: 30 - - uid: 9815 + - uid: 9573 components: - type: Transform - pos: 0.5,-47.5 + rot: 3.141592653589793 rad + pos: -6.5,-42.5 parent: 30 - - uid: 9816 + - uid: 9579 components: - type: Transform - pos: 1.5,-47.5 + rot: 3.141592653589793 rad + pos: -14.5,-39.5 parent: 30 - - uid: 9819 + - uid: 9580 components: - type: Transform - pos: 1.5,-45.5 + rot: 3.141592653589793 rad + pos: -22.5,-45.5 parent: 30 - - uid: 9820 + - uid: 9584 components: - type: Transform - pos: 3.5,-45.5 + rot: 3.141592653589793 rad + pos: -18.5,-45.5 parent: 30 - - uid: 9918 + - uid: 9585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-54.5 + rot: 3.141592653589793 rad + pos: -24.5,-45.5 parent: 30 - - uid: 9919 + - uid: 9586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-53.5 + rot: 3.141592653589793 rad + pos: -16.5,-45.5 parent: 30 - - uid: 9920 + - uid: 9587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 + rot: 3.141592653589793 rad + pos: -16.5,-49.5 parent: 30 - - uid: 9921 + - uid: 9588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-44.5 + parent: 30 + - uid: 9645 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 30 + - uid: 9649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 30 + - uid: 9650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-60.5 + parent: 30 + - uid: 9662 + components: + - type: Transform + pos: 12.5,37.5 + parent: 30 + - uid: 9719 + components: + - type: Transform + pos: 12.5,36.5 + parent: 30 + - uid: 9816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-50.5 + pos: -1.5,-42.5 parent: 30 - - uid: 9922 + - uid: 9819 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-49.5 + pos: 2.5,-42.5 parent: 30 - - uid: 9936 + - uid: 9823 components: - type: Transform - pos: -0.5,-54.5 + rot: 1.5707963267948966 rad + pos: -16.5,-57.5 parent: 30 - - uid: 9937 + - uid: 9824 components: - type: Transform - pos: -0.5,-52.5 + rot: -1.5707963267948966 rad + pos: -9.5,-45.5 parent: 30 - - uid: 9938 + - uid: 9825 components: - type: Transform - pos: -0.5,-51.5 + rot: -1.5707963267948966 rad + pos: -9.5,-43.5 parent: 30 - - uid: 9939 + - uid: 9826 components: - type: Transform - pos: -0.5,-50.5 + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 parent: 30 - - uid: 9945 + - uid: 9827 components: - type: Transform - pos: -10.5,-56.5 + rot: -1.5707963267948966 rad + pos: -5.5,-42.5 parent: 30 - - uid: 9989 + - uid: 9828 components: - type: Transform - pos: -8.5,-42.5 + rot: 1.5707963267948966 rad + pos: -17.5,-57.5 parent: 30 - - uid: 9990 + - uid: 9829 components: - type: Transform - pos: -6.5,-42.5 + rot: 1.5707963267948966 rad + pos: -15.5,-57.5 parent: 30 - - uid: 9991 + - uid: 9867 components: - type: Transform - pos: -10.5,-42.5 + rot: 1.5707963267948966 rad + pos: -18.5,-57.5 parent: 30 - - uid: 9992 + - uid: 9973 components: - type: Transform - pos: -4.5,-42.5 + pos: 11.5,-54.5 + parent: 30 + - uid: 9975 + components: + - type: Transform + pos: 10.5,-54.5 parent: 30 - uid: 10068 components: @@ -92037,192 +90886,243 @@ entities: - type: Transform pos: -57.5,-10.5 parent: 30 - - uid: 10137 + - uid: 10191 components: - type: Transform - pos: -18.5,-49.5 + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - - uid: 10138 + - uid: 10193 components: - type: Transform - pos: -16.5,-49.5 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 parent: 30 - - uid: 10139 + - uid: 10221 components: - type: Transform - pos: -16.5,-52.5 + pos: -62.5,6.5 parent: 30 - - uid: 10140 + - uid: 10222 components: - type: Transform - pos: -18.5,-52.5 + pos: -62.5,7.5 parent: 30 - - uid: 10147 + - uid: 10224 components: - type: Transform - pos: -38.5,68.5 + pos: -62.5,8.5 parent: 30 - - uid: 10148 + - uid: 10234 components: - type: Transform - pos: -36.5,66.5 + pos: -57.5,-7.5 parent: 30 - - uid: 10149 + - uid: 10288 components: - type: Transform - pos: -37.5,67.5 + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 parent: 30 - - uid: 10187 + - uid: 10396 components: - type: Transform - pos: -37.5,65.5 + pos: 23.5,-16.5 parent: 30 - - uid: 10188 + - uid: 10553 components: - type: Transform - pos: -36.5,64.5 + pos: 13.5,-51.5 parent: 30 - - uid: 10189 + - uid: 10555 components: - type: Transform - pos: -37.5,64.5 + pos: 12.5,-54.5 parent: 30 - - uid: 10207 + - uid: 10582 components: - type: Transform - pos: -37.5,68.5 + rot: 3.141592653589793 rad + pos: 4.5,-60.5 parent: 30 - - uid: 10209 + - uid: 10614 components: - type: Transform - pos: -38.5,67.5 + pos: 7.5,-59.5 parent: 30 - - uid: 10210 + - uid: 10639 components: - type: Transform - pos: -34.5,65.5 + pos: 10.5,-45.5 parent: 30 - - uid: 10221 + - uid: 10641 components: - type: Transform - pos: -62.5,6.5 + rot: 3.141592653589793 rad + pos: -3.5,-61.5 parent: 30 - - uid: 10222 + - uid: 10655 components: - type: Transform - pos: -62.5,7.5 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 parent: 30 - - uid: 10224 + - uid: 10657 components: - type: Transform - pos: -62.5,8.5 + pos: -8.5,-64.5 parent: 30 - - uid: 10227 + - uid: 10738 components: - type: Transform - pos: -37.5,66.5 + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 parent: 30 - - uid: 10228 + - uid: 11030 components: - type: Transform - pos: -38.5,66.5 + pos: -32.5,-52.5 parent: 30 - - uid: 10229 + - uid: 11031 components: - type: Transform - pos: -38.5,65.5 + pos: -31.5,-52.5 parent: 30 - - uid: 10230 + - uid: 11033 components: - type: Transform - pos: -34.5,64.5 + pos: -30.5,-52.5 parent: 30 - - uid: 10231 + - uid: 11034 components: - type: Transform - pos: -36.5,65.5 + pos: -28.5,-53.5 parent: 30 - - uid: 10232 + - uid: 11036 components: - type: Transform - pos: -35.5,66.5 + pos: -27.5,-53.5 parent: 30 - - uid: 10233 + - uid: 11040 components: - type: Transform - pos: -35.5,65.5 + pos: -24.5,-76.5 parent: 30 - - uid: 10234 + - uid: 11041 components: - type: Transform - pos: -57.5,-7.5 + pos: -15.5,-76.5 parent: 30 - - uid: 10235 + - uid: 11043 components: - type: Transform - pos: -36.5,67.5 + pos: -8.5,-68.5 parent: 30 - - uid: 10236 + - uid: 11044 components: - type: Transform - pos: -33.5,64.5 + pos: -34.5,-52.5 parent: 30 - - uid: 10237 + - uid: 11045 components: - type: Transform - pos: -33.5,65.5 + pos: -35.5,-52.5 parent: 30 - - uid: 10288 + - uid: 11046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 + pos: -37.5,-52.5 parent: 30 - - uid: 10396 + - uid: 11047 components: - type: Transform - pos: 23.5,-16.5 + pos: -38.5,-52.5 parent: 30 - - uid: 10435 + - uid: 11048 components: - type: Transform - pos: -25.5,-67.5 + pos: -40.5,-52.5 parent: 30 - - uid: 10436 + - uid: 11049 components: - type: Transform - pos: -26.5,-67.5 + pos: -40.5,-51.5 parent: 30 - - uid: 10437 + - uid: 11050 components: - type: Transform - pos: -27.5,-67.5 + pos: -40.5,-50.5 parent: 30 - - uid: 10438 + - uid: 11051 components: - type: Transform - pos: -28.5,-67.5 + pos: -43.5,-54.5 parent: 30 - - uid: 10439 + - uid: 11052 components: - type: Transform - pos: -29.5,-67.5 + pos: -44.5,-54.5 parent: 30 - - uid: 10440 + - uid: 11053 components: - type: Transform - pos: -33.5,-67.5 + pos: -44.5,-56.5 parent: 30 - - uid: 10441 + - uid: 11054 components: - type: Transform - pos: -32.5,-67.5 + pos: -44.5,-58.5 parent: 30 - - uid: 10738 + - uid: 11055 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 30 + - uid: 11056 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 30 + - uid: 11085 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-26.5 + pos: -14.5,-57.5 + parent: 30 + - uid: 11105 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 30 + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 + parent: 30 + - uid: 11136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 30 + - uid: 11137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-57.5 + parent: 30 + - uid: 11163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 30 + - uid: 11173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-72.5 parent: 30 - uid: 11194 components: @@ -92235,15 +91135,41 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-12.5 parent: 30 - - uid: 11257 + - uid: 11264 components: - type: Transform - pos: -18.5,-45.5 + rot: 3.141592653589793 rad + pos: -7.5,-78.5 parent: 30 - - uid: 11258 + - uid: 11265 components: - type: Transform - pos: -16.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-78.5 + parent: 30 + - uid: 11266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 30 + - uid: 11267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-79.5 + parent: 30 + - uid: 11276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-76.5 + parent: 30 + - uid: 11279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-78.5 parent: 30 - uid: 11293 components: @@ -92277,6 +91203,12 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 30 + - uid: 11309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 30 - uid: 11580 components: - type: Transform @@ -92398,15 +91330,17 @@ entities: - type: Transform pos: 47.5,6.5 parent: 30 - - uid: 12629 + - uid: 12442 components: - type: Transform - pos: 13.5,13.5 + rot: 1.5707963267948966 rad + pos: -20.5,-57.5 parent: 30 - uid: 12650 components: - type: Transform - pos: 15.5,13.5 + rot: -1.5707963267948966 rad + pos: -88.5,42.5 parent: 30 - uid: 12662 components: @@ -92455,6 +91389,12 @@ entities: - type: Transform pos: 19.5,24.5 parent: 30 + - uid: 12860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-71.5 + parent: 30 - uid: 12863 components: - type: Transform @@ -92480,6 +91420,11 @@ entities: - type: Transform pos: 35.5,11.5 parent: 30 + - uid: 12929 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 30 - uid: 13097 components: - type: Transform @@ -92690,6 +91635,48 @@ entities: - type: Transform pos: 40.5,36.5 parent: 30 + - uid: 13954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 30 + - uid: 13973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-72.5 + parent: 30 + - uid: 13979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-71.5 + parent: 30 + - uid: 13980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-77.5 + parent: 30 + - uid: 13981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-78.5 + parent: 30 + - uid: 13982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-78.5 + parent: 30 + - uid: 14358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 30 - uid: 14514 components: - type: Transform @@ -92700,11 +91687,6 @@ entities: - type: Transform pos: 54.5,23.5 parent: 30 - - uid: 14517 - components: - - type: Transform - pos: 49.5,23.5 - parent: 30 - uid: 14518 components: - type: Transform @@ -92725,6 +91707,36 @@ entities: - type: Transform pos: 47.5,27.5 parent: 30 + - uid: 14526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,65.5 + parent: 30 + - uid: 14527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,68.5 + parent: 30 + - uid: 14528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,65.5 + parent: 30 + - uid: 14529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,66.5 + parent: 30 + - uid: 14534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,65.5 + parent: 30 - uid: 14536 components: - type: Transform @@ -92735,11 +91747,6 @@ entities: - type: Transform pos: 15.5,65.5 parent: 30 - - uid: 14538 - components: - - type: Transform - pos: -26.5,-54.5 - parent: 30 - uid: 14778 components: - type: Transform @@ -92770,6 +91777,18 @@ entities: - type: Transform pos: 20.5,60.5 parent: 30 + - uid: 14845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,69.5 + parent: 30 + - uid: 14970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,64.5 + parent: 30 - uid: 14971 components: - type: Transform @@ -92780,6 +91799,24 @@ entities: - type: Transform pos: 41.5,24.5 parent: 30 + - uid: 15073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,66.5 + parent: 30 + - uid: 15166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,65.5 + parent: 30 + - uid: 15180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,69.5 + parent: 30 - uid: 15207 components: - type: Transform @@ -92800,6 +91837,12 @@ entities: - type: Transform pos: 17.5,63.5 parent: 30 + - uid: 15280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,63.5 + parent: 30 - uid: 15336 components: - type: Transform @@ -92825,6 +91868,18 @@ entities: - type: Transform pos: 52.5,31.5 parent: 30 + - uid: 15349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,67.5 + parent: 30 + - uid: 15353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-70.5 + parent: 30 - uid: 15445 components: - type: Transform @@ -93105,6 +92160,17 @@ entities: - type: Transform pos: 47.5,9.5 parent: 30 + - uid: 15985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,65.5 + parent: 30 + - uid: 16133 + components: + - type: Transform + pos: -75.5,42.5 + parent: 30 - uid: 16259 components: - type: Transform @@ -93316,6 +92382,12 @@ entities: rot: 3.141592653589793 rad pos: 36.5,11.5 parent: 30 + - uid: 16795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-71.5 + parent: 30 - uid: 16807 components: - type: Transform @@ -93351,11 +92423,6 @@ entities: - type: Transform pos: -58.5,36.5 parent: 30 - - uid: 16951 - components: - - type: Transform - pos: -51.5,36.5 - parent: 30 - uid: 17032 components: - type: Transform @@ -93884,6 +92951,11 @@ entities: - type: Transform pos: -79.5,-37.5 parent: 30 + - uid: 17734 + components: + - type: Transform + pos: -66.5,-18.5 + parent: 30 - uid: 17796 components: - type: Transform @@ -93932,6 +93004,11 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,-22.5 parent: 30 + - uid: 17810 + components: + - type: Transform + pos: -85.5,-44.5 + parent: 30 - uid: 17975 components: - type: Transform @@ -94057,6 +93134,21 @@ entities: - type: Transform pos: -37.5,-38.5 parent: 30 + - uid: 18070 + components: + - type: Transform + pos: -71.5,42.5 + parent: 30 + - uid: 18072 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 30 + - uid: 18086 + components: + - type: Transform + pos: -85.5,-46.5 + parent: 30 - uid: 18154 components: - type: Transform @@ -94132,15 +93224,11 @@ entities: - type: Transform pos: -85.5,-59.5 parent: 30 - - uid: 18187 - components: - - type: Transform - pos: -59.5,-69.5 - parent: 30 - - uid: 18188 + - uid: 18206 components: - type: Transform - pos: -58.5,-69.5 + rot: 3.141592653589793 rad + pos: 15.5,10.5 parent: 30 - uid: 18260 components: @@ -94247,6 +93335,40 @@ entities: - type: Transform pos: -52.5,-40.5 parent: 30 + - uid: 18358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-71.5 + parent: 30 + - uid: 18789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-70.5 + parent: 30 + - uid: 18797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-71.5 + parent: 30 + - uid: 18801 + components: + - type: Transform + pos: -64.5,-66.5 + parent: 30 + - uid: 18802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,40.5 + parent: 30 + - uid: 18803 + components: + - type: Transform + pos: -63.5,-66.5 + parent: 30 - uid: 18816 components: - type: Transform @@ -94257,11 +93379,107 @@ entities: - type: Transform pos: -74.5,-67.5 parent: 30 + - uid: 18835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,40.5 + parent: 30 - uid: 19067 components: - type: Transform pos: -51.5,-40.5 parent: 30 + - uid: 19190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-77.5 + parent: 30 + - uid: 19191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-62.5 + parent: 30 + - uid: 19192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-76.5 + parent: 30 + - uid: 19193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-64.5 + parent: 30 + - uid: 19194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-63.5 + parent: 30 + - uid: 19231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-63.5 + parent: 30 + - uid: 19232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-64.5 + parent: 30 + - uid: 19233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-62.5 + parent: 30 + - uid: 19236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-79.5 + parent: 30 + - uid: 19237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-79.5 + parent: 30 + - uid: 19238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-79.5 + parent: 30 + - uid: 19239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-79.5 + parent: 30 + - uid: 19423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-70.5 + parent: 30 + - uid: 19425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-71.5 + parent: 30 + - uid: 19426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-70.5 + parent: 30 - uid: 19641 components: - type: Transform @@ -94717,6 +93935,36 @@ entities: - type: Transform pos: -36.5,-36.5 parent: 30 + - uid: 20664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-54.5 + parent: 30 + - uid: 20666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 30 + - uid: 20675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 30 + - uid: 20676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-49.5 + parent: 30 + - uid: 20677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 30 - uid: 20969 components: - type: Transform @@ -94827,96 +94075,6 @@ entities: - type: Transform pos: -40.5,32.5 parent: 30 - - uid: 21392 - components: - - type: Transform - pos: -25.5,-54.5 - parent: 30 - - uid: 21393 - components: - - type: Transform - pos: -24.5,-54.5 - parent: 30 - - uid: 21394 - components: - - type: Transform - pos: -23.5,-54.5 - parent: 30 - - uid: 21397 - components: - - type: Transform - pos: -10.5,-63.5 - parent: 30 - - uid: 21398 - components: - - type: Transform - pos: -9.5,-63.5 - parent: 30 - - uid: 21399 - components: - - type: Transform - pos: -8.5,-63.5 - parent: 30 - - uid: 21400 - components: - - type: Transform - pos: -7.5,-63.5 - parent: 30 - - uid: 21401 - components: - - type: Transform - pos: -6.5,-63.5 - parent: 30 - - uid: 21402 - components: - - type: Transform - pos: -5.5,-63.5 - parent: 30 - - uid: 21403 - components: - - type: Transform - pos: -4.5,-63.5 - parent: 30 - - uid: 21404 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 30 - - uid: 21405 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 30 - - uid: 21406 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 30 - - uid: 21407 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 30 - - uid: 21408 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 30 - - uid: 21409 - components: - - type: Transform - pos: 6.5,-49.5 - parent: 30 - - uid: 21410 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 30 - - uid: 21411 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 30 - uid: 21412 components: - type: Transform @@ -94977,21 +94135,11 @@ entities: - type: Transform pos: 10.5,-42.5 parent: 30 - - uid: 21424 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 30 - uid: 21425 components: - type: Transform pos: 23.5,-41.5 parent: 30 - - uid: 21426 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 30 - uid: 21427 components: - type: Transform @@ -95002,16 +94150,6 @@ entities: - type: Transform pos: 8.5,-41.5 parent: 30 - - uid: 21429 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 30 - - uid: 21430 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 30 - uid: 21431 components: - type: Transform @@ -95092,11 +94230,6 @@ entities: - type: Transform pos: 19.5,65.5 parent: 30 - - uid: 21457 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - uid: 21516 components: - type: Transform @@ -95142,16 +94275,6 @@ entities: - type: Transform pos: -69.5,-52.5 parent: 30 - - uid: 22211 - components: - - type: Transform - pos: -69.5,-60.5 - parent: 30 - - uid: 22212 - components: - - type: Transform - pos: -69.5,-59.5 - parent: 30 - uid: 22273 components: - type: Transform @@ -95167,261 +94290,6 @@ entities: - type: Transform pos: 3.5,62.5 parent: 30 - - uid: 22623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-63.5 - parent: 30 - - uid: 22624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-62.5 - parent: 30 - - uid: 22625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-61.5 - parent: 30 - - uid: 22626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-61.5 - parent: 30 - - uid: 22627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-61.5 - parent: 30 - - uid: 22628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-59.5 - parent: 30 - - uid: 22629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-59.5 - parent: 30 - - uid: 22630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-59.5 - parent: 30 - - uid: 22651 - components: - - type: Transform - pos: -32.5,-57.5 - parent: 30 - - uid: 22652 - components: - - type: Transform - pos: -32.5,-58.5 - parent: 30 - - uid: 22653 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - - uid: 22856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-67.5 - parent: 30 - - uid: 22857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-67.5 - parent: 30 - - uid: 22858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-67.5 - parent: 30 - - uid: 22859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-67.5 - parent: 30 - - uid: 22860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-67.5 - parent: 30 - - uid: 22861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-67.5 - parent: 30 - - uid: 22862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-66.5 - parent: 30 - - uid: 22863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-65.5 - parent: 30 - - uid: 22864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-64.5 - parent: 30 - - uid: 22865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-63.5 - parent: 30 - - uid: 22866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-62.5 - parent: 30 - - uid: 22867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-61.5 - parent: 30 - - uid: 22868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-60.5 - parent: 30 - - uid: 22869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-59.5 - parent: 30 - - uid: 22870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-58.5 - parent: 30 - - uid: 22871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-57.5 - parent: 30 - - uid: 22872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-56.5 - parent: 30 - - uid: 22873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-55.5 - parent: 30 - - uid: 22874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-54.5 - parent: 30 - - uid: 22875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-53.5 - parent: 30 - - uid: 22876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-53.5 - parent: 30 - - uid: 22877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-53.5 - parent: 30 - - uid: 22878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-53.5 - parent: 30 - - uid: 22879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-53.5 - parent: 30 - - uid: 22880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-53.5 - parent: 30 - - uid: 22881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-53.5 - parent: 30 - - uid: 22882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-53.5 - parent: 30 - - uid: 22883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-53.5 - parent: 30 - - uid: 22884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-53.5 - parent: 30 - - uid: 22885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-53.5 - parent: 30 - - uid: 22886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-53.5 - parent: 30 - - uid: 22887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-53.5 - parent: 30 - proto: GrilleBroken entities: - uid: 695 @@ -95509,29 +94377,16 @@ entities: - type: Transform pos: -62.5,9.5 parent: 30 - - uid: 10529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-68.5 - parent: 30 - - uid: 10530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-67.5 - parent: 30 - - uid: 10531 + - uid: 11042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-67.5 + pos: -26.5,-70.5 parent: 30 - - uid: 10532 + - uid: 13978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-67.5 + rot: 3.141592653589793 rad + pos: -8.5,-72.5 parent: 30 - uid: 15444 components: @@ -95612,6 +94467,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,39.5 parent: 30 + - uid: 16132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,41.5 + parent: 30 - uid: 16410 components: - type: Transform @@ -95759,6 +94620,12 @@ entities: rot: -1.5707963267948966 rad pos: -65.5,-21.5 parent: 30 + - uid: 18599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,40.5 + parent: 30 - uid: 19643 components: - type: Transform @@ -95834,10 +94701,10 @@ entities: - type: Transform pos: -32.534565,30.536125 parent: 30 - - uid: 9421 + - uid: 18923 components: - type: Transform - pos: -22.512821,-47.59407 + pos: -15.53532,-37.702564 parent: 30 - proto: HandheldHealthAnalyzer entities: @@ -95899,33 +94766,27 @@ entities: parent: 30 - proto: HeatExchanger entities: - - uid: 3118 - components: - - type: Transform - pos: -3.5,-58.5 - parent: 30 - - uid: 3155 + - uid: 9651 components: - type: Transform - pos: -3.5,-57.5 + rot: 3.141592653589793 rad + pos: 3.5,-56.5 parent: 30 - - uid: 7104 + - uid: 11122 components: - type: Transform - pos: -11.5,-58.5 + rot: 3.141592653589793 rad + pos: -4.5,-56.5 parent: 30 - - uid: 8295 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20644 components: - type: Transform - pos: 3.5,-51.5 + pos: 7.5,-50.5 parent: 30 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9621 - components: - - type: Transform - pos: -11.5,-57.5 - parent: 30 - proto: HighSecCommandLocked entities: - uid: 2128 @@ -96089,15 +94950,15 @@ entities: parent: 30 - proto: HydroponicsToolMiniHoe entities: - - uid: 434 + - uid: 2347 components: - type: Transform - pos: -25.483442,11.482555 + pos: -45.453583,69.54325 parent: 30 - - uid: 2347 + - uid: 18857 components: - type: Transform - pos: -45.453583,69.54325 + pos: -28.537731,11.513851 parent: 30 - uid: 19544 components: @@ -96113,15 +94974,15 @@ entities: parent: 30 - proto: HydroponicsToolSpade entities: - - uid: 435 + - uid: 697 components: - type: Transform - pos: -25.499067,11.52943 + pos: -45.386658,69.59978 parent: 30 - - uid: 697 + - uid: 18858 components: - type: Transform - pos: -45.386658,69.59978 + pos: -28.478325,11.558405 parent: 30 - uid: 19542 components: @@ -96145,105 +95006,100 @@ entities: - type: Transform pos: -21.5,12.5 parent: 30 - - uid: 331 - components: - - type: Transform - pos: -25.5,5.5 - parent: 30 - - uid: 332 + - uid: 341 components: - type: Transform - pos: -26.5,5.5 + pos: -27.5,13.5 parent: 30 - - uid: 333 + - uid: 342 components: - type: Transform - pos: -27.5,5.5 + pos: -26.5,13.5 parent: 30 - - uid: 334 + - uid: 2339 components: - type: Transform - pos: -28.5,5.5 + pos: -50.5,69.5 parent: 30 - - uid: 335 + - uid: 2340 components: - type: Transform - pos: -28.5,7.5 + pos: -50.5,68.5 parent: 30 - - uid: 336 + - uid: 2341 components: - type: Transform - pos: -28.5,8.5 + pos: -48.5,69.5 parent: 30 - - uid: 337 + - uid: 2342 components: - type: Transform - pos: -28.5,9.5 + pos: -48.5,68.5 parent: 30 - - uid: 338 + - uid: 2343 components: - type: Transform - pos: -28.5,10.5 + pos: -46.5,68.5 parent: 30 - - uid: 339 + - uid: 2344 components: - type: Transform - pos: -28.5,11.5 + pos: -46.5,69.5 parent: 30 - - uid: 340 + - uid: 10428 components: - type: Transform - pos: -28.5,13.5 + pos: -49.5,69.5 parent: 30 - - uid: 341 + - uid: 11649 components: - type: Transform - pos: -27.5,13.5 + pos: -47.5,69.5 parent: 30 - - uid: 342 + - uid: 16138 components: - type: Transform - pos: -26.5,13.5 + pos: -28.5,12.5 parent: 30 - - uid: 2339 + - uid: 16139 components: - type: Transform - pos: -50.5,69.5 + pos: -27.5,11.5 parent: 30 - - uid: 2340 + - uid: 16163 components: - type: Transform - pos: -50.5,68.5 + pos: -26.5,11.5 parent: 30 - - uid: 2341 + - uid: 16165 components: - type: Transform - pos: -48.5,69.5 + pos: -28.5,10.5 parent: 30 - - uid: 2342 + - uid: 16172 components: - type: Transform - pos: -48.5,68.5 + pos: -27.5,9.5 parent: 30 - - uid: 2343 + - uid: 16242 components: - type: Transform - pos: -46.5,68.5 + pos: -26.5,9.5 parent: 30 - - uid: 2344 + - uid: 18174 components: - type: Transform - pos: -46.5,69.5 + pos: -26.5,7.5 parent: 30 - - uid: 10428 + - uid: 18184 components: - type: Transform - pos: -49.5,69.5 + pos: -27.5,7.5 parent: 30 - - uid: 11649 + - uid: 18856 components: - type: Transform - pos: -47.5,69.5 + pos: -28.5,8.5 parent: 30 - proto: InflatableDoorStack entities: @@ -96390,23 +95246,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-33.5 parent: 30 - - uid: 22291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-37.5 - parent: 30 - uid: 22514 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,82.5 parent: 30 - - uid: 22657 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 30 - proto: IntercomMedical entities: - uid: 7346 @@ -96428,11 +95273,11 @@ entities: parent: 30 - proto: IntercomScience entities: - - uid: 22287 + - uid: 14357 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,14.5 + pos: 16.5,17.5 parent: 30 - uid: 22288 components: @@ -97920,12 +96765,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-7.5 parent: 30 - - uid: 961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,16.5 - parent: 30 - uid: 1753 components: - type: Transform @@ -97937,17 +96776,18 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 30 -- proto: JetpackBlueFilled - entities: - - uid: 8311 + - uid: 16403 components: - type: Transform - pos: -20.563852,-46.460617 + rot: 3.141592653589793 rad + pos: 13.5,14.5 parent: 30 - - uid: 21590 +- proto: JetpackBlueFilled + entities: + - uid: 5722 components: - type: Transform - pos: -17.545162,-28.366238 + pos: -10.241633,-47.32097 parent: 30 - proto: JetpackMini entities: @@ -97973,6 +96813,13 @@ entities: - type: Transform pos: -39.62777,56.71206 parent: 30 +- proto: KitchenElectricGrill + entities: + - uid: 18855 + components: + - type: Transform + pos: -14.5,7.5 + parent: 30 - proto: KitchenMicrowave entities: - uid: 483 @@ -98188,15 +97035,15 @@ entities: - type: Transform pos: -57.474648,-39.373875 parent: 30 - - uid: 19504 + - uid: 18354 components: - type: Transform - pos: -77.46411,-65.291664 + pos: -62.42038,-64.31795 parent: 30 - - uid: 19505 + - uid: 19504 components: - type: Transform - pos: -60.62825,-65.170204 + pos: -77.46411,-65.291664 parent: 30 - uid: 21649 components: @@ -98217,11 +97064,6 @@ entities: - type: Transform pos: -51.439194,-51.2885 parent: 30 - - uid: 19431 - components: - - type: Transform - pos: -57.92594,-62.49692 - parent: 30 - uid: 21670 components: - type: Transform @@ -98500,40 +97342,11 @@ entities: - 0 - proto: LockerChiefEngineerFilled entities: - - uid: 9604 + - uid: 11058 components: - type: Transform - pos: -19.5,-34.5 + pos: -5.5,-36.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 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 9329 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - uid: 6941 @@ -98568,33 +97381,15 @@ entities: - 0 - proto: LockerElectricalSuppliesFilled entities: - - uid: 16994 + - uid: 11061 components: - type: Transform - pos: -59.5,37.5 + pos: -4.5,-45.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16995 + - uid: 16994 components: - type: Transform - pos: -5.5,-36.5 + pos: -59.5,37.5 parent: 30 - type: EntityStorage air: @@ -98616,47 +97411,42 @@ entities: - 0 - proto: LockerEngineerFilled entities: - - uid: 9048 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 30 - - uid: 9435 + - uid: 10760 components: - type: Transform - pos: 3.5,-41.5 + pos: -22.5,-50.5 parent: 30 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 8835 + - uid: 10762 components: - type: Transform - pos: -25.5,-43.5 + pos: -23.5,-50.5 parent: 30 - - uid: 8836 + - uid: 15013 components: - type: Transform - pos: -25.5,-42.5 + pos: -25.5,-48.5 parent: 30 - - uid: 8837 + - uid: 16038 components: - type: Transform - pos: -25.5,-44.5 + pos: -25.5,-49.5 parent: 30 - - uid: 9700 + - uid: 19408 components: - type: Transform - pos: -21.5,-39.5 + pos: -21.5,-50.5 parent: 30 - - uid: 9701 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 10763 components: - type: Transform - pos: -22.5,-39.5 + pos: 3.5,-40.5 parent: 30 - - uid: 20804 + - uid: 10766 components: - type: Transform - pos: -15.5,-38.5 + pos: 3.5,-39.5 parent: 30 - proto: LockerEvidence entities: @@ -99548,33 +98338,15 @@ entities: - type: Transform pos: -42.5,-23.5 parent: 30 - - uid: 15047 + - uid: 10587 components: - type: Transform - pos: 18.5,31.5 + pos: -4.5,-43.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16996 + - uid: 15047 components: - type: Transform - pos: -9.5,-36.5 + pos: 18.5,31.5 parent: 30 - type: EntityStorage air: @@ -99648,48 +98420,6 @@ entities: - type: Transform pos: -6.5,-12.5 parent: 30 -- proto: MachineParticleAcceleratorEmitterForeCircuitboard - entities: - - uid: 10198 - components: - - type: Transform - pos: -20.589485,-68.29703 - parent: 30 -- proto: MachineParticleAcceleratorEmitterPortCircuitboard - entities: - - uid: 10199 - components: - - type: Transform - pos: -20.433235,-68.45328 - parent: 30 -- proto: MachineParticleAcceleratorEmitterStarboardCircuitboard - entities: - - uid: 10203 - components: - - type: Transform - pos: -20.29261,-68.60953 - parent: 30 -- proto: MachineParticleAcceleratorEndCapCircuitboard - entities: - - uid: 10204 - components: - - type: Transform - pos: -20.620735,-69.29703 - parent: 30 -- proto: MachineParticleAcceleratorFuelChamberCircuitboard - entities: - - uid: 10200 - components: - - type: Transform - pos: -20.495735,-69.42203 - parent: 30 -- proto: MachineParticleAcceleratorPowerBoxCircuitboard - entities: - - uid: 10201 - components: - - type: Transform - pos: -20.370735,-69.56265 - parent: 30 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 1999 @@ -99791,6 +98521,11 @@ entities: parent: 30 - proto: MaintenancePlantSpawner entities: + - uid: 10188 + components: + - type: Transform + pos: -54.5,-64.5 + parent: 30 - uid: 20805 components: - type: Transform @@ -99806,11 +98541,6 @@ entities: - type: Transform pos: 2.5,-13.5 parent: 30 - - uid: 20808 - components: - - type: Transform - pos: -63.5,-64.5 - parent: 30 - proto: MaintenanceToolSpawner entities: - uid: 9197 @@ -100471,10 +99201,15 @@ entities: - type: Transform pos: -7.520787,46.572483 parent: 30 - - uid: 10008 + - uid: 9396 components: - type: Transform - pos: -13.775943,-44.693085 + pos: -2.6778464,-45.34802 + parent: 30 + - uid: 9502 + components: + - type: Transform + pos: -11.53326,-33.503338 parent: 30 - uid: 11733 components: @@ -100486,11 +99221,6 @@ entities: - type: Transform pos: -52.471344,41.489742 parent: 30 - - uid: 22843 - components: - - type: Transform - pos: -31.465784,-57.403034 - parent: 30 - proto: MysteryFigureBox entities: - uid: 20788 @@ -100505,11 +99235,6 @@ entities: - type: Transform pos: -19.5,23.5 parent: 30 - - uid: 7770 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 30 - uid: 8771 components: - type: Transform @@ -100520,10 +99245,15 @@ entities: - type: Transform pos: 21.5,-19.5 parent: 30 - - uid: 10397 + - uid: 10560 components: - type: Transform - pos: -14.5,-46.5 + pos: -5.5,-48.5 + parent: 30 + - uid: 11113 + components: + - type: Transform + pos: -11.5,-37.5 parent: 30 - uid: 15154 components: @@ -100552,15 +99282,10 @@ entities: parent: 30 - proto: NitrogenTankFilled entities: - - uid: 8247 - components: - - type: Transform - pos: -10.592361,-38.446224 - parent: 30 - - uid: 8266 + - uid: 7230 components: - type: Transform - pos: -10.592361,-38.446224 + pos: -9.3813,-38.5809 parent: 30 - proto: NitrousOxideCanister entities: @@ -100632,13 +99357,6 @@ entities: - Uranium - Gold - Silver -- proto: OrganHumanAppendix - entities: - - uid: 2088 - components: - - type: Transform - pos: -51.46508,-63.54434 - parent: 30 - proto: OxygenCanister entities: - uid: 778 @@ -100696,25 +99414,25 @@ entities: - type: Transform pos: 21.5,-13.5 parent: 30 - - uid: 9427 + - uid: 9676 components: - type: Transform - pos: -13.5,-37.5 + pos: -5.5,-47.5 parent: 30 - uid: 9845 components: - type: Transform pos: -38.5,-10.5 parent: 30 - - uid: 10444 + - uid: 11112 components: - type: Transform - pos: -14.5,-48.5 + pos: -13.5,-37.5 parent: 30 - - uid: 11266 + - uid: 13968 components: - type: Transform - pos: -18.5,-50.5 + pos: -16.5,-50.5 parent: 30 - uid: 15155 components: @@ -100748,25 +99466,20 @@ entities: parent: 30 - proto: OxygenTankFilled entities: - - uid: 8226 - components: - - type: Transform - pos: -10.326736,-38.446224 - parent: 30 - - uid: 8260 + - uid: 7228 components: - type: Transform - pos: -10.326736,-38.446224 + pos: -9.625428,-38.389084 parent: 30 - - uid: 10012 + - uid: 9061 components: - type: Transform - pos: -1.4952288,-44.42826 + pos: 4.148211,-46.341225 parent: 30 - - uid: 11333 + - uid: 9659 components: - type: Transform - pos: -1.4344845,-44.759243 + pos: 4.462089,-46.463287 parent: 30 - uid: 19791 components: @@ -101033,26 +99746,6 @@ entities: - type: Transform pos: -82.50391,-46.268623 parent: 30 - - uid: 19426 - components: - - type: Transform - pos: -60.607536,-67.34395 - parent: 30 - - uid: 19427 - components: - - type: Transform - pos: -60.545036,-67.39082 - parent: 30 - - uid: 19428 - components: - - type: Transform - pos: -60.420036,-67.48457 - parent: 30 - - uid: 19429 - components: - - type: Transform - pos: -60.34191,-67.51582 - parent: 30 - uid: 19499 components: - type: Transform @@ -101117,69 +99810,76 @@ entities: - type: Transform pos: 12.5,58.5 parent: 30 -- proto: ParticleAcceleratorComputerCircuitboard +- proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 11445 + - uid: 10674 components: - type: Transform - pos: -21.580353,-68.38637 + pos: -18.5,-53.5 parent: 30 -- proto: PartRodMetal +- proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 9247 + - uid: 8247 components: - type: Transform - pos: 13.637659,-25.423977 + pos: -17.5,-55.5 parent: 30 - - uid: 9420 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 6659 components: - type: Transform - pos: -22.434696,-47.53157 + pos: -16.5,-55.5 parent: 30 - - uid: 10193 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 10682 components: - type: Transform - pos: -14.444823,-68.47732 + pos: -18.5,-55.5 parent: 30 - - uid: 10196 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 11159 components: - type: Transform - pos: -14.444823,-68.47732 + pos: -17.5,-52.5 parent: 30 - - uid: 10197 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 10650 components: - type: Transform - pos: -14.444823,-68.47732 + pos: -17.5,-53.5 parent: 30 - - uid: 10312 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 11310 components: - type: Transform - pos: -38.461082,27.525124 + pos: -17.5,-54.5 parent: 30 - - uid: 10313 +- proto: PartRodMetal + entities: + - uid: 9247 components: - type: Transform - pos: -38.461082,27.525124 + pos: 13.637659,-25.423977 parent: 30 - - uid: 10320 + - uid: 10312 components: - type: Transform pos: -38.461082,27.525124 parent: 30 - - uid: 11283 - components: - - type: Transform - pos: 0.5099411,-44.458656 - parent: 30 - - uid: 11284 + - uid: 10313 components: - type: Transform - pos: 0.5099411,-44.458656 + pos: -38.461082,27.525124 parent: 30 - - uid: 18789 + - uid: 10320 components: - type: Transform - pos: -62.4926,-63.50162 + pos: -38.461082,27.525124 parent: 30 - proto: PartRodMetal1 entities: @@ -101281,11 +99981,6 @@ entities: - type: Transform pos: 14.729029,-15.188093 parent: 30 - - uid: 9617 - components: - - type: Transform - pos: -17.887093,-35.280422 - parent: 30 - uid: 9624 components: - type: Transform @@ -101301,28 +99996,25 @@ entities: - type: Transform pos: 25.341276,2.226799 parent: 30 - - uid: 17651 + - uid: 16951 components: - type: Transform - pos: -82.31641,-46.003 + pos: -62.22052,-64.60359 parent: 30 - - uid: 19425 + - uid: 16966 components: - type: Transform - pos: -60.52941,-65.45332 + pos: -65.47299,-63.534283 parent: 30 - - uid: 19563 + - uid: 17651 components: - type: Transform - pos: -72.2945,-65.28793 + pos: -82.31641,-46.003 parent: 30 -- proto: PercentileDie - entities: - - uid: 19473 + - uid: 19563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.4998,-65.351234 + pos: -72.2945,-65.28793 parent: 30 - proto: PersonalAI entities: @@ -101341,10 +100033,10 @@ entities: - type: Transform pos: 23.590357,36.58234 parent: 30 - - uid: 19523 + - uid: 17527 components: - type: Transform - pos: -54.530502,-64.54973 + pos: -67.27615,-65.55618 parent: 30 - uid: 20308 components: @@ -101363,6 +100055,11 @@ entities: - type: Transform pos: -17.480167,35.60341 parent: 30 + - uid: 11129 + components: + - type: Transform + pos: -17.39583,-32.28552 + parent: 30 - proto: PianoInstrument entities: - uid: 555 @@ -101454,33 +100151,23 @@ entities: - type: Transform pos: 18.5,-14.5 parent: 30 - - uid: 9696 + - uid: 9656 components: - type: Transform - pos: 18.5,-13.5 + pos: -5.5,-49.5 parent: 30 - - uid: 10510 + - uid: 9696 components: - type: Transform - pos: -14.5,-51.5 + pos: 18.5,-13.5 parent: 30 - uid: 17005 components: - type: Transform pos: 27.5,-30.5 parent: 30 - - uid: 20465 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 30 - proto: PlasticFlapsAirtightClear entities: - - uid: 1952 - components: - - type: Transform - pos: 48.5,24.5 - parent: 30 - uid: 11228 components: - type: Transform @@ -101526,6 +100213,11 @@ entities: - type: Transform pos: 39.5,12.5 parent: 30 + - uid: 17886 + components: + - type: Transform + pos: 48.5,25.5 + parent: 30 - proto: PlushieCarp entities: - uid: 17654 @@ -101568,10 +100260,10 @@ entities: parent: 30 - proto: PlushieSharkPink entities: - - uid: 22194 + - uid: 17526 components: - type: Transform - pos: -54.4992,-66.45244 + pos: -58.458496,-65.4756 parent: 30 - uid: 22217 components: @@ -101618,25 +100310,25 @@ entities: parent: 30 - proto: PortableGeneratorJrPacman entities: - - uid: 17594 + - uid: 11157 components: - type: Transform - pos: 23.5,4.5 + pos: -7.5,-48.5 parent: 30 - - uid: 19442 + - uid: 14479 components: - type: Transform - pos: -23.5,-28.5 + pos: -54.5,-62.5 parent: 30 - - uid: 19474 + - uid: 17594 components: - type: Transform - pos: -15.5,-32.5 + pos: 23.5,4.5 parent: 30 - - uid: 19475 + - uid: 19442 components: - type: Transform - pos: -65.5,-63.5 + pos: -23.5,-28.5 parent: 30 - uid: 19476 components: @@ -101665,17 +100357,17 @@ entities: parent: 30 - proto: PortableGeneratorPacman entities: - - uid: 9408 + - uid: 10787 components: - type: Transform - pos: -25.5,-46.5 + pos: -19.5,-36.5 parent: 30 - proto: PortableGeneratorSuperPacman entities: - - uid: 9389 + - uid: 19415 components: - type: Transform - pos: -25.5,-47.5 + pos: -19.5,-37.5 parent: 30 - uid: 21948 components: @@ -101709,11 +100401,6 @@ entities: - type: Transform pos: 40.5,14.5 parent: 30 - - uid: 22802 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 30 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 9181 @@ -101775,13 +100462,6 @@ entities: - type: Transform pos: -28.5,34.5 parent: 30 -- proto: PosterContrabandHighEffectEngineering - entities: - - uid: 8360 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 30 - proto: PosterContrabandInterdyne entities: - uid: 12243 @@ -101893,13 +100573,6 @@ entities: - type: Transform pos: -17.5,-13.5 parent: 30 -- proto: PosterLegitBuild - entities: - - uid: 10142 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 30 - proto: PosterLegitCarpMount entities: - uid: 14968 @@ -102131,10 +100804,11 @@ entities: - type: Transform pos: -22.5,-38.5 parent: 30 - - uid: 22543 + - uid: 18185 components: - type: Transform - pos: 19.5,16.5 + rot: 3.141592653589793 rad + pos: 20.5,9.5 parent: 30 - proto: PosterLegitSafetyInternals entities: @@ -102148,17 +100822,11 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 30 - - uid: 22544 - components: - - type: Transform - pos: 19.5,14.5 - parent: 30 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 10087 + - uid: 19795 components: - type: Transform - pos: -20.5,-39.5 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 parent: 30 - proto: PosterLegitSafetyMothEpi entities: @@ -102194,11 +100862,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-21.5 parent: 30 - - uid: 10088 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 30 - proto: PosterLegitSafetyReport entities: - uid: 2412 @@ -102211,6 +100874,13 @@ entities: - type: Transform pos: 6.5,-14.5 parent: 30 +- proto: PosterLegitSecWatch + entities: + - uid: 20637 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 - proto: PosterLegitSpaceCops entities: - uid: 2411 @@ -102388,11 +101058,6 @@ entities: - type: Transform pos: 14.5,-13.5 parent: 30 - - uid: 12668 - components: - - type: Transform - pos: 20.5,16.5 - parent: 30 - uid: 12764 components: - type: Transform @@ -102403,15 +101068,20 @@ entities: - type: Transform pos: 33.5,9.5 parent: 30 - - uid: 12925 + - uid: 13376 components: - type: Transform - pos: 12.5,10.5 + pos: 12.5,18.5 parent: 30 - - uid: 13376 + - uid: 16402 components: - type: Transform - pos: 12.5,18.5 + pos: 16.5,12.5 + parent: 30 + - uid: 18609 + components: + - type: Transform + pos: 23.5,16.5 parent: 30 - uid: 20139 components: @@ -102597,6 +101267,16 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 7103 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 30 + - uid: 7110 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 30 - uid: 8613 components: - type: Transform @@ -102613,6 +101293,36 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 10653 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 30 + - uid: 11068 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 30 + - uid: 11080 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 30 + - uid: 11145 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 30 + - uid: 11146 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 30 + - uid: 13971 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 30 - uid: 16045 components: - type: Transform @@ -102645,6 +101355,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 16798 + components: + - type: Transform + pos: -63.5,-65.5 + parent: 30 - uid: 16920 components: - type: Transform @@ -102733,38 +101448,16 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 17910 - components: - - type: Transform - pos: -55.5,-60.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 17911 - components: - - type: Transform - pos: -68.5,-60.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 19415 + - uid: 18880 components: - type: Transform - pos: -57.5,-62.5 + pos: -19.5,-39.5 parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 19416 + - uid: 18991 components: - type: Transform - pos: -60.5,-62.5 + pos: -25.5,-39.5 parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 19527 components: - type: Transform @@ -102813,21 +101506,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} -- proto: PottedPlantRandomPlastic - entities: - - uid: 9615 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 30 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 22844 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - proto: PottedPlantRD entities: - uid: 12726 @@ -102889,66 +101567,55 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 30 + - uid: 10005 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 30 - uid: 10311 components: - type: Transform pos: -41.5,27.5 parent: 30 - - uid: 12106 + - uid: 10661 components: - type: Transform - pos: 20.5,-11.5 + pos: -25.5,-42.5 parent: 30 - - uid: 12733 + - uid: 10795 components: - type: Transform - pos: 25.5,21.5 + pos: 2.5,-41.5 parent: 30 - - uid: 12827 + - uid: 12106 components: - type: Transform - pos: 24.5,10.5 + pos: 20.5,-11.5 parent: 30 - - uid: 12837 + - uid: 12733 components: - type: Transform - pos: 15.5,12.5 + pos: 25.5,21.5 parent: 30 - - uid: 13643 + - uid: 12827 components: - type: Transform - pos: -15.5,-43.5 + pos: 24.5,10.5 parent: 30 - uid: 13645 components: - type: Transform pos: 16.5,23.5 parent: 30 - - uid: 20992 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 30 - - type: Physics - canCollide: False - - uid: 20993 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 30 - - type: Physics - canCollide: False - - uid: 20995 + - uid: 18125 components: - type: Transform - pos: -11.5,-35.5 + pos: 16.5,14.5 parent: 30 - - type: Physics - canCollide: False - - uid: 20996 + - uid: 20992 components: - type: Transform - pos: 1.5,-44.5 + pos: 16.5,-0.5 parent: 30 - type: Physics canCollide: False @@ -103023,6 +101690,18 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-9.5 parent: 30 + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 30 + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 30 - uid: 3203 components: - type: Transform @@ -104093,12 +102772,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-11.5 parent: 30 - - uid: 9103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 30 - uid: 9250 components: - type: Transform @@ -104115,73 +102788,77 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9433 + - uid: 9700 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-55.5 + pos: -10.5,-31.5 parent: 30 - - uid: 9447 + - uid: 9800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 30 + - uid: 9862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-42.5 + pos: -2.5,-46.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9619 + - uid: 9868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 + rot: 1.5707963267948966 rad + pos: -5.5,-56.5 parent: 30 - - uid: 9705 + - uid: 10072 + components: + - type: Transform + pos: -56.5,10.5 + parent: 30 + - uid: 10585 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-55.5 + pos: -11.5,-34.5 parent: 30 - - uid: 9800 + - uid: 10591 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-12.5 + pos: -15.5,-53.5 parent: 30 - - uid: 9979 + - uid: 10622 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-47.5 + pos: -19.5,-50.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10072 + - uid: 10637 components: - type: Transform - pos: -56.5,10.5 + rot: 1.5707963267948966 rad + pos: -19.5,-46.5 parent: 30 - - uid: 10092 + - uid: 10798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-55.5 + rot: -1.5707963267948966 rad + pos: 4.5,-56.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10095 + - uid: 10799 components: - type: Transform - pos: -12.5,-43.5 + rot: -1.5707963267948966 rad + pos: 4.5,-46.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10096 + - uid: 10800 components: - type: Transform - pos: -2.5,-43.5 + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 10966 components: - type: Transform @@ -104384,77 +103061,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11003 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-46.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11011 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-50.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-44.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-41.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-41.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-39.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11027 components: - type: Transform @@ -104463,52 +103069,35 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11031 + - uid: 11037 components: - type: Transform - pos: -6.5,-27.5 + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11033 + - uid: 11077 components: - type: Transform - pos: -13.5,-27.5 + rot: 3.141592653589793 rad + pos: -6.5,-45.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11034 + - uid: 11079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-34.5 + pos: -20.5,-39.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11036 + - uid: 11083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 + pos: -4.5,-38.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11037 + - uid: 11095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + pos: -10.5,-38.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11225 components: - type: Transform @@ -104555,38 +103144,24 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11347 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11348 + - uid: 11427 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-38.5 + pos: -3.5,-23.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11349 + - uid: 11444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 + pos: -8.5,-27.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11427 + - uid: 11445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-23.5 + pos: -17.5,-29.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11469 components: - type: Transform @@ -104608,6 +103183,17 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 30 + - uid: 11614 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 30 - uid: 11769 components: - type: Transform @@ -104821,13 +103407,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12654 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12763 components: - type: Transform @@ -104843,13 +103422,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13077 - components: - - type: Transform - pos: 12.5,12.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13363 components: - type: Transform @@ -104865,14 +103437,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 13365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,14.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 13366 components: - type: Transform @@ -104971,6 +103535,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 13974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-48.5 + parent: 30 - uid: 14842 components: - type: Transform @@ -105058,6 +103628,48 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 18079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 30 + - uid: 18762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 30 + - uid: 18787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-64.5 + parent: 30 + - uid: 18796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-65.5 + parent: 30 + - uid: 18879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-44.5 + parent: 30 + - uid: 19234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-47.5 + parent: 30 + - uid: 19420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-49.5 + parent: 30 - uid: 19573 components: - type: Transform @@ -105206,29 +103818,29 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22852 +- proto: PoweredlightExterior + entities: + - uid: 833 components: - type: Transform - pos: -36.5,-57.5 + rot: 1.5707963267948966 rad + pos: 6.5,-52.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22853 + - uid: 10166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-60.5 + pos: -22.5,-58.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22854 + - uid: 10801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-63.5 + pos: 7.5,-46.5 + parent: 30 + - uid: 11147 + components: + - type: Transform + pos: -12.5,-58.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredlightLED entities: - uid: 10291 @@ -105360,12 +103972,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,15.5 parent: 30 - - uid: 3196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-59.5 - parent: 30 - uid: 3201 components: - type: Transform @@ -105378,6 +103984,17 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,5.5 parent: 30 + - uid: 4126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-61.5 + parent: 30 + - uid: 4127 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 30 - uid: 4237 components: - type: Transform @@ -105711,12 +104328,6 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 30 - - uid: 7912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 30 - uid: 8313 components: - type: Transform @@ -105724,17 +104335,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-58.5 - parent: 30 - - uid: 9060 + - uid: 9161 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-59.5 + pos: 12.5,11.5 parent: 30 - uid: 9225 components: @@ -105744,11 +104349,15 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9634 + - uid: 9998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-59.5 + pos: 16.5,-18.5 + parent: 30 + - uid: 10045 + components: + - type: Transform + pos: -17.5,-34.5 parent: 30 - uid: 10046 components: @@ -105756,6 +104365,11 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,42.5 parent: 30 + - uid: 10170 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 30 - uid: 10252 components: - type: Transform @@ -105768,49 +104382,23 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,15.5 parent: 30 - - uid: 10997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-25.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11005 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11007 + - uid: 10598 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-50.5 + pos: -10.5,-56.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11014 + - uid: 10797 components: - type: Transform - pos: -18.5,-34.5 + rot: 3.141592653589793 rad + pos: -0.5,-56.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11015 + - uid: 10997 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-35.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-30.5 + pos: 7.5,-25.5 parent: 30 - type: ApcPowerReceiver powerLoad: 0 @@ -105864,6 +104452,18 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 12822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-22.5 + parent: 30 + - uid: 12925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-24.5 + parent: 30 - uid: 15014 components: - type: Transform @@ -105924,13 +104524,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 15349 - components: - - type: Transform - pos: 50.5,24.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 15350 components: - type: Transform @@ -106082,6 +104675,12 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 16131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-59.5 + parent: 30 - uid: 16168 components: - type: Transform @@ -106277,6 +104876,46 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 17730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-57.5 + parent: 30 + - uid: 17789 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 30 + - uid: 18210 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 30 + - uid: 18359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-60.5 + parent: 30 + - uid: 18375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 30 + - uid: 18793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-63.5 + parent: 30 + - uid: 18794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-65.5 + parent: 30 - uid: 18821 components: - type: Transform @@ -106467,49 +105106,8 @@ entities: - uid: 18854 components: - type: Transform - pos: -63.5,-62.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18855 - components: - - type: Transform - pos: -66.5,-62.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-66.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-67.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-59.5 + pos: -69.5,-62.5 parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 19579 components: - type: Transform @@ -106663,6 +105261,11 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 + - uid: 20665 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 30 - uid: 21112 components: - type: Transform @@ -106686,60 +105289,6 @@ entities: parent: 30 - type: ApcPowerReceiver powerLoad: 0 - - uid: 22845 - components: - - type: Transform - pos: -30.5,-57.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-63.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22850 - components: - - type: Transform - pos: -22.5,-57.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-59.5 - parent: 30 - - type: ApcPowerReceiver - powerLoad: 0 - proto: PoweredSmallLightEmpty entities: - uid: 15072 @@ -106808,11 +105357,6 @@ entities: - type: Transform pos: -3.5,22.5 parent: 30 - - uid: 905 - components: - - type: Transform - pos: -17.5,-32.5 - parent: 30 - uid: 1340 components: - type: Transform @@ -106843,11 +105387,6 @@ entities: - type: Transform pos: -37.5,55.5 parent: 30 - - uid: 5615 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 30 - uid: 6276 components: - type: Transform @@ -106868,15 +105407,15 @@ entities: - type: Transform pos: -38.5,-22.5 parent: 30 - - uid: 8263 + - uid: 7227 components: - type: Transform - pos: -10.5,-38.5 + pos: -9.5,-38.5 parent: 30 - - uid: 8335 + - uid: 8456 components: - type: Transform - pos: -4.5,-38.5 + pos: -5.5,-38.5 parent: 30 - uid: 9196 components: @@ -106898,70 +105437,67 @@ entities: - type: Transform pos: 9.5,-22.5 parent: 30 - - uid: 9417 - components: - - type: Transform - pos: -22.5,-47.5 - parent: 30 - uid: 9439 components: - type: Transform pos: 5.5,-23.5 parent: 30 - - uid: 10194 + - uid: 10126 components: - type: Transform - pos: -14.5,-68.5 + pos: -8.5,-43.5 parent: 30 - - uid: 10202 + - uid: 11086 components: - type: Transform - pos: -20.5,-68.5 + pos: -9.5,-41.5 parent: 30 - - uid: 10215 + - uid: 11255 components: - type: Transform - pos: -20.5,-69.5 + pos: -3.5,-35.5 parent: 30 - - uid: 11255 + - uid: 11421 components: - type: Transform - pos: -3.5,-35.5 + pos: 1.5,-15.5 parent: 30 - - uid: 11265 + - uid: 11737 components: - type: Transform - pos: -16.5,-50.5 + pos: 21.5,0.5 parent: 30 - - uid: 11300 + - uid: 11748 components: - type: Transform - pos: -18.5,-48.5 + pos: 23.5,-11.5 parent: 30 - - uid: 11421 + - uid: 12234 components: - type: Transform - pos: 1.5,-15.5 + pos: 17.5,-9.5 parent: 30 - - uid: 11444 + - uid: 12821 components: - type: Transform - pos: -21.5,-68.5 + pos: -52.5,-62.5 parent: 30 - - uid: 11737 + - uid: 13953 components: - type: Transform - pos: 21.5,0.5 + pos: -11.5,-33.5 parent: 30 - - uid: 11748 + - uid: 13967 components: - type: Transform - pos: 23.5,-11.5 + rot: -1.5707963267948966 rad + pos: 9.5,-26.5 parent: 30 - - uid: 12234 + - uid: 13969 components: - type: Transform - pos: 17.5,-9.5 + rot: 1.5707963267948966 rad + pos: -19.5,-50.5 parent: 30 - uid: 15019 components: @@ -107053,6 +105589,12 @@ entities: - type: Transform pos: -53.5,48.5 parent: 30 + - uid: 19413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 30 - uid: 19616 components: - type: Transform @@ -107083,6 +105625,11 @@ entities: - type: Transform pos: -38.5,-29.5 parent: 30 + - uid: 20534 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 30 - uid: 20968 components: - type: Transform @@ -107113,23 +105660,49 @@ entities: - type: Transform pos: 4.5,20.5 parent: 30 - - uid: 22836 +- proto: RadiationCollectorFullTank + entities: + - uid: 9419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-57.5 + pos: -15.5,-60.5 + parent: 30 + - uid: 10677 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 30 + - uid: 11087 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 30 + - uid: 11104 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 30 + - uid: 11108 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 30 + - uid: 19830 + components: + - type: Transform + pos: -20.5,-60.5 parent: 30 - proto: RadioHandheld entities: - - uid: 11289 + - uid: 11081 components: - type: Transform - pos: -19.595512,-44.335434 + pos: -21.680277,-41.431904 parent: 30 - - uid: 11290 + - uid: 19817 components: - type: Transform - pos: -19.361137,-44.44481 + pos: -21.453587,-41.32728 parent: 30 - proto: Railing entities: @@ -107167,6 +105740,30 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 30 + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 30 + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,6.5 + parent: 30 + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 30 + - uid: 18844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 30 - uid: 21323 components: - type: Transform @@ -107189,8 +105786,34 @@ entities: - type: Transform pos: 6.5,-10.5 parent: 30 +- proto: RailingCorner + entities: + - uid: 13389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 30 + - uid: 13751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 30 - proto: RailingCornerSmall entities: + - uid: 14433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 30 + - uid: 18842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 30 - uid: 21325 components: - type: Transform @@ -107231,11 +105854,6 @@ entities: - type: Transform pos: -5.5,23.5 parent: 30 - - uid: 22547 - components: - - type: Transform - pos: 41.5,13.5 - parent: 30 - proto: RandomBoard entities: - uid: 5616 @@ -107260,6 +105878,11 @@ entities: parent: 30 - proto: RandomFoodMeal entities: + - uid: 338 + components: + - type: Transform + pos: 18.5,10.5 + parent: 30 - uid: 5003 components: - type: Transform @@ -107289,6 +105912,11 @@ entities: - type: Transform pos: -32.5,23.5 parent: 30 + - uid: 3341 + components: + - type: Transform + pos: -55.5,-67.5 + parent: 30 - uid: 12463 components: - type: Transform @@ -107299,11 +105927,6 @@ entities: - type: Transform pos: -61.5,29.5 parent: 30 - - uid: 18375 - components: - - type: Transform - pos: -63.5,-67.5 - parent: 30 - proto: RandomPainting entities: - uid: 19149 @@ -107343,6 +105966,11 @@ entities: - type: Transform pos: -20.5,-32.5 parent: 30 + - uid: 20623 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 30 - proto: RandomPosterContraband entities: - uid: 2421 @@ -107552,6 +106180,21 @@ entities: - type: Transform pos: 47.5,41.5 parent: 30 + - uid: 20636 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 30 + - uid: 20638 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 30 + - uid: 20639 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 30 - uid: 22088 components: - type: Transform @@ -107603,6 +106246,11 @@ entities: - type: Transform pos: 39.5,19.5 parent: 30 + - uid: 14366 + components: + - type: Transform + pos: 53.5,22.5 + parent: 30 - uid: 15160 components: - type: Transform @@ -107798,16 +106446,6 @@ entities: - type: Transform pos: 45.5,31.5 parent: 30 - - uid: 15990 - components: - - type: Transform - pos: 53.5,24.5 - parent: 30 - - uid: 15991 - components: - - type: Transform - pos: 51.5,24.5 - parent: 30 - uid: 15992 components: - type: Transform @@ -107969,6 +106607,11 @@ entities: - type: Transform pos: 35.5,32.5 parent: 30 + - uid: 19416 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 30 - proto: RandomVendingSnacks entities: - uid: 747 @@ -108001,24 +106644,29 @@ entities: - type: Transform pos: -48.5,21.5 parent: 30 + - uid: 19417 + components: + - type: Transform + pos: -69.5,-58.5 + parent: 30 - proto: RCD entities: - - uid: 9601 + - uid: 10545 components: - type: Transform - pos: -15.481125,-35.377903 + pos: -5.524026,-35.43381 parent: 30 - proto: RCDAmmo entities: - - uid: 9602 + - uid: 9491 components: - type: Transform - pos: -15.3405,-34.940403 + pos: -5.614659,-35.18134 parent: 30 - - uid: 9603 + - uid: 11059 components: - type: Transform - pos: -15.606125,-34.956028 + pos: -5.3324804,-35.19619 parent: 30 - proto: ReagentContainerFlourSmall entities: @@ -108031,11 +106679,11 @@ entities: tags: [] - proto: Recycler entities: - - uid: 14530 + - uid: 12974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,22.5 + pos: 49.5,23.5 parent: 30 - proto: ReinforcedGirder entities: @@ -108046,36 +106694,6 @@ entities: parent: 30 - proto: ReinforcedPlasmaWindow entities: - - uid: 3583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-56.5 - parent: 30 - - uid: 4406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-56.5 - parent: 30 - - uid: 4895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-56.5 - parent: 30 - - uid: 6271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-56.5 - parent: 30 - - uid: 7208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-56.5 - parent: 30 - uid: 8537 components: - type: Transform @@ -108153,24 +106771,6 @@ entities: - type: Transform pos: 24.5,-22.5 parent: 30 - - uid: 9058 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-56.5 - parent: 30 - - uid: 9061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-56.5 - parent: 30 - - uid: 9063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-56.5 - parent: 30 - uid: 12898 components: - type: Transform @@ -108222,6 +106822,42 @@ entities: - type: Transform pos: -59.5,57.5 parent: 30 + - uid: 20678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-54.5 + parent: 30 + - uid: 20679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-54.5 + parent: 30 + - uid: 20680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-54.5 + parent: 30 + - uid: 20681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 30 + - uid: 20682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-54.5 + parent: 30 + - uid: 20683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 30 - proto: ReinforcedWindow entities: - uid: 66 @@ -108309,11 +106945,6 @@ entities: - type: Transform pos: -64.5,12.5 parent: 30 - - uid: 795 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 30 - uid: 843 components: - type: Transform @@ -108641,21 +107272,11 @@ entities: - type: Transform pos: -42.5,34.5 parent: 30 - - uid: 1476 - components: - - type: Transform - pos: -51.5,36.5 - parent: 30 - uid: 1489 components: - type: Transform pos: -52.5,34.5 parent: 30 - - uid: 1490 - components: - - type: Transform - pos: -53.5,34.5 - parent: 30 - uid: 1491 components: - type: Transform @@ -109610,31 +108231,6 @@ entities: - type: Transform pos: -14.5,-17.5 parent: 30 - - uid: 7094 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 30 - - uid: 7095 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 30 - - uid: 7107 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 30 - - uid: 7108 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 30 - - uid: 7125 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 30 - uid: 7158 components: - type: Transform @@ -109706,6 +108302,12 @@ entities: - type: Transform pos: -14.5,-13.5 parent: 30 + - uid: 7912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 30 - uid: 7996 components: - type: Transform @@ -109762,11 +108364,6 @@ entities: - type: Transform pos: -65.5,42.5 parent: 30 - - uid: 8359 - components: - - type: Transform - pos: -32.5,-61.5 - parent: 30 - uid: 8377 components: - type: Transform @@ -109824,11 +108421,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-26.5 parent: 30 - - uid: 8408 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 30 - uid: 8409 components: - type: Transform @@ -109844,11 +108436,6 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 30 - - uid: 8419 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 30 - uid: 8420 components: - type: Transform @@ -109869,16 +108456,6 @@ entities: - type: Transform pos: 7.5,-22.5 parent: 30 - - uid: 8455 - components: - - type: Transform - pos: -32.5,-62.5 - parent: 30 - - uid: 8456 - components: - - type: Transform - pos: -32.5,-63.5 - parent: 30 - uid: 8457 components: - type: Transform @@ -110179,11 +108756,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-31.5 parent: 30 - - uid: 9194 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 30 - uid: 9277 components: - type: Transform @@ -110204,6 +108776,18 @@ entities: - type: Transform pos: -0.5,-32.5 parent: 30 + - uid: 9303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 30 + - uid: 9316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 30 - uid: 9321 components: - type: Transform @@ -110219,15 +108803,10 @@ entities: - type: Transform pos: -49.5,-10.5 parent: 30 - - uid: 9585 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 30 - - uid: 9586 + - uid: 9495 components: - type: Transform - pos: -19.5,-37.5 + pos: -16.5,-45.5 parent: 30 - uid: 9597 components: @@ -110239,239 +108818,234 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 30 - - uid: 9638 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 30 - - uid: 9639 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - - uid: 9640 + - uid: 9664 components: - type: Transform - pos: 2.5,-53.5 + pos: 4.5,37.5 parent: 30 - - uid: 9641 + - uid: 9679 components: - type: Transform - pos: 2.5,-52.5 + rot: 3.141592653589793 rad + pos: 5.5,-48.5 parent: 30 - - uid: 9642 + - uid: 9680 components: - type: Transform - pos: 2.5,-54.5 + rot: 3.141592653589793 rad + pos: 5.5,-49.5 parent: 30 - - uid: 9643 + - uid: 9702 components: - type: Transform - pos: -0.5,-50.5 + pos: -18.5,-45.5 parent: 30 - - uid: 9644 + - uid: 9706 components: - type: Transform - pos: 2.5,-50.5 + pos: 13.5,37.5 parent: 30 - - uid: 9645 + - uid: 9718 components: - type: Transform - pos: 2.5,-49.5 + pos: 13.5,38.5 parent: 30 - - uid: 9646 + - uid: 9723 components: - type: Transform - pos: 0.5,-47.5 + pos: -63.5,14.5 parent: 30 - - uid: 9647 + - uid: 9801 components: - type: Transform - pos: -0.5,-48.5 + pos: -57.5,5.5 parent: 30 - - uid: 9648 + - uid: 9815 components: - type: Transform - pos: 2.5,-48.5 + rot: -1.5707963267948966 rad + pos: -1.5,-42.5 parent: 30 - - uid: 9649 + - uid: 9820 components: - type: Transform - pos: -10.5,-42.5 + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 parent: 30 - - uid: 9650 + - uid: 9848 components: - type: Transform - pos: -8.5,-42.5 + pos: -27.5,-17.5 parent: 30 - - uid: 9651 + - uid: 9857 components: - type: Transform - pos: -6.5,-42.5 + pos: -32.5,-5.5 parent: 30 - - uid: 9652 + - uid: 9858 components: - type: Transform - pos: -4.5,-42.5 + pos: -32.5,-7.5 parent: 30 - - uid: 9664 + - uid: 10053 components: - type: Transform - pos: 4.5,37.5 + pos: -15.5,-57.5 parent: 30 - - uid: 9706 + - uid: 10054 components: - type: Transform - pos: 13.5,37.5 + pos: -17.5,-57.5 parent: 30 - - uid: 9718 + - uid: 10058 components: - type: Transform - pos: 13.5,38.5 + pos: -16.5,-57.5 parent: 30 - - uid: 9723 + - uid: 10059 components: - type: Transform - pos: -63.5,14.5 + pos: -19.5,-57.5 parent: 30 - - uid: 9801 + - uid: 10088 components: - type: Transform - pos: -57.5,5.5 + pos: -14.5,-57.5 parent: 30 - - uid: 9813 + - uid: 10089 components: - type: Transform - pos: 1.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 parent: 30 - - uid: 9817 + - uid: 10094 components: - type: Transform - pos: 1.5,-55.5 + pos: -18.5,-57.5 parent: 30 - - uid: 9818 + - uid: 10098 components: - type: Transform - pos: 0.5,-55.5 + pos: 4.5,-40.5 parent: 30 - - uid: 9848 + - uid: 10099 components: - type: Transform - pos: -27.5,-17.5 + pos: 4.5,-38.5 parent: 30 - - uid: 9857 + - uid: 10124 components: - type: Transform - pos: -32.5,-5.5 + rot: -1.5707963267948966 rad + pos: -14.5,-31.5 parent: 30 - - uid: 9858 + - uid: 10139 components: - type: Transform - pos: -32.5,-7.5 + pos: -20.5,-57.5 parent: 30 - - uid: 10089 + - uid: 10152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-26.5 + pos: -14.5,-39.5 parent: 30 - - uid: 10090 + - uid: 10185 components: - type: Transform - pos: 4.5,-44.5 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 parent: 30 - - uid: 10097 + - uid: 10395 components: - type: Transform - pos: 4.5,-42.5 + pos: 23.5,-16.5 parent: 30 - - uid: 10098 + - uid: 10623 components: - type: Transform - pos: 4.5,-40.5 + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 parent: 30 - - uid: 10099 + - uid: 10656 components: - type: Transform - pos: 4.5,-38.5 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 parent: 30 - - uid: 10114 + - uid: 10743 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-45.5 + pos: 3.5,-21.5 parent: 30 - - uid: 10115 + - uid: 11073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-45.5 + pos: -9.5,-45.5 parent: 30 - - uid: 10131 + - uid: 11076 components: - type: Transform pos: -16.5,-49.5 parent: 30 - - uid: 10132 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 30 - - uid: 10133 + - uid: 11091 components: - type: Transform - pos: -18.5,-52.5 + pos: -9.5,-43.5 parent: 30 - - uid: 10134 + - uid: 11106 components: - type: Transform - pos: -16.5,-52.5 + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 parent: 30 - - uid: 10262 + - uid: 11125 components: - type: Transform - pos: -33.5,-59.5 + pos: -18.5,-49.5 parent: 30 - - uid: 10263 + - uid: 11139 components: - type: Transform - pos: -32.5,-59.5 + pos: -7.5,-42.5 parent: 30 - - uid: 10264 + - uid: 11140 components: - type: Transform - pos: -32.5,-58.5 + pos: -5.5,-42.5 parent: 30 - - uid: 10265 + - uid: 11164 components: - type: Transform - pos: -32.5,-57.5 + rot: 3.141592653589793 rad + pos: 16.5,-17.5 parent: 30 - - uid: 10266 + - uid: 11270 components: - type: Transform - pos: -31.5,-59.5 + pos: -11.5,-32.5 parent: 30 - - uid: 10267 + - uid: 11308 components: - type: Transform - pos: -31.5,-61.5 + pos: -14.5,-44.5 parent: 30 - - uid: 10395 + - uid: 11438 components: - type: Transform - pos: 23.5,-16.5 + pos: -64.5,16.5 parent: 30 - - uid: 10743 + - uid: 11448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 + rot: 3.141592653589793 rad + pos: -53.5,37.5 parent: 30 - - uid: 11438 + - uid: 11450 components: - type: Transform - pos: -64.5,16.5 + rot: 3.141592653589793 rad + pos: -53.5,35.5 parent: 30 - uid: 11602 components: @@ -110552,10 +109126,11 @@ entities: - type: Transform pos: 28.5,-12.5 parent: 30 - - uid: 12680 + - uid: 12656 components: - type: Transform - pos: 15.5,13.5 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 parent: 30 - uid: 12695 components: @@ -110574,11 +109149,6 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,13.5 parent: 30 - - uid: 12727 - components: - - type: Transform - pos: 13.5,13.5 - parent: 30 - uid: 12729 components: - type: Transform @@ -110604,6 +109174,11 @@ entities: - type: Transform pos: 27.5,17.5 parent: 30 + - uid: 12837 + components: + - type: Transform + pos: -64.5,-66.5 + parent: 30 - uid: 12857 components: - type: Transform @@ -110854,6 +109429,11 @@ entities: - type: Transform pos: 10.5,55.5 parent: 30 + - uid: 13984 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 30 - uid: 14338 components: - type: Transform @@ -110869,11 +109449,6 @@ entities: - type: Transform pos: 27.5,12.5 parent: 30 - - uid: 14513 - components: - - type: Transform - pos: 49.5,23.5 - parent: 30 - uid: 14515 components: - type: Transform @@ -110894,6 +109469,11 @@ entities: - type: Transform pos: 16.5,63.5 parent: 30 + - uid: 14915 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 30 - uid: 15328 components: - type: Transform @@ -110979,6 +109559,11 @@ entities: - type: Transform pos: -56.5,48.5 parent: 30 + - uid: 16803 + components: + - type: Transform + pos: -62.5,-66.5 + parent: 30 - uid: 17039 components: - type: Transform @@ -111471,6 +110056,12 @@ entities: - type: Transform pos: -79.5,-37.5 parent: 30 + - uid: 17593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 30 - uid: 18006 components: - type: Transform @@ -111591,26 +110182,36 @@ entities: - type: Transform pos: -74.5,-67.5 parent: 30 - - uid: 18185 + - uid: 18343 components: - type: Transform - pos: -59.5,-69.5 + pos: -52.5,-38.5 parent: 30 - - uid: 18186 + - uid: 18372 components: - type: Transform - pos: -58.5,-69.5 + pos: -63.5,-66.5 parent: 30 - - uid: 18343 + - uid: 18763 components: - type: Transform - pos: -52.5,-38.5 + pos: -85.5,-46.5 + parent: 30 + - uid: 18764 + components: + - type: Transform + pos: -85.5,-44.5 parent: 30 - uid: 19066 components: - type: Transform pos: -51.5,-40.5 parent: 30 + - uid: 19373 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 30 - uid: 19632 components: - type: Transform @@ -111856,11 +110457,6 @@ entities: - type: Transform pos: -41.5,-28.5 parent: 30 - - uid: 22637 - components: - - type: Transform - pos: -30.5,-61.5 - parent: 30 - proto: ResearchAndDevelopmentServer entities: - uid: 12746 @@ -112004,10 +110600,10 @@ entities: - type: Transform pos: -42.32744,-20.937243 parent: 30 - - uid: 12822 + - uid: 18172 components: - type: Transform - pos: 16.462046,12.553694 + pos: 17.569016,13.6063385 parent: 30 - proto: SecurityTechFab entities: @@ -112023,15 +110619,15 @@ entities: - Steel - proto: SeedExtractor entities: - - uid: 415 + - uid: 2345 components: - type: Transform - pos: -25.5,8.5 + pos: -45.5,68.5 parent: 30 - - uid: 2345 + - uid: 16134 components: - type: Transform - pos: -45.5,68.5 + pos: -28.5,7.5 parent: 30 - uid: 19535 components: @@ -112040,49 +110636,39 @@ entities: parent: 30 - proto: SheetGlass entities: - - uid: 9419 - components: - - type: Transform - pos: -22.481571,-47.56282 - parent: 30 - - uid: 11281 - components: - - type: Transform - pos: 0.5411911,-43.91178 - parent: 30 - - uid: 11282 + - uid: 5635 components: - type: Transform - pos: 0.5411911,-43.91178 + pos: -25.515194,-43.69366 parent: 30 - - uid: 12820 + - uid: 18170 components: - type: Transform - pos: 19.709492,12.540524 + pos: 18.613844,13.552378 parent: 30 - - uid: 12821 + - uid: 18790 components: - type: Transform - pos: 19.80086,12.477194 + pos: -52.31846,-62.49577 parent: 30 - - uid: 18790 + - uid: 18878 components: - type: Transform - pos: -62.64885,-62.517246 + pos: -15.490766,-37.49464 parent: 30 - proto: SheetPlasma entities: - - uid: 9418 - components: - - type: Transform - pos: -22.465946,-47.515945 - parent: 30 - uid: 11365 components: - type: Transform parent: 11364 - type: Physics canCollide: False + - uid: 18692 + components: + - type: Transform + pos: -15.565023,-37.405533 + parent: 30 - uid: 21729 components: - type: Transform @@ -112110,30 +110696,22 @@ entities: - type: Transform pos: -39.48265,27.446999 parent: 30 - - uid: 11277 - components: - - type: Transform - pos: 0.5568161,-43.31803 - parent: 30 - - uid: 11278 - components: - - type: Transform - pos: 0.5568161,-43.31803 - parent: 30 - uid: 11736 components: - type: Transform pos: 19.262014,2.5731275 parent: 30 - - uid: 12816 + - uid: 19410 components: - type: Transform - pos: 19.2153,12.5261135 + pos: -21.505291,-47.848297 parent: 30 - - uid: 12817 +- proto: SheetPlasteel10 + entities: + - uid: 15989 components: - type: Transform - pos: 19.152752,12.557497 + pos: 19.503614,13.556404 parent: 30 - proto: SheetPlastic entities: @@ -112142,6 +110720,11 @@ entities: - type: Transform pos: 24.539536,9.582489 parent: 30 + - uid: 14827 + components: + - type: Transform + pos: -25.500341,-44.0501 + parent: 30 - proto: SheetRGlass entities: - uid: 779 @@ -112171,20 +110754,25 @@ entities: - type: Transform pos: -37.50003,55.530113 parent: 30 + - uid: 5615 + components: + - type: Transform + pos: -25.544897,-43.30752 + parent: 30 - uid: 6680 components: - type: Transform pos: -38.50112,-3.4785028 parent: 30 - - uid: 8384 + - uid: 9977 components: - type: Transform - pos: 14.431295,-25.50531 + pos: 2.432715,-46.481953 parent: 30 - - uid: 9246 + - uid: 10018 components: - type: Transform - pos: 14.418909,-25.502102 + pos: 12.534329,-26.430252 parent: 30 - uid: 10245 components: @@ -112201,57 +110789,52 @@ entities: - type: Transform pos: -39.967026,27.431374 parent: 30 - - uid: 11279 + - uid: 10556 components: - type: Transform - pos: 0.5099411,-42.56803 + pos: 2.7814693,-46.481953 parent: 30 - - uid: 11280 + - uid: 10761 components: - type: Transform - pos: 0.5099411,-42.56803 + pos: -21.470598,-47.509216 parent: 30 - - uid: 11701 + - uid: 11289 components: - type: Transform - pos: 14.431295,-25.50531 + pos: 12.415517,-26.22233 parent: 30 - - uid: 11735 - components: - - type: Transform - pos: 19.908981,2.569995 - parent: 30 - - uid: 12818 + - uid: 11299 components: - type: Transform - pos: 18.621367,12.577154 + pos: 12.593735,-26.22233 parent: 30 - - uid: 12819 + - uid: 11735 components: - type: Transform - pos: 18.711626,12.51626 + pos: 19.908981,2.569995 parent: 30 - uid: 15528 components: - type: Transform pos: 17.501102,60.54593 parent: 30 - - uid: 18791 + - uid: 17884 components: - type: Transform - pos: -62.6176,-62.579746 + pos: 18.973642,13.552378 parent: 30 - - uid: 20450 + - uid: 18791 components: - type: Transform - pos: -23.542912,-39.421722 + pos: -52.674896,-62.391804 parent: 30 - proto: SheetUranium entities: - - uid: 10290 + - uid: 19800 components: - type: Transform - pos: -22.492691,-47.491028 + pos: -15.342251,-37.568897 parent: 30 - proto: Shovel entities: @@ -112601,40 +111184,79 @@ entities: - type: Transform pos: -5.5,12.5 parent: 30 - - uid: 12656 + - uid: 12810 components: - type: Transform - pos: 14.5,13.5 + pos: 24.5,15.5 parent: 30 - - uid: 12657 + - uid: 14340 components: - type: Transform - pos: 13.5,13.5 + pos: 27.5,12.5 parent: 30 - - uid: 12810 + - uid: 14352 components: - type: Transform - pos: 24.5,15.5 + pos: 28.5,12.5 parent: 30 - - uid: 13075 + - uid: 14355 components: - type: Transform - pos: 15.5,13.5 + pos: 26.5,12.5 parent: 30 - - uid: 14340 + - uid: 14530 components: - type: Transform - pos: 27.5,12.5 + rot: -1.5707963267948966 rad + pos: 15.5,39.5 parent: 30 - - uid: 14352 + - uid: 14844 components: - type: Transform - pos: 28.5,12.5 + rot: -1.5707963267948966 rad + pos: 15.5,34.5 parent: 30 - - uid: 14355 + - uid: 15075 components: - type: Transform - pos: 26.5,12.5 + rot: -1.5707963267948966 rad + pos: 15.5,40.5 + parent: 30 + - uid: 15213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,36.5 + parent: 30 + - uid: 15986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 30 + - uid: 15987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 30 + - uid: 18696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 18733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 30 + - uid: 18734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 parent: 30 - uid: 20394 components: @@ -112684,35 +111306,25 @@ entities: parent: 30 - proto: ShuttersRadiationOpen entities: - - uid: 9182 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 30 - - uid: 9339 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 30 - - uid: 10741 + - uid: 9408 components: - type: Transform - pos: -4.5,-42.5 + pos: -16.5,-49.5 parent: 30 - - uid: 10742 + - uid: 9410 components: - type: Transform - pos: -6.5,-42.5 + pos: -18.5,-45.5 parent: 30 - - uid: 11152 + - uid: 9411 components: - type: Transform - pos: -8.5,-42.5 + pos: -16.5,-45.5 parent: 30 - - uid: 18692 + - uid: 9415 components: - type: Transform - pos: -0.5,-43.5 + pos: -18.5,-49.5 parent: 30 - proto: SignAi entities: @@ -112792,18 +111404,6 @@ entities: - type: Transform pos: -39.5,9.5 parent: 30 - - uid: 3598 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 844: - - Pressed: Toggle - uid: 8570 components: - type: Transform @@ -112813,32 +111413,6 @@ entities: linkedPorts: 9068: - Pressed: Toggle - - uid: 8818 - components: - - type: Transform - pos: -13.5,-56.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9827: - - Pressed: Toggle - 9826: - - Pressed: Toggle - 9825: - - Pressed: Toggle - - uid: 8821 - components: - - type: Transform - pos: -1.5,-56.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9830: - - Pressed: Toggle - 9829: - - Pressed: Toggle - 9828: - - Pressed: Toggle - uid: 9038 components: - type: Transform @@ -112959,24 +111533,6 @@ entities: - Pressed: Toggle 13729: - Pressed: Toggle - - uid: 15985 - components: - - type: Transform - pos: 50.5,25.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 13751: - - Pressed: Toggle - - uid: 15986 - components: - - type: Transform - pos: 53.5,25.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14512: - - Pressed: Toggle - uid: 20392 components: - type: Transform @@ -113008,21 +111564,6 @@ entities: linkedPorts: 5556: - Pressed: Toggle - - uid: 20399 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: 16.5,13.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 12656: - - Pressed: Toggle - 12657: - - Pressed: Toggle - 13075: - - Pressed: Toggle - uid: 20446 components: - type: Transform @@ -113057,17 +111598,6 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 3115 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - pos: 12.5,13.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 961: - - Pressed: Toggle - uid: 3180 components: - type: Transform @@ -113235,18 +111765,6 @@ entities: - Pressed: Toggle 7562: - Pressed: Toggle - - uid: 8393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-48.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 9404: - - Pressed: Toggle - 9405: - - Pressed: Toggle - uid: 8607 components: - type: Transform @@ -113257,20 +111775,6 @@ entities: linkedPorts: 6882: - Pressed: Toggle - - uid: 8609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-45.5 - parent: 30 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 9405: - - Pressed: Toggle - 9404: - - Pressed: Toggle - uid: 8610 components: - type: Transform @@ -113338,6 +111842,17 @@ entities: linkedPorts: 6415: - Pressed: DoorBolt + - uid: 18213 + components: + - type: MetaData + name: janitor light button + - type: Transform + pos: 18.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 16403: + - Pressed: Toggle - uid: 20432 components: - type: Transform @@ -113366,6 +111881,141 @@ entities: - Pressed: Toggle 2313: - Pressed: Toggle +- proto: SignalSwitch + entities: + - uid: 11021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9533: + - On: Open + - Off: Close + 11028: + - On: Open + - Off: Close + 11015: + - On: Open + - Off: Close +- proto: SignalSwitchDirectional + entities: + - uid: 402 + components: + - type: MetaData + name: shutters switch + - type: Transform + pos: 17.5,17.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 18696: + - On: Open + - Off: Close + 18733: + - On: Open + - Off: Close + 18734: + - On: Open + - Off: Close + - uid: 3131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9415: + - On: Open + - Off: Close + 9408: + - On: Open + - Off: Close + 9410: + - On: Open + - Off: Close + 9411: + - On: Open + - Off: Close + - uid: 9164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-54.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9678: + - On: Open + - Off: Close + 9065: + - On: Open + - Off: Close + 9064: + - On: Open + - Off: Close + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-54.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 9690: + - On: Open + - Off: Close + 9302: + - On: Open + - Off: Close + 9691: + - On: Open + - Off: Close + - uid: 12697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,35.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 15213: + - On: Open + - Off: Close + 15987: + - On: Open + - Off: Close + - uid: 14525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 15986: + - On: Open + - Off: Close + 14844: + - On: Open + - Off: Close + - uid: 15975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,38.5 + parent: 30 + - type: DeviceLinkSource + linkedPorts: + 14530: + - On: Open + - Off: Close + 15075: + - On: Open + - Off: Close - proto: SignArmory entities: - uid: 1927 @@ -113375,6 +112025,11 @@ entities: parent: 30 - proto: SignAtmos entities: + - uid: 7012 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 30 - uid: 9082 components: - type: Transform @@ -113385,13 +112040,6 @@ entities: - type: Transform pos: 4.5,-32.5 parent: 30 -- proto: SignAtmosMinsky - entities: - - uid: 7012 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 30 - proto: SignBar entities: - uid: 1384 @@ -113411,6 +112059,18 @@ entities: - type: Transform pos: -2.5,28.5 parent: 30 +- proto: SignCans + entities: + - uid: 20624 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 30 + - uid: 20627 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 30 - proto: SignCargo entities: - uid: 8405 @@ -113447,8 +112107,6 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 30 -- proto: SignChemistry1 - entities: - uid: 9032 components: - type: Transform @@ -113456,17 +112114,6 @@ entities: parent: 30 - proto: SignCryogenicsMed entities: - - uid: 6679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-42.5 - parent: 30 - - uid: 9950 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 30 - uid: 15233 components: - type: Transform @@ -113474,12 +112121,6 @@ entities: parent: 30 - proto: SignDangerMed entities: - - uid: 6678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 30 - uid: 17038 components: - type: Transform @@ -113909,13 +112550,6 @@ entities: - type: Transform pos: 47.5,20.5 parent: 30 -- proto: SignDrones - entities: - - uid: 12263 - components: - - type: Transform - pos: -37.5,26.5 - parent: 30 - proto: SignElectricalMed entities: - uid: 3194 @@ -113934,52 +112568,42 @@ entities: - type: Transform pos: -41.5,20.5 parent: 30 - - uid: 6684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-42.5 - parent: 30 - - uid: 6699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 30 - uid: 6889 components: - type: Transform pos: -36.5,-1.5 parent: 30 - - uid: 9363 + - uid: 9464 components: - type: Transform - pos: -5.5,-37.5 + pos: -4.5,-28.5 parent: 30 - - uid: 9449 + - uid: 15973 components: - type: Transform - pos: -25.5,-45.5 + pos: 48.5,31.5 parent: 30 - - uid: 9464 + - uid: 16993 components: - type: Transform - pos: -4.5,-28.5 + pos: -62.5,44.5 parent: 30 - - uid: 9465 + - uid: 20628 components: - type: Transform - pos: -11.5,-36.5 + pos: -9.5,-42.5 parent: 30 - - uid: 15973 +- proto: SignEngine + entities: + - uid: 20633 components: - type: Transform - pos: 48.5,31.5 + pos: -8.5,-42.5 parent: 30 - - uid: 16993 + - uid: 20634 components: - type: Transform - pos: -62.5,44.5 + pos: -13.5,-46.5 parent: 30 - proto: SignEngineering entities: @@ -114009,16 +112633,27 @@ entities: parent: 30 - proto: SignFire entities: - - uid: 6639 + - uid: 9264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-42.5 + pos: 23.5,-15.5 parent: 30 - - uid: 9264 + - uid: 20621 components: - type: Transform - pos: 23.5,-15.5 + pos: 3.5,-42.5 + parent: 30 +- proto: SignFlammableMed + entities: + - uid: 20631 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 30 + - uid: 20632 + components: + - type: Transform + pos: -5.5,-54.5 parent: 30 - proto: SignGravity entities: @@ -114041,19 +112676,15 @@ entities: - type: Transform pos: -20.5,13.5 parent: 30 -- proto: SignHydro2 - entities: - - uid: 1386 + - uid: 1385 components: - type: Transform - pos: -29.5,4.5 + pos: -22.5,8.5 parent: 30 -- proto: SignHydro3 - entities: - - uid: 1385 + - uid: 1386 components: - type: Transform - pos: -22.5,8.5 + pos: -29.5,4.5 parent: 30 - proto: SignInterrogation entities: @@ -114074,7 +112705,12 @@ entities: - uid: 18813 components: - type: Transform - pos: -57.5,-61.5 + pos: -71.5,-58.5 + parent: 30 + - uid: 20629 + components: + - type: Transform + pos: -63.5,-61.5 parent: 30 - proto: SignMagneticsMed entities: @@ -114090,6 +112726,13 @@ entities: - type: Transform pos: 18.5,-0.5 parent: 30 +- proto: SignMaterials + entities: + - uid: 12263 + components: + - type: Transform + pos: -37.5,26.5 + parent: 30 - proto: SignMedical entities: - uid: 6763 @@ -114102,13 +112745,6 @@ entities: - type: Transform pos: -12.5,0.5 parent: 30 -- proto: SignMinerDock - entities: - - uid: 8445 - components: - - type: Transform - pos: 15.5,-9.5 - parent: 30 - proto: SignMorgue entities: - uid: 6903 @@ -114194,15 +112830,15 @@ entities: - type: Transform pos: 12.5,43.5 parent: 30 - - uid: 10143 + - uid: 20622 components: - type: Transform - pos: -19.5,-45.5 + pos: -15.5,-45.5 parent: 30 - - uid: 10144 + - uid: 20630 components: - type: Transform - pos: -15.5,-45.5 + pos: -19.5,-45.5 parent: 30 - proto: SignRedOne entities: @@ -114245,26 +112881,23 @@ entities: pos: 16.5,24.5 parent: 30 - proto: SignScience - entities: - - uid: 13389 - components: - - type: Transform - pos: 16.5,16.5 - parent: 30 -- proto: SignScience1 entities: - uid: 6576 components: - type: Transform pos: 11.5,19.5 parent: 30 -- proto: SignScience2 - entities: - uid: 13388 components: - type: Transform pos: 11.5,13.5 parent: 30 + - uid: 17707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 30 - proto: SignSecurearea entities: - uid: 11895 @@ -114355,36 +112988,29 @@ entities: - type: Transform pos: -37.5,38.5 parent: 30 -- proto: SignSmoking +- proto: SignShipDock entities: - - uid: 9125 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 30 - - uid: 10386 + - uid: 8445 components: - type: Transform - pos: 17.5,-15.5 + pos: 15.5,-9.5 parent: 30 - - uid: 21458 +- proto: SignSmoking + entities: + - uid: 9125 components: - type: Transform - pos: -13.5,-42.5 + pos: 21.5,-20.5 parent: 30 -- proto: SignSomethingOld - entities: - - uid: 10018 + - uid: 9194 components: - type: Transform - pos: -1.5,-42.5 + pos: -0.5,-42.5 parent: 30 -- proto: SignSomethingOld2 - entities: - - uid: 10017 + - uid: 10386 components: - type: Transform - pos: -3.5,-42.5 + pos: 17.5,-15.5 parent: 30 - proto: SignSpace entities: @@ -114455,20 +113081,10 @@ entities: parent: 30 - proto: SignTelecomms entities: - - uid: 22655 + - uid: 20635 components: - type: Transform - pos: -19.5,-47.5 - parent: 30 - - uid: 22656 - components: - - type: Transform - pos: -28.5,-59.5 - parent: 30 - - uid: 22803 - components: - - type: Transform - pos: -21.5,-57.5 + pos: -11.5,-36.5 parent: 30 - proto: SignToolStorage entities: @@ -114486,25 +113102,13 @@ entities: parent: 30 - proto: SingularityGenerator entities: - - uid: 9407 + - uid: 19419 components: - type: Transform - pos: -22.5,-48.5 + pos: -16.5,-34.5 parent: 30 - proto: Sink entities: - - uid: 402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 30 - - uid: 403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,12.5 - parent: 30 - uid: 449 components: - type: Transform @@ -114604,6 +113208,24 @@ entities: - type: Transform pos: -12.5,11.5 parent: 30 + - uid: 11065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 30 + - uid: 12640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,8.5 + parent: 30 + - uid: 17714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 30 - uid: 18011 components: - type: Transform @@ -114615,12 +113237,6 @@ entities: - type: Transform pos: -56.5,52.5 parent: 30 - - uid: 22541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,14.5 - parent: 30 - proto: SmartFridge entities: - uid: 315 @@ -114645,6 +113261,11 @@ entities: parent: 30 - proto: SMESBasic entities: + - uid: 3115 + components: + - type: Transform + pos: -56.5,-63.5 + parent: 30 - uid: 5472 components: - type: MetaData @@ -114652,64 +113273,54 @@ entities: - type: Transform pos: 12.5,41.5 parent: 30 - - uid: 9410 + - uid: 8237 components: - type: Transform - pos: -24.5,-50.5 + pos: -15.5,-28.5 parent: 30 - - uid: 9411 + - uid: 8819 components: - type: Transform - pos: -24.5,-49.5 + pos: -19.5,-46.5 parent: 30 - - uid: 9496 + - uid: 9581 components: - - type: MetaData - name: SMES Bank 3 - type: Transform - pos: -6.5,-34.5 + pos: -6.5,-43.5 parent: 30 - - uid: 9497 + - uid: 9583 components: - - type: MetaData - name: SMES Bank 2 - type: Transform - pos: -7.5,-34.5 + pos: -5.5,-43.5 parent: 30 - - uid: 9498 + - uid: 11176 components: - - type: MetaData - name: SMES Bank 1 - type: Transform - pos: -8.5,-34.5 + pos: -7.5,-47.5 parent: 30 - - uid: 15299 + - uid: 11278 components: - - type: MetaData - name: East Solars SMES - type: Transform - pos: 51.5,31.5 + pos: -7.5,-43.5 parent: 30 - - uid: 16277 + - uid: 15299 components: - type: MetaData - name: West Solars SMES + name: East Solars SMES - type: Transform - pos: -65.5,44.5 + pos: 51.5,31.5 parent: 30 - - uid: 18774 + - uid: 15991 components: - - type: MetaData - name: Chapelroid SMES 2 - type: Transform - pos: -69.5,-63.5 + pos: -56.5,-62.5 parent: 30 - - uid: 18775 + - uid: 16277 components: - type: MetaData - name: Chapelroid SMES 1 + name: West Solars SMES - type: Transform - pos: -69.5,-62.5 + pos: -65.5,44.5 parent: 30 - uid: 20046 components: @@ -114718,17 +113329,17 @@ entities: - type: Transform pos: -0.5,84.5 parent: 30 - - uid: 20619 +- proto: SMESBasicEmpty + entities: + - uid: 9481 components: - type: Transform - pos: -15.5,-28.5 + pos: -15.5,-35.5 parent: 30 - - uid: 22658 + - uid: 9498 components: - - type: MetaData - name: Telecomms SMES - type: Transform - pos: -25.5,-62.5 + pos: -15.5,-34.5 parent: 30 - proto: SoapHomemade entities: @@ -116150,12 +114761,20 @@ entities: - type: Transform pos: 4.5,34.5 parent: 30 +- proto: SpawnMobCow + entities: + - uid: 18819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 30 - proto: SpawnMobCrabAtmos entities: - - uid: 20359 + - uid: 19831 components: - type: Transform - pos: 17.5,-27.5 + pos: 10.5,-25.5 parent: 30 - proto: SpawnMobFoxRenault entities: @@ -116166,10 +114785,11 @@ entities: parent: 30 - proto: SpawnMobGoat entities: - - uid: 7677 + - uid: 14336 components: - type: Transform - pos: -16.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,5.5 parent: 30 - proto: SpawnMobKangarooWillow entities: @@ -116241,13 +114861,6 @@ entities: - type: Transform pos: -24.5,52.5 parent: 30 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 19570 - components: - - type: Transform - pos: -57.5,-64.5 - parent: 30 - proto: SpawnMobSmile entities: - uid: 7441 @@ -116372,10 +114985,10 @@ entities: parent: 30 - proto: SpawnPointChiefEngineer entities: - - uid: 9587 + - uid: 9494 components: - type: Transform - pos: -16.5,-35.5 + pos: -7.5,-33.5 parent: 30 - proto: SpawnPointChiefMedicalOfficer entities: @@ -116460,10 +115073,10 @@ entities: parent: 30 - proto: SpawnPointLibrarian entities: - - uid: 19562 + - uid: 18604 components: - type: Transform - pos: -58.5,-65.5 + pos: -66.5,-62.5 parent: 30 - proto: SpawnPointMedicalDoctor entities: @@ -116699,47 +115312,102 @@ entities: parent: 30 - proto: SpawnPointStationEngineer entities: - - uid: 9579 + - uid: 9366 components: - type: Transform - pos: -23.5,-41.5 + pos: -23.5,-48.5 parent: 30 - - uid: 9580 + - uid: 9503 components: - type: Transform - pos: -24.5,-41.5 + pos: -6.5,-44.5 parent: 30 - - uid: 9581 + - uid: 9506 components: - type: Transform - pos: -23.5,-42.5 + pos: -22.5,-48.5 parent: 30 - - uid: 20346 + - uid: 9644 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 30 + - uid: 9646 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 30 + - uid: 9647 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 30 + - uid: 9652 components: - type: Transform - pos: -24.5,-42.5 + pos: -23.5,-49.5 + parent: 30 + - uid: 9890 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 30 + - uid: 9974 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 30 + - uid: 10554 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 30 + - uid: 10613 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 30 + - uid: 11347 + components: + - type: Transform + pos: -22.5,-47.5 parent: 30 - proto: SpawnPointTechnicalAssistant entities: - - uid: 20802 + - uid: 9343 components: - type: Transform - pos: -21.5,-42.5 + pos: -24.5,-48.5 parent: 30 - - uid: 20803 + - uid: 9359 components: - type: Transform - pos: -21.5,-41.5 + pos: -7.5,-44.5 parent: 30 - - uid: 20885 + - uid: 9363 components: - type: Transform - pos: -22.5,-42.5 + pos: -23.5,-48.5 parent: 30 - - uid: 20886 + - uid: 9648 components: - type: Transform - pos: -22.5,-41.5 + pos: -22.5,-48.5 + parent: 30 + - uid: 9986 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 30 + - uid: 10583 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 30 + - uid: 10584 + components: + - type: Transform + pos: -23.5,-47.5 parent: 30 - proto: SpawnPointWarden entities: @@ -117252,25 +115920,20 @@ entities: - type: Transform pos: 14.5,-28.5 parent: 30 - - uid: 9794 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 30 - - uid: 9998 + - uid: 9066 components: - type: Transform - pos: -13.5,-43.5 + pos: -1.5,-43.5 parent: 30 - - uid: 10000 + - uid: 9882 components: - type: Transform - pos: -11.5,-43.5 + pos: -0.5,-43.5 parent: 30 - - uid: 10001 + - uid: 10561 components: - type: Transform - pos: -10.5,-43.5 + pos: -2.5,-43.5 parent: 30 - uid: 13342 components: @@ -117382,26 +116045,20 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 30 - - uid: 9406 + - uid: 8239 components: - - type: MetaData - name: West Engineering Substation - type: Transform - pos: -22.5,-46.5 + pos: -16.5,-28.5 parent: 30 - - uid: 9570 + - uid: 9403 components: - - type: MetaData - name: East Engineering Substation - type: Transform - pos: 3.5,-37.5 + pos: -19.5,-48.5 parent: 30 - - uid: 10533 + - uid: 11175 components: - - type: MetaData - name: Singulo Substation - type: Transform - pos: -16.5,-51.5 + pos: -15.5,-39.5 parent: 30 - uid: 11374 components: @@ -117424,12 +116081,10 @@ entities: - type: Transform pos: 12.5,51.5 parent: 30 - - uid: 17718 + - uid: 18769 components: - - type: MetaData - name: Chapelroid Substation - type: Transform - pos: -52.5,-59.5 + pos: -56.5,-65.5 parent: 30 - uid: 18922 components: @@ -117452,12 +116107,12 @@ entities: - type: Transform pos: -24.5,41.5 parent: 30 - - uid: 22659 +- proto: SubstationBasicEmpty + entities: + - uid: 11345 components: - - type: MetaData - name: Telecomms Substation - type: Transform - pos: -27.5,-62.5 + pos: -15.5,-36.5 parent: 30 - proto: SubstationWallBasic entities: @@ -117504,22 +116159,27 @@ entities: parent: 30 - proto: SuitStorageCE entities: - - uid: 773 + - uid: 10649 components: - type: Transform - pos: -19.5,-36.5 + pos: -9.5,-36.5 parent: 30 - proto: SuitStorageEngi entities: - - uid: 9436 + - uid: 7111 components: - type: Transform - pos: -8.5,-38.5 + pos: -8.5,-41.5 parent: 30 - - uid: 9591 + - uid: 7123 components: - type: Transform - pos: -6.5,-38.5 + pos: -6.5,-41.5 + parent: 30 + - uid: 7124 + components: + - type: Transform + pos: -4.5,-41.5 parent: 30 - proto: SuitStorageEVA entities: @@ -117756,50 +116416,6 @@ entities: id: Conference Room - proto: SurveillanceCameraEngineering entities: - - uid: 788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Cold Loop - - uid: 8233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG West Hot Room - - uid: 8293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-53.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Singulo Walkway - - uid: 8296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-39.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engi Locker Room - uid: 9253 components: - type: Transform @@ -117811,70 +116427,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Storage - - uid: 9429 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG South - - uid: 9692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-49.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG Hot Loop - - uid: 9703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG East Hot Room - - uid: 9704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-43.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: TEG North - - uid: 21209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-38.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Engineering ' - - uid: 21210 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: AME Room - uid: 21211 components: - type: Transform @@ -117908,23 +116460,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmospherics Desk - - uid: 21217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Chief Engineer's Room - - uid: 21218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-42.5 - parent: 30 - uid: 21219 components: - type: Transform @@ -117957,28 +116492,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tanks - - uid: 21279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: SMES Bank - - uid: 21280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-46.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Engineering Supply - uid: 21281 components: - type: Transform @@ -118000,39 +116513,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Hall - - uid: 22811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-57.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Exterior - - uid: 22838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-60.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms - - uid: 22839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-59.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Telecomms Entrance - proto: SurveillanceCameraGeneral entities: - uid: 1039 @@ -118078,17 +116558,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Game Room - - uid: 21229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-64.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Library - uid: 21231 components: - type: Transform @@ -118340,60 +116809,53 @@ entities: id: Psychology - proto: SurveillanceCameraRouterCommand entities: - - uid: 20980 - components: - - type: Transform - pos: 7.5,41.5 - parent: 30 - - uid: 22824 + - uid: 11177 components: - type: Transform - pos: -38.5,-60.5 + pos: -10.5,-31.5 parent: 30 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 22832 + - uid: 20980 components: - type: Transform - pos: -40.5,-57.5 + pos: 7.5,41.5 parent: 30 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 22807 + - uid: 19183 components: - type: Transform - pos: -38.5,-57.5 + pos: -8.5,-31.5 parent: 30 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 21228 + - uid: 9387 components: - type: Transform - pos: -68.5,-63.5 + pos: -12.5,-31.5 parent: 30 - - uid: 22819 + - uid: 18191 components: - type: Transform - pos: -40.5,-63.5 + pos: -52.5,-59.5 parent: 30 - proto: SurveillanceCameraRouterMedical entities: - - uid: 22809 + - uid: 19184 components: - type: Transform - pos: -38.5,-62.5 + pos: -6.5,-27.5 parent: 30 - proto: SurveillanceCameraRouterScience entities: - - uid: 12747 + - uid: 11156 components: - type: Transform - pos: 31.5,15.5 + pos: -8.5,-27.5 parent: 30 - - uid: 22810 + - uid: 12747 components: - type: Transform - pos: -38.5,-63.5 + pos: 31.5,15.5 parent: 30 - proto: SurveillanceCameraRouterSecurity entities: @@ -118402,43 +116864,43 @@ entities: - type: Transform pos: -37.5,56.5 parent: 30 - - uid: 22820 + - uid: 9970 components: - type: Transform - pos: -35.5,-63.5 + pos: -6.5,-31.5 parent: 30 - proto: SurveillanceCameraRouterService entities: - - uid: 21220 + - uid: 11348 components: - type: Transform - pos: -13.5,17.5 + pos: -12.5,-27.5 parent: 30 - - uid: 22821 + - uid: 21220 components: - type: Transform - pos: -35.5,-57.5 + pos: -13.5,17.5 parent: 30 - proto: SurveillanceCameraRouterSupply entities: - - uid: 22808 + - uid: 10552 components: - type: Transform - pos: -38.5,-58.5 + pos: -10.5,-27.5 parent: 30 - proto: SurveillanceCameraScience entities: - - uid: 21186 + - uid: 9990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,12.5 + rot: -1.5707963267948966 rad + pos: 17.5,13.5 parent: 30 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: RND + id: Reception - uid: 21187 components: - type: Transform @@ -118830,20 +117292,6 @@ entities: - SurveillanceCameraSupply nameSet: True id: Quartermaster's Room -- proto: SurveillanceCameraWirelessRouterConstructed - entities: - - uid: 22831 - components: - - type: Transform - pos: -40.5,-59.5 - parent: 30 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 22818 - components: - - type: Transform - pos: -40.5,-58.5 - parent: 30 - proto: SynthesizerInstrument entities: - uid: 15112 @@ -119225,6 +117673,11 @@ entities: - type: Transform pos: -51.5,55.5 parent: 30 + - uid: 3130 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 30 - uid: 3528 components: - type: Transform @@ -119235,11 +117688,32 @@ entities: - type: Transform pos: -39.5,18.5 parent: 30 + - uid: 4987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-32.5 + parent: 30 + - uid: 5238 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 30 + - uid: 5240 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 30 - uid: 5414 components: - type: Transform pos: 5.5,29.5 parent: 30 + - uid: 5444 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 30 - uid: 6278 components: - type: Transform @@ -119385,11 +117859,6 @@ entities: - type: Transform pos: 13.5,-25.5 parent: 30 - - uid: 9244 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 30 - uid: 9245 components: - type: Transform @@ -119405,40 +117874,44 @@ entities: - type: Transform pos: 14.5,-15.5 parent: 30 - - uid: 9430 + - uid: 9414 components: - type: Transform - pos: -24.5,-39.5 + rot: 3.141592653589793 rad + pos: -7.5,-34.5 parent: 30 - - uid: 9431 + - uid: 9442 components: - type: Transform - pos: -23.5,-39.5 + pos: 5.5,-26.5 parent: 30 - - uid: 9442 + - uid: 9523 components: - type: Transform - pos: 5.5,-26.5 + rot: 3.141592653589793 rad + pos: -8.5,-34.5 parent: 30 - - uid: 9479 + - uid: 9531 components: - type: Transform - pos: -17.5,-29.5 + pos: -5.5,-34.5 parent: 30 - - uid: 9480 + - uid: 9532 components: - type: Transform - pos: -17.5,-30.5 + pos: -9.5,-34.5 parent: 30 - - uid: 9481 + - uid: 9591 components: - type: Transform - pos: -17.5,-28.5 + rot: 3.141592653589793 rad + pos: -17.5,-32.5 parent: 30 - - uid: 9482 + - uid: 10123 components: - type: Transform - pos: -17.5,-31.5 + rot: -1.5707963267948966 rad + pos: -17.5,-29.5 parent: 30 - uid: 10407 components: @@ -119455,70 +117928,59 @@ entities: - type: Transform pos: -47.5,63.5 parent: 30 - - uid: 11247 - components: - - type: Transform - pos: -1.5,-32.5 - parent: 30 - - uid: 11249 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 30 - - uid: 11250 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 30 - - uid: 11272 + - uid: 10593 components: - type: Transform - pos: 0.5,-44.5 + rot: -1.5707963267948966 rad + pos: -25.5,-50.5 parent: 30 - - uid: 11273 + - uid: 10680 components: - type: Transform - pos: 0.5,-43.5 + rot: 3.141592653589793 rad + pos: -10.5,-47.5 parent: 30 - - uid: 11274 + - uid: 10790 components: - type: Transform - pos: 0.5,-42.5 + pos: 2.5,-41.5 parent: 30 - - uid: 11285 + - uid: 10794 components: - type: Transform - pos: -19.5,-44.5 + pos: 3.5,-41.5 parent: 30 - - uid: 11286 + - uid: 11063 components: - type: Transform - pos: -15.5,-44.5 + rot: -1.5707963267948966 rad + pos: -24.5,-50.5 parent: 30 - - uid: 11287 + - uid: 11174 components: - type: Transform - pos: -15.5,-43.5 + rot: 3.141592653589793 rad + pos: -8.5,-47.5 parent: 30 - - uid: 11288 + - uid: 11247 components: - type: Transform - pos: -15.5,-42.5 + pos: -1.5,-32.5 parent: 30 - - uid: 11302 + - uid: 11249 components: - type: Transform - pos: 1.5,-44.5 + pos: -3.5,-32.5 parent: 30 - - uid: 11306 + - uid: 11250 components: - type: Transform - pos: -11.5,-35.5 + pos: -3.5,-33.5 parent: 30 - - uid: 11307 + - uid: 11336 components: - type: Transform - pos: -11.5,-34.5 + pos: -5.5,-35.5 parent: 30 - uid: 11473 components: @@ -119591,6 +118053,12 @@ entities: - type: Transform pos: 25.5,31.5 parent: 30 + - uid: 12657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 30 - uid: 12761 components: - type: Transform @@ -119601,10 +118069,23 @@ entities: - type: Transform pos: 24.5,10.5 parent: 30 - - uid: 12835 + - uid: 12836 components: - type: Transform - pos: 14.5,10.5 + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 30 + - uid: 12838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 12839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,15.5 parent: 30 - uid: 12841 components: @@ -119667,6 +118148,16 @@ entities: - type: Transform pos: 15.5,60.5 parent: 30 + - uid: 14868 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 30 + - uid: 14895 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 30 - uid: 15052 components: - type: Transform @@ -119697,6 +118188,12 @@ entities: - type: Transform pos: 47.5,44.5 parent: 30 + - uid: 15988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 - uid: 16117 components: - type: Transform @@ -119782,11 +118279,39 @@ entities: - type: Transform pos: -81.5,-61.5 parent: 30 + - uid: 18215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,13.5 + parent: 30 + - uid: 18770 + components: + - type: Transform + pos: 18.5,10.5 + parent: 30 + - uid: 18815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 30 + - uid: 18996 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 30 - uid: 19068 components: - type: Transform pos: -51.5,-46.5 parent: 30 + - uid: 19178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-47.5 + parent: 30 - uid: 19399 components: - type: Transform @@ -119797,6 +118322,33 @@ entities: - type: Transform pos: -49.5,6.5 parent: 30 + - uid: 19402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-47.5 + parent: 30 + - uid: 19403 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 30 + - uid: 19404 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 30 + - uid: 19405 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 30 + - uid: 19409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 30 - uid: 19528 components: - type: Transform @@ -119837,6 +118389,12 @@ entities: - type: Transform pos: -28.5,-43.5 parent: 30 + - uid: 19782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 30 - uid: 20272 components: - type: Transform @@ -119937,12 +118495,6 @@ entities: - type: Transform pos: -49.5,50.5 parent: 30 - - uid: 22835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-57.5 - parent: 30 - proto: TableCarpet entities: - uid: 1535 @@ -120047,11 +118599,6 @@ entities: parent: 30 - proto: TableGlass entities: - - uid: 416 - components: - - type: Transform - pos: -25.5,11.5 - parent: 30 - uid: 907 components: - type: Transform @@ -120211,26 +118758,6 @@ entities: - type: Transform pos: 27.5,14.5 parent: 30 - - uid: 12830 - components: - - type: Transform - pos: 19.5,12.5 - parent: 30 - - uid: 12838 - components: - - type: Transform - pos: 16.5,12.5 - parent: 30 - - uid: 12839 - components: - - type: Transform - pos: 15.5,12.5 - parent: 30 - - uid: 12840 - components: - - type: Transform - pos: 18.5,12.5 - parent: 30 - uid: 13088 components: - type: Transform @@ -120241,6 +118768,11 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 30 + - uid: 16137 + components: + - type: Transform + pos: -28.5,11.5 + parent: 30 - uid: 20282 components: - type: Transform @@ -120555,30 +119087,30 @@ entities: - type: Transform pos: -27.5,43.5 parent: 30 - - uid: 9326 + - uid: 9059 components: - type: Transform - pos: -18.5,-35.5 + pos: 3.5,-46.5 parent: 30 - - uid: 9328 + - uid: 9658 components: - type: Transform - pos: -15.5,-34.5 + pos: -2.5,-45.5 parent: 30 - - uid: 9359 + - uid: 9660 components: - type: Transform - pos: -15.5,-35.5 + pos: 2.5,-46.5 parent: 30 - - uid: 9576 + - uid: 9674 components: - type: Transform - pos: -19.5,-35.5 + pos: 4.5,-46.5 parent: 30 - - uid: 9609 + - uid: 9682 components: - type: Transform - pos: -17.5,-35.5 + pos: -2.5,-46.5 parent: 30 - uid: 9803 components: @@ -120595,26 +119127,6 @@ entities: - type: Transform pos: -26.5,41.5 parent: 30 - - uid: 10002 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 30 - - uid: 10003 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 30 - - uid: 10004 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 30 - - uid: 10005 - components: - - type: Transform - pos: -13.5,-44.5 - parent: 30 - uid: 10246 components: - type: Transform @@ -120650,11 +119162,6 @@ entities: - type: Transform pos: 4.5,-27.5 parent: 30 - - uid: 12699 - components: - - type: Transform - pos: 14.5,13.5 - parent: 30 - uid: 12847 components: - type: Transform @@ -120974,6 +119481,11 @@ entities: - type: Transform pos: -30.5,51.5 parent: 30 + - uid: 3361 + components: + - type: Transform + pos: -58.5,-63.5 + parent: 30 - uid: 4956 components: - type: Transform @@ -121164,6 +119676,12 @@ entities: - type: Transform pos: -8.5,-20.5 parent: 30 + - uid: 10231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-65.5 + parent: 30 - uid: 11353 components: - type: Transform @@ -121194,11 +119712,36 @@ entities: - type: Transform pos: 2.5,-10.5 parent: 30 + - uid: 12635 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 30 + - uid: 12818 + components: + - type: Transform + pos: -62.5,-64.5 + parent: 30 + - uid: 12830 + components: + - type: Transform + pos: -58.5,-65.5 + parent: 30 - uid: 13583 components: - type: Transform pos: 40.5,40.5 parent: 30 + - uid: 14447 + components: + - type: Transform + pos: -65.5,-64.5 + parent: 30 + - uid: 14505 + components: + - type: Transform + pos: -65.5,-63.5 + parent: 30 - uid: 15238 components: - type: Transform @@ -121309,30 +119852,10 @@ entities: - type: Transform pos: -53.5,-53.5 parent: 30 - - uid: 19417 - components: - - type: Transform - pos: -57.5,-67.5 - parent: 30 - - uid: 19418 - components: - - type: Transform - pos: -57.5,-65.5 - parent: 30 - - uid: 19419 - components: - - type: Transform - pos: -57.5,-63.5 - parent: 30 - - uid: 19420 - components: - - type: Transform - pos: -60.5,-67.5 - parent: 30 - - uid: 19421 + - uid: 18356 components: - type: Transform - pos: -60.5,-65.5 + pos: -69.5,-63.5 parent: 30 - uid: 19495 components: @@ -121394,16 +119917,6 @@ entities: - type: Transform pos: -27.5,15.5 parent: 30 - - uid: 22304 - components: - - type: Transform - pos: -54.5,-63.5 - parent: 30 - - uid: 22305 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 30 - proto: TargetClown entities: - uid: 1228 @@ -121414,191 +119927,156 @@ entities: parent: 30 - proto: TegCenter entities: - - uid: 16040 + - uid: 9817 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-50.5 + pos: -0.5,-50.5 parent: 30 - proto: TegCirculator entities: - - uid: 15013 + - uid: 11286 components: - type: Transform - pos: -6.5,-50.5 + pos: 0.5,-50.5 parent: 30 - type: PointLight color: '#FF3300FF' - - uid: 16038 + - uid: 11292 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-50.5 + pos: -1.5,-50.5 parent: 30 - type: PointLight color: '#FF3300FF' -- proto: TelecomServer +- proto: TelecomServerFilledCargo entities: - - uid: 22621 + - uid: 10551 components: - type: Transform - pos: -37.5,-58.5 + pos: -10.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22622 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22812 +- proto: TelecomServerFilledCommand + entities: + - uid: 9972 components: - type: Transform - pos: -35.5,-61.5 + pos: -10.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22813 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22814 +- proto: TelecomServerFilledCommon + entities: + - uid: 9389 components: - type: Transform - pos: -37.5,-60.5 + pos: -12.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22815 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22816 +- proto: TelecomServerFilledEngineering + entities: + - uid: 10550 components: - type: Transform - pos: -40.5,-61.5 + pos: -8.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22817 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22822 +- proto: TelecomServerFilledMedical + entities: + - uid: 19181 components: - type: Transform - pos: -37.5,-57.5 + pos: -6.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22823 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22825 +- proto: TelecomServerFilledScience + entities: + - uid: 19185 components: - type: Transform - pos: -37.5,-63.5 + pos: -8.5,-28.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22826 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22827 +- proto: TelecomServerFilledSecurity + entities: + - uid: 11161 components: - type: Transform - pos: -37.5,-62.5 + pos: -6.5,-30.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22828 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 22829 +- proto: TelecomServerFilledService + entities: + - uid: 19179 components: - type: Transform - pos: -35.5,-59.5 + pos: -12.5,-28.5 + parent: 30 +- proto: TeslaCoil + entities: + - uid: 5732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-55.5 + parent: 30 + - uid: 6095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-56.5 + parent: 30 + - uid: 6271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-54.5 + parent: 30 + - uid: 6678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-56.5 + parent: 30 + - uid: 6679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-55.5 + parent: 30 + - uid: 13902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-54.5 + parent: 30 +- proto: TeslaGenerator + entities: + - uid: 19411 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 30 +- proto: TeslaGroundingRod + entities: + - uid: 10004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-54.5 + parent: 30 + - uid: 10140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-54.5 + parent: 30 + - uid: 11110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-54.5 + parent: 30 + - uid: 13952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-54.5 parent: 30 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 22830 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - proto: TintedWindow entities: - uid: 289 @@ -121646,16 +120124,6 @@ entities: - type: Transform pos: -67.5,-41.5 parent: 30 - - uid: 17707 - components: - - type: Transform - pos: -69.5,-60.5 - parent: 30 - - uid: 17709 - components: - - type: Transform - pos: -69.5,-59.5 - parent: 30 - uid: 18697 components: - type: Transform @@ -121752,13 +120220,6 @@ entities: - type: Transform pos: -21.467775,23.567343 parent: 30 -- proto: ToolboxElectrical - entities: - - uid: 11308 - components: - - type: Transform - pos: -11.510529,-34.394146 - parent: 30 - proto: ToolboxElectricalFilled entities: - uid: 1628 @@ -121771,10 +120232,15 @@ entities: - type: Transform pos: -32.56638,31.48925 parent: 30 - - uid: 11313 + - uid: 19180 components: - type: Transform - pos: -24.449165,-39.212135 + pos: 3.3810787,-41.40624 + parent: 30 + - uid: 19374 + components: + - type: Transform + pos: -24.790539,-50.361137 parent: 30 - uid: 20299 components: @@ -121813,6 +120279,11 @@ entities: - type: Transform pos: -6.509716,45.635574 parent: 30 + - uid: 10003 + components: + - type: Transform + pos: -11.488707,-33.250866 + parent: 30 - uid: 11256 components: - type: Transform @@ -121847,10 +120318,10 @@ entities: - type: Transform pos: -24.487177,31.504875 parent: 30 - - uid: 11309 + - uid: 11271 components: - type: Transform - pos: -11.510529,-34.706646 + pos: -8.522053,-43.420155 parent: 30 - uid: 12823 components: @@ -121862,21 +120333,16 @@ entities: - type: Transform pos: -57.478386,27.672016 parent: 30 - - uid: 18793 + - uid: 18771 components: - type: Transform - pos: -67.52385,-62.454746 + pos: -53.3416,-62.69514 parent: 30 - uid: 20300 components: - type: Transform pos: 6.5231524,64.57765 parent: 30 - - uid: 22842 - components: - - type: Transform - pos: -29.484652,-57.340546 - parent: 30 - proto: ToyAi entities: - uid: 20307 @@ -121963,10 +120429,10 @@ entities: - type: Transform pos: -39.368607,18.074919 parent: 30 - - uid: 11269 + - uid: 13976 components: - type: Transform - pos: -17.424835,-30.14346 + pos: -10.716881,-47.33087 parent: 30 - uid: 22448 components: @@ -122102,63 +120568,49 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 15987 + - uid: 18373 components: - type: Transform - pos: 50.5,23.5 + pos: 51.5,23.5 parent: 30 - type: DeviceLinkSource linkedPorts: - 14525: - - Middle: Off - - Right: Reverse + 12943: - Left: Forward - 14524: - - Middle: Off - Right: Reverse - - Left: Forward - 14523: - Middle: Off - - Right: Reverse + 12944: - Left: Forward - 14522: - - Middle: Off - Right: Reverse - - Left: Forward - - uid: 15988 - components: - - type: Transform - pos: 51.5,23.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14526: - Middle: Off - - Right: Reverse + 12961: - Left: Forward - 14527: - - Middle: Off - Right: Reverse - - Left: Forward - 14528: - Middle: Off - - Right: Reverse + 12973: - Left: Forward - 14529: + - Right: Reverse - Middle: Off + 18374: + - Left: Forward - Right: Reverse + - Middle: Off + 12974: + - Left: Reverse + - Right: Forward + - Middle: Off + 12983: - Left: Forward - - uid: 15989 - components: - - type: Transform - pos: 53.5,23.5 - parent: 30 - - type: DeviceLinkSource - linkedPorts: - 14530: + - Right: Reverse - Middle: Off + 13034: + - Left: Forward - Right: Reverse + - Middle: Off + 13048: - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 7826 @@ -122171,36 +120623,6 @@ entities: - type: Transform pos: -38.5,-18.5 parent: 30 - - uid: 10191 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 30 - - uid: 10192 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 30 - - uid: 10195 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 30 - - uid: 10211 - components: - - type: Transform - pos: -24.5,-69.5 - parent: 30 - - uid: 10212 - components: - - type: Transform - pos: -23.5,-69.5 - parent: 30 - - uid: 10214 - components: - - type: Transform - pos: -25.5,-69.5 - parent: 30 - uid: 12797 components: - type: Transform @@ -122473,12 +120895,10 @@ entities: - type: Transform pos: -52.5,65.5 parent: 30 - - uid: 12811 + - uid: 17709 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 20.5,14.5 + pos: 20.5,16.5 parent: 30 - uid: 21318 components: @@ -122496,10 +120916,10 @@ entities: parent: 30 - proto: VendingMachineCuraDrobe entities: - - uid: 18842 + - uid: 18357 components: - type: Transform - pos: -59.5,-68.5 + pos: -68.5,-63.5 parent: 30 - proto: VendingMachineDetDrobe entities: @@ -122533,10 +120953,10 @@ entities: parent: 30 - proto: VendingMachineEngiDrobe entities: - - uid: 9432 + - uid: 19406 components: - type: Transform - pos: -25.5,-39.5 + pos: -21.5,-46.5 parent: 30 - proto: VendingMachineEngivend entities: @@ -122623,10 +121043,10 @@ entities: parent: 30 - proto: VendingMachineNutri entities: - - uid: 414 + - uid: 16135 components: - type: Transform - pos: -25.5,9.5 + pos: -28.5,9.5 parent: 30 - proto: VendingMachineRoboDrobe entities: @@ -122653,10 +121073,10 @@ entities: parent: 30 - proto: VendingMachineSciDrobe entities: - - uid: 12842 + - uid: 18761 components: - type: Transform - pos: 17.5,12.5 + pos: 16.5,10.5 parent: 30 - proto: VendingMachineSec entities: @@ -122674,10 +121094,10 @@ entities: parent: 30 - proto: VendingMachineSeeds entities: - - uid: 413 + - uid: 16136 components: - type: Transform - pos: -25.5,10.5 + pos: -28.5,13.5 parent: 30 - proto: VendingMachineSeedsUnlocked entities: @@ -122745,6 +121165,11 @@ entities: - type: Transform pos: 7.5,-27.5 parent: 30 + - uid: 13970 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 30 - proto: VendingMachineTheater entities: - uid: 654 @@ -123013,6 +121438,51 @@ entities: - type: Transform pos: -4.5,24.5 parent: 30 + - uid: 403 + components: + - type: Transform + pos: -51.5,-66.5 + parent: 30 + - uid: 413 + components: + - type: Transform + pos: -51.5,-62.5 + parent: 30 + - uid: 414 + components: + - type: Transform + pos: -51.5,-63.5 + parent: 30 + - uid: 415 + components: + - type: Transform + pos: -56.5,-66.5 + parent: 30 + - uid: 416 + components: + - type: Transform + pos: -55.5,-66.5 + parent: 30 + - uid: 434 + components: + - type: Transform + pos: -57.5,-66.5 + parent: 30 + - uid: 435 + components: + - type: Transform + pos: -54.5,-66.5 + parent: 30 + - uid: 490 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 30 + - uid: 494 + components: + - type: Transform + pos: -53.5,-66.5 + parent: 30 - uid: 570 components: - type: Transform @@ -123118,11 +121588,6 @@ entities: - type: Transform pos: -50.5,11.5 parent: 30 - - uid: 868 - components: - - type: Transform - pos: -59.5,-10.5 - parent: 30 - uid: 882 components: - type: Transform @@ -123168,6 +121633,11 @@ entities: - type: Transform pos: -45.5,9.5 parent: 30 + - uid: 961 + components: + - type: Transform + pos: -51.5,-60.5 + parent: 30 - uid: 992 components: - type: Transform @@ -123223,11 +121693,6 @@ entities: - type: Transform pos: -61.5,-10.5 parent: 30 - - uid: 1083 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 30 - uid: 1140 components: - type: Transform @@ -123424,12 +121889,6 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,34.5 parent: 30 - - uid: 1475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 30 - uid: 1477 components: - type: Transform @@ -124068,6 +122527,11 @@ entities: - type: Transform pos: -42.5,58.5 parent: 30 + - uid: 1952 + components: + - type: Transform + pos: -51.5,-65.5 + parent: 30 - uid: 2034 components: - type: Transform @@ -124113,6 +122577,11 @@ entities: - type: Transform pos: -42.5,61.5 parent: 30 + - uid: 2088 + components: + - type: Transform + pos: -51.5,-64.5 + parent: 30 - uid: 2102 components: - type: Transform @@ -124463,6 +122932,12 @@ entities: - type: Transform pos: -51.5,6.5 parent: 30 + - uid: 3153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 30 - uid: 3200 components: - type: Transform @@ -125354,11 +123829,23 @@ entities: - type: Transform pos: -13.5,45.5 parent: 30 + - uid: 6272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-57.5 + parent: 30 - uid: 6273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-57.5 + rot: 3.141592653589793 rad + pos: -25.5,-57.5 + parent: 30 + - uid: 6274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-58.5 parent: 30 - uid: 6294 components: @@ -125540,6 +124027,18 @@ entities: - type: Transform pos: 15.5,47.5 parent: 30 + - uid: 6466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-60.5 + parent: 30 + - uid: 6468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-54.5 + parent: 30 - uid: 6486 components: - type: Transform @@ -125680,17 +124179,29 @@ entities: - type: Transform pos: 28.5,44.5 parent: 30 + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 30 + - uid: 6601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-54.5 + parent: 30 - uid: 6602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-60.5 + rot: -1.5707963267948966 rad + pos: -21.5,-57.5 parent: 30 - uid: 6603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-56.5 + rot: -1.5707963267948966 rad + pos: -24.5,-56.5 parent: 30 - uid: 6607 components: @@ -125727,6 +124238,12 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 30 + - uid: 6639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-57.5 + parent: 30 - uid: 6647 components: - type: Transform @@ -125812,6 +124329,36 @@ entities: - type: Transform pos: -10.5,-11.5 parent: 30 + - uid: 6670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-61.5 + parent: 30 + - uid: 6684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-56.5 + parent: 30 + - uid: 6699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-54.5 + parent: 30 + - uid: 6711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-57.5 + parent: 30 + - uid: 6714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 30 - uid: 6735 components: - type: Transform @@ -125877,6 +124424,12 @@ entities: - type: Transform pos: -43.5,-22.5 parent: 30 + - uid: 7094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-62.5 + parent: 30 - uid: 7127 components: - type: Transform @@ -125887,18 +124440,6 @@ entities: - type: Transform pos: -3.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: 7242 components: - type: Transform @@ -125929,6 +124470,42 @@ entities: - type: Transform pos: -31.5,-22.5 parent: 30 + - uid: 7444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-76.5 + parent: 30 + - uid: 7667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-76.5 + parent: 30 + - uid: 7669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-76.5 + parent: 30 + - uid: 7670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-67.5 + parent: 30 + - uid: 7671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-68.5 + parent: 30 + - uid: 7672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-69.5 + parent: 30 - uid: 7713 components: - type: Transform @@ -125982,6 +124559,18 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 30 + - uid: 7770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-71.5 + parent: 30 + - uid: 7771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-72.5 + parent: 30 - uid: 7772 components: - type: Transform @@ -125993,21 +124582,104 @@ entities: - type: Transform pos: -35.5,-27.5 parent: 30 + - uid: 7914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-73.5 + parent: 30 - uid: 7959 components: - type: Transform pos: -34.5,-14.5 parent: 30 + - uid: 7965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-74.5 + parent: 30 - uid: 7969 components: - type: Transform pos: -35.5,-14.5 parent: 30 + - uid: 8004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-75.5 + parent: 30 + - uid: 8005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-76.5 + parent: 30 - uid: 8025 components: - type: Transform pos: -35.5,-26.5 parent: 30 + - uid: 8137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-76.5 + parent: 30 + - uid: 8225 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 30 + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-64.5 + parent: 30 + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-63.5 + parent: 30 + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-65.5 + parent: 30 + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 30 + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-76.5 + parent: 30 + - uid: 8258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-76.5 + parent: 30 + - uid: 8260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-76.5 + parent: 30 + - uid: 8263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-76.5 + parent: 30 - uid: 8272 components: - type: Transform @@ -126626,33 +125298,33 @@ entities: - type: Transform pos: 25.5,-35.5 parent: 30 - - uid: 8816 + - uid: 8794 components: - type: Transform - pos: -42.5,-22.5 + rot: 3.141592653589793 rad + pos: -26.5,-66.5 parent: 30 - - uid: 8817 + - uid: 8795 components: - type: Transform - pos: -41.5,-22.5 + rot: 3.141592653589793 rad + pos: -23.5,-76.5 parent: 30 - - uid: 8823 + - uid: 8799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-61.5 + rot: 3.141592653589793 rad + pos: -26.5,-59.5 parent: 30 - - uid: 8824 + - uid: 8816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-61.5 + pos: -42.5,-22.5 parent: 30 - - uid: 8825 + - uid: 8817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-61.5 + pos: -41.5,-22.5 parent: 30 - uid: 8826 components: @@ -126716,6 +125388,30 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 30 + - uid: 9102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-57.5 + parent: 30 + - uid: 9103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-58.5 + parent: 30 + - uid: 9104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 30 + - uid: 9129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-58.5 + parent: 30 - uid: 9132 components: - type: Transform @@ -126870,6 +125566,18 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-26.5 parent: 30 + - uid: 9234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-53.5 + parent: 30 + - uid: 9244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 30 - uid: 9255 components: - type: Transform @@ -126935,10 +125643,17 @@ entities: - type: Transform pos: -4.5,-32.5 parent: 30 - - uid: 9294 + - uid: 9288 components: - type: Transform - pos: 4.5,-43.5 + rot: 1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 30 + - uid: 9289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-58.5 parent: 30 - uid: 9296 components: @@ -126950,11 +125665,6 @@ entities: - type: Transform pos: 4.5,-39.5 parent: 30 - - uid: 9320 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 30 - uid: 9325 components: - type: Transform @@ -127010,6 +125720,12 @@ entities: - type: Transform pos: -20.5,-32.5 parent: 30 + - uid: 9339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 30 - uid: 9340 components: - type: Transform @@ -127085,30 +125801,17 @@ entities: - type: Transform pos: -16.5,-33.5 parent: 30 - - uid: 9364 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 30 - - uid: 9366 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 30 - - uid: 9371 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 30 - - uid: 9372 + - uid: 9367 components: - type: Transform - pos: -21.5,-45.5 + rot: 1.5707963267948966 rad + pos: 4.5,-54.5 parent: 30 - - uid: 9373 + - uid: 9368 components: - type: Transform - pos: -22.5,-45.5 + rot: 1.5707963267948966 rad + pos: -1.5,-54.5 parent: 30 - uid: 9374 components: @@ -127170,11 +125873,6 @@ entities: - type: Transform pos: -26.5,-45.5 parent: 30 - - uid: 9387 - components: - - type: Transform - pos: -25.5,-45.5 - parent: 30 - uid: 9388 components: - type: Transform @@ -127210,45 +125908,17 @@ entities: - type: Transform pos: -24.5,-51.5 parent: 30 - - uid: 9396 - components: - - type: Transform - pos: -23.5,-51.5 - parent: 30 - - uid: 9397 - components: - - type: Transform - pos: -22.5,-51.5 - parent: 30 - - uid: 9398 - components: - - type: Transform - pos: -21.5,-51.5 - parent: 30 - - uid: 9399 - components: - - type: Transform - pos: -21.5,-50.5 - parent: 30 - - uid: 9400 - components: - - type: Transform - pos: -21.5,-49.5 - parent: 30 - - uid: 9401 - components: - - type: Transform - pos: -21.5,-48.5 - parent: 30 - uid: 9402 components: - type: Transform - pos: -21.5,-47.5 + rot: 3.141592653589793 rad + pos: -12.5,-57.5 parent: 30 - - uid: 9403 + - uid: 9413 components: - type: Transform - pos: -21.5,-46.5 + rot: -1.5707963267948966 rad + pos: -10.5,-33.5 parent: 30 - uid: 9423 components: @@ -127320,11 +125990,6 @@ entities: - type: Transform pos: -17.5,-27.5 parent: 30 - - uid: 9469 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 30 - uid: 9470 components: - type: Transform @@ -127345,394 +126010,421 @@ entities: - type: Transform pos: -18.5,-31.5 parent: 30 - - uid: 9582 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 30 - - uid: 9583 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 30 - - uid: 9584 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 30 - - uid: 9599 + - uid: 9487 components: - type: Transform - pos: -17.5,-33.5 + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 parent: 30 - - uid: 9600 + - uid: 9507 components: - type: Transform - pos: -18.5,-33.5 + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 parent: 30 - - uid: 9663 + - uid: 9508 components: - type: Transform - pos: -10.5,-5.5 + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 parent: 30 - - uid: 9674 + - uid: 9509 components: - type: Transform - pos: 2.5,-47.5 + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 parent: 30 - - uid: 9680 + - uid: 9510 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-56.5 + pos: -1.5,-57.5 parent: 30 - - uid: 9681 + - uid: 9511 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-57.5 + pos: -0.5,-57.5 parent: 30 - - uid: 9691 + - uid: 9513 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-59.5 + pos: 0.5,-57.5 parent: 30 - - uid: 9714 + - uid: 9514 components: - type: Transform - pos: -32.5,-14.5 + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 parent: 30 - - uid: 9715 + - uid: 9515 components: - type: Transform - pos: -39.5,-22.5 + rot: 3.141592653589793 rad + pos: 5.5,-43.5 parent: 30 - - uid: 9855 + - uid: 9516 components: - type: Transform - pos: -31.5,-14.5 + rot: 3.141592653589793 rad + pos: -10.5,-76.5 parent: 30 - - uid: 9903 + - uid: 9517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-55.5 + rot: 3.141592653589793 rad + pos: -11.5,-76.5 parent: 30 - - uid: 9904 + - uid: 9528 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-55.5 + pos: -9.5,-53.5 parent: 30 - - uid: 9906 + - uid: 9582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 + pos: -15.5,-33.5 parent: 30 - - uid: 9907 + - uid: 9599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + pos: -17.5,-33.5 parent: 30 - - uid: 9908 + - uid: 9600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-51.5 + pos: -18.5,-33.5 parent: 30 - - uid: 9923 + - uid: 9601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + rot: 3.141592653589793 rad + pos: -14.5,-76.5 parent: 30 - - uid: 9924 + - uid: 9602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-46.5 + rot: 3.141592653589793 rad + pos: -13.5,-76.5 parent: 30 - - uid: 9925 + - uid: 9603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-45.5 + rot: 3.141592653589793 rad + pos: -12.5,-76.5 parent: 30 - - uid: 9927 + - uid: 9604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-76.5 parent: 30 - - uid: 9959 + - uid: 9605 components: - type: Transform - pos: -0.5,-44.5 + rot: 3.141592653589793 rad + pos: -8.5,-61.5 parent: 30 - - uid: 9961 + - uid: 9606 components: - type: Transform - pos: -0.5,-42.5 + pos: -7.5,-71.5 parent: 30 - - uid: 9962 + - uid: 9607 components: - type: Transform - pos: -1.5,-42.5 + rot: 3.141592653589793 rad + pos: -9.5,-76.5 parent: 30 - - uid: 9963 + - uid: 9609 components: - type: Transform - pos: -2.5,-42.5 + rot: 3.141592653589793 rad + pos: -8.5,-74.5 parent: 30 - - uid: 9964 + - uid: 9641 components: - type: Transform - pos: -3.5,-42.5 + rot: 1.5707963267948966 rad + pos: 5.5,-56.5 parent: 30 - - uid: 9966 + - uid: 9642 components: - type: Transform - pos: -5.5,-42.5 + rot: 1.5707963267948966 rad + pos: 0.5,-58.5 parent: 30 - - uid: 9970 + - uid: 9643 components: - type: Transform - pos: -9.5,-42.5 + rot: 1.5707963267948966 rad + pos: 4.5,-58.5 parent: 30 - - uid: 9972 + - uid: 9663 components: - type: Transform - pos: -11.5,-42.5 + pos: -10.5,-5.5 parent: 30 - - uid: 9973 + - uid: 9692 components: - type: Transform - pos: -12.5,-42.5 + rot: 3.141592653589793 rad + pos: 5.5,-45.5 parent: 30 - - uid: 9974 + - uid: 9693 components: - type: Transform - pos: -13.5,-42.5 + rot: 3.141592653589793 rad + pos: 5.5,-46.5 parent: 30 - - uid: 9975 + - uid: 9714 components: - type: Transform - pos: -14.5,-42.5 + pos: -32.5,-14.5 parent: 30 - - uid: 9977 + - uid: 9715 components: - type: Transform - pos: -14.5,-44.5 + pos: -39.5,-22.5 parent: 30 - - uid: 9978 + - uid: 9798 components: - type: Transform - pos: -14.5,-45.5 + rot: 3.141592653589793 rad + pos: -53.5,34.5 parent: 30 - - uid: 9985 + - uid: 9822 components: - type: Transform - pos: -14.5,-52.5 + rot: 3.141592653589793 rad + pos: 5.5,-42.5 parent: 30 - - uid: 9986 + - uid: 9855 components: - type: Transform - pos: -14.5,-53.5 + pos: -31.5,-14.5 parent: 30 - - uid: 9987 + - uid: 9863 components: - type: Transform - pos: -14.5,-54.5 + rot: -1.5707963267948966 rad + pos: -6.5,-53.5 parent: 30 - - uid: 9988 + - uid: 9877 components: - type: Transform - pos: -14.5,-55.5 + rot: -1.5707963267948966 rad + pos: -12.5,-53.5 parent: 30 - - uid: 10019 + - uid: 9878 components: - type: Transform - pos: -14.5,-56.5 + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 parent: 30 - - uid: 10020 + - uid: 9881 components: - type: Transform - pos: -13.5,-56.5 + pos: -27.5,-63.5 parent: 30 - - uid: 10021 + - uid: 9991 components: - type: Transform - pos: -0.5,-56.5 + rot: 3.141592653589793 rad + pos: -7.5,-57.5 parent: 30 - - uid: 10022 + - uid: 10002 components: - type: Transform - pos: -1.5,-56.5 + rot: 3.141592653589793 rad + pos: -8.5,-57.5 parent: 30 - - uid: 10042 + - uid: 10012 components: - type: Transform - pos: -13.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-70.5 parent: 30 - - uid: 10043 + - uid: 10013 components: - type: Transform - pos: -12.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-73.5 parent: 30 - - uid: 10044 + - uid: 10014 components: - type: Transform - pos: -11.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-69.5 parent: 30 - - uid: 10045 + - uid: 10050 components: - type: Transform - pos: -11.5,-61.5 + rot: -1.5707963267948966 rad + pos: -13.5,-56.5 parent: 30 - - uid: 10049 + - uid: 10051 components: - type: Transform - pos: -1.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-57.5 parent: 30 - - uid: 10050 + - uid: 10052 components: - type: Transform - pos: -2.5,-60.5 + rot: -1.5707963267948966 rad + pos: -13.5,-54.5 parent: 30 - - uid: 10051 + - uid: 10092 components: - type: Transform - pos: -3.5,-60.5 + rot: 3.141592653589793 rad + pos: -8.5,-62.5 parent: 30 - - uid: 10052 + - uid: 10096 components: - type: Transform - pos: -3.5,-61.5 + rot: -1.5707963267948966 rad + pos: -8.5,-53.5 parent: 30 - - uid: 10053 + - uid: 10097 components: - type: Transform - pos: -4.5,-61.5 + rot: -1.5707963267948966 rad + pos: -7.5,-53.5 parent: 30 - - uid: 10054 + - uid: 10112 components: - type: Transform - pos: -5.5,-61.5 + pos: -13.5,-77.5 parent: 30 - - uid: 10058 + - uid: 10113 components: - type: Transform - pos: -9.5,-61.5 + rot: 3.141592653589793 rad + pos: -8.5,-60.5 parent: 30 - - uid: 10059 + - uid: 10114 components: - type: Transform - pos: -10.5,-61.5 + pos: -27.5,-71.5 parent: 30 - - uid: 10112 + - uid: 10115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-67.5 parent: 30 - - uid: 10113 + - uid: 10116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-45.5 + rot: 3.141592653589793 rad + pos: -8.5,-65.5 parent: 30 - uid: 10117 components: - type: Transform - pos: -19.5,-52.5 + rot: 3.141592653589793 rad + pos: -8.5,-71.5 parent: 30 - uid: 10118 components: - type: Transform - pos: -19.5,-51.5 + rot: 3.141592653589793 rad + pos: -8.5,-63.5 parent: 30 - uid: 10119 components: - type: Transform - pos: -19.5,-50.5 + rot: 3.141592653589793 rad + pos: -8.5,-66.5 parent: 30 - - uid: 10120 + - uid: 10121 components: - type: Transform - pos: -19.5,-49.5 + rot: 3.141592653589793 rad + pos: -8.5,-59.5 parent: 30 - - uid: 10121 + - uid: 10122 components: - type: Transform - pos: -19.5,-48.5 + rot: 3.141592653589793 rad + pos: -8.5,-58.5 parent: 30 - - uid: 10122 + - uid: 10134 components: - type: Transform - pos: -19.5,-47.5 + rot: 1.5707963267948966 rad + pos: 7.5,-43.5 parent: 30 - - uid: 10123 + - uid: 10208 components: - type: Transform - pos: -19.5,-46.5 + pos: -60.5,-10.5 parent: 30 - - uid: 10124 + - uid: 10223 components: - type: Transform - pos: -15.5,-46.5 + pos: -61.5,-7.5 parent: 30 - - uid: 10125 + - uid: 10226 components: - type: Transform - pos: -15.5,-47.5 + pos: -58.5,-10.5 parent: 30 - - uid: 10126 + - uid: 10558 components: - type: Transform - pos: -15.5,-48.5 + rot: 3.141592653589793 rad + pos: 7.5,-44.5 parent: 30 - - uid: 10127 + - uid: 10640 components: - type: Transform - pos: -15.5,-49.5 + rot: 3.141592653589793 rad + pos: 6.5,-43.5 parent: 30 - - uid: 10128 + - uid: 10648 components: - type: Transform - pos: -15.5,-50.5 + pos: -15.5,-38.5 parent: 30 - - uid: 10129 + - uid: 10651 components: - type: Transform - pos: -15.5,-51.5 + rot: 3.141592653589793 rad + pos: -8.5,-75.5 parent: 30 - - uid: 10130 + - uid: 10676 components: - type: Transform - pos: -15.5,-52.5 + rot: 3.141592653589793 rad + pos: -9.5,-57.5 parent: 30 - - uid: 10208 + - uid: 10678 components: - type: Transform - pos: -60.5,-10.5 + rot: 3.141592653589793 rad + pos: -10.5,-57.5 parent: 30 - - uid: 10223 + - uid: 10726 components: - type: Transform - pos: -61.5,-7.5 + rot: -1.5707963267948966 rad + pos: -6.5,-55.5 parent: 30 - - uid: 10226 + - uid: 10727 components: - type: Transform - pos: -58.5,-10.5 + rot: -1.5707963267948966 rad + pos: -6.5,-54.5 parent: 30 - - uid: 10268 + - uid: 10768 components: - type: Transform - pos: -32.5,-64.5 + pos: -19.5,-38.5 parent: 30 - uid: 10944 components: @@ -127754,16 +126446,67 @@ entities: - type: Transform pos: 25.5,-21.5 parent: 30 - - uid: 11164 + - uid: 11019 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 30 + - uid: 11039 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 30 + - uid: 11057 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 30 + - uid: 11067 components: - type: Transform - pos: -33.5,-64.5 + rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 30 + - uid: 11107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-56.5 + parent: 30 + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-54.5 + parent: 30 + - uid: 11126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-54.5 + parent: 30 + - uid: 11127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-53.5 + parent: 30 + - uid: 11144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-51.5 parent: 30 - uid: 11195 components: - type: Transform pos: 29.5,-12.5 parent: 30 + - uid: 11260 + components: + - type: Transform + pos: -71.5,-64.5 + parent: 30 - uid: 11371 components: - type: Transform @@ -127794,10 +126537,20 @@ entities: - type: Transform pos: -29.5,-48.5 parent: 30 - - uid: 11588 + - uid: 11460 + components: + - type: Transform + pos: -57.5,-67.5 + parent: 30 + - uid: 11465 + components: + - type: Transform + pos: -58.5,-67.5 + parent: 30 + - uid: 11585 components: - type: Transform - pos: -34.5,-64.5 + pos: -61.5,-67.5 parent: 30 - uid: 11590 components: @@ -127980,11 +126733,6 @@ entities: - type: Transform pos: 23.5,-12.5 parent: 30 - - uid: 12213 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 30 - uid: 12244 components: - type: Transform @@ -128040,6 +126788,11 @@ entities: - type: Transform pos: 12.5,13.5 parent: 30 + - uid: 12629 + components: + - type: Transform + pos: -60.5,-67.5 + parent: 30 - uid: 12630 components: - type: Transform @@ -128065,41 +126818,6 @@ entities: - type: Transform pos: 17.5,9.5 parent: 30 - - uid: 12635 - components: - - type: Transform - pos: 16.5,14.5 - parent: 30 - - uid: 12636 - components: - - type: Transform - pos: 16.5,16.5 - parent: 30 - - uid: 12637 - components: - - type: Transform - pos: 16.5,13.5 - parent: 30 - - uid: 12638 - components: - - type: Transform - pos: 17.5,13.5 - parent: 30 - - uid: 12639 - components: - - type: Transform - pos: 18.5,13.5 - parent: 30 - - uid: 12640 - components: - - type: Transform - pos: 19.5,13.5 - parent: 30 - - uid: 12641 - components: - - type: Transform - pos: 19.5,14.5 - parent: 30 - uid: 12642 components: - type: Transform @@ -128140,6 +126858,12 @@ entities: - type: Transform pos: 24.5,13.5 parent: 30 + - uid: 12663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-52.5 + parent: 30 - uid: 12670 components: - type: Transform @@ -129056,6 +127780,12 @@ entities: - type: Transform pos: 48.5,18.5 parent: 30 + - uid: 13643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-57.5 + parent: 30 - uid: 13647 components: - type: Transform @@ -129131,11 +127861,50 @@ entities: - type: Transform pos: 10.5,58.5 parent: 30 + - uid: 13901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-53.5 + parent: 30 + - uid: 14334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 30 + - uid: 14506 + components: + - type: Transform + pos: -68.5,-64.5 + parent: 30 + - uid: 14507 + components: + - type: Transform + pos: -69.5,-64.5 + parent: 30 + - uid: 14508 + components: + - type: Transform + pos: -70.5,-64.5 + parent: 30 + - uid: 14538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-51.5 + parent: 30 - uid: 14539 components: - type: Transform pos: 32.5,-12.5 parent: 30 + - uid: 14590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-51.5 + parent: 30 - uid: 14646 components: - type: Transform @@ -129339,6 +128108,12 @@ entities: - type: Transform pos: 46.5,15.5 parent: 30 + - uid: 16040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 30 - uid: 16104 components: - type: Transform @@ -129483,6 +128258,11 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,37.5 parent: 30 + - uid: 16777 + components: + - type: Transform + pos: -67.5,-66.5 + parent: 30 - uid: 16784 components: - type: Transform @@ -129543,6 +128323,16 @@ entities: - type: Transform pos: -61.5,41.5 parent: 30 + - uid: 16995 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 30 + - uid: 16996 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 30 - uid: 17016 components: - type: Transform @@ -129768,16 +128558,6 @@ entities: - type: Transform pos: -84.5,-43.5 parent: 30 - - uid: 17526 - components: - - type: Transform - pos: -85.5,-44.5 - parent: 30 - - uid: 17527 - components: - - type: Transform - pos: -85.5,-46.5 - parent: 30 - uid: 17528 components: - type: Transform @@ -129936,23 +128716,21 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-59.5 parent: 30 - - uid: 17714 + - uid: 17728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-60.5 + rot: 3.141592653589793 rad + pos: 15.5,13.5 parent: 30 - - uid: 17715 + - uid: 17775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-60.5 + pos: -68.5,-66.5 parent: 30 - - uid: 17717 + - uid: 17776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-60.5 + pos: -68.5,-65.5 parent: 30 - uid: 17804 components: @@ -130042,20 +128820,11 @@ entities: - type: Transform pos: -35.5,-36.5 parent: 30 - - uid: 18079 - components: - - type: Transform - pos: -53.5,-68.5 - parent: 30 - uid: 18081 components: - type: Transform - pos: -54.5,-68.5 - parent: 30 - - uid: 18085 - components: - - type: Transform - pos: -57.5,-69.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 30 - uid: 18103 components: @@ -130167,10 +128936,37 @@ entities: - type: Transform pos: -81.5,-57.5 parent: 30 - - uid: 18184 + - uid: 18186 components: - type: Transform - pos: -60.5,-69.5 + pos: -61.5,-66.5 + parent: 30 + - uid: 18187 + components: + - type: Transform + pos: -66.5,-66.5 + parent: 30 + - uid: 18205 + components: + - type: Transform + pos: -59.5,-67.5 + parent: 30 + - uid: 18765 + components: + - type: Transform + pos: -52.5,-66.5 + parent: 30 + - uid: 18775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-66.5 + parent: 30 + - uid: 18860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-51.5 parent: 30 - uid: 18925 components: @@ -130182,10 +128978,15 @@ entities: - type: Transform pos: -43.5,-24.5 parent: 30 - - uid: 19765 + - uid: 19784 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 30 + - uid: 19794 components: - type: Transform - pos: -36.5,-64.5 + pos: -10.5,-37.5 parent: 30 - uid: 19854 components: @@ -131052,21 +129853,6 @@ entities: - type: Transform pos: -2.5,84.5 parent: 30 - - uid: 20343 - components: - - type: Transform - pos: -37.5,-64.5 - parent: 30 - - uid: 20396 - components: - - type: Transform - pos: -38.5,-64.5 - parent: 30 - - uid: 20397 - components: - - type: Transform - pos: -39.5,-64.5 - parent: 30 - uid: 20442 components: - type: Transform @@ -131242,11 +130028,6 @@ entities: - type: Transform pos: -27.5,-48.5 parent: 30 - - uid: 21469 - components: - - type: Transform - pos: -40.5,-64.5 - parent: 30 - uid: 21592 components: - type: Transform @@ -131257,291 +130038,6 @@ entities: - type: Transform pos: -40.5,-28.5 parent: 30 - - uid: 22438 - components: - - type: Transform - pos: -41.5,-64.5 - parent: 30 - - uid: 22550 - components: - - type: Transform - pos: -42.5,-64.5 - parent: 30 - - uid: 22551 - components: - - type: Transform - pos: -42.5,-63.5 - parent: 30 - - uid: 22552 - components: - - type: Transform - pos: -42.5,-62.5 - parent: 30 - - uid: 22553 - components: - - type: Transform - pos: -42.5,-61.5 - parent: 30 - - uid: 22554 - components: - - type: Transform - pos: -42.5,-60.5 - parent: 30 - - uid: 22555 - components: - - type: Transform - pos: -42.5,-59.5 - parent: 30 - - uid: 22556 - components: - - type: Transform - pos: -42.5,-58.5 - parent: 30 - - uid: 22557 - components: - - type: Transform - pos: -42.5,-57.5 - parent: 30 - - uid: 22558 - components: - - type: Transform - pos: -42.5,-56.5 - parent: 30 - - uid: 22559 - components: - - type: Transform - pos: -41.5,-56.5 - parent: 30 - - uid: 22560 - components: - - type: Transform - pos: -40.5,-56.5 - parent: 30 - - uid: 22561 - components: - - type: Transform - pos: -39.5,-56.5 - parent: 30 - - uid: 22562 - components: - - type: Transform - pos: -38.5,-56.5 - parent: 30 - - uid: 22563 - components: - - type: Transform - pos: -37.5,-56.5 - parent: 30 - - uid: 22564 - components: - - type: Transform - pos: -36.5,-56.5 - parent: 30 - - uid: 22565 - components: - - type: Transform - pos: -35.5,-56.5 - parent: 30 - - uid: 22566 - components: - - type: Transform - pos: -34.5,-56.5 - parent: 30 - - uid: 22567 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 30 - - uid: 22568 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 30 - - uid: 22569 - components: - - type: Transform - pos: -24.5,-59.5 - parent: 30 - - uid: 22570 - components: - - type: Transform - pos: -24.5,-60.5 - parent: 30 - - uid: 22571 - components: - - type: Transform - pos: -24.5,-61.5 - parent: 30 - - uid: 22572 - components: - - type: Transform - pos: -24.5,-62.5 - parent: 30 - - uid: 22573 - components: - - type: Transform - pos: -24.5,-63.5 - parent: 30 - - uid: 22574 - components: - - type: Transform - pos: -24.5,-64.5 - parent: 30 - - uid: 22575 - components: - - type: Transform - pos: -25.5,-64.5 - parent: 30 - - uid: 22576 - components: - - type: Transform - pos: -26.5,-64.5 - parent: 30 - - uid: 22577 - components: - - type: Transform - pos: -27.5,-64.5 - parent: 30 - - uid: 22578 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 30 - - uid: 22579 - components: - - type: Transform - pos: -29.5,-64.5 - parent: 30 - - uid: 22580 - components: - - type: Transform - pos: -30.5,-64.5 - parent: 30 - - uid: 22581 - components: - - type: Transform - pos: -31.5,-64.5 - parent: 30 - - uid: 22582 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 30 - - uid: 22583 - components: - - type: Transform - pos: -30.5,-56.5 - parent: 30 - - uid: 22584 - components: - - type: Transform - pos: -29.5,-56.5 - parent: 30 - - uid: 22585 - components: - - type: Transform - pos: -28.5,-56.5 - parent: 30 - - uid: 22586 - components: - - type: Transform - pos: -27.5,-56.5 - parent: 30 - - uid: 22587 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 30 - - uid: 22588 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 30 - - uid: 22589 - components: - - type: Transform - pos: -24.5,-56.5 - parent: 30 - - uid: 22590 - components: - - type: Transform - pos: -24.5,-57.5 - parent: 30 - - uid: 22591 - components: - - type: Transform - pos: -23.5,-59.5 - parent: 30 - - uid: 22592 - components: - - type: Transform - pos: -23.5,-56.5 - parent: 30 - - uid: 22593 - components: - - type: Transform - pos: -22.5,-56.5 - parent: 30 - - uid: 22594 - components: - - type: Transform - pos: -21.5,-56.5 - parent: 30 - - uid: 22595 - components: - - type: Transform - pos: -21.5,-57.5 - parent: 30 - - uid: 22596 - components: - - type: Transform - pos: -21.5,-59.5 - parent: 30 - - uid: 22597 - components: - - type: Transform - pos: -22.5,-59.5 - parent: 30 - - uid: 22639 - components: - - type: Transform - pos: -28.5,-59.5 - parent: 30 - - uid: 22640 - components: - - type: Transform - pos: -28.5,-60.5 - parent: 30 - - uid: 22641 - components: - - type: Transform - pos: -28.5,-61.5 - parent: 30 - - uid: 22642 - components: - - type: Transform - pos: -28.5,-62.5 - parent: 30 - - uid: 22643 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 30 - - uid: 22644 - components: - - type: Transform - pos: -28.5,-57.5 - parent: 30 - - uid: 22649 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 30 - - uid: 22650 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 30 - proto: WallSolid entities: - uid: 3 @@ -132609,6 +131105,11 @@ entities: - type: Transform pos: -8.5,17.5 parent: 30 + - uid: 801 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 30 - uid: 830 components: - type: Transform @@ -133907,6 +132408,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-5.5 parent: 30 + - uid: 6642 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 30 - uid: 6732 components: - type: Transform @@ -134058,6 +132564,11 @@ entities: - type: Transform pos: -37.5,-19.5 parent: 30 + - uid: 7221 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 30 - uid: 7234 components: - type: Transform @@ -134832,16 +133343,6 @@ entities: - type: Transform pos: 9.5,-30.5 parent: 30 - - uid: 8525 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 30 - - uid: 8526 - components: - - type: Transform - pos: 9.5,-26.5 - parent: 30 - uid: 8534 components: - type: Transform @@ -134903,50 +133404,85 @@ entities: - type: Transform pos: 3.5,-35.5 parent: 30 - - uid: 9288 + - uid: 9299 components: - type: Transform - pos: -4.5,-37.5 + pos: -42.5,-0.5 parent: 30 - - uid: 9289 + - uid: 9482 components: - type: Transform - pos: -0.5,-37.5 + pos: -6.5,-51.5 parent: 30 - - uid: 9299 + - uid: 9483 components: - type: Transform - pos: -42.5,-0.5 + pos: -5.5,-46.5 parent: 30 - - uid: 9324 + - uid: 9485 components: - type: Transform - pos: -10.5,-37.5 + pos: -9.5,-46.5 parent: 30 - - uid: 9348 + - uid: 9486 components: - type: Transform - pos: -14.5,-28.5 + pos: -6.5,-49.5 parent: 30 - - uid: 9367 + - uid: 9488 components: - type: Transform - pos: -20.5,-39.5 + pos: -13.5,-46.5 parent: 30 - - uid: 9370 + - uid: 9489 components: - type: Transform - pos: -20.5,-44.5 + pos: 3.5,-42.5 parent: 30 - - uid: 9450 + - uid: 9496 components: - type: Transform - pos: -14.5,-30.5 + pos: -4.5,-42.5 parent: 30 - - uid: 9451 + - uid: 9497 components: - type: Transform - pos: -14.5,-31.5 + pos: -3.5,-42.5 + parent: 30 + - uid: 9524 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 30 + - uid: 9525 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 30 + - uid: 9526 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 30 + - uid: 9527 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 30 + - uid: 9529 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 30 + - uid: 9530 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 30 + - uid: 9634 + components: + - type: Transform + pos: -57.5,-65.5 parent: 30 - uid: 9684 components: @@ -134983,6 +133519,41 @@ entities: - type: Transform pos: 29.5,43.5 parent: 30 + - uid: 9870 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 30 + - uid: 9871 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 30 + - uid: 9872 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 30 + - uid: 9873 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 30 + - uid: 9874 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 30 + - uid: 9879 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 30 + - uid: 9883 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 30 - uid: 9916 components: - type: Transform @@ -135063,10 +133634,135 @@ entities: - type: Transform pos: -9.5,-15.5 parent: 30 - - uid: 11019 + - uid: 9959 components: - type: Transform - pos: -0.5,-38.5 + pos: -7.5,-46.5 + parent: 30 + - uid: 9961 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 30 + - uid: 9962 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 30 + - uid: 9963 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 30 + - uid: 10011 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 30 + - uid: 10135 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 30 + - uid: 10228 + components: + - type: Transform + pos: -57.5,-64.5 + parent: 30 + - uid: 10236 + components: + - type: Transform + pos: -65.5,-61.5 + parent: 30 + - uid: 10237 + components: + - type: Transform + pos: -59.5,-61.5 + parent: 30 + - uid: 10546 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 30 + - uid: 10548 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 30 + - uid: 10549 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 30 + - uid: 10753 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 30 + - uid: 10756 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 30 + - uid: 10757 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 30 + - uid: 10758 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 30 + - uid: 10759 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 30 + - uid: 11060 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 30 + - uid: 11071 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 30 + - uid: 11072 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 30 + - uid: 11074 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 30 + - uid: 11075 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 30 + - uid: 11089 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 30 + - uid: 11090 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 30 + - uid: 11092 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 30 + - uid: 11141 + components: + - type: Transform + pos: -9.5,-42.5 parent: 30 - uid: 11198 components: @@ -135088,10 +133784,15 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 30 - - uid: 11339 + - uid: 11259 components: - type: Transform - pos: -14.5,-38.5 + pos: -66.5,-61.5 + parent: 30 + - uid: 11261 + components: + - type: Transform + pos: -63.5,-61.5 parent: 30 - uid: 11352 components: @@ -135103,6 +133804,16 @@ entities: - type: Transform pos: 2.5,-7.5 parent: 30 + - uid: 11457 + components: + - type: Transform + pos: -67.5,-61.5 + parent: 30 + - uid: 11459 + components: + - type: Transform + pos: -60.5,-61.5 + parent: 30 - uid: 11597 components: - type: Transform @@ -135238,10 +133949,16 @@ entities: - type: Transform pos: -43.5,-17.5 parent: 30 - - uid: 12659 + - uid: 12636 components: - type: Transform - pos: 20.5,13.5 + pos: -58.5,-61.5 + parent: 30 + - uid: 12638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-61.5 parent: 30 - uid: 12660 components: @@ -135600,6 +134317,31 @@ entities: - type: Transform pos: 21.5,54.5 parent: 30 + - uid: 13983 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 30 + - uid: 13985 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 30 + - uid: 14480 + components: + - type: Transform + pos: -67.5,-63.5 + parent: 30 + - uid: 14481 + components: + - type: Transform + pos: -67.5,-64.5 + parent: 30 + - uid: 14513 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 30 - uid: 14725 components: - type: Transform @@ -135630,6 +134372,11 @@ entities: - type: Transform pos: 14.5,49.5 parent: 30 + - uid: 14808 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 30 - uid: 14966 components: - type: Transform @@ -136158,11 +134905,6 @@ entities: - type: Transform pos: -81.5,-41.5 parent: 30 - - uid: 17544 - components: - - type: Transform - pos: -55.5,-68.5 - parent: 30 - uid: 17569 components: - type: Transform @@ -136173,11 +134915,6 @@ entities: - type: Transform pos: -54.5,-58.5 parent: 30 - - uid: 17685 - components: - - type: Transform - pos: -56.5,-68.5 - parent: 30 - uid: 17686 components: - type: Transform @@ -136313,41 +135050,6 @@ entities: - type: Transform pos: -57.5,-61.5 parent: 30 - - uid: 17723 - components: - - type: Transform - pos: -60.5,-61.5 - parent: 30 - - uid: 17724 - components: - - type: Transform - pos: -61.5,-61.5 - parent: 30 - - uid: 17725 - components: - - type: Transform - pos: -62.5,-61.5 - parent: 30 - - uid: 17726 - components: - - type: Transform - pos: -63.5,-61.5 - parent: 30 - - uid: 17728 - components: - - type: Transform - pos: -65.5,-61.5 - parent: 30 - - uid: 17729 - components: - - type: Transform - pos: -66.5,-61.5 - parent: 30 - - uid: 17730 - components: - - type: Transform - pos: -67.5,-61.5 - parent: 30 - uid: 17731 components: - type: Transform @@ -136358,11 +135060,6 @@ entities: - type: Transform pos: -69.5,-61.5 parent: 30 - - uid: 17734 - components: - - type: Transform - pos: -61.5,-65.5 - parent: 30 - uid: 17736 components: - type: Transform @@ -136478,16 +135175,6 @@ entities: - type: Transform pos: -61.5,-66.5 parent: 30 - - uid: 17775 - components: - - type: Transform - pos: -63.5,-66.5 - parent: 30 - - uid: 17776 - components: - - type: Transform - pos: -62.5,-66.5 - parent: 30 - uid: 17777 components: - type: Transform @@ -136528,11 +135215,6 @@ entities: - type: Transform pos: -66.5,-66.5 parent: 30 - - uid: 17785 - components: - - type: Transform - pos: -61.5,-62.5 - parent: 30 - uid: 17786 components: - type: Transform @@ -136541,22 +135223,12 @@ entities: - uid: 17787 components: - type: Transform - pos: -61.5,-63.5 + pos: -57.5,-62.5 parent: 30 - uid: 17788 components: - type: Transform - pos: -61.5,-64.5 - parent: 30 - - uid: 17790 - components: - - type: Transform - pos: -53.5,-67.5 - parent: 30 - - uid: 17791 - components: - - type: Transform - pos: -53.5,-66.5 + pos: -57.5,-63.5 parent: 30 - uid: 17999 components: @@ -136623,56 +135295,16 @@ entities: - type: Transform pos: -38.5,-30.5 parent: 30 - - uid: 18070 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 30 - - uid: 18071 - components: - - type: Transform - pos: -53.5,-65.5 - parent: 30 - - uid: 18072 - components: - - type: Transform - pos: -53.5,-64.5 - parent: 30 - - uid: 18073 - components: - - type: Transform - pos: -57.5,-68.5 - parent: 30 - - uid: 18074 - components: - - type: Transform - pos: -53.5,-63.5 - parent: 30 - - uid: 18075 - components: - - type: Transform - pos: -53.5,-62.5 - parent: 30 - uid: 18076 components: - type: Transform pos: -54.5,-61.5 parent: 30 - - uid: 18077 - components: - - type: Transform - pos: -54.5,-60.5 - parent: 30 - uid: 18082 components: - type: Transform pos: -61.5,-67.5 parent: 30 - - uid: 18086 - components: - - type: Transform - pos: -64.5,-66.5 - parent: 30 - uid: 18087 components: - type: Transform @@ -136793,21 +135425,11 @@ entities: - type: Transform pos: -76.5,-50.5 parent: 30 - - uid: 18125 - components: - - type: Transform - pos: -61.5,-68.5 - parent: 30 - uid: 18169 components: - type: Transform pos: -71.5,-61.5 parent: 30 - - uid: 18170 - components: - - type: Transform - pos: -71.5,-59.5 - parent: 30 - uid: 18171 components: - type: Transform @@ -136901,21 +135523,6 @@ entities: - type: Transform pos: -43.5,2.5 parent: 30 - - uid: 22216 - components: - - type: Transform - pos: -60.5,-68.5 - parent: 30 - - uid: 22645 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 30 - - uid: 22646 - components: - - type: Transform - pos: -25.5,-60.5 - parent: 30 - proto: WallSolidRust entities: - uid: 223 @@ -137262,6 +135869,13 @@ entities: parent: 30 - type: Physics canCollide: False +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 8418 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 30 - proto: WardrobeBlackFilled entities: - uid: 9942 @@ -137417,29 +136031,16 @@ entities: - 0 - proto: WardrobeEngineeringFilled entities: - - uid: 8228 + - uid: 7112 components: - type: Transform - pos: -9.5,-38.5 + pos: -7.5,-41.5 + parent: 30 + - uid: 7148 + components: + - type: Transform + pos: -5.5,-41.5 parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: WardrobeFormal entities: - uid: 19618 @@ -137831,6 +136432,11 @@ entities: - type: Transform pos: -51.5,69.5 parent: 30 + - uid: 14476 + components: + - type: Transform + pos: -55.5,-65.5 + parent: 30 - uid: 16216 components: - type: Transform @@ -137851,11 +136457,6 @@ entities: - type: Transform pos: -60.5,-20.5 parent: 30 - - uid: 18786 - components: - - type: Transform - pos: -62.5,-65.5 - parent: 30 - uid: 19532 components: - type: Transform @@ -137863,15 +136464,15 @@ entities: parent: 30 - proto: WaterTankHighCapacity entities: - - uid: 399 + - uid: 452 components: - type: Transform - pos: -23.5,5.5 + pos: -30.5,10.5 parent: 30 - - uid: 452 + - uid: 13365 components: - type: Transform - pos: -30.5,10.5 + pos: -23.5,5.5 parent: 30 - proto: WaterVaporCanister entities: @@ -137957,13 +136558,6 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 20994 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 30 - - type: Physics - canCollide: False - uid: 20998 components: - type: Transform @@ -138113,10 +136707,10 @@ entities: parent: 30 - proto: WelderIndustrialAdvanced entities: - - uid: 9596 + - uid: 13977 components: - type: Transform - pos: -17.366865,-29.492481 + pos: -8.390148,-47.43978 parent: 30 - proto: WelderMini entities: @@ -138152,6 +136746,11 @@ entities: - type: Transform pos: 9.5,-25.5 parent: 30 + - uid: 10147 + components: + - type: Transform + pos: -54.5,-65.5 + parent: 30 - uid: 14811 components: - type: Transform @@ -138167,11 +136766,6 @@ entities: - type: Transform pos: -52.5,39.5 parent: 30 - - uid: 18787 - components: - - type: Transform - pos: -63.5,-65.5 - parent: 30 - uid: 19813 components: - type: Transform @@ -138234,12 +136828,6 @@ entities: - type: Transform pos: 4.5,-4.5 parent: 30 - - uid: 12696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,13.5 - parent: 30 - uid: 20484 components: - type: Transform @@ -138419,10 +137007,11 @@ entities: - type: Transform pos: 18.5,24.5 parent: 30 - - uid: 12697 + - uid: 13241 components: - type: Transform - pos: 14.5,13.5 + rot: -1.5707963267948966 rad + pos: 16.5,15.5 parent: 30 - uid: 21708 components: @@ -138509,6 +137098,14 @@ entities: rot: 1.5707963267948966 rad pos: -49.5,52.5 parent: 30 +- proto: WindoorSecureServiceLocked + entities: + - uid: 11458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-62.5 + parent: 30 - proto: Window entities: - uid: 5 @@ -138776,16 +137373,6 @@ entities: - type: Transform pos: 10.5,-6.5 parent: 30 - - uid: 9368 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 30 - - uid: 9369 - components: - - type: Transform - pos: -20.5,-43.5 - parent: 30 - uid: 9837 components: - type: Transform @@ -139326,30 +137913,6 @@ entities: - type: Transform pos: -23.5,4.5 parent: 30 - - uid: 9976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,4.5 - parent: 30 - - uid: 11259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 30 - - uid: 11260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 30 - - uid: 11261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 30 - uid: 12728 components: - type: Transform @@ -139398,6 +137961,24 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,41.5 parent: 30 + - uid: 14051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 30 + - uid: 14329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 30 + - uid: 14356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,23.5 + parent: 30 - uid: 15152 components: - type: Transform @@ -139765,30 +138346,6 @@ entities: rot: 1.5707963267948966 rad pos: -35.5,-34.5 parent: 30 - - uid: 21191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,4.5 - parent: 30 - - uid: 21451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,4.5 - parent: 30 - - uid: 21452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,4.5 - parent: 30 - - uid: 21453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 30 - uid: 22456 components: - type: Transform @@ -139859,11 +138416,6 @@ entities: - type: Transform pos: -14.474685,-24.503119 parent: 30 - - uid: 9483 - components: - - type: Transform - pos: -17.403442,-29.451271 - parent: 30 - uid: 18182 components: - type: Transform diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 8dd8e3a8a4a..473cbbb3a8d 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -54,6 +54,7 @@ entities: - type: MetaData - type: Transform - type: Map + mapPaused: True - type: PhysicsMap - type: GridTree - type: MovedGrids @@ -358,11 +359,11 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAA version: 6 -4,-5: ind: -4,-5 @@ -6442,7 +6443,8 @@ entities: -2,8: 0: 65535 -2,9: - 0: 65535 + 0: 65263 + 2: 272 -2,10: 0: 65535 -2,11: @@ -6875,18 +6877,18 @@ entities: 0: 65535 12,-8: 0: 30591 - 2: 34944 + 3: 34944 13,-8: 0: 17487 - 2: 13104 - 3: 34944 + 3: 13104 + 4: 34944 13,-7: 0: 65535 13,-6: 0: 65535 14,-8: 0: 52431 - 3: 13104 + 4: 13104 14,-7: 0: 65535 14,-6: @@ -6907,44 +6909,44 @@ entities: 0: 65535 16,-4: 0: 32631 - 4: 136 - 5: 32768 + 5: 136 + 6: 32768 16,-3: 0: 32631 - 5: 32904 + 6: 32904 16,-2: 0: 65399 - 5: 136 + 6: 136 16,-1: 0: 13299 17,-4: - 4: 51 + 5: 51 0: 53196 - 5: 12288 + 6: 12288 17,-3: - 5: 12339 + 6: 12339 0: 53196 17,-2: - 5: 51 + 6: 51 0: 65484 16,-7: 0: 65522 16,-6: 0: 32767 - 5: 32768 + 6: 32768 16,-5: 0: 32631 - 5: 136 - 4: 32768 + 6: 136 + 5: 32768 17,-7: 0: 65527 17,-6: 0: 53247 - 5: 12288 + 6: 12288 17,-5: - 5: 51 + 6: 51 0: 53196 - 4: 12288 + 5: 12288 12,-9: 0: 61941 13,-9: @@ -7077,12 +7079,12 @@ entities: 0: 8930 16,-8: 0: 60395 - 5: 4 + 6: 4 17,-8: 0: 65535 18,-8: 0: 12914 - 5: 137 + 6: 137 18,-7: 0: 47858 18,-6: @@ -7107,19 +7109,19 @@ entities: 0: 3983 16,-9: 0: 59951 - 5: 1216 + 6: 1216 17,-9: 0: 65375 - 5: 160 + 6: 160 17,-10: 0: 40960 - 5: 24560 + 6: 24560 18,-10: 0: 4096 - 5: 8976 + 6: 8976 18,-9: 0: 12896 - 5: 35227 + 6: 35227 10,-10: 0: 63249 10,-9: @@ -7588,7 +7590,7 @@ entities: 0: 65535 3,-14: 0: 61713 - 5: 3822 + 6: 3822 3,-13: 0: 65535 -2,-16: @@ -8098,11 +8100,11 @@ entities: 20,7: 0: 4369 19,-8: - 5: 51 + 6: 51 16,-10: - 5: 60608 + 6: 60608 19,-9: - 5: 13107 + 6: 13107 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8134,6 +8136,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -10278,11 +10295,23 @@ entities: - type: Transform pos: 68.5,8.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12540: + - DoorStatus: DoorBolt - uid: 12560 components: - type: Transform pos: 65.5,8.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12540: + - DoorStatus: DoorBolt - proto: AirlockEngineeringLocked entities: - uid: 1109 @@ -10446,6 +10475,14 @@ entities: - type: Transform pos: 66.5,6.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 12560: + - DoorStatus: DoorBolt + 12559: + - DoorStatus: DoorBolt - uid: 23561 components: - type: Transform @@ -10558,21 +10595,58 @@ entities: - type: Transform pos: -44.5,33.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 3442: + - DoorStatus: DoorBolt + 3582: + - DoorStatus: DoorBolt - uid: 3442 components: - type: Transform pos: -43.5,29.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3445: + - DoorStatus: DoorBolt + 3441: + - DoorStatus: DoorBolt - uid: 3445 components: - type: Transform pos: -44.5,32.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 3442: + - DoorStatus: DoorBolt + 3582: + - DoorStatus: DoorBolt - uid: 3582 components: - type: Transform pos: -42.5,29.5 parent: 5350 + - type: Door + secondsUntilStateChange: -99.68158 + state: Opening + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 3445: + - DoorStatus: DoorBolt + 3441: + - DoorStatus: DoorBolt + lastSignals: + DoorStatus: True - uid: 3884 components: - type: Transform @@ -10590,11 +10664,23 @@ entities: - type: Transform pos: 63.5,38.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13927: + - DoorStatus: DoorBolt - uid: 13927 components: - type: Transform pos: 63.5,40.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13926: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 5442 @@ -10602,21 +10688,49 @@ entities: - type: Transform pos: -76.5,8.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5443: + - DoorStatus: Close - uid: 5712 components: - type: Transform pos: -74.5,-17.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5711: + - DoorStatus: Close - uid: 5713 components: - type: Transform pos: -72.5,-19.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 5716: + - DoorStatus: Close + 5715: + - DoorStatus: Close - uid: 5714 components: - type: Transform pos: -73.5,-19.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 5715: + - DoorStatus: Close + 5716: + - DoorStatus: Close - uid: 5742 components: - type: Transform @@ -10627,21 +10741,45 @@ entities: - type: Transform pos: -41.5,35.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9492: + - DoorStatus: DoorBolt - uid: 9494 components: - type: Transform pos: -32.5,45.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9495: + - DoorStatus: DoorBolt - uid: 9495 components: - type: Transform pos: -32.5,47.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9494: + - DoorStatus: DoorBolt - uid: 13922 components: - type: Transform pos: 48.5,38.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13921: + - DoorStatus: DoorBolt - uid: 14536 components: - type: Transform @@ -10658,36 +10796,78 @@ entities: - type: Transform pos: -50.5,-40.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16715: + - DoorStatus: DoorBolt - uid: 17204 components: - type: Transform pos: -42.5,-63.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17205: + - DoorStatus: DoorBolt - uid: 17205 components: - type: Transform pos: -39.5,-63.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17204: + - DoorStatus: DoorBolt - uid: 20027 components: - type: Transform pos: 5.5,-65.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20026: + - DoorStatus: DoorBolt - uid: 20029 components: - type: Transform pos: 38.5,-64.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 20030: + - DoorStatus: DoorBolt - uid: 20030 components: - type: Transform pos: 38.5,-61.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20029: + - DoorStatus: DoorBolt - uid: 20038 components: - type: Transform pos: 39.5,-54.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20037: + - DoorStatus: DoorBolt - uid: 25050 components: - type: Transform @@ -10794,22 +10974,50 @@ entities: rot: -1.5707963267948966 rad pos: -78.5,8.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5442: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 5711 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-17.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5712: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 5715 components: - type: Transform pos: -73.5,-22.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5713: + - DoorStatus: Close + 5714: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 2 - uid: 5716 components: - type: Transform pos: -72.5,-22.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 5713: + - DoorStatus: Close + 5714: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 2 - proto: AirlockExternalLocked entities: - uid: 9492 @@ -10817,11 +11025,23 @@ entities: - type: Transform pos: -44.5,35.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9493: + - DoorStatus: DoorBolt - uid: 13921 components: - type: Transform pos: 49.5,39.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13922: + - DoorStatus: DoorBolt - uid: 13923 components: - type: Transform @@ -10831,8 +11051,6 @@ entities: linkedPorts: 14536: - DoorStatus: DoorBolt - 13924: - - DoorStatus: DoorBolt - uid: 13924 components: - type: Transform @@ -10842,23 +11060,39 @@ entities: linkedPorts: 14536: - DoorStatus: DoorBolt - 13923: - - DoorStatus: DoorBolt - uid: 16715 components: - type: Transform pos: -52.5,-40.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 16716: + - DoorStatus: DoorBolt - uid: 20026 components: - type: Transform pos: 5.5,-67.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20027: + - DoorStatus: DoorBolt - uid: 20037 components: - type: Transform pos: 41.5,-54.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 20038: + - DoorStatus: DoorBolt - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 2433 @@ -13597,12 +13831,12 @@ entities: - type: Transform pos: -1.8845375,-5.58767 parent: 5350 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 491 components: - type: Transform - pos: 34.5,-12.5 + pos: 34.5,-17.5 parent: 5350 - uid: 5086 components: @@ -13612,32 +13846,38 @@ entities: - uid: 5326 components: - type: Transform + rot: 1.5707963267948966 rad pos: 41.5,47.5 parent: 5350 - uid: 5330 components: - type: Transform - pos: -63.5,-13.5 + rot: -1.5707963267948966 rad + pos: -64.5,-13.5 parent: 5350 - uid: 6473 components: - type: Transform + rot: -1.5707963267948966 rad pos: -45.5,16.5 parent: 5350 - uid: 6502 components: - type: Transform + rot: -1.5707963267948966 rad pos: -45.5,18.5 parent: 5350 - uid: 8480 components: - type: Transform - pos: -70.5,-5.5 + rot: 3.141592653589793 rad + pos: -63.5,-5.5 parent: 5350 - uid: 8604 components: - type: Transform - pos: -63.5,-5.5 + rot: 3.141592653589793 rad + pos: -70.5,-5.5 parent: 5350 - uid: 9158 components: @@ -13647,12 +13887,14 @@ entities: - uid: 10294 components: - type: Transform - pos: 39.5,-15.5 + rot: 3.141592653589793 rad + pos: 34.5,-12.5 parent: 5350 - uid: 11035 components: - type: Transform - pos: 34.5,-17.5 + rot: 1.5707963267948966 rad + pos: 39.5,-15.5 parent: 5350 - uid: 11212 components: @@ -13662,47 +13904,33 @@ entities: - uid: 14164 components: - type: Transform - pos: -63.5,-7.5 + pos: -11.5,-74.5 parent: 5350 - uid: 14682 components: - type: Transform - pos: -70.5,-7.5 + pos: -9.5,-74.5 parent: 5350 - uid: 14683 components: - type: Transform - pos: -63.5,6.5 + pos: -3.5,-74.5 parent: 5350 - uid: 14684 components: - type: Transform - pos: -70.5,6.5 - parent: 5350 - - uid: 20063 - components: - - type: Transform - pos: -11.5,-74.5 - parent: 5350 - - uid: 20064 - components: - - type: Transform - pos: -9.5,-74.5 - parent: 5350 - - uid: 20065 - components: - - type: Transform - pos: -3.5,-74.5 + pos: -1.5,-74.5 parent: 5350 - - uid: 20066 + - uid: 14913 components: - type: Transform - pos: -1.5,-74.5 + pos: -70.5,4.5 parent: 5350 - - uid: 20167 + - uid: 24792 components: - type: Transform - pos: -70.5,4.5 + rot: 1.5707963267948966 rad + pos: 59.5,4.5 parent: 5350 - proto: AtmosFixBlockerMarker entities: @@ -60938,6 +61166,22 @@ entities: - type: Transform pos: -16.428204,45.62322 parent: 5350 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 20063 + components: + - type: Transform + parent: 9140 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20064 + components: + - type: Transform + parent: 10335 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterHoodieBlack entities: - uid: 22120 @@ -73877,18 +74121,20 @@ entities: - type: Transform pos: 68.5,-19.5 parent: 5350 -- proto: GasMinerNitrogen +- proto: GasMinerNitrogenStationLarge entities: - uid: 11574 components: - type: Transform + rot: -1.5707963267948966 rad pos: 52.5,-29.5 parent: 5350 -- proto: GasMinerOxygen +- proto: GasMinerOxygenStationLarge entities: - - uid: 11585 + - uid: 3116 components: - type: Transform + rot: -1.5707963267948966 rad pos: 56.5,-29.5 parent: 5350 - proto: GasMixer @@ -112750,6 +112996,16 @@ entities: - type: Transform pos: 9.5,-62.5 parent: 5350 + - uid: 20065 + components: + - type: Transform + pos: -34.5,-75.5 + parent: 5350 + - uid: 20066 + components: + - type: Transform + pos: -34.5,-74.5 + parent: 5350 - uid: 20067 components: - type: Transform @@ -112935,6 +113191,11 @@ entities: - type: Transform pos: -0.5,-68.5 parent: 5350 + - uid: 20167 + components: + - type: Transform + pos: -34.5,-77.5 + parent: 5350 - uid: 21454 components: - type: Transform @@ -113195,6 +113456,56 @@ entities: rot: 1.5707963267948966 rad pos: 94.5,19.5 parent: 5350 + - uid: 24782 + components: + - type: Transform + pos: -33.5,-77.5 + parent: 5350 + - uid: 24783 + components: + - type: Transform + pos: -32.5,-77.5 + parent: 5350 + - uid: 24784 + components: + - type: Transform + pos: -31.5,-77.5 + parent: 5350 + - uid: 24785 + components: + - type: Transform + pos: -30.5,-77.5 + parent: 5350 + - uid: 24786 + components: + - type: Transform + pos: -28.5,-77.5 + parent: 5350 + - uid: 24787 + components: + - type: Transform + pos: -27.5,-77.5 + parent: 5350 + - uid: 24788 + components: + - type: Transform + pos: -26.5,-77.5 + parent: 5350 + - uid: 24789 + components: + - type: Transform + pos: -25.5,-77.5 + parent: 5350 + - uid: 24790 + components: + - type: Transform + pos: -36.5,-74.5 + parent: 5350 + - uid: 24791 + components: + - type: Transform + pos: -37.5,-74.5 + parent: 5350 - uid: 24922 components: - type: Transform @@ -116098,12 +116409,24 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-28.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 23500: + - Pressed: Open + 24195: + - Pressed: Open - uid: 24780 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-31.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 24820: + - Pressed: Open + 26601: + - Pressed: Open - proto: LockableButtonSecurity entities: - uid: 6261 @@ -132903,23 +133226,6 @@ entities: linkedPorts: 10293: - Pressed: Toggle - - uid: 14913 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 14916: - - Pressed: Toggle - 14915: - - Pressed: Toggle - 14914: - - Pressed: Toggle - 14918: - - Pressed: Toggle - 14917: - - Pressed: Toggle - uid: 15183 components: - type: Transform @@ -133156,6 +133462,24 @@ entities: - Pressed: Toggle 23565: - Pressed: Toggle + - uid: 11585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-38.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 14917: + - Pressed: Toggle + 14918: + - Pressed: Toggle + 14914: + - Pressed: Toggle + 14915: + - Pressed: Toggle + 14916: + - Pressed: Toggle - uid: 12454 components: - type: Transform @@ -133246,8 +133570,6 @@ entities: - type: Transform pos: 44.5,-4.5 parent: 5350 -- proto: SignAtmosMinsky - entities: - uid: 11495 components: - type: Transform @@ -133292,26 +133614,22 @@ entities: pos: -13.5,-64.5 parent: 5350 - proto: SignChem - entities: - - uid: 15672 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 5350 -- proto: SignChemistry1 entities: - uid: 14204 components: - type: Transform pos: -19.5,-21.5 parent: 5350 -- proto: SignChemistry2 - entities: - uid: 15671 components: - type: Transform pos: -13.5,-23.5 parent: 5350 + - uid: 15672 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 5350 - proto: SignCloning entities: - uid: 15048 @@ -133735,13 +134053,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,-5.5 parent: 5350 -- proto: SignDrones - entities: - - uid: 8902 - components: - - type: Transform - pos: 44.5,-0.5 - parent: 5350 - proto: SignElectricalMed entities: - uid: 1672 @@ -133920,17 +134231,15 @@ entities: parent: 5350 - proto: SignHydro1 entities: - - uid: 2335 + - uid: 2326 components: - type: Transform - pos: 20.5,-21.5 + pos: 20.5,-15.5 parent: 5350 -- proto: SignHydro2 - entities: - - uid: 2326 + - uid: 2335 components: - type: Transform - pos: 20.5,-15.5 + pos: 20.5,-21.5 parent: 5350 - proto: SignInterrogation entities: @@ -133992,6 +134301,13 @@ entities: - type: Transform pos: -35.5,6.5 parent: 5350 +- proto: SignMaterials + entities: + - uid: 8902 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 5350 - proto: SignMedical entities: - uid: 7333 @@ -134024,13 +134340,6 @@ entities: - type: Transform pos: 36.5,-30.5 parent: 5350 -- proto: SignMinerDock - entities: - - uid: 4097 - components: - - type: Transform - pos: -39.5,22.5 - parent: 5350 - proto: SignMorgue entities: - uid: 15028 @@ -134125,7 +134434,7 @@ entities: - type: Transform pos: -0.5,-33.5 parent: 5350 -- proto: SignScience1 +- proto: SignScience entities: - uid: 9789 components: @@ -134327,6 +134636,13 @@ entities: - type: Transform pos: -0.5,22.5 parent: 5350 +- proto: SignShipDock + entities: + - uid: 4097 + components: + - type: Transform + pos: -39.5,22.5 + parent: 5350 - proto: SignSmoking entities: - uid: 11369 @@ -134483,7 +134799,7 @@ entities: - type: Transform pos: 23.5,5.5 parent: 5350 -- proto: SignToxins2 +- proto: SignToxins entities: - uid: 22182 components: @@ -137950,11 +138266,61 @@ entities: - type: Transform pos: -7.5,37.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20063 - uid: 10335 components: - type: Transform pos: -7.5,38.5 parent: 5350 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20064 - proto: SuitStorageWarden entities: - uid: 10358 diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 7353864af19..ae213b3dd1e 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -315,11 +315,11 @@ entities: version: 6 0,4: ind: 0,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,4: ind: 1,4 - tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,0: ind: -4,0 @@ -11860,6 +11860,8 @@ entities: - type: Transform pos: -32.5,34.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: 28923: @@ -12445,55 +12447,6 @@ entities: - type: Transform pos: 45.5,2.5 parent: 2 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 19542 - components: - - type: Transform - pos: -50.5,-49.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19543: - - DoorStatus: DoorBolt - - uid: 19543 - components: - - type: Transform - pos: -49.5,-51.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19542: - - DoorStatus: DoorBolt - - uid: 19544 - components: - - type: Transform - pos: -47.5,-54.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19545: - - DoorStatus: DoorBolt - 19546: - - DoorStatus: DoorBolt - - uid: 19545 - components: - - type: Transform - pos: -48.5,-55.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19544: - - DoorStatus: DoorBolt - - uid: 19546 - components: - - type: Transform - pos: -46.5,-55.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19544: - - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 13141 @@ -12560,6 +12513,8 @@ entities: - DoorStatus: DoorBolt 8505: - DoorStatus: DoorBolt + 8504: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 826 @@ -12599,8 +12554,67 @@ entities: - type: Transform pos: -58.5,-17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 - proto: AirlockExternalGlassEngineeringLocked entities: + - uid: 234 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3673: + - DoorStatus: DoorBolt + - uid: 437 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3673: + - DoorStatus: DoorBolt + - uid: 3673 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 234: + - DoorStatus: DoorBolt + 437: + - DoorStatus: DoorBolt + - uid: 3888 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3902: + - DoorStatus: DoorBolt + - uid: 3902 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3888: + - DoorStatus: DoorBolt - uid: 6828 components: - type: Transform @@ -14467,7 +14481,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4821.3525 + secondsUntilStateChange: -9254.769 state: Opening - uid: 6934 components: @@ -14479,7 +14493,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4823.986 + secondsUntilStateChange: -9257.402 state: Opening - uid: 6935 components: @@ -14491,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4822.836 + secondsUntilStateChange: -9256.252 state: Opening - uid: 6936 components: @@ -14502,7 +14516,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -4822.0522 + secondsUntilStateChange: -9255.469 state: Opening - proto: AirlockTheatreLocked entities: @@ -24789,11 +24803,6 @@ entities: - type: Transform pos: 60.5,30.5 parent: 21002 - - uid: 26395 - components: - - type: Transform - pos: 60.5,29.5 - parent: 21002 - uid: 26396 components: - type: Transform @@ -27124,11 +27133,6 @@ entities: - type: Transform pos: 57.5,-2.5 parent: 21002 - - uid: 27221 - components: - - type: Transform - pos: 57.5,-1.5 - parent: 21002 - uid: 27222 components: - type: Transform @@ -31754,11 +31758,6 @@ entities: - type: Transform pos: 25.5,-28.5 parent: 21002 - - uid: 25401 - components: - - type: Transform - pos: 41.5,-25.5 - parent: 21002 - uid: 25402 components: - type: Transform @@ -31839,11 +31838,6 @@ entities: - type: Transform pos: 39.5,-27.5 parent: 21002 - - uid: 25420 - components: - - type: Transform - pos: 38.5,-27.5 - parent: 21002 - uid: 25421 components: - type: Transform @@ -33044,11 +33038,6 @@ entities: - type: Transform pos: 90.5,-2.5 parent: 21002 - - uid: 27690 - components: - - type: Transform - pos: 90.5,-3.5 - parent: 21002 - uid: 27691 components: - type: Transform @@ -33109,11 +33098,6 @@ entities: - type: Transform pos: 88.5,-8.5 parent: 21002 - - uid: 27712 - components: - - type: Transform - pos: 88.5,-7.5 - parent: 21002 - uid: 27713 components: - type: Transform @@ -34932,147 +34916,177 @@ entities: - type: Transform pos: 67.5,52.5 parent: 21002 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 234 + - uid: 6810 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,55.5 + pos: -6.5,55.5 parent: 2 - - uid: 437 + - uid: 6852 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,55.5 + pos: -4.5,55.5 parent: 2 - - uid: 3673 + - uid: 10392 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-3.5 + pos: 66.5,-5.5 parent: 2 - - uid: 3888 + - uid: 10676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-5.5 + pos: 66.5,-3.5 parent: 2 - - uid: 3902 + - uid: 10677 components: - type: Transform + rot: 1.5707963267948966 rad pos: 43.5,-26.5 parent: 2 - - uid: 6810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,54.5 - parent: 2 - - uid: 6852 + - uid: 10690 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,54.5 parent: 2 - - uid: 10392 + - uid: 10848 components: - type: Transform - pos: -7.5,-68.5 + rot: 3.141592653589793 rad + pos: 30.5,54.5 parent: 2 - - uid: 10578 + - uid: 11333 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,21.5 + pos: -7.5,-68.5 parent: 2 - - uid: 10579 + - uid: 11334 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 2 - - uid: 10676 - components: - - type: Transform pos: -7.5,-75.5 parent: 2 - - uid: 10677 + - uid: 12849 components: - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-75.5 parent: 2 - - uid: 10690 + - uid: 13187 components: - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-68.5 parent: 2 - - uid: 10848 + - uid: 13210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-82.5 + pos: 8.5,-80.5 parent: 2 - - uid: 11333 + - uid: 13262 components: - type: Transform + rot: -1.5707963267948966 rad pos: -61.5,-4.5 parent: 2 - - uid: 11334 + - uid: 13345 components: - type: Transform + rot: -1.5707963267948966 rad pos: -61.5,-2.5 parent: 2 - - uid: 12849 + - uid: 13747 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-80.5 + pos: 8.5,-82.5 parent: 2 - - uid: 16803 + - uid: 13773 components: - type: Transform + rot: -1.5707963267948966 rad pos: -61.5,-17.5 parent: 2 - - uid: 18705 + - uid: 16803 components: - type: Transform pos: -13.5,-58.5 parent: 2 - - uid: 19960 + - uid: 18705 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad + pos: -13.5,-80.5 + parent: 2 + - uid: 19542 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 - - uid: 19965 + - uid: 19543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-80.5 + pos: 66.5,2.5 parent: 2 - - uid: 21017 + - uid: 19544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,4.5 + parent: 2 + - uid: 25960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 21002 - - uid: 21018 + pos: -61.5,-1.5 + parent: 2 + - uid: 26097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 21002 - - uid: 24241 + pos: -61.5,-5.5 + parent: 2 + - uid: 26114 components: - type: Transform - pos: 66.5,4.5 + rot: 1.5707963267948966 rad + pos: 8.5,-80.5 parent: 2 - - uid: 24242 +- proto: AtmosDeviceFanTiny + entities: + - uid: 10578 components: - type: Transform - pos: 66.5,2.5 + rot: 1.5707963267948966 rad + pos: -17.5,21.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 parent: 2 + - uid: 21017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 21002 + - uid: 21018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 21002 - proto: AtmosFixBlockerMarker entities: - uid: 9290 @@ -37079,11 +37093,6 @@ entities: enabled: False - proto: Bola entities: - - uid: 22398 - components: - - type: Transform - pos: 30.540497,21.53258 - parent: 21002 - uid: 23396 components: - type: Transform @@ -37415,20 +37424,6 @@ entities: rot: -1.5707963267948966 rad pos: -46.350143,-26.356361 parent: 2 - - uid: 22198 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22200 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: BoxFolderBlack entities: - uid: 818 @@ -75802,34 +75797,6 @@ entities: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 22064 - components: - - type: Transform - pos: 26.5,17.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 22206 - components: - - type: Transform - pos: 67.5,30.5 - parent: 21002 - uid: 23747 components: - type: Transform @@ -75840,21 +75807,6 @@ entities: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 25556 - components: - - type: Transform - pos: 66.5,22.5 - parent: 21002 - - uid: 25559 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 21002 - - uid: 25571 - components: - - type: Transform - pos: 58.5,2.5 - parent: 21002 - proto: ClosetRadiationSuitFilled entities: - uid: 9793 @@ -75913,15 +75865,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,54.5 parent: 2 -- proto: ClothingBeltMercWebbing - entities: - - uid: 21681 - components: - - type: Transform - parent: 21678 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingBeltStorageWaistbag entities: - uid: 26598 @@ -76066,15 +76009,6 @@ entities: - type: Transform pos: -11.381896,-50.376205 parent: 2 -- proto: ClothingHeadBandMerc - entities: - - uid: 21680 - components: - - type: Transform - parent: 21678 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHatAnimalCat entities: - uid: 19173 @@ -76295,22 +76229,6 @@ entities: - type: Transform pos: 44.357983,36.68563 parent: 2 -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 22362 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22364 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHelmetFire entities: - uid: 23802 @@ -76353,20 +76271,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadsetGrey - entities: - - uid: 21600 - components: - - type: Transform - pos: 49.503967,15.507565 - parent: 21002 -- proto: ClothingHeadsetMining - entities: - - uid: 26968 - components: - - type: Transform - pos: 19.579208,14.445946 - parent: 21002 - proto: ClothingMaskBreath entities: - uid: 2071 @@ -76549,22 +76453,6 @@ entities: - type: Transform pos: -36.5237,-64.52039 parent: 2 -- proto: ClothingOuterHardsuitEVAPrisoner - entities: - - uid: 22363 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22365 - components: - - type: Transform - parent: 22361 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterRobesJudge entities: - uid: 3517 @@ -76631,15 +76519,6 @@ entities: - type: Transform pos: 48.609123,6.4890294 parent: 2 -- proto: ClothingShoesBootsMerc - entities: - - uid: 21679 - components: - - type: Transform - parent: 21678 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingShoesBootsWork entities: - uid: 5865 @@ -78211,13 +78090,6 @@ entities: - type: Transform pos: 8.5,30.5 parent: 2 -- proto: CrateEngineeringMiniJetpack - entities: - - uid: 26711 - components: - - type: Transform - pos: 67.5,54.5 - parent: 21002 - proto: CrateEngineeringSecure entities: - uid: 23789 @@ -78413,420 +78285,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 21559 - components: - - type: Transform - pos: 46.47821,25.633486 - parent: 21002 - - 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: - - 21560 - - 21561 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21647 - components: - - type: Transform - pos: 76.5417,-19.306087 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21648 - - 21649 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21678 - components: - - type: Transform - pos: 54.584427,32.651142 - parent: 21002 - - 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: - - 21679 - - 21680 - - 21681 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21845 - components: - - type: Transform - pos: 57.52028,-18.43192 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21847 - - 21846 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21982 - components: - - type: Transform - pos: 90.51018,-6.3049965 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21983 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22143 - components: - - type: Transform - pos: 40.5,20.5 - parent: 21002 - - 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: - - 22145 - - 22144 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22197 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 21002 - - 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: - - 22198 - - 22199 - - 22200 - - 22201 - - 22202 - - 22203 - - 22204 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22361 - components: - - type: Transform - pos: 2.5,31.5 - parent: 21002 - - 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: - - 22365 - - 22364 - - 22363 - - 22362 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22574 - components: - - type: Transform - pos: 26.5,41.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22247 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 25364 - components: - - type: Transform - pos: 19.5,-31.5 - parent: 21002 - - 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: - - 25365 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 25516 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 21002 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 27840 - - 25520 - - 25517 - - 25518 - - 25519 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 26770 - components: - - type: Transform - pos: 37.5,-17.5 - parent: 21002 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 26771 - - 26772 - - 26773 - - 26774 - - 26775 - - 26776 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateInternals entities: - uid: 11961 @@ -78897,6 +78355,293 @@ entities: - type: Transform pos: 22.5,4.5 parent: 2 +- proto: CratePermaEscapeSpawner + entities: + - uid: 26395 + components: + - type: Transform + pos: 60.5,29.5 + parent: 21002 + - uid: 26407 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 21002 + - uid: 26523 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 21002 + - uid: 26711 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 21002 + - uid: 26770 + components: + - type: Transform + pos: 90.5,-3.5 + parent: 21002 + - uid: 26771 + components: + - type: Transform + pos: 88.5,-7.5 + parent: 21002 + - uid: 26772 + components: + - type: Transform + pos: 30.5,21.5 + parent: 21002 + - uid: 26773 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 21002 + - uid: 26774 + components: + - type: Transform + pos: 26.5,17.5 + parent: 21002 + - uid: 26775 + components: + - type: Transform + pos: 66.5,22.5 + parent: 21002 + - uid: 26776 + components: + - type: Transform + pos: 67.5,30.5 + parent: 21002 + - uid: 26825 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 21002 + - uid: 26841 + components: + - type: Transform + pos: 58.5,2.5 + parent: 21002 + - uid: 26968 + components: + - type: Transform + pos: 54.5,32.5 + parent: 21002 + - uid: 27221 + components: + - type: Transform + pos: 2.5,31.5 + parent: 21002 + - uid: 27391 + components: + - type: Transform + pos: 49.5,15.5 + parent: 21002 + - uid: 27690 + components: + - type: Transform + pos: 26.5,12.5 + parent: 21002 + - uid: 27705 + components: + - type: Transform + pos: 67.5,54.5 + parent: 21002 + - uid: 27712 + components: + - type: Transform + pos: 46.5,25.5 + parent: 21002 + - uid: 27840 + components: + - type: Transform + pos: 72.5,-12.5 + parent: 21002 + - uid: 27907 + components: + - type: Transform + pos: 51.5,-18.5 + parent: 21002 + - uid: 28925 + components: + - type: Transform + pos: 90.5,-6.5 + parent: 21002 + - uid: 28926 + components: + - type: Transform + pos: 40.5,20.5 + parent: 21002 + - uid: 28927 + components: + - type: Transform + pos: 21.5,36.5 + parent: 21002 + - uid: 28928 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 21002 + - uid: 28929 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 21002 + - uid: 28930 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 21002 + - uid: 28931 + components: + - type: Transform + pos: 75.5,-1.5 + parent: 21002 + - uid: 28932 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 21002 + - uid: 28933 + components: + - type: Transform + pos: 50.5,2.5 + parent: 21002 + - uid: 28934 + components: + - type: Transform + pos: 59.5,23.5 + parent: 21002 + - uid: 28935 + components: + - type: Transform + pos: 22.5,21.5 + parent: 21002 + - uid: 28936 + components: + - type: Transform + pos: 49.5,12.5 + parent: 21002 + - uid: 28937 + components: + - type: Transform + pos: 4.5,25.5 + parent: 21002 + - uid: 28938 + components: + - type: Transform + pos: 19.5,14.5 + parent: 21002 + - uid: 28939 + components: + - type: Transform + pos: 26.5,41.5 + parent: 21002 + - uid: 28940 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 21002 + - uid: 28941 + components: + - type: Transform + pos: 5.5,28.5 + parent: 21002 + - uid: 28942 + components: + - type: Transform + pos: 24.5,37.5 + parent: 21002 + - uid: 28943 + components: + - type: Transform + pos: 45.5,1.5 + parent: 21002 + - uid: 28944 + components: + - type: Transform + pos: 46.5,18.5 + parent: 21002 + - uid: 28945 + components: + - type: Transform + pos: 60.5,15.5 + parent: 21002 + - uid: 28946 + components: + - type: Transform + pos: 45.5,29.5 + parent: 21002 + - uid: 28947 + components: + - type: Transform + pos: 14.5,25.5 + parent: 21002 + - uid: 28948 + components: + - type: Transform + pos: 56.5,3.5 + parent: 21002 + - uid: 28949 + components: + - type: Transform + pos: 54.5,40.5 + parent: 21002 + - uid: 28950 + components: + - type: Transform + pos: 68.5,43.5 + parent: 21002 + - uid: 28951 + components: + - type: Transform + pos: 70.5,52.5 + parent: 21002 + - uid: 28952 + components: + - type: Transform + pos: 69.5,50.5 + parent: 21002 + - uid: 28953 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 21002 + - uid: 28954 + components: + - type: Transform + pos: 85.5,6.5 + parent: 21002 + - uid: 28955 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 21002 + - uid: 28956 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 21002 + - uid: 28957 + components: + - type: Transform + pos: 66.5,-3.5 + parent: 21002 + - uid: 28958 + components: + - type: Transform + pos: 76.5,-19.5 + parent: 21002 + - uid: 28959 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 21002 + - uid: 28960 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 21002 - proto: CratePrivateSecure entities: - uid: 15009 @@ -92437,6 +92182,9 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 2 + - type: Door + secondsUntilStateChange: -578.74854 + state: Closing - type: DeviceNetwork deviceLists: - 18275 @@ -96759,14 +96507,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13748 components: - type: Transform @@ -96849,14 +96589,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13774 components: - type: Transform @@ -98247,6 +97979,22 @@ entities: - type: Physics canCollide: True bodyType: Dynamic + - uid: 22199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22274 components: - type: Transform @@ -98308,6 +98056,21 @@ entities: - type: Transform pos: -32.5,27.5 parent: 2 + - uid: 23528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23532 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 23541 components: - type: Transform @@ -98410,6 +98173,29 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25559 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 26448 components: - type: Transform @@ -101297,14 +101083,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13188 components: - type: Transform @@ -101433,14 +101211,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13211 components: - type: Transform @@ -101707,13 +101477,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13262 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13263 components: - type: Transform @@ -102178,13 +101941,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13345 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13346 components: - type: Transform @@ -118239,6 +117995,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 19960 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 19965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21142 components: - type: Transform @@ -118519,11 +118290,42 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 21532 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 21654 components: - type: Transform pos: -34.5,24.5 parent: 2 + - uid: 22203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 22206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22320 components: - type: Transform @@ -118540,6 +118342,54 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 22361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22450 components: - type: Transform @@ -118671,6 +118521,14 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 22574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22661 components: - type: Transform @@ -119323,6 +119181,21 @@ entities: - type: Transform pos: -32.5,25.5 parent: 2 + - uid: 23533 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 23538 components: - type: Transform @@ -119643,6 +119516,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 24241 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 24242 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 25219 components: - type: Transform @@ -119945,6 +119832,105 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25362 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25364 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25365 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25401 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25420 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 25562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 26460 components: - type: Transform @@ -123070,6 +123056,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 19545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21166 components: - type: Transform @@ -123085,12 +123087,27 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 21344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21742 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 2 + - uid: 22204 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 22671 components: - type: Transform @@ -123199,6 +123216,22 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 27898 components: - type: Transform @@ -125727,6 +125760,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 23535 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 23704 components: - type: Transform @@ -125765,6 +125805,22 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-44.5 parent: 21002 + - uid: 25563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 25571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 27894 components: - type: Transform @@ -127507,6 +127563,22 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 22200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 22490 components: - type: Transform @@ -127643,6 +127715,14 @@ entities: - 21371 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 25649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 26474 components: - type: Transform @@ -127707,50 +127787,6 @@ entities: - type: Transform pos: 39.5,11.5 parent: 2 -- proto: GlowstickYellow - entities: - - uid: 26771 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26772 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26773 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26774 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26775 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26776 - components: - - type: Transform - parent: 26770 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: GrassBattlemap entities: - uid: 9690 @@ -136175,7 +136211,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -32977.18 + secondsUntilStateChange: -37410.598 state: Opening - uid: 5211 components: @@ -136821,13 +136857,6 @@ entities: rot: 3.141592653589793 rad pos: 47.40576,3.310136 parent: 2 - - uid: 25365 - components: - - type: Transform - parent: 25364 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: JugWeldingFuel entities: - uid: 21351 @@ -138606,15 +138635,6 @@ entities: rot: 3.141592653589793 rad pos: -28.405407,4.838667 parent: 2 -- proto: MindShieldImplanter - entities: - - uid: 27840 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: MiningWindow entities: - uid: 548 @@ -139760,20 +139780,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21846 - components: - - type: Transform - parent: 21845 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21847 - components: - - type: Transform - parent: 21845 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Pen entities: - uid: 1052 @@ -139866,27 +139872,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.686314,-51.342354 parent: 2 - - uid: 22199 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22201 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22203 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 22775 components: - type: Transform @@ -144271,7 +144256,7 @@ entities: pos: -26.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - uid: 9020 components: - type: Transform @@ -144279,7 +144264,7 @@ entities: pos: -24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0335FCFF' - proto: Protolathe entities: - uid: 7789 @@ -151232,13 +151217,6 @@ entities: parent: 2 - proto: RubberStampApproved entities: - - uid: 22202 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23360 components: - type: Transform @@ -151251,13 +151229,6 @@ entities: parent: 2 - proto: RubberStampDenied entities: - - uid: 22204 - components: - - type: Transform - parent: 22197 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23361 components: - type: Transform @@ -151653,20 +151624,6 @@ entities: - type: Transform pos: -27.53622,43.555347 parent: 2 - - uid: 21560 - components: - - type: Transform - parent: 21559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21561 - components: - - type: Transform - parent: 21559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 28346 components: - type: Transform @@ -152899,6 +152856,8 @@ entities: - Pressed: Toggle 9965: - Pressed: Toggle + 10308: + - Pressed: DoorBolt - uid: 10588 components: - type: MetaData @@ -156659,183 +156618,6 @@ entities: - type: Transform pos: -17.5,28.5 parent: 2 -- proto: SpaceTickCube - entities: - - uid: 25517 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25518 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25519 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25520 - components: - - type: Transform - parent: 25516 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceTickSpawner - entities: - - uid: 21344 - components: - - type: Transform - pos: 75.5,-1.5 - parent: 21002 - - uid: 21532 - components: - - type: Transform - pos: 51.5,-9.5 - parent: 21002 - - uid: 21773 - components: - - type: Transform - pos: 50.5,2.5 - parent: 21002 - - uid: 22147 - components: - - type: Transform - pos: 59.5,23.5 - parent: 21002 - - uid: 23528 - components: - - type: Transform - pos: 22.5,21.5 - parent: 21002 - - uid: 23532 - components: - - type: Transform - pos: 49.5,12.5 - parent: 21002 - - uid: 23533 - components: - - type: Transform - pos: 4.5,25.5 - parent: 21002 - - uid: 23534 - components: - - type: Transform - pos: 26.5,12.5 - parent: 21002 - - uid: 23535 - components: - - type: Transform - pos: 21.5,36.5 - parent: 21002 - - uid: 25362 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 21002 - - uid: 25555 - components: - - type: Transform - pos: 5.5,28.5 - parent: 21002 - - uid: 25557 - components: - - type: Transform - pos: 24.5,37.5 - parent: 21002 - - uid: 25558 - components: - - type: Transform - pos: 45.5,1.5 - parent: 21002 - - uid: 25560 - components: - - type: Transform - pos: 46.5,18.5 - parent: 21002 - - uid: 25561 - components: - - type: Transform - pos: 60.5,15.5 - parent: 21002 - - uid: 25562 - components: - - type: Transform - pos: 45.5,29.5 - parent: 21002 - - uid: 25563 - components: - - type: Transform - pos: 14.5,25.5 - parent: 21002 - - uid: 25649 - components: - - type: Transform - pos: 56.5,3.5 - parent: 21002 - - uid: 25960 - components: - - type: Transform - pos: 54.5,40.5 - parent: 21002 - - uid: 26097 - components: - - type: Transform - pos: 68.5,43.5 - parent: 21002 - - uid: 26114 - components: - - type: Transform - pos: 70.5,52.5 - parent: 21002 - - uid: 26172 - components: - - type: Transform - pos: 69.5,50.5 - parent: 21002 - - uid: 26407 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 21002 - - uid: 26523 - components: - - type: Transform - pos: 85.5,6.5 - parent: 21002 - - uid: 26825 - components: - - type: Transform - pos: 29.5,-12.5 - parent: 21002 - - uid: 26841 - components: - - type: Transform - pos: 31.5,-17.5 - parent: 21002 - - uid: 27391 - components: - - type: Transform - pos: 66.5,-3.5 - parent: 21002 - - uid: 27705 - components: - - type: Transform - pos: 72.5,-12.5 - parent: 21002 - - uid: 27907 - components: - - type: Transform - pos: 51.5,-18.5 - parent: 21002 - proto: SpaceVillainArcadeComputerCircuitboard entities: - uid: 5813 @@ -158358,22 +158140,6 @@ entities: - type: Transform pos: 44.5,-11.5 parent: 2 -- proto: StimpackMini - entities: - - uid: 22144 - components: - - type: Transform - parent: 22143 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22145 - components: - - type: Transform - parent: 22143 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Stool entities: - uid: 930 @@ -162943,22 +162709,6 @@ entities: - type: Transform pos: 16.02112,29.37049 parent: 2 -- proto: TowercapSeeds - entities: - - uid: 21648 - components: - - type: Transform - parent: 21647 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21649 - components: - - type: Transform - parent: 21647 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ToyAi entities: - uid: 12731 @@ -174990,12 +174740,133 @@ entities: - type: Transform pos: 23.5,-9.5 parent: 21002 + - uid: 21559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,77.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: 5.5,72.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: 4.5,72.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: 3.5,72.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: 3.5,71.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: 3.5,70.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: 21.5,72.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + pos: 22.5,72.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: 23.5,72.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + pos: 23.5,71.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: 23.5,70.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + pos: 19.5,77.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + pos: 18.5,77.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: 17.5,77.5 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: 16.5,77.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: 15.5,77.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: 14.5,77.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: 13.5,77.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: 12.5,77.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + pos: 10.5,77.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 - uid: 22168 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,24.5 parent: 21002 + - uid: 22197 + components: + - type: Transform + pos: 8.5,77.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + pos: 7.5,77.5 + parent: 2 - uid: 22210 components: - type: Transform @@ -176548,6 +176419,12 @@ entities: - type: Transform pos: 25.5,-9.5 parent: 21002 + - uid: 26172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,77.5 + parent: 2 - uid: 26691 components: - type: Transform @@ -182134,15 +182011,6 @@ entities: - type: Transform pos: 45.517193,-35.503773 parent: 2 -- proto: WeaponPistolMk58 - entities: - - uid: 22247 - components: - - type: Transform - parent: 22574 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponPistolN1984 entities: - uid: 4204 @@ -182150,15 +182018,6 @@ entities: - type: Transform pos: 32.46886,-20.362041 parent: 2 -- proto: WeaponProtoKineticAccelerator - entities: - - uid: 21983 - components: - - type: Transform - parent: 21982 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponRifleFoam entities: - uid: 15416 @@ -183950,7 +183809,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -378181.78 + secondsUntilStateChange: -382615.2 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 3cbcd406524..ae09e9e5fd2 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -78,7 +78,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: WQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -90,7 +90,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 @@ -118,7 +118,7 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: WQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 @@ -142,7 +142,7 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD + tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAD version: 6 0,-3: ind: 0,-3 @@ -174,7 +174,7 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABBwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAABwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABBwAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -210,7 +210,7 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -361,6 +361,11 @@ entities: 867: -55,-9 868: -53,-11 1369: -19,-19 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1607: -13,-39 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -938,6 +943,12 @@ entities: 1396: -22,-13 1397: -22,-12 1606: 5,-4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 1609: -49,-26 - node: cleanable: True color: '#FFFFFFFF' @@ -2306,6 +2317,12 @@ entities: id: SpaceStationSign7 decals: 953: 0,-13 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 1608: -13,-40 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -4280,6 +4297,21 @@ entities: - 12226 - 1853 - 1852 + - uid: 9593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 4812 + - type: DeviceList + devices: + - 12321 + - 5071 + - 5072 + - 5224 + - 5223 + - 5225 + - 5222 - uid: 12171 components: - type: Transform @@ -4956,21 +4988,6 @@ entities: - 8591 - 8758 - 8770 - - uid: 12322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 4812 - - type: DeviceList - devices: - - 12321 - - 5072 - - 5071 - - 5223 - - 5222 - - 5224 - - 5225 - uid: 12325 components: - type: Transform @@ -5561,16 +5578,34 @@ entities: - type: Transform pos: 32.5,2.5 parent: 4812 + - uid: 8476 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 4812 - uid: 9614 components: - type: Transform pos: -41.5,-27.5 parent: 4812 + - uid: 9637 + components: + - type: Transform + pos: -17.5,30.5 + parent: 4812 - uid: 9651 components: - type: Transform pos: -11.5,-56.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 12107: + - DoorStatus: Close + 9656: + - DoorStatus: Close - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 6362 @@ -5578,11 +5613,23 @@ entities: - type: Transform pos: -47.5,-3.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6363: + - DoorStatus: DoorBolt - uid: 6363 components: - type: Transform pos: -50.5,-4.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6362: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 2919 @@ -5590,11 +5637,23 @@ entities: - type: Transform pos: 25.5,14.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2920: + - DoorStatus: DoorBolt - uid: 2920 components: - type: Transform pos: 28.5,14.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2919: + - DoorStatus: DoorBolt - uid: 3040 components: - type: Transform @@ -5612,16 +5671,34 @@ entities: - type: Transform pos: -56.5,-22.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10405: + - DoorStatus: DoorBolt - uid: 11139 components: - type: Transform pos: 38.5,-36.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11141: + - DoorStatus: DoorBolt - uid: 11141 components: - type: Transform pos: 35.5,-36.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11139: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 3760 @@ -5636,6 +5713,25 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-43.5 parent: 4812 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 3769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 4812 + - uid: 8492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 4812 + - uid: 10917 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 4812 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3190 @@ -5691,11 +5787,23 @@ entities: - type: Transform pos: -10.5,-59.5 parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9651: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - uid: 12107 components: - type: Transform pos: -11.5,-59.5 parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 9651: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockExternalLocked entities: - uid: 2737 @@ -5703,36 +5811,78 @@ entities: - type: Transform pos: 12.5,31.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2814: + - DoorStatus: DoorBolt - uid: 2814 components: - type: Transform pos: 12.5,33.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2737: + - DoorStatus: DoorBolt - uid: 3349 components: - type: Transform pos: 21.5,10.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3350: + - DoorStatus: DoorBolt - uid: 3350 components: - type: Transform pos: 19.5,10.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3349: + - DoorStatus: DoorBolt - uid: 3686 components: - type: Transform pos: 3.5,44.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3687: + - DoorStatus: DoorBolt - uid: 3687 components: - type: Transform pos: 4.5,45.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3686: + - DoorStatus: DoorBolt - uid: 10405 components: - type: Transform pos: -54.5,-22.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10406: + - DoorStatus: DoorBolt - proto: AirlockFreezer entities: - uid: 3119 @@ -6237,6 +6387,12 @@ entities: - type: Transform pos: 25.5,-34.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11676: + - DoorStatus: DoorBolt - uid: 11350 components: - type: Transform @@ -6252,6 +6408,12 @@ entities: - type: Transform pos: 25.5,-37.5 parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11326: + - DoorStatus: DoorBolt - uid: 11802 components: - type: Transform @@ -6845,6 +7007,9 @@ entities: - type: Transform pos: -10.5,-40.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - uid: 12326 components: - type: Transform @@ -8016,16 +8181,6 @@ entities: - type: Transform pos: 37.5,-21.5 parent: 4812 - - uid: 8458 - components: - - type: Transform - pos: -19.5,36.5 - parent: 4812 - - uid: 8459 - components: - - type: Transform - pos: -19.5,35.5 - parent: 4812 - uid: 8460 components: - type: Transform @@ -8056,31 +8211,6 @@ entities: - type: Transform pos: -20.5,31.5 parent: 4812 - - uid: 8466 - components: - - type: Transform - pos: -19.5,31.5 - parent: 4812 - - uid: 8467 - components: - - type: Transform - pos: -18.5,31.5 - parent: 4812 - - uid: 8468 - components: - - type: Transform - pos: -17.5,31.5 - parent: 4812 - - uid: 8469 - components: - - type: Transform - pos: -16.5,31.5 - parent: 4812 - - uid: 8470 - components: - - type: Transform - pos: -15.5,31.5 - parent: 4812 - uid: 8471 components: - type: Transform @@ -8101,101 +8231,11 @@ entities: - type: Transform pos: -14.5,32.5 parent: 4812 - - uid: 8475 - components: - - type: Transform - pos: -15.5,32.5 - parent: 4812 - - uid: 8476 - components: - - type: Transform - pos: -18.5,32.5 - parent: 4812 - - uid: 8479 - components: - - type: Transform - pos: -19.5,32.5 - parent: 4812 - - uid: 8480 - components: - - type: Transform - pos: -19.5,33.5 - parent: 4812 - - uid: 8483 - components: - - type: Transform - pos: -16.5,33.5 - parent: 4812 - uid: 8484 components: - type: Transform pos: -15.5,33.5 parent: 4812 - - uid: 8485 - components: - - type: Transform - pos: -15.5,34.5 - parent: 4812 - - uid: 8486 - components: - - type: Transform - pos: -16.5,34.5 - parent: 4812 - - uid: 8487 - components: - - type: Transform - pos: -17.5,34.5 - parent: 4812 - - uid: 8488 - components: - - type: Transform - pos: -18.5,34.5 - parent: 4812 - - uid: 8489 - components: - - type: Transform - pos: -19.5,34.5 - parent: 4812 - - uid: 8490 - components: - - type: Transform - pos: -18.5,35.5 - parent: 4812 - - uid: 8491 - components: - - type: Transform - pos: -17.5,35.5 - parent: 4812 - - uid: 8492 - components: - - type: Transform - pos: -16.5,35.5 - parent: 4812 - - uid: 8493 - components: - - type: Transform - pos: -17.5,36.5 - parent: 4812 - - uid: 8494 - components: - - type: Transform - pos: -18.5,36.5 - parent: 4812 - - uid: 8495 - components: - - type: Transform - pos: -18.5,37.5 - parent: 4812 - - uid: 8496 - components: - - type: Transform - pos: -18.5,38.5 - parent: 4812 - - uid: 8497 - components: - - type: Transform - pos: -17.5,38.5 - parent: 4812 - uid: 8498 components: - type: Transform @@ -8356,31 +8396,6 @@ entities: - type: Transform pos: -43.5,-32.5 parent: 4812 - - uid: 9630 - components: - - type: Transform - pos: -46.5,-29.5 - parent: 4812 - - uid: 9631 - components: - - type: Transform - pos: -46.5,-30.5 - parent: 4812 - - uid: 9632 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 4812 - - uid: 9633 - components: - - type: Transform - pos: -46.5,-28.5 - parent: 4812 - - uid: 9637 - components: - - type: Transform - pos: -46.5,-26.5 - parent: 4812 - uid: 9638 components: - type: Transform @@ -9411,11 +9426,6 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 4812 - - uid: 12144 - components: - - type: Transform - pos: -48.5,-25.5 - parent: 4812 - proto: AsteroidRockMining entities: - uid: 12146 @@ -9423,67 +9433,96 @@ entities: - type: Transform pos: -52.5,-3.5 parent: 4812 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 2781 components: - type: Transform - pos: 23.5,25.5 + rot: -1.5707963267948966 rad + pos: -13.5,-39.5 parent: 4812 - - uid: 2845 + - uid: 8478 components: - type: Transform + rot: 1.5707963267948966 rad pos: 23.5,27.5 parent: 4812 - - uid: 3260 + - uid: 8479 components: - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 4812 + - uid: 8480 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 34.5,-7.5 parent: 4812 - - uid: 3263 + - uid: 8481 components: - type: Transform - pos: 34.5,0.5 + rot: 1.5707963267948966 rad + pos: 34.5,2.5 parent: 4812 - - uid: 3423 + - uid: 8483 components: - type: Transform + rot: 1.5707963267948966 rad pos: 34.5,-5.5 parent: 4812 - - uid: 3424 + - uid: 8485 components: - type: Transform - pos: 34.5,2.5 + rot: 1.5707963267948966 rad + pos: 34.5,0.5 parent: 4812 - - uid: 3455 + - uid: 8486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 4812 + - uid: 8487 components: - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 4812 - - uid: 3456 + - uid: 8488 components: - type: Transform - pos: 4.5,-4.5 + rot: -1.5707963267948966 rad + pos: -14.5,-50.5 parent: 4812 - - uid: 3766 + - uid: 8489 components: - type: Transform - pos: -13.5,-50.5 + rot: 1.5707963267948966 rad + pos: -7.5,-50.5 parent: 4812 - - uid: 3767 + - uid: 8490 components: - type: Transform - pos: -8.5,-50.5 + rot: 1.5707963267948966 rad + pos: -7.5,-43.5 parent: 4812 - - uid: 3768 + - uid: 8491 components: - type: Transform - pos: -8.5,-43.5 + rot: -1.5707963267948966 rad + pos: -14.5,-43.5 parent: 4812 - - uid: 3769 + - uid: 8494 components: - type: Transform - pos: -13.5,-43.5 + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 4812 + - uid: 9630 + components: + - type: Transform + pos: -47.5,-26.5 parent: 4812 - proto: AtmosFixBlockerMarker entities: @@ -16869,6 +16908,21 @@ entities: - type: Transform pos: -17.5,28.5 parent: 4812 + - uid: 8458 + components: + - type: Transform + pos: -17.5,31.5 + parent: 4812 + - uid: 8459 + components: + - type: Transform + pos: -17.5,30.5 + parent: 4812 + - uid: 8466 + components: + - type: Transform + pos: -17.5,29.5 + parent: 4812 - uid: 8908 components: - type: Transform @@ -28442,6 +28496,13 @@ entities: - Steel - Glass - Gold +- proto: CleanerDispenser + entities: + - uid: 8493 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 4812 - proto: ClosetBombFilled entities: - uid: 6331 @@ -28633,6 +28694,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 2845 + components: + - type: Transform + pos: -18.5,31.5 + parent: 4812 - uid: 3786 components: - type: Transform @@ -28915,6 +28981,11 @@ entities: showEnts: False occludes: True ent: null + - uid: 9632 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 4812 - uid: 10407 components: - type: Transform @@ -29063,6 +29134,13 @@ entities: showEnts: False occludes: True ent: null +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 9631 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 4812 - proto: ClosetFireFilled entities: - uid: 1514 @@ -29236,43 +29314,11 @@ entities: showEnts: False occludes: True ent: null - - uid: 8328 + - uid: 8456 components: - type: Transform - pos: -17.5,29.5 + pos: -16.5,31.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 - - 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: 9688 components: - type: Transform @@ -30292,16 +30338,16 @@ entities: parent: 4812 - proto: ClothingEyesEyepatch entities: - - uid: 8481 - components: - - type: Transform - pos: -16.839548,32.557995 - parent: 4812 - uid: 9657 components: - type: Transform pos: 25.533524,-9.424093 parent: 4812 + - uid: 12144 + components: + - type: Transform + pos: -14.245123,35.0185 + parent: 473 - proto: ClothingEyesGlasses entities: - uid: 6205 @@ -30522,10 +30568,10 @@ entities: parent: 4812 - proto: ClothingHeadHatPirate entities: - - uid: 11675 + - uid: 11933 components: - type: Transform - pos: -17.677834,32.905758 + pos: -21.445757,35.638134 parent: 4812 - proto: ClothingHeadHatPumpkin entities: @@ -30881,10 +30927,10 @@ entities: parent: 4812 - proto: ClothingOuterCoatPirate entities: - - uid: 8478 + - uid: 11934 components: - type: Transform - pos: -17.511423,32.47987 + pos: -23.764275,32.548626 parent: 4812 - proto: ClothingOuterGhostSheet entities: @@ -32771,6 +32817,23 @@ entities: - type: Transform pos: -31.5,-6.5 parent: 4812 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 3980 + components: + - type: Transform + pos: -17.5,31.5 + parent: 4812 + - uid: 8475 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 4812 + - uid: 9633 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 4812 - proto: DefaultStationBeaconEvac entities: - uid: 12480 @@ -35718,15 +35781,15 @@ entities: parent: 4812 - proto: DrinkLithiumFlask entities: - - uid: 3611 + - uid: 3423 components: - type: Transform - pos: -18.350801,33.411205 + pos: -21.4602,33.34266 parent: 4812 - - uid: 12466 + - uid: 11675 components: - type: Transform - pos: -18.56759,33.562008 + pos: -21.301329,33.55921 parent: 4812 - proto: DrinkMugBlack entities: @@ -37253,11 +37316,17 @@ entities: - type: Transform pos: -11.5,-36.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - uid: 5072 components: - type: Transform pos: -10.5,-36.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - uid: 5308 components: - type: Transform @@ -51284,6 +51353,9 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-52.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5225 @@ -51292,6 +51364,9 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-41.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#0335FCFF' - uid: 5697 @@ -52035,6 +52110,9 @@ entities: rot: 3.141592653589793 rad pos: -11.5,-51.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5224 @@ -52043,6 +52121,9 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-42.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5699 @@ -53122,11 +53203,28 @@ entities: - type: Transform pos: 22.5,29.5 parent: 4812 + - uid: 3611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,38.5 + parent: 4812 - uid: 3701 components: - type: Transform pos: 10.5,54.5 parent: 4812 + - uid: 3767 + components: + - type: Transform + pos: -19.5,37.5 + parent: 4812 + - uid: 3768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,39.5 + parent: 4812 - uid: 4385 components: - type: Transform @@ -53412,6 +53510,17 @@ entities: - type: Transform pos: 32.5,-12.5 parent: 4812 + - uid: 4693 + components: + - type: Transform + pos: -15.5,35.5 + parent: 4812 + - uid: 4695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,38.5 + parent: 4812 - uid: 4722 components: - type: Transform @@ -53595,7 +53704,8 @@ entities: - uid: 4768 components: - type: Transform - pos: -12.5,-38.5 + rot: 3.141592653589793 rad + pos: -19.5,39.5 parent: 4812 - uid: 4769 components: @@ -54235,6 +54345,12 @@ entities: - type: Transform pos: -7.5,-27.5 parent: 4812 + - uid: 7635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 4812 - uid: 7915 components: - type: Transform @@ -54388,6 +54504,30 @@ entities: - type: Transform pos: -23.5,26.5 parent: 4812 + - uid: 8328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,32.5 + parent: 4812 + - uid: 8467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 4812 + - uid: 8470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-30.5 + parent: 4812 + - uid: 8496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-26.5 + parent: 4812 - uid: 8526 components: - type: Transform @@ -55118,11 +55258,6 @@ entities: - type: Transform pos: -14.5,-59.5 parent: 4812 - - uid: 10609 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 4812 - uid: 10632 components: - type: Transform @@ -55158,6 +55293,11 @@ entities: - type: Transform pos: 11.5,-42.5 parent: 4812 + - uid: 11337 + components: + - type: Transform + pos: -20.5,37.5 + parent: 4812 - uid: 11354 components: - type: Transform @@ -55318,6 +55458,11 @@ entities: - type: Transform pos: 20.5,-39.5 parent: 4812 + - uid: 11935 + components: + - type: Transform + pos: -19.5,33.5 + parent: 4812 - uid: 12108 components: - type: Transform @@ -58288,6 +58433,11 @@ entities: - type: Transform pos: 26.5,-22.5 parent: 4812 + - uid: 8495 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 4812 - uid: 8849 components: - type: Transform @@ -58318,11 +58468,6 @@ entities: - type: Transform pos: -34.5,8.5 parent: 4812 - - uid: 10917 - components: - - type: Transform - pos: -47.5,-23.5 - parent: 4812 - uid: 11787 components: - type: Transform @@ -61322,6 +61467,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 3260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,31.5 + parent: 4812 - uid: 3280 components: - type: Transform @@ -63655,11 +63806,6 @@ entities: - type: Transform pos: -9.5,-54.5 parent: 4812 - - uid: 4695 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 4812 - uid: 4697 components: - type: Transform @@ -64365,6 +64511,12 @@ entities: - type: Transform pos: -21.5,26.5 parent: 4812 + - uid: 8468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-26.5 + parent: 4812 - uid: 8627 components: - type: Transform @@ -64570,11 +64722,6 @@ entities: - type: Transform pos: -43.5,-25.5 parent: 4812 - - uid: 9593 - components: - - type: Transform - pos: -47.5,-24.5 - parent: 4812 - uid: 9599 components: - type: Transform @@ -65636,8 +65783,6 @@ entities: - type: Transform pos: -34.5,0.5 parent: 4812 -- proto: SignAtmosMinsky - entities: - uid: 8721 components: - type: Transform @@ -65690,8 +65835,6 @@ entities: - type: Transform pos: -10.5,-19.5 parent: 4812 -- proto: SignChemistry1 - entities: - uid: 6642 components: - type: Transform @@ -65946,13 +66089,6 @@ entities: - type: Transform pos: -12.5,-41.5 parent: 4812 -- proto: SignDrones - entities: - - uid: 11937 - components: - - type: Transform - pos: -12.5,18.5 - parent: 4812 - proto: SignElectricalMed entities: - uid: 3978 @@ -66044,20 +66180,16 @@ entities: parent: 4812 - proto: SignHydro1 entities: - - uid: 1076 + - uid: 1075 components: - type: Transform - pos: -7.5,-10.5 + pos: -6.5,-4.5 parent: 4812 -- proto: SignHydro2 - entities: - - uid: 1075 + - uid: 1076 components: - type: Transform - pos: -6.5,-4.5 + pos: -7.5,-10.5 parent: 4812 -- proto: SignHydro3 - entities: - uid: 6685 components: - type: Transform @@ -66082,19 +66214,19 @@ entities: - type: Transform pos: -22.5,-13.5 parent: 4812 -- proto: SignMedical +- proto: SignMaterials entities: - - uid: 7299 + - uid: 11937 components: - type: Transform - pos: -7.5,-23.5 + pos: -12.5,18.5 parent: 4812 -- proto: SignMinerDock +- proto: SignMedical entities: - - uid: 3344 + - uid: 7299 components: - type: Transform - pos: 21.5,16.5 + pos: -7.5,-23.5 parent: 4812 - proto: SignMorgue entities: @@ -66184,20 +66316,16 @@ entities: parent: 4812 - proto: SignScience entities: - - uid: 6176 + - uid: 6175 components: - type: Transform - pos: 2.5,-19.5 + pos: 8.5,-13.5 parent: 4812 -- proto: SignScience1 - entities: - - uid: 6175 + - uid: 6176 components: - type: Transform - pos: 8.5,-13.5 + pos: 2.5,-19.5 parent: 4812 -- proto: SignScience2 - entities: - uid: 6177 components: - type: Transform @@ -66286,6 +66414,13 @@ entities: - type: Transform pos: -1.5,-30.5 parent: 4812 +- proto: SignShipDock + entities: + - uid: 3344 + components: + - type: Transform + pos: 21.5,16.5 + parent: 4812 - proto: SignSmoking entities: - uid: 8607 @@ -66372,7 +66507,7 @@ entities: - type: Transform pos: -21.5,12.5 parent: 4812 -- proto: SignToxins2 +- proto: SignToxins entities: - uid: 6645 components: @@ -66386,7 +66521,7 @@ entities: - type: Transform pos: -32.5,-32.5 parent: 4812 -- proto: SignXenolab +- proto: SignXenobio entities: - uid: 11143 components: @@ -72263,6 +72398,11 @@ entities: - type: Transform pos: 20.5,9.5 parent: 4812 + - uid: 3263 + components: + - type: Transform + pos: -19.5,31.5 + parent: 4812 - uid: 3288 components: - type: Transform @@ -72293,6 +72433,11 @@ entities: - type: Transform pos: 23.5,6.5 parent: 4812 + - uid: 3424 + components: + - type: Transform + pos: -15.5,31.5 + parent: 4812 - uid: 3428 components: - type: Transform @@ -72328,6 +72473,16 @@ entities: - type: Transform pos: 13.5,31.5 parent: 4812 + - uid: 3455 + components: + - type: Transform + pos: -15.5,32.5 + parent: 4812 + - uid: 3456 + components: + - type: Transform + pos: -19.5,32.5 + parent: 4812 - uid: 3486 components: - type: Transform @@ -72888,6 +73043,11 @@ entities: - type: Transform pos: 22.5,2.5 parent: 4812 + - uid: 3766 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 4812 - uid: 3990 components: - type: Transform @@ -73128,11 +73288,6 @@ entities: - type: Transform pos: -12.5,-53.5 parent: 4812 - - uid: 4693 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 4812 - uid: 4694 components: - type: Transform @@ -74076,11 +74231,6 @@ entities: - type: Transform pos: -23.5,-24.5 parent: 4812 - - uid: 7635 - components: - - type: Transform - pos: -17.5,30.5 - parent: 4812 - uid: 7636 components: - type: Transform @@ -74711,6 +74861,17 @@ entities: - type: Transform pos: -35.5,8.5 parent: 4812 + - uid: 8469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-26.5 + parent: 4812 + - uid: 8497 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 4812 - uid: 8621 components: - type: Transform @@ -77643,11 +77804,6 @@ entities: - type: Transform pos: 10.5,40.5 parent: 4812 - - uid: 3980 - components: - - type: Transform - pos: -17.5,37.5 - parent: 4812 - uid: 3981 components: - type: Transform @@ -78853,11 +79009,6 @@ entities: - type: Transform pos: -20.5,28.5 parent: 4812 - - uid: 8456 - components: - - type: Transform - pos: -19.5,37.5 - parent: 4812 - uid: 8457 components: - type: Transform @@ -79003,11 +79154,6 @@ entities: - type: Transform pos: -42.5,-22.5 parent: 4812 - - uid: 10404 - components: - - type: Transform - pos: -47.5,-28.5 - parent: 4812 - uid: 10613 components: - type: Transform @@ -80438,6 +80584,18 @@ entities: - type: Transform pos: -28.5,-26.5 parent: 4812 + - uid: 10404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 4812 + - uid: 10609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,32.5 + parent: 4812 - proto: WindowDirectional entities: - uid: 890 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 6954fe7892d..2691ed2a787 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -7294,11 +7294,27 @@ entities: - type: Transform pos: 37.5,-39.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4391: + - DoorStatus: DoorBolt - uid: 4391 components: - type: Transform pos: 35.5,-37.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 4385: + - DoorStatus: DoorBolt + 4392: + - DoorStatus: DoorBolt + 4390: + - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 69 @@ -7306,21 +7322,45 @@ entities: - type: Transform pos: 11.5,37.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 70: + - DoorStatus: DoorBolt - uid: 70 components: - type: Transform pos: 11.5,35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 69: + - DoorStatus: DoorBolt - uid: 171 components: - type: Transform pos: 15.5,-41.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 173: + - DoorStatus: DoorBolt - uid: 173 components: - type: Transform pos: 13.5,-43.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 171: + - DoorStatus: DoorBolt - uid: 225 components: - type: Transform @@ -7336,31 +7376,67 @@ entities: - type: Transform pos: 74.5,45.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2128: + - DoorStatus: DoorBolt - uid: 2128 components: - type: Transform pos: 72.5,45.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1902: + - DoorStatus: DoorBolt - uid: 4385 components: - type: Transform pos: 33.5,-39.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4391: + - DoorStatus: DoorBolt - uid: 4392 components: - type: Transform pos: 35.5,-41.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4391: + - DoorStatus: DoorBolt - uid: 12931 components: - type: Transform pos: 33.5,-47.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12932: + - DoorStatus: DoorBolt - uid: 12932 components: - type: Transform pos: 32.5,-49.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 12931: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 258 @@ -7378,21 +7454,53 @@ entities: - type: Transform pos: 6.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 7886: + - DoorStatus: DoorBolt + 7881: + - DoorStatus: DoorBolt - uid: 7674 components: - type: Transform pos: 6.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 7886: + - DoorStatus: DoorBolt + 7881: + - DoorStatus: DoorBolt - uid: 7881 components: - type: Transform pos: 4.5,17.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 6863: + - DoorStatus: DoorBolt + 7674: + - DoorStatus: DoorBolt - uid: 7886 components: - type: Transform pos: 4.5,16.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 7674: + - DoorStatus: DoorBolt + 6863: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 2734 @@ -7400,11 +7508,23 @@ entities: - type: Transform pos: -5.5,-18.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6839: + - DoorStatus: DoorBolt - uid: 6839 components: - type: Transform pos: -5.5,-15.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2734: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 1332 @@ -7448,26 +7568,56 @@ entities: - type: Transform pos: 1.5,-35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1370: + - DoorStatus: DoorBolt - uid: 1370 components: - type: Transform pos: -0.5,-35.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1369: + - DoorStatus: DoorBolt - uid: 3202 components: - type: Transform pos: 56.5,49.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2167: + - DoorStatus: Close - uid: 8728 components: - type: Transform pos: 87.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10751: + - DoorStatus: DoorBolt - uid: 10751 components: - type: Transform pos: 84.5,-20.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8728: + - DoorStatus: DoorBolt - proto: AirlockExternalShuttleLocked entities: - uid: 2167 @@ -7476,6 +7626,12 @@ entities: rot: 3.141592653589793 rad pos: 56.5,51.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3202: + - DoorStatus: Close + - type: DeviceLinkSink + invokeCounter: 1 - proto: AirlockFreezer entities: - uid: 10 @@ -9272,47 +9428,61 @@ entities: - type: Transform pos: 36.5,-21.5 parent: 2 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - uid: 136 components: - type: Transform - pos: -2.5,2.5 + rot: 3.141592653589793 rad + pos: -4.5,2.5 parent: 2 - uid: 373 components: - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-10.5 parent: 2 - uid: 608 components: - type: Transform + rot: 3.141592653589793 rad pos: -19.5,-10.5 parent: 2 - uid: 2027 components: - type: Transform - pos: -4.5,2.5 + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - uid: 6591 components: - type: Transform + rot: 1.5707963267948966 rad pos: 32.5,-10.5 parent: 2 - uid: 6592 components: - type: Transform - pos: 28.5,-10.5 + rot: -1.5707963267948966 rad + pos: 4.5,26.5 parent: 2 - - uid: 12295 + - uid: 6874 components: - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,24.5 parent: 2 - - uid: 12296 + - uid: 6876 components: - type: Transform - pos: 4.5,26.5 + rot: 1.5707963267948966 rad + pos: 87.5,4.5 parent: 2 - proto: AtmosFixBlockerMarker entities: @@ -10063,7 +10233,7 @@ entities: - type: Transform pos: 114.5,-17.5 parent: 2 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 297 components: @@ -21935,6 +22105,16 @@ entities: - type: Transform pos: 16.5,-12.5 parent: 2 + - uid: 6938 + components: + - type: Transform + pos: 116.5,-15.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: 116.5,-17.5 + parent: 2 - uid: 7148 components: - type: Transform @@ -31765,6 +31945,14 @@ entities: - Steel - Glass - Gold +- proto: CleanerDispenser + entities: + - uid: 6875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 - proto: ClosetBombFilled entities: - uid: 12854 @@ -65771,17 +65959,15 @@ entities: parent: 2 - proto: SignAtmos entities: - - uid: 4575 + - uid: 4574 components: - type: Transform - pos: 28.5,-26.5 + pos: 37.5,-38.5 parent: 2 -- proto: SignAtmosMinsky - entities: - - uid: 4574 + - uid: 4575 components: - type: Transform - pos: 37.5,-38.5 + pos: 28.5,-26.5 parent: 2 - proto: SignBar entities: @@ -65826,7 +66012,7 @@ entities: - type: Transform pos: 39.519363,4.4919653 parent: 2 -- proto: SignChemistry1 +- proto: SignChem entities: - uid: 6817 components: @@ -65840,13 +66026,6 @@ entities: - type: Transform pos: 25.484035,39.437214 parent: 2 -- proto: SignCourt - entities: - - uid: 13166 - components: - - type: Transform - pos: 24.5,28.5 - parent: 2 - proto: SignCryogenicsMed entities: - uid: 11804 @@ -66195,19 +66374,17 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-2.5 parent: 2 -- proto: SignHydro2 +- proto: SignHydro1 entities: - - uid: 6651 + - uid: 6648 components: - type: Transform - pos: 41.5,-2.5 + pos: 47.5,-2.5 parent: 2 -- proto: SignHydro3 - entities: - - uid: 6648 + - uid: 6651 components: - type: Transform - pos: 47.5,-2.5 + pos: 41.5,-2.5 parent: 2 - proto: SignInterrogation entities: @@ -66246,6 +66423,11 @@ entities: - type: Transform pos: -4.5,-6.5 parent: 2 + - uid: 13166 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 - proto: SignLibrary entities: - uid: 11201 @@ -66268,13 +66450,6 @@ entities: - type: Transform pos: 53.5,1.5 parent: 2 -- proto: SignMinerDock - entities: - - uid: 7784 - components: - - type: Transform - pos: 6.5,18.5 - parent: 2 - proto: SignMorgue entities: - uid: 11196 @@ -66379,6 +66554,11 @@ entities: parent: 2 - proto: SignShipDock entities: + - uid: 7784 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 - uid: 9306 components: - type: Transform @@ -66493,7 +66673,7 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-13.5 parent: 2 -- proto: SignToxins2 +- proto: SignToxins entities: - uid: 12304 components: diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index e232aa32721..b407f2a9a50 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -4519,6 +4519,12 @@ entities: - type: Transform pos: -8.5,-42.5 parent: 31 + - uid: 10766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 31 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 6995 @@ -5740,63 +5746,76 @@ entities: - type: Transform pos: 5.5,-32.5 parent: 31 -- proto: AtmosDeviceFanTiny +- proto: AtmosDeviceFanDirectional entities: - - uid: 5157 + - uid: 950 components: - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-4.5 parent: 31 - - uid: 6694 + - uid: 5157 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,0.5 parent: 31 - - uid: 7138 + - uid: 6694 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,2.5 parent: 31 - - uid: 7346 + - uid: 7138 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,8.5 parent: 31 - - uid: 7566 + - uid: 7346 components: - type: Transform + rot: -1.5707963267948966 rad pos: -44.5,10.5 parent: 31 + - uid: 7566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 31 - uid: 7567 components: - type: Transform + rot: 3.141592653589793 rad pos: 22.5,28.5 parent: 31 - uid: 7943 components: - type: Transform - pos: 20.5,28.5 + rot: 3.141592653589793 rad + pos: -12.5,-2.5 parent: 31 - uid: 9923 components: - type: Transform - pos: -12.5,-2.5 + pos: -8.5,-42.5 parent: 31 - uid: 10583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 + pos: -51.5,-12.5 parent: 31 - uid: 10765 components: - type: Transform pos: -44.5,-12.5 parent: 31 - - uid: 10766 + - uid: 11466 components: - type: Transform - pos: -51.5,-12.5 + rot: 3.141592653589793 rad + pos: 31.5,-16.5 parent: 31 - proto: AtmosFixBlockerMarker entities: @@ -28720,6 +28739,20 @@ entities: parent: 31 - type: NavMapBeacon text: Tesla Storage +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 11467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-17.5 + parent: 31 + - uid: 11468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-41.5 + parent: 31 - proto: DefaultStationBeaconEVAStorage entities: - uid: 7640 @@ -56347,8 +56380,6 @@ entities: - type: Transform pos: 18.5,-3.5 parent: 31 -- proto: SignChemistry2 - entities: - uid: 7291 components: - type: Transform @@ -56586,13 +56617,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.497889,6.2645836 parent: 31 -- proto: SignDrones - entities: - - uid: 7224 - components: - - type: Transform - pos: 26.5,2.5 - parent: 31 - proto: SignElectrical entities: - uid: 11377 @@ -56642,7 +56666,7 @@ entities: - type: Transform pos: 50.5,-1.5 parent: 31 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 10545 components: @@ -56685,20 +56709,19 @@ entities: - type: Transform pos: 32.5,23.5 parent: 31 -- proto: SignMedical +- proto: SignMaterials entities: - - uid: 4151 + - uid: 7224 components: - type: Transform - pos: 5.5,2.5 + pos: 26.5,2.5 parent: 31 -- proto: SignMinerDock +- proto: SignMedical entities: - - uid: 9941 + - uid: 4151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,38.5 + pos: 5.5,2.5 parent: 31 - proto: SignMorgue entities: @@ -56792,6 +56815,14 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 31 +- proto: SignShipDock + entities: + - uid: 9941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,38.5 + parent: 31 - proto: SignSomethingOld2 entities: - uid: 1469 @@ -61591,11 +61622,6 @@ entities: - type: Transform pos: 53.5,-12.5 parent: 31 - - uid: 950 - components: - - type: Transform - pos: 31.5,-16.5 - parent: 31 - uid: 951 components: - type: Transform diff --git a/Resources/Maps/train.yml b/Resources/Maps/train.yml index 8bcbf97b865..f15e08aa884 100644 --- a/Resources/Maps/train.yml +++ b/Resources/Maps/train.yml @@ -74144,7 +74144,7 @@ entities: pos: 8.5,-176.5 parent: 2 - type: Door - secondsUntilStateChange: -141100.73 + secondsUntilStateChange: -141291.3 state: Closing - uid: 11227 components: @@ -81637,6 +81637,11 @@ entities: - type: Transform pos: -8.5,-314.5 parent: 2 + - uid: 16962 + components: + - type: Transform + pos: -5.5,-382.5 + parent: 2 - proto: RandomArtifactSpawner20 entities: - uid: 12481 @@ -84582,7 +84587,7 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-338.5 parent: 2 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 12994 components: @@ -86870,6 +86875,13 @@ entities: - type: Transform pos: -0.5,-62.5 parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 16963 + components: + - type: Transform + pos: -2.5,-165.5 + parent: 2 - proto: SpawnPointPassenger entities: - uid: 13362 @@ -90882,11 +90894,8 @@ entities: - uid: 13995 components: - type: Transform - anchored: False - pos: -5.4964814,-84.54825 + pos: -5.5,-84.5 parent: 2 - - type: Physics - bodyType: Dynamic - proto: VendingMachineSeedsUnlocked entities: - uid: 13996 diff --git a/Resources/Prototypes/ADT/Access/fill.txt b/Resources/Prototypes/ADT/Access/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Access/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Actions/language.yml b/Resources/Prototypes/ADT/Actions/language.yml deleted file mode 100644 index 222a73c9ba0..00000000000 --- a/Resources/Prototypes/ADT/Actions/language.yml +++ /dev/null @@ -1,12 +0,0 @@ -- type: entity - id: ActionLanguageMenu - name: language-menu-action - description: language-menu-action-desc - noSpawn: true - components: - - type: InstantAction - checkCanInteract: false - icon: _NF/Interface/Actions/language.png - event: !type:LanguageMenuActionEvent - useDelay: 2 - priority: -97 diff --git a/Resources/Prototypes/ADT/Alerts/alerts.yml b/Resources/Prototypes/ADT/Alerts/alerts.yml new file mode 100644 index 00000000000..ae722d86805 --- /dev/null +++ b/Resources/Prototypes/ADT/Alerts/alerts.yml @@ -0,0 +1,21 @@ +# Simple Station + +- type: alert + id: Charge + icons: + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge-empty + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge0 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge1 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge2 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge3 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge4 + name: alerts-charge-name + description: alerts-charge-desc + minSeverity: -1 + maxSeverity: 4 diff --git a/Resources/Prototypes/ADT/Alerts/fill.txt b/Resources/Prototypes/ADT/Alerts/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Alerts/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Body/Organs/Drask.yml b/Resources/Prototypes/ADT/Body/Organs/Drask.yml index 53a6c3b0966..1d98e7d0d01 100644 --- a/Resources/Prototypes/ADT/Body/Organs/Drask.yml +++ b/Resources/Prototypes/ADT/Body/Organs/Drask.yml @@ -6,7 +6,7 @@ description: "I see you!" components: - type: Sprite - sprite: ADT/Mobs/Drask/organs.rsi + sprite: ADT/Mobs/Species/Drask/organs.rsi state: eyes - type: entity @@ -17,7 +17,7 @@ description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier." components: - type: Sprite - sprite: ADT/Mobs/Drask/organs.rsi + sprite: ADT/Mobs/Species/Drask/organs.rsi state: lungs - type: Lung - type: Metabolizer @@ -51,7 +51,7 @@ description: "I feel bad for the heartless bastard who lost this." components: - type: Sprite - sprite: ADT/Mobs/Drask/organs.rsi + sprite: ADT/Mobs/Species/Drask/organs.rsi state: heart_on - type: Metabolizer maxReagents: 2 @@ -69,7 +69,7 @@ description: "Ew innards." components: - type: Sprite - sprite: ADT/Mobs/Drask/organs.rsi + sprite: ADT/Mobs/Species/Drask/organs.rsi state: innards - type: SolutionContainerManager solutions: @@ -95,7 +95,7 @@ name: kidneys components: - type: Sprite - sprite: ADT/Mobs/Drask/organs.rsi + sprite: ADT/Mobs/Species/Drask/organs.rsi state: kidneys - type: Metabolizer maxReagents: 5 diff --git a/Resources/Prototypes/ADT/Body/Organs/Tajaran.yml b/Resources/Prototypes/ADT/Body/Organs/Tajaran.yml index 7f3c790dc2c..d20b510d03e 100644 --- a/Resources/Prototypes/ADT/Body/Organs/Tajaran.yml +++ b/Resources/Prototypes/ADT/Body/Organs/Tajaran.yml @@ -1,7 +1,7 @@ - type: entity id: OrganTajaranStomach parent: OrganAnimalStomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/ADT/Body/Organs/Vulpkanin.yml b/Resources/Prototypes/ADT/Body/Organs/Vulpkanin.yml index c95f24c9071..53c0792e4b7 100644 --- a/Resources/Prototypes/ADT/Body/Organs/Vulpkanin.yml +++ b/Resources/Prototypes/ADT/Body/Organs/Vulpkanin.yml @@ -1,7 +1,7 @@ - type: entity id: OrganVulpkaninStomach parent: OrganAnimalStomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Stomach - type: SolutionContainerManager diff --git a/Resources/Prototypes/ADT/Body/Organs/demon.yml b/Resources/Prototypes/ADT/Body/Organs/demon.yml index 544df0ff960..8d3b688a582 100644 --- a/Resources/Prototypes/ADT/Body/Organs/demon.yml +++ b/Resources/Prototypes/ADT/Body/Organs/demon.yml @@ -1,7 +1,7 @@ - type: entity id: OrganDemonStomach parent: OrganAnimalStomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/ADT/Body/Organs/ipc.yml b/Resources/Prototypes/ADT/Body/Organs/ipc.yml new file mode 100644 index 00000000000..dfb7ecacf12 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Organs/ipc.yml @@ -0,0 +1,92 @@ +# Simple Station + +- type: entity + id: BaseIPCOrgan + parent: BaseItem + abstract: true + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/organs.rsi + - type: Organ + # - type: Food + # - type: Extractable + # grindableSolutionName: organ + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Oil + Quantity: 10 + +- type: entity + id: OrganIPCBrain + parent: BaseIPCOrgan + name: positronic brain + description: "The source of as much controversy as the existence of the soul." + components: + - type: Sprite + state: brain + - type: Organ + - type: Input + context: "ghost" + - type: InputMover + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: GhostOnMove + - type: Brain + +- type: entity + id: OrganIPCEyes + parent: BaseIPCOrgan + name: robotic eyes + description: "01001001 00100000 01110011 01100101 01100101 00100000 01111001 01101111 01110101 00100001" + components: + - type: Sprite + layers: + - state: eyeball-l + - state: eyeball-r + - type: Organ + +- type: entity + id: OrganIPCTongue + parent: BaseIPCOrgan + name: vocal modulator + description: "A vocal modulator, used to produce speech." + components: + - type: Sprite + state: tongue + - type: Organ + +- type: entity + id: OrganIPCEars + parent: BaseIPCOrgan + name: "sonic receptors" + description: + components: + - type: Sprite + state: ears + - type: Organ + +- type: entity + id: OrganIPCPump + parent: BaseIPCOrgan + name: micro pump + description: "A micro pump, used to circulate coolant." + components: + - type: Sprite + state: heart-on + - type: Organ + # The heart 'metabolizes' medicines and poisons that aren't filtered out by other organs. + # This is done because these chemicals need to have some effect even if they aren't being filtered out of your body. + # You're technically 'immune to poison' without a heart, but.. uhh, you'll have bigger problems on your hands. + + # This is fine? + # - type: Metabolizer + # maxReagents: 2 + # metabolizerTypes: [Human] + # groups: + # - id: Medicine + # - id: Poison + # - id: Narcotic diff --git a/Resources/Prototypes/ADT/Body/Organs/moth.yml b/Resources/Prototypes/ADT/Body/Organs/moth.yml new file mode 100644 index 00000000000..65bd96cb688 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Organs/moth.yml @@ -0,0 +1,41 @@ +- type: entity + id: OrganMothStomach + parent: [OrganAnimalStomach, OrganHumanStomach] + categories: [ HideSpawnMenu ] + components: + - type: Stomach + specialDigestible: + tags: + - ClothMade + - Paper + - Fruit + - Pill + - ADTMothFriendlyFood + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 50 + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 + - type: Metabolizer + maxReagents: 3 + metabolizerTypes: [ Moth ] + removeEmpty: true + groups: + - id: Food + - id: Drink + +- type: entity + id: OrganMothHeart + parent: OrganAnimalHeart + components: + - type: Metabolizer + maxReagents: 2 + metabolizerTypes: [ Moth ] + groups: + - id: Medicine + - id: Poison + - id: Narcotic diff --git a/Resources/Prototypes/ADT/Body/Organs/novakid.yml b/Resources/Prototypes/ADT/Body/Organs/novakid.yml new file mode 100644 index 00000000000..9a4c9c73b9a --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Organs/novakid.yml @@ -0,0 +1,34 @@ +- type: entity + id: OrganNovakidStomach + parent: OrganAnimalStomach + categories: [ HideSpawnMenu ] + components: + - type: Stomach + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 50.0 + - type: Metabolizer + maxReagents: 5 + metabolizerTypes: [ Novakid ] + +- type: entity + id: OrganNovakidLungs + parent: OrganHumanLungs + suffix: "novakid" + components: + - type: Metabolizer + metabolizerTypes: [ Novakid ] + +- type: entity + id: OrganNovakidHeart + parent: OrganAnimalHeart + suffix: "novakid" + components: + - type: Metabolizer + maxReagents: 2 + metabolizerTypes: [ Novakid ] + groups: + - id: Medicine + - id: Poison + - id: Narcotic diff --git a/Resources/Prototypes/ADT/Body/Parts/Drask.yml b/Resources/Prototypes/ADT/Body/Parts/Drask.yml index bceb64a62be..d6c7ef319be 100644 --- a/Resources/Prototypes/ADT/Body/Parts/Drask.yml +++ b/Resources/Prototypes/ADT/Body/Parts/Drask.yml @@ -21,10 +21,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "torso_m" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "torso_m" - type: BodyPart partType: Torso @@ -36,10 +36,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "head_m" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "head_m" - type: BodyPart partType: Head @@ -62,10 +62,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_arm" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_arm" - type: BodyPart partType: Arm @@ -78,10 +78,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_arm" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_arm" - type: BodyPart partType: Arm @@ -94,10 +94,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_hand" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_hand" - type: BodyPart partType: Hand @@ -110,10 +110,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_hand" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_hand" - type: BodyPart partType: Hand @@ -126,10 +126,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_leg" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_leg" - type: BodyPart partType: Leg @@ -145,10 +145,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_leg" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_leg" - type: BodyPart partType: Leg @@ -164,10 +164,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_foot" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "l_foot" - type: BodyPart partType: Foot @@ -180,10 +180,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_foot" - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: "r_foot" - type: BodyPart partType: Foot diff --git a/Resources/Prototypes/ADT/Body/Parts/Ursus.yml b/Resources/Prototypes/ADT/Body/Parts/Ursus.yml new file mode 100644 index 00000000000..2d9c745885e --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/Ursus.yml @@ -0,0 +1,190 @@ +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartUrsus + parent: BaseItem + name: "Урс части тела" + abstract: true + components: + - type: Damageable + damageContainer: Biological + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + +- type: entity + id: TorsoUrsus + name: "тело урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "torso_m" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "torso_m" + - type: BodyPart + partType: Torso + +- type: entity + id: HeadUrsus + name: "голова урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "head_m" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "head_m" + - type: BodyPart + partType: Head + vital: true + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: InputMover + - type: GhostOnMove + - type: Tag + tags: + - Head + +- type: entity + id: LeftArmUrsus + name: "левая рука урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_arm" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_arm" + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmUrsus + name: "правая рука урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_arm" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_arm" + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandUrsus + name: "левая кисть урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_hand" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_hand" + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandUrsus + name: "правая кисть урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_hand" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_hand" + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: LeftLegUrsus + name: "левая нога урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_leg" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_leg" + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + walkSpeed: 2.7 + sprintSpeed: 4.6 + +- type: entity + id: RightLegUrsus + name: "правая нога урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_leg" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_leg" + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + walkSpeed: 2.7 + sprintSpeed: 4.6 + +- type: entity + id: LeftFootUrsus + name: "левая ступня урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_foot" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "l_foot" + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootUrsus + name: "правая ступня урса" + parent: PartUrsus + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_foot" + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: "r_foot" + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/ADT/Body/Parts/demon.yml b/Resources/Prototypes/ADT/Body/Parts/demon.yml index ddc0a23bd84..a9da211bcb8 100644 --- a/Resources/Prototypes/ADT/Body/Parts/demon.yml +++ b/Resources/Prototypes/ADT/Body/Parts/demon.yml @@ -24,10 +24,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "torso_m" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "torso_m" - type: BodyPart partType: Torso @@ -39,10 +39,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "head_m" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "head_m" - type: BodyPart partType: Head @@ -65,10 +65,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_arm" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_arm" - type: BodyPart partType: Arm @@ -81,10 +81,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_arm" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_arm" - type: BodyPart partType: Arm @@ -97,10 +97,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_hand" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_hand" - type: BodyPart partType: Hand @@ -113,10 +113,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_hand" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_hand" - type: BodyPart partType: Hand @@ -129,10 +129,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_leg" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_leg" - type: BodyPart partType: Leg @@ -148,10 +148,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_leg" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_leg" - type: BodyPart partType: Leg @@ -167,10 +167,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_foot" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "l_foot" - type: BodyPart partType: Foot @@ -183,10 +183,10 @@ components: - type: Sprite netsync: false - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_foot" - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: "r_foot" - type: BodyPart partType: Foot diff --git a/Resources/Prototypes/ADT/Body/Parts/ipc.yml b/Resources/Prototypes/ADT/Body/Parts/ipc.yml new file mode 100644 index 00000000000..d9832ca4037 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/ipc.yml @@ -0,0 +1,186 @@ +# Simple Station + +- type: entity + id: PartIPC + parent: BaseItem + name: "ipc body part" + abstract: true + components: + - type: Damageable + damageContainer: Inorganic + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + +- type: entity + id: TorsoIPC + name: "ipc torso" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "torso_m" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "torso_m" + - type: BodyPart + partType: Torso + +- type: entity + id: HeadIPC + name: "ipc head" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "head_m" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "head_m" + - type: BodyPart + partType: Head + vital: true + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: InputMover + - type: GhostOnMove + - type: Tag + tags: + - Head + +- type: entity + id: LeftArmIPC + name: "left ipc arm" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_arm" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_arm" + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmIPC + name: "right ipc arm" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_arm" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_arm" + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandIPC + name: "left ipc hand" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_hand" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_hand" + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandIPC + name: "right ipc hand" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_hand" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_hand" + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: LeftLegIPC + name: "left ipc leg" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_leg" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_leg" + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + +- type: entity + id: RightLegIPC + name: "right ipc leg" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_leg" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_leg" + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + +- type: entity + id: LeftFootIPC + name: "left ipc foot" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_foot" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_foot" + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootIPC + name: "right ipc foot" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_foot" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_foot" + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/ADT/Body/Parts/moth.yml b/Resources/Prototypes/ADT/Body/Parts/moth.yml new file mode 100644 index 00000000000..bb96430383a --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/moth.yml @@ -0,0 +1,120 @@ +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartMoth + parent: [BaseItem, BasePart] + name: "moth body part" + abstract: true + components: + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: TorsoMoth + name: "moth torso" + parent: [PartMoth, BaseTorso] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "torso_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 10 + - ReagentId: Blood + Quantity: 20 + + +- type: entity + id: HeadMoth + name: "moth head" + parent: [PartMoth, BaseHead] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "head_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: LeftArmMoth + name: "left moth arm" + parent: [PartMoth, BaseLeftArm] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_arm" + +- type: entity + id: RightArmMoth + name: "right moth arm" + parent: [PartMoth, BaseRightArm] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_arm" + +- type: entity + id: LeftHandMoth + name: "left moth hand" + parent: [PartMoth, BaseLeftHand] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_hand" + +- type: entity + id: RightHandMoth + name: "right moth hand" + parent: [PartMoth, BaseRightHand] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_hand" + +- type: entity + id: LeftLegMoth + name: "left moth leg" + parent: [PartMoth, BaseLeftLeg] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_leg" + +- type: entity + id: RightLegMoth + name: "right moth leg" + parent: [PartMoth, BaseRightLeg] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_leg" + +- type: entity + id: LeftFootMoth + name: "left moth foot" + parent: [PartMoth, BaseLeftFoot] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_foot" + +- type: entity + id: RightFootMoth + name: "right moth foot" + parent: [PartMoth, BaseRightFoot] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_foot" diff --git a/Resources/Prototypes/ADT/Body/Parts/novakid.yml b/Resources/Prototypes/ADT/Body/Parts/novakid.yml new file mode 100644 index 00000000000..30c3c41180f --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/novakid.yml @@ -0,0 +1,190 @@ +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartNovakid + parent: BaseItem + name: "novakid body part" + abstract: true + components: + - type: Damageable + damageContainer: Biological + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + +- type: entity + id: TorsoNovakid + name: "novakid torso" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "torso_m" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "torso_m" + - type: BodyPart + partType: Torso + +- type: entity + id: HeadNovakid + name: "novakid head" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "head_m" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "head_m" + - type: BodyPart + partType: Head + vital: true + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: InputMover + - type: GhostOnMove + - type: Tag + tags: + - Head + +- type: entity + id: LeftArmNovakid + name: "left novakid arm" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_arm" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_arm" + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmNovakid + name: "right novakid arm" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_arm" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_arm" + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandNovakid + name: "left novakid hand" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_hand" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_hand" + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandNovakid + name: "right novakid hand" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_hand" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_hand" + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: LeftLegNovakid + name: "left novakid leg" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_leg" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_leg" + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + walkSpeed : 2.5 + sprintSpeed : 4.5 + +- type: entity + id: RightLegNovakid + name: "right novakid leg" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_leg" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_leg" + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + walkSpeed : 2.5 + sprintSpeed : 4.5 + +- type: entity + id: LeftFootNovakid + name: "left novakid foot" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_foot" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "l_foot" + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootNovakid + name: "right novakid foot" + parent: PartNovakid + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_foot" + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: "r_foot" + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/ADT/Body/Parts/shadekin.yml b/Resources/Prototypes/ADT/Body/Parts/shadekin.yml new file mode 100644 index 00000000000..ed24599b477 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/shadekin.yml @@ -0,0 +1,155 @@ +- type: entity + id: PartShadekin + parent: BaseItem + name: Shadekin body part + abstract: true + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + - type: Icon + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + - type: Damageable + damageContainer: Biological + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + +- type: entity + id: TorsoShadekin + name: Shadekin torso + parent: PartShadekin + components: + - type: Sprite + state: torso_m + - type: Icon + state: torso_m + - type: BodyPart + partType: Torso + +- type: entity + id: HeadShadekin + name: Shadekin head + parent: PartShadekin + components: + - type: Sprite + state: head_m + - type: Icon + state: head_m + - type: BodyPart + partType: Head + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: InputMover + - type: GhostOnMove + +- type: entity + id: LeftArmShadekin + name: left Shadekin arm + parent: PartShadekin + components: + - type: Sprite + state: l_arm + - type: Icon + state: l_arm + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmShadekin + name: right Shadekin arm + parent: PartShadekin + components: + - type: Sprite + state: r_arm + - type: Icon + state: r_arm + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandShadekin + name: left Shadekin hand + parent: PartShadekin + components: + - type: Sprite + state: l_hand + - type: Icon + state: l_hand + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandShadekin + name: right Shadekin hand + parent: PartShadekin + components: + - type: Sprite + state: r_hand + - type: Icon + state: r_hand + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: LeftLegShadekin + name: left Shadekin leg + parent: PartShadekin + components: + - type: Sprite + state: l_leg + - type: Icon + state: l_leg + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + +- type: entity + id: RightLegShadekin + name: right Shadekin leg + parent: PartShadekin + components: + - type: Sprite + state: r_leg + - type: Icon + state: r_leg + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + +- type: entity + id: LeftFootShadekin + name: left Shadekin foot + parent: PartShadekin + components: + - type: Sprite + state: l_foot + - type: Icon + state: l_foot + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootShadekin + name: right Shadekin foot + parent: PartShadekin + components: + - type: Sprite + state: r_foot + - type: Icon + state: r_foot + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/ADT/Body/Prototypes/Drask.yml b/Resources/Prototypes/ADT/Body/Prototypes/Drask.yml index cdf4b045688..b04bac85281 100644 --- a/Resources/Prototypes/ADT/Body/Prototypes/Drask.yml +++ b/Resources/Prototypes/ADT/Body/Prototypes/Drask.yml @@ -19,8 +19,8 @@ liver: OrganHumanLiver kidneys: OrganDraskKidneys connections: - - left arm - right arm + - left arm - left leg - right leg right arm: diff --git a/Resources/Prototypes/ADT/Body/Prototypes/Tajaran.yml b/Resources/Prototypes/ADT/Body/Prototypes/Tajaran.yml index 39ac8388bc1..9782670197f 100644 --- a/Resources/Prototypes/ADT/Body/Prototypes/Tajaran.yml +++ b/Resources/Prototypes/ADT/Body/Prototypes/Tajaran.yml @@ -19,8 +19,8 @@ liver: OrganAnimalLiver kidneys: OrganHumanKidneys connections: - - left arm - right arm + - left arm - left leg - right leg - tail diff --git a/Resources/Prototypes/ADT/Body/Prototypes/Ursus.yml b/Resources/Prototypes/ADT/Body/Prototypes/Ursus.yml new file mode 100644 index 00000000000..f7c8e9c132e --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/Ursus.yml @@ -0,0 +1,49 @@ +- type: body + id: Ursus + name: "Ursus" + root: torso + slots: + head: + part: HeadUrsus + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoHuman + connections: + - right_arm + - left_arm + - right_leg + - left_leg + organs: + heart: OrganAnimalHeart + lungs: OrganHumanLungs + stomach: OrganAnimalStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + right_arm: + part: RightArmUrsus + connections: + - right_hand + left_arm: + part: LeftArmUrsus + connections: + - left_hand + right_hand: + part: RightHandUrsus + left_hand: + part: LeftHandUrsus + right_leg: + part: RightLegUrsus + connections: + - right_foot + left_leg: + part: LeftLegUrsus + connections: + - left_foot + right_foot: + part: RightFootUrsus + left_foot: + part: LeftFootUrsus diff --git a/Resources/Prototypes/ADT/Body/Prototypes/Vulpkanin.yml b/Resources/Prototypes/ADT/Body/Prototypes/Vulpkanin.yml index 2cb6043ae4b..d237140f57a 100644 --- a/Resources/Prototypes/ADT/Body/Prototypes/Vulpkanin.yml +++ b/Resources/Prototypes/ADT/Body/Prototypes/Vulpkanin.yml @@ -19,8 +19,8 @@ liver: ADTOrganVulpkaninAnimalLiver #Печень вульпы kidneys: OrganHumanKidneys connections: - - left arm - right arm + - left arm - left leg - right leg - tail diff --git a/Resources/Prototypes/ADT/Body/Prototypes/demon.yml b/Resources/Prototypes/ADT/Body/Prototypes/demon.yml index ab2d8e2bdb1..14c9cb8bd72 100644 --- a/Resources/Prototypes/ADT/Body/Prototypes/demon.yml +++ b/Resources/Prototypes/ADT/Body/Prototypes/demon.yml @@ -19,8 +19,8 @@ liver: OrganAnimalLiver kidneys: OrganHumanKidneys connections: - - left arm - right arm + - left arm - left leg - right leg right arm: diff --git a/Resources/Prototypes/ADT/Body/Prototypes/fill.txt b/Resources/Prototypes/ADT/Body/Prototypes/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Body/Prototypes/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Body/Prototypes/ipc.yml b/Resources/Prototypes/ADT/Body/Prototypes/ipc.yml new file mode 100644 index 00000000000..8e82b46f847 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/ipc.yml @@ -0,0 +1,47 @@ +# Simple Station + +- type: body + id: IPC + name: "ipc" + root: torso + slots: + head: + part: HeadIPC + connections: + - torso + organs: + eyes: OrganIPCEyes + torso: + part: TorsoIPC + connections: + - right arm + - left arm + - left leg + - right leg + organs: + brain: OrganIPCBrain + heart: OrganIPCPump + right arm: + part: RightArmIPC + connections: + - right hand + left arm: + part: LeftArmIPC + connections: + - left hand + right hand: + part: RightHandIPC + left hand: + part: LeftHandIPC + right leg: + part: RightLegIPC + connections: + - right foot + left leg: + part: LeftLegIPC + connections: + - left foot + right foot: + part: RightFootIPC + left foot: + part: LeftFootIPC diff --git a/Resources/Prototypes/ADT/Body/Prototypes/moth.yml b/Resources/Prototypes/ADT/Body/Prototypes/moth.yml new file mode 100644 index 00000000000..421432face6 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/moth.yml @@ -0,0 +1,49 @@ +- type: body + id: Moth + name: "Moth" + root: torso + slots: + head: + part: HeadMoth + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoMoth + organs: + heart: OrganMothHeart + lungs: OrganHumanLungs + stomach: OrganMothStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + connections: + - right arm + - left arm + - right leg + - left leg + right arm: + part: RightArmMoth + connections: + - right hand + left arm: + part: LeftArmMoth + connections: + - left hand + right hand: + part: RightHandMoth + left hand: + part: LeftHandMoth + right leg: + part: RightLegMoth + connections: + - right foot + left leg: + part: LeftLegMoth + connections: + - left foot + right foot: + part: RightFootMoth + left foot: + part: LeftFootMoth diff --git a/Resources/Prototypes/ADT/Body/Prototypes/novakid.yml b/Resources/Prototypes/ADT/Body/Prototypes/novakid.yml new file mode 100644 index 00000000000..cef641e1079 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/novakid.yml @@ -0,0 +1,49 @@ +- type: body + name: "novakid" + id: Novakid + root: torso + slots: + head: + part: HeadNovakid + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoNovakid + organs: + heart: OrganNovakidHeart + lungs: OrganNovakidLungs + stomach: OrganNovakidStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + connections: + - right arm + - left arm + - left leg + - right leg + right arm: + part: RightArmNovakid + connections: + - right hand + left arm: + part: LeftArmNovakid + connections: + - left hand + right hand: + part: RightHandNovakid + left hand: + part: LeftHandNovakid + right leg: + part: RightLegNovakid + connections: + - right foot + left leg: + part: LeftLegNovakid + connections: + - left foot + right foot: + part: RightFootNovakid + left foot: + part: LeftFootNovakid diff --git a/Resources/Prototypes/ADT/Body/Prototypes/shadekin.yml b/Resources/Prototypes/ADT/Body/Prototypes/shadekin.yml new file mode 100644 index 00000000000..30f39038ca1 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/shadekin.yml @@ -0,0 +1,49 @@ +- type: body + id: Shadekin + name: Shadekin + root: torso + slots: + head: + part: HeadShadekin + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoShadekin + connections: + - right arm + - left arm + - left leg + - right leg + organs: + heart: OrganHumanHeart + lungs: OrganHumanLungs + stomach: OrganHumanStomach + liver: OrganHumanLiver + kidneys: OrganHumanKidneys + right arm: + part: RightArmShadekin + connections: + - right hand + left arm: + part: LeftArmShadekin + connections: + - left hand + right hand: + part: RightHandShadekin + left hand: + part: LeftHandShadekin + right leg: + part: RightLegShadekin + connections: + - right foot + left leg: + part: LeftLegShadekin + connections: + - left foot + right foot: + part: RightFootShadekin + left foot: + part: LeftFootShadekin diff --git a/Resources/Prototypes/ADT/Catalog/Cargo/fill.txt b/Resources/Prototypes/ADT/Catalog/Cargo/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Catalog/Cargo/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/backpack.yml index fb41923a9d9..7ee1d99a259 100644 --- a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTClothingBackpackPathologist id: ADTClothingBackpackPathologistFilled components: diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 7d503222616..20ec47270e9 100644 --- a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTClothingBackpackDuffelPathologist id: ADTClothingBackpackDuffelPathologistFilled components: diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/satchel.yml index 03f83e8127a..519b5bc6494 100644 --- a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTClothingBackpackSatchelPathologist id: ADTClothingBackpackSatchelPathologistFilled components: diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Crates/fill.txt b/Resources/Prototypes/ADT/Catalog/Fills/Crates/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Catalog/Fills/Crates/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Items/fill.txt b/Resources/Prototypes/ADT/Catalog/Fills/Items/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Catalog/Fills/Items/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/Fills/weaponcase.yml b/Resources/Prototypes/ADT/Catalog/Fills/Items/weaponcase.yml similarity index 84% rename from Resources/Prototypes/ADT/Catalog/Fills/weaponcase.yml rename to Resources/Prototypes/ADT/Catalog/Fills/Items/weaponcase.yml index 94bbd3e8c90..4554626c88d 100644 --- a/Resources/Prototypes/ADT/Catalog/Fills/weaponcase.yml +++ b/Resources/Prototypes/ADT/Catalog/Fills/Items/weaponcase.yml @@ -1,24 +1,3 @@ -- type: entity - id: WeaponCaseNT - name: weapon case - description: Case with weapons. - parent: [ BaseStorageItem, BaseBagOpenClose ] - components: - - type: Sprite - sprite: ADT/Objects/Storage/weaponcase.rsi - layers: - - state: closed - - state: open - map: ["openLayer"] - - type: Appearance - - type: Item - sprite: ADT/Objects/Storage/weaponcase.rsi - size: Huge - - type: Storage - grid: - - 0,0,8,3 - maxItemSize: Huge - - type: entity id: WeaponCaseNTM90 name: weapon Case diff --git a/Resources/Prototypes/ADT/Damage/containers.yml b/Resources/Prototypes/ADT/Damage/containers.yml new file mode 100644 index 00000000000..686fa899f46 --- /dev/null +++ b/Resources/Prototypes/ADT/Damage/containers.yml @@ -0,0 +1,5 @@ +- type: damageContainer + id: ADTSiliconDamageContainer + supportedGroups: + - Brute + - Burn diff --git a/Resources/Prototypes/ADT/Damage/ADTmodifiers.yml b/Resources/Prototypes/ADT/Damage/modifier_sets.yml similarity index 55% rename from Resources/Prototypes/ADT/Damage/ADTmodifiers.yml rename to Resources/Prototypes/ADT/Damage/modifier_sets.yml index 17be8eafaad..ab6acb5ad4f 100644 --- a/Resources/Prototypes/ADT/Damage/ADTmodifiers.yml +++ b/Resources/Prototypes/ADT/Damage/modifier_sets.yml @@ -31,7 +31,7 @@ Cellular: 1.5 - type: damageModifierSet - id: Shadowkin # пупупу + id: Shadekin # пупупу coefficients: Blunt: 1.2 Piercing: 1.2 @@ -57,6 +57,35 @@ Heat: 2.0 Poison: 1.1 +- type: damageModifierSet + id: BloodlossIPC + coefficients: + Blunt: 1 + Slash: 0.6 + Piercing: 1.85 + Shock: 0.0 + Cold: 0.0 + Heat: 0 # heat damage doesn't cauterize metal! + Poison: 0.0 + Radiation: 0.0 + Asphyxiation: 0.0 + Bloodloss: 0.0 # no double dipping + Cellular: 0.0 + flatReductions: # Gotta crack a few borgs to get some coolant... + Blunt: 10 + Slash: 10 + Piercing: 10 + +- type: damageModifierSet + id: Moth # Slightly worse at everything but cold + coefficients: + Blunt: 1 + Piercing: 1.15 + Slash: 1.15 + Cold: 0.7 + Heat: 1.5 + Poison: 1.5 + - type: damageModifierSet id: CyborgMetallic coefficients: @@ -71,7 +100,6 @@ Piercing: 5 Heat: 5 - - type: damageModifierSet id: CyborgMetallicStrong coefficients: @@ -90,101 +118,3 @@ id: Ursus # мишк coefficients: Blunt: 1.0 - -- type: damageModifierSet - id: AshWalker # Груба кожа = умно ящериц - coefficients: - Blunt: 0.8 - -- type: damageModifierSet - id: ADTAntagDroneIPCDamageModSet - coefficients: - Blunt: 0.75 - Slash: 0.75 - Piercing: 0.55 - Heat: 0.80 - #Explosive: 0.25 - Structural: 0 - # zap - Shock: 0.5 - Cold: 0 - Caustic: 0.3 - -- type: damageModifierSet - id: ADTSecurityCybDamagModSet - coefficients: - Blunt: 0.5 - Slash: 0.4 - Piercing: 0.45 - # fire and lasers burn it good - Heat: 1.0 - # zap - Shock: 1.2 - Cold: 0 - Caustic: 0.4 - -- type: damageModifierSet - id: distorted - coefficients: - Blunt: 1 - Piercing: 1 - Slash: 1.0 - Cold: 0.5 - Heat: 0.5 - Poison: 0.5 - Bloodloss: 1 - -- type: damageModifierSet - id: echo - coefficients: - Blunt: 1 - Piercing: 1 - Slash: 0.4 - Cold: 0.6 - Heat: 0.6 - Poison: 1.0 - Bloodloss: 1 - -- type: damageModifierSet - id: grant - coefficients: - Blunt: 0.5 - Piercing: 0.7 - Slash: 0.5 - Cold: 0.7 - Heat: 0.7 - Poison: 0.7 - Bloodloss: 1 - -- type: damageModifierSet - id: hunter - coefficients: - Blunt: 0.45 - Piercing: 0.6 - Slash: 0.45 - Cold: 0.6 - Heat: 0.45 - Poison: 0.6 - Bloodloss: 1 - -- type: damageModifierSet - id: soldier - coefficients: - Blunt: 0.8 - Piercing: 0.8 - Slash: 0.8 - Cold: 0.8 - Heat: 0.8 - Poison: 0.8 - Bloodloss: 1 - -- type: damageModifierSet - id: wrecker - coefficients: - Blunt: 0.4 - Piercing: 0.55 - Slash: 0.4 - Cold: 0.55 - Heat: 0.65 - Poison: 0.55 - Bloodloss: 1 diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_female_moth.yml b/Resources/Prototypes/ADT/Datasets/Names/first_female_moth.yml new file mode 100644 index 00000000000..396897bc0cb --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_female_moth.yml @@ -0,0 +1,46 @@ +- type: dataset + id: first_female_moth + values: + - Защитница + - Техник + - Пилот + - Воительница + - Ткачиха + - Охотница + - Путешественница + - Исследовательница + - Смотритель + - Строительница + - Строитель + - Инженер + - Проводник + - Разведчик + - Архитектор + - Навигатор + - Целительница + - Врач + - Учёный + - Астроном + - Механик + - Помощница + - Рыцарь + - Поэт + - Психолог + - Химик + - Повар + - Музыкант + - Кардиолог + - Скульптор + - Биоинженер + - Наставник + - Космоархитектор + - Физик + - Астробиолог + - Астронавигатор + - Галактический поэт + - Нанотехнолог + - Биометрист + - Робоисследовательца + - Астропсихолог + - Галактический художник + - Космический исследовательца diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_female_urs.yml b/Resources/Prototypes/ADT/Datasets/Names/first_female_urs.yml new file mode 100644 index 00000000000..06628ce9438 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_female_urs.yml @@ -0,0 +1,103 @@ +- type: dataset + id: firstFemaleUrs + values: + - Бара + - Барбара + - Барни + - Баруна + - Беригиня + - Берислава + - Берта + - Богумира + - Божедара + - Божидара + - Бора + - Борислава + - Боряна + - Братумила + - Брута + - Бура + - Бурьяна + - Валькирия + - Варвара + - Варна + - Вера + - Верта + - Гарца + - Герда + - Глафира + - Гневера + - Горда + - Гревета + - Греза + - Гретта + - Груда + - Дара + - Дарья + - Демира + - Джирина + - Добрана + - Добровеста + - Добронега + - Дорбродея + - Дорота + - Драгана + - Драгия + - Друда + - Ерга + - Ерта + - Зара + - Здрана + - Зерда + - Ильмара + - Ирина + - Ирия + - Ирма + - Ируд + - Искра + - Карна + - Каролина + - Катерина + - Кора + - Корона + - Кретта + - Ладимира + - Лаура + - Леберада + - Лира + - Любомира + - Мара + - Маргана + - Мария + - Марта + - Марфа + - Милогнерда + - Мира + - Мириана + - Мирогнева + - Негомира + - Некраса + - Огнедара + - Озара + - Оприна + - Орда + - Перекраса + - Перуника + - Петра + - Прасковья + - Прекраса + - Прелеста + - Рагосна + - Рада + - Радомила + - Роза + - Радосвета + - Рогаслава + - Радослава + - Рось + - Руслана + - Светозара + - Ярослава + - Светомира + - Трейда + - Ярмила diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_male_moth.yml b/Resources/Prototypes/ADT/Datasets/Names/first_male_moth.yml new file mode 100644 index 00000000000..d105c78a5cb --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_male_moth.yml @@ -0,0 +1,45 @@ +- type: dataset + id: first_male_moth + values: + - Защитник + - Техник + - Пилот + - Воитель + - Ткач + - Охотник + - Путешественник + - Исследователь + - Смотритель + - Строитель + - Инженер + - Проводник + - Разведчик + - Архитектор + - Навигатор + - Целитель + - Врач + - Учёный + - Астроном + - Механик + - Помощник + - Рыцарь + - Поэт + - Психолог + - Химик + - Повар + - Музыкант + - Кардиолог + - Скульптор + - Биоинженер + - Наставник + - Космоархитектор + - Физик + - Астробиолог + - Астронавигатор + - Галактический поэт + - Нанотехнолог + - Биометрист + - Робоисследователь + - Астропсихолог + - Галактический художник + - Космический исследователь diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_male_urs.yml b/Resources/Prototypes/ADT/Datasets/Names/first_male_urs.yml new file mode 100644 index 00000000000..259e0d46e73 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_male_urs.yml @@ -0,0 +1,103 @@ +- type: dataset + id: firstMaleUrs + values: + - Бориполк + - Благомир + - Братимир + - Благояр + - Белогор + - Белозар + - Братислав + - Беломир + - Белотур + - Богумир + - Бронислав + - Богород + - Борис + - Борислав + - Будимир + - Бретислав + - Боримир + - Ведагор + - Ведамир + - Велимир + - Велибор + - Воибор + - Годимир + - Гостимир + - Годислав + - Горисвет + - Горислав + - Гремислав + - Далебор + - Градимир + - Данияр + - Даромир + - Даромысл + - Добровит + - Красимир + - Доброслав + - Зареслав + - Зданимир + - Звенимир + - Красибор + - Казимир + - Колояр + - Добран + - Ладимир + - Бурислав + - Лучезар + - Милорад + - Огнедар + - Остромир + - Остромысл + - Первослав + - Орислав + - Переслав + - Пересвет + - Радимил + - Радим + - Радимир + - Радислав + - Премислав + - Радомир + - Радосвет + - Ратимир + - Ратибор + - Ратмир + - Ратислав + - Родислав + - Родомир + - Твердислав + - Станимир + - Ростислав + - Светозар + - Святогор + - Светогор + - Светомир + - Тихомир + - Творимир + - Хранимир + - Хранислав + - Честимир + - Хотомир + - Ярослав + - Ярополк + - Яромир + - Арност + - Лазар + - Петар + - Барвинок + - Иржи + - Георг + - Далибор + - Рехор + - Бернард + - Рос + - Рык + - Рыкослав + - Люпинрад + - Романрык + - Златозар + - Каловрат + - Тимиррад diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_novakid.yml b/Resources/Prototypes/ADT/Datasets/Names/first_novakid.yml new file mode 100644 index 00000000000..33ddab2efe1 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_novakid.yml @@ -0,0 +1,62 @@ +- type: dataset + id: firstNovakid + values: + - Пекло + - Холод + - Добро + - Тепло + - Любовь + - Эмпатия + - Надежда + - Мечтательность + - Красота + - Привлекательность + - Яркость + - Смелость + - Бесстрашие + - Сила + - Мощь + - Созидание + - Смышление + - Героизм + - Грация + - Милость + - Долговечность + - Абстрактность + - Многогранность + - Обобщённость + - Серость + - Грусть + - Печаль + - Тоска + - Черезмерность + - Расторопность + - Эгоизм + - Безразличие + - Хладнокровие + - Апатия + - Безвольность + - Глупость + - Злоба + - Ненависть + - Безумие + - Абсурдность + - Безэмоциональность + - Жадность + - Апатия + - Скупость + - Мрачность + - Открытость + - Беспристрастность + - Праведность + - Трусливость + - Красноречивость + - Чистота + - Миролюбивость + - Кучность + - Лень + - Слабость + - Надежда + - Безнадёжность + - Обречённость + - Безысходность diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_shadekin.yml b/Resources/Prototypes/ADT/Datasets/Names/first_shadekin.yml new file mode 100644 index 00000000000..0b03c1924be --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_shadekin.yml @@ -0,0 +1,60 @@ +- type: dataset + id: names_shadekin + values: + + # Грустные + - Хрупкий + - разбитое сердце + - Неполноценный + - Одинокий + - Одинокий + - Потеря + - Одиночество + - Одиночество + - Печаль + - Тень + + # Злые + - Страх + - Боязливый + - Ярость + - Боль + - Ярость + - Ярость + - Гнев + + # Счасливые + - Спокойствие + - Содержательный + - Содержательный + - Счастливый + - Надеющийся + - Радостный + - Любящий + - Мир + - Мирный + - Тихий + - Безмятежный + - Безмятежность + - Спокойный + - Спокойствие + + # Памятные + - Заблуждение + - Забытый + - Бессмысленный + - Потерянный + - Память + - Воспоминание + - Воспоминание + - Воспоминание + - Реминисценция + + # Другие + - Апатия + - Собранность + - Любопытство + - Свободный + - Интерес + - Еще + - Непривязанность diff --git a/Resources/Prototypes/ADT/Datasets/Names/last_female_urs.yml b/Resources/Prototypes/ADT/Datasets/Names/last_female_urs.yml new file mode 100644 index 00000000000..d07111588c9 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/last_female_urs.yml @@ -0,0 +1,103 @@ +- type: dataset + id: LastFemaleUrs + values: + - Баровна + - Благомировна + - Бариновна + - Баруновна + - Белогоровна + - Бериславовна + - Братиславовна + - Беломировна + - Божераровна + - Божидаровна + - Боравна + - Богородовна + - Борисовна + - Братумиловна + - Будимировна + - Бретиславовна + - Бротимировна + - Ведагоровна + - Варваровна + - Велимировна + - Веровна + - Воиборовна + - Гарцовна + - Гостимировна + - Гориславовна + - Гневеровна + - Гордовна + - Греветовна + - Далеборовна + - Греттовна + - Грудовна + - Даромировна + - Дарьевна + - Демировна + - Джириновна + - Доброславовна + - Зареславовна + - Зданимировна + - Добродеявна + - Красиборовна + - Драгановна + - Колояровна + - Добрановна + - Ергововна + - Бертовна + - Лучезаровна + - Здрановна + - Огнедаровна + - Отромировна + - Ироновна + - Первославовна + - Ирмовна + - Переславовна + - Искровна + - Радимиловна + - Каролиновна + - Радимировна + - Коровна + - Короновна + - Радомировна + - Ладимировна + - Ратимировна + - Ратиборовна + - Лировна + - Любомировна + - Родиславовна + - Маргановна + - Мариевна + - Станимировна + - Ростиславовна + - Милогнердовна + - Мировна + - Светогоровна + - Мирогрневовна + - Негомировна + - Творимировна + - Огнедаровна + - Храниславовна + - Оприниновна + - Хотомировна + - Перекрасовна + - Ярополковна + - Яромировна + - Прасковьевна + - Перуниковна + - Петаровна + - Барвиноковна + - Радовна + - Радомиловна + - Далиборовна + - Рехоровна + - Рогаславовна + - Росовна + - Росьовна + - Рыкославовна + - Светозаровна + - Романрыковна + - Светомировна + - Каловратовна + - Ярмиловна \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Datasets/Names/last_male_urs.yml b/Resources/Prototypes/ADT/Datasets/Names/last_male_urs.yml new file mode 100644 index 00000000000..58368e9f3c6 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/last_male_urs.yml @@ -0,0 +1,103 @@ +- type: dataset + id: LastMaleUrs + values: + - Баранович + - Благомирович + - Барниевич + - Барунович + - Берегиньевич + - Белозарович + - Бертович + - Богумирович + - Булотурович + - Богумирович + - Боравич + - Бориславович + - Борянович + - Братумилович + - Брутович + - Брониславович + - Боримирович + - Валькириевич + - Ведамирович + - Варнович + - Велиборович + - Вертавич + - Годимирович + - Гердович + - Глафирович + - Горисветович + - Геордович + - Гремиславович + - Грезович + - Градимирович + - Даниярович + - Дарович + - Даромыслович + - Добровитович + - Красимирович + - Добранович + - Добровестович + - Добронегович + - Звенимирович + - Доротович + - Казимирович + - Драгиевич + - Друдович + - Ладимирович + - Ертович + - Зарович + - Милорадович + - Зердович + - Ильмарович + - Остромыслович + - Ириевич + - Орислалович + - Ирудович + - Пересветович + - Карнович + - Радимович + - Катеринович + - Радиславович + - Премиславович + - Креттович + - Радосвеович + - Лаурович + - Леберадович + - Ратимирович + - Растиславович + - Марович + - Родомирович + - Мариевич + - Станимирович + - Марфоевич + - Светозарович + - Мирович + - Мирианович + - Светомирович + - Негомирович + - Творимирович + - Хранимирович + - Озарович + - Честимирович + - Хотомирович + - Ярославович + - Перникович + - Петрович + - Арностович + - Лазарович + - Прелестович + - Рагославович + - Иржиевич + - Георгович + - Розальевич + - Радосветович + - Бернардович + - Росович + - Рыкович + - Русланович + - Люпинрадович + - Ярославович + - Златозарович + - Трейдович + - Тимиррадович \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Datasets/Names/last_moth.yml b/Resources/Prototypes/ADT/Datasets/Names/last_moth.yml new file mode 100644 index 00000000000..b87b41a36d7 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/last_moth.yml @@ -0,0 +1,59 @@ +- type: dataset + id: last_moth + values: + - Галактики Андромеда + - Альфа Центавры + - Проксима Центавры + - Туманности Андромеда + - Солнечной Системы + - Планеты Сатурна + - Пояса Астероидов + - Созвездия Журавль + - Великой Туманности + - Галактического Кластера + - Материнской Звезды + - Планеты Марса + - Рассеянной Галактики + - Галактической Суперскопины + - Космической Станции Мир + - Планетарной Сети + - Газовых Гигантов + - Марсианской Пустыни + - Планетарной Экосистемы + - Космического Оркестра + - Планеты Нептун + - Атмосферы Сатурна + - Магелланового Облака + - Космической Станции Аура + - Галактического Затмения + - Созвездия Андромеды + - Корабля "Сиреневый Астероид" + - Небесного Вала + - Газового Гиганта + - Звездного Потока + - Галактической Астрономической Сети + - Солнечных Ветров + - Кластера Андромеды + - Созвездия Кассиопеи + - Галактического Кластера Плеяд + - Планетарной Станции Аура + - Цитадели Байцзуна + - Черной Дыры М87 + - Звездного Кластера Персея + - Созвездия Майя + - Звёздного Кластера Майя + - Созвездия Атлас + - Туманности Плейона + - Созвездия Электра + - Системы Сириус + - Системы Альдебаран + - Системы Альтаир + - Красного Гиганта Бетельгейзе + - Созвездия Сириус + - Системы Регул + - Созвездия Арктур + - Системы Астеропа + - Созвездия Капелла + - Созвездия Меропа + - Галактики Орион + - Червоточины М77 diff --git a/Resources/Prototypes/ADT/Datasets/Names/last_novakid.yml b/Resources/Prototypes/ADT/Datasets/Names/last_novakid.yml new file mode 100644 index 00000000000..ef01797dc4e --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/last_novakid.yml @@ -0,0 +1,139 @@ +- type: dataset + id: NovakidLast + values: + - Сверхновой + - Микроновой + - Псевдосверхновой + - Неудавшейся Сверхновой + - Гиперновой + - Звёзд + - Звезды + - Двойной Звезды + - Тройной Звезды + - Нейтронной Звезды + - Кварковой Звезды + - Пекулярной Звезды + - Оболочечной Звезды + - Преонной Звезды + - Кварковой Звезды + - Эруптивно-Переменной Звезды + - Симбиотической Звезды + - Килоновой + - Протозвезды + - Созвездия + - Небосвода + - Космоса + - Пространства + - Пустоты + - Галактики + - Туманности + - Тёмной Туманности + - Планет + - Планеты + - Бланеты + - Экзопланеты + - Газового Гиганта + - Ледяного Гиганта + - Спутника + - Солнца + - Лун + - Луны + - Астероида + - Кометы + - Пульсара + - Квазара + - Квазага + - Блазара + - Магнетара + - Микроквазара + - Кометы + - Чёрной Дыры + - Белой Дыры + - Сингулярности + - Горизонта Событий + - Планетезимали + - Вспышки + - Болида + - Гелиосферы + - Газового Облака + - Барстера + - Плериона + - Остатков Сверхновой + - Вселенной + - Мультивселенной + - Реликтового Излучения + - Космической Струны + - Кротовой Норы + - Гало + - Вимпа + - Галактической Нити + - Галактических Нитей + - Скопления Галактик + - Протоскопления Галактик + - Спирального Рукава + - Звездной Перемычки + - Галактического Диска + - Галактического Гало + - Полярного Кольца + - Релятивистской Струи + - Тёмной Галактики + - Алинды + - Кибелы + - Эос + - Флоры + - Хильды + - Венгрии + - Гигеи + - Корониды + - Марии + - Нисы + - Паллады + - Фокеи + - Фемиды + - Весты + - Атоны + - Аполлоны + - Амуры + - Атиры + - Вулканоида + - Антигравитации + - Гравитации + - Фотоэффекта + - Магнетосопротивления + - Дроплетона + - Сверхизлучения + - Туннелирования + - Рассеивания + - Полураспада + - Распада + - Квантового Сверхплотного Кодирования + - Анизотропии + - Аллотропии + - Спина + - Тензоэффекта + - Сцинтилляции + - Магнитострикции + - Фотопроводимости + - Мирового Эха + - Магнитной Бури + - Дождя + - Смога + - Снега + - Кислотного Дождя + - Тумана + - Грозы + - Смерча + - Шторма + - Альфы + - Беты + - Гаммы + - Дельты + - Дзеты + - Эты + - Тхэты + - Йоты + - Каппы + - Лямбды + - Омикрона + - Омеги + - Тау diff --git a/Resources/Prototypes/ADT/Datasets/Names/name_ipc.yml b/Resources/Prototypes/ADT/Datasets/Names/name_ipc.yml new file mode 100644 index 00000000000..d5952a4f797 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/name_ipc.yml @@ -0,0 +1,1123 @@ +# Simple Station + +- type: dataset + id: IpcFirst + values: + - АБЕКС + - АБЕЛЬ + - АНД + - АНКЛ + - АНТР + - АРМА + - АУРА + - ВЕКСА + - ВИТА + - ВЕЙВ + - ВОЛТ + - ВЕЙФ + - ВИСП + - ВЖ + - ВП + - ВД + - ЛП + - ИМП + - ВРЕН + - ДРСД + - ДУНК + - ДЖЕЙД + - ДЖИНГЛ + - ЖЖР + - ЖЛЛО + - ЖРД + - ЖУНО + - ЗАК + - ЗАРГ + - ЗЕОН + - ЗОЛТ + - ЗУМА + - ЗУЛО + - ЗЕВА + - ИКСИС + - ЙЕРА + - ЙАГО + - КСИ + - РГБ + - СБОС + - СДБ + - КХОС + - СХРИ + - СОЛ + - КРУКС + - САЙБР + - ЭБИКС + - ЭКСОС + - ФИРК + - ФИЗЗ + - ФРЕ + - ФКСМС + - ГИГА + - ГУФ + - ГРИН + - ГАН + - ХБЛ + - ХГ + - ХИУ + - ХОГ + - ИНС + - КАЙЛ + - КАНО + - КАЗА + - КЕНТ + - КИВ + - КОР + - КОРА + - КОС + - ЛУМА + - ЛУНА + - ЛИНКС + - ЛИТА + - МЕТ + - МИВ + - МИР + - МНОС + - МРПР + - МСО + - НАНО + - НЕСТ + - НЕКСО + - НОВА + - ОРНГ + - ОСИ + - ПБУ + - ПКП + - ПКP + - ПКР + - ПЛЕКС + - ПЛЕКСО + - ПЛИКС + - КУС + - КВИН + - КВЕР + - РИФТ + - РР + - РАЙНО + - РЗХ + - СИНА + - СЛИ + - ОПРС + - КЗ + - СТЛП + - TКРГ + - ТРИКС + - ВЕРА + - КСАЛ + - КСЕНА + - КСАЙЛО + - ЮПТ + - ЯМЛ + - ЯНО + - ЯДРО + +- type: dataset + id: IpcLast + values: + - 000 + - 001 + - 002 + - 003 + - 004 + - 005 + - 006 + - 007 + - 008 + - 009 + - 010 + - 011 + - 012 + - 013 + - 014 + - 015 + - 016 + - 017 + - 018 + - 019 + - 020 + - 021 + - 022 + - 023 + - 024 + - 025 + - 026 + - 027 + - 028 + - 029 + - 030 + - 031 + - 032 + - 033 + - 034 + - 035 + - 036 + - 037 + - 038 + - 039 + - 040 + - 041 + - 042 + - 043 + - 044 + - 045 + - 046 + - 047 + - 048 + - 049 + - 050 + - 051 + - 052 + - 053 + - 054 + - 055 + - 056 + - 057 + - 058 + - 059 + - 060 + - 061 + - 062 + - 063 + - 064 + - 065 + - 066 + - 067 + - 068 + - 069 + - 070 + - 071 + - 072 + - 073 + - 074 + - 075 + - 076 + - 077 + - 078 + - 079 + - 080 + - 081 + - 082 + - 083 + - 084 + - 085 + - 086 + - 087 + - 088 + - 089 + - 090 + - 091 + - 092 + - 093 + - 094 + - 095 + - 096 + - 097 + - 098 + - 099 + - 100 + - 101 + - 102 + - 103 + - 104 + - 105 + - 106 + - 107 + - 108 + - 109 + - 110 + - 111 + - 112 + - 113 + - 114 + - 115 + - 116 + - 117 + - 118 + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 + - 125 + - 126 + - 127 + - 128 + - 129 + - 130 + - 131 + - 132 + - 133 + - 134 + - 135 + - 136 + - 137 + - 138 + - 139 + - 140 + - 141 + - 142 + - 143 + - 144 + - 145 + - 146 + - 147 + - 148 + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 + - 159 + - 160 + - 161 + - 162 + - 163 + - 164 + - 165 + - 166 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 + - 180 + - 181 + - 182 + - 183 + - 184 + - 185 + - 186 + - 187 + - 188 + - 189 + - 190 + - 191 + - 192 + - 193 + - 194 + - 195 + - 196 + - 197 + - 198 + - 199 + - 200 + - 201 + - 202 + - 203 + - 204 + - 205 + - 206 + - 207 + - 208 + - 209 + - 210 + - 211 + - 212 + - 213 + - 214 + - 215 + - 216 + - 217 + - 218 + - 219 + - 220 + - 221 + - 222 + - 223 + - 224 + - 225 + - 226 + - 227 + - 228 + - 229 + - 230 + - 231 + - 232 + - 233 + - 234 + - 235 + - 236 + - 237 + - 238 + - 239 + - 240 + - 241 + - 242 + - 243 + - 244 + - 245 + - 246 + - 247 + - 248 + - 249 + - 250 + - 251 + - 252 + - 253 + - 254 + - 255 + - 256 + - 257 + - 258 + - 259 + - 260 + - 261 + - 262 + - 263 + - 264 + - 265 + - 266 + - 267 + - 268 + - 269 + - 270 + - 271 + - 272 + - 273 + - 274 + - 275 + - 276 + - 277 + - 278 + - 279 + - 280 + - 281 + - 282 + - 283 + - 284 + - 285 + - 286 + - 287 + - 288 + - 289 + - 290 + - 291 + - 292 + - 293 + - 294 + - 295 + - 296 + - 297 + - 298 + - 299 + - 300 + - 301 + - 302 + - 303 + - 304 + - 305 + - 306 + - 307 + - 308 + - 309 + - 310 + - 311 + - 312 + - 313 + - 314 + - 315 + - 316 + - 317 + - 318 + - 319 + - 320 + - 321 + - 322 + - 323 + - 324 + - 325 + - 326 + - 327 + - 328 + - 329 + - 330 + - 331 + - 332 + - 333 + - 334 + - 335 + - 336 + - 337 + - 338 + - 339 + - 340 + - 341 + - 342 + - 343 + - 344 + - 345 + - 346 + - 347 + - 348 + - 349 + - 350 + - 351 + - 352 + - 353 + - 354 + - 355 + - 356 + - 357 + - 358 + - 359 + - 360 + - 361 + - 362 + - 363 + - 364 + - 365 + - 366 + - 367 + - 368 + - 369 + - 370 + - 371 + - 372 + - 373 + - 374 + - 375 + - 376 + - 377 + - 378 + - 379 + - 380 + - 381 + - 382 + - 383 + - 384 + - 385 + - 386 + - 387 + - 388 + - 389 + - 390 + - 391 + - 392 + - 393 + - 394 + - 395 + - 396 + - 397 + - 398 + - 399 + - 400 + - 401 + - 402 + - 403 + - 404 + - 405 + - 406 + - 407 + - 408 + - 409 + - 410 + - 411 + - 412 + - 413 + - 414 + - 415 + - 416 + - 417 + - 418 + - 419 + - 420 + - 421 + - 422 + - 423 + - 424 + - 425 + - 426 + - 427 + - 428 + - 429 + - 430 + - 431 + - 432 + - 433 + - 434 + - 435 + - 436 + - 437 + - 438 + - 439 + - 440 + - 441 + - 442 + - 443 + - 444 + - 445 + - 446 + - 447 + - 448 + - 449 + - 450 + - 451 + - 452 + - 453 + - 454 + - 455 + - 456 + - 457 + - 458 + - 459 + - 460 + - 461 + - 462 + - 463 + - 464 + - 465 + - 466 + - 467 + - 468 + - 469 + - 470 + - 471 + - 472 + - 473 + - 474 + - 475 + - 476 + - 477 + - 478 + - 479 + - 480 + - 481 + - 482 + - 483 + - 484 + - 485 + - 486 + - 487 + - 488 + - 489 + - 490 + - 491 + - 492 + - 493 + - 494 + - 495 + - 496 + - 497 + - 498 + - 499 + - 500 + - 501 + - 502 + - 503 + - 504 + - 505 + - 506 + - 507 + - 508 + - 509 + - 510 + - 511 + - 512 + - 513 + - 514 + - 515 + - 516 + - 517 + - 518 + - 519 + - 520 + - 521 + - 522 + - 523 + - 524 + - 525 + - 526 + - 527 + - 528 + - 529 + - 530 + - 531 + - 532 + - 533 + - 534 + - 535 + - 536 + - 537 + - 538 + - 539 + - 540 + - 541 + - 542 + - 543 + - 544 + - 545 + - 546 + - 547 + - 548 + - 549 + - 550 + - 551 + - 552 + - 553 + - 554 + - 555 + - 556 + - 557 + - 558 + - 559 + - 560 + - 561 + - 562 + - 563 + - 564 + - 565 + - 566 + - 567 + - 568 + - 569 + - 570 + - 571 + - 572 + - 573 + - 574 + - 575 + - 576 + - 577 + - 578 + - 579 + - 580 + - 581 + - 582 + - 583 + - 584 + - 585 + - 586 + - 587 + - 588 + - 589 + - 590 + - 591 + - 592 + - 593 + - 594 + - 595 + - 596 + - 597 + - 598 + - 599 + - 600 + - 601 + - 602 + - 603 + - 604 + - 605 + - 606 + - 607 + - 608 + - 609 + - 610 + - 611 + - 612 + - 613 + - 614 + - 615 + - 616 + - 617 + - 618 + - 619 + - 620 + - 621 + - 622 + - 623 + - 624 + - 625 + - 626 + - 627 + - 628 + - 629 + - 630 + - 631 + - 632 + - 633 + - 634 + - 635 + - 636 + - 637 + - 638 + - 639 + - 640 + - 641 + - 642 + - 643 + - 644 + - 645 + - 646 + - 647 + - 648 + - 649 + - 650 + - 651 + - 652 + - 653 + - 654 + - 655 + - 656 + - 657 + - 658 + - 659 + - 660 + - 661 + - 662 + - 663 + - 664 + - 665 + - 666 + - 667 + - 668 + - 669 + - 670 + - 671 + - 672 + - 673 + - 674 + - 675 + - 676 + - 677 + - 678 + - 679 + - 680 + - 681 + - 682 + - 683 + - 684 + - 685 + - 686 + - 687 + - 688 + - 689 + - 690 + - 691 + - 692 + - 693 + - 694 + - 695 + - 696 + - 697 + - 698 + - 699 + - 700 + - 701 + - 702 + - 703 + - 704 + - 705 + - 706 + - 707 + - 708 + - 709 + - 710 + - 711 + - 712 + - 713 + - 714 + - 715 + - 716 + - 717 + - 718 + - 719 + - 720 + - 721 + - 722 + - 723 + - 724 + - 725 + - 726 + - 727 + - 728 + - 729 + - 730 + - 731 + - 732 + - 733 + - 734 + - 735 + - 736 + - 737 + - 738 + - 739 + - 740 + - 741 + - 742 + - 743 + - 744 + - 745 + - 746 + - 747 + - 748 + - 749 + - 750 + - 751 + - 752 + - 753 + - 754 + - 755 + - 756 + - 757 + - 758 + - 759 + - 760 + - 761 + - 762 + - 763 + - 764 + - 765 + - 766 + - 767 + - 768 + - 769 + - 770 + - 771 + - 772 + - 773 + - 774 + - 775 + - 776 + - 777 + - 778 + - 779 + - 780 + - 781 + - 782 + - 783 + - 784 + - 785 + - 786 + - 787 + - 788 + - 789 + - 790 + - 791 + - 792 + - 793 + - 794 + - 795 + - 796 + - 797 + - 798 + - 799 + - 800 + - 801 + - 802 + - 803 + - 804 + - 805 + - 806 + - 807 + - 808 + - 809 + - 810 + - 811 + - 812 + - 813 + - 814 + - 815 + - 816 + - 817 + - 818 + - 819 + - 820 + - 821 + - 822 + - 823 + - 824 + - 825 + - 826 + - 827 + - 828 + - 829 + - 830 + - 831 + - 832 + - 833 + - 834 + - 835 + - 836 + - 837 + - 838 + - 839 + - 840 + - 841 + - 842 + - 843 + - 844 + - 845 + - 846 + - 847 + - 848 + - 849 + - 850 + - 851 + - 852 + - 853 + - 854 + - 855 + - 856 + - 857 + - 858 + - 859 + - 860 + - 861 + - 862 + - 863 + - 864 + - 865 + - 866 + - 867 + - 868 + - 869 + - 870 + - 871 + - 872 + - 873 + - 874 + - 875 + - 876 + - 877 + - 878 + - 879 + - 880 + - 881 + - 882 + - 883 + - 884 + - 885 + - 886 + - 887 + - 888 + - 889 + - 890 + - 891 + - 892 + - 893 + - 894 + - 895 + - 896 + - 897 + - 898 + - 899 + - 900 + - 901 + - 902 + - 903 + - 904 + - 905 + - 906 + - 907 + - 908 + - 909 + - 910 + - 911 + - 912 + - 913 + - 914 + - 915 + - 916 + - 917 + - 918 + - 919 + - 920 + - 921 + - 922 + - 923 + - 924 + - 925 + - 926 + - 927 + - 928 + - 929 + - 930 + - 931 + - 932 + - 933 + - 934 + - 935 + - 936 + - 937 + - 938 + - 939 + - 940 + - 941 + - 942 + - 943 + - 944 + - 945 + - 946 + - 947 + - 948 + - 949 + - 950 + - 951 + - 952 + - 953 + - 954 + - 955 + - 956 + - 957 + - 958 + - 959 + - 960 + - 961 + - 962 + - 963 + - 964 + - 965 + - 966 + - 967 + - 968 + - 969 + - 970 + - 971 + - 972 + - 973 + - 974 + - 975 + - 976 + - 977 + - 978 + - 979 + - 980 + - 981 + - 982 + - 983 + - 984 + - 985 + - 986 + - 987 + - 988 + - 989 + - 990 + - 991 + - 992 + - 993 + - 994 + - 995 + - 996 + - 997 + - 998 + - 999 diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Ears/fill.txt b/Resources/Prototypes/ADT/Entities/Clothing/Ears/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Clothing/Ears/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Head/fill.txt b/Resources/Prototypes/ADT/Entities/Clothing/Head/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Clothing/Head/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml index d0a5e0e12b3..2b3a51a6d85 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Head/hardsuit-helmets.yml @@ -1,7 +1,7 @@ - type: entity parent: ClothingHeadHardsuitBase id: ADTClothingHeadHelmetHardsuitRiotERT - noSpawn: true + categories: [ HideSpawnMenu ] name: riot ert helmet description: The cheapest ERT hardhelmet choice, designed especially for economy and anti-riot actions components: diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/ADT/Entities/Clothing/Head/hats.yml new file mode 100644 index 00000000000..e2c39b11441 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Head/hats.yml @@ -0,0 +1,11 @@ +- type: entity + parent: ClothingHeadBase + id: ADTClothingHeadUrsHat + name: urs hat + description: A futuristic looking striped hat from "STEP" clothing series. + components: + - type: Sprite + sprite: Clothing/Head/Hats/urs_hat.rsi + - type: Clothing + sprite: Clothing/Head/Hats/urs_hat.rsi + diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Masks/mask.yml b/Resources/Prototypes/ADT/Entities/Clothing/Masks/mask.yml new file mode 100644 index 00000000000..f5ffba5e8ab --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Masks/mask.yml @@ -0,0 +1,288 @@ +# TODO: Не стал удалять прототипы, можно будет их по нужде в будущем переносить, или все сразу скопом +# - type: entity +# parent: ClothingMaskBase +# id: ADTJasonHockeyMask +# name: hockey mask of maniac +# description: hockey mask of maniac +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/jason.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/jason.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskBase +# id: ADTSquidGameWorkerMask +# name: squid game worker mask +# description: squid game worker mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/squidgame_worker.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/squidgame_worker.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskBase +# id: ADTSquidGameSoldierMask +# name: squid game soldier mask +# description: squid game soldier mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/squidgame_soldier.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/squidgame_soldier.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskBase +# id: ADTSquidGameManagerMask +# name: squid game manager mask +# description: squid game manager mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/squidgame_manager.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/squidgame_manager.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - type: BreathMask + +# - type: entity +# parent: WeldingMaskBase +# id: ADTClothingHeadHatTagilla +# name: Tagilla mask +# description: Tagilla mask +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/tagilla_mask.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/tagilla_mask.rsi +# - type: Armor +# modifiers: +# coefficients: +# Piercing: 0.95 +# Heat: 0.95 + +# - type: entity +# parent: ClothingMaskBase +# id: ADTClothingHeadHatClownArmor +# name: ballistic mask of a psychopathic clown +# description: OMFG YOU DO NOT KILL CLOWN! CLOWN KILLS YOU! +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/clownballistic_mask.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/clownballistic_mask.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - type: BreathMask +# - type: Armor +# modifiers: +# coefficients: +# Piercing: 0.95 +# Heat: 0.95 + +# - type: entity +# parent: ClothingMaskBase +# id: ADTMichaelMyersMask +# name: Michael Myers mask +# description: Michael Myers mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/michael_myersmask.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/michael_myersmask.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - type: BreathMask + +# # PayDay2 mask +# - type: entity +# parent: ClothingMaskBase +# id: ADTPayDayChainsMask +# name: squid game worker mask +# description: squid game worker mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/payday_chains.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/payday_chains.rsi +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskBase +# id: ADTPayDayDallasMask +# name: squid game worker mask +# description: squid game worker mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/payday_dallas.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/payday_dallas.rsi +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskBase +# id: ADTPayDayHoustonMask +# name: squid game worker mask +# description: squid game worker mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/payday_houston.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/payday_houston.rsi +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskBase +# id: ADTPayDayWolfMask +# name: squid game worker mask +# description: squid game worker mask +# suffix: Halloween +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/payday_wolf.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/payday_wolf.rsi +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskGasSecurity +# id: ADTClothingMaskGasLapkeeSet +# name: white sec mask +# description: white sec mask +# suffix: Personal, Lapkee +# components: +# - type: BreathMask +# - type: Sprite +# sprite: ADT/Clothing/Mask/lapkeeset_mask.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/lapkeeset_mask.rsi + +# - type: entity +# parent: ClothingMaskBase +# id: ADTClothingMaskBorodaDedMoroz +# suffix: New Year +# name: Boroda ded moroz +# description: Boroda ded moroz +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/ded_morozsetboroda.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/ded_morozsetboroda.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskBase +# id: ADTChronosMask +# name: chronos victim mask +# description: chronos victim mask +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/chronosvisor.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/chronosvisor.rsi +# - type: BreathMask +# - type: ShowSecurityIcons +# - type: FlashImmunity +# - type: EyeProtection +# protectionTime: 5 + +# #противогаз СССП + +# - type: entity +# parent: ClothingMaskGasSyndicate +# id: ADTClothingMaskGasUSSP +# name: PMG-40 gasmask +# description: The gas mask of the army of USSP. +# suffix: USSP +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/usspgasmask.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/usspgasmask.rsi +# - type: Tag +# tags: +# - HidesHair +# - type: ShowSecurityIcons + +# - type: entity +# parent: ClothingMaskGasSecurity +# id: ADTClothingMaskGasDarkRavenFriskis +# suffix: Only Friskis +# name: raven gas mask +# description: raven gas mask +# components: +# - type: Sprite +# sprite: ADT/Clothing/Mask/raven.rsi +# - type: Clothing +# sprite: ADT/Clothing/Mask/raven.rsi +# clothingVisuals: +# mask: +# - state: equipped-MASK +# - state: equipped-MASK-unshaded +# shader: unshaded +# - type: BreathMask + +# - type: entity +# parent: ClothingMaskGas +# id: ADTClothingMaskGasIlisium +# name: gas mask +# description: A close-fitting tactical mask that can be connected to an air supply. +# components: +# - type: Sprite +# sprite: ADT/Clothing/Head/Hats/gasmask_ili.rsi +# - type: Clothing +# sprite: ADT/Clothing/Head/Hats/gasmask_ili.rsi +# - type: FlashImmunity +# - type: EyeProtection +# protectionTime: 5 + +- type: entity + parent: ClothingMaskGasAtmos + id: ADTClothingMaskGasCE + name: Chief Engineer's gas mask + description: This is an elite gas mask of the chief engineer, which even Centcom can envy. Protects against welding. + components: + - type: Sprite + sprite: ADT/Clothing/Mask/gasCE.rsi + - type: Clothing + sprite: ADT/Clothing/Mask/gasCE.rsi + - type: BreathMask + - type: IngestionBlocker + - type: FlashImmunity + - type: EyeProtection + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Caustic: 0.90 + Radiation: 0.80 + Heat: 0.80 + - type: StealTarget + stealGroup: ADTClothingMaskGasCE diff --git a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml new file mode 100644 index 00000000000..92b31e4e391 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml @@ -0,0 +1,36 @@ +- type: entity + parent: ClothingOuterStorageBase + id: ADTClothingOuterCoatUrs + name: Urs outercoat. + description: Urs outercoat. + components: + - type: Sprite + sprite: ADT/Clothing/OuterClothing/Coats/urs_coat.rsi + - type: Clothing + sprite: ADT/Clothing/OuterClothing/Coats/urs_coat.rsi + - type: TemperatureProtection + coefficient: 0.9 + - type: Armor + modifiers: + coefficients: + Slash: 0.95 + Heat: 0.90 + +- type: entity + parent: ClothingOuterStorageBase + id: ADTClothingKadet + name: kadet greatcoat + description: a greatcoat made for recruits to the security service. It is very similar to the overcoat of the junior ranks of RIA + components: + - type: Sprite + sprite: ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi + - type: Clothing + sprite: ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.7 + Heat: 0.85 + diff --git a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/fill.txt b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/fill.txt b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml index f2d42ba2717..efa85f6f30d 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/magboots.yml @@ -22,7 +22,7 @@ - type: entity id: ActionToggleMagbootsERT parent: ActionToggleMagboots - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: InstantAction icon: { sprite: ADT/Clothing/Shoes/Boots/magboots-ert.rsi, state: icon } diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml index a2ef44656e6..014d6f6474a 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml @@ -5,6 +5,6 @@ description: white-diplomat-suit-desc components: - type: Sprite - sprite: ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi + sprite: ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi - type: Clothing - sprite: ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi + sprite: ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/fill.txt b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/ADT/Entities/Markers/Spawners/jobs.yml index 10d99928089..8b7daec37ea 100644 --- a/Resources/Prototypes/ADT/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/ADT/Entities/Markers/Spawners/jobs.yml @@ -44,3 +44,15 @@ layers: - state: green - state: iaa + +- type: entity + id: ADTSpawnPointRoboticist + parent: SpawnPointJobBase + name: roboticist + components: + - type: SpawnPoint + job_id: ADTRoboticist + - type: Sprite + layers: + - state: green + - state: scientist diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Drask.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Drask.yml index 242111d6d68..d3c8ce04e74 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Drask.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Drask.yml @@ -17,7 +17,7 @@ !type:SimpleColoring color: "#171717" sprites: - - sprite: ADT/Mobs/Drask/custom.rsi + - sprite: ADT/Mobs/Customization/Drask/custom.rsi state: r_arm - type: marking @@ -39,5 +39,5 @@ !type:SimpleColoring color: "#171717" sprites: - - sprite: ADT/Mobs/Drask/custom.rsi + - sprite: ADT/Mobs/Customization/Drask/custom.rsi state: l_arm diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Ursus.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Ursus.yml new file mode 100644 index 00000000000..f4cf1eb6816 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Ursus.yml @@ -0,0 +1,399 @@ +#наложение +- type: marking + id: ADTUrsusfluffiness + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: fluffiness + +- type: marking + id: ADTUrsusfluffiness2 + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: fluffiness2 + +- type: marking + id: ADTUrsusfluffiness3 + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: fluffiness3 + +- type: marking + id: ADTUrsuspanda + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: panda + +- type: marking + id: ADTUrsusspace_bear + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: space_bear + +- type: marking + id: ADTUrsustattoo_leader + bodyPart: LLeg + markingCategory: Overlay + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: tattoo_leader + +# - type: marking +# id: DionaVineOverlay +# bodyPart: LLeg +# markingCategory: Overlay +# speciesRestriction: [Diona] +# coloring: +# default: +# type: +# !type:SimpleColoring +# color: "#5f7039" +# sprites: +# - sprite: Mobs/Customization/diona.rsi +# state: overlay + + +#грудь +- type: marking + id: ADTUrsusbig_heart + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: big_heart + +- type: marking + id: ADTUrsussoft_belly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: soft_belly + +- type: marking + id: ADTUrsussoft_belly2 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: soft_belly2 + +- type: marking + id: ADTUrsusgrizzly_necklace + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: grizzly_necklace + +- type: marking + id: ADTUrsusgrizzly_necklace2 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: grizzly_necklace2 + +- type: marking + id: ADTUrsusgrizzly_necklace3 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: grizzly_necklace3 + +#лицо + +- type: marking + id: ADTUrsusMuzzle + bodyPart: Head + markingCategory: Snout + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: Muzzle + +- type: marking + id: ADTUrsusMuzzle2 + bodyPart: Head + markingCategory: Snout + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: Muzzle2 + +- type: marking + id: ADTUrsusnose + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: nose + +- type: marking + id: ADTUrsusears + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: ears + +- type: marking + id: ADTUrsusears2 + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: ears2 + +- type: marking + id: ADTUrsusthird_eye + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: third_eye + +- type: marking + id: ADTUrsusarrow + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: arrow + +- type: marking + id: ADTUrsusembarrassment + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: embarrassment + +- type: marking + id: ADTUrsusspots + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: spots + +- type: marking + id: ADTUrsusspots_left + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: spots_left + +- type: marking + id: ADTUrsusspots_right + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: spots_right + +- type: marking + id: ADTUrsusrigth_eye + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: rigth_eye + +- type: marking + id: ADTUrsusleft_eye + bodyPart: Eyes + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: left_eye + +- type: marking + id: ADTUrsusstar + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: star + +- type: marking + id: ADTUrsuskiss + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: kiss + +- type: marking + id: ADTUrsuseyeliner + bodyPart: Head + markingCategory: Head + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: eyeliner + +#Части тел. +- type: marking + id: ADTUrsushand_left + bodyPart: LHand + markingCategory: Arms + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: hand_left + +- type: marking + id: ADTUrsusgradienthand_left + bodyPart: LHand + markingCategory: Arms + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradienthand_left + +- type: marking + id: ADTUrsusgradienthand_left2 + bodyPart: LHand + markingCategory: Arms + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradienthand_left2 + +- type: marking + id: ADTUrsushand_right + bodyPart: RHand + markingCategory: Arms + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: hand_right + +- type: marking + id: ADTUrsusgradienthand_right + bodyPart: RHand + markingCategory: Arms + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradienthand_right + +- type: marking + id: ADTUrsusgradienthand_right2 + bodyPart: RHand + markingCategory: Arms + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradienthand_right2 + +- type: marking + id: ADTUrsusfoot_left + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: foot_left + +- type: marking + id: ADTUrsusgradientfoot_left + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradientfoot_left + +- type: marking + id: ADTUrsusgradientfoot_left2 + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradientfoot_left2 + +- type: marking + id: ADTUrsusfoot_right + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: foot_right + +- type: marking + id: ADTUrsusgradientfoot_right + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradientfoot_right + +- type: marking + id: ADTUrsusgradientfoot_right2 + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gradientfoot_right2 + +#спина + +- type: marking + id: ADTUrsuscardigan + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: cardigan + +- type: marking + id: ADTUrsuscardigan2 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: cardigan2 diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Ursus_hair.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Ursus_hair.yml new file mode 100644 index 00000000000..1376f0d96fe --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Ursus_hair.yml @@ -0,0 +1,241 @@ +- type: marking + id: ADTUrsusNeat + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: neat + +- type: marking + id: ADTUrsusWarrior + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: warrior + +- type: marking + id: ADTUrsusWarrior2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: warrior2 + +- type: marking + id: ADTUrsusSurfaceRiver + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: surface_river + +- type: marking + id: ADTUrsusGorgon + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: gorgon + +- type: marking + id: ADTUrsusBreadwinner + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: breadwinner + +- type: marking + id: ADTUrsusWhip + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: whip + +- type: marking + id: ADTUrsusWhip2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: whip2 + +- type: marking + id: ADTUrsusShorthedgehog + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: short_hedgehog + +- type: marking + id: ADTUrsusShorthedgehog2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: short_hedgehog2 + +- type: marking + id: ADTUrsusValkyriesscythe + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: valkyries_scythe + +- type: marking + id: ADTUrsusValkyriesscythe2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: valkyries_scythe2 + +- type: marking + id: ADTUrsusWarriorsscythe + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: warriors_scythe +- type: marking + id: ADTUrsusBraidsontheside + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: braids_on_the_side + +- type: marking + id: ADTUrsusBraidsontheside2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: braids_on_the_side2 + +- type: marking + id: ADTUrsusForeststyle + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: forest_style + +- type: marking + id: ADTUrsusForeststyle2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: forest_style2 + +- type: marking + id: ADTUrsusSoftwaves + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: soft_waves + +- type: marking + id: ADTUrsusSoftwaves2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: soft_waves2 + +- type: marking + id: ADTUrsusBraidedcone + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: braided_cone + +- type: marking + id: ADTUrsusBraidedside + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: braided_side + +- type: marking + id: ADTUrsusBraidedside2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: braided_side2 + +- type: marking + id: ADTUrsusCollector + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: collector + +- type: marking + id: ADTUrsusFallencone + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: fallen_cone + +- type: marking + id: ADTUrsusTailbigdipper + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: tail_big_dipper + +- type: marking + id: ADTUrsusCone + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: cone + +- type: marking + id: ADTUrsusYoungboy + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [UrsusSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Ursus/custom.rsi + state: young_boy diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/demon.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/demon.yml index bb197ca124a..8940c838378 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/demon.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/demon.yml @@ -4,7 +4,7 @@ markingCategory: Tail speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: demon_tail - type: marking @@ -13,7 +13,7 @@ markingCategory: Tail speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: long - type: marking @@ -22,7 +22,7 @@ markingCategory: Tail speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: up - type: marking @@ -31,7 +31,7 @@ markingCategory: HeadSide speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: cow_ears - type: marking @@ -40,7 +40,7 @@ markingCategory: HeadSide speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: demon_ears - type: marking @@ -49,7 +49,7 @@ markingCategory: HeadTop speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: cow_horns - type: marking @@ -58,7 +58,7 @@ markingCategory: HeadTop speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: deer_antlers_horns - type: marking @@ -67,7 +67,7 @@ markingCategory: HeadTop speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: small_horns - type: marking @@ -76,7 +76,7 @@ markingCategory: Chest speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: cow_spots - type: marking @@ -85,7 +85,7 @@ markingCategory: Chest speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: guards_stripes - type: marking @@ -94,7 +94,7 @@ markingCategory: Chest speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: lines_emperos - type: marking @@ -103,7 +103,7 @@ markingCategory: Chest speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: queen_lines - type: marking @@ -112,7 +112,7 @@ markingCategory: Chest speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: tree_lines - type: marking @@ -121,7 +121,7 @@ markingCategory: Chest speciesRestriction: [DemonSpecies] sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: trinity_spots - type: marking @@ -129,5 +129,5 @@ bodyPart: FacialHair markingCategory: FacialHair sprites: - - sprite: ADT/Mobs/Demon/custom.rsi + - sprite: ADT/Mobs/Customization/Demon/custom.rsi state: goatee diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/ipc_antenna.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/ipc_antenna.yml new file mode 100644 index 00000000000..3c07f6474b7 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/ipc_antenna.yml @@ -0,0 +1,91 @@ +# Simple Station + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaTv + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi + state: ipc_antenna_tv + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaTesla + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi + state: ipc_antenna_tesla + +# - type: marking +# speciesRestriction: [IPC] +# id: RobotAntennaLightb +# bodyPart: Hair +# markingCategory: Hair +# sprites: +# - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi +# state: ipc_antenna_lightb + +# - type: marking +# speciesRestriction: [IPC] +# id: RobotAntennaLight +# bodyPart: Hair +# markingCategory: Hair +# sprites: +# - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi +# state: ipc_antenna_light + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaCyberhead + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi + state: ipc_antenna_cyberhead + +# - type: marking +# speciesRestriction: [IPC] +# id: RobotAntennaSidelights +# bodyPart: Hair +# markingCategory: Hair +# sprites: +# - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi +# state: ipc_antenna_sidelights + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaAntlers + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi + state: ipc_antenna_antlers + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaDroneeyes + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi + state: ipc_antenna_droneeyes + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaCrowned + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi + state: ipc_antenna_crowned + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaTowers + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_antenna.rsi + state: ipc_antenna_towers diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/ipc_screens.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/ipc_screens.yml new file mode 100644 index 00000000000..9f79c99976e --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/ipc_screens.yml @@ -0,0 +1,374 @@ +# Simple Station + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenStatic + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_static + +- type: marking + speciesRestriction: [IPC] + id: ScreenBlue + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_blue + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenBreakout + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_breakout + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenEight + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_eight + +- type: marking + speciesRestriction: [IPC] + id: ScreenGoggles + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_goggles + +- type: marking + speciesRestriction: [IPC] + id: ScreenExclaim + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_exclaim + +- type: marking + speciesRestriction: [IPC] + id: ScreenHeart + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_heart + +- type: marking + speciesRestriction: [IPC] + id: ScreenMonoeye + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_monoeye + +- type: marking + speciesRestriction: [IPC] + id: ScreenNature + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_nature + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenOrange + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_orange + +- type: marking + speciesRestriction: [IPC] + id: ScreenPink + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_pink + +- type: marking + speciesRestriction: [IPC] + id: ScreenQuestion + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_question + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenShower + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_shower + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenYellow + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_yellow + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenScroll + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_scroll + +- type: marking + speciesRestriction: [IPC] + id: ScreenConsole + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_console + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRgb + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_rgb + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenGlider + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_glider + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRainbowhoriz + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_rainbowhoriz + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenBsod + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_bsod + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRedtext + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_redtext + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenSinewave + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_sinewave + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenSquarewave + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_squarewave + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenEcgwave + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_ecgwave + +- type: marking + speciesRestriction: [IPC] + id: ScreenEyes + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_eyes + +- type: marking + speciesRestriction: [IPC] + id: ScreenEyestall + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_eyestall + +- type: marking + speciesRestriction: [IPC] + id: ScreenEyesangry + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_eyesangry + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenLoading + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_loading + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenWindowsxp + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_windowsxp + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenTetris + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_tetris + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenTv + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_tv + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenTextdrop + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_textdrop + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenStars + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_stars + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRainbowdiag + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_rainbowdiag + +- type: marking + speciesRestriction: [IPC] + id: ScreenBlank + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_blank + +- type: marking + speciesRestriction: [IPC] + id: ScreenSmile + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_smile + +- type: marking + speciesRestriction: [IPC] + id: ScreenFrown + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_frown + +- type: marking + speciesRestriction: [IPC] + id: ScreenRing + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_ring + +- type: marking + speciesRestriction: [IPC] + id: ScreenL + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/Ipc/ipc_screens.rsi + state: ipc_screen_l diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/moth.yml new file mode 100644 index 00000000000..c1d5df24633 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/moth.yml @@ -0,0 +1,1111 @@ +# Antennas +- type: marking + id: MothAntennasDefault + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: default + +- type: marking + id: MothAntennasCharred + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: charred + +- type: marking + id: MothAntennasDbushy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dbushy + +- type: marking + id: MothAntennasDcurvy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dcurvy + +- type: marking + id: MothAntennasDfan + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dfan + +- type: marking + id: MothAntennasDpointy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dpointy + +- type: marking + id: MothAntennasFeathery + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: feathery + +- type: marking + id: MothAntennasFirewatch + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: firewatch + +- type: marking + id: MothAntennasGray + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: gray + +- type: marking + id: MothAntennasJungle + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: jungle + +- type: marking + id: MothAntennasMoffra + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: moffra + +- type: marking + id: MothAntennasOakworm + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: oakworm + +- type: marking + id: MothAntennasPlasmafire + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: plasmafire + +- type: marking + id: MothAntennasMaple + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: maple + +- type: marking + id: MothAntennasRoyal + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: royal + +- type: marking + id: MothAntennasStriped + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: striped + +- type: marking + id: MothAntennasWhitefly + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: whitefly + +- type: marking + id: MothAntennasWitchwing + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: witchwing + +- type: marking + id: MothAntennasUnderwing + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: underwing_primary + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: underwing_secondary + +# Wings +- type: marking + id: MothWingsDefault + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: default + +- type: marking + id: MothWingsCharred + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: charred + +- type: marking + id: MothWingsDbushy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: dbushy_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: dbushy_secondary + +- type: marking + id: MothWingsDeathhead + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: deathhead_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: deathhead_secondary + +- type: marking + id: MothWingsFan + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: fan + +- type: marking + id: MothWingsDfan + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: dfan + +- type: marking + id: MothWingsFeathery + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: feathery + +- type: marking + id: MothWingsFirewatch + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: firewatch_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: firewatch_secondary + +- type: marking + id: MothWingsGothic + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: gothic + +- type: marking + id: MothWingsJungle + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: jungle + +- type: marking + id: MothWingsLadybug + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: ladybug + +- type: marking + id: MothWingsMaple + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: maple + +- type: marking + id: MothWingsMoffra + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: moffra_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: moffra_secondary + +- type: marking + id: MothWingsOakworm + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: oakworm + +- type: marking + id: MothWingsPlasmafire + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: plasmafire_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: plasmafire_secondary + +- type: marking + id: MothWingsPointy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: pointy + +- type: marking + id: MothWingsRoyal + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: royal_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: royal_secondary + +- type: marking + id: MothWingsStellar + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: stellar + +- type: marking + id: MothWingsStriped + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: striped + +- type: marking + id: MothWingsSwirly + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: swirly + +- type: marking + id: MothWingsWhitefly + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: whitefly + +- type: marking + id: MothWingsWitchwing + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: witchwing + +- type: marking + id: MothWingsUnderwing + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: underwing_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: underwing_secondary + +# Body markings: +# Charred +- type: marking + id: MothChestCharred + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_chest + +- type: marking + id: MothHeadCharred + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_head + +- type: marking + id: MothLLegCharred + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_l_leg + +- type: marking + id: MothRLegCharred + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_r_leg + +- type: marking + id: MothLArmCharred + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_l_arm + +- type: marking + id: MothRArmCharred + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_r_arm + +# Death's-Head +- type: marking + id: MothChestDeathhead + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_chest + +- type: marking + id: MothHeadDeathhead + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_head + +- type: marking + id: MothLLegDeathhead + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_l_leg + +- type: marking + id: MothRLegDeathhead + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_r_leg + +- type: marking + id: MothLArmDeathhead + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_l_arm + +- type: marking + id: MothRArmDeathhead + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_r_arm + +# Fan +- type: marking + id: MothChestFan + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_chest + +- type: marking + id: MothHeadFan + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_head + +- type: marking + id: MothLLegFan + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_l_leg + +- type: marking + id: MothRLegFan + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_r_leg + +- type: marking + id: MothLArmFan + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_l_arm + +- type: marking + id: MothRArmFan + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_r_arm + +# Firewatch +- type: marking + id: MothChestFirewatch + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_chest + +- type: marking + id: MothHeadFirewatch + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_head + +- type: marking + id: MothLLegFirewatch + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_l_leg + +- type: marking + id: MothRLegFirewatch + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_r_leg + +- type: marking + id: MothLArmFirewatch + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_l_arm + +- type: marking + id: MothRArmFirewatch + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_r_arm + +# Gothic +- type: marking + id: MothChestGothic + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_chest + +- type: marking + id: MothHeadGothic + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_head + +- type: marking + id: MothLLegGothic + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_l_leg + +- type: marking + id: MothRLegGothic + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_r_leg + +- type: marking + id: MothLArmGothic + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_l_arm + +- type: marking + id: MothRArmGothic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_r_arm + +# Jungle +- type: marking + id: MothChestJungle + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_chest + +- type: marking + id: MothHeadJungle + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_head + +- type: marking + id: MothLLegJungle + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_l_leg + +- type: marking + id: MothRLegJungle + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_r_leg + +- type: marking + id: MothLArmJungle + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_l_arm + +- type: marking + id: MothRArmJungle + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_r_arm + +# Moonfly +- type: marking + id: MothChestMoonfly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_chest + +- type: marking + id: MothHeadMoonfly + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_head + +- type: marking + id: MothLLegMoonfly + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_l_leg + +- type: marking + id: MothRLegMoonfly + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_r_leg + +- type: marking + id: MothLArmMoonfly + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_l_arm + +- type: marking + id: MothRArmMoonfly + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_r_arm + +# Oak Worm +- type: marking + id: MothChestOakworm + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_chest + +- type: marking + id: MothHeadOakworm + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_head + +- type: marking + id: MothLLegOakworm + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_l_leg + +- type: marking + id: MothRLegOakworm + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_r_leg + +- type: marking + id: MothLArmOakworm + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_l_arm + +- type: marking + id: MothRArmOakworm + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_r_arm + +# Pointy +- type: marking + id: MothChestPointy + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_chest + +- type: marking + id: MothHeadPointy + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_head + +- type: marking + id: MothLLegPointy + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_l_leg + +- type: marking + id: MothRLegPointy + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_r_leg + +- type: marking + id: MothLArmPointy + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_l_arm + +- type: marking + id: MothRArmPointy + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_r_arm + +# Ragged +- type: marking + id: MothChestRagged + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_chest + +- type: marking + id: MothHeadRagged + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_head + +- type: marking + id: MothLLegRagged + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_l_leg + +- type: marking + id: MothRLegRagged + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_r_leg + +- type: marking + id: MothLArmRagged + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_l_arm + +- type: marking + id: MothRArmRagged + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_r_arm + +# Royal +- type: marking + id: MothChestRoyal + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_chest + +- type: marking + id: MothHeadRoyal + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_head + +- type: marking + id: MothLLegRoyal + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_l_leg + +- type: marking + id: MothRLegRoyal + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_r_leg + +- type: marking + id: MothLArmRoyal + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_l_arm + +- type: marking + id: MothRArmRoyal + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_r_arm + +# White Fly +- type: marking + id: MothChestWhitefly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_chest + +- type: marking + id: MothHeadWhitefly + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_head + +- type: marking + id: MothLLegWhitefly + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_l_leg + +- type: marking + id: MothRLegWhitefly + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_r_leg + +- type: marking + id: MothLArmWhitefly + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_l_arm + +- type: marking + id: MothRArmWhitefly + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_r_arm + +# Witch Wing +- type: marking + id: MothChestWitchwing + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_chest + +- type: marking + id: MothHeadWitchwing + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_head + +- type: marking + id: MothLLegWitchwing + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_l_leg + +- type: marking + id: MothRLegWitchwing + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_r_leg + +- type: marking + id: MothLArmWitchwing + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_l_arm + +- type: marking + id: MothRArmWitchwing + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_r_arm diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/novakid.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/novakid.yml new file mode 100644 index 00000000000..f440b776462 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/novakid.yml @@ -0,0 +1,534 @@ + +- type: marking + id: NovakidHair1 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: braid + +- type: marking + id: NovakidHair2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: comet + +- type: marking + id: NovakidHair3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: constellation + +- type: marking + id: NovakidHair4 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: duality + +- type: marking + id: NovakidHair5 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: fame + +- type: marking + id: NovakidHair6 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: gas_cloud + +- type: marking + id: NovakidHair7 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: gaseous_avalanche + +- type: marking + id: NovakidHair8 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: light_shine + +- type: marking + id: NovakidHair9 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: little_light_starshine + +- type: marking + id: NovakidHair10 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: little_star + +- type: marking + id: NovakidHair11 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: lunar_day + +- type: marking + id: NovakidHair12 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: meteoric_shower + +- type: marking + id: NovakidHair13 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: milky_way + +- type: marking + id: NovakidHair14 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: Nebula + +- type: marking + id: NovakidHair15 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: solar_corona + +- type: marking + id: NovakidHair16 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: star_rain + +- type: marking + id: NovakidHair17 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: starfall + +- type: marking + id: NovakidHair18 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: starfire + +- type: marking + id: NovakidHair19 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: sunshine + +- type: marking + id: NovakidHair20 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: supernova + +- type: marking + id: NovakidHair21 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: universal_style + +- type: marking + id: NovakidHair22 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: virgo + +- type: marking + id: NovakidFace1 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: cross + +- type: marking + id: NovakidFace2 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: crack + +- type: marking + id: NovakidFace3 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: crucifix + +- type: marking + id: NovakidFace4 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: dual + +- type: marking + id: NovakidFace5 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: eye + +- type: marking + id: NovakidFace6 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: h + +- type: marking + id: NovakidFace7 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: heart + +- type: marking + id: NovakidFace8 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: indicator + +- type: marking + id: NovakidFace9 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: note + +- type: marking + id: NovakidFace10 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: prism + +- type: marking + id: NovakidFace11 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: rune + +- type: marking + id: NovakidFace12 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: squad + +- type: marking + id: NovakidFace13 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: thrill + +- type: marking + id: NovakidFace14 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: triple + +- type: marking + id: NovakidFace15 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: uncrucifix + +- type: marking + id: NovakidFace16 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: x + +- type: marking + id: NovakidFace17 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: ye + +- type: marking + id: NovakidFace18 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: zeta + +- type: marking + id: HeadNovakidDefolt + bodyPart: [ Head ] + markingCategory: HeadTop + speciesRestriction: [NovakidSpecies] + forcedColoring: true + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: head_novakid_defolt + +- type: marking + id: TorsoNovakidDefolt + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [NovakidSpecies] + forcedColoring: true + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: torso_novakid_defolt + +- type: marking + id: NovakidFace19 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: cone_a + +- type: marking + id: NovakidFace20 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: connect_a + +- type: marking + id: NovakidFace21 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: dot_a + +- type: marking + id: NovakidFace22 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: dotline_a + +- type: marking + id: NovakidFace23 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: eyes_a + +- type: marking + id: NovakidFace24 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: G_a + +- type: marking + id: NovakidFace25 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: house + +- type: marking + id: NovakidFace26 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: K + +- type: marking + id: NovakidFace27 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: lima-a + +- type: marking + id: NovakidFace28 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: linedot_a + +- type: marking + id: NovakidFace29 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: omega_a + +- type: marking + id: NovakidFace30 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: plus + +- type: marking + id: NovakidFace31 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: rose + +- type: marking + id: NovakidFace32 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: shatter_a + +- type: marking + id: NovakidFace33 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: star_a + +- type: marking + id: NovakidFace34 + bodyPart: Snout + markingCategory: HeadSide + speciesRestriction: [NovakidSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Novakid/custom.rsi + state: two-a diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/shadekin_ears.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/shadekin_ears.yml new file mode 100644 index 00000000000..295396c7ce4 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/shadekin_ears.yml @@ -0,0 +1,19 @@ +- type: marking + id: EarsShadekin + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Shadekin] + sprites: + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi + state: shadekin + +- type: marking + id: EarsShadekinStriped + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Shadekin] + sprites: + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi + state: shadekin + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi + state: shadekin_stripes diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/shadekin_tails.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/shadekin_tails.yml new file mode 100644 index 00000000000..a6c95ecd2ae --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/shadekin_tails.yml @@ -0,0 +1,44 @@ +- type: marking + id: TailShadekin + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Shadekin] + sprites: + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi + state: shadekin + +- type: marking + id: TailShadekinBig + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Shadekin] + sprites: + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi + state: shadekin_big + +- type: marking + id: TailShadekinBigFluff + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Shadekin] + sprites: + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi + state: shadekin_big_fluff + +- type: marking + id: TailShadekinShorter + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Shadekin] + sprites: + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi + state: shadekin_shorter + +- type: marking + id: TailShadekinMedium + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Shadekin] + sprites: + - sprite: ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi + state: shadekin_medium diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/Ursus.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/Ursus.yml new file mode 100644 index 00000000000..dceb0c86b7f --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/Ursus.yml @@ -0,0 +1,52 @@ +- type: entity + save: false + name: "Urisst' McUrsus" + parent: BaseMobUrsus + id: MobUrsus + components: + - type: Temperature + heatDamageThreshold: 320 + coldDamageThreshold: 250 + currentTemperature: 280 + specificHeat: 50 + coldDamage: + types: + Cold: 0.005 #per second, scales with temperature & other constants + heatDamage: + types: + Heat: 1.5 #per second, scales with temperature & other constants + - type: CombatMode + - type: InteractionPopup + successChance: 1 + interactSuccessString: hugging-success-generic + interactSuccessSound: /Audio/Effects/thudswoosh.ogg + messagePerceivedByOthers: hugging-success-generic-others + - type: MindContainer + showExamineInfo: true + - type: Input + context: "human" + - type: MobMover + - type: InputMover + - type: Alerts + - type: Eye + - type: CameraRecoil + - type: Examiner + - type: CanHostGuardian + - type: NpcFactionMember + factions: + - NanoTrasen + - type: Respirator + damage: + types: + Asphyxiation: 1.0 + damageRecovery: + types: + Asphyxiation: -1.0 + - type: Inventory + speciesId: urs #для одежды на урсов + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/ipc.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/ipc.yml new file mode 100644 index 00000000000..ca0b8519b09 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/ipc.yml @@ -0,0 +1,146 @@ +# Simple Station + +- type: entity + id: MobIPC + parent: PlayerSiliconHumanoidBase + name: Urist McPositronic + #description: [mob_ipc-desc] + components: + - type: InteractionPopup + interactSuccessString: petting-success-ipc + #interactFailureString: petting-failure-cleanbot + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: SiliconEmitSoundOnDrained + sound: "/Audio/Weapons/Guns/EmptyAlarm/smg_empty_alarm.ogg" + interval: 15 + playChance: 1 + popUp: silicon-power-low + - type: MobState + allowedStates: + - Alive + - Critical + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 125: Critical + 180: Dead + stateAlertDict: + Alive: BorgHealth + Critical: BorgCrit + Dead: BorgDead + allowRevives: true # Для воскрешения достаточно починить урон. - ss220. + - type: NpcFactionMember + factions: + - NanoTrasen + - type: TypingIndicator + proto: robot + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 400 + behaviors: + - !type:GibBehavior { } + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.7 + 90: 0.5 + 120: 0.3 + - type: SiliconDownOnDead + - type: EyeProtection + protectionTime: 12 + - type: Battery + maxCharge: 75000 + startingCharge: 75000 + - type: Silicon + entityType: enum.SiliconType.Player + batteryPowered: true + drainPerSecond: 30 + chargeThresholdMid: 0.80 + chargeThresholdLow: 0.35 + chargeThresholdCritical: 0.10 + speedModifierThresholds: + 4: 1 + 3: 1 + 2: 0.80 + 1: 0.45 + 0: 0.00 + - type: BatteryDrinker + - type: UnpoweredFlashlight + - type: PointLight + enabled: false + color: "#a8d8ff" + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + radius: 6 + - type: Wires + boardName: "ipc-board-name" + layoutId: IPC + - type: WiresPanel + - type: EncryptionKeyHolder + keySlots: 3 + examineWhileLocked: false + keysExtractionMethod: Cutting + - type: ActiveRadio + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + - type: SSDIndicator +# - type: UnblockableSpeech + # - type: EmotePanel + - type: ContentEye + maxZoom: 1.0,1.0 + - type: LightningTarget + priority: 4 + lightningExplode: false + - type: Vocal + sounds: + Male: UnisexIPC + Female: UnisexIPC + Unsexed: UnisexIPC + - type: TriggerOnMobstateChange + mobState: + - Dead + - type: EmitSoundOnTrigger + sound: + path: /Audio/ADT/IPC/borg_deathsound.ogg + - type: TTS # Corvax-TTS + # Frontier - languages mechanic + - type: LanguageSpeaker + speaks: + - GalacticCommon + - BorgTalk + - RobotTalk + understands: + - GalacticCommon + - BorgTalk + - RobotTalk + - type: Tag + tags: + # - ChangelingBlacklist + # - ShoesRequiredStepTriggerImmune + - CanPilot + - FootstepSound + - DoorBumpOpener + - type: Inventory + templateId: ipc + - type: SizeAttributeWhitelist # Frontier + tall: true + tallscale: 1.1 + short: true + shortscale: 0.9 + +- type: entity + save: false + name: Urist McPositronic + parent: MobHumanDummy + id: MobIPCDummy + categories: [ HideSpawnMenu ] + description: A dummy IPC meant to be used in character setup. + components: + - type: HumanoidAppearance + species: IPC + - type: Inventory + templateId: ipc diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/moth.yml new file mode 100644 index 00000000000..ea01677626d --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/moth.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McFluff + parent: BaseMobMoth + id: MobMoth diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/novakid.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/novakid.yml new file mode 100644 index 00000000000..ba7f3dbae17 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/novakid.yml @@ -0,0 +1,47 @@ +- type: entity + save: false + name: "Urisst' Mzhand Novakid" + parent: BaseMobNovakid + id: MobNovakid + components: + - type: CombatMode + - type: InteractionPopup + successChance: 1 + interactSuccessString: hugging-success-generic + interactSuccessSound: /Audio/Effects/thudswoosh.ogg + messagePerceivedByOthers: hugging-success-generic-others + - type: MindContainer + showExamineInfo: true + - type: Input + context: "human" + - type: MobMover + - type: InputMover + - type: Alerts + - type: Eye + - type: CameraRecoil + - type: Examiner + - type: CanHostGuardian + - type: NpcFactionMember + factions: + - NanoTrasen + - type: Respirator + damage: + types: + Asphyxiation: 1.0 + damageRecovery: + types: + Asphyxiation: -1.0 + - type: LanguageSpeaker + speaks: + - GalacticCommon + - Fire + understands: + - GalacticCommon + - Fire + - type: SizeAttributeWhitelist # Frontier + tall: true + tallscale: 1.1 + short: true + shortscale: 0.9 + +#Weh diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/shadekin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/shadekin.yml new file mode 100644 index 00000000000..9de6f7c3040 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/shadekin.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + parent: BaseMobShadekin + id: MobShadekin + name: Урист МакСумеречник diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/silicon_base.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/silicon_base.yml new file mode 100644 index 00000000000..9295c7751f9 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/silicon_base.yml @@ -0,0 +1,381 @@ +# Simple Station + +- type: entity + save: false + abstract: true + id: ADTPlayerSiliconBase # For player controlled silicons + components: + - type: Reactive + groups: + Acidic: [Touch] + - type: Input + context: "human" + - type: InputMover + - type: ZombieImmune + - type: MobMover + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 5 + soundHit: + path: /Audio/Effects/hit_kick.ogg + - type: Clickable + - type: Damageable + damageContainer: Inorganic # Note that for dumb reasons, this essentially makes them a wall. + - type: InteractionOutline + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 185 ### влияет на шанс Disarm. было 50 + mask: + - MobMask + layer: + - MobLayer + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 4 + - type: Sprite + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: full + noRot: true + drawdepth: Mobs + - type: Physics + bodyType: KinematicController + - type: Body + prototype: Drone + - type: DoAfter + - type: Examiner + # - type: Recyclable + # safe: false + - type: StandingState + - type: Alerts + # - type: EyeProtection # You'll want this if your robot can't wear glasses, like an IPC. + # protectionTime: 12 + - type: Silicon + entityType: enum.SiliconType.Player + batteryPowered: false # Needs to also have a battery! + chargeThresholdMid: 0.60 + chargeThresholdLow: 0.30 + chargeThresholdCritical: 0 + speedModifierThresholds: + 4: 1 + 3: 1 + 2: 0.80 + 1: 0.45 + 0: 0.00 + - type: RadiationReceiver + - type: AtmosExposed + - type: Temperature + heatDamageThreshold: 700 + coldDamageThreshold: 0 + currentTemperature: 400 + specificHeat: 24 + coldDamage: + types: + Cold: 0.1 # Per second, scales with temperature & other constants. + heatDamage: + types: + Heat: 0.25 # Per second, scales with temperature & other constants. + atmosTemperatureTransferEfficiency: 0.05 + - type: ThermalRegulator + metabolismHeat: 600 + radiatedHeat: 350 + implicitHeatRegulation: 350 + sweatHeatRegulation: 0 # This might end up being a problem if they can't cool themselves down? + shiveringHeatRegulation: 1200 + normalBodyTemperature: 400 + thermalRegulationTemperatureThreshold: 125 + - type: ComplexInteraction + +- type: entity + parent: ADTPlayerSiliconBase + id: PlayerSiliconHumanoidBase + abstract: true + components: + - type: StatusIcon + - type: MobState + allowedStates: + - Alive + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 165: Dead + - type: Damageable + damageContainer: ADTSiliconDamageContainer # Not a wall. + - type: Stamina + critThreshold: 200 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 500 + behaviors: + - !type:GibBehavior {} + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: full + - type: MindContainer + showExamineInfo: true + - type: Sprite + noRot: true + drawdepth: Mobs + layers: + - map: ["enum.HumanoidVisualLayers.Chest"] + - map: ["enum.HumanoidVisualLayers.Head"] + - map: ["enum.HumanoidVisualLayers.Snout"] + - map: ["enum.HumanoidVisualLayers.Eyes"] + - map: ["enum.HumanoidVisualLayers.RArm"] + - map: ["enum.HumanoidVisualLayers.LArm"] + - map: ["enum.HumanoidVisualLayers.RLeg"] + - map: ["enum.HumanoidVisualLayers.LLeg"] + - shader: StencilClear + sprite: Mobs/Species/Human/parts.rsi + state: l_leg + - shader: StencilMask + map: ["enum.HumanoidVisualLayers.StencilMask"] + sprite: Mobs/Customization/masking_helpers.rsi + state: female_full + visible: false + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["socks"] + - map: ["underpants"] + - map: ["undershirt"] + - map: ["jumpsuit"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: ["enum.HumanoidVisualLayers.Handcuffs"] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: ["id"] + - map: ["gloves"] + - map: ["shoes"] + - map: ["ears"] + - map: ["outerClothing"] + - map: ["eyes"] + - map: ["belt"] + - map: ["neck"] + - map: ["back"] + - map: ["enum.HumanoidVisualLayers.FacialHair"] + - map: ["enum.HumanoidVisualLayers.Hair"] + - map: ["enum.HumanoidVisualLayers.HeadSide"] + - map: ["enum.HumanoidVisualLayers.HeadTop"] + - map: ["mask"] + - map: ["head"] + - map: ["pocket1"] + - map: ["pocket2"] + - map: ["enum.HumanoidVisualLayers.Tail"] + #- map: ["enum.HumanoidVisualLayers.Wings"] + - map: ["clownedon"] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false + - type: Repairable + #fuelcost: 60 + doAfterDelay: 10 # was 18 + damage: + types: + Blunt: -20 + Slash: -20 + Piercing: -20 + #bloodlossModifier: -100 + - type: Bloodstream ### я добавил компонент Bloodstream как заглушку. Он нужен, +# чтобы хилиться с помощью CableStack. Дело в том, что HealingSystem использует проверку на наличие BloodstreamComponent. +# В любом случае Bloodstream здесь является костылём, чтобы не лезть в код. В будущем можно зделать для IPC нормальную bloodstream систему. + damageBleedModifiers: BloodlossIPC + bloodReagent: Water + bleedReductionAmount: 0 + bloodMaxVolume: 0 + chemicalMaxVolume: 0 + bleedPuddleThreshold: 3 + bloodRefreshAmount: 0 + bloodlossThreshold: 0 + maxBleedAmount: 0 + bloodlossDamage: + types: + Burn: 1.5 + bloodlossHealDamage: + types: + Burn: 0 + - type: Flammable + fireSpread: true + canResistFire: true + damage: + types: + Heat: 0.75 #per second, scales with number of fire 'stacks' + # - type: Barotrauma # Not particularly modifiable. In the future, some response to pressure changes would be nice. + # damage: + # types: + # Blunt: 0.28 #per second, scales with pressure and other constants. + - type: Temperature + heatDamageThreshold: 320 + coldDamageThreshold: 255 + currentTemperature: 280 + specificHeat: 50 + coldDamage: + types: + Cold: 0.1 #per second, scales with temperature & other constants + heatDamage: + types: + Heat: 0.15 #per second, scales with temperature & other constants + atmosTemperatureTransferEfficiency: 0.4 + - type: ThermalRegulator + metabolismHeat: 1000 # Increase once we have more ways to regulate temperature + radiatedHeat: 800 + implicitHeatRegulation: 600 + sweatHeatRegulation: 0 + shiveringHeatRegulation: 12000 # Overclocking, yo + normalBodyTemperature: 280 + thermalRegulationTemperatureThreshold: 32 + - type: Polymorphable + - type: Identity + - type: MovedByPressure + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 5 + soundHit: + path: /Audio/Effects/metal_break1.ogg + - type: LagCompensation + - type: RangedDamageSound + soundGroups: + Brute: + collection: MetalBulletImpact + soundTypes: + Heat: + collection: MetalLaserImpact + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + - type: Hands + - type: Inventory + templateId: human + - type: InventorySlots + - type: Appearance + - type: GenericVisualizer + visuals: + enum.CreamPiedVisuals.Creamed: + clownedon: + True: { visible: true } + False: { visible: false } + - type: RotationVisuals + - type: FloatingVisuals + - type: FireVisuals + sprite: Mobs/Effects/onfire.rsi + normalState: Generic_mob_burning + alternateState: Standing + fireStackAlternateState: 3 + - type: CombatMode + canDisarm: true + - type: Climbing + - type: Cuffable + - type: AnimationPlayer + - type: Buckle + - type: CreamPied + - type: Stripping + - type: Strippable + - type: UserInterface + interfaces: + enum.VoiceMaskUIKey.Key: + type: VoiceMaskBoundUserInterface + enum.HumanoidMarkingModifierKey.Key: + type: HumanoidMarkingModifierBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Emoting + - type: Grammar + attributes: + proper: true + - type: StandingState + - type: CanEscapeInventory + - type: HumanoidAppearance + species: IPC + - type: Body + prototype: IPC + requiredLegs: 2 + - type: Ensnareable + sprite: Objects/Misc/ensnare.rsi + - type: Speech + speechSounds: Pai + - type: Vocal + sounds: + Male: MaleHuman + Female: FemaleHuman + Unsexed: MaleHuman + - type: MeleeWeapon + hidden: true + soundHit: + collection: Punch + angle: 30 + animation: WeaponArcFist + attackRate: 1 + damage: + types: + Blunt: 6 # It's tough. + - type: MobPrice + price: 1500 # Kidnapping a living person and selling them for cred is a good move. + deathPenalty: 0.01 # However they really ought to be living and intact, otherwise they're worth 100x less. + - type: Pullable + - type: Puller + - type: Reactive + groups: + Flammable: [Touch] + Extinguish: [Touch] + Acidic: [Touch, Ingestion] + reactions: + - reagents: [Water, SpaceCleaner] + methods: [Touch] + effects: + - !type:WashCreamPieReaction + - type: BodyEmotes + soundsId: GeneralBodyEmotes + - type: DamageVisuals + thresholds: [20, 50, 100] + targetLayers: + - "enum.HumanoidVisualLayers.Chest" + - "enum.HumanoidVisualLayers.Head" + - "enum.HumanoidVisualLayers.LArm" + - "enum.HumanoidVisualLayers.LLeg" + - "enum.HumanoidVisualLayers.RArm" + - "enum.HumanoidVisualLayers.RLeg" + damageOverlayGroups: + Brute: + sprite: Mobs/Effects/brute_damage.rsi + color: "#1a1a1a" + Burn: + sprite: Mobs/Effects/burn_damage.rsi + # Organs + - type: IdExaminable + - type: HealthExaminable + examinableTypes: + - Blunt + - Slash + - Piercing + - Heat + - Shock + - type: StatusEffects + allowed: + - Stun + - KnockedDown + - SlowedDown + - Stutter + - SeeingRainbows + - Electrocution + # - Drunk + - SlurredSpeech + # - PressureImmunity + - Muted + # - ForcedSleep + - TemporaryBlindness + - Pacified + # - PsionicsDisabled + # - PsionicallyInsulated + - SeeingStatic + - type: Blindable diff --git a/Resources/Prototypes/ADT/Entities/Mobs/SlugCats/fill.txt b/Resources/Prototypes/ADT/Entities/Mobs/SlugCats/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Mobs/SlugCats/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml index 72556b70a2d..713298daef0 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml @@ -12,7 +12,7 @@ Cold: 0.05 Bloodloss: 0.05 - type: Icon - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: full - type: Thirst - type: Perishable @@ -70,7 +70,7 @@ name: Urist McDrask parent: MobHumanDummy id: MobDraskDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: DraskSpecies diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml index c39720a0a07..12f522e0d09 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml @@ -59,7 +59,7 @@ name: Tajaran McHands parent: MobHumanDummy id: MobTajaranDummy - noSpawn: true + categories: [ HideSpawnMenu ] description: A dummy tajaran meant to be used in character setup. components: - type: HumanoidAppearance diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Ursus.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Ursus.yml new file mode 100644 index 00000000000..4527a49c9d9 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Ursus.yml @@ -0,0 +1,69 @@ +- type: entity + parent: BaseMobSpeciesOrganic + id: BaseMobUrsus + name: Urist McUrsus + abstract: true + components: + - type: HumanoidAppearance + species: UrsusSpecies + - type: Hunger + starvationDamage: + types: + Cold: 0.05 + Bloodloss: 0.05 + baseDecayRate: 0.0983 + - type: Thirst + #baseDecayRate: 0.0083 + - type: Icon + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: full + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeatBear + amount: 5 + - type: MeleeWeapon + soundHit: + collection: Punch + animation: WeaponArcClaw + damage: + types: + Blunt: 6.5 + Slash: 3.5 + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 0.9 + soundHit: + path: /Audio/Effects/hit_kick.ogg + - type: Damageable + damageContainer: Biological + damageModifierSet: Ursus + - type: Vocal + sounds: + Male: MaleUrsus + Female: FemaleUrsus + Unsexed: MaleUrsus + - type: LanguageSpeaker # Frontier + speaks: + - GalacticCommon + - Urs + understands: + - GalacticCommon + - Urs + - type: SizeAttributeWhitelist # Frontier + tall: true + tallscale: 1.1 + short: true + shortscale: 0.9 + +- type: entity + save: false + name: Urist McUrsus + parent: MobHumanDummy + id: MobUrsusDummy + categories: [ HideSpawnMenu ] + description: + components: + - type: HumanoidAppearance + species: UrsusSpecies diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml index 80c7f570178..47e21729a20 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml @@ -61,7 +61,7 @@ name: Vulpkanin McHands parent: MobHumanDummy id: MobVulpkaninDummy - noSpawn: true + categories: [ HideSpawnMenu ] description: A dummy vulpkanin meant to be used in character setup. components: - type: HumanoidAppearance diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml index 6f99d513004..2f145085d2b 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml @@ -10,7 +10,7 @@ - type: Hunger - type: Thirst - type: Icon - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: full_m - type: Sprite netsync: false @@ -59,7 +59,7 @@ name: Urist McHands parent: MobHumanDummy id: MobDemonDummy - noSpawn: true + categories: [ HideSpawnMenu ] description: A dummy reptilian meant to be used in character setup. components: - type: HumanoidAppearance diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml new file mode 100644 index 00000000000..8f91d7d6574 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml @@ -0,0 +1,155 @@ +- type: entity + save: false + name: Urist McFluff + parent: BaseMobSpeciesOrganic + id: BaseMobMoth + abstract: true + components: + - type: HumanoidAppearance + species: Moth + - type: Hunger + starvationDamage: + types: + Cold: 0.05 + Bloodloss: 0.05 + - type: Thirst + - type: Icon + sprite: ADT/Mobs/Species/Moth/parts.rsi + state: full + - type: Body + prototype: Moth + requiredLegs: 2 + - type: Damageable + damageContainer: Biological + damageModifierSet: Moth + - type: ZombieAccentOverride + accent: zombieMoth + - type: Speech + speechVerb: Moth + - type: TypingIndicator + proto: moth + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeat + amount: 5 + - type: Bloodstream + bloodReagent: InsectBlood + - type: DamageVisuals + damageOverlayGroups: + Brute: + sprite: Mobs/Effects/brute_damage.rsi + color: "#808A51" + - type: MothAccent + - type: Vocal + sounds: + Male: MaleMoth + Female: FemaleMoth + Unsexed: MaleMoth + - type: MovementSpeedModifier + weightlessAcceleration: 1.5 # Move around more easily in space. + weightlessFriction: 1 + weightlessModifier: 1 + - type: Flammable + damage: + types: + Heat: 4.5 # moths burn more easily + - type: Temperature # Moths hate the heat and thrive in the cold. + heatDamageThreshold: 320 + coldDamageThreshold: 230 + currentTemperature: 310.15 + specificHeat: 46 + coldDamage: + types: + Cold : 0.05 #per second, scales with temperature & other constants + heatDamage: + types: + Heat : 3 #per second, scales with temperature & other constants + - type: Sprite # sprite again because we want different layer ordering + noRot: true + drawdepth: Mobs + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - shader: StencilClear + sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 + # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. + # sprite refactor when + state: l_leg + - shader: StencilMask + map: [ "enum.HumanoidVisualLayers.StencilMask" ] + sprite: Mobs/Customization/masking_helpers.rsi + state: unisex_full + visible: false + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "socks" ] #Sirena + - map: [ "jumpsuit" ] + - map: [ "enum.HumanoidVisualLayers.LHand" ] + - map: [ "enum.HumanoidVisualLayers.RHand" ] + #- map: [ "enum.HumanoidVisualLayers.LFoot" ] + #- map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_moth" + visible: false + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female + - type: LanguageSpeaker # Frontier + speaks: + - GalacticCommon + - Nian + understands: + - GalacticCommon + - Nian + +- type: entity + parent: BaseSpeciesDummy + id: MobMothDummy + categories: [ HideSpawnMenu ] + components: + - type: HumanoidAppearance + species: Moth + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/novakid.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/novakid.yml new file mode 100644 index 00000000000..3bdea14a4de --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/novakid.yml @@ -0,0 +1,135 @@ +- type: entity + save: false + name: Urisst' Mzhand Novakid + parent: BaseMobSpeciesOrganic + id: BaseMobNovakid + abstract: true + components: + - type: Hunger + baseDecayRate: 0.025 + currentHunger: 400 + thresholds: + Overfed: 400 + Okay: 300 + Peckish: 200 + Starving: 100 + Dead: 0 + starvationDamage: + types: + Cold: 0.12 + Caustic: 0.08 + - type: HumanoidAppearance + species: NovakidSpecies + - type: Bloodstream + bloodReagent: Plasma + - type: ZombieImmune + - type: NovakidGlowing # see NovakidFeaturesSystem.cs + - type: PointLight + color: "#ffffff" + energy: 0.6 + - type: Icon + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: full_m + - type: Sprite + netsync: false + noRot: true + drawdepth: Mobs + - type: Body + prototype: Novakid + requiredLegs: 2 + - type: Speech + speechSounds: Lizard + - type: Vocal + sounds: + Male: MaleNovakid + Female: FemaleNovakid + Unsexed: UnisexNovakid + - type: Damageable + damageContainer: Biological + damageModifierSet: Demon # Потому что. Я зол, эта штука ломала мне мозг на протяжении двух часов, пока я искал ошибку >:c + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Weapons/pierce.ogg + angle: 30 + animation: WeaponArcPunch + damage: + types: + Heat: 5 + - type: Temperature + heatDamageThreshold: 450 + coldDamageThreshold: 193 #starting temperature damage treshold + currentTemperature: 310.15 + specificHeat: 46 + coldDamage: + types: + Cold : 0.5 #per second, scales with temperature & other constants + heatDamage: + types: + Heat : 0.2 #per second, scales with temperature & other constants. + - type: FlashImmunity + - type: EyeProtection + - type: MovementSpeedModifier + baseWalkSpeed : 2.5 + baseSprintSpeed : 4.5 + - type: Perishable + - type: Barotrauma + damage: + types: + Blunt: 0.01 # Супер пониженный дамаг от давления + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + reactions: + - reagents: [ Water, SpaceCleaner ] + methods: [ Touch ] + effects: + - !type:WashCreamPieReaction + - reagents: [ Water, SpaceCleaner ] + methods: [ Touch ] + effects: + - !type:HealthChange + scaleByQuantity: true + damage: + types: + Heat: 4 # Повышенный дамаг от водички и моющего средства. Пшик-пшик + - !type:PopupMessage + type: Local + visualType: Large + messages: [ "novakid-hurt-by-water-popup" ] + probability: 0.25 + - type: MobThresholds + thresholds: + 0: Alive + 100: Critical + 300: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Ash: + min: 1 + max: 1 + - !type:GibBehavior { } + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + + +- type: entity + save: false + name: Urist McHands + parent: MobHumanDummy + id: MobNovakidDummy + categories: [ HideSpawnMenu ] + description: A dummy reptilian meant to be used in character setup. + components: + - type: HumanoidAppearance + species: NovakidSpecies diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml new file mode 100644 index 00000000000..a040b4385b5 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml @@ -0,0 +1,198 @@ +- type: entity + save: false + parent: BaseMobHuman + id: BaseMobShadekin + abstract: true + name: Урист МакСумеречник + components: + - type: HumanoidAppearance + species: Shadekin + - type: Hunger + - type: Thirst + - type: Icon + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: full + - type: Body + prototype: Shadekin + requiredLegs: 2 + - type: MobState + - type: MobThresholds + thresholds: + 0: Alive + 90: Critical + 150: Dead + - type: SlowOnDamage + speedModifierThresholds: + 48: 0.85 + 64: 0.65 + - type: Damageable + damageContainer: Biological # Shadekin + damageModifierSet: Shadekin + - type: Barotrauma + damage: + types: + Blunt: 1 # В секунду. + - type: Bloodstream + bloodReagent: ShadekinBlood + bloodlossDamage: + types: + Bloodloss: + 1 + bloodlossHealDamage: + types: + Bloodloss: + -0.25 + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + - type: Temperature + heatDamageThreshold: 330 + coldDamageThreshold: 200 + currentTemperature: 310.15 + specificHeat: 46 + coldDamage: + types: + Cold : 0.05 #per second, scales with temperature & other constants + heatDamage: + types: + Heat : 0.25 #per second, scales with temperature & other constants + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 130 #lower density + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: Respirator + damage: + types: + Asphyxiation: 0.0 + damageRecovery: + types: + Asphyxiation: 0.0 + - type: Sprite + scale: 0.95, 0.95 + - type: MeleeWeapon + soundHit: + collection: Punch + animation: WeaponArcClaw + damage: + types: + Blunt: 2 + Slash: 3 + Piercing: 1 + - type: Shadekin + - type: Vocal + sounds: + Male: MaleHuman + Female: FemaleHuman + Unsexed: MaleHuman + - type: CombatMode + canDisarm: true + - type: MindContainer + showExamineInfo: true + - type: Input + context: "human" + - type: MobMover + - type: InputMover + - type: Alerts + - type: Actions + - type: CameraRecoil + - type: Examiner + - type: CanHostGuardian + - type: NpcFactionMember + factions: + - NanoTrasen + - type: InteractionPopup + successChance: 0.75 + interactFailureString: petting-failure-generic + interactSuccessString: petting-success-soft-floofy + interactSuccessSound: /Audio/Effects/thudswoosh.ogg + messagePerceivedByOthers: petting-success-soft-floofy-others + - type: MovementSpeedModifier + baseWalkSpeed : 4.5 + baseSprintSpeed : 2.7 + - type: Inventory + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: jumpsuit + shoes: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: shoes + gloves: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: hand + outerClothing: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: jumpsuit + head: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: head + # Frontier - languages mechanic + - type: LanguageSpeaker + speaks: + - GalacticCommon + - Shadekin + understands: + - GalacticCommon + - Shadekin + - type: SizeAttributeWhitelist # Frontier + tall: true + tallscale: 1 + short: true + shortscale: 0.85 + +- type: entity + save: false + parent: MobHumanDummy + id: MobShadekinDummy + categories: [ HideSpawnMenu ] + description: A dummy shadekin meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Shadekin + - type: Inventory + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: jumpsuit + shoes: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: shoes + gloves: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: hand + outerClothing: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: jumpsuit + head: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: head \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml b/Resources/Prototypes/ADT/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml deleted file mode 100644 index 6cecff851d7..00000000000 --- a/Resources/Prototypes/ADT/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml +++ /dev/null @@ -1,143 +0,0 @@ -#Для звуков и голосов вульпочек - -- type: soundCollection - id: NesMaleVulpaScreams - files: - - /Audio/ADT/Voice/Vulpkanin/growl1.ogg - - /Audio/ADT/Voice/Vulpkanin/growl2.ogg - - /Audio/ADT/Voice/Vulpkanin/growl3.ogg - -- type: soundCollection - id: NesFemaleVulpaScreams - files: - - /Audio/ADT/Voice/Vulpkanin/scream1.ogg - - /Audio/ADT/Voice/Vulpkanin/scream2.ogg - -- type: soundCollection - id: VulpHowls - files: - - /Audio/ADT/Voice/Vulpkanin/howl.ogg - -- type: soundCollection - id: VulpBarks - files: - - /Audio/ADT/Voice/Vulpkanin/bark.ogg - - /Audio/ADT/Voice/Doge/dog_bark1.ogg - - /Audio/ADT/Voice/Doge/dog_bark2.ogg - - /Audio/ADT/Voice/Doge/dog_bark3.ogg - -- type: soundCollection - id: VulpWhines - files: - - /Audio/ADT/Voice/Doge/dog_whine.ogg - -- type: soundCollection - id: VulpGrowls - files: - - /Audio/ADT/Voice/Doge/dog_growl1.ogg - - /Audio/ADT/Voice/Doge/dog_growl2.ogg - - /Audio/ADT/Voice/Doge/dog_growl3.ogg - -- type: soundCollection - id: VulpHeckaetSound - files: - - /Audio/ADT/Voice/Vulpkanin/vulpkanin_hekaet1.ogg - -- type: speechSounds - id: Vulpa - saySound: - path: /Audio/ADT/Voice/Vulpkanin_Talk/vulp.ogg - askSound: - path: /Audio/ADT/Voice/Vulpkanin_Talk/vulp_ask.ogg - exclaimSound: - path: /Audio/ADT/Voice/Vulpkanin_Talk/vulp_exclaim.ogg - -#Спишс блядь - -- type: emoteSounds - id: NesMaleVulpa - params: - variation: 0.125 - sounds: - Scream: - collection: NesMaleVulpaScreams - Laugh: - collection: MaleLaugh - Sneeze: - collection: MaleSneezes - Cough: - collection: MaleCoughs - CatMeow: - collection: CatMeows - CatHisses: - collection: CatHisses - MonkeyScreeches: - collection: MonkeyScreeches - RobotBeep: - collection: RobotBeeps - Yawn: - collection: MaleYawn - Snore: - collection: Snores - Honk: - collection: BikeHorn - Sigh: - collection: MaleSigh - Crying: - collection: MaleCry - Howl: - collection: VulpHowls - Bark: - collection: VulpBarks - Growl: - collection: VulpGrowls - Whine: - collection: VulpWhines - Whistle: - collection: Whistles - Heckaet: - collection: VulpHeckaetSound - -- type: emoteSounds - id: NesFemaleVulpa - params: - variation: 0.125 - sounds: - Scream: - collection: NesFemaleVulpaScreams - Laugh: - collection: FemaleLaugh - Sneeze: - collection: FemaleSneezes - Cough: - collection: FemaleCoughs - CatMeow: - collection: CatMeows - CatHisses: - collection: CatHisses - MonkeyScreeches: - collection: MonkeyScreeches - RobotBeep: - collection: RobotBeeps - Yawn: - collection: FemaleYawn - Snore: - collection: Snores - Honk: - collection: CluwneHorn - Sigh: - collection: FemaleSigh - Crying: - collection: FemaleCry - Howl: - collection: VulpHowls - Bark: - collection: VulpBarks - Growl: - collection: VulpGrowls - Whine: - collection: VulpWhines - Whistle: - collection: Whistles - Heckaet: - collection: VulpHeckaetSound diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Drinks/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Drinks/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Drinks/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/frozen.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/frozen.yml index 4bf6075779e..ef48279f59e 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/frozen.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/frozen.yml @@ -678,7 +678,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenChocolateFreezyTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: chocolatefreezy_trash @@ -687,7 +687,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenChocolateIceCreamTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: chocolateicecream_trash @@ -696,7 +696,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenChocolatePopsicleTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: ChocolatePopsicle_trash @@ -705,7 +705,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenChocolatePopsicleWithNutsTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: chocolatepopsiclewithnuts_trash @@ -714,7 +714,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenIceCreamWaffleconeTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: icecreamwafflecone_trash @@ -723,7 +723,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenIceCreamWaffleconeNutsTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: icecreamwaffleconenuts_trash @@ -732,7 +732,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenPopsicleJumboTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: jumbopopsicle_trash @@ -741,7 +741,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenMelonPopsicleTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: melonpopsicle_trash @@ -750,7 +750,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenOrangePopsicleTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: orangepopsicle_trash @@ -759,7 +759,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenPineappleChocolateTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: pineapplechocolate_trash @@ -768,7 +768,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenPopsicleAppleTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: popsicleapple_trash @@ -777,7 +777,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenPopsicleBananaTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: popsiclebanana_trash @@ -786,7 +786,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenPopsicleMoleTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: popsiclemole_trash @@ -795,7 +795,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenRandomFruitIceTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: randomfruitIce_trash @@ -804,7 +804,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenPopsicleSeaSaltTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: seasaltppopsicle_trash @@ -813,7 +813,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenSpaceFreezyTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: spacefreezy_trash @@ -822,7 +822,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenSpaceIceCreamTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: spaceicecream_trash @@ -831,7 +831,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenStrawberryIceCreamTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: strawberryicecream_trash @@ -840,7 +840,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenThreeFlavorsFreezyTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: threeflavorsfreezy_trash @@ -849,7 +849,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenThreeFlavorsPopsicleTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: threeflavorspopsicle_trash @@ -858,7 +858,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenVanillaFreezyTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: vanillafreezy_trash @@ -867,7 +867,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenVanillaIceCreamTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: vanillaicecream_trash @@ -876,7 +876,7 @@ name: Frozen parent: ADTFoodPacketFrozenTrashBase id: ADTFoodFrozenWatermelonPopsicleTrash - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: watermelonpopsicle_trash diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/snacks.yml index fd78b688f86..bfe77f28954 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/snacks.yml @@ -135,7 +135,7 @@ # Мусор - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: ADTFoodPacketChipsTrashBase description: This is rubbish. @@ -147,7 +147,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: ADTFoodDriedPacketTrashBase description: This is rubbish. @@ -159,7 +159,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChipsTrashBase id: ADTFoodPacketChipsOnionAndSourcreamTrash description: This is rubbish. @@ -168,7 +168,7 @@ state: onion-and-sourcream-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChipsTrashBase id: ADTFoodPacketChipsShrimpTrash description: This is rubbish. @@ -177,7 +177,7 @@ state: shrimp-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChipsTrashBase id: ADTFoodPacketChipsSpaceTrash description: This is rubbish. @@ -186,7 +186,7 @@ state: space-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChipsTrashBase id: ADTFoodPacketSpicyTrash description: This is rubbish. @@ -197,7 +197,7 @@ # разделитель - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodDriedPacketTrashBase id: ADTFoodPacketBeefTrash description: This is rubbish. @@ -206,7 +206,7 @@ state: beef-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodDriedPacketTrashBase id: ADTFoodPacketChickenTrash description: This is rubbish. @@ -215,7 +215,7 @@ state: chicken-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodDriedPacketTrashBase id: ADTFoodPacketHorseTrash description: This is rubbish. @@ -224,7 +224,7 @@ state: horse-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodDriedPacketTrashBase id: ADTFoodPacketPigTrash description: This is rubbish. @@ -426,7 +426,7 @@ #Trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketChocolateTrash id: ADTFoodPacketChocolateTrash name: chocolate wrapper @@ -438,7 +438,7 @@ - type: Item - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChocolateTrash id: ADTFoodPacketChocolateTrashChoco name: chocolate wrapper @@ -447,7 +447,7 @@ state: choco-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChocolateTrash id: ADTFoodPacketChocolateTrashCoconut name: chocolate wrapper @@ -456,7 +456,7 @@ state: coconut-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChocolateTrash id: ADTFoodPacketChocolateTrashEnergy name: chocolate wrapper @@ -465,7 +465,7 @@ state: energy-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChocolateTrash id: ADTFoodPacketChocolateTrashNuts name: chocolate wrapper @@ -474,7 +474,7 @@ state: nuts-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChocolateTrash id: ADTFoodPacketChocolateTrashPink name: chocolate wrapper @@ -483,7 +483,7 @@ state: pink-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: ADTFoodPacketChocolateTrash id: ADTFoodPacketChocolateTrashTwo name: chocolate wrapper diff --git a/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/siliconchargers.yml b/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/siliconchargers.yml new file mode 100644 index 00000000000..8359e7aaa4a --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/siliconchargers.yml @@ -0,0 +1,16 @@ +- type: entity + id: IndustrialChargerCircuitboard + parent: BaseMachineCircuitboard + name: industrial charger machine board + description: A machine printed circuit board for an industrial charger + components: + - type: Sprite + state: engineering + - type: MachineBoard + prototype: SiliconChargerIndustrial + stackRequirements: + Plastic: 6 + CableHV: 4 + CableMV: 8 + Capacitor: 8 + Manipulator: 2 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Device/handheld.yml b/Resources/Prototypes/ADT/Entities/Objects/Device/handheld.yml new file mode 100644 index 00000000000..10e1631db98 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Device/handheld.yml @@ -0,0 +1,449 @@ +# Translators +- type: entity + id: TranslatorBase + categories: [ HideSpawnMenu ] + parent: [ BaseItem ] + name: Translator + description: "Translates speech." + components: + - type: Sprite + sprite: ADT/Objects/Devices/translator.rsi + state: icon + layers: + - state: icon + - state: translator + shader: unshaded + visible: false + map: [ "enum.ToggleVisuals.Layer", "enum.PowerDeviceVisualLayers.Powered" ] + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: { visible: true } + False: { visible: false } + - type: HandheldTranslator + toSpeak: + - GalacticCommon + toUnderstand: + - GalacticCommon + required: + - GalacticCommon + enabled: false + - type: ItemToggle + +- type: entity + id: Translator + categories: [ HideSpawnMenu ] + parent: [ TranslatorBase, PowerCellSlotMediumItem ] + suffix: Powered + components: + - type: PowerCellDraw + drawRate: 0.5 + +- type: entity + id: TranslatorEmtpy + categories: [ HideSpawnMenu ] + parent: [ Translator ] + suffix: Empty + components: + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + +- type: entity + id: BubblishTranslator + parent: [ Translator ] + name: Bubblish translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Bubblish + toUnderstand: + - GalacticCommon + - Bubblish + required: + - GalacticCommon + - Bubblish + - type: StaticPrice + price: 1500 + +- type: entity + id: MofficTranslator + parent: [ Translator ] + name: Moffic translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Moffic + toUnderstand: + - GalacticCommon + - Moffic + required: + - GalacticCommon + - Moffic + - type: StaticPrice + price: 1500 + +- type: entity + id: RootSpeakTranslator + parent: [ Translator ] + name: RootSpeak translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - RootSpeak + toUnderstand: + - GalacticCommon + - RootSpeak + required: + - GalacticCommon + - RootSpeak + - type: StaticPrice + price: 1500 + +- type: entity + id: NekomimeticTranslator + parent: [ Translator ] + name: Nekomimetic translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Nekomimetic + toUnderstand: + - GalacticCommon + - Nekomimetic + required: + - GalacticCommon + - Nekomimetic + - type: StaticPrice + price: 1500 + +- type: entity + id: DraconicTranslator + parent: [ Translator ] + name: Draconic translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Draconic + toUnderstand: + - GalacticCommon + - Draconic + required: + - GalacticCommon + - Draconic + - type: StaticPrice + price: 1500 + +- type: entity + id: CanilunztTranslator + parent: [ Translator ] + name: Canilunzt translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Canilunzt + toUnderstand: + - GalacticCommon + - Canilunzt + required: + - GalacticCommon + - Canilunzt + - type: StaticPrice + price: 1500 + +- type: entity + id: IPCTranslator + parent: [ Translator ] + name: IPC translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - RobotTalk + toUnderstand: + - GalacticCommon + - RobotTalk + required: + - GalacticCommon + - RobotTalk + - type: StaticPrice + price: 1500 + +- type: entity + id: FireTranslator + parent: [ Translator ] + name: Fire translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Fire + toUnderstand: + - GalacticCommon + - Fire + required: + - GalacticCommon + - Fire + - type: StaticPrice + price: 1500 + +- type: entity + id: SolCommonTranslator + parent: [ Translator ] + name: SolCommon translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - SolCommon + toUnderstand: + - GalacticCommon + - SolCommon + required: + - GalacticCommon + - SolCommon + - type: StaticPrice + price: 1500 + +# - type: entity +# id: ArachnidTranslator +# parent: [ Translator ] +# name: Arachnid translator +# description: "Translates speech." +# components: +# - type: HandheldTranslator +# toSpeak: +# - GalacticCommon +# - Moffic +# toUnderstand: +# - GalacticCommon +# - Moffic +# required: +# - GalacticCommon +# - Moffic +# - type: StaticPrice +# price: 1500 + +- type: entity + id: DraskTranslator + parent: [ Translator ] + name: Drask translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Drask + toUnderstand: + - GalacticCommon + - Drask + required: + - GalacticCommon + - Drask + - type: StaticPrice + price: 1500 + +- type: entity + id: UrsTranslator + parent: [ Translator ] + name: Urs translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Urs + toUnderstand: + - GalacticCommon + - Urs + required: + - GalacticCommon + - Urs + - type: StaticPrice + price: 1500 + +- type: entity + id: ArkaneTranslator + parent: [ Translator ] + name: Arkane translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Arkane + toUnderstand: + - GalacticCommon + - Arkane + required: + - GalacticCommon + - Arkane + - type: StaticPrice + price: 1500 + +- type: entity + id: ShadekinTranslator + parent: [ Translator ] + name: Shadekin translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Shadekin + toUnderstand: + - GalacticCommon + - Shadekin + required: + - GalacticCommon + - Shadekin + - type: StaticPrice + price: 1500 + +- type: entity + id: DwarfTranslator + parent: [ Translator ] + name: Dwarf translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Dwarf + toUnderstand: + - GalacticCommon + - Dwarf + required: + - GalacticCommon + - Dwarf + - type: StaticPrice + price: 1500 + +- type: entity + id: CintaTajTranslator + parent: [ Translator ] + name: CintaTaj translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - CintaTaj + toUnderstand: + - GalacticCommon + - CintaTaj + required: + - GalacticCommon + - CintaTaj + - type: StaticPrice + price: 1500 + +- type: entity + id: NianTranslator + parent: [ Translator ] + name: Nian translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Nian + toUnderstand: + - GalacticCommon + - Nian + required: + - GalacticCommon + - Nian + - type: StaticPrice + price: 1500 + +- type: entity + id: SikTajTranslator + parent: [ Translator ] + name: SikTaj translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - SikTaj + toUnderstand: + - GalacticCommon + - SikTaj + required: + - GalacticCommon + - SikTaj + - type: StaticPrice + price: 1500 + +- type: entity + id: AnimalTranslator + parent: [ Translator ] + name: Animals translator + description: "Translates speech." + components: + - type: HandheldTranslator + toSpeak: + - GalacticCommon + - Cat + - Dog + - Mothroach + - Monkey + - Bee + - Mouse + - Chicken + - Duck + - Cow + - Sheep + - Kangaroo + - Pig + toUnderstand: + - GalacticCommon + - Cat + - Dog + - Mothroach + - Mothroach + - Monkey + - Bee + - Mouse + - Chicken + - Duck + - Cow + - Sheep + - Kangaroo + - Pig + required: + - GalacticCommon + - Cat + - Dog + - Mothroach + - Mothroach + - Monkey + - Bee + - Mouse + - Chicken + - Duck + - Cow + - Sheep + - Kangaroo + - Pig + - type: StaticPrice + price: 1500 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Device/pda.yml b/Resources/Prototypes/ADT/Entities/Objects/Device/pda.yml deleted file mode 100644 index 5b710a24571..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Device/pda.yml +++ /dev/null @@ -1,14 +0,0 @@ -- type: entity - parent: MedicalPDA - id: ADTPathologistPDA - name: pathologist's PDA - description: It breezes chill. - components: - - type: Pda - id: ADTPathologistIDCard - state: pda-pathologist - - type: PdaBorderColor - borderColor: "#d7d7d0" - accentVColor: "#15616b" - - type: Icon - state: pda-pathologist \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/ADT/Entities/Objects/Devices/pda.yml index 52b435d325e..2660c105ac1 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Devices/pda.yml @@ -9,3 +9,33 @@ state: pda-lawyer - type: Icon state: pda-lawyer + +- type: entity + parent: BasePDA + id: ADTRoboticistPDA + name: roboticist PDA + description: It's covered with an unknown gooey substance. + components: + - type: Pda + id: ADTRoboticistIDCard + state: pda-roboticist + - type: PdaBorderColor + borderColor: "#171716" + accentVColor: "#d90000" + - type: Icon + state: pda-roboticist + +- type: entity + parent: MedicalPDA + id: ADTPathologistPDA + name: pathologist's PDA + description: It breezes chill. + components: + - type: Pda + id: ADTPathologistIDCard + state: pda-pathologist + - type: PdaBorderColor + borderColor: "#d7d7d0" + accentVColor: "#15616b" + - type: Icon + state: pda-pathologist diff --git a/Resources/Prototypes/ADT/Entities/Objects/Devices/translators.yml b/Resources/Prototypes/ADT/Entities/Objects/Devices/translators.yml index 76929a0b173..e69de29bb2d 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Devices/translators.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Devices/translators.yml @@ -1,388 +0,0 @@ -- type: entity - id: TranslatorUnpowered - parent: [ BaseItem ] - name: Translator - description: "Translates speech." - components: - - type: Item - sprite: _NF/Objects/Devices/translator.rsi - inhandVisuals: - left: - - state: inhand-left - right: - - state: inhand-right - - type: Sprite - sprite: _NF/Objects/Devices/translator.rsi - state: icon - layers: - - state: icon - - state: translator - shader: unshaded - visible: false - map: [ "enum.ToggleVisuals.Layer", "enum.PowerDeviceVisualLayers.Powered" ] - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ToggleVisuals.Toggled: - enum.ToggleVisuals.Layer: - True: { visible: true } - False: { visible: false } - - type: HandheldTranslator - enabled: false - - type: ToggleableLightVisuals - spriteLayer: translator - inhandVisuals: - left: - - state: inhand-left-translator - shader: unshaded - right: - - state: inhand-right-translator - shader: unshaded - -- type: entity - id: Translator - parent: [ TranslatorUnpowered, PowerCellSlotMediumItem ] - suffix: Powered - components: - - type: PowerCellDraw - drawRate: 1 - - type: ItemToggle - onUse: false # above component does the toggling - -- type: entity - id: TranslatorEmtpy - parent: [ Translator ] - suffix: Empty - components: - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default - -- type: entity - id: VulpTranslator - parent: [ Translator ] - name: Vulpkanin translator - description: "Used only by Vulpkanin to understand and speak with Galatic Common speakers." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - understood: - - GalacticCommon - requires: - - Canilunzt - requires-all: false - - type: PowerCellDraw - drawRate: 0.1 - - type: StaticPrice - price: 35 - -- type: entity - id: CanilunztTranslator - parent: [ TranslatorEmtpy ] - name: Canilunzt translator - description: "Translates speech between Canilunzt and Galactic Common. Commonly used by Vulpkanin to communicate with galactic common speakers" - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Canilunzt - understood: - - GalacticCommon - - Canilunzt - requires: - - GalacticCommon - - Canilunzt - requires-all: false - -- type: entity - id: BubblishTranslator - parent: [ TranslatorEmtpy ] - name: Bubblish translator - description: "Translates speech between Bubblish and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Bubblish - understood: - - GalacticCommon - - Bubblish - requires: - - GalacticCommon - - Bubblish - requires-all: false - -- type: entity - id: NekomimeticTranslator - parent: [ TranslatorEmtpy ] - name: Nekomimetic translator - description: "Translates speech between Nekomimetic and Galactic Common. Why would you want that?" - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Nekomimetic - understood: - - GalacticCommon - - Nekomimetic - requires: - - GalacticCommon - - Nekomimetic - requires-all: false - -- type: entity - id: DraconicTranslator - parent: [ TranslatorEmtpy ] - name: Draconic translator - description: "Translates speech between Draconic and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Draconic - understood: - - GalacticCommon - - Draconic - requires: - - GalacticCommon - - Draconic - requires-all: false - -- type: entity - id: SolCommonTranslator - parent: [ TranslatorEmtpy ] - name: Sol Common translator - description: "Translates speech between Sol Common and Galactic Common. Like a true Earthman!" - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - SolCommon - understood: - - GalacticCommon - - SolCommon - requires: - - GalacticCommon - - SolCommon - requires-all: false - -- type: entity - id: RootSpeakTranslator - parent: [ TranslatorEmtpy ] - name: RootSpeak translator - description: "Translates speech between RootSpeak and Galactic Common. Like a true plant?" - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - RootSpeak - understood: - - GalacticCommon - - RootSpeak - requires: - - GalacticCommon - - RootSpeak - requires-all: false - -- type: entity - id: MofficTranslator - parent: [ TranslatorEmtpy ] - name: Moffic translator - description: "Translates speech between Moffic and Galactic Common. Like a true moth... or bug?" - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Moffic - understood: - - GalacticCommon - - Moffic - requires: - - GalacticCommon - - Moffic - requires-all: false - -- type: entity - id: XenoTranslator - parent: [ TranslatorEmtpy ] - name: Xeno translator - description: "Translates speech between Xeno and Galactic Common. Not sure if that will help." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Xeno - understood: - - GalacticCommon - - Xeno - requires: - - GalacticCommon - -- type: entity - id: AnimalTranslator - parent: [ TranslatorEmtpy ] - name: Animal translator - description: "Translates all the cutes nosies that animals make into a more understandable form!" - components: - - type: HandheldTranslator - understood: - - Cat - - Dog - - Mothroach - - Monkey - - Bee - - Mouse - - Chicken - - Duck - - Cow - - Sheep - - Kangaroo - - Pig - requires: - - GalacticCommon - requires-all: false - -- type: entity - id: DraskTranslator - parent: [ TranslatorEmtpy ] - name: Orluum translator - description: "Translates speech between Orluum and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Drask - understood: - - GalacticCommon - - Drask - requires: - - GalacticCommon - - Drask - requires-all: false - - -- type: entity - id: ShadowkinTranslator - parent: [ TranslatorEmtpy ] - name: Shadowkin translator - description: "Translates speech between Shadowkin lang and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Shadowkin - understood: - - GalacticCommon - - Shadowkin - requires: - - GalacticCommon - - Shadowkin - requires-all: false - -- type: entity - id: ArkaneTranslator - parent: [ TranslatorEmtpy ] - name: Arkane translator - description: "Translates speech between Arkane lang and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Arkane - understood: - - GalacticCommon - - Arkane - requires: - - GalacticCommon - - Arkane - requires-all: false - -- type: entity - id: NianTranslator - parent: [ TranslatorEmtpy ] - name: Nian translator - description: "Translates speech between Nian lang and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Nian - understood: - - GalacticCommon - - Nian - requires: - - GalacticCommon - - Nian - requires-all: false - -- type: entity - id: FireTranslator - parent: [ TranslatorEmtpy ] - name: Fire translator - description: "Translates speech between Shadowkin lang and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - Fire - understood: - - GalacticCommon - - Fire - requires: - - GalacticCommon - - Fire - requires-all: false - -- type: entity - id: SikTajTranslator - parent: [ TranslatorEmtpy ] - name: SikTaj translator - description: "Translates speech between SikTaj and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - SikTaj - understood: - - GalacticCommon - - SikTaj - requires: - - GalacticCommon - - SikTaj - requires-all: false - -- type: entity - id: CintaTajTranslator - parent: [ TranslatorEmtpy ] - name: CintaTajTaj translator - description: "Translates speech between CintaTaj and Galactic Common." - components: - - type: HandheldTranslator - default-language: GalacticCommon - spoken: - - GalacticCommon - - CintaTaj - understood: - - GalacticCommon - - CintaTaj - requires: - - GalacticCommon - - CintaTaj - requires-all: false diff --git a/Resources/Prototypes/ADT/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/ADT/Entities/Objects/Fun/toys.yml new file mode 100644 index 00000000000..d93deb56a1f --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Fun/toys.yml @@ -0,0 +1,9 @@ +- type: entity + parent: BasePlushie + id: ADTPlushieUrs + name: Djessie plushie + description: It looks like a soft and cute blondie. + components: + - type: Sprite + sprite: ADT/Objects/Fun/toys.rsi + state: plushie_ursus diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/identification_cards.yml index b7928e36d39..83d6930836f 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/identification_cards.yml @@ -23,3 +23,15 @@ - state: id-pathologist - type: PresetIdCard job: ADTPathologist + +- type: entity + parent: IDCardStandard + id: ADTRoboticistIDCard + name: roboticist ID card + components: + - type: Sprite + layers: + - state: default + - state: idroboticist + - type: PresetIdCard + job: ADTRoboticist diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/implanters.yml index 3ebd7c90366..0c174df0e90 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/implanters.yml @@ -1,287 +1,185 @@ +# Translators - type: entity - id: BaseTranslatorImplanter - parent: [ BaseItem ] - name: Basic translator implant - description: "Translates speech." - abstract: true + id: GalacticCommonTranslatorImplanter + name: Galactic Common Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: Sprite - sprite: Objects/Specific/Medical/implanter.rsi - state: implanter0 - layers: - - state: implanter1 - map: [ "implantFull" ] - visible: true - - state: implanter0 - map: [ "implantBroken" ] - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ImplanterVisuals.Full: - implantFull: - True: {visible: true} - False: {visible: false} - implantBroken: - True: {visible: false} - False: {visible: true} + - type: Implanter + implant: GalacticCommonTranslatorImplant - type: entity - id: BasicGalaticCommonTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Basic Galatic Common translator implant - description: "An implant giving the ability to understand Galatic Common." + id: BubblishTranslatorImplanter + name: Bubblish Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - understood: - - GalacticCommon + - type: Implanter + implant: BubblishTranslatorImplant - type: entity - id: AdvancedGalaticCommonTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Advanced Galatic Common translator implant - description: "An implant giving the ability to understand and speak Galatic Common." + id: MofficTranslatorImplanter + name: Moffic Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - GalacticCommon - understood: - - GalacticCommon + - type: Implanter + implant: MofficTranslatorImplant - type: entity - id: BubblishTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Bubblish translator implant - description: "An implant giving the ability to understand and speak Bubblish." + id: RootSpeakTranslatorImplanter + name: RootSpeak Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Bubblish - understood: - - Bubblish + - type: Implanter + implant: RootSpeakTranslatorImplant - type: entity id: NekomimeticTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Nekomimetic translator implant - description: "An implant giving the ability to understand and speak Nekomimetic, Nya~!" + name: Nekomimetic Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Nekomimetic - understood: - - Nekomimetic + - type: Implanter + implant: NekomimeticTranslatorImplant - type: entity id: DraconicTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Draconic translator implant - description: "An implant giving the ability to understand and speak Draconic." + name: Draconic Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Draconic - understood: - - Draconic + - type: Implanter + implant: DraconicTranslatorImplant - type: entity id: CanilunztTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Canilunzt translator implant - description: "An implant giving the ability to understand and speak Canilunzt, Yeeps!" + name: Canilunzt Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Canilunzt - understood: - - Canilunzt + - type: Implanter + implant: CanilunztTranslatorImplant - type: entity - id: SolCommonTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: SolCommon translator implant - description: "An implant giving the ability to understand and speak SolCommon, raaagh!" + id: IPCTranslatorImplanter + name: IPC Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - SolCommon - understood: - - SolCommon + - type: Implanter + implant: IPCTranslatorImplant - type: entity - id: RootSpeakTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: RootSpeak translator implant - description: "An implant giving the ability to understand and speak RootSpeak." + id: BorgTranslatorImplanter + name: Borg Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - understood: - - RootSpeak + - type: Implanter + implant: BorgTranslatorImplant + +# - type: entity +# id: ArachnidTranslatorImplanter +# name: Arachnid Translator implanter +# parent: BaseImplantOnlyImplanter +# components: +# - type: Implanter +# implant: ArachnidTranslatorImplant - type: entity - id: MofficTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Moffic translator implant - description: "An implant giving the ability to understand and speak Moffic." + id: FireTranslatorImplanter + name: Fire Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Moffic - understood: - - Moffic + - type: Implanter + implant: FireTranslatorImplant - type: entity - id: CodeSpeakImplanter - parent: [ BaseTranslatorImplanter ] - name: CodeSpeak Implanter - description: "\"CodeSpeak(tm) - Secure your communication with metaphors so elaborate, they seem randomly generated!\"" + id: SolCommonTranslatorImplanter + name: SolCommon Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - CodeSpeak - understood: - - CodeSpeak - - type: StaticPrice - price: 150 + - type: Implanter + implant: SolCommonTranslatorImplant - type: entity - id: SikTajTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: SikTaj translator implant - description: "An implant giving the ability to understand and speak SikTaj." + id: DraskTranslatorImplanter + name: Drask Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - SikTaj - understood: - - SikTaj + - type: Implanter + implant: DraskTranslatorImplant - type: entity - id: NianTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Nian translator implant - description: "An implant giving the ability to understand and speak Nian." + id: UrsTranslatorImplanter + name: Urs Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Nian - understood: - - Nian + - type: Implanter + implant: UrsTranslatorImplant - type: entity - id: FireTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Nian translator implant - description: "An implant giving the ability to understand and speak Nian." + id: ArkaneTranslatorImplanter + name: Arkane Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - understood: - - Fire + - type: Implanter + implant: ArkaneTranslatorImplant - type: entity - id: DraskTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Orluum translator implant - description: "An implant giving the ability to understand and speak Orluum." + id: ShadekinTranslatorImplanter + parent: BaseImplantOnlyImplanter + name: Shadekin translator implant + description: "An implant giving the ability to understand and speak Shadekin language." components: - - type: TranslatorImplanter - spoken: - - Drask - understood: - - Drask + - type: Implanter + implant: ShadekinTranslatorImplant - type: entity - id: UrsTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Urs translator implant - description: "An implant giving the ability to understand and speak Ursus language." + id: DwarfTranslatorImplanter + name: Dwarf Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Urs - understood: - - Urs + - type: Implanter + implant: DwarfTranslatorImplant - type: entity - id: ArkaneTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Arkane translator implant - description: "An implant giving the ability to understand and speak Arcane language." + id: CintaTajTranslatorImplanter + name: CintaTaj Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Arkane - understood: - - Arkane + - type: Implanter + implant: CintaTajTranslatorImplant - type: entity - id: ShadowkinTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Shadowkin translator implant - description: "An implant giving the ability to understand and speak Shadowkin language." + id: CodeSpeakImplanter + name: Code speak Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Shadowkin - understood: - - Shadowkin + - type: Implanter + implant: CodeSpeakTranslatorImplant - type: entity - id: BorgTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Borg translator implant - description: "An implant giving the ability to understand and speak Binary." + id: SyndUniversalTranslatorImplanter + name: Universal Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - BorgTalk - understood: - - BorgTalk + - type: Implanter + implant: SyndUniversalTranslatorImplant - type: entity - id: CintaTajTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: CintaTaj translator implant - description: "An implant giving the ability to understand and speak CintaTaj." + id: SikTajTranslatorImplanter + name: Universal Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - CintaTaj - understood: - - CintaTaj - + - type: Implanter + implant: SikTajTranslatorImplant - type: entity - id: SyndUniversalTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: universal translator implant - description: "An implant giving the ability to understand any racial language." + id: NianTranslatorImplanter + name: Nian Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - understood: - - RobotTalk - - Shadowkin - - Arkane - - Urs - - Drask - - Fire - - Nian - - SikTaj - - Moffic - - RootSpeak - - SolCommon - - Canilunzt - - Draconic - - Bubblish - - Nekomimetic + - type: Implanter + implant: NianTranslatorImplant - type: entity id: DevTranslatorImplanter - parent: [ BaseTranslatorImplanter ] - name: Dev translator implant - description: "e" + name: Dev Translator implanter + parent: BaseImplantOnlyImplanter components: - - type: TranslatorImplanter - spoken: - - Dev - understood: - - Dev + - type: Implanter + implant: DevTranslatorImplant diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/rubber_stamp.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/rubber_stamp.yml index df00f40884b..d06412ce834 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Misc/rubber_stamp.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/rubber_stamp.yml @@ -9,5 +9,5 @@ stampedColor: "#754d36" stampState: "paper_stamp-detective" - type: Sprite - sprite: ADT/Objects/Misc/stampsADT.rsi + sprite: ADT/Objects/Misc/stamps.rsi state: stamp-magistrat diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/subdermal_implants.yml new file mode 100644 index 00000000000..c2b9d902af6 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/subdermal_implants.yml @@ -0,0 +1,324 @@ +# Translators +- type: entity + id: BaseTranslatorImplant + abstract: true + components: + - type: SubdermalImplant + - type: Tag + tags: + - SubdermalImplant + - HideContextMenu + +- type: entity + parent: BaseTranslatorImplant + id: GalacticCommonTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - GalacticCommon + toUnderstand: + - GalacticCommon + +- type: entity + parent: BaseTranslatorImplant + id: BubblishTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Bubblish + toUnderstand: + - Bubblish + +- type: entity + parent: BaseTranslatorImplant + id: MofficTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Nian + toUnderstand: + - Nian + +- type: entity + parent: BaseTranslatorImplant + id: RootSpeakTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant +# toSpeak: +# - RootSpeak # Никто кроме дион не может шуршать ветками, когда их нет, даже с имплантом + toUnderstand: + - RootSpeak + +- type: entity + parent: BaseTranslatorImplant + id: NekomimeticTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Nekomimetic + toUnderstand: + - Nekomimetic + +- type: entity + parent: BaseTranslatorImplant + id: DraconicTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Draconic + toUnderstand: + - Draconic + +- type: entity + parent: BaseTranslatorImplant + id: CanilunztTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Canilunzt + toUnderstand: + - Canilunzt + +- type: entity + parent: BaseTranslatorImplant + id: IPCTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - RobotTalk + toUnderstand: + - RobotTalk + +- type: entity + parent: BaseTranslatorImplant + id: BorgTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - BorgTalk + toUnderstand: + - BorgTalk + +# - type: entity +# parent: BaseTranslatorImplant +# id: ArachnidTranslatorImplant +# name: translator implant +# description: This implant grants language knowledge. +# categories: [ HideSpawnMenu ] +# components: +# - type: TranslatorImplant +# toSpeak: +# - Moffic +# toUnderstand: +# - Moffic + +- type: entity + parent: BaseTranslatorImplant + id: FireTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant +# toSpeak: +# - Fire # как с дионами + toUnderstand: + - Fire + +- type: entity + parent: BaseTranslatorImplant + id: SolCommonTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - SolCommon + toUnderstand: + - SolCommon + +- type: entity + parent: BaseTranslatorImplant + id: DraskTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Drask + toUnderstand: + - Drask + +- type: entity + parent: BaseTranslatorImplant + id: UrsTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Urs + toUnderstand: + - Urs + +- type: entity + parent: BaseTranslatorImplant + id: ArkaneTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Arkane + toUnderstand: + - Arkane + +- type: entity + parent: BaseTranslatorImplant + id: ShadekinTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Shadekin + toUnderstand: + - Shadekin + +- type: entity + parent: BaseTranslatorImplant + id: DwarfTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Dwarf + toUnderstand: + - Dwarf + +- type: entity + parent: BaseTranslatorImplant + id: CintaTajTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - CintaTaj + toUnderstand: + - CintaTaj + +- type: entity + parent: BaseTranslatorImplant + id: SyndUniversalTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toUnderstand: + - RobotTalk + - Shadekin + - Arkane + - Urs + - Drask + - Fire + - Nian + - SikTaj + - Moffic + - RootSpeak + - SolCommon + - Canilunzt + - Draconic + - Bubblish + - Nekomimetic + - BorgTalk + - Dwarf + - CintaTaj + +- type: entity + parent: BaseTranslatorImplant + id: CodeSpeakTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - CodeSpeak + toUnderstand: + - CodeSpeak + +- type: entity + parent: BaseTranslatorImplant + id: SikTajTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - SikTaj + toUnderstand: + - SikTaj + +- type: entity + parent: BaseTranslatorImplant + id: NianTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Nian + toUnderstand: + - Nian + +- type: entity + parent: BaseTranslatorImplant + id: DevTranslatorImplant + name: translator implant + description: This implant grants language knowledge. + categories: [ HideSpawnMenu ] + components: + - type: TranslatorImplant + toSpeak: + - Dev + toUnderstand: + - Dev diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/weaponcase.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/weaponcase.yml new file mode 100644 index 00000000000..ec3ea5ec75a --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/weaponcase.yml @@ -0,0 +1,20 @@ +- type: entity + id: WeaponCaseNT + name: weapon case + description: Case with weapons. + parent: [ BaseStorageItem, BaseBagOpenClose ] + components: + - type: Sprite + sprite: ADT/Objects/Storage/weaponcase.rsi + layers: + - state: closed + - state: open + map: ["openLayer"] + - type: Appearance + - type: Item + sprite: ADT/Objects/Storage/weaponcase.rsi + size: Huge + - type: Storage + grid: + - 0,0,8,3 + maxItemSize: Huge \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Tools/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Tools/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Tools/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Battery/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Battery/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Battery/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Pistols/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Pistols/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Pistols/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Projectiles/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Projectiles/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Projectiles/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index b4ef1344060..c91b8597337 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -4,7 +4,7 @@ parent: BulletDisabler name: ion bolt description: No energy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FlyBySound sound: diff --git a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Melee/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Weapons/Melee/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Weapons/Melee/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Structures/Doors/Airlock/fill.txt b/Resources/Prototypes/ADT/Entities/Structures/Doors/Airlock/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Structures/Doors/Airlock/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Structures/Machines/silicon_chargers.yml b/Resources/Prototypes/ADT/Entities/Structures/Machines/silicon_chargers.yml new file mode 100644 index 00000000000..97f1e8700f9 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Structures/Machines/silicon_chargers.yml @@ -0,0 +1,86 @@ +- type: entity + id: SiliconChargerIndustrial + parent: BaseMachinePowered + name: industrial charger + description: A heavy duty machine for inductively charging robotic beings. Gets extremely hot! + components: + - type: Sprite + sprite: ADT/Structures/Machines/borgcharger.rsi + noRot: true + layers: + - state: base + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: borgcharger_closed_unlit + shader: unshaded + map: ["enum.SiliconChargerVisuals.Lights"] + - state: HV + map: ["HV"] + - state: MV + map: ["MV"] + - state: LV + map: ["LV"] + - type: EntityStorageVisuals + stateDoorOpen: open + stateDoorClosed: closed + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.VisualState: + enum.SiliconChargerVisuals.Lights: + Normal: { state: "borgcharger_closed_unlit" } + NormalOpen: { state: "borgcharger_open_unlit" } + Charging: { state: "borgcharger_active_unlit" } + enum.PowerDeviceVisuals.Powered: + enum.SiliconChargerVisuals.Lights: + True: { visible: true } + False: { visible: false } + - type: Icon + sprite: ADT/Structures/Machines/borgcharger.rsi + state: icon + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeAabb + bounds: "-0.45,-0.5,0.45,0.5" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer + - type: ApcPowerReceiver + powerLoad: 500 + - type: StaticPrice #было DynamicPrice + price: 600 + - type: EntityStorage + maxItemSize: Tiny + - type: Appearance + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + entity_storage: !type:Container + - type: SiliconCharger + chargeMulti: 50 + targetTemp: 390 + - type: Construction + graph: Machine + node: machine + containers: + - machine_board + - machine_parts + - entity_storage + - type: Machine + board: IndustrialChargerCircuitboard + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 350 + behaviors: + - !type:EmptyAllContainersBehaviour + - !type:ChangeConstructionNodeBehavior + node: machineFrame + - !type:DoActsBehavior + acts: ["Destruction"] diff --git a/Resources/Prototypes/ADT/InventoryTemplates/fill.txt b/Resources/Prototypes/ADT/InventoryTemplates/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/InventoryTemplates/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/InventoryTemplates/ipc_inventory_template.yml b/Resources/Prototypes/ADT/InventoryTemplates/ipc_inventory_template.yml new file mode 100644 index 00000000000..7172aabdcff --- /dev/null +++ b/Resources/Prototypes/ADT/InventoryTemplates/ipc_inventory_template.yml @@ -0,0 +1,143 @@ +# Simple Station + +- type: inventoryTemplate + id: ipc + slots: + - name: shoes + slotTexture: shoes + slotFlags: FEET + stripTime: 3 + uiWindowPos: 1,0 + strippingWindowPos: 1,2 + displayName: Shoes + - name: jumpsuit + slotTexture: uniform + slotFlags: INNERCLOTHING + stripTime: 6 + uiWindowPos: 1,1 + strippingWindowPos: 1,1 + displayName: Jumpsuit + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + #slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,0 + strippingWindowPos: 0,2 + displayName: Suit + # Underwear + # - name: undershirt + # slotTexture: undershirt + # slotFlags: UNDERSHIRT + # stripTime: 8 + # uiWindowPos: 4,1 + # strippingWindowPos: 3,1 + # displayName: Undershirt + # - name: underpants + # slotTexture: underpants + # slotFlags: UNDERPANTS + # stripTime: 12 + # uiWindowPos: 4,0 + # strippingWindowPos: 3,2 + # displayName: Underpants + # - name: socks + # slotTexture: socks + # slotFlags: SOCKS + # stripTime: 8 + # uiWindowPos: 4,2 + # strippingWindowPos: 3,3 + # displayName: Socks + - name: gloves + slotTexture: gloves + slotFlags: GLOVES + uiWindowPos: 2,1 + strippingWindowPos: 2,1 + displayName: Gloves + - name: neck + slotTexture: neck + slotFlags: NECK + uiWindowPos: 0,1 + strippingWindowPos: 0,1 + displayName: Neck + # - name: mask + # slotTexture: mask + # slotFlags: MASK + # uiWindowPos: 1,1 + # strippingWindowPos: 1,1 + # displayName: Mask + # offset: 0.5, 1.5 + # - name: eyes + # slotTexture: glasses + # slotFlags: EYES + # stripTime: 3 + # uiWindowPos: 0,0 + # strippingWindowPos: 0,0 + # displayName: Eyes + # - name: ears + # slotTexture: ears + # slotFlags: EARS + # stripTime: 3 + # uiWindowPos: 2,0 + # strippingWindowPos: 2,0 + # displayName: Ears + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,2 + strippingWindowPos: 1,0 + displayName: Head + offset: 0, 0 + - name: pocket1 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,3 + dependsOn: jumpsuit + displayName: Pocket 1 + stripHidden: true + - name: pocket2 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,3 + strippingWindowPos: 1,3 + dependsOn: jumpsuit + displayName: Pocket 2 + stripHidden: true + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,4 + dependsOn: outerClothing + displayName: Suit Storage + slotGroup: MainHotbar + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,3 + dependsOn: jumpsuit + displayName: ID + - name: belt + slotTexture: belt + slotFlags: BELT + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 1,4 + displayName: Belt + - name: back + slotTexture: back + slotFlags: BACK + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,0 + strippingWindowPos: 0,4 + displayName: Back diff --git a/Resources/Prototypes/ADT/Languages/fill.txt b/Resources/Prototypes/ADT/Languages/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Languages/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Languages/languages.yml b/Resources/Prototypes/ADT/Languages/languages.yml index 10dde690b5b..13a8b98c4b3 100644 --- a/Resources/Prototypes/ADT/Languages/languages.yml +++ b/Resources/Prototypes/ADT/Languages/languages.yml @@ -11,9 +11,9 @@ id: GalacticCommon obfuscateSyllables: true replacement: - - Бла - - Бла - - Бла + - бла + - бла + - бла - динг-донг - динг - донг @@ -35,6 +35,8 @@ - type: language id: Bubblish obfuscateSyllables: true + color: "#61daff" + whisperColor: "#5f9db0" replacement: - блоб - плоп @@ -49,6 +51,8 @@ - type: language id: Moffic obfuscateSyllables: true + color: "#b34444" + whisperColor: "#8a4343" replacement: - år - i @@ -112,6 +116,8 @@ - type: language id: RootSpeak obfuscateSyllables: true + color: "#76ff61" + whisperColor: "#7fc474" replacement: - хс - зт @@ -124,6 +130,8 @@ - type: language id: CodeSpeak obfuscateSyllables: true + color: Crimson + whisperColor: Crimson replacement: - Белый русский - Представитель станции @@ -179,6 +187,8 @@ - type: language id: Nekomimetic obfuscateSyllables: true + color: "#ff78e8" + whisperColor: "#c280b7" replacement: - неко - нян @@ -233,6 +243,8 @@ - type: language id: Draconic obfuscateSyllables: true + color: "#0ea600" + whisperColor: "#31702c" replacement: - za - az @@ -323,6 +335,8 @@ - type: language id: Canilunzt obfuscateSyllables: true + color: "#ff9a3b" + whisperColor: "#cf8f53" replacement: - rur - ya @@ -387,6 +401,8 @@ - type: language id: SikTaj obfuscateSyllables: true + color: "#ff683b" + whisperColor: "#cf7b61" replacement: - rae - ye @@ -451,6 +467,8 @@ - type: language id: Nian obfuscateSyllables: true + color: "#ffdd61" + whisperColor: "#cfb96b" replacement: - жз - эзз @@ -485,6 +503,8 @@ - type: language id: Fire obfuscateSyllables: true + color: "#ff6a00" + whisperColor: "#e0894a" replacement: - шш - вшш @@ -501,6 +521,8 @@ - type: language id: SolCommon obfuscateSyllables: true + color: "#00fc65" + whisperColor: "#6db389" replacement: - тао - ши @@ -562,6 +584,8 @@ - type: language id: RobotTalk obfuscateSyllables: true + color: "#5773ff" + whisperColor: "#7c8acc" replacement: - "0" - "1" @@ -570,6 +594,8 @@ - type: language id: BorgTalk obfuscateSyllables: true + color: "#9faffc" + whisperColor: "#babfd6" replacement: - "0" - "1" @@ -650,6 +676,8 @@ - type: language id: Drask obfuscateSyllables: true + color: "#0074c7" + whisperColor: "#538cb5" replacement: - овв - оумн @@ -673,6 +701,8 @@ - type: language id: Urs obfuscateSyllables: true + color: "#b36b00" + whisperColor: "#99743d" replacement: - раа - ишш @@ -702,6 +732,8 @@ - type: language id: Arkane obfuscateSyllables: true + color: "#e478ff" + whisperColor: "#c79fd1" replacement: - рииа - инн @@ -721,10 +753,12 @@ - риина - ин -# Spoken by the Shadowkin race. +# Spoken by the Shadekin race. - type: language - id: Shadowkin + id: Shadekin obfuscateSyllables: true + color: "#c048f7" + whisperColor: "#a68bb3" replacement: - mia - ar @@ -748,6 +782,8 @@ - type: language id: Dwarf obfuscateSyllables: true + color: "#f5e238" + whisperColor: "#d4cb79" replacement: - арр - рок @@ -770,6 +806,8 @@ - type: language id: CintaTaj obfuscateSyllables: true + color: "#88d424" + whisperColor: "#91ba5b" replacement: - za - az @@ -918,6 +956,7 @@ - type: language id: Dev obfuscateSyllables: true + color: White replacement: - су - ка diff --git a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml index e17e604bf6c..facd4eb165d 100644 --- a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml @@ -1,6 +1,7 @@ - type: loadoutGroup id: MagistratJumpsuit name: loadout-group-lawyer-jumpsuit + minLimit: 1 loadouts: - MagistratJumpsuit - LawyerJumpsuit @@ -31,6 +32,7 @@ - type: loadoutGroup id: PathologJumpsuit name: loadout-group-patholog-jumpsuit + minLimit: 1 loadouts: - PathologJumpsuit - PathologJumpskirt @@ -40,7 +42,7 @@ - type: loadoutGroup id: PathologBackpack name: loadout-group-patholog-backpack - minLimit: 0 + minLimit: 1 loadouts: - PathologBackpack - PathologSatchel @@ -61,3 +63,34 @@ loadouts: - BlueShoes - MedicalWinterBoots + +#Science + +- type: loadoutGroup + id: RoboticistJumpsuit + name: loadout-group-roboticist-jumpsuit + minLimit: 1 + loadouts: + - ScientistJumpsuit + - ScientistJumpskirt + - RoboticistJumpsuit + - RoboticistJumpskirt + +- type: loadoutGroup + id: RoboticistOuterClothing + name: loadout-group-roboticist-outerclothing + minLimit: 0 + loadouts: + - RegularLabCoat + - ScienceLabCoat + - ScienceWintercoat + - RoboticistWintercoat + +- type: loadoutGroup + id: RobohandsGloves + name: loadout-group-roboticist-gloves + minLimit: 0 + loadouts: + - LatexGloves + - PurpleGloves + - RobohandsGloves diff --git a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml index cd4402dbf11..dd613aacad5 100644 --- a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml @@ -27,3 +27,20 @@ - SurvivalMedical - Trinkets - GroupSpeciesBreathToolMedical + +- type: roleLoadout + id: JobADTRoboticist + groups: + - Inventory # Corvax-Loadouts + - GroupTankHarness + - ScientistHead + - ScientistNeck + - RoboticistJumpsuit + - ScientistBackpack + - RoboticistOuterClothing + - RobohandsGloves + - ScientistShoes + - Glasses + - Survival + - Trinkets + - GroupSpeciesBreathTool diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Body/Parts/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Body/Parts/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Body/Parts/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Body/Prototypes/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Body/Prototypes/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Body/Prototypes/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Damage/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Damage/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Damage/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Customization/Markings/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Customization/Markings/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Customization/Markings/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Player/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Player/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Player/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Species/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Species/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Entities/Mobs/Species/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Names/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Names/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Names/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Species/fill.txt b/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Species/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Moth(Must resolved,then deleted)/Species/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Objectives/stealTargetGroups.yml b/Resources/Prototypes/ADT/Objectives/stealTargetGroups.yml new file mode 100644 index 00000000000..8b6eebc4a30 --- /dev/null +++ b/Resources/Prototypes/ADT/Objectives/stealTargetGroups.yml @@ -0,0 +1,21 @@ +# TODO: В будущем перенести закоменченные прототипы +# - type: stealTargetGroup +# id: NesGravityGeneratorCore +# name: гравитационное ядро +# sprite: +# sprite: NES/GraviCore.rsi +# state: GraviCore + +# - type: stealTargetGroup +# id: MobileDefibrillator +# name: переносной дефибриллятор +# sprite: +# sprite: ADT/Objects/Specific/Medical/mobile_defib.rsi +# state: icon + +- type: stealTargetGroup + id: ADTClothingMaskGasCE + name: CE's elite gas mask + sprite: + sprite: ADT/Clothing/Mask/gasCE.rsi + state: icon \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Objectives/thief.yml b/Resources/Prototypes/ADT/Objectives/thief.yml new file mode 100644 index 00000000000..f10c53acb5b --- /dev/null +++ b/Resources/Prototypes/ADT/Objectives/thief.yml @@ -0,0 +1,11 @@ +- type: entity + categories: [ HideSpawnMenu ] + parent: BaseThiefStealObjective + id: ADTClothingMaskGasCEStealObjective + components: + - type: NotJobRequirement + job: StationEngineer + - type: StealCondition + stealGroup: ADTClothingMaskGasCE + - type: Objective + difficulty: 1 diff --git a/Resources/Prototypes/ADT/Polymorphs/fill.txt b/Resources/Prototypes/ADT/Polymorphs/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Polymorphs/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml b/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml index f781310f7b7..b3e39b97581 100644 --- a/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml +++ b/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml @@ -7,4 +7,28 @@ transferName: true transferDamage: true revertOnCrit: false - revertOnDeath: true \ No newline at end of file + revertOnDeath: true + +- type: polymorph + id: ADTPMothroach + configuration: + entity: MobMothroach + forced: true + transferName: true + allowRepeatedMorphs: False + inventory: Drop + revertOnCrit: true + revertOnDeath: true + duration: 40 + +- type: polymorph + id: ADTPMothroach2 + configuration: + entity: MobMothroach + forced: true + transferName: true + allowRepeatedMorphs: False + inventory: Drop + revertOnCrit: true + revertOnDeath: true + duration: 120 diff --git a/Resources/Prototypes/ADT/Reagents/biological.yml b/Resources/Prototypes/ADT/Reagents/biological.yml new file mode 100644 index 00000000000..486fe2bec57 --- /dev/null +++ b/Resources/Prototypes/ADT/Reagents/biological.yml @@ -0,0 +1,12 @@ +#NES кровь сумеречника +- type: reagent + parent: Blood + id: ShadekinBlood + name: reagent-name-shadekin-blood + group: Biological + desc: reagent-desc-shadekin-blood + flavor: metallic + color: "#2e0f24" + recognizable: true + physicalDesc: reagent-physical-desc-ferrous + slippery: false diff --git a/Resources/Prototypes/ADT/Reagents/toxins.yml b/Resources/Prototypes/ADT/Reagents/toxins.yml new file mode 100644 index 00000000000..5987950931c --- /dev/null +++ b/Resources/Prototypes/ADT/Reagents/toxins.yml @@ -0,0 +1,20 @@ +- type: reagent + id: LingToxin + name: reagent-name-toxin + group: Toxins + desc: reagent-desc-toxin + flavor: bitter + color: "#cf3600" + physicalDesc: reagent-physical-desc-opaque + plantMetabolism: + - !type:PlantAdjustToxins + amount: 10 + - !type:PlantAdjustHealth + amount: -5 + metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Poison: 2 diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/electronics.yml b/Resources/Prototypes/ADT/Recipes/Lathes/electronics.yml new file mode 100644 index 00000000000..24c34e966ff --- /dev/null +++ b/Resources/Prototypes/ADT/Recipes/Lathes/electronics.yml @@ -0,0 +1,8 @@ +- type: latheRecipe + id: IndustrialChargerCircuitboard + result: IndustrialChargerCircuitboard + completetime: 2 + materials: + Steel: 900 + Plastic: 100 + Gold: 100 diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/fill.txt b/Resources/Prototypes/ADT/Recipes/Lathes/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Recipes/Lathes/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/translators.yml b/Resources/Prototypes/ADT/Recipes/Lathes/translators.yml index 233acfe64dd..37fe4604871 100644 --- a/Resources/Prototypes/ADT/Recipes/Lathes/translators.yml +++ b/Resources/Prototypes/ADT/Recipes/Lathes/translators.yml @@ -69,8 +69,8 @@ Gold: 50 - type: latheRecipe - id: BasicGalaticCommonTranslatorImplanter - result: BasicGalaticCommonTranslatorImplanter + id: GalacticCommonTranslatorImplanter + result: GalacticCommonTranslatorImplanter completetime: 2 materials: Steel: 500 @@ -79,27 +79,16 @@ Gold: 50 Silver: 50 -- type: latheRecipe - id: XenoTranslator - result: XenoTranslator - completetime: 2 - materials: - Steel: 200 - Plastic: 50 - Gold: 50 - Plasma: 50 - Silver: 50 - -- type: latheRecipe - id: AdvancedGalaticCommonTranslatorImplanter - result: AdvancedGalaticCommonTranslatorImplanter - completetime: 2 - materials: - Steel: 500 - Glass: 500 - Plastic: 100 - Gold: 50 - Silver: 50 +#- type: latheRecipe +# id: XenoTranslator +# result: XenoTranslator +# completetime: 2 +# materials: +# Steel: 200 +# Plastic: 50 +# Gold: 50 +# Plasma: 50 +# Silver: 50 - type: latheRecipe id: BubblishTranslatorImplanter @@ -178,6 +167,39 @@ Gold: 50 Silver: 50 +- type: latheRecipe + id: IPCTranslatorImplanter + result: IPCTranslatorImplanter + completetime: 2 + materials: + Steel: 500 + Glass: 500 + Plastic: 100 + Gold: 50 + Silver: 50 + +- type: latheRecipe + id: BorgTranslatorImplanter + result: BorgTranslatorImplanter + completetime: 2 + materials: + Steel: 500 + Glass: 500 + Plastic: 100 + Gold: 50 + Silver: 50 + +- type: latheRecipe + id: DwarfTranslatorImplanter + result: DwarfTranslatorImplanter + completetime: 2 + materials: + Steel: 500 + Glass: 500 + Plastic: 100 + Gold: 50 + Silver: 50 + - type: latheRecipe id: AnimalTranslator result: AnimalTranslator @@ -222,6 +244,17 @@ Gold: 50 Silver: 50 +- type: latheRecipe + id: DraskTranslatorImplanter + result: DraskTranslatorImplanter + completetime: 2 + materials: + Steel: 500 + Glass: 500 + Plastic: 100 + Gold: 50 + Silver: 50 + - type: latheRecipe id: DraskTranslator result: DraskTranslator @@ -233,15 +266,24 @@ Gold: 50 - type: latheRecipe - id: DraskTranslatorImplanter - result: DraskTranslatorImplanter + id: DwarfTranslator + result: DwarfTranslator completetime: 2 materials: Steel: 500 - Glass: 500 - Plastic: 100 + Glass: 100 + Plastic: 50 + Gold: 50 + +- type: latheRecipe + id: IPCTranslator + result: IPCTranslator + completetime: 2 + materials: + Steel: 500 + Glass: 100 + Plastic: 50 Gold: 50 - Silver: 50 - type: latheRecipe id: UrsTranslatorImplanter @@ -266,8 +308,8 @@ Silver: 50 - type: latheRecipe - id: ShadowkinTranslatorImplanter - result: ShadowkinTranslatorImplanter + id: ShadekinTranslatorImplanter + result: ShadekinTranslatorImplanter completetime: 2 materials: Steel: 500 @@ -287,15 +329,15 @@ Gold: 50 Silver: 50 -#- type: latheRecipe -# id: UrsTranslator -# result: UrsTranslator -# completetime: 2 -# materials: -# Steel: 500 -# Glass: 100 -# Plastic: 50 -# Gold: 50 +- type: latheRecipe + id: UrsTranslator + result: UrsTranslator + completetime: 2 + materials: + Steel: 500 + Glass: 100 + Plastic: 50 + Gold: 50 - type: latheRecipe id: ArkaneTranslator @@ -308,8 +350,8 @@ Gold: 50 - type: latheRecipe - id: ShadowkinTranslator - result: ShadowkinTranslator + id: ShadekinTranslator + result: ShadekinTranslator completetime: 2 materials: Steel: 500 diff --git a/Resources/Prototypes/ADT/Research/fill.txt b/Resources/Prototypes/ADT/Research/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Research/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Research/translators.yml b/Resources/Prototypes/ADT/Research/translators.yml index a687d06a53d..285b4aa134f 100644 --- a/Resources/Prototypes/ADT/Research/translators.yml +++ b/Resources/Prototypes/ADT/Research/translators.yml @@ -3,7 +3,7 @@ id: BasicTranslation name: research-technology-basic-translation icon: - sprite: _NF/Objects/Devices/translator.rsi + sprite: ADT/Objects/Devices/translator.rsi state: icon discipline: CivilianServices tier: 2 @@ -15,31 +15,32 @@ - DraconicTranslator - SolCommonTranslator - RootSpeakTranslator - - BasicGalaticCommonTranslatorImplanter + - GalacticCommonTranslatorImplanter - MofficTranslator - DraskTranslator -# - UrsTranslator # Закомменчено до раундстарт урсов + - UrsTranslator # Закомменчено до раундстарт урсов # И никто не раскомментил, молодцы - ArkaneTranslator - - ShadowkinTranslator + - ShadekinTranslator - NianTranslator - FireTranslator - SikTajTranslator - CintaTajTranslator - + - IPCTranslator + - DwarfTranslator # Frontier - languages mechanic - type: technology id: AdvancedTranslation name: research-technology-advanced-translation icon: - sprite: _NF/Objects/Devices/translator.rsi + sprite: ADT/Objects/Devices/translator.rsi state: icon discipline: CivilianServices tier: 3 cost: 15000 recipeUnlocks: - - XenoTranslator - - AdvancedGalaticCommonTranslatorImplanter +# - XenoTranslator +# - AdvancedGalaticCommonTranslatorImplanter - BubblishTranslatorImplanter - NekomimeticTranslatorImplanter - DraconicTranslatorImplanter @@ -53,7 +54,10 @@ - NianTranslatorImplanter - FireTranslatorImplanter - DraskTranslatorImplanter -# - UrsTranslatorImplanter # Закомменчено до раундстарт урсов + - UrsTranslatorImplanter # Закомменчено до раундстарт урсов # И никто не раскомментил, молодцы - ArkaneTranslatorImplanter - - ShadowkinTranslatorImplanter + - ShadekinTranslatorImplanter - CintaTajTranslatorImplanter + - IPCTranslatorImplanter + - BorgTranslatorImplanter + - DwarfTranslatorImplanter diff --git a/Resources/Prototypes/ADT/Roles/Jobs/Science/fill.txt b/Resources/Prototypes/ADT/Roles/Jobs/Science/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Roles/Jobs/Science/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Roles/Jobs/Science/roboticist.yml b/Resources/Prototypes/ADT/Roles/Jobs/Science/roboticist.yml new file mode 100644 index 00000000000..19d8211f573 --- /dev/null +++ b/Resources/Prototypes/ADT/Roles/Jobs/Science/roboticist.yml @@ -0,0 +1,22 @@ +- type: job + id: ADTRoboticist + name: job-name-roboticist + description: job-description-roboticist + playTimeTracker: JobRoboticist + requirements: + - !type:DepartmentTimeRequirement + department: Science + time: 25200 #7 hrs + startingGear: ADTRoboticistGear + icon: "JobIconRoboticist" + supervisors: job-supervisors-rd + access: + - Research + - Maintenance + +- type: startingGear + id: ADTRoboticistGear + equipment: + ears: ClothingHeadsetRobotics + id: ADTRoboticistPDA + pocket1: BorgTranslatorImplanter diff --git a/Resources/Prototypes/ADT/Roles/play_time_trackers.yml b/Resources/Prototypes/ADT/Roles/play_time_trackers.yml index 4197c525e5c..dc77c0fb415 100644 --- a/Resources/Prototypes/ADT/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/ADT/Roles/play_time_trackers.yml @@ -3,3 +3,6 @@ - type: playTimeTracker id: JobADTPathologist + +- type: playTimeTracker + id: JobRoboticist diff --git a/Resources/Prototypes/ADT/Shaders/shaders.yml b/Resources/Prototypes/ADT/Shaders/shaders.yml new file mode 100644 index 00000000000..9e46e3b949e --- /dev/null +++ b/Resources/Prototypes/ADT/Shaders/shaders.yml @@ -0,0 +1,10 @@ +# Simple Station +- type: shader + id: ColorTint + kind: source + path: "/Textures/ADT/Shaders/color_tint.swsl" + +- type: shader + id: SeeingStatic + kind: source + path: "/Textures/ADT/Shaders/seeing_static.swsl" diff --git a/Resources/Prototypes/ADT/SoundCollections/emotes.yml b/Resources/Prototypes/ADT/SoundCollections/emotes.yml index a625ac21c8c..24ac3c2ebb6 100644 --- a/Resources/Prototypes/ADT/SoundCollections/emotes.yml +++ b/Resources/Prototypes/ADT/SoundCollections/emotes.yml @@ -14,7 +14,52 @@ id: DraskTalk files: - /Audio/ADT/Drask/drasktalk.ogg + +# IPC +- type: soundCollection + id: SynthYes + files: + - /Audio/ADT/IPC/synth_yes.ogg + +- type: soundCollection + id: SynthNo + files: + - /Audio/ADT/IPC/synth_no.ogg + +- type: soundCollection + id: Ping + files: + - /Audio/ADT/IPC/ping.ogg + +- type: soundCollection + id: Buzz + files: + - /Audio/ADT/IPC/buzz-sigh.ogg + +- type: soundCollection + id: SighIPC + files: + - /Audio/ADT/IPC/buzz-two.ogg + +- type: soundCollection + id: ScreamIPC + files: + - /Audio/ADT/IPC/synth_scream.ogg +- type: soundCollection + id: SighBuzz + files: + - /Audio/ADT/IPC/buzz-two.ogg + +- type: soundCollection + id: NovakidLaugh + files: + - /Audio/ADT/Novakid/novakid_laugh01.ogg + - /Audio/ADT/Novakid/novakid_laugh02.ogg + - /Audio/ADT/Novakid/novakid_laugh03.ogg + - /Audio/ADT/Novakid/novakid_laugh04.ogg + - /Audio/ADT/Novakid/novakid_laugh05.ogg + - type: soundCollection id: TajaranHisses files: @@ -42,4 +87,92 @@ - type: soundCollection id: TajaranPurrs files: - - /Audio/ADT/Felinid/cat_purr1.ogg \ No newline at end of file + - /Audio/ADT/Felinid/cat_purr1.ogg + +- type: soundCollection + id: MothBuzz + files: + - /Audio/ADT/Moth/moth_squeak.ogg + +- type: soundCollection + id: MothScream + files: + - /Audio/ADT/Moth/moth_screm.ogg + +- type: soundCollection + id: MothLaugh + files: + - /Audio/ADT/Moth/moth_laugh.ogg + +- type: soundCollection + id: MothChitter + files: + - /Audio/ADT/Moth/moth_chitter.ogg + +- type: soundCollection + id: MothSqueak + files: + - /Audio/ADT/Moth/moth_squeak.ogg + +- type: soundCollection + id: UrsusScreams + files: + - /Audio/ADT/Ursus/scream1.ogg + - /Audio/ADT/Ursus/scream2.ogg + - /Audio/ADT/Ursus/scream3.ogg + - /Audio/ADT/Ursus/scream4.ogg + +- type: soundCollection + id: UrsusCry + files: + - /Audio/ADT/Ursus/cry1.ogg + - /Audio/ADT/Ursus/cry2.ogg + +- type: soundCollection + id: UrsusLaugh + files: + - /Audio/ADT/Ursus/laugh1.ogg + - /Audio/ADT/Ursus/laugh2.ogg + +- type: soundCollection + id: NesMaleVulpaScreams + files: + - /Audio/ADT/Voice/Vulpkanin/growl1.ogg + - /Audio/ADT/Voice/Vulpkanin/growl2.ogg + - /Audio/ADT/Voice/Vulpkanin/growl3.ogg + +- type: soundCollection + id: NesFemaleVulpaScreams + files: + - /Audio/ADT/Voice/Vulpkanin/scream1.ogg + - /Audio/ADT/Voice/Vulpkanin/scream2.ogg + +- type: soundCollection + id: VulpHowls + files: + - /Audio/ADT/Voice/Vulpkanin/howl.ogg + +- type: soundCollection + id: VulpBarks + files: + - /Audio/ADT/Voice/Vulpkanin/bark.ogg + - /Audio/ADT/Voice/Doge/dog_bark1.ogg + - /Audio/ADT/Voice/Doge/dog_bark2.ogg + - /Audio/ADT/Voice/Doge/dog_bark3.ogg + +- type: soundCollection + id: VulpWhines + files: + - /Audio/ADT/Voice/Doge/dog_whine.ogg + +- type: soundCollection + id: VulpGrowls + files: + - /Audio/ADT/Voice/Doge/dog_growl1.ogg + - /Audio/ADT/Voice/Doge/dog_growl2.ogg + - /Audio/ADT/Voice/Doge/dog_growl3.ogg + +- type: soundCollection + id: VulpHeckaetSound + files: + - /Audio/ADT/Voice/Vulpkanin/vulpkanin_hekaet1.ogg \ No newline at end of file diff --git a/Resources/Prototypes/ADT/SoundCollections/fill.txt b/Resources/Prototypes/ADT/SoundCollections/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/SoundCollections/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/SoundCollections/screams.yml b/Resources/Prototypes/ADT/SoundCollections/screams.yml index cbed0a2e8c2..9c8a2626346 100644 --- a/Resources/Prototypes/ADT/SoundCollections/screams.yml +++ b/Resources/Prototypes/ADT/SoundCollections/screams.yml @@ -1,3 +1,11 @@ +- type: soundCollection + id: NovakidScreams + files: + - /Audio/ADT/Novakid/novakid_scream01.ogg + - /Audio/ADT/Novakid/novakid_scream02.ogg + - /Audio/ADT/Novakid/novakid_scream03.ogg + - /Audio/ADT/Novakid/novakid_scream04.ogg + - type: soundCollection id: TajaranMaleScreams files: diff --git a/Resources/Prototypes/ADT/Species/Ursus.yml b/Resources/Prototypes/ADT/Species/Ursus.yml new file mode 100644 index 00000000000..7524465f3e0 --- /dev/null +++ b/Resources/Prototypes/ADT/Species/Ursus.yml @@ -0,0 +1,157 @@ +- type: species + id: UrsusSpecies + name: species-name-Ursus + roundStart: true + prototype: MobUrsus + sprites: MobUrsusSprites + defaultSkinTone: "#964B00" + markingLimits: MobUrsusMarkingLimits + dollPrototype: MobUrsusDummy + skinColoration: Hues + maleFirstNames: firstMaleUrs + femaleFirstNames: firstFemaleUrs + maleLastNames: LastMaleUrs + femaleLastNames: LastFemaleUrs + naming: firstlast + #sponsorOnly: true + +- type: speciesBaseSprites + id: MobUrsusSprites + sprites: + Head: MobUrsusHead + Eyes: MobUrsusEyes + Hair: MobHumanoidAnyMarking + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + Chest: MobUrsusTorso + LArm: MobUrsusLArm + RArm: MobUrsusRArm + LHand: MobUrsusLHand + RHand: MobUrsusRHand + LLeg: MobUrsusLLeg + RLeg: MobUrsusRLeg + LFoot: MobUrsusLFoot + RFoot: MobUrsusRFoot + +- type: markingPoints + id: MobUrsusMarkingLimits + onlyWhitelisted: true + points: + Head: + points: 5 + required: false + Hair: + points: 1 + required: false + HeadTop: + points: 5 + required: true + HeadSide: + points: 5 + required: true + Chest: + points: 2 + required: true + Tail: + points: 2 + required: false + Snout: + points: 2 + required: false + Legs: + points: 2 + required: false + Arms: + points: 2 + required: false + +- type: humanoidBaseSprite + id: MobUrsusEyes + baseSprite: + sprite: Mobs/Customization/eyes.rsi + state: eyes + +- type: humanoidBaseSprite + id: MobUrsusHead + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobUrsusHeadMale + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobUrsusHeadFemale + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobUrsusTorso + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobUrsusTorsoMale + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobUrsusTorsoFemale + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobUrsusLLeg + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobUrsusLArm + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobUrsusLHand + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobUrsusLFoot + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobUrsusRLeg + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobUrsusRArm + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobUrsusRHand + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobUrsusRFoot + baseSprite: + sprite: ADT/Mobs/Species/Ursus/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/ADT/Species/demon.yml b/Resources/Prototypes/ADT/Species/demon.yml index 82bbe62c593..a5ff1c3d8f7 100644 --- a/Resources/Prototypes/ADT/Species/demon.yml +++ b/Resources/Prototypes/ADT/Species/demon.yml @@ -69,89 +69,89 @@ - type: humanoidBaseSprite id: MobDemonHead baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: head_m - type: humanoidBaseSprite id: MobDemonHeadMale baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: head_m - type: humanoidBaseSprite id: MobDemonHeadFemale baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: head_f - type: humanoidBaseSprite id: MobDemonTorso baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: torso_m - type: humanoidBaseSprite id: MobDemonTorsoMale baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: torso_m - type: humanoidBaseSprite id: MobDemonTorsoFemale baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: torso_f - type: humanoidBaseSprite id: MobDemonLLeg baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: l_leg - type: humanoidBaseSprite id: MobDemonLHand baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: l_hand - type: humanoidBaseSprite id: MobDemonLArm baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: l_arm - type: humanoidBaseSprite id: MobDemonLFoot baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: l_foot - type: humanoidBaseSprite id: MobDemonRLeg baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: r_leg - type: humanoidBaseSprite id: MobDemonRHand baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: r_hand - type: humanoidBaseSprite id: MobDemonRArm baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: r_arm - type: humanoidBaseSprite id: MobDemonRFoot baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: r_foot - type: humanoidBaseSprite id: MobDemonTail baseSprite: - sprite: ADT/Mobs/Demon/parts.rsi + sprite: ADT/Mobs/Species/Demon/parts.rsi state: tail diff --git a/Resources/Prototypes/ADT/Species/drask.yml b/Resources/Prototypes/ADT/Species/drask.yml index 8c75d513aec..7436e823c58 100644 --- a/Resources/Prototypes/ADT/Species/drask.yml +++ b/Resources/Prototypes/ADT/Species/drask.yml @@ -70,89 +70,89 @@ - type: humanoidBaseSprite id: MobDraskEyes baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: eyes - type: humanoidBaseSprite id: MobDraskHead baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: head_m - type: humanoidBaseSprite id: MobDraskHeadMale baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: head_m - type: humanoidBaseSprite id: MobDraskHeadFemale baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: head_f - type: humanoidBaseSprite id: MobDraskTorso baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: torso_m - type: humanoidBaseSprite id: MobDraskTorsoMale baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: torso_m - type: humanoidBaseSprite id: MobDraskTorsoFemale baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: torso_f - type: humanoidBaseSprite id: MobDraskLLeg baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: l_leg - type: humanoidBaseSprite id: MobDraskLHand baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: l_hand - type: humanoidBaseSprite id: MobDraskLArm baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: l_arm - type: humanoidBaseSprite id: MobDraskLFoot baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: l_foot - type: humanoidBaseSprite id: MobDraskRLeg baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: r_leg - type: humanoidBaseSprite id: MobDraskRHand baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: r_hand - type: humanoidBaseSprite id: MobDraskRArm baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: r_arm - type: humanoidBaseSprite id: MobDraskRFoot baseSprite: - sprite: ADT/Mobs/Drask/parts.rsi + sprite: ADT/Mobs/Species/Drask/parts.rsi state: r_foot diff --git a/Resources/Prototypes/ADT/Species/ipc.yml b/Resources/Prototypes/ADT/Species/ipc.yml new file mode 100644 index 00000000000..a144d4cf946 --- /dev/null +++ b/Resources/Prototypes/ADT/Species/ipc.yml @@ -0,0 +1,150 @@ +# Simple Station + +- type: species + id: IPC + name: species-name-ipc + roundStart: true # закомментировано для теста + prototype: MobIPC + sprites: MobIPCSprites + markingLimits: MobIPCMarkingLimits + dollPrototype: MobIPCDummy + skinColoration: Hues + sponsorOnly: false + minAge: 1 + maxAge: 240 + oldAge: 50 + youngAge: 25 + maleFirstNames: IpcFirst + femaleFirstNames: IpcFirst + maleLastNames: IpcLast # Corvax-LastnameGender + femaleLastNames: IpcLast # Corvax-LastnameGender + naming: FirstDashLast + sexes: + - Unsexed + +# The lack of a layer means that +# this person cannot have round-start anything +# applied to that layer. It has to instead +# be defined as a 'custom base layer' +# in either the mob's starting marking prototype, +# or it has to be added in C#. +- type: speciesBaseSprites + id: MobIPCSprites + sprites: + Head: MobIPCHead + Snout: MobHumanoidAnyMarking + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Hair: MobHumanoidMarkingMatchSkin + FacialHair: MobIPCScreen + Chest: MobIPCTorso + LArm: MobIPCLArm + RArm: MobIPCRArm + LHand: MobIPCLHand + RHand: MobIPCRHand + LLeg: MobIPCLLeg + RLeg: MobIPCRLeg + LFoot: MobIPCLFoot + RFoot: MobIPCRFoot + +- type: markingPoints + id: MobIPCMarkingLimits + onlyWhitelisted: true + points: + Chest: + points: 0 + required: false + Legs: + points: 0 + required: false + Arms: + points: 0 + required: false + +- type: humanoidBaseSprite + id: MobIPCScreen + +- type: humanoidBaseSprite + id: MobIPCHead + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobIPCHeadMale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobIPCHeadFemale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobIPCTorso + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobIPCTorsoMale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobIPCTorsoFemale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobIPCLLeg + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobIPCLArm + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobIPCLHand + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobIPCLFoot + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobIPCRLeg + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobIPCRArm + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobIPCRHand + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobIPCRFoot + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/ADT/Species/moth.yml b/Resources/Prototypes/ADT/Species/moth.yml new file mode 100644 index 00000000000..889fc2b9b5f --- /dev/null +++ b/Resources/Prototypes/ADT/Species/moth.yml @@ -0,0 +1,160 @@ +- type: species + id: Moth + name: species-name-moth + roundStart: true + prototype: MobMoth + sprites: MobMothSprites + defaultSkinTone: "#ffda93" + markingLimits: MobMothMarkingLimits + dollPrototype: MobMothDummy + skinColoration: Hues + maleFirstNames: first_male_moth # ADT-name-custom + femaleFirstNames: first_female_moth # ADT-name-custom + maleLastNames: last_moth # ADT-custom + femaleLastNames: last_moth # ADT-custom + +- type: speciesBaseSprites + id: MobMothSprites + sprites: + Head: MobMothHead + Snout: MobHumanoidAnyMarking + Chest: MobMothTorso + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Eyes: MobMothEyes + LArm: MobMothLArm + RArm: MobMothRArm + LHand: MobMothLHand + RHand: MobMothRHand + LLeg: MobMothLLeg + RLeg: MobMothRLeg + LFoot: MobMothLFoot + RFoot: MobMothRFoot + +- type: humanoidBaseSprite + id: MobMothEyes + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: eyes + +- type: markingPoints + id: MobMothMarkingLimits + onlyWhitelisted: true + points: + Hair: + points: 0 + required: false + FacialHair: + points: 0 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ MothWingsDefault ] + Snout: + points: 1 + required: false + HeadTop: + points: 1 + required: true + defaultMarkings: [ MothAntennasDefault ] + HeadSide: + points: 1 + required: false + Head: + points: 1 + required: false + Chest: + points: 1 + required: false + Legs: + points: 2 + required: false + Arms: + points: 2 + required: false + +- type: humanoidBaseSprite + id: MobMothHead + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobMothHeadMale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobMothHeadFemale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobMothTorso + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobMothTorsoMale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobMothTorsoFemale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobMothLLeg + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobMothLHand + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobMothLArm + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobMothLFoot + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobMothRLeg + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobMothRHand + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobMothRArm + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobMothRFoot + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/ADT/Species/novakid.yml b/Resources/Prototypes/ADT/Species/novakid.yml new file mode 100644 index 00000000000..3c26ebdc730 --- /dev/null +++ b/Resources/Prototypes/ADT/Species/novakid.yml @@ -0,0 +1,153 @@ +- type: species + id: NovakidSpecies + name: species-name-novakid + roundStart: true + prototype: MobNovakid + sprites: MobNovakidSprites + defaultSkinTone: "#34a223" + markingLimits: MobNovakidMarkingLimits + dollPrototype: MobNovakidDummy + skinColoration: Hues + maleFirstNames: firstNovakid + femaleFirstNames: firstNovakid + maleLastNames: NovakidLast + femaleLastNames: NovakidLast + naming: firstlast + +- type: speciesBaseSprites + id: MobNovakidSprites + sprites: + Head: MobNovakidHead + Hair: MobHumanoidAnyMarking + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + Chest: MobNovakidTorso + LArm: MobNovakidLArm + RArm: MobNovakidRArm + LHand: MobNovakidLHand + RHand: MobNovakidRHand + LLeg: MobNovakidLLeg + RLeg: MobNovakidRLeg + LFoot: MobNovakidLFoot + RFoot: MobNovakidRFoot + +- type: markingPoints + id: MobNovakidMarkingLimits + onlyWhitelisted: true + points: + Head: + points: 1 + required: false + Hair: + points: 1 + required: false + HeadTop: + points: 1 + required: true + defaultMarkings: [HeadNovakidDefolt] + HeadSide: + points: 1 + required: true + defaultMarkings: [ NovakidFace1 ] + Chest: + points: 1 + required: true + defaultMarkings: [ TorsoNovakidDefolt ] + Tail: + points: 1 + required: false + Snout: + points: 1 + required: false + Legs: + points: 2 + required: false + Arms: + points: 2 + required: false + + +- type: humanoidBaseSprite + id: MobNovakidHead + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobNovakidHeadMale + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobNovakidHeadFemale + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobNovakidTorso + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobNovakidTorsoMale + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobNovakidTorsoFemale + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobNovakidLLeg + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobNovakidLHand + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobNovakidLArm + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobNovakidLFoot + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobNovakidRLeg + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobNovakidRHand + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobNovakidRArm + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobNovakidRFoot + baseSprite: + sprite: ADT/Mobs/Species/Novakid/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/ADT/Species/shadekin.yml b/Resources/Prototypes/ADT/Species/shadekin.yml new file mode 100644 index 00000000000..541328e018a --- /dev/null +++ b/Resources/Prototypes/ADT/Species/shadekin.yml @@ -0,0 +1,166 @@ +- type: species + id: Shadekin + name: species-name-shadekin + roundStart: true + prototype: MobShadekin + sprites: MobShadekinSprites + defaultSkinTone: "#FFFFFF" + markingLimits: MobShadekinMarkingLimits + dollPrototype: MobShadekinDummy + skinColoration: Hues + maleFirstNames: names_shadekin + femaleFirstNames: names_shadekin + maleLastNames: names_arachnid_last # Corvax-LastnameGender + femaleLastNames: names_arachnid_last # Corvax-LastnameGender + minAge: 18 + maxAge: 80 + youngAge: 30 + oldAge: 50 + sexes: + - Male + - Female + - Unsexed + +- type: speciesBaseSprites + id: MobShadekinSprites + sprites: + Head: MobShadekinHead + Snout: MobShadekinAnyMarkingFollowSkin + HeadTop: MobShadekinAnyMarkingFollowSkin + HeadSide: MobShadekinAnyMarkingFollowSkin + Tail: MobShadekinAnyMarkingFollowSkin + Chest: MobShadekinTorso + Eyes: MobShadekinEyes + LArm: MobShadekinLArm + RArm: MobShadekinRArm + LHand: MobShadekinLHand + RHand: MobShadekinRHand + LLeg: MobShadekinLLeg + RLeg: MobShadekinRLeg + LFoot: MobShadekinLFoot + RFoot: MobShadekinRFoot + +- type: markingPoints + id: MobShadekinMarkingLimits + onlyWhitelisted: true + points: + Hair: + points: 0 + required: false + FacialHair: + points: 0 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [TailShadekin] + HeadTop: + points: 1 + required: true + defaultMarkings: [EarsShadekin] + Chest: + points: 0 + required: false + Legs: + points: 0 + required: false + Arms: + points: 0 + required: false + +- type: humanoidBaseSprite + id: MobShadekinAnyMarking + +- type: humanoidBaseSprite + id: MobShadekinAnyMarkingFollowSkin + markingsMatchSkin: true + +- type: humanoidBaseSprite + id: MobShadekinHead + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobShadekinHeadMale + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobShadekinHeadFemale + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobShadekinTorso + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobShadekinTorsoMale + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobShadekinTorsoFemale + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobShadekinLLeg + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobShadekinLHand + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobShadekinEyes + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: eyes + +- type: humanoidBaseSprite + id: MobShadekinLArm + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobShadekinLFoot + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobShadekinRLeg + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobShadekinRHand + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobShadekinRArm + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobShadekinRFoot + baseSprite: + sprite: ADT/Mobs/Species/Shadekin/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/ADT/StatusEffects/seeingstatic.yml b/Resources/Prototypes/ADT/StatusEffects/seeingstatic.yml new file mode 100644 index 00000000000..5fb3e737493 --- /dev/null +++ b/Resources/Prototypes/ADT/StatusEffects/seeingstatic.yml @@ -0,0 +1,4 @@ +# Simple Station + +- type: statusEffect + id: SeeingStatic diff --git a/Resources/Prototypes/ADT/Traits/disabilities.yml b/Resources/Prototypes/ADT/Traits/disabilities.yml new file mode 100644 index 00000000000..fc43fc11af1 --- /dev/null +++ b/Resources/Prototypes/ADT/Traits/disabilities.yml @@ -0,0 +1,18 @@ +- type: trait + id: ADTHemophilia + name: trait-hemophilia-name + description: trait-hemophilia-desc + category: Disabilities + components: + - type: Hemophilia + modifier: 0.01 + +# Simple Station + +- type: trait + id: ColorBlindnessMonochrome + name: trait-monochromacy-name + description: trait-monochromacy-description + category: Disabilities + components: + - type: Monochromacy diff --git a/Resources/Prototypes/ADT/Traits/fill.txt b/Resources/Prototypes/ADT/Traits/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Traits/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Traits/speech.yml b/Resources/Prototypes/ADT/Traits/speech.yml index 28d63e224f3..ec03739e0d4 100644 --- a/Resources/Prototypes/ADT/Traits/speech.yml +++ b/Resources/Prototypes/ADT/Traits/speech.yml @@ -15,3 +15,4 @@ cost: 1 components: - type: DeutschAccent + diff --git a/Resources/Prototypes/ADT/Voice/fill.txt b/Resources/Prototypes/ADT/Voice/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Voice/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml b/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml index c91dd6faf33..3b0bce180b4 100644 --- a/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml @@ -66,6 +66,78 @@ Whistle: collection: Whistles +- type: emoteSounds + id: MaleMoth + params: + variation: 0.125 + sounds: + Buzz: + collection: MothBuzz + Scream: + collection: MothScream + Laugh: + collection: MothLaugh + Chitter: + collection: MothChitter + Squeak: + collection: MothSqueak + Weh: + collection: Weh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + MonkeyScreeches: + collection: MonkeyScreeches + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + +- type: emoteSounds + id: FemaleMoth + params: + variation: 0.125 + sounds: + Buzz: + collection: MothBuzz + Scream: + collection: MothScream + Laugh: + collection: MothLaugh + Chitter: + collection: MothChitter + Squeak: + collection: MothSqueak + Weh: + collection: Weh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + MonkeyScreeches: + collection: MonkeyScreeches + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + - type: emoteSounds id: ADTMaleTajaran params: @@ -105,11 +177,11 @@ collection: MaleCry Whistle: collection: Whistles - # ADT-Apathy Sounds. + # ADT-Apathy Sounds. Scream-apathy: collection: TajaranMaleScreams Laugh-apathy: - collection: MaleLaugh + collection: MaleLaugh Sigh-apathy: collection: MaleSigh Crying-apathy: @@ -154,13 +226,311 @@ collection: FemaleCry Whistle: collection: Whistles - # ADT-Apathy Sounds. + + # ADT-Apathy Sounds. Scream-apathy: collection: TajaranFemaleScreams Laugh-apathy: - collection: FemaleLaugh + collection: FemaleLaugh + Sigh-apathy: + collection: FemaleSigh + Crying-apathy: + collection: FemaleCry + +- type: emoteSounds + id: UnisexNovakid + params: + variation: 0.125 + sounds: + Scream: + collection: NovakidScreams + Laugh: + collection: NovakidLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + CatMeow: + collection: CatMeows + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + +- type: emoteSounds + id: MaleNovakid + params: + variation: 0.125 + sounds: + Scream: + collection: NovakidScreams + Laugh: + collection: NovakidLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + CatMeow: + collection: CatMeows + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + # ADT-Apathy Sounds. + Scream-apathy: + collection: NovakidScreams + Laugh-apathy: + collection: NovakidLaugh + Sigh-apathy: + collection: MaleSigh + Crying-apathy: + collection: MaleCry + +- type: emoteSounds + id: FemaleNovakid + params: + variation: 0.125 + sounds: + Scream: + collection: NovakidScreams + Laugh: + collection: NovakidLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + CatMeow: + collection: CatMeows + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: FemaleYawn + Snore: + collection: Snores + Honk: + collection: CluwneHorn + Sigh: + collection: FemaleSigh + Crying: + collection: FemaleCry + Whistle: + collection: Whistles + # ADT-Apathy Sounds. + Scream-apathy: + collection: NovakidScreams + Laugh-apathy: + collection: NovakidLaugh Sigh-apathy: collection: FemaleSigh Crying-apathy: collection: FemaleCry - \ No newline at end of file + +- type: emoteSounds + id: UnisexIPC + sounds: + RobotBeep: + collection: RobotBeeps + SynthYes: + path: /Audio/ADT/IPC/synth_yes.ogg + SynthNo: + path: /Audio/ADT/IPC/synth_no.ogg + Ping: + path: /Audio/ADT/IPC/ping.ogg + Buzz: + path: /Audio/ADT/IPC/buzz-sigh.ogg + SighBuzz: + path: /Audio/ADT/IPC/buzz-two.ogg + Sigh: + path: /Audio/ADT/IPC/buzz-two.ogg + Scream: + path: /Audio/ADT/IPC/synth_scream.ogg + params: + variation: 0.125 + +- type: emoteSounds + id: MaleUrsus + params: + variation: 0.125 + sounds: + Scream: + collection: UrsusScreams + Laugh: + collection: UrsusLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + CatMeow: + collection: CatMeows + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: UrsusCry + Whistle: + collection: Whistles + +- type: emoteSounds + id: FemaleUrsus + params: + variation: 0.125 + sounds: + Scream: + collection: UrsusScreams + Laugh: + collection: UrsusLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + CatMeow: + collection: CatMeows + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: FemaleYawn + Snore: + collection: Snores + Honk: + collection: CluwneHorn + Sigh: + collection: FemaleSigh + Crying: + collection: UrsusCry + Whistle: + collection: Whistles + +- type: emoteSounds + id: NesMaleVulpa + params: + variation: 0.125 + sounds: + Scream: + collection: NesMaleVulpaScreams + Laugh: + collection: MaleLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + CatMeow: + collection: CatMeows + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Howl: + collection: VulpHowls + Bark: + collection: VulpBarks + Growl: + collection: VulpGrowls + Whine: + collection: VulpWhines + Whistle: + collection: Whistles + Heckaet: + collection: VulpHeckaetSound + +- type: emoteSounds + id: NesFemaleVulpa + params: + variation: 0.125 + sounds: + Scream: + collection: NesFemaleVulpaScreams + Laugh: + collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + CatMeow: + collection: CatMeows + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: FemaleYawn + Snore: + collection: Snores + Honk: + collection: CluwneHorn + Sigh: + collection: FemaleSigh + Crying: + collection: FemaleCry + Howl: + collection: VulpHowls + Bark: + collection: VulpBarks + Growl: + collection: VulpGrowls + Whine: + collection: VulpWhines + Whistle: + collection: Whistles + Heckaet: + collection: VulpHeckaetSound diff --git a/Resources/Prototypes/ADT/Voice/speech_emotes.yml b/Resources/Prototypes/ADT/Voice/speech_emotes.yml index 6209c09453a..b75b97b3dca 100644 --- a/Resources/Prototypes/ADT/Voice/speech_emotes.yml +++ b/Resources/Prototypes/ADT/Voice/speech_emotes.yml @@ -12,7 +12,7 @@ id: Laugh-apathy name: chat-emote-name-laugh-apathy category: Vocal - chatMessages: [выдавливает из себя смех] + chatMessages: [выдавливает из себя смех] chatTriggers: - выдавливает из себя смех @@ -20,7 +20,7 @@ id: Scream-apathy name: chat-emote-name-scream-apathy category: Vocal - chatMessages: [наигранно кричит!] + chatMessages: [наигранно кричит!] chatTriggers: - наигранно кричит! @@ -28,7 +28,7 @@ id: Sigh-apathy name: chat-emote-name-sigh-apathy category: Vocal - chatMessages: [театрально вздыхает] + chatMessages: [театрально вздыхает] chatTriggers: - театрально вздыхает @@ -36,7 +36,7 @@ id: Crying-apathy name: chat-emote-name-crying-apathy category: Vocal - chatMessages: [фальшиво плачет] + chatMessages: [фальшиво плачет] chatTriggers: - фальшиво плачет @@ -166,4 +166,46 @@ - гав! - рявкает - рявкает. - - рявкает! \ No newline at end of file + - рявкает! + +# IPC +- type: emote + id: SynthYes + name: chat-emote-name-synth-yes + category: Vocal + chatMessages: [утвердительно пищит] + chatTriggers: + - утвердительно пищит + - утвердительно пищит. + - соглашается + - соглашается. + - согласен + - согласен. + - подтверждает + - подтверждает. + +- type: emote + id: SynthNo + name: chat-emote-name-synth-no + category: Vocal + chatMessages: [отрицательно пищит] + chatTriggers: + - отрицательно пищит + - отрицательно пищит. + - отрицает + - отрицает. + - не соглашается + - не соглашается. + - не согласен + - не согласен. + +- type: emote + id: SighBuzz + name: chat-emote-name-sigh-buzz + category: Vocal + chatMessages: [раздражённо жужжит] + chatTriggers: + - раздражённо жужжит + - раздражённо жужжит. + - раздраженно жужжит + - раздраженно жужжит. diff --git a/Resources/Prototypes/ADT/Voice/speech_sounds.yml b/Resources/Prototypes/ADT/Voice/speech_sounds.yml index 224f49ef3a3..bf5f7db178c 100644 --- a/Resources/Prototypes/ADT/Voice/speech_sounds.yml +++ b/Resources/Prototypes/ADT/Voice/speech_sounds.yml @@ -6,3 +6,12 @@ path: /Audio/ADT/Drask/drasktalk.ogg exclaimSound: path: /Audio/ADT/Drask/drasktalk.ogg + +- type: speechSounds + id: Vulpa + saySound: + path: /Audio/ADT/Voice/Vulpkanin_Talk/vulp.ogg + askSound: + path: /Audio/ADT/Voice/Vulpkanin_Talk/vulp_ask.ogg + exclaimSound: + path: /Audio/ADT/Voice/Vulpkanin_Talk/vulp_exclaim.ogg \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Wires/layouts.yml b/Resources/Prototypes/ADT/Wires/layouts.yml new file mode 100644 index 00000000000..02d3a19e6e6 --- /dev/null +++ b/Resources/Prototypes/ADT/Wires/layouts.yml @@ -0,0 +1,4 @@ +# Simple Station + +- type: wireLayout + id: IPC diff --git a/Resources/Prototypes/ADT/tags.yml b/Resources/Prototypes/ADT/tags.yml new file mode 100644 index 00000000000..c2f4fe3da9d --- /dev/null +++ b/Resources/Prototypes/ADT/tags.yml @@ -0,0 +1,2 @@ +- type: Tag + id: ADTMothFriendlyFood \ No newline at end of file diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index b7543286f76..5f1128039c7 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -553,6 +553,11 @@ # chatsan-word-47: chatsan-replacement-47 # chatsan-word-48: chatsan-replacement-48 # chatsan-word-49: chatsan-replacement-49 +# chatsan-word-50: chatsan-replacement-50 +# chatsan-word-51: chatsan-replacement-51 +# chatsan-word-52: chatsan-replacement-52 +# chatsan-word-53: chatsan-replacement-53 +# chatsan-word-54: chatsan-replacement-54 corvax-chatsan-word-1: corvax-chatsan-replacement-1 corvax-chatsan-word-2: corvax-chatsan-replacement-2 corvax-chatsan-word-3: corvax-chatsan-replacement-3 diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 07d1a622ada..af1333e14c5 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -166,6 +166,8 @@ name: Morph into Geras description: Morphs you into a Geras - a miniature version of you which allows you to move fast, at the cost of your inventory. components: + - type: ConfirmableAction + popup: gera-transformation-popup - type: InstantAction itemIconStyle: BigAction useDelay: 10 # prevent spam diff --git a/Resources/Prototypes/Atmospherics/gases.yml b/Resources/Prototypes/Atmospherics/gases.yml index 4a72f655d83..5c54b5a0153 100644 --- a/Resources/Prototypes/Atmospherics/gases.yml +++ b/Resources/Prototypes/Atmospherics/gases.yml @@ -84,7 +84,7 @@ specificHeat: 40 heatCapacityRatio: 1.3 molarMass: 44 - color: 2887E8 + color: 8F00FF reagent: NitrousOxide pricePerMole: 1 diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index 2f50821df35..8384e006df7 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity id: BaseAnimalOrganUnGibbable parent: BaseItem abstract: true @@ -34,7 +34,7 @@ id: OrganAnimalLungs parent: BaseAnimalOrgan name: lungs - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -65,7 +65,7 @@ id: OrganAnimalStomach parent: BaseAnimalOrgan name: stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: stomach @@ -91,7 +91,7 @@ id: OrganMouseStomach parent: OrganAnimalStomach name: stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: @@ -102,7 +102,7 @@ id: OrganAnimalLiver parent: BaseAnimalOrgan name: liver - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: liver @@ -118,7 +118,7 @@ id: OrganAnimalHeart parent: BaseAnimalOrgan name: heart - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: heart-on @@ -135,7 +135,7 @@ id: OrganAnimalKidneys parent: BaseAnimalOrgan name: kidneys - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml index 8a1afc37bb1..e360f362d82 100644 --- a/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml +++ b/Resources/Prototypes/Body/Organs/Animal/bloodsucker.yml @@ -1,8 +1,8 @@ -- type: entity +- type: entity id: OrganBloodsuckerStomach parent: OrganAnimalStomach name: stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Metabolizer metabolizerTypes: [ Bloodsucker ] @@ -11,7 +11,7 @@ id: OrganBloodsuckerLiver parent: OrganAnimalLiver name: liver - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Metabolizer metabolizerTypes: [ Bloodsucker ] @@ -20,7 +20,7 @@ id: OrganBloodsuckerHeart parent: OrganAnimalHeart name: heart - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Metabolizer metabolizerTypes: [ Bloodsucker ] diff --git a/Resources/Prototypes/Body/Organs/Animal/ruminant.yml b/Resources/Prototypes/Body/Organs/Animal/ruminant.yml index 3c3062ddec0..3b00e1a2237 100644 --- a/Resources/Prototypes/Body/Organs/Animal/ruminant.yml +++ b/Resources/Prototypes/Body/Organs/Animal/ruminant.yml @@ -1,8 +1,8 @@ -- type: entity +- type: entity id: OrganAnimalRuminantStomach parent: OrganAnimalStomach name: ruminant stomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: diff --git a/Resources/Prototypes/Body/Organs/arachnid.yml b/Resources/Prototypes/Body/Organs/arachnid.yml index c1e199e1121..29ca393d137 100644 --- a/Resources/Prototypes/Body/Organs/arachnid.yml +++ b/Resources/Prototypes/Body/Organs/arachnid.yml @@ -105,7 +105,7 @@ parent: BaseHumanOrgan name: liver description: "Pairing suggestion: chianti and fava beans." - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: liver @@ -122,7 +122,7 @@ parent: BaseHumanOrgan name: kidneys description: "Filters toxins from the bloodstream." - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Body/Organs/diona.yml b/Resources/Prototypes/Body/Organs/diona.yml index 69fc630b9e4..e248355df2c 100644 --- a/Resources/Prototypes/Body/Organs/diona.yml +++ b/Resources/Prototypes/Body/Organs/diona.yml @@ -126,7 +126,7 @@ - type: entity id: OrganDionaBrainNymph parent: OrganDionaBrain - noSpawn: true + categories: [ HideSpawnMenu ] name: brain description: "The source of incredible, unending intelligence. Honk." components: @@ -138,7 +138,7 @@ - type: entity id: OrganDionaStomachNymph parent: OrganDionaStomach - noSpawn: true + categories: [ HideSpawnMenu ] name: stomach description: "Gross. This is hard to stomach." components: @@ -148,7 +148,7 @@ - type: entity id: OrganDionaLungsNymph parent: OrganDionaLungs - noSpawn: true + categories: [ HideSpawnMenu ] name: lungs description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier." components: @@ -159,7 +159,7 @@ - type: entity id: OrganDionaNymphBrain parent: MobDionaNymph - noSpawn: true + categories: [ HideSpawnMenu ] name: diona nymph suffix: Brain description: Contains the brain of a formerly fully-formed Diona. Killing this would kill the Diona forever. You monster. @@ -171,7 +171,7 @@ - type: entity id: OrganDionaNymphStomach parent: MobDionaNymphAccent - noSpawn: true + categories: [ HideSpawnMenu ] name: diona nymph suffix: Stomach description: Contains the stomach of a formerly fully-formed Diona. It doesn't taste any better for it. @@ -183,7 +183,7 @@ - type: entity id: OrganDionaNymphLungs parent: MobDionaNymphAccent - noSpawn: true + categories: [ HideSpawnMenu ] name: diona nymph suffix: Lungs description: Contains the lungs of a formerly fully-formed Diona. Breathtaking. diff --git a/Resources/Prototypes/Body/Organs/moth.yml b/Resources/Prototypes/Body/Organs/moth.yml index aef5576048d..709317386fa 100644 --- a/Resources/Prototypes/Body/Organs/moth.yml +++ b/Resources/Prototypes/Body/Organs/moth.yml @@ -1,26 +1,26 @@ -- type: entity - id: OrganMothStomach - parent: [OrganAnimalStomach, OrganHumanStomach] - noSpawn: true - components: - - type: Stomach - specialDigestible: - tags: - - ClothMade - - Paper - - type: SolutionContainerManager - solutions: - stomach: - maxVol: 50 - food: - maxVol: 5 - reagents: - - ReagentId: UncookedAnimalProteins - Quantity: 5 - - type: Metabolizer - maxReagents: 3 - metabolizerTypes: [ Moth ] - removeEmpty: true - groups: - - id: Food - - id: Drink +# - type: entity +# id: OrganMothStomach +# parent: [OrganAnimalStomach, OrganHumanStomach] +# categories: [ HideSpawnMenu ] +# components: +# - type: Stomach +# specialDigestible: +# tags: +# - ClothMade +# - Paper +# - type: SolutionContainerManager +# solutions: +# stomach: +# maxVol: 50 +# food: +# maxVol: 5 +# reagents: +# - ReagentId: UncookedAnimalProteins +# Quantity: 5 +# - type: Metabolizer +# maxReagents: 3 +# metabolizerTypes: [ Moth ] +# removeEmpty: true +# groups: +# - id: Food +# - id: Drink diff --git a/Resources/Prototypes/Body/Organs/reptilian.yml b/Resources/Prototypes/Body/Organs/reptilian.yml index f8423582cc2..34c736aec8b 100644 --- a/Resources/Prototypes/Body/Organs/reptilian.yml +++ b/Resources/Prototypes/Body/Organs/reptilian.yml @@ -1,7 +1,7 @@ - type: entity id: OrganReptilianStomach parent: OrganAnimalStomach - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Stomach specialDigestible: diff --git a/Resources/Prototypes/Body/Parts/animal.yml b/Resources/Prototypes/Body/Parts/animal.yml index 4db026b40fb..347b052c8bc 100644 --- a/Resources/Prototypes/Body/Parts/animal.yml +++ b/Resources/Prototypes/Body/Parts/animal.yml @@ -36,7 +36,7 @@ id: HandsAnimal name: animal hands parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -50,7 +50,7 @@ id: LegsAnimal name: animal legs parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -64,7 +64,7 @@ id: FeetAnimal name: animal feet parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -77,7 +77,7 @@ id: TorsoAnimal name: animal torso parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Body/Parts/moth.yml b/Resources/Prototypes/Body/Parts/moth.yml index bb96430383a..a7fb9d0f84f 100644 --- a/Resources/Prototypes/Body/Parts/moth.yml +++ b/Resources/Prototypes/Body/Parts/moth.yml @@ -1,120 +1,120 @@ -# TODO: Add descriptions (many) -# TODO BODY: Part damage -- type: entity - id: PartMoth - parent: [BaseItem, BasePart] - name: "moth body part" - abstract: true - components: - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 3 - - ReagentId: Blood - Quantity: 10 +# # TODO: Add descriptions (many) +# # TODO BODY: Part damage +# - type: entity +# id: PartMoth +# parent: [BaseItem, BasePart] +# name: "moth body part" +# abstract: true +# components: +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 3 +# - ReagentId: Blood +# Quantity: 10 -- type: entity - id: TorsoMoth - name: "moth torso" - parent: [PartMoth, BaseTorso] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "torso_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 10 - - ReagentId: Blood - Quantity: 20 +# - type: entity +# id: TorsoMoth +# name: "moth torso" +# parent: [PartMoth, BaseTorso] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "torso_m" +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 10 +# - ReagentId: Blood +# Quantity: 20 -- type: entity - id: HeadMoth - name: "moth head" - parent: [PartMoth, BaseHead] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "head_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 5 - - ReagentId: Blood - Quantity: 10 +# - type: entity +# id: HeadMoth +# name: "moth head" +# parent: [PartMoth, BaseHead] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "head_m" +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 5 +# - ReagentId: Blood +# Quantity: 10 -- type: entity - id: LeftArmMoth - name: "left moth arm" - parent: [PartMoth, BaseLeftArm] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_arm" +# - type: entity +# id: LeftArmMoth +# name: "left moth arm" +# parent: [PartMoth, BaseLeftArm] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_arm" -- type: entity - id: RightArmMoth - name: "right moth arm" - parent: [PartMoth, BaseRightArm] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_arm" +# - type: entity +# id: RightArmMoth +# name: "right moth arm" +# parent: [PartMoth, BaseRightArm] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_arm" -- type: entity - id: LeftHandMoth - name: "left moth hand" - parent: [PartMoth, BaseLeftHand] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_hand" +# - type: entity +# id: LeftHandMoth +# name: "left moth hand" +# parent: [PartMoth, BaseLeftHand] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_hand" -- type: entity - id: RightHandMoth - name: "right moth hand" - parent: [PartMoth, BaseRightHand] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_hand" +# - type: entity +# id: RightHandMoth +# name: "right moth hand" +# parent: [PartMoth, BaseRightHand] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_hand" -- type: entity - id: LeftLegMoth - name: "left moth leg" - parent: [PartMoth, BaseLeftLeg] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_leg" +# - type: entity +# id: LeftLegMoth +# name: "left moth leg" +# parent: [PartMoth, BaseLeftLeg] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_leg" -- type: entity - id: RightLegMoth - name: "right moth leg" - parent: [PartMoth, BaseRightLeg] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_leg" +# - type: entity +# id: RightLegMoth +# name: "right moth leg" +# parent: [PartMoth, BaseRightLeg] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_leg" -- type: entity - id: LeftFootMoth - name: "left moth foot" - parent: [PartMoth, BaseLeftFoot] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_foot" +# - type: entity +# id: LeftFootMoth +# name: "left moth foot" +# parent: [PartMoth, BaseLeftFoot] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_foot" -- type: entity - id: RightFootMoth - name: "right moth foot" - parent: [PartMoth, BaseRightFoot] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_foot" +# - type: entity +# id: RightFootMoth +# name: "right moth foot" +# parent: [PartMoth, BaseRightFoot] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_foot" diff --git a/Resources/Prototypes/Body/Parts/rat.yml b/Resources/Prototypes/Body/Parts/rat.yml index 6a66eecc489..bd51e006f70 100644 --- a/Resources/Prototypes/Body/Parts/rat.yml +++ b/Resources/Prototypes/Body/Parts/rat.yml @@ -4,7 +4,7 @@ id: TorsoRat name: "animal torso" parent: PartAnimal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: BodyPart partType: Torso diff --git a/Resources/Prototypes/Body/Prototypes/a_ghost.yml b/Resources/Prototypes/Body/Prototypes/a_ghost.yml index 09784c3ef53..7d358a57622 100644 --- a/Resources/Prototypes/Body/Prototypes/a_ghost.yml +++ b/Resources/Prototypes/Body/Prototypes/a_ghost.yml @@ -1,6 +1,6 @@ - type: body id: Aghost - name: "aGhost" + name: "aghost" root: torso slots: torso: diff --git a/Resources/Prototypes/Body/Prototypes/arachnid.yml b/Resources/Prototypes/Body/Prototypes/arachnid.yml index 97af67933cb..a3caa42a6eb 100644 --- a/Resources/Prototypes/Body/Prototypes/arachnid.yml +++ b/Resources/Prototypes/Body/Prototypes/arachnid.yml @@ -1,6 +1,6 @@ - type: body id: Arachnid - name: "Arachnid" + name: "arachnid" root: torso slots: head: diff --git a/Resources/Prototypes/Body/Prototypes/moth.yml b/Resources/Prototypes/Body/Prototypes/moth.yml index 7ebeda7fefa..f231e5adbd1 100644 --- a/Resources/Prototypes/Body/Prototypes/moth.yml +++ b/Resources/Prototypes/Body/Prototypes/moth.yml @@ -1,49 +1,49 @@ -- type: body - id: Moth - name: "Moth" - root: torso - slots: - head: - part: HeadMoth - connections: - - torso - organs: - brain: OrganHumanBrain - eyes: OrganHumanEyes - torso: - part: TorsoMoth - organs: - heart: OrganAnimalHeart - lungs: OrganHumanLungs - stomach: OrganMothStomach - liver: OrganAnimalLiver - kidneys: OrganHumanKidneys - connections: - - right arm - - left arm - - right leg - - left leg - right arm: - part: RightArmMoth - connections: - - right hand - left arm: - part: LeftArmMoth - connections: - - left hand - right hand: - part: RightHandMoth - left hand: - part: LeftHandMoth - right leg: - part: RightLegMoth - connections: - - right foot - left leg: - part: LeftLegMoth - connections: - - left foot - right foot: - part: RightFootMoth - left foot: - part: LeftFootMoth +# - type: body +# id: Moth +# name: "moth" +# root: torso +# slots: +# head: +# part: HeadMoth +# connections: +# - torso +# organs: +# brain: OrganHumanBrain +# eyes: OrganHumanEyes +# torso: +# part: TorsoMoth +# organs: +# heart: OrganAnimalHeart +# lungs: OrganHumanLungs +# stomach: OrganMothStomach +# liver: OrganAnimalLiver +# kidneys: OrganHumanKidneys +# connections: +# - right arm +# - left arm +# - right leg +# - left leg +# right arm: +# part: RightArmMoth +# connections: +# - right hand +# left arm: +# part: LeftArmMoth +# connections: +# - left hand +# right hand: +# part: RightHandMoth +# left hand: +# part: LeftHandMoth +# right leg: +# part: RightLegMoth +# connections: +# - right foot +# left leg: +# part: LeftLegMoth +# connections: +# - left foot +# right foot: +# part: RightFootMoth +# left foot: +# part: LeftFootMoth diff --git a/Resources/Prototypes/Catalog/Bounties/bounties.yml b/Resources/Prototypes/Catalog/Bounties/bounties.yml index f656eb1962f..b4847731df8 100644 --- a/Resources/Prototypes/Catalog/Bounties/bounties.yml +++ b/Resources/Prototypes/Catalog/Bounties/bounties.yml @@ -502,6 +502,9 @@ - TemperatureProtection tags: - Scarf + blacklist: + components: + - ToggleableClothing - type: cargoBounty id: BountyBattery @@ -730,3 +733,13 @@ tags: - MicrowaveMachineBoard +- type: cargoBounty + id: BountyFlashes + reward: 5500 + description: bounty-description-flashes + entries: + - name: bounty-item-flash + amount: 6 + whitelist: + components: + - Flash diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml index 0f930ddfd6a..4701d50c013 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml @@ -198,3 +198,12 @@ category: cargoproduct-category-name-service group: market +- type: cargoProduct + id: ServiceCandles + icon: + sprite: Objects/Misc/candles.rsi + state: candle-big + product: CrateCandles + cost: 500 + category: cargoproduct-category-name-service + group: market diff --git a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml index 1c521269b99..05107292ae1 100644 --- a/Resources/Prototypes/Catalog/Fills/Boxes/general.yml +++ b/Resources/Prototypes/Catalog/Fills/Boxes/general.yml @@ -432,3 +432,17 @@ - id: DartYellow amount: 2 +- type: entity + name: envelope box + parent: BoxCardboard + id: BoxEnvelope + description: A box filled with envelopes. + components: + - type: Sprite + layers: + - state: box + - state: envelope + - type: StorageFill + contents: + - id: Envelope + amount: 9 \ No newline at end of file diff --git a/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml new file mode 100644 index 00000000000..4505a8cc7bf --- /dev/null +++ b/Resources/Prototypes/Catalog/Fills/Crates/permaescape.yml @@ -0,0 +1,372 @@ +- type: entity + name: Perma Escape Crate Spawner + id: CratePermaEscapeSpawner + parent: CrateEmptySpawner + components: + - type: RandomSpawner + prototypes: + # Please note any duplicates & alphabetize <3 + - CrateEngineeringMiniJetpack + - CratePermaEscapeBureaucracy + - CratePermaEscapeEVA + - CratePermaEscapeGiftsFromSyndicate + - CratePermaEscapeGun + - CratePermaEscapeLights + - CratePermaEscapeMerc + - CrateServiceCustomSmokable + - CrateTrashCartFilled + - CratePermaEscapeComs # x2 + - CratePermaEscapeComs + - CratePermaEscapeDigging # x2 + - CratePermaEscapeDigging + - CratePermaEscapeMats #x2 + - CratePermaEscapeMats + - CratePermaEscapeTowercap # x2 + - CratePermaEscapeTowercap + - ClosetMaintenanceFilledRandom # x3 + - ClosetMaintenanceFilledRandom + - ClosetMaintenanceFilledRandom + rarePrototypes: + - MobTick # These need to be killable by one dude with a shovel. + rareChance: .30 + chance: 1 + offset: 0.0 + +- type: entity + id: CratePermaEscapeDigging + parent: CrateGenericSteel + suffix: Digging + components: + - type: StorageFill + contents: + - id: Shovel + - id: Pickaxe + prob: 0.90 + - id: Pickaxe + prob: 0.40 + - id: Pickaxe + prob: 0.10 + - id: Shovel + prob: 0.50 + - id: Shovel + prob: 0.20 + - id: HydroponicsToolSpade + prob: 0.10 + - id: HydroponicsToolHatchet + prob: 0.05 + +- type: entity + id: CratePermaEscapeEVA + parent: CrateGenericSteel + suffix: EVAs + components: + - type: StorageFill + contents: + - id: ClothingHeadHelmetEVALarge + - id: ClothingOuterHardsuitEVAPrisoner + - id: ClothingHeadHelmetEVALarge + prob: 0.80 + - id: ClothingOuterHardsuitEVAPrisoner + prob: 0.80 + - id: ClothingOuterHardsuitVoidParamed + prob: 0.10 + - id: ClothingOuterRedRacoon + prob: 0.10 + - id: ClothingOuterSanta + prob: 0.10 + - id: ClothingOuterHardsuitSyndicate + prob: 0.20 + - id: EmergencyOxygenTankFilled + prob: 0.25 + - id: EmergencyOxygenTank + prob: 0.25 + - id: OxygenTankFilled + prob: 0.05 + +- type: entity + id: CratePermaEscapeGun + parent: CrateGenericSteel + suffix: Gun + components: + - type: StorageFill + contents: + - id: WeaponPistolMk58 + prob: 0.15 + orGroup: gun + - id: FoamCrossbow + prob: 0.10 + orGroup: gun + - id: WeaponRifleFoam + prob: 0.05 + orGroup: gun + - id: WeaponPistolFlintlock + prob: 0.20 + orGroup: gun + - id: WeaponShotgunBlunderbuss + prob: 0.10 + orGroup: gun + - id: WeaponShotgunBlunderbuss + prob: 0.15 + orGroup: gun + - id: WeaponRevolverPirate + prob: 0.15 + orGroup: gun + - id: WeaponProtoKineticAccelerator + prob: 0.20 + orGroup: gun + +- type: entity + id: CratePermaEscapeBureaucracy + parent: CrateGenericSteel + suffix: Writing + components: + - type: StorageFill + contents: + - id: RubberStampApproved + - id: RubberStampDenied + - id: Pen + - id: Pen + - id: Pen + - id: BoxFolderBase + orGroup: folderA + - id: BoxFolderBlack + orGroup: folderA + - id: BoxFolderBlue + orGroup: folderA + - id: BoxFolderGreen + orGroup: folderA + - id: BoxFolderGrey + orGroup: folderA + - id: BoxFolderRed + orGroup: folderA + - id: BoxFolderWhite + orGroup: folderA + - id: BoxFolderYellow + orGroup: folderA + - id: BoxFolderBase + orGroup: folderB + - id: BoxFolderBlack + orGroup: folderB + - id: BoxFolderBlue + orGroup: folderB + - id: BoxFolderGreen + orGroup: folderB + - id: BoxFolderGrey + orGroup: folderB + - id: BoxFolderRed + orGroup: folderB + - id: BoxFolderWhite + orGroup: folderB + - id: BoxFolderYellow + orGroup: folderB + - id: CrayonBox + prob: 0.50 + - id: CrayonBox + prob: 0.10 + - id: ClearPDA # change to visitor one day. + prob: 0.10 + - id: PersonalAI + +- type: entity + id: CratePermaEscapeLights + parent: CrateGenericSteel + suffix: Glowsticks + components: + - type: StorageFill + contents: + - id: GlowstickBlue + prob: 0.50 + - id: GlowstickBlue + prob: 0.20 + - id: GlowstickBlue + prob: 0.05 + - id: GlowstickBase + prob: 0.50 + - id: GlowstickBase + prob: 0.20 + - id: GlowstickBase + prob: 0.05 + - id: GlowstickPurple + prob: 0.50 + - id: GlowstickPurple + prob: 0.20 + - id: GlowstickPurple + prob: 0.05 + - id: GlowstickRed + prob: 0.50 + - id: GlowstickRed + prob: 0.20 + - id: GlowstickRed + prob: 0.05 + - id: GlowstickYellow + prob: 0.50 + - id: GlowstickYellow + prob: 0.20 + - id: GlowstickYellow + prob: 0.05 + +- type: entity + id: CratePermaEscapeMats + parent: CrateGenericSteel + suffix: Mats + components: + - type: StorageFill + contents: + - id: SheetSteel + orGroup: matA + - id: PartRodMetal + orGroup: matA + - id: SheetSteel + orGroup: matB + - id: PartRodMetal + orGroup: matB + +- type: entity + id: CratePermaEscapeGiftsFromSyndicate + parent: CrateGenericSteel + suffix: Syndi Gifts + components: + - type: StorageFill + contents: + - id: ClothingEyesGlassesOutlawGlasses + - id: ClothingHeadHatOutlawHat + - id: HappyHonkNukieSnacks + # - id: BaseUplinkRadio # too spicy I think. + # prob: 0.50 + # - id: Telecrystal + # prob: 0.80 + # - id: Telecrystal + # prob: 0.80 + # - id: Telecrystal + # prob: 0.70 + # - id: Telecrystal + # prob: 0.50 + # - id: Telecrystal + # prob: 0.20 + # - id: Telecrystal + # prob: 0.10 + # - id: Telecrystal + # prob: 0.05 + # - id: Telecrystal + # prob: 0.01 + # - id: Telecrystal5 + # prob: 0.01 + - id: CyberPen + prob: 0.10 + - id: CockroachCube + orGroup: cube + - id: AbominationCube + prob: 0.20 + orGroup: cube + - id: SpaceCarpCube + prob: 0.20 + orGroup: cube + - id: SyndicateSponge + prob: 0.20 + orGroup: cube + - id: MindShieldImplanter + prob: 0.20 + - id: ClothingHandsGlovesConducting # funny + prob: 0.30 + - id: CigPackSyndicate + prob: 0.80 + - id: StimpackMini + prob: 0.20 + - id: StimpackMini + prob: 0.10 + - id: CombatMedipen + prob: 0.05 + - id: MedkitCombatFilled + prob: 0.01 + - id: SoapSyndie + prob: 0.15 + - id: DnaScramblerImplanter + prob: 0.005 + + +- type: entity + id: CratePermaEscapeMerc + parent: CrateGenericSteel + suffix: Merc + components: + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitMercenary + - id: ClothingHeadBandMerc + prob: 0.50 + - id: ClothingHeadHatBeretMerc + prob: 0.20 + - id: ClothingHeadHelmetMerc + prob: 0.05 + - id: ClothingEyesGlassesMercenary + prob: 0.20 + - id: ClothingMaskGasMerc + prob: 0.10 + - id: ClothingHandsGlovesMercFingerless + prob: 0.20 + - id: ClothingHandsMercGlovesCombat + prob: 0.05 + - id: ClothingBackpackMerc + prob: 0.50 + - id: ClothingShoesBootsMerc + prob: 0.50 + - id: ClothingOuterVestWebMerc + prob: 0.25 + - id: ClothingBeltMercWebbing + prob: 0.05 + +- type: entity + id: CratePermaEscapeComs + parent: CrateGenericSteel + suffix: Coms + components: + - type: StorageFill + contents: + - id: ClothingHeadsetMining + orGroup: coms + - id: ClothingHeadsetMining + orGroup: coms + - id: ClothingHeadsetMining + orGroup: coms + - id: ClothingHeadsetGrey + orGroup: coms + - id: ClothingHeadsetScience + orGroup: coms + - id: ClothingHeadsetService + orGroup: coms + - id: ClothingHeadsetEngineering + orGroup: coms + - id: ClothingHeadsetMedical + orGroup: coms + - id: EncryptionKeyCargo + prob: 0.05 + - id: EncryptionKeyScience + prob: 0.05 + - id: EncryptionKeyService + prob: 0.05 + - id: EncryptionKeyMedical + prob: 0.05 + - id: EncryptionKeyEngineering + prob: 0.05 + - id: EncryptionKeySecurity + prob: 0.01 + +- type: entity + id: CratePermaEscapeTowercap + parent: CrateGenericSteel + suffix: Towercap + components: + - type: StorageFill + contents: + - id: TowercapSeeds + - id: TowercapSeeds + prob: 0.80 + - id: TowercapSeeds + prob: 0.50 + - id: TowercapSeeds + prob: 0.20 + - id: SteelcapSeeds + prob: 0.10 + - id: SteelLog + - id: HydroponicsToolHatchet + prob: 0.75 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml index 84526d46d14..7bae4ecd77d 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml @@ -26,7 +26,7 @@ - type: entity id: CrateSalvageAssortedGoodies suffix: Filled, Salvage Random - noSpawn: true # You should use SalvageMaterialCrateSpawner instead + categories: [ HideSpawnMenu ] # You should use SalvageMaterialCrateSpawner instead parent: CrateGenericSteel components: - type: StorageFill diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 3950c4f8fdd..d922056a8bf 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -128,6 +128,7 @@ - id: BoxFolderRed - id: BoxFolderYellow - id: NewtonCradle + - id: BoxEnvelope - type: entity id: CrateServiceFaxMachine @@ -333,3 +334,16 @@ prob: 0.1 - id: ShardGlassPlasma prob: 0.1 + +- type: entity + id: CrateCandles + parent: CrateGenericSteel + name: candles crate + description: Contains 4 boxes of candles, 2 large and 2 small. For atmosphere or something. + components: + - type: StorageFill + contents: + - id: BoxCandle + amount: 2 + - id: BoxCandleSmall + amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Items/misc.yml b/Resources/Prototypes/Catalog/Fills/Items/misc.yml index 816f3ba8d49..4ec546caef3 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/misc.yml @@ -1,5 +1,6 @@ - type: entity id: ClothingShoesBootsCombatFilled + suffix: Filled, Combat Knife parent: - ClothingShoesBootsCombat - ClothingShoesBootsSecFilled @@ -38,3 +39,12 @@ item: - KukriKnife +- type: entity + id: ClothingShoesBootsSyndieFilled + parent: ClothingShoesBootsCombat + suffix: Filled, Throwing Knife + components: + - type: ContainerFill + containers: + item: + - ThrowingKnife diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 062cb4942d5..b6c95f98666 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -144,7 +144,6 @@ - type: StorageFill contents: - id: ClothingOuterHardsuitEngineeringWhite - - id: ClothingMaskBreath - id: ClothingEyesGlassesMeson - id: ClothingBeltChiefEngineerFilled - id: ClothingShoesBootsMagAdv @@ -159,6 +158,12 @@ - id: AccessConfigurator - id: RCD - id: RCDAmmo + # Start-ADT Tweak + - id: OxygenTankFilled + - id: NitrogenTankFilled + - id: ClothingNeckCloakCe + - id: ADTClothingMaskGasCE + # End-ADT Tweak - type: entity id: LockerChiefEngineerFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index b49fa383bce..a5b06fca03c 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -20,16 +20,16 @@ components: - type: StorageFill contents: - - id: ClothingOuterSuitEmergency - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyOxygenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: OxygenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: ToolboxEmergencyFilled - prob: 0.4 + prob: 0.5 - id: MedkitOxygenFilled prob: 0.2 - id: WeaponFlareGun @@ -44,16 +44,16 @@ components: - type: StorageFill contents: - - id: ClothingOuterSuitEmergency - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyOxygenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: OxygenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: OxygenTank - id: ToolboxEmergencyFilled - prob: 0.4 + prob: 0.5 - id: MedkitOxygenFilled prob: 0.2 - id: WeaponFlareGun @@ -69,39 +69,62 @@ - type: StorageFill contents: - id: ClothingMaskBreath + - id: ClothingOuterSuitEmergency - id: EmergencyNitrogenTankFilled - prob: 0.80 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: NitrogenTank - id: NitrogenTankFilled - prob: 0.20 - orGroup: EmergencyTankOrRegularTank + prob: 0.5 + orGroup: NitrogenTank - type: entity id: ClosetFireFilled parent: ClosetFire suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterSuitFire - - id: ClothingHeadHelmetFire - - id: ClothingMaskGas - - id: OxygenTankFilled - - id: FireExtinguisher - prob: 0.25 + - type: StorageFill + contents: + - id: ClothingOuterSuitFire + - id: ClothingHeadHelmetFire + - id: ClothingMaskGas + - id: EmergencyOxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: OxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: CrowbarRed + - id: FireExtinguisher + prob: 0.98 + orGroup: FireExtinguisher + - id: SprayBottleWater #It's just budget cut after budget cut man + prob: 0.02 + orGroup: FireExtinguisher + - type: entity id: ClosetWallFireFilledRandom parent: ClosetWallFire suffix: Filled components: - - type: StorageFill - contents: - - id: ClothingOuterSuitFire - - id: ClothingHeadHelmetFire - - id: ClothingMaskGas - - id: OxygenTankFilled - - id: FireExtinguisher - prob: 0.25 + - type: StorageFill + contents: + - id: ClothingOuterSuitFire + - id: ClothingHeadHelmetFire + - id: ClothingMaskGas + - id: EmergencyOxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: OxygenTankFilled + prob: 0.5 + orGroup: OxygenTank + - id: CrowbarRed + - id: FireExtinguisher + prob: 0.98 + orGroup: FireExtinguisher + - id: SprayBottleWater #It's just budget cut after budget cut man + prob: 0.02 + orGroup: FireExtinguisher + - type: entity id: ClosetMaintenanceFilledRandom suffix: Filled, Random diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index cdf905be958..1fda8154246 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -138,6 +138,7 @@ - id: BookBusido # Corvax-Books - id: HoloprojectorSecurity - id: BoxEvidenceMarkers + - id: HandLabeler - type: entity id: ClosetBombFilled diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index cb0ef3246d3..8170ba792ae 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -8,6 +8,8 @@ RubberStampApproved: 1 RubberStampDenied: 1 Paper: 10 + Envelope: 10 + HandLabeler: 2 EncryptionKeyCargo: 2 EncryptionKeyEngineering: 2 EncryptionKeyMedical: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml index d028c55cabc..5dbb34afa71 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chemdrobe.yml @@ -9,6 +9,7 @@ ClothingBackpackSatchelChemistry: 2 ClothingBackpackDuffelChemistry: 2 ChemBag: 2 + HandLabeler: 3 ClothingBeltMedical: 2 ClothingHandsGlovesLatex: 2 ClothingHeadsetMedical: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml index dc66b0c996a..0c284a09626 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/lawdrobe.yml @@ -27,6 +27,7 @@ ClothingHeadHatTophat: 1 # Corvax-LawyerDrip-End LuxuryPen: 2 + HandLabeler: 2 contrabandInventory: ClothingOuterRobesJudge: 1 ClothingHeadHatPwig: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml index 7617186dd9c..821c916353c 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/magivend.yml @@ -9,6 +9,6 @@ ClothingHeadHatVioletwizard: 3 ClothingOuterWizardViolet: 3 ClothingShoesWizard: 9 - #TO DO: + #TODO: #only missing staff #and if wizarditis reagent when hacked if we want this. diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml index afbeff6b080..47d6ab683d6 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/sec.yml @@ -20,6 +20,7 @@ RiotLaserShield: 2 RiotBulletShield: 2 RadioHandheldSecurity: 5 + Bola: 5 #ADT tweak # security officers need to follow a diet regimen! contrabandInventory: FoodDonutHomer: 12 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml index 5b733f0d354..6122687e8f6 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/secdrobe.yml @@ -23,3 +23,6 @@ ClothingEyesBlindfold: 1 ClothingShoesBootsCombat: 1 ClothingShoesBootsWinterSec: 2 + ADTClothingKadet: 4 #ADT tweak + contrabandInventory: + ClothingMaskClownSecurity: 1 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 420982dcaec..5a92bc77f81 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -122,7 +122,7 @@ name: uplink-sniper-bundle-name description: uplink-sniper-bundle-desc icon: { sprite: /Textures/Objects/Weapons/Guns/Snipers/heavy_sniper.rsi, state: base } - productEntity: BriefcaseSyndieSniperBundleFilled + productEntity: BriefcaseSyndieSniperBundleFilled cost: Telecrystal: 12 categories: @@ -902,7 +902,7 @@ - type: listing id: UplinkReinforcementRadioSyndicate name: uplink-reinforcement-radio-name - description: uplink-reinforcement-radio-desc + description: uplink-reinforcement-radio-traitor-desc productEntity: ReinforcementRadioSyndicate icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-urist } cost: @@ -916,11 +916,11 @@ - NukeOpsUplink - type: listing - id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns an agent with the NukeOperative component. - name: uplink-reinforcement-radio-name - description: uplink-reinforcement-radio-desc + id: UplinkReinforcementRadioSyndicateNukeops # Version for Nukeops that spawns another nuclear operative without the uplink. + name: uplink-reinforcement-radio-nukeops-name + description: uplink-reinforcement-radio-nukeops-desc productEntity: ReinforcementRadioSyndicateNukeops - icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-urist } + icon: { sprite: Objects/Devices/communication.rsi, state: old-radio-nukeop } cost: Telecrystal: 35 categories: @@ -1004,7 +1004,7 @@ Telecrystal: 6 categories: - UplinkAllies - + - type: listing id: UplinkSyndicatePersonalAI name: uplink-syndicate-pai-name diff --git a/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml b/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml index b5679503610..cc4598e64c2 100644 --- a/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml +++ b/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml @@ -20,8 +20,8 @@ - Maintenance - Command - External - - Lawyer - - IAA + - Lawyer + - IAA # ADT Tweak special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 02223b6a9fe..b34c77efef0 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -183,12 +183,13 @@ Slash: 0.8 Heat: 1.5 Shock: 1.2 - -- type: damageModifierSet - id: Moth # Slightly worse at everything but cold - coefficients: - Cold: 0.7 - Heat: 1.3 + +## ADT Tweak - ЗАКОММЕНТИЛИ ДЛЯ ADT НИАН +# - type: damageModifierSet +# id: Moth # Slightly worse at everything but cold +# coefficients: +# Cold: 0.7 +# Heat: 1.3 - type: damageModifierSet id: Vox diff --git a/Resources/Prototypes/Datasets/Names/moth_first_female.yml b/Resources/Prototypes/Datasets/Names/moth_first_female.yml index ecdcc95475a..1183ff9ba0d 100644 --- a/Resources/Prototypes/Datasets/Names/moth_first_female.yml +++ b/Resources/Prototypes/Datasets/Names/moth_first_female.yml @@ -1,57 +1,57 @@ -- type: dataset - id: names_moth_first_female - values: - - Атропос # Acherontia atropos - - Бетулария # Biston betularia - - Дафне # Daphnis - - Дафнис - - Эурупта # Eurypteryx - - Эудрайс # Eudryas - - Ирис # Salassa iris - - Лакесис # Acherontia lachesis - - Луна # Actias luna - - Лиманция # Lymantria - - Лимантрия - - Рубикунда # Dryocampa rubicunda, "Rosy Maple" - - Роузи - - Мэппл - - Мима # Mimas - - Нефель # Nephele - - Космосома # Cosmosoma myrodora, "Scarlet-bodied wasp moth" - - Скарлет - - Стикс # Acherontia styx - - Аскалафа - - Долабрия - - Цисания - - Бруматта +# - type: dataset +# id: names_moth_first_female +# values: +# - Атропос # Acherontia atropos +# - Бетулария # Biston betularia +# - Дафне # Daphnis +# - Дафнис +# - Эурупта # Eurypteryx +# - Эудрайс # Eudryas +# - Ирис # Salassa iris +# - Лакесис # Acherontia lachesis +# - Луна # Actias luna +# - Лиманция # Lymantria +# - Лимантрия +# - Рубикунда # Dryocampa rubicunda, "Rosy Maple" +# - Роузи +# - Мэппл +# - Мима # Mimas +# - Нефель # Nephele +# - Космосома # Cosmosoma myrodora, "Scarlet-bodied wasp moth" +# - Скарлет +# - Стикс # Acherontia styx +# - Аскалафа +# - Долабрия +# - Цисания +# - Бруматта - # Other languages - - Авелиана # Galician "moth" (avelaíña) - - Фалена # Italian "winter moth" - - Менодора # Greek "moon gift" - - Моли # Romanian "moth" - - Полилла # Spanish "moth" +# # Other languages +# - Авелиана # Galician "moth" (avelaíña) +# - Фалена # Italian "winter moth" +# - Менодора # Greek "moon gift" +# - Моли # Romanian "moth" +# - Полилла # Spanish "moth" - # Myth and legend - - Атея # Greek mythological figure - - Алфея - - Аврора # Roman goddess of the dawn - - Хель # Greek mythological figure - - Селена # Greek goddess of the moon - - Никс # Greek goddess of the night +# # Myth and legend +# - Атея # Greek mythological figure +# - Алфея +# - Аврора # Roman goddess of the dawn +# - Хель # Greek mythological figure +# - Селена # Greek goddess of the moon +# - Никс # Greek goddess of the night - # Fun names - - Ангел - - Сэнди - - Либерти +# # Fun names +# - Ангел +# - Сэнди +# - Либерти - # Common names, filler - - Беатрикс - - Дейзи - - Элизабет - - Люси - - Руби - - Сара - - Сьенна - - Уиллоу - - Зои +# # Common names, filler +# - Беатрикс +# - Дейзи +# - Элизабет +# - Люси +# - Руби +# - Сара +# - Сьенна +# - Уиллоу +# - Зои diff --git a/Resources/Prototypes/Datasets/Names/moth_first_male.yml b/Resources/Prototypes/Datasets/Names/moth_first_male.yml index 82c9ac64630..7803c49ab7a 100644 --- a/Resources/Prototypes/Datasets/Names/moth_first_male.yml +++ b/Resources/Prototypes/Datasets/Names/moth_first_male.yml @@ -1,49 +1,49 @@ -- type: dataset - id: names_moth_first_male - values: - - Агриус # Agrius - - Атлас # Attacus atlas - - Аттакус # Attacus - - Цезарь # Attacus caesar - - Геркулес # Coscinocera hercules - - Раннох # Itame brunneata, "Rannoch Looper" - - Сократ # Acosmeryx socrates - - Солус # Saturniidae solus +# - type: dataset +# id: names_moth_first_male +# values: +# - Агриус # Agrius +# - Атлас # Attacus atlas +# - Аттакус # Attacus +# - Цезарь # Attacus caesar +# - Геркулес # Coscinocera hercules +# - Раннох # Itame brunneata, "Rannoch Looper" +# - Сократ # Acosmeryx socrates +# - Солус # Saturniidae solus - # Other languages - - Эш # Hebrew עש "moth" - - Азар # Persian "fire" - - Кайзер # German "emperor" descendant of the Latin caesar - - Раджас # Sanskrit "darkness" or "dust" - - Скорос # Greek "clothes moth" +# # Other languages +# - Эш # Hebrew עש "moth" +# - Азар # Persian "fire" +# - Кайзер # German "emperor" descendant of the Latin caesar +# - Раджас # Sanskrit "darkness" or "dust" +# - Скорос # Greek "clothes moth" - # Myth and legend - - Бладуд # legendary king of the Britons who crafted wings and died in his attempt at flight - - Дедал # father of Icarus - - Эребус # Greek primordial deity of darkness - - Икар # the classic - - Джатайу # Hindu figure, similar to Icarus - - Кохо # Japanese reading of 夸父(こほ) - - Куафу # Chinese giant 夸父, similar to Icarus - - Люцифер # more commonly-known fall-from-heaven figure - - Мерлин # Arthurian wizard - - Фаэтон # another Greek figure, similar to Icarus - - Волфорд # rendering of Bladud from the Welsh blaidd "wolf" + iudd "lord" +# # Myth and legend +# - Бладуд # legendary king of the Britons who crafted wings and died in his attempt at flight +# - Дедал # father of Icarus +# - Эребус # Greek primordial deity of darkness +# - Икар # the classic +# - Джатайу # Hindu figure, similar to Icarus +# - Кохо # Japanese reading of 夸父(こほ) +# - Куафу # Chinese giant 夸父, similar to Icarus +# - Люцифер # more commonly-known fall-from-heaven figure +# - Мерлин # Arthurian wizard +# - Фаэтон # another Greek figure, similar to Icarus +# - Волфорд # rendering of Bladud from the Welsh blaidd "wolf" + iudd "lord" - # Fun names - - Эйс - - Альтаир - - Дасти - - Гамбит - - Хоук - - Мотью - - Тимоти +# # Fun names +# - Эйс +# - Альтаир +# - Дасти +# - Гамбит +# - Хоук +# - Мотью +# - Тимоти - # Common names, filler - - Эшер - - Роман - - Исаак - - Самюэл - - Себастиан - - Сайлас - - Саймон +# # Common names, filler +# - Эшер +# - Роман +# - Исаак +# - Самюэл +# - Себастиан +# - Сайлас +# - Саймон diff --git a/Resources/Prototypes/Datasets/Names/moth_last.yml b/Resources/Prototypes/Datasets/Names/moth_last.yml index 4a2f9b3325f..f59eb69e8f4 100644 --- a/Resources/Prototypes/Datasets/Names/moth_last.yml +++ b/Resources/Prototypes/Datasets/Names/moth_last.yml @@ -1,44 +1,44 @@ -- type: dataset - id: names_moth_last - values: - - Одоратта # Ascalapha odorata - - Император # Saturniinae - - Сатурниина - - Плагодис # Plagodis dolabraria - - Темнора # Temnora - - Уста # Usta - - Агриппин # Thysania agrippina - - Оперофтера # Operophtera brumata - - Коциносера - - Брунеатта - - Акосмерикс - - Саттурнид - - Бистон - - Саласс - - Актияс - - Дриокамп - - Майродор - - Аккеронт +# - type: dataset +# id: names_moth_last +# values: +# - Одоратта # Ascalapha odorata +# - Император # Saturniinae +# - Сатурниина +# - Плагодис # Plagodis dolabraria +# - Темнора # Temnora +# - Уста # Usta +# - Агриппин # Thysania agrippina +# - Оперофтера # Operophtera brumata +# - Коциносера +# - Брунеатта +# - Акосмерикс +# - Саттурнид +# - Бистон +# - Саласс +# - Актияс +# - Дриокамп +# - Майродор +# - Аккеронт - # Other languages - - Эпиолос # Ancient Greek "moth" - - Молье # conceivably any Old Norse descendant of mǫlr but probably more Danish than anything. "oe" digraph for ø. - - Накфальтер # literal pseudo-translation of German Nachtfalter +# # Other languages +# - Эпиолос # Ancient Greek "moth" +# - Молье # conceivably any Old Norse descendant of mǫlr but probably more Danish than anything. "oe" digraph for ø. +# - Накфальтер # literal pseudo-translation of German Nachtfalter - # Myth and legend - - Геральд # belief of moths flying at night signalling the reception of a letter - - Леандер # Greek figure associated with Hero, and similar sounding to Oleander hawk-moth - - Мофман # split between being a myth reference and actual possible surname given the actual Goodman, Hoffman, Newman, Coleman, etc. +# # Myth and legend +# - Геральд # belief of moths flying at night signalling the reception of a letter +# - Леандер # Greek figure associated with Hero, and similar sounding to Oleander hawk-moth +# - Мофман # split between being a myth reference and actual possible surname given the actual Goodman, Hoffman, Newman, Coleman, etc. - # Fun names - - Кометрайдер - - Ивентайд - - Файрфлай - - Файрбруш - - Флеймкот - - Лайтвир - - Мунданс - - Найтвиш - - Оулбейн - - Сликтонг - - Спаркдроу +# # Fun names +# - Кометрайдер +# - Ивентайд +# - Файрфлай +# - Файрбруш +# - Флеймкот +# - Лайтвир +# - Мунданс +# - Найтвиш +# - Оулбейн +# - Сликтонг +# - Спаркдроу diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml index 7ad21ba93aa..d5200747445 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/glasses.yml @@ -63,6 +63,8 @@ - type: Clothing sprite: Clothing/Eyes/Glasses/meson.rsi - type: EyeProtection + - type: IdentityBlocker + coverage: EYES - type: entity parent: ClothingEyesBase @@ -194,6 +196,8 @@ - type: FlashImmunity - type: EyeProtection protectionTime: 5 + - type: IdentityBlocker + coverage: EYES #Make a scanner category when these actually function and we get the trayson - type: entity @@ -211,6 +215,8 @@ coefficients: Heat: 0.95 - type: GroupExamine + - type: IdentityBlocker + coverage: EYES - type: entity parent: ClothingEyesBase @@ -223,6 +229,8 @@ - type: Clothing sprite: Clothing/Eyes/Glasses/science.rsi - type: SolutionScanner + - type: IdentityBlocker + coverage: EYES - type: entity parent: ClothingEyesBase diff --git a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml index 0c7fc5b2a1f..b22320a82f8 100644 --- a/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/Entities/Clothing/Eyes/hud.yml @@ -1,7 +1,7 @@ - type: entity id: ShowSecurityIcons abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ShowJobIcons - type: ShowMindShieldIcons @@ -10,7 +10,7 @@ - type: entity id: ShowMedicalIcons abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ShowHealthBars damageContainers: diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 462032547b2..66356afacfc 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -59,7 +59,7 @@ parent: ClothingHeadBase id: ClothingHeadLightBase name: base helmet with light - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -151,7 +151,7 @@ # No parent since we aren't actually an item. id: ClothingHeadHardsuitBase name: base hardsuit helmet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: BreathMask - type: Sprite @@ -195,7 +195,7 @@ parent: ClothingHeadHardsuitBase id: ClothingHeadHardsuitWithLightBase name: base hardsuit helmet with light - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -247,7 +247,7 @@ id: ClothingHeadHatHoodWinterBase name: base winter coat hood description: A hood, made to keep your head warm. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: icon diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 9b4e1db6550..68a6b913bc3 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -138,7 +138,7 @@ - type: entity parent: ClothingHeadHardsuitBase id: ClothingHeadHelmetHardsuitMaxim - noSpawn: true + categories: [ HideSpawnMenu ] name: salvager maxim helmet description: A predication of decay washes over your mind. components: diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 8eeb82cbf4f..f81ddfc8d02 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -28,7 +28,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatBeretFrench - name: French beret + name: french beret description: A French beret, "vive la France". components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index 4dec89e75ad..180b738e407 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -89,7 +89,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodChaplainHood - noSpawn: true + categories: [ HideSpawnMenu ] name: chaplain's hood description: Maximum piety in this star system. components: @@ -155,6 +155,7 @@ coefficients: Heat: 0.95 Radiation: 0.65 + - type: IdentityBlocker - type: BreathMask - type: HideLayerClothing slots: @@ -183,7 +184,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodIan - noSpawn: true + categories: [ HideSpawnMenu ] name: ian hood description: A hood to complete the 'Good boy' look. components: @@ -198,7 +199,7 @@ - type: entity parent: ClothingHeadBase id: ClothingHeadHatHoodCarp - noSpawn: true + categories: [ HideSpawnMenu ] name: carp hood description: A gnarly hood adorned with plastic space carp teeth. components: @@ -213,7 +214,7 @@ - type: entity parent: ClothingHeadHatHoodCarp id: ClothingHeadHelmetHardsuitCarp - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PressureProtection highPressureMultiplier: 0.6 @@ -251,7 +252,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterDefault - noSpawn: true + categories: [ HideSpawnMenu ] name: default winter coat hood components: - type: Sprite @@ -262,7 +263,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterBartender - noSpawn: true + categories: [ HideSpawnMenu ] name: bartender winter coat hood components: - type: Sprite @@ -273,7 +274,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCaptain - noSpawn: true + categories: [ HideSpawnMenu ] name: captain's winter coat hood description: An expensive hood, to keep the captain's head warm. components: @@ -285,7 +286,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCargo - noSpawn: true + categories: [ HideSpawnMenu ] name: cargo winter coat hood components: - type: Sprite @@ -296,7 +297,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCE - noSpawn: true + categories: [ HideSpawnMenu ] name: chief engineer's winter coat hood components: - type: Sprite @@ -307,7 +308,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCentcom - noSpawn: true + categories: [ HideSpawnMenu ] name: Centcom winter coat hood description: A hood for keeping the central comander's head warm. components: @@ -319,7 +320,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterChem - noSpawn: true + categories: [ HideSpawnMenu ] name: chemist winter coat hood components: - type: Sprite @@ -330,7 +331,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterCMO - noSpawn: true + categories: [ HideSpawnMenu ] name: chief medical officer's winter coat hood components: - type: Sprite @@ -341,7 +342,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterEngineer - noSpawn: true + categories: [ HideSpawnMenu ] name: engineer winter coat hood components: - type: Sprite @@ -352,7 +353,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterHOP - noSpawn: true + categories: [ HideSpawnMenu ] name: head of personel's winter coat hood components: - type: Sprite @@ -363,7 +364,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterHOS - noSpawn: true + categories: [ HideSpawnMenu ] name: head of security's winter coat hood components: - type: Sprite @@ -374,7 +375,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterHydro - noSpawn: true + categories: [ HideSpawnMenu ] name: hydroponics coat hood components: - type: Sprite @@ -385,7 +386,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterJani - noSpawn: true + categories: [ HideSpawnMenu ] name: janitor coat hood components: - type: Sprite @@ -396,7 +397,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterMed - noSpawn: true + categories: [ HideSpawnMenu ] name: medic coat hood components: - type: Sprite @@ -407,7 +408,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterMime - noSpawn: true + categories: [ HideSpawnMenu ] name: mime coat hood components: - type: Sprite @@ -418,7 +419,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterMiner - noSpawn: true + categories: [ HideSpawnMenu ] name: miner coat hood components: - type: Sprite @@ -429,7 +430,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterPara - noSpawn: true + categories: [ HideSpawnMenu ] name: paramedic coat hood components: - type: Sprite @@ -440,7 +441,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterQM - noSpawn: true + categories: [ HideSpawnMenu ] name: quartermaster's coat hood components: - type: Sprite @@ -451,7 +452,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterRD - noSpawn: true + categories: [ HideSpawnMenu ] name: research director's coat hood components: - type: Sprite @@ -462,7 +463,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterRobo - noSpawn: true + categories: [ HideSpawnMenu ] name: robotics coat hood components: - type: Sprite @@ -473,7 +474,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterSci - noSpawn: true + categories: [ HideSpawnMenu ] name: scientist coat hood components: - type: Sprite @@ -484,7 +485,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterSec - noSpawn: true + categories: [ HideSpawnMenu ] name: security coat hood components: - type: Sprite @@ -495,7 +496,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterSyndie - noSpawn: true + categories: [ HideSpawnMenu ] name: syndicate coat hood components: - type: Sprite @@ -506,7 +507,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterWarden - noSpawn: true + categories: [ HideSpawnMenu ] name: warden's coat hood components: - type: Sprite @@ -517,7 +518,7 @@ - type: entity parent: ClothingHeadHatHoodWinterBase id: ClothingHeadHatHoodWinterWeb - noSpawn: true + categories: [ HideSpawnMenu ] name: web coat hood components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index c32f485f9ca..651f80a3a9e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -205,7 +205,7 @@ accent: OwOAccent - type: entity - noSpawn: true + categories: [ Actions, HideSpawnMenu ] id: ActionBecomeValid name: Become Valid description: "*notices your killsign* owo whats this" diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 1f2ed875a60..b3a76c5855a 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -230,6 +230,24 @@ graph: BananaClownMask node: mask +- type: entity + parent: ClothingMaskClown + id: ClothingMaskClownSecurity + name: security clown wig and mask + description: A debatably oxymoronic but protective mask and wig. + components: + - type: Sprite + sprite: Clothing/Mask/clown_security.rsi + - type: Clothing + sprite: Clothing/Mask/clown_security.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.95 + - type: entity parent: ClothingMaskBase id: ClothingMaskJoy diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index bacdd0046f8..1d5fbb01191 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -113,7 +113,7 @@ modifiers: coefficients: Heat: 0.90 - Radiation: 0.001 + Radiation: 0.01 - type: Clothing sprite: Clothing/OuterClothing/Suits/rad.rsi - type: GroupExamine diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml index 207532c5ddc..9b943de36a1 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/wintercoats.yml @@ -38,7 +38,7 @@ parent: ClothingOuterWinterCoat id: ClothingOuterWinterCoatToggleable name: winter coat with hood - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: ToggleableClothing clothingPrototype: ClothingHeadHatHoodWinterDefault diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml index 19fa86a6312..2d3c6636128 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/magboots.yml @@ -83,7 +83,7 @@ parent: [ClothingShoesBootsMag, BaseJetpack] id: ClothingShoesBootsMagSyndie name: blood-red magboots - description: Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. + description: Reverse-engineered magnetic boots that have a heavy magnetic pull and integrated thrusters. It can hold 0.75 L of gas. components: - type: Sprite sprite: Clothing/Shoes/Boots/magboots-syndicate.rsi diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index e9980b2eb88..d0105a365e6 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -210,10 +210,10 @@ sprite: Clothing/Uniforms/Jumpsuit/clown.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/clown.rsi - femaleMask: UniformTop - type: Tag tags: - ClownSuit + - WhitelistChameleon - type: entity parent: ClothingUniformJumpsuitClown @@ -224,7 +224,6 @@ sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/clown_banana.rsi - femaleMask: UniformTop - type: Construction graph: BananaClownJumpsuit node: jumpsuit diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml index e113f0ffc76..7d4dfc59905 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/random_suit.yml @@ -19,8 +19,6 @@ - state: mask_null map: [ "overlay" ] - type: Clothing - femaleMask: UniformTop - maleMask: UniformTop sprite: Clothing/Uniforms/procedural.rsi clothingVisuals: jumpsuit: diff --git a/Resources/Prototypes/Entities/Debugging/clicktest.yml b/Resources/Prototypes/Entities/Debugging/clicktest.yml index 4e9caaa14d8..7eb0a063309 100644 --- a/Resources/Prototypes/Entities/Debugging/clicktest.yml +++ b/Resources/Prototypes/Entities/Debugging/clicktest.yml @@ -1,11 +1,11 @@ -# Entities specifically for testing click detection with ClickableComponent. +# Entities specifically for testing click detection with ClickableComponent. # # Each entity has a bounding box AND texture equivalent. # Note that bounding box versions still have dots on the outside or center to make it possible to... see them. # These dots' texture detection should not interfere with the actual bounding box being tested. - type: entity - noSpawn: true + categories: [ Debug, HideSpawnMenu ] id: ClickTestBase suffix: DEBUG components: diff --git a/Resources/Prototypes/Entities/Debugging/debug_sweps.yml b/Resources/Prototypes/Entities/Debugging/debug_sweps.yml index e3289569a29..9ba7c85e1e1 100644 --- a/Resources/Prototypes/Entities/Debugging/debug_sweps.yml +++ b/Resources/Prototypes/Entities/Debugging/debug_sweps.yml @@ -60,7 +60,7 @@ id: BulletDebug name: bang, ded bullet parent: BaseBullet - noSpawn: true + categories: [ Debug, HideSpawnMenu ] suffix: DEBUG components: - type: Tag diff --git a/Resources/Prototypes/Entities/Debugging/tippy.yml b/Resources/Prototypes/Entities/Debugging/tippy.yml index 292cbed0f1b..7f149c3b5dc 100644 --- a/Resources/Prototypes/Entities/Debugging/tippy.yml +++ b/Resources/Prototypes/Entities/Debugging/tippy.yml @@ -1,6 +1,6 @@ - type: entity id: Tippy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite netsync: false diff --git a/Resources/Prototypes/Entities/Effects/ambient_sounds.yml b/Resources/Prototypes/Entities/Effects/ambient_sounds.yml index f686779b3ee..81f7bbfc8a3 100644 --- a/Resources/Prototypes/Entities/Effects/ambient_sounds.yml +++ b/Resources/Prototypes/Entities/Effects/ambient_sounds.yml @@ -1,6 +1,6 @@ - type: entity id: AmbientSoundSourceFlies - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AmbientSound volume: -5 diff --git a/Resources/Prototypes/Entities/Effects/bluespace_flash.yml b/Resources/Prototypes/Entities/Effects/bluespace_flash.yml index 3421f0d9a61..42cdfbd297e 100644 --- a/Resources/Prototypes/Entities/Effects/bluespace_flash.yml +++ b/Resources/Prototypes/Entities/Effects/bluespace_flash.yml @@ -1,6 +1,6 @@ - type: entity id: EffectFlashBluespace - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight radius: 10.5 diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index ee300e9aeaf..28e5a239ef3 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -36,7 +36,7 @@ parent: BaseFoam id: Smoke name: smoke - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Occluder - type: Sprite @@ -52,7 +52,7 @@ parent: BaseFoam id: Foam name: foam - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite color: "#ffffffcc" @@ -70,7 +70,6 @@ state: foam-west - type: SmoothEdge - type: IconSmooth - key: walls mode: NoSprite - type: FoamVisuals animationTime: 0.6 @@ -84,7 +83,7 @@ - type: entity id: MetalFoam name: metal foam - noSpawn: true + categories: [ HideSpawnMenu ] parent: Foam components: - type: Sprite @@ -110,7 +109,7 @@ - type: entity id: IronMetalFoam name: iron metal foam - noSpawn: true + categories: [ HideSpawnMenu ] parent: MetalFoam components: - type: SpawnOnDespawn @@ -119,7 +118,7 @@ - type: entity id: AluminiumMetalFoam name: aluminium metal foam - noSpawn: true + categories: [ HideSpawnMenu ] parent: MetalFoam components: - type: SpawnOnDespawn diff --git a/Resources/Prototypes/Entities/Effects/emp_effects.yml b/Resources/Prototypes/Entities/Effects/emp_effects.yml index 890dd24d430..d1096b85f5e 100644 --- a/Resources/Prototypes/Entities/Effects/emp_effects.yml +++ b/Resources/Prototypes/Entities/Effects/emp_effects.yml @@ -1,6 +1,6 @@ - type: entity id: EffectEmpPulse - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.8 @@ -23,7 +23,7 @@ - type: entity id: EffectEmpDisabled - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.4 diff --git a/Resources/Prototypes/Entities/Effects/exclamation.yml b/Resources/Prototypes/Entities/Effects/exclamation.yml index cfe1cbc7f22..d1f3e3ad063 100644 --- a/Resources/Prototypes/Entities/Effects/exclamation.yml +++ b/Resources/Prototypes/Entities/Effects/exclamation.yml @@ -1,7 +1,7 @@ - type: entity id: Exclamation name: exclamation - noSpawn: true + categories: [ HideSpawnMenu ] save: false components: - type: Transform @@ -22,7 +22,7 @@ - type: entity id: WhistleExclamation name: exclamation - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Structures/Storage/closet.rsi diff --git a/Resources/Prototypes/Entities/Effects/explosion_light.yml b/Resources/Prototypes/Entities/Effects/explosion_light.yml index b4b980dd1a5..d5e7452a795 100644 --- a/Resources/Prototypes/Entities/Effects/explosion_light.yml +++ b/Resources/Prototypes/Entities/Effects/explosion_light.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: ExplosionLight name: explosion light components: diff --git a/Resources/Prototypes/Entities/Effects/hearts.yml b/Resources/Prototypes/Entities/Effects/hearts.yml index 042fdb5e8ab..18f72c95d4a 100644 --- a/Resources/Prototypes/Entities/Effects/hearts.yml +++ b/Resources/Prototypes/Entities/Effects/hearts.yml @@ -1,6 +1,6 @@ - type: entity id: EffectHearts - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.85 diff --git a/Resources/Prototypes/Entities/Effects/lightning.yml b/Resources/Prototypes/Entities/Effects/lightning.yml index 7afd1c07a0c..f85f28d3b80 100644 --- a/Resources/Prototypes/Entities/Effects/lightning.yml +++ b/Resources/Prototypes/Entities/Effects/lightning.yml @@ -33,7 +33,7 @@ name: lightning id: Lightning parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Lightning canArc: true @@ -42,7 +42,7 @@ name: spooky lightning id: LightningRevenant parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -66,7 +66,7 @@ name: charged lightning id: ChargedLightning parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -85,7 +85,7 @@ name: lightning id: Spark parent: BaseLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -112,7 +112,7 @@ name: supercharged lightning id: SuperchargedLightning parent: ChargedLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi @@ -138,7 +138,7 @@ name: hypercharged lightning id: HyperchargedLightning parent: ChargedLightning - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: /Textures/Effects/lightning.rsi diff --git a/Resources/Prototypes/Entities/Effects/mobspawn.yml b/Resources/Prototypes/Entities/Effects/mobspawn.yml index 2fad68d7f2c..c4396a775da 100644 --- a/Resources/Prototypes/Entities/Effects/mobspawn.yml +++ b/Resources/Prototypes/Entities/Effects/mobspawn.yml @@ -1,7 +1,7 @@ -- type: entity +- type: entity id: MobSpawnCrabQuartz name: mobspawner quartzcrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Transform anchored: True @@ -31,7 +31,7 @@ id: MobSpawnCrabIron parent: MobSpawnCrabQuartz name: mobspawner ironcrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Sprite sprite: /Textures/Effects/mobspawn.rsi @@ -43,7 +43,7 @@ id: MobSpawnCrabSilver parent: MobSpawnCrabQuartz name: mobspawner silvercrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Sprite sprite: /Textures/Effects/mobspawn.rsi @@ -55,7 +55,7 @@ id: MobSpawnCrabUranium parent: MobSpawnCrabQuartz name: mobspawner uraniumcrab - noSpawn: True + categories: [ HideSpawnMenu, Spawner ] components: - type: Sprite sprite: /Textures/Effects/mobspawn.rsi @@ -65,7 +65,7 @@ - type: entity id: EffectAnomalyFloraBulb - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.4 diff --git a/Resources/Prototypes/Entities/Effects/radiation.yml b/Resources/Prototypes/Entities/Effects/radiation.yml index 143ffa8559a..82828582cff 100644 --- a/Resources/Prototypes/Entities/Effects/radiation.yml +++ b/Resources/Prototypes/Entities/Effects/radiation.yml @@ -1,7 +1,7 @@ - type: entity name: shimmering anomaly id: RadiationPulse - noSpawn: true + categories: [ HideSpawnMenu ] description: Looking at this anomaly makes you feel strange, like something is pushing at your eyes. components: - type: RadiationSource diff --git a/Resources/Prototypes/Entities/Effects/rcd.yml b/Resources/Prototypes/Entities/Effects/rcd.yml index 902429818e5..a663add9ca9 100644 --- a/Resources/Prototypes/Entities/Effects/rcd.yml +++ b/Resources/Prototypes/Entities/Effects/rcd.yml @@ -1,7 +1,7 @@ - type: entity id: EffectRCDBase abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform anchored: True @@ -19,7 +19,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstructPreview - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstructPreview @@ -27,7 +27,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct0 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct0 @@ -37,7 +37,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct1 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct1 @@ -47,7 +47,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct2 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct2 @@ -57,7 +57,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct3 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct3 @@ -67,7 +67,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDConstruct4 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: construct4 @@ -77,7 +77,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct2 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct2 @@ -87,7 +87,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct4 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct4 @@ -97,7 +97,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct6 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct6 @@ -107,7 +107,7 @@ - type: entity parent: EffectRCDBase id: EffectRCDDeconstruct8 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: deconstruct8 diff --git a/Resources/Prototypes/Entities/Effects/shuttle.yml b/Resources/Prototypes/Entities/Effects/shuttle.yml index d4538116ac9..72cc04cba11 100644 --- a/Resources/Prototypes/Entities/Effects/shuttle.yml +++ b/Resources/Prototypes/Entities/Effects/shuttle.yml @@ -1,6 +1,6 @@ - type: entity id: FtlVisualizerEntity - noSpawn: true + categories: [ HideSpawnMenu ] description: Visualizer for shuttles arriving. You shouldn't see this! components: - type: FtlVisualizer diff --git a/Resources/Prototypes/Entities/Effects/sparks.yml b/Resources/Prototypes/Entities/Effects/sparks.yml index d86522a9711..c12e3b0eca3 100644 --- a/Resources/Prototypes/Entities/Effects/sparks.yml +++ b/Resources/Prototypes/Entities/Effects/sparks.yml @@ -1,6 +1,6 @@ - type: entity id: EffectSparks - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.5 @@ -20,7 +20,7 @@ - type: entity id: EffectTeslaSparks - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.5 diff --git a/Resources/Prototypes/Entities/Effects/wallspawn.yml b/Resources/Prototypes/Entities/Effects/wallspawn.yml index 7213763c469..44afe80e978 100644 --- a/Resources/Prototypes/Entities/Effects/wallspawn.yml +++ b/Resources/Prototypes/Entities/Effects/wallspawn.yml @@ -1,6 +1,6 @@ - type: entity id: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: Transform anchored: True @@ -29,7 +29,7 @@ - type: entity id: WallSpawnAsteroidUraniumCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockUraniumCrab @@ -37,7 +37,7 @@ - type: entity id: WallSpawnAsteroidUranium parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockUranium @@ -45,7 +45,7 @@ - type: entity id: WallSpawnAsteroidQuartzCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockQuartzCrab @@ -53,7 +53,7 @@ - type: entity id: WallSpawnAsteroidQuartz parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockQuartz @@ -61,7 +61,7 @@ - type: entity id: WallSpawnAsteroidSilverCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockSilverCrab @@ -69,7 +69,7 @@ - type: entity id: WallSpawnAsteroidSilver parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockSilver @@ -77,7 +77,7 @@ - type: entity id: WallSpawnAsteroidIronCrab parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockTinCrab @@ -85,7 +85,7 @@ - type: entity id: WallSpawnAsteroidIron parent: WallSpawnAsteroid - noSpawn: True + categories: [ HideSpawnMenu ] components: - type: SpawnOnDespawn prototype: AsteroidRockTin \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Effects/weapon_arc.yml b/Resources/Prototypes/Entities/Effects/weapon_arc.yml index 25cd6e84ff2..0f3fab0e878 100644 --- a/Resources/Prototypes/Entities/Effects/weapon_arc.yml +++ b/Resources/Prototypes/Entities/Effects/weapon_arc.yml @@ -1,7 +1,7 @@ - type: entity # Just fades out with no movement animation id: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 2.0 @@ -18,7 +18,7 @@ - type: entity # Plays the state animation then disappears with no fade or swing id: WeaponArcAnimated - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Effects/arcs.rsi @@ -34,7 +34,7 @@ - type: entity id: WeaponArcThrust parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals animation: Thrust @@ -42,7 +42,7 @@ - type: entity id: WeaponArcSlash parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals animation: Slash @@ -51,7 +51,7 @@ - type: entity id: WeaponArcBite parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -63,7 +63,7 @@ - type: entity id: WeaponArcClaw parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -75,7 +75,7 @@ - type: entity id: WeaponArcDisarm parent: WeaponArcAnimated - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -87,7 +87,7 @@ - type: entity id: WeaponArcFist parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: fist @@ -95,7 +95,7 @@ - type: entity id: WeaponArcPunch parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -107,7 +107,7 @@ - type: entity id: WeaponArcKick parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false @@ -119,7 +119,7 @@ - type: entity id: WeaponArcSmash parent: WeaponArcStatic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WeaponArcVisuals fadeOut: false diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml index 5cfe78c6d5a..f325c084def 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml @@ -78,5 +78,6 @@ - FoodMeatRatdoubleKebab - FoodMeatSnakeKebab - FoodPizzaArnoldSlice + - FoodPizzaUraniumSlice - FoodTacoRat rareChance: 0.05 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml index b8cf755d0ff..573ddf03980 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/ghost_roles.yml @@ -73,7 +73,7 @@ state: narsian - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] id: SpawnPointGhostNukeOperative name: ghost role spawn point suffix: nukeops @@ -93,7 +93,7 @@ state: radiation - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner id: SpawnPointLoneNukeOperative components: @@ -109,7 +109,7 @@ state: radiation - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: SpawnPointLoneNukeOperative id: SpawnPointNukeopsCommander components: @@ -118,7 +118,7 @@ description: roles-antag-nuclear-operative-commander-objective - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: SpawnPointLoneNukeOperative id: SpawnPointNukeopsMedic components: @@ -127,7 +127,7 @@ description: roles-antag-nuclear-operative-agent-objective - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: SpawnPointLoneNukeOperative id: SpawnPointNukeopsOperative components: @@ -136,7 +136,7 @@ description: roles-antag-nuclear-operative-objective - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner id: SpawnPointGhostDragon components: @@ -151,7 +151,7 @@ state: alive - type: entity - noSpawn: true + categories: [ HideSpawnMenu, Spawner ] parent: BaseAntagSpawner id: SpawnPointGhostSpaceNinja components: diff --git a/Resources/Prototypes/Entities/Markers/Spawners/temp.yml b/Resources/Prototypes/Entities/Markers/Spawners/temp.yml new file mode 100644 index 00000000000..aa76bb5ea7a --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/temp.yml @@ -0,0 +1,11 @@ +- type: entity + id: TemporaryEntityForTimedDespawnSpawners + categories: [ HideSpawnMenu, Spawner ] + components: + - type: Transform + anchored: True + - type: Physics + bodyType: Static + canCollide: false + - type: TimedDespawn + # we can't declare the SpawnOnDespawnComponent because the entity is required on yml diff --git a/Resources/Prototypes/Entities/Markers/clientsideclone.yml b/Resources/Prototypes/Entities/Markers/clientsideclone.yml index 56875c44142..39b9ee48fdb 100644 --- a/Resources/Prototypes/Entities/Markers/clientsideclone.yml +++ b/Resources/Prototypes/Entities/Markers/clientsideclone.yml @@ -1,7 +1,7 @@ - type: entity name: clientsideclone id: clientsideclone - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite - type: AnimationPlayer diff --git a/Resources/Prototypes/Entities/Markers/construction_ghost.yml b/Resources/Prototypes/Entities/Markers/construction_ghost.yml index be9cc915d91..04a8a095023 100644 --- a/Resources/Prototypes/Entities/Markers/construction_ghost.yml +++ b/Resources/Prototypes/Entities/Markers/construction_ghost.yml @@ -1,7 +1,7 @@ - type: entity name: construction ghost id: constructionghost - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite color: '#3F38' diff --git a/Resources/Prototypes/Entities/Markers/drag_shadow.yml b/Resources/Prototypes/Entities/Markers/drag_shadow.yml index a1badb60bc5..19ffb6c36a6 100644 --- a/Resources/Prototypes/Entities/Markers/drag_shadow.yml +++ b/Resources/Prototypes/Entities/Markers/drag_shadow.yml @@ -1,7 +1,7 @@ - type: entity name: drag shadow id: dragshadow - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Markers/hover_entity.yml b/Resources/Prototypes/Entities/Markers/hover_entity.yml index 8421a9d8c9e..2e8e1edb296 100644 --- a/Resources/Prototypes/Entities/Markers/hover_entity.yml +++ b/Resources/Prototypes/Entities/Markers/hover_entity.yml @@ -1,7 +1,7 @@ - type: entity name: hover entity id: hoverentity - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml index c1d5df24633..977dff2203d 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml @@ -1,1111 +1,1111 @@ -# Antennas -- type: marking - id: MothAntennasDefault - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: default - -- type: marking - id: MothAntennasCharred - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: charred - -- type: marking - id: MothAntennasDbushy - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dbushy - -- type: marking - id: MothAntennasDcurvy - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dcurvy - -- type: marking - id: MothAntennasDfan - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dfan - -- type: marking - id: MothAntennasDpointy - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dpointy - -- type: marking - id: MothAntennasFeathery - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: feathery - -- type: marking - id: MothAntennasFirewatch - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: firewatch - -- type: marking - id: MothAntennasGray - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: gray - -- type: marking - id: MothAntennasJungle - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: jungle - -- type: marking - id: MothAntennasMoffra - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: moffra - -- type: marking - id: MothAntennasOakworm - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: oakworm - -- type: marking - id: MothAntennasPlasmafire - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: plasmafire - -- type: marking - id: MothAntennasMaple - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: maple - -- type: marking - id: MothAntennasRoyal - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: royal - -- type: marking - id: MothAntennasStriped - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: striped - -- type: marking - id: MothAntennasWhitefly - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: whitefly - -- type: marking - id: MothAntennasWitchwing - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: witchwing - -- type: marking - id: MothAntennasUnderwing - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: underwing_primary - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: underwing_secondary - -# Wings -- type: marking - id: MothWingsDefault - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: default - -- type: marking - id: MothWingsCharred - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: charred - -- type: marking - id: MothWingsDbushy - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: dbushy_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: dbushy_secondary - -- type: marking - id: MothWingsDeathhead - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: deathhead_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: deathhead_secondary - -- type: marking - id: MothWingsFan - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: fan - -- type: marking - id: MothWingsDfan - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: dfan - -- type: marking - id: MothWingsFeathery - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: feathery - -- type: marking - id: MothWingsFirewatch - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: firewatch_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: firewatch_secondary - -- type: marking - id: MothWingsGothic - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: gothic - -- type: marking - id: MothWingsJungle - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: jungle - -- type: marking - id: MothWingsLadybug - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: ladybug - -- type: marking - id: MothWingsMaple - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: maple - -- type: marking - id: MothWingsMoffra - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: moffra_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: moffra_secondary - -- type: marking - id: MothWingsOakworm - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: oakworm - -- type: marking - id: MothWingsPlasmafire - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: plasmafire_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: plasmafire_secondary - -- type: marking - id: MothWingsPointy - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: pointy - -- type: marking - id: MothWingsRoyal - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: royal_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: royal_secondary - -- type: marking - id: MothWingsStellar - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: stellar - -- type: marking - id: MothWingsStriped - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: striped - -- type: marking - id: MothWingsSwirly - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: swirly - -- type: marking - id: MothWingsWhitefly - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: whitefly - -- type: marking - id: MothWingsWitchwing - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: witchwing - -- type: marking - id: MothWingsUnderwing - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: underwing_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: underwing_secondary - -# Body markings: -# Charred -- type: marking - id: MothChestCharred - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_chest - -- type: marking - id: MothHeadCharred - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_head - -- type: marking - id: MothLLegCharred - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_l_leg - -- type: marking - id: MothRLegCharred - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_r_leg - -- type: marking - id: MothLArmCharred - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_l_arm - -- type: marking - id: MothRArmCharred - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_r_arm - -# Death's-Head -- type: marking - id: MothChestDeathhead - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_chest - -- type: marking - id: MothHeadDeathhead - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_head - -- type: marking - id: MothLLegDeathhead - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_l_leg - -- type: marking - id: MothRLegDeathhead - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_r_leg - -- type: marking - id: MothLArmDeathhead - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_l_arm - -- type: marking - id: MothRArmDeathhead - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_r_arm - -# Fan -- type: marking - id: MothChestFan - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_chest - -- type: marking - id: MothHeadFan - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_head - -- type: marking - id: MothLLegFan - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_l_leg - -- type: marking - id: MothRLegFan - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_r_leg - -- type: marking - id: MothLArmFan - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_l_arm - -- type: marking - id: MothRArmFan - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_r_arm - -# Firewatch -- type: marking - id: MothChestFirewatch - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_chest - -- type: marking - id: MothHeadFirewatch - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_head - -- type: marking - id: MothLLegFirewatch - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_l_leg - -- type: marking - id: MothRLegFirewatch - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_r_leg - -- type: marking - id: MothLArmFirewatch - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_l_arm - -- type: marking - id: MothRArmFirewatch - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_r_arm - -# Gothic -- type: marking - id: MothChestGothic - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_chest - -- type: marking - id: MothHeadGothic - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_head - -- type: marking - id: MothLLegGothic - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_l_leg - -- type: marking - id: MothRLegGothic - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_r_leg - -- type: marking - id: MothLArmGothic - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_l_arm - -- type: marking - id: MothRArmGothic - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_r_arm - -# Jungle -- type: marking - id: MothChestJungle - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_chest - -- type: marking - id: MothHeadJungle - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_head - -- type: marking - id: MothLLegJungle - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_l_leg - -- type: marking - id: MothRLegJungle - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_r_leg - -- type: marking - id: MothLArmJungle - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_l_arm - -- type: marking - id: MothRArmJungle - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_r_arm - -# Moonfly -- type: marking - id: MothChestMoonfly - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_chest - -- type: marking - id: MothHeadMoonfly - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_head - -- type: marking - id: MothLLegMoonfly - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_l_leg - -- type: marking - id: MothRLegMoonfly - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_r_leg - -- type: marking - id: MothLArmMoonfly - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_l_arm - -- type: marking - id: MothRArmMoonfly - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_r_arm - -# Oak Worm -- type: marking - id: MothChestOakworm - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_chest - -- type: marking - id: MothHeadOakworm - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_head - -- type: marking - id: MothLLegOakworm - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_l_leg - -- type: marking - id: MothRLegOakworm - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_r_leg - -- type: marking - id: MothLArmOakworm - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_l_arm - -- type: marking - id: MothRArmOakworm - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_r_arm - -# Pointy -- type: marking - id: MothChestPointy - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_chest - -- type: marking - id: MothHeadPointy - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_head - -- type: marking - id: MothLLegPointy - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_l_leg - -- type: marking - id: MothRLegPointy - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_r_leg - -- type: marking - id: MothLArmPointy - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_l_arm - -- type: marking - id: MothRArmPointy - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_r_arm - -# Ragged -- type: marking - id: MothChestRagged - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_chest - -- type: marking - id: MothHeadRagged - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_head - -- type: marking - id: MothLLegRagged - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_l_leg - -- type: marking - id: MothRLegRagged - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_r_leg - -- type: marking - id: MothLArmRagged - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_l_arm - -- type: marking - id: MothRArmRagged - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_r_arm - -# Royal -- type: marking - id: MothChestRoyal - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_chest - -- type: marking - id: MothHeadRoyal - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_head - -- type: marking - id: MothLLegRoyal - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_l_leg - -- type: marking - id: MothRLegRoyal - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_r_leg - -- type: marking - id: MothLArmRoyal - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_l_arm - -- type: marking - id: MothRArmRoyal - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_r_arm - -# White Fly -- type: marking - id: MothChestWhitefly - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_chest - -- type: marking - id: MothHeadWhitefly - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_head - -- type: marking - id: MothLLegWhitefly - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_l_leg - -- type: marking - id: MothRLegWhitefly - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_r_leg - -- type: marking - id: MothLArmWhitefly - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_l_arm - -- type: marking - id: MothRArmWhitefly - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_r_arm - -# Witch Wing -- type: marking - id: MothChestWitchwing - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_chest - -- type: marking - id: MothHeadWitchwing - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_head - -- type: marking - id: MothLLegWitchwing - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_l_leg - -- type: marking - id: MothRLegWitchwing - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_r_leg - -- type: marking - id: MothLArmWitchwing - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_l_arm - -- type: marking - id: MothRArmWitchwing - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_r_arm +# # Antennas +# - type: marking +# id: MothAntennasDefault +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: default + +# - type: marking +# id: MothAntennasCharred +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: charred + +# - type: marking +# id: MothAntennasDbushy +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dbushy + +# - type: marking +# id: MothAntennasDcurvy +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dcurvy + +# - type: marking +# id: MothAntennasDfan +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dfan + +# - type: marking +# id: MothAntennasDpointy +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dpointy + +# - type: marking +# id: MothAntennasFeathery +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: feathery + +# - type: marking +# id: MothAntennasFirewatch +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: firewatch + +# - type: marking +# id: MothAntennasGray +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: gray + +# - type: marking +# id: MothAntennasJungle +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: jungle + +# - type: marking +# id: MothAntennasMoffra +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: moffra + +# - type: marking +# id: MothAntennasOakworm +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: oakworm + +# - type: marking +# id: MothAntennasPlasmafire +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: plasmafire + +# - type: marking +# id: MothAntennasMaple +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: maple + +# - type: marking +# id: MothAntennasRoyal +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: royal + +# - type: marking +# id: MothAntennasStriped +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: striped + +# - type: marking +# id: MothAntennasWhitefly +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: whitefly + +# - type: marking +# id: MothAntennasWitchwing +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: witchwing + +# - type: marking +# id: MothAntennasUnderwing +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: underwing_primary +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: underwing_secondary + +# # Wings +# - type: marking +# id: MothWingsDefault +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: default + +# - type: marking +# id: MothWingsCharred +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: charred + +# - type: marking +# id: MothWingsDbushy +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: dbushy_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: dbushy_secondary + +# - type: marking +# id: MothWingsDeathhead +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: deathhead_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: deathhead_secondary + +# - type: marking +# id: MothWingsFan +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: fan + +# - type: marking +# id: MothWingsDfan +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: dfan + +# - type: marking +# id: MothWingsFeathery +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: feathery + +# - type: marking +# id: MothWingsFirewatch +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: firewatch_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: firewatch_secondary + +# - type: marking +# id: MothWingsGothic +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: gothic + +# - type: marking +# id: MothWingsJungle +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: jungle + +# - type: marking +# id: MothWingsLadybug +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: ladybug + +# - type: marking +# id: MothWingsMaple +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: maple + +# - type: marking +# id: MothWingsMoffra +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: moffra_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: moffra_secondary + +# - type: marking +# id: MothWingsOakworm +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: oakworm + +# - type: marking +# id: MothWingsPlasmafire +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: plasmafire_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: plasmafire_secondary + +# - type: marking +# id: MothWingsPointy +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: pointy + +# - type: marking +# id: MothWingsRoyal +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: royal_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: royal_secondary + +# - type: marking +# id: MothWingsStellar +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: stellar + +# - type: marking +# id: MothWingsStriped +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: striped + +# - type: marking +# id: MothWingsSwirly +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: swirly + +# - type: marking +# id: MothWingsWhitefly +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: whitefly + +# - type: marking +# id: MothWingsWitchwing +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: witchwing + +# - type: marking +# id: MothWingsUnderwing +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: underwing_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: underwing_secondary + +# # Body markings: +# # Charred +# - type: marking +# id: MothChestCharred +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_chest + +# - type: marking +# id: MothHeadCharred +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_head + +# - type: marking +# id: MothLLegCharred +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_l_leg + +# - type: marking +# id: MothRLegCharred +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_r_leg + +# - type: marking +# id: MothLArmCharred +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_l_arm + +# - type: marking +# id: MothRArmCharred +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_r_arm + +# # Death's-Head +# - type: marking +# id: MothChestDeathhead +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_chest + +# - type: marking +# id: MothHeadDeathhead +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_head + +# - type: marking +# id: MothLLegDeathhead +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_l_leg + +# - type: marking +# id: MothRLegDeathhead +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_r_leg + +# - type: marking +# id: MothLArmDeathhead +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_l_arm + +# - type: marking +# id: MothRArmDeathhead +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_r_arm + +# # Fan +# - type: marking +# id: MothChestFan +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_chest + +# - type: marking +# id: MothHeadFan +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_head + +# - type: marking +# id: MothLLegFan +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_l_leg + +# - type: marking +# id: MothRLegFan +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_r_leg + +# - type: marking +# id: MothLArmFan +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_l_arm + +# - type: marking +# id: MothRArmFan +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_r_arm + +# # Firewatch +# - type: marking +# id: MothChestFirewatch +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_chest + +# - type: marking +# id: MothHeadFirewatch +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_head + +# - type: marking +# id: MothLLegFirewatch +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_l_leg + +# - type: marking +# id: MothRLegFirewatch +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_r_leg + +# - type: marking +# id: MothLArmFirewatch +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_l_arm + +# - type: marking +# id: MothRArmFirewatch +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_r_arm + +# # Gothic +# - type: marking +# id: MothChestGothic +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_chest + +# - type: marking +# id: MothHeadGothic +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_head + +# - type: marking +# id: MothLLegGothic +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_l_leg + +# - type: marking +# id: MothRLegGothic +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_r_leg + +# - type: marking +# id: MothLArmGothic +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_l_arm + +# - type: marking +# id: MothRArmGothic +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_r_arm + +# # Jungle +# - type: marking +# id: MothChestJungle +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_chest + +# - type: marking +# id: MothHeadJungle +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_head + +# - type: marking +# id: MothLLegJungle +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_l_leg + +# - type: marking +# id: MothRLegJungle +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_r_leg + +# - type: marking +# id: MothLArmJungle +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_l_arm + +# - type: marking +# id: MothRArmJungle +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_r_arm + +# # Moonfly +# - type: marking +# id: MothChestMoonfly +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_chest + +# - type: marking +# id: MothHeadMoonfly +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_head + +# - type: marking +# id: MothLLegMoonfly +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_l_leg + +# - type: marking +# id: MothRLegMoonfly +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_r_leg + +# - type: marking +# id: MothLArmMoonfly +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_l_arm + +# - type: marking +# id: MothRArmMoonfly +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_r_arm + +# # Oak Worm +# - type: marking +# id: MothChestOakworm +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_chest + +# - type: marking +# id: MothHeadOakworm +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_head + +# - type: marking +# id: MothLLegOakworm +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_l_leg + +# - type: marking +# id: MothRLegOakworm +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_r_leg + +# - type: marking +# id: MothLArmOakworm +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_l_arm + +# - type: marking +# id: MothRArmOakworm +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_r_arm + +# # Pointy +# - type: marking +# id: MothChestPointy +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_chest + +# - type: marking +# id: MothHeadPointy +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_head + +# - type: marking +# id: MothLLegPointy +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_l_leg + +# - type: marking +# id: MothRLegPointy +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_r_leg + +# - type: marking +# id: MothLArmPointy +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_l_arm + +# - type: marking +# id: MothRArmPointy +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_r_arm + +# # Ragged +# - type: marking +# id: MothChestRagged +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_chest + +# - type: marking +# id: MothHeadRagged +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_head + +# - type: marking +# id: MothLLegRagged +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_l_leg + +# - type: marking +# id: MothRLegRagged +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_r_leg + +# - type: marking +# id: MothLArmRagged +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_l_arm + +# - type: marking +# id: MothRArmRagged +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_r_arm + +# # Royal +# - type: marking +# id: MothChestRoyal +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_chest + +# - type: marking +# id: MothHeadRoyal +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_head + +# - type: marking +# id: MothLLegRoyal +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_l_leg + +# - type: marking +# id: MothRLegRoyal +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_r_leg + +# - type: marking +# id: MothLArmRoyal +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_l_arm + +# - type: marking +# id: MothRArmRoyal +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_r_arm + +# # White Fly +# - type: marking +# id: MothChestWhitefly +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_chest + +# - type: marking +# id: MothHeadWhitefly +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_head + +# - type: marking +# id: MothLLegWhitefly +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_l_leg + +# - type: marking +# id: MothRLegWhitefly +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_r_leg + +# - type: marking +# id: MothLArmWhitefly +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_l_arm + +# - type: marking +# id: MothRArmWhitefly +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_r_arm + +# # Witch Wing +# - type: marking +# id: MothChestWitchwing +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_chest + +# - type: marking +# id: MothHeadWitchwing +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_head + +# - type: marking +# id: MothLLegWitchwing +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_l_leg + +# - type: marking +# id: MothRLegWitchwing +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_r_leg + +# - type: marking +# id: MothLArmWitchwing +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_l_arm + +# - type: marking +# id: MothRArmWitchwing +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_r_arm diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 0650eddb408..21eb025d850 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -99,6 +99,11 @@ doAfterDelay: 10 allowSelfRepair: false - type: BorgChassis + - type: LockingWhitelist + blacklist: + components: + - BorgChassis + - RoboticsConsole - type: WiresPanel - type: ActivatableUIRequiresPanel - type: NameIdentifier @@ -113,7 +118,9 @@ cellSlotId: cell_slot fitsInCharger: true - type: ItemToggle + activated: false # gets activated when a mind is added onUse: false # no item-borg toggling sorry + toggleLight: false - type: AccessToggle # TODO: refactor movement to just be based on toggle like speedboots but for the boots themselves # TODO: or just have sentient speedboots be fast idk @@ -130,6 +137,7 @@ - KnockedDown - SlowedDown - Flashed + - SeeingStatic # ADT IPC (shaders) - type: TypingIndicator proto: robot - type: Speech diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index e6aa87460d0..7919f753fb0 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -265,6 +265,7 @@ access: [["Medical"], ["Command"], ["Research"]] - type: Inventory templateId: borgDutch + - type: SolutionScanner - type: FootstepModifier footstepSoundCollection: collection: FootstepHoverBorg @@ -365,7 +366,7 @@ - type: entity id: BorgChassisSyndicateMedical - parent: BaseBorgChassisSyndicate + parent: [BaseBorgChassisSyndicate, ShowMedicalIcons] name: syndicate medical cyborg description: A combat medical cyborg. Has limited offensive potential, but makes more than up for it with its support capabilities. components: @@ -399,6 +400,12 @@ interactFailureString: petting-failure-syndicate-cyborg interactSuccessSound: path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: SolutionScanner + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepHoverBorg + params: + volume: -6 - type: entity id: BorgChassisSyndicateSaboteur diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index baf7d7ade0b..248c18c88bd 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -511,9 +511,11 @@ accent: zombieMoth - type: Vocal sounds: - Male: UnisexMoth - Female: UnisexMoth - Unsexed: UnisexMoth + # Start-ADT Tweak Нианы + Male: MaleMoth + Female: FemaleMoth + Unsexed: MaleMoth + # End-ADT Tweak Нианы wilhelmProbability: 0.001 - type: MobPrice price: 150 @@ -1260,6 +1262,17 @@ tags: - VimPilot - DoorBumpOpener + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + reactions: + - reagents: [ Water, SpaceCleaner ] + methods: [ Touch ] + effects: + - !type:WashCreamPieReaction + + - type: entity name: monkey @@ -1298,6 +1311,7 @@ understands: - Monkey + - type: entity name: monkey id: MobBaseSyndicateMonkey @@ -1455,7 +1469,7 @@ - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-kobold - type: GhostRole - prob: 0.1 + prob: 0.05 makeSentient: true name: ghost-role-information-kobold-name description: ghost-role-information-kobold-description @@ -1516,7 +1530,7 @@ - type: entity name: guidebook monkey parent: MobMonkey - noSpawn: true + categories: [ HideSpawnMenu ] id: MobGuidebookMonkey description: A hopefully helpful monkey whose only purpose in life is for you to click on. Does this count as having a monkey give you a tutorial? components: @@ -2172,11 +2186,13 @@ states: Alive: Base: snake + Critical: + Base: dead Dead: Base: dead - type: Butcherable spawned: - - id: FoodMeat + - id: FoodMeatSnake amount: 1 - type: InteractionPopup successChance: 0.6 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml index ba21ca4da23..ad5d77f1c1e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/elemental.yml @@ -223,7 +223,7 @@ acts: [ "Destruction" ] - type: entity - name: Reagent slime + name: reagent slime id: ReagentSlime suffix: Water parent: [ MobAdultSlimes, MobCombat ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml index 285e75bca0a..6ef65cc1ae2 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/mimic.yml @@ -1,5 +1,5 @@ - type: entity - name: Mimic + name: mimic id: MobMimic parent: [ SimpleMobBase, MobCombat ] description: Surprise. # When this gets a proper write this should use the object's actual description >:) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index fe265c7cb61..83817e89a88 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -106,6 +106,8 @@ - id: FoodMeatCorgi amount: 2 - id: MaterialHideCorgi + - type: StealTarget + stealGroup: AnimalIan - type: entity name: Runtime @@ -127,6 +129,8 @@ tags: - CannotSuicide - VimPilot + - type: StealTarget + stealGroup: AnimalNamedCat - type: LanguageSpeaker # Frontier speaks: - Cat @@ -151,6 +155,8 @@ tags: - CannotSuicide - VimPilot + - type: StealTarget + stealGroup: AnimalNamedCat - type: LanguageSpeaker # Frontier speaks: - Cat @@ -182,6 +188,8 @@ tags: - CannotSuicide - VimPilot + - type: StealTarget + stealGroup: AnimalNamedCat - type: LanguageSpeaker # Frontier speaks: - Cat @@ -259,7 +267,7 @@ - CannotSuicide - VimPilot - type: StealTarget - stealGroup: AnimalBingus + stealGroup: AnimalNamedCat - type: entity name: McGriff diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml index ed4065b32f6..cf334c5be56 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml @@ -1,5 +1,5 @@ - type: entity - name: Rat King + name: rat king id: MobRatKing parent: [ SimpleMobBase, MobCombat ] description: He's da rat. He make da roolz. @@ -160,11 +160,11 @@ - MinorAntagonists - type: entity - name: Rat Servant + name: rat servant id: MobRatServant parent: [ SimpleMobBase, MobCombat ] description: He's da mini rat. He don't make da roolz. - noSpawn: true #Must be configured to a King or the AI breaks. + categories: [ HideSpawnMenu ] #Must be configured to a King or the AI breaks. components: - type: CombatMode - type: MovementSpeedModifier diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index d4970d88de1..55f041eb8f7 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -155,7 +155,7 @@ description: A geras of a slime - the name is ironic, isn't it? id: MobSlimesGeras parent: BaseMobAdultSlimes - noSpawn: true + categories: [ HideSpawnMenu ] components: # they portable... - type: MovementSpeedModifier diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 3cf6fc69f52..0bf4d598d0f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -1,6 +1,6 @@ # Hacky for the stress test so don't even consider adding to this - type: entity - name: Burrower + name: burrower id: MobXeno parent: SimpleSpaceMobBase description: They mostly come at night. Mostly. @@ -126,7 +126,7 @@ - Xeno - type: entity - name: Praetorian + name: praetorian parent: MobXeno id: MobXenoPraetorian components: @@ -159,7 +159,7 @@ - MobLayer - type: entity - name: Drone + name: drone parent: MobXeno id: MobXenoDrone components: @@ -196,7 +196,7 @@ - MobLayer - type: entity - name: Queen + name: queen parent: MobXeno id: MobXenoQueen components: @@ -235,7 +235,7 @@ - CannotSuicide - type: entity - name: Ravager + name: ravager parent: MobXeno id: MobXenoRavager components: @@ -272,7 +272,7 @@ - MobLayer - type: entity - name: Runner + name: runner parent: MobXeno id: MobXenoRunner components: @@ -302,7 +302,7 @@ - MobLayer - type: entity - name: Rouny + name: rouny parent: MobXenoRunner id: MobXenoRouny components: @@ -317,7 +317,7 @@ amount: 3 - type: entity - name: Spitter + name: spitter parent: MobXeno id: MobXenoSpitter components: @@ -383,6 +383,10 @@ Base: dead_purple_snake Dead: Base: dead_purple_snake + - type: Butcherable + spawned: + - id: FoodMeatSnake + amount: 4 - type: Grammar attributes: proper: true @@ -449,5 +453,9 @@ Base: dead_small_purple_snake Dead: Base: dead_small_purple_snake + - type: Butcherable + spawned: + - id: FoodMeatSnake + amount: 2 - type: SolutionTransfer maxTransferAmount: 1 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 58ffa1a194d..f0f2c8016b4 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -2,7 +2,7 @@ parent: [MobObserver, InventoryBase] id: AdminObserver name: admin observer - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ContentEye maxZoom: 8.916104, 8.916104 diff --git a/Resources/Prototypes/Entities/Mobs/Player/diona.yml b/Resources/Prototypes/Entities/Mobs/Player/diona.yml index 4153250bbf9..bcb602bbd6f 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/diona.yml @@ -15,7 +15,7 @@ # Reformed Diona - type: entity parent: MobDiona - noSpawn: true + categories: [ HideSpawnMenu ] id: MobDionaReformed name: Reformed Diona components: diff --git a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml index 8bf9bfab41e..0b21f0d7353 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dragon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dragon.yml @@ -154,7 +154,7 @@ - MinorAntagonists - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: DragonsBreathGun name: dragon's lung description: For dragon's breathing diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 5ec64b818b7..8b3aa1e05ca 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/human.yml @@ -35,18 +35,46 @@ giveUplink: false giveObjectives: false +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentMedic + name: syndicate medic + components: + - type: Loadout + prototypes: [SyndicateReinforcementMedic] + +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentSpy + name: syndicate spy + components: + - type: Loadout + prototypes: [SyndicateReinforcementSpy] + +- type: entity + parent: MobHumanSyndicateAgent + id: MobHumanSyndicateAgentThief + name: syndicate thief + components: + - type: Loadout + prototypes: [SyndicateReinforcementThief] + - type: entity parent: MobHumanSyndicateAgentBase id: MobHumanSyndicateAgentNukeops # Reinforcement exclusive to nukeops uplink suffix: Human, NukeOps components: - - type: Loadout - prototypes: [SyndicateOperativeGearReinforcementNukeOps] - type: NukeOperative + - type: RandomMetadata + nameSegments: + - nukeops-role-operator + - SyndicateNamesNormal + - type: Loadout + prototypes: [SyndicateOperativeGearFullNoUplink] # Nuclear Operative - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] name: Nuclear Operative parent: MobHuman id: MobHumanNukeOp @@ -55,7 +83,7 @@ - type: RandomHumanoidAppearance - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: MobHuman id: MobHumanLoneNuclearOperative name: Lone Operative diff --git a/Resources/Prototypes/Entities/Mobs/Player/moth.yml b/Resources/Prototypes/Entities/Mobs/Player/moth.yml index ea01677626d..431843d4edc 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/moth.yml @@ -1,5 +1,5 @@ -- type: entity - save: false - name: Urist McFluff - parent: BaseMobMoth - id: MobMoth +# - type: entity +# save: false +# name: Urist McFluff +# parent: BaseMobMoth +# id: MobMoth diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 0f826936a5c..b0c7f8accc6 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -3,7 +3,7 @@ id: MobObserver name: observer description: Boo! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: CargoSellBlacklist - type: Sprite @@ -48,7 +48,11 @@ - type: Tag tags: - BypassInteractionRangeChecks - - type: UniversalLanguageSpeaker # Frontier / Ghosts should understand any language. + - type: LanguageSpeaker + speaks: + - Universal + understands: + - Universal - type: entity id: ActionGhostBoo diff --git a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml index ad9b37f63e1..ffbc46e94c3 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml @@ -1,7 +1,7 @@ - type: entity parent: MobObserver id: ReplayObserver - noSpawn: true + categories: [ HideSpawnMenu ] save: false components: - type: MovementSpeedModifier diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index e1ec78b4197..c846b4377a1 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -28,8 +28,6 @@ spawned: - id: FoodMeatSpider amount: 5 - - type: Inventory - templateId: arachnid - type: Reactive reactions: - reagents: [Water] @@ -80,16 +78,6 @@ - map: [ "enum.HumanoidVisualLayers.LArm" ] - map: [ "enum.HumanoidVisualLayers.RLeg" ] - map: [ "enum.HumanoidVisualLayers.LLeg" ] - - shader: StencilClear - sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 - # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. - # sprite refactor when - state: l_leg - - shader: StencilMask - map: ["enum.HumanoidVisualLayers.StencilMask"] - sprite: Mobs/Customization/masking_helpers.rsi - state: unisex_full - visible: false - map: ["jumpsuit"] - map: ["enum.HumanoidVisualLayers.LFoot"] - map: ["enum.HumanoidVisualLayers.RFoot"] @@ -122,6 +110,8 @@ sprite: "Effects/creampie.rsi" state: "creampie_arachnid" visible: false + - type: Inventory + templateId: arachnid - type: LanguageSpeaker # Frontier speaks: - GalacticCommon @@ -133,9 +123,10 @@ - type: entity parent: BaseSpeciesDummy id: MobArachnidDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Arachnid -#88w88 + +#>88w88< diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index ab1d853d458..f47e693636f 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -18,16 +18,6 @@ - map: [ "enum.HumanoidVisualLayers.LArm" ] - map: [ "enum.HumanoidVisualLayers.RLeg" ] - map: [ "enum.HumanoidVisualLayers.LLeg" ] - - shader: StencilClear - sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 - # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. - # sprite refactor when - state: l_leg - - shader: StencilMask - map: ["enum.HumanoidVisualLayers.StencilMask"] - sprite: Mobs/Customization/masking_helpers.rsi - state: unisex_full - visible: false - map: ["jumpsuit"] - map: ["enum.HumanoidVisualLayers.LFoot"] - map: ["enum.HumanoidVisualLayers.RFoot"] @@ -172,7 +162,6 @@ - type: SleepEmitSound - type: SSDIndicator - type: StandingState - - type: Fingerprint - type: Dna - type: MindContainer showExamineInfo: true @@ -250,6 +239,7 @@ Heat: -0.07 groups: Brute: -0.07 + - type: Fingerprint - type: Blindable # Other @@ -313,14 +303,6 @@ - map: [ "enum.HumanoidVisualLayers.LArm" ] - map: [ "enum.HumanoidVisualLayers.RLeg" ] - map: [ "enum.HumanoidVisualLayers.LLeg" ] - - shader: StencilClear - sprite: Mobs/Species/Human/parts.rsi - state: l_leg - - shader: StencilMask - map: ["enum.HumanoidVisualLayers.StencilMask"] - sprite: Mobs/Customization/masking_helpers.rsi - state: unisex_full - visible: false - map: ["jumpsuit"] - map: ["enum.HumanoidVisualLayers.LFoot"] - map: ["enum.HumanoidVisualLayers.RFoot"] diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index 98341e8d12e..7b15ced7b62 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -82,8 +82,6 @@ - MobMask layer: - MobLayer - - type: Inventory - templateId: diona - type: Speech speechVerb: Plant - type: Vocal @@ -102,6 +100,14 @@ actionPrototype: DionaGibAction allowedStates: - Dead + - type: Inventory + templateId: diona + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female - type: LanguageSpeaker # Frontier speaks: - GalacticCommon @@ -113,9 +119,15 @@ - type: entity parent: BaseSpeciesDummy id: MobDionaDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - - type: Inventory - templateId: diona - type: HumanoidAppearance species: Diona + - type: Inventory + templateId: diona + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index d332914399b..7411655b82e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -56,6 +56,13 @@ hideLayersOnEquip: - Hair - Snout + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female - type: LanguageSpeaker # Frontier speaks: - GalacticCommon @@ -67,7 +74,14 @@ - type: entity parent: BaseSpeciesDummy id: MobDwarfDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite scale: 1, 0.8 + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female diff --git a/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml b/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml index c514a6f1a05..406aa920c1c 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/gingerbread.yml @@ -40,11 +40,26 @@ - MobMask layer: - MobLayer + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female + - type: entity parent: BaseSpeciesDummy id: MobGingerbreadDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Gingerbread + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml index 1152f654daa..4d6bc17b26c 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml @@ -20,6 +20,13 @@ hideLayersOnEquip: - Hair - Snout + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female - type: LanguageSpeaker # Frontier speaks: - GalacticCommon @@ -31,4 +38,12 @@ - type: entity parent: BaseSpeciesDummy id: MobHumanDummy - noSpawn: true + categories: [ HideSpawnMenu ] + components: + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index a2730b6d7e9..2bb40d397a4 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -1,135 +1,135 @@ -- type: entity - save: false - name: Urist McFluff - parent: BaseMobSpeciesOrganic - id: BaseMobMoth - abstract: true - components: - - type: HumanoidAppearance - species: Moth - hideLayersOnEquip: - - HeadTop - - type: Hunger - - type: Thirst - - type: Icon - sprite: Mobs/Species/Moth/parts.rsi - state: full - - type: Body - prototype: Moth - requiredLegs: 2 - - type: Damageable - damageContainer: Biological - damageModifierSet: Moth - - type: ZombieAccentOverride - accent: zombieMoth - - type: Speech - speechVerb: Moth - allowedEmotes: ['Chitter', 'Squeak'] - - type: TypingIndicator - proto: moth - - type: Butcherable - butcheringType: Spike - spawned: - - id: FoodMeat - amount: 5 - - type: Bloodstream - bloodReagent: InsectBlood - - type: DamageVisuals - damageOverlayGroups: - Brute: - sprite: Mobs/Effects/brute_damage.rsi - color: "#808A51" - - type: MothAccent - - type: Vocal - sounds: - Male: UnisexMoth - Female: UnisexMoth - Unsexed: UnisexMoth - - type: MovementSpeedModifier - weightlessAcceleration: 1.5 # Move around more easily in space. - weightlessFriction: 1 - weightlessModifier: 1 - - type: Flammable - damage: - types: - Heat: 4.5 # moths burn more easily - - type: Temperature # Moths hate the heat and thrive in the cold. - heatDamageThreshold: 320 - coldDamageThreshold: 230 - currentTemperature: 310.15 - specificHeat: 46 - coldDamage: - types: - Cold : 0.05 #per second, scales with temperature & other constants - heatDamage: - types: - Heat : 3 #per second, scales with temperature & other constants - - type: Sprite # sprite again because we want different layer ordering - noRot: true - drawdepth: Mobs - layers: - - map: [ "enum.HumanoidVisualLayers.Chest" ] - - map: [ "enum.HumanoidVisualLayers.Head" ] - - map: [ "enum.HumanoidVisualLayers.Snout" ] - - map: [ "enum.HumanoidVisualLayers.Eyes" ] - - map: [ "enum.HumanoidVisualLayers.RArm" ] - - map: [ "enum.HumanoidVisualLayers.LArm" ] - - map: [ "enum.HumanoidVisualLayers.RLeg" ] - - map: [ "enum.HumanoidVisualLayers.LLeg" ] - - shader: StencilClear - sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 - # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. - # sprite refactor when - state: l_leg - - shader: StencilMask - map: [ "enum.HumanoidVisualLayers.StencilMask" ] - sprite: Mobs/Customization/masking_helpers.rsi - state: unisex_full - visible: false - - map: [ "jumpsuit" ] - - map: [ "enum.HumanoidVisualLayers.LHand" ] - - map: [ "enum.HumanoidVisualLayers.RHand" ] - - map: [ "enum.HumanoidVisualLayers.LFoot" ] - - map: [ "enum.HumanoidVisualLayers.RFoot" ] - - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] - color: "#ffffff" - sprite: Objects/Misc/handcuffs.rsi - state: body-overlay-2 - visible: false - - map: [ "gloves" ] - - map: [ "shoes" ] - - map: [ "ears" ] - - map: [ "outerClothing" ] - - map: [ "eyes" ] - - map: [ "belt" ] - - map: [ "id" ] - - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break - - map: [ "neck" ] - - map: [ "back" ] - - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - - map: [ "enum.HumanoidVisualLayers.Hair" ] - - map: [ "enum.HumanoidVisualLayers.HeadSide" ] - - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - - map: [ "mask" ] - - map: [ "head" ] - - map: [ "pocket1" ] - - map: [ "pocket2" ] - - map: [ "clownedon" ] # Dynamically generated - sprite: "Effects/creampie.rsi" - state: "creampie_moth" - visible: false - - type: LanguageSpeaker # Frontier - speaks: - - GalacticCommon - - Nian - understands: - - GalacticCommon - - Nian +## ADT Tweak - ЗАКОММЕНТИЛИ ДЛЯ ADT НИАН +# - type: entity +# save: false +# name: Urist McFluff +# parent: BaseMobSpeciesOrganic +# id: BaseMobMoth +# abstract: true +# components: +# - type: HumanoidAppearance +# species: Moth +# hideLayersOnEquip: +# - HeadTop +# - type: Hunger +# - type: Thirst +# - type: Icon +# sprite: Mobs/Species/Moth/parts.rsi +# state: full +# - type: Body +# prototype: Moth +# requiredLegs: 2 +# - type: Damageable +# damageContainer: Biological +# damageModifierSet: Moth +# - type: ZombieAccentOverride +# accent: zombieMoth +# - type: Speech +# speechVerb: Moth +# allowedEmotes: ['Chitter', 'Squeak'] +# - type: TypingIndicator +# proto: moth +# - type: Butcherable +# butcheringType: Spike +# spawned: +# - id: FoodMeat +# amount: 5 +# - type: Bloodstream +# bloodReagent: InsectBlood +# - type: DamageVisuals +# damageOverlayGroups: +# Brute: +# sprite: Mobs/Effects/brute_damage.rsi +# color: "#808A51" +# - type: MothAccent +# - type: Vocal +# sounds: +# Male: UnisexMoth +# Female: UnisexMoth +# Unsexed: UnisexMoth +# - type: MovementSpeedModifier +# weightlessAcceleration: 1.5 # Move around more easily in space. +# weightlessFriction: 1 +# weightlessModifier: 1 +# - type: Flammable +# damage: +# types: +# Heat: 4.5 # moths burn more easily +# - type: Temperature # Moths hate the heat and thrive in the cold. +# heatDamageThreshold: 320 +# coldDamageThreshold: 230 +# currentTemperature: 310.15 +# specificHeat: 46 +# coldDamage: +# types: +# Cold : 0.05 #per second, scales with temperature & other constants +# heatDamage: +# types: +# Heat : 3 #per second, scales with temperature & other constants +# - type: Sprite # sprite again because we want different layer ordering +# noRot: true +# drawdepth: Mobs +# layers: +# - map: [ "enum.HumanoidVisualLayers.Chest" ] +# - map: [ "enum.HumanoidVisualLayers.Head" ] +# - map: [ "enum.HumanoidVisualLayers.Snout" ] +# - map: [ "enum.HumanoidVisualLayers.Eyes" ] +# - map: [ "enum.HumanoidVisualLayers.RArm" ] +# - map: [ "enum.HumanoidVisualLayers.LArm" ] +# - map: [ "enum.HumanoidVisualLayers.RLeg" ] +# - map: [ "enum.HumanoidVisualLayers.LLeg" ] +# - map: [ "jumpsuit" ] +# - map: [ "enum.HumanoidVisualLayers.LHand" ] +# - map: [ "enum.HumanoidVisualLayers.RHand" ] +# - map: [ "enum.HumanoidVisualLayers.LFoot" ] +# - map: [ "enum.HumanoidVisualLayers.RFoot" ] +# - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] +# color: "#ffffff" +# sprite: Objects/Misc/handcuffs.rsi +# state: body-overlay-2 +# visible: false +# - map: [ "gloves" ] +# - map: [ "shoes" ] +# - map: [ "ears" ] +# - map: [ "outerClothing" ] +# - map: [ "eyes" ] +# - map: [ "belt" ] +# - map: [ "id" ] +# - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break +# - map: [ "neck" ] +# - map: [ "back" ] +# - map: [ "enum.HumanoidVisualLayers.FacialHair" ] +# - map: [ "enum.HumanoidVisualLayers.Hair" ] +# - map: [ "enum.HumanoidVisualLayers.HeadSide" ] +# - map: [ "enum.HumanoidVisualLayers.HeadTop" ] +# - map: [ "mask" ] +# - map: [ "head" ] +# - map: [ "pocket1" ] +# - map: [ "pocket2" ] +# - map: [ "clownedon" ] # Dynamically generated +# sprite: "Effects/creampie.rsi" +# state: "creampie_moth" +# visible: false +# - type: Inventory +# femaleDisplacements: +# jumpsuit: +# sizeMaps: +# 32: +# sprite: Mobs/Species/Human/displacement.rsi +# state: jumpsuit-female + + +# - type: entity +# parent: BaseSpeciesDummy +# id: MobMothDummy +# categories: [ HideSpawnMenu ] +# components: +# - type: HumanoidAppearance +# species: Moth +# - type: Inventory +# femaleDisplacements: +# jumpsuit: +# sizeMaps: +# 32: +# sprite: Mobs/Species/Human/displacement.rsi +# state: jumpsuit-female -- type: entity - parent: BaseSpeciesDummy - id: MobMothDummy - noSpawn: true - components: - - type: HumanoidAppearance - species: Moth diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 29b7053bde0..92b3ce092ae 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -26,8 +26,6 @@ spawned: - id: FoodMeatLizard amount: 5 - - type: Inventory - speciesId: reptilian - type: LizardAccent - type: Speech speechSounds: Lizard @@ -62,6 +60,14 @@ types: Heat : 1.5 #per second, scales with temperature & other constants - type: Wagging + - type: Inventory + speciesId: reptilian + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female - type: LanguageSpeaker # Frontier speaks: - GalacticCommon @@ -75,7 +81,7 @@ - type: entity parent: BaseSpeciesDummy id: MobReptilianDummy - noSpawn: true + categories: [ HideSpawnMenu ] description: A dummy reptilian meant to be used in character setup. components: - type: HumanoidAppearance @@ -86,5 +92,11 @@ - HeadSide - type: Inventory speciesId: reptilian + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female #Weh diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 41d81a0e9dd..229c2da027e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -102,11 +102,25 @@ - type: FireVisuals alternateState: Standing - type: FlashImmunity + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female - type: entity parent: BaseSpeciesDummy id: MobSkeletonPersonDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - - type: HumanoidAppearance - species: Skeleton + - type: HumanoidAppearance + species: Skeleton + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 102d6ca32d0..0b8d1a5bf82 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -109,6 +109,13 @@ types: Asphyxiation: -1.0 maxSaturation: 15 + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female - type: LanguageSpeaker speaks: - GalacticCommon @@ -120,7 +127,14 @@ - type: entity parent: MobHumanDummy id: MobSlimePersonDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - - type: HumanoidAppearance - species: SlimePerson + - type: HumanoidAppearance + species: SlimePerson + - type: Inventory + femaleDisplacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Human/displacement.rsi + state: jumpsuit-female diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index 02e2791e354..4bcd068d9d1 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -14,42 +14,6 @@ - type: HumanoidAppearance species: Vox #- type: VoxAccent # Not yet coded - - type: Inventory - speciesId: vox - displacements: - jumpsuit: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: jumpsuit - copyToShaderParameters: - # Value required, provide a dummy. Gets overridden when applied. - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV - eyes: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: eyes - copyToShaderParameters: - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV - gloves: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: hand - copyToShaderParameters: - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV - back: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: back - copyToShaderParameters: - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV - type: Speech speechVerb: Vox speechSounds: Vox @@ -126,11 +90,44 @@ sprite: "Effects/creampie.rsi" state: "creampie_vox" # Not default visible: false + - type: Inventory + speciesId: vox + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: jumpsuit + eyes: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: eyes + gloves: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: hand + back: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: back + ears: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: ears + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: shoes - type: entity parent: BaseSpeciesDummy id: MobVoxDummy - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: HumanoidAppearance species: Vox @@ -140,36 +137,32 @@ speciesId: vox displacements: jumpsuit: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: jumpsuit - copyToShaderParameters: - # Value required, provide a dummy. Gets overridden when applied. - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: jumpsuit eyes: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: eyes - copyToShaderParameters: - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: eyes gloves: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: hand - copyToShaderParameters: - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: hand back: - layer: - sprite: Mobs/Species/Vox/displacement.rsi - state: back - copyToShaderParameters: - layerKey: dummy - parameterTexture: displacementMap - parameterUV: displacementUV - + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: back + ears: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: ears + shoes: + sizeMaps: + 32: + sprite: Mobs/Species/Vox/displacement.rsi + state: shoes diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 5d77c91a5db..a51a9a19306 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -78,6 +78,9 @@ solution: drink - type: FitsInDispenser solution: drink + - type: Tag + tags: + - DrinkGlass # Transformable container - normal glass - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index c9e28954be8..f894b170f4f 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -729,7 +729,7 @@ - type: entity parent: [DrinkBottleVisualsOpenable, DrinkBottlePlasticBaseFull] id: DrinkCreamCartonXL - name: Milk Cream XL + name: milk cream XL description: It's cream. Made from milk. What else did you think you'd find in there? components: - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index 156cd5a7675..d13c9ad2ca9 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -314,7 +314,7 @@ - type: entity parent: DrinkBaseCup id: DrinkLean - name: grape Juice + name: grape juice description: Damn, no fun allowed. components: - type: SolutionContainerManager diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index fde181d8b9b..784bfe2cd5d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -257,14 +257,12 @@ - type: entity name: blueberry pancake - parent: FoodBakedBase + parent: FoodBakedPancake id: FoodBakedPancakeBb description: A fluffy and delicious blueberry pancake. components: - type: Stack - stackType: Pancake - count: 1 - composite: true + stackType: PancakeBb layerStates: - pancakesbb1 - pancakesbb2 @@ -281,7 +279,6 @@ - state: pancakesbb3 map: ["pancakesbb3"] visible: false - - type: Appearance - type: Tag tags: - Pancake @@ -289,14 +286,12 @@ - type: entity name: chocolate chip pancake - parent: FoodBakedBase + parent: FoodBakedPancake id: FoodBakedPancakeCc description: A fluffy and delicious chocolate chip pancake. components: - type: Stack - stackType: Pancake - count: 1 - composite: true + stackType: PancakeCc layerStates: - pancakescc1 - pancakescc2 @@ -313,7 +308,6 @@ - state: pancakescc3 map: ["pancakescc3"] visible: false - - type: Appearance - type: SolutionContainerManager solutions: food: @@ -323,9 +317,6 @@ Quantity: 5 - ReagentId: Theobromine Quantity: 1 - - type: Tag - tags: - - Pancake - type: entity name: waffles diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml index cb04869c2c7..09ec706e1fe 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pie.yml @@ -148,6 +148,8 @@ - state: tin - state: plain - type: CreamPie + - type: ThrowingAngle + angle: 180 - type: LandAtCursor - type: ContainerContainer containers: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml index f822fb7c2da..55bf7f994ab 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -547,3 +547,76 @@ - ReagentId: Vitamin Quantity: 1 # Tastes like stale crust, rancid cheese, mushroom. + +- type: entity + name: spicy rock pizza + parent: FoodPizzaBase + id: FoodPizzaUranium + description: Spicy pizza covered in peppers and uranium. + components: + - type: FlavorProfile + flavors: + - spicy + - cheesy + - oily + - bread + - type: Sprite + layers: + - state: uranium-pizza + - type: SliceableFood + slice: FoodPizzaUraniumSlice + - type: Tag + tags: + - Meat + - Pizza + - type: PointLight + enabled: true + radius: 2 + - type: SolutionContainerManager + solutions: + food: + maxVol: 40 + reagents: + - ReagentId: Nutriment + Quantity: 20 + - ReagentId: Radium + Quantity: 4 + - ReagentId: Uranium + Quantity: 16 + +- type: entity + name: slice of spicy rock pizza + parent: FoodPizzaSliceBase + id: FoodPizzaUraniumSlice + description: A glowing slice of spicy rock pizza. + components: + - type: FlavorProfile + flavors: + - spicy + - cheesy + - oily + - bread + - type: Sprite + layers: + - state: uranium-slice + - type: Tag + tags: + - Meat + - Pizza + - Slice + - type: PointLight + enabled: true + radius: 2 + - type: SolutionContainerManager + solutions: + food: + maxVol: 5 + reagents: + - ReagentId: Nutriment + Quantity: 2.5 + - ReagentId: Radium + Quantity: 0.5 + - ReagentId: Uranium + Quantity: 2 + +# Tastes like crust, tomato, cheese, radiation. diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 5d9ddca94dd..bb80079d2eb 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -669,7 +669,7 @@ id: FoodMealHappyHonkClown parent: HappyHonk suffix: random food spawner meal - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index be23c2e43f6..f1f30f6c46d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -34,6 +34,9 @@ solution: food - type: TrashOnSolutionEmpty solution: food + - type: Tag + tags: + - Ingredient - type: entity abstract: true @@ -272,6 +275,9 @@ reagents: - ReagentId: Nutriment Quantity: 15 + - type: Tag + tags: + - Ingredient - type: entity name: dough @@ -684,3 +690,6 @@ reagents: - ReagentId: CocoaPowder Quantity: 2 + - type: Tag + tags: + - Ingredient diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 60d6106cde5..392e90239bd 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -95,6 +95,21 @@ - type: Produce seedId: sugarcane +- type: entity + name: papercane roll + description: Why do we even need to grow paper? + id: Papercane + parent: ProduceBase + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/papercane.rsi + - type: SolutionContainerManager + - type: Produce + seedId: papercane + - type: Log + spawnedPrototype: SheetPaper1 + spawnCount: 2 + - type: entity parent: FoodProduceBase id: FoodLaughinPeaPod @@ -869,6 +884,42 @@ tags: - Fruit +- type: entity + name: golden apple + parent: FoodProduceBase + id: FoodGoldenApple + description: It should be shaped like a cube, shouldn't it? + components: + - type: FlavorProfile + flavors: + - apple + - metallic + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 10 + - ReagentId: Vitamin + Quantity: 4 + - ReagentId: DoctorsDelight + Quantity: 13 + - type: Sprite + sprite: Objects/Specific/Hydroponics/golden_apple.rsi + - type: Produce + seedId: goldenApple + - type: Extractable + juiceSolution: + reagents: + - ReagentId: JuiceApple + Quantity: 10 + - ReagentId: Gold + Quantity: 10 + - type: Tag + tags: + - Fruit + - type: entity name: cocoa pod parent: FoodProduceBase @@ -1411,6 +1462,71 @@ - Galaxythistle - Fruit # Probably? +- type: entity + name: glasstle + parent: FoodProduceBase + id: FoodGlasstle + description: A fragile crystal plant with lot of spiky thorns. + components: + - type: Item + size: Small + sprite: Objects/Specific/Hydroponics/glasstle.rsi + heldPrefix: produce + - type: FlavorProfile + flavors: + - sharp + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Razorium + Quantity: 15 + - type: Sprite + sprite: Objects/Specific/Hydroponics/glasstle.rsi + - type: Produce + seedId: glasstle + - type: Extractable + grindableSolutionName: food + - type: Damageable + damageContainer: Inorganic + - type: ToolRefinable + refineResult: + - id: SheetGlass1 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: GlassBreak + params: + volume: -4 + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: DamageOnHit + damage: + types: + Blunt: 10 + - type: MeleeWeapon + wideAnimationRotation: 60 + damage: + types: + Slash: 15 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Tag + tags: + - Galaxythistle + + - type: entity name: fly amanita parent: FoodProduceBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml index d620dbda6f4..e8a646e8c96 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/snacks.yml @@ -483,7 +483,7 @@ # Trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseItem id: FoodPacketTrash description: This is rubbish. @@ -506,7 +506,7 @@ price: 0 - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketBoritosTrash name: boritos bag @@ -515,7 +515,7 @@ state: boritos-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketCnDsTrash name: C&Ds bag @@ -524,7 +524,7 @@ state: cnds-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketCheesieTrash name: cheesie honkers @@ -533,7 +533,7 @@ state: cheesiehonkers-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketChipsTrash name: chips @@ -542,7 +542,7 @@ state: chips-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketChocolateTrash name: chocolate wrapper @@ -551,7 +551,7 @@ state: chocolatebar-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketEnergyTrash name: energybar wrapper @@ -560,7 +560,7 @@ state: energybar-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketPistachioTrash name: pistachios packet @@ -569,7 +569,7 @@ state: pistachio-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketPopcornTrash name: popcorn box @@ -578,7 +578,7 @@ state: popcorn-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketRaisinsTrash name: 4no raisins @@ -587,7 +587,7 @@ state: raisins-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketSemkiTrash name: semki packet @@ -596,7 +596,7 @@ state: semki-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketSusTrash name: sus jerky @@ -605,7 +605,7 @@ state: susjerky-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketSyndiTrash name: syndi-cakes box @@ -614,7 +614,7 @@ state: syndicakes-trash - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketCupRamenTrash name: empty cup ramen @@ -623,7 +623,7 @@ state: ramen - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketChowMeinTrash name: empty chow mein box @@ -632,7 +632,7 @@ state: chinese1 - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketDanDanTrash name: empty dan dan box @@ -641,7 +641,7 @@ state: chinese2 - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodCookieFortune name: cookie fortune @@ -654,7 +654,7 @@ descriptionSegments: [CookieFortuneDescriptions] - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: FoodPacketTrash id: FoodPacketMRETrash name: MRE wrapper diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml index 3fb5675f83f..1240fa3d8fe 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml @@ -423,9 +423,9 @@ - type: entity id: PresentTrash - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseItem - name: Wrapping Paper + name: wrapping paper description: Carefully folded, taped, and tied with a bow. Then ceremoniously ripped apart and tossed on the floor. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index b25c394f825..f2c3ed15fbc 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -1253,3 +1253,16 @@ Steel: 2 Glass: 5 Cable: 2 + +- type: entity + parent: BaseMachineCircuitboard + id: CutterMachineCircuitboard + name: cutter machine board + components: + - type: MachineBoard + prototype: CutterMachine + stackRequirements: + Steel: 2 + Capacitor: 1 + Manipulator: 1 + Cable: 1 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml index c075ac881fd..a5041bb5891 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Syndicate_Gadgets/reinforcement_teleporter.yml @@ -1,6 +1,7 @@ - type: entity parent: BaseItem - id: ReinforcementRadioSyndicate + abstract: true + id: ReinforcementRadio name: syndicate reinforcement radio description: Call in a syndicate agent of questionable quality, instantly! Only basic equipment provided. components: @@ -8,50 +9,68 @@ sprite: Objects/Devices/communication.rsi layers: - state: old-radio + - type: UserInterface + interfaces: + enum.GhostRoleRadioUiKey.Key: + type: GhostRoleRadioBoundUserInterface + - type: ActivatableUI + key: enum.GhostRoleRadioUiKey.Key + +- type: entity + parent: ReinforcementRadio + id: ReinforcementRadioSyndicate + name: syndicate reinforcement radio + description: Call in a syndicate agent of questionable quality, instantly! + components: - type: GhostRole - name: ghost-role-information-syndicate-reinforcement-name + name: ghost-role-information-syndicate-reinforcement-spy-name description: ghost-role-information-syndicate-reinforcement-description rules: ghost-role-information-syndicate-reinforcement-rules raffle: settings: default - type: GhostRoleMobSpawner - prototype: MobHumanSyndicateAgent - - type: EmitSoundOnUse - sound: /Audio/Effects/Emotes/parp1.ogg - - type: UseDelay - delay: 300 + prototype: MobHumanSyndicateAgentSpy + selectablePrototypes: ["SyndicateAgentMedic", "SyndicateAgentSpy", "SyndicateAgentThief"] # Corvax-HiddenDesc-Start - type: HiddenDescription entries: - label: corvax-hidden-desc-ReinforcementRadioSyndicate-syndicate whitelistMind: components: - - TraitorRole - - NukeOperative + - TraitorRole + - NukeOperative - label: corvax-hidden-desc-ReinforcementRadio-engineering jobRequired: - - ChiefEngineer - - AtmosphericTechnician - - StationEngineer - - TechnicalAssistant + - ChiefEngineer + - AtmosphericTechnician + - StationEngineer + - TechnicalAssistant - label: corvax-hidden-desc-ReinforcementRadio-research jobRequired: - - ResearchAssistant - - ResearchDirector - - Scientist - - Borg + - ResearchAssistant + - ResearchDirector + - Scientist + - Borg # Corvax-HiddenDesc-End - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateNukeops # Reinforcement radio exclusive to nukeops uplink + name: nuclear operative radio + description: Call in a nuclear operative of questionable quality, instantly! Basic nukeop equipment provided. suffix: NukeOps components: + - type: GhostRole + name: ghost-role-information-nukeop-reinforcement-name + description: ghost-role-information-nukeop-reinforcement-description + rules: ghost-role-information-nukeop-reinforcement-rules + raffle: + settings: default - type: GhostRoleMobSpawner prototype: MobHumanSyndicateAgentNukeops - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateAncestor name: syndicate genetic ancestor reinforcement radio description: Calls in a specially trained ancestor of your choosing to assist you. @@ -98,7 +117,7 @@ selectablePrototypes: ["SyndicateMonkeyNukeops", "SyndicateKoboldNukeops"] - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateSyndiCat name: syndicat reinforcement radio description: Calls in a faithfully trained cat with a microbomb to assist you. @@ -115,7 +134,7 @@ sound: /Audio/Animals/cat_meow.ogg - type: entity - parent: ReinforcementRadioSyndicate + parent: ReinforcementRadio id: ReinforcementRadioSyndicateCyborgAssault # Reinforcement radio exclusive to nukeops uplink name: syndicate assault cyborg reinforcement radio description: Call in a well armed assault cyborg, instantly! diff --git a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml index 20e138f81a0..bc17ed455a5 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml @@ -22,7 +22,7 @@ entity: ChameleonDisguise - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseMob id: ChameleonDisguise name: Urist McKleiner diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index 4b2907f1ab6..a4afd95feb1 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -164,6 +164,7 @@ - type: EncryptionKey channels: - Science + - Binary # ADT Tweak Roboticist defaultChannel: Science - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml index ab404b88a3e..965b25dbc00 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/backgammon.yml @@ -18,7 +18,7 @@ id: BackgammonBoardTabletop name: backgammon parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/backgammon_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml index 64e7d7ace98..f7d9e0973a3 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/base.yml @@ -31,7 +31,7 @@ id: BaseBoardTabletop name: baseboard abstract: true - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Tag tags: diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml index 69302548d18..6c206ca26f7 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/checkers.yml @@ -24,7 +24,7 @@ id: *checkerboard name: checkerboard parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/chessboard_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml index b31b7803bae..aeba3918c49 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/chess.yml @@ -20,7 +20,7 @@ id: ChessBoardTabletop name: chessboard parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/chessboard_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml index 51f17d55b99..9b00ef5e018 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/dnd.yml @@ -86,7 +86,7 @@ parent: BaseBoardTabletop id: GrassBoardTabletop name: grass battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/grassbm_tabletop.rsi @@ -98,7 +98,7 @@ parent: BaseBoardTabletop id: MoonBoardTabletop name: grass battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/moonbm_tabletop.rsi @@ -108,7 +108,7 @@ parent: BaseBoardTabletop id: SandBoardTabletop name: sand battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/sandbm_tabletop.rsi @@ -118,7 +118,7 @@ parent: BaseBoardTabletop id: SnowBoardTabletop name: snow battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/snowbm_tabletop.rsi @@ -128,7 +128,7 @@ parent: BaseBoardTabletop id: ShipBoardTabletop name: ship battlemap - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/Battlemaps/shipbm_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml index bb5fdf1f0bf..b608f4e7876 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Tabletop/parchis.yml @@ -20,7 +20,7 @@ id: ParchisBoardTabletop name: parchís parent: BaseBoardTabletop - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/Tabletop/parchis_tabletop.rsi diff --git a/Resources/Prototypes/Entities/Objects/Fun/darts.yml b/Resources/Prototypes/Entities/Objects/Fun/darts.yml index 19a7116cb27..15e5e1afdb9 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/darts.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/darts.yml @@ -84,6 +84,7 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: BalloonPopper - type: entity parent: Dart diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 63dba43b43f..69448042d6d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -301,6 +301,12 @@ Quantity: 10 - ReagentId: JuiceThatMakesYouWeh Quantity: 10 + - type: Clothing + quickEquip: false + sprite: Objects/Fun/toys.rsi + equippedPrefix: lizard + slots: + - HEAD - type: entity parent: PlushieLizard diff --git a/Resources/Prototypes/Entities/Objects/Misc/books_author.yml b/Resources/Prototypes/Entities/Objects/Misc/books_author.yml index 9adb14f4ebe..47e5a916303 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/books_author.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/books_author.yml @@ -318,7 +318,7 @@ - type: entity parent: BookBase id: BookIanMountain - name: the adventures of ian and renault - A mountain expedition + name: the adventures of ian and renault - a mountain expedition description: The book is in new condition. The cover is a stunning mountain landscape with Ian and Renault in the foreground, looking out over the vista of the surrounding peaks and valleys. The title is written in bold, block letters at the top, with the subtitle, "A Mountain Expedition," written underneath. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Misc/buffering.yml b/Resources/Prototypes/Entities/Objects/Misc/buffering.yml index dbd35344594..c97ffe89edd 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/buffering.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/buffering.yml @@ -1,6 +1,6 @@ - type: entity id: BufferingIcon - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/buffering.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml index 89b421c97d4..0389db27ea0 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fire_extinguisher.yml @@ -76,7 +76,7 @@ name: extinguisher spray id: ExtinguisherSpray parent: Vapor - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Effects/extinguisherSpray.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml index ca56ef5acbb..e6b81e7ce40 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/kudzu.yml @@ -298,7 +298,7 @@ data: { state: spookysmoke_static } - type: entity - name: Haze + name: haze id: ShadowKudzuWeak parent: ShadowKudzu components: diff --git a/Resources/Prototypes/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/Entities/Objects/Misc/paper.yml index e249de97520..6525779f128 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/paper.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/paper.yml @@ -258,7 +258,7 @@ - type: entity parent: Paper id: PaperWritten - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -570,3 +570,81 @@ Blunt: 10 - type: StealTarget stealGroup: BoxFolderQmClipboard + +- type: entity + name: envelope + parent: BaseItem + id: Envelope + description: 'A small envelope for keeping prying eyes off of your sensitive documents.' + components: + - type: Sprite + sprite: Objects/Misc/bureaucracy.rsi + layers: + - state: envelope_open + map: ["enum.EnvelopeVisualLayers.Open"] + - state: envelope_closed + map: ["enum.EnvelopeVisualLayers.Sealed"] + visible: false + - state: envelope_torn + map: ["enum.EnvelopeVisualLayers.Torn"] + visible: false + - state: paper_stamp-generic + map: ["enum.PaperVisualLayers.Stamp"] + visible: false + - type: Paper + escapeFormatting: false + content: envelope-default-message + - type: PaperVisuals + headerImagePath: "/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png" + headerMargin: 216.0, 0.0, 0.0, 0.0 + contentMargin: 0.0, 0.0, 0.0, 0.0 + maxWritableArea: 368.0, 256.0 + - type: Envelope + - type: ContainerContainer + containers: + letter_slot: !type:ContainerSlot + - type: ItemSlots + slots: + letter_slot: + name: envelope-letter-slot + insertSound: /Audio/Effects/packetrip.ogg + ejectSound: /Audio/Effects/packetrip.ogg + whitelist: + tags: + - Paper + - type: ActivatableUI + key: enum.PaperUiKey.Key + requireHands: false + - type: UserInterface + interfaces: + enum.PaperUiKey.Key: + type: PaperBoundUserInterface + - type: Item + size: Tiny + - type: Tag + tags: + - Trash + - Document + #- type: Appearance, hide stamp marks until we have some kind of displacement + - type: Flammable + fireSpread: true + canResistFire: false + alwaysCombustible: true + canExtinguish: true + damage: + types: + Heat: 1 + - type: FireVisuals + sprite: Effects/fire.rsi + normalState: fire + - type: Damageable + damageModifierSet: Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 15 + behaviors: + - !type:EmptyAllContainersBehaviour + - !type:DoActsBehavior + acts: [ "Destruction" ] \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/pen.yml b/Resources/Prototypes/Entities/Objects/Misc/pen.yml index 187672ec4dd..e8f32252be7 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pen.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pen.yml @@ -18,6 +18,14 @@ - type: PhysicalComposition materialComposition: Steel: 25 + - type: EmitSoundOnUse + sound: + path: /Audio/Items/pen_click.ogg + params: + volume: -4 + maxDistance: 2 + - type: UseDelay + delay: 1.5 - type: entity parent: Pen diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 9690d0bdfe8..2368df7381f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -17,7 +17,7 @@ id: SadTromboneImplant name: sad trombone implant description: This implant plays a sad tune when the user dies. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant whitelist: @@ -37,7 +37,7 @@ id: LightImplant name: light implant description: This implant emits light from the user's skin on activation. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionToggleLight @@ -59,7 +59,7 @@ id: BikeHornImplant name: bike horn implant description: This implant lets the user honk anywhere at any time. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateHonkImplant @@ -80,7 +80,7 @@ id: TrackingImplant name: tracking implant description: This implant has a tracking device attached to the suit sensor network, as well as a condition monitor for the Security radio channel. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant whitelist: @@ -110,7 +110,7 @@ id: StorageImplant name: storage implant description: This implant grants hidden storage within a person's body using bluespace technology. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionOpenStorageImplant @@ -134,7 +134,7 @@ id: FreedomImplant name: freedom implant description: This implant lets the user break out of hand restraints up to three times before ceasing to function anymore. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateFreedomImplant @@ -147,7 +147,7 @@ id: UplinkImplant name: uplink implant description: This implant lets the user access a hidden Syndicate uplink at will. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionOpenUplinkImplant @@ -167,7 +167,7 @@ id: EmpImplant name: EMP implant description: This implant creates an electromagnetic pulse when activated. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateEmpImplant @@ -182,7 +182,7 @@ id: ScramImplant name: scram implant description: This implant randomly teleports the user within a large radius when activated. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateScramImplant @@ -194,7 +194,7 @@ id: DnaScramblerImplant name: DNA scrambler implant description: This implant lets the user randomly change their appearance and name once. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant implantAction: ActionActivateDnaScramblerImplant @@ -209,7 +209,7 @@ id: MicroBombImplant name: micro-bomb implant description: This implant detonates the user upon activation or upon death. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -239,7 +239,7 @@ id: MacroBombImplant name: macro-bomb implant description: This implant creates a large explosion on death after a preprogrammed countdown. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -274,7 +274,7 @@ id: DeathAcidifierImplant name: death-acidifier implant description: This implant melts the user and their equipment upon death. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -298,7 +298,7 @@ id: DeathRattleImplant name: death rattle implant description: This implant will inform the Syndicate radio channel should the user fall into critical condition or die. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true @@ -318,7 +318,7 @@ id: MindShieldImplant name: mindshield implant description: This implant will ensure loyalty to Nanotrasen and prevent mind control devices. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SubdermalImplant permanent: true diff --git a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml index 7de91cbb636..1e5f2573fda 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/tiles.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/tiles.yml @@ -41,6 +41,165 @@ types: Blunt: 5 +- type: entity + name: steel dark checker tile + parent: FloorTileItemSteel + id: FloorTileItemSteelCheckerDark + components: + - type: Sprite + state: checker-dark + - type: FloorTile + outputs: + - Plating + - FloorSteelCheckerDark + - type: Stack + stackType: FloorTileSteelCheckerDark + +- type: entity + name: steel light checker tile + parent: FloorTileItemSteel + id: FloorTileItemSteelCheckerLight + components: + - type: Sprite + state: checker-light + - type: FloorTile + outputs: + - Plating + - FloorSteelCheckerLight + - type: Stack + stackType: FloorTileSteelCheckerLight + +- type: entity + name: dark tile + parent: FloorTileItemBase + id: FloorTileItemDark + components: + - type: Sprite + state: dark + - type: Item + heldPrefix: dark + - type: FloorTile + outputs: + - Plating + - FloorDark + - type: Stack + stackType: FloorTileDark + - type: Construction + graph: TileDark + node: darktile + +- type: entity + name: dark steel diagonal mini tile + parent: FloorTileItemDark + id: FloorTileItemDarkDiagonalMini + components: + - type: Sprite + state: dark-diagonal-mini + - type: FloorTile + outputs: + - Plating + - FloorDarkDiagonalMini + - type: Stack + stackType: FloorTileDarkDiagonalMini + +- type: entity + name: dark steel diagonal tile + parent: FloorTileItemDark + id: FloorTileItemDarkDiagonal + components: + - type: Sprite + state: dark-diagonal + - type: FloorTile + outputs: + - Plating + - FloorDarkDiagonal + - type: Stack + stackType: FloorTileDarkDiagonal + +- type: entity + name: dark steel herringbone + parent: FloorTileItemDark + id: FloorTileItemDarkHerringbone + components: + - type: Sprite + state: dark-herringbone + - type: FloorTile + outputs: + - Plating + - FloorDarkHerringbone + - type: Stack + stackType: FloorTileDarkHerringbone + +- type: entity + name: dark steel mini tile + parent: FloorTileItemDark + id: FloorTileItemDarkMini + components: + - type: Sprite + state: dark-mini + - type: FloorTile + outputs: + - Plating + - FloorDarkMini + - type: Stack + stackType: FloorTileDarkMini + +- type: entity + name: dark steel mono tile + parent: FloorTileItemDark + id: FloorTileItemDarkMono + components: + - type: Sprite + state: dark-mono + - type: FloorTile + outputs: + - Plating + - FloorDarkMono + - type: Stack + stackType: FloorTileDarkMono + +- type: entity + name: dark steel pavement + parent: FloorTileItemDark + id: FloorTileItemDarkPavement + components: + - type: Sprite + state: dark-pavement + - type: FloorTile + outputs: + - Plating + - FloorDarkPavement + - type: Stack + stackType: FloorTileDarkPavement + +- type: entity + name: dark steel vertical pavement + parent: FloorTileItemDark + id: FloorTileItemDarkPavementVertical + components: + - type: Sprite + state: dark-pavement-vertical + - type: FloorTile + outputs: + - Plating + - FloorDarkPavementVertical + - type: Stack + stackType: FloorTileDarkPavementVertical + +- type: entity + name: offset dark steel tile + parent: FloorTileItemDark + id: FloorTileItemDarkOffset + components: + - type: Sprite + state: dark-offset + - type: FloorTile + outputs: + - Plating + - FloorDarkOffset + - type: Stack + stackType: FloorTileDarkOffset + - type: entity name: steel tile parent: FloorTileItemBase @@ -61,66 +220,116 @@ node: steeltile - type: entity - name: steel dark checker tile + name: offset steel tile parent: FloorTileItemSteel - id: FloorTileItemSteelCheckerDark + id: FloorTileItemSteelOffset components: - type: Sprite - state: checker-dark + state: steel-offset - type: FloorTile outputs: - Plating - - FloorSteelCheckerDark + - FloorSteelOffset + - type: Stack + stackType: FloorTileSteelOffset - type: entity - name: steel light checker tile + name: steel diagonal mini tile parent: FloorTileItemSteel - id: FloorTileItemSteelCheckerLight + id: FloorTileItemSteelDiagonalMini components: - type: Sprite - state: checker-light + state: steel-diagonal-mini - type: FloorTile outputs: - Plating - - FloorSteelCheckerLight + - FloorSteelDiagonalMini + - type: Stack + stackType: FloorTileSteelDiagonalMini - type: entity - name: steel tile - parent: FloorTileItemBase - id: FloorTileItemMetalDiamond + name: steel diagonal tile + parent: FloorTileItemSteel + id: FloorTileItemSteelDiagonal components: - type: Sprite - state: metaldiamond - - type: Item - heldPrefix: steel + state: steel-diagonal - type: FloorTile outputs: - Plating - - FloorMetalDiamond + - FloorSteelDiagonal - type: Stack - stackType: FloorTileMetalDiamond -# - type: Construction -# graph: TileSteel -# node: steeltile + stackType: FloorTileSteelDiagonal - type: entity - name: wood floor - parent: FloorTileItemBase - id: FloorTileItemWood + name: steel herringbone + parent: FloorTileItemSteel + id: FloorTileItemSteelHerringbone components: - type: Sprite - state: wood - - type: Item - heldPrefix: wood + state: steel-herringbone - type: FloorTile outputs: - Plating - - FloorWood + - FloorSteelHerringbone - type: Stack - stackType: FloorTileWood - - type: Construction - graph: TileWood - node: woodtile + stackType: FloorTileSteelHerringbone + +- type: entity + name: steel mini tile + parent: FloorTileItemSteel + id: FloorTileItemSteelMini + components: + - type: Sprite + state: steel-mini + - type: FloorTile + outputs: + - Plating + - FloorSteelMini + - type: Stack + stackType: FloorTileSteelMini + +- type: entity + name: steel mono tile + parent: FloorTileItemSteel + id: FloorTileItemSteelMono + components: + - type: Sprite + state: steel-mono + - type: FloorTile + outputs: + - Plating + - FloorSteelMono + - type: Stack + stackType: FloorTileSteelMono + +- type: entity + name: steel pavement + parent: FloorTileItemSteel + id: FloorTileItemSteelPavement + components: + - type: Sprite + state: steel-pavement + - type: FloorTile + outputs: + - Plating + - FloorSteelPavement + - type: Stack + stackType: FloorTileSteelPavement + +- type: entity + name: steel vertical pavement + parent: FloorTileItemSteel + id: FloorTileItemSteelPavementVertical + components: + - type: Sprite + state: steel-pavement-vertical + - type: FloorTile + outputs: + - Plating + - FloorSteelPavementVertical + - type: Stack + stackType: FloorTileSteelPavementVertical - type: entity name: white tile @@ -142,23 +351,154 @@ node: whitetile - type: entity - name: dark tile + name: offset white steel tile + parent: FloorTileItemWhite + id: FloorTileItemWhiteOffset + components: + - type: Sprite + state: white-offset + - type: FloorTile + outputs: + - Plating + - FloorWhiteOffset + - type: Stack + stackType: FloorTileWhiteOffset + +- type: entity + name: white steel diagonal mini tile + parent: FloorTileItemWhite + id: FloorTileItemWhiteDiagonalMini + components: + - type: Sprite + state: white-diagonal-mini + - type: FloorTile + outputs: + - Plating + - FloorWhiteDiagonalMini + - type: Stack + stackType: FloorTileWhiteDiagonalMini + +- type: entity + name: white steel diagonal tile + parent: FloorTileItemWhite + id: FloorTileItemWhiteDiagonal + components: + - type: Sprite + state: white-diagonal + - type: FloorTile + outputs: + - Plating + - FloorWhiteDiagonal + - type: Stack + stackType: FloorTileWhiteDiagonal + +- type: entity + name: white steel herringbone + parent: FloorTileItemWhite + id: FloorTileItemWhiteHerringbone + components: + - type: Sprite + state: white-herringbone + - type: FloorTile + outputs: + - Plating + - FloorWhiteHerringbone + - type: Stack + stackType: FloorTileWhiteHerringbone + +- type: entity + name: white steel mini tile + parent: FloorTileItemWhite + id: FloorTileItemWhiteMini + components: + - type: Sprite + state: white-mini + - type: FloorTile + outputs: + - Plating + - FloorWhiteMini + - type: Stack + stackType: FloorTileWhiteMini + +- type: entity + name: white steel mono tile + parent: FloorTileItemWhite + id: FloorTileItemWhiteMono + components: + - type: Sprite + state: white-mono + - type: FloorTile + outputs: + - Plating + - FloorWhiteMono + - type: Stack + stackType: FloorTileWhiteMono + +- type: entity + name: white steel pavement + parent: FloorTileItemWhite + id: FloorTileItemWhitePavement + components: + - type: Sprite + state: white-pavement + - type: FloorTile + outputs: + - Plating + - FloorWhitePavement + - type: Stack + stackType: FloorTileWhitePavement + +- type: entity + name: white steel vertical pavement + parent: FloorTileItemWhite + id: FloorTileItemWhitePavementVertical + components: + - type: Sprite + state: white-pavement-vertical + - type: FloorTile + outputs: + - Plating + - FloorWhitePavementVertical + - type: Stack + stackType: FloorTileWhitePavementVertical + +- type: entity + name: steel tile parent: FloorTileItemBase - id: FloorTileItemDark + id: FloorTileItemMetalDiamond components: - type: Sprite - state: dark + state: metaldiamond - type: Item - heldPrefix: dark + heldPrefix: steel - type: FloorTile outputs: - Plating - - FloorDark + - FloorMetalDiamond - type: Stack - stackType: FloorTileDark + stackType: FloorTileMetalDiamond +# - type: Construction +# graph: TileSteel +# node: steeltile + +- type: entity + name: wood floor + parent: FloorTileItemBase + id: FloorTileItemWood + components: + - type: Sprite + state: wood + - type: Item + heldPrefix: wood + - type: FloorTile + outputs: + - Plating + - FloorWood + - type: Stack + stackType: FloorTileWood - type: Construction - graph: TileDark - node: darktile + graph: TileWood + node: woodtile - type: entity name: techmaint floor @@ -522,6 +862,34 @@ - type: Stack stackType: FloorTileConcrete +- type: entity + name: concrete mono tile + parent: FloorTileItemConcrete + id: FloorTileItemConcreteMono + components: + - type: Sprite + state: concrete-mono + - type: FloorTile + outputs: + - Plating + - FloorConcreteMono + - type: Stack + stackType: FloorTileConcreteMono + +- type: entity + name: concrete smooth + parent: FloorTileItemConcrete + id: FloorTileItemConcreteSmooth + components: + - type: Sprite + state: concrete-smooth + - type: FloorTile + outputs: + - Plating + - FloorConcreteSmooth + - type: Stack + stackType: FloorTileConcreteSmooth + - type: entity parent: FloorTileItemBase id: FloorTileItemGrayConcrete @@ -538,6 +906,34 @@ - type: Stack stackType: FloorTileGrayConcrete +- type: entity + name: gray concrete mono tile + parent: FloorTileItemGrayConcrete + id: FloorTileItemGrayConcreteMono + components: + - type: Sprite + state: grayconcrete-mono + - type: FloorTile + outputs: + - Plating + - FloorGrayConcreteMono + - type: Stack + stackType: FloorTileGrayConcreteMono + +- type: entity + name: gray concrete smooth + parent: FloorTileItemGrayConcrete + id: FloorTileItemGrayConcreteSmooth + components: + - type: Sprite + state: grayconcrete-smooth + - type: FloorTile + outputs: + - Plating + - FloorGrayConcreteSmooth + - type: Stack + stackType: FloorTileGrayConcreteSmooth + - type: entity parent: FloorTileItemBase id: FloorTileItemOldConcrete @@ -554,6 +950,34 @@ - type: Stack stackType: FloorTileOldConcrete +- type: entity + name: old concrete mono tile + parent: FloorTileItemOldConcrete + id: FloorTileItemOldConcreteMono + components: + - type: Sprite + state: oldconcrete-mono + - type: FloorTile + outputs: + - Plating + - FloorOldConcreteMono + - type: Stack + stackType: FloorTileOldConcreteMono + +- type: entity + name: old concrete smooth + parent: FloorTileItemOldConcrete + id: FloorTileItemOldConcreteSmooth + components: + - type: Sprite + state: oldconcrete-smooth + - type: FloorTile + outputs: + - Plating + - FloorOldConcreteSmooth + - type: Stack + stackType: FloorTileOldConcreteSmooth + # Carpets - type: entity name: blue arcade floor diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index e16a430692c..9832acbbd6c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -163,6 +163,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/sugarcane.rsi +- type: entity + parent: SeedBase + name: packet of papercane seeds + id: PapercaneSeeds + components: + - type: Seed + seedId: papercane + - type: Sprite + sprite: Objects/Specific/Hydroponics/papercane.rsi + - type: entity parent: SeedBase name: packet of tower cap spores @@ -243,6 +253,16 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/apple.rsi +- type: entity + parent: SeedBase + name: packet of golden apple seeds + id: GoldenAppleSeeds + components: + - type: Seed + seedId: goldenApple + - type: Sprite + sprite: Objects/Specific/Hydroponics/golden_apple.rsi + - type: entity parent: SeedBase name: packet of corn seeds @@ -427,6 +447,17 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/galaxythistle.rsi +- type: entity + parent: SeedBase + name: packet of glasstle seeds + description: "Scars of gloomy nights." + id: GlasstleSeeds + components: + - type: Seed + seedId: glasstle + - type: Sprite + sprite: Objects/Specific/Hydroponics/glasstle.rsi + - type: entity parent: SeedBase name: packet of fly amanita spores diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml index efb93a88680..8056d1e909e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/soap.yml @@ -144,7 +144,7 @@ - type: entity name: soaplet id: SoapletSyndie - noSpawn: true + categories: [ HideSpawnMenu ] parent: Soap description: A tiny piece of syndicate soap. components: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml index cddf7f6075a..998d3ecf03e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Janitorial/spray.yml @@ -104,7 +104,7 @@ - type: entity id: Vapor name: "vapor" - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: SolutionContainerManager solutions: @@ -136,7 +136,7 @@ - type: entity id: BigVapor parent: Vapor - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Effects/chempuff.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml index ca74dca8a7b..1b9f32009a3 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Kitchen/foodcarts.yml @@ -1,5 +1,5 @@ - type: entity - name: Food Cart + name: food cart id: FoodCartBase abstract: true parent: BaseStructureDynamic diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index f1380c0fa90..753eea5878a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -434,6 +434,8 @@ delay: 0.5 - type: StaticPrice # A new shitcurity meta price: 75 + - type: EmitSoundOnUse + handle: false # don't want the sound to stop the self-inject from triggering # Corvax-HiddenDesc-Start - type: HiddenDescription entries: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index 06566214651..578e0715871 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -1,6 +1,6 @@ - type: entity id: BodyBag - parent: BaseFoldable + parent: BaseDeployFoldable name: body bag description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. components: diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml index 93b2e415721..92c2af3de4c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_modules.yml @@ -536,7 +536,7 @@ - state: icon-syndicate - type: ItemBorgModule items: - - EnergySwordDouble + - CyborgEnergySwordDouble - PinpointerSyndicateNuclear - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml index d318c606adf..fd931a05c7a 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemical-containers.yml @@ -88,7 +88,7 @@ name: jug suffix: carbon id: JugCarbon - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-carbon @@ -104,7 +104,7 @@ name: jug suffix: iodine id: JugIodine - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-iodine @@ -120,7 +120,7 @@ name: jug suffix: fluorine id: JugFluorine - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-fluorine @@ -136,7 +136,7 @@ name: jug suffix: chlorine id: JugChlorine - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-chlorine @@ -152,7 +152,7 @@ name: jug suffix: aluminium id: JugAluminium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-aluminium @@ -168,7 +168,7 @@ name: jug suffix: phosphorus id: JugPhosphorus - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-phosphorus @@ -184,7 +184,7 @@ name: jug suffix: sulfur id: JugSulfur - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-sulfur @@ -200,7 +200,7 @@ name: jug suffix: silicon id: JugSilicon - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-silicon @@ -216,7 +216,7 @@ name: jug suffix: hydrogen id: JugHydrogen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-hydrogen @@ -232,7 +232,7 @@ name: jug suffix: lithium id: JugLithium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-lithium @@ -248,7 +248,7 @@ name: jug suffix: sodium id: JugSodium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-sodium @@ -264,7 +264,7 @@ name: jug suffix: potassium id: JugPotassium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-potassium @@ -280,7 +280,7 @@ name: jug suffix: radium id: JugRadium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-radium @@ -296,7 +296,7 @@ name: jug suffix: iron id: JugIron - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-iron @@ -312,7 +312,7 @@ name: jug suffix: copper id: JugCopper - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-copper @@ -328,7 +328,7 @@ name: jug suffix: gold id: JugGold - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-gold @@ -344,7 +344,7 @@ name: jug suffix: mercury id: JugMercury - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-mercury @@ -360,7 +360,7 @@ name: jug suffix: silver id: JugSilver - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-silver @@ -376,7 +376,7 @@ name: jug suffix: ethanol id: JugEthanol - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-ethanol @@ -392,7 +392,7 @@ name: jug suffix: sugar id: JugSugar - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-sugar @@ -408,7 +408,7 @@ name: jug suffix: nitrogen id: JugNitrogen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-nitrogen @@ -424,7 +424,7 @@ name: jug suffix: oxygen id: JugOxygen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-oxygen @@ -440,7 +440,7 @@ name: jug suffix: Plant-B-Gone id: JugPlantBGone - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-plant-b-gone @@ -456,7 +456,7 @@ name: jug suffix: welding fuel id: JugWeldingFuel - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Label currentLabel: reagent-name-welding-fuel diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml index 3f72fa10fad..355ce3c8789 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml @@ -29,6 +29,21 @@ - type: PhysicalComposition materialComposition: Steel: 15 + # ADT Tweak Start: IPC + - type: Healing # cables can be used to heal IPC + damageContainers: + - ADTSiliconDamageContainer + damage: + types: + Heat: -5 + Cold: -5 + Shock: -5 + Caustic: -5 + # healingBeginSound: + # path: "/Audio/Items/Medical/ointment_begin.ogg" + # healingEndSound: + # path: "/Audio/Items/Medical/ointment_end.ogg" + # ADT Tweak End - type: entity id: CableHVStack diff --git a/Resources/Prototypes/Entities/Objects/Tools/fulton.yml b/Resources/Prototypes/Entities/Objects/Tools/fulton.yml index cfd0b8f7700..3a6d8ffc225 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/fulton.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/fulton.yml @@ -87,7 +87,7 @@ - type: entity id: FultonEffect - noSpawn: true + categories: [ HideSpawnMenu ] name: fulton effect components: - type: TimedDespawn diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index b825647ac13..6d911ee29c8 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -60,7 +60,7 @@ parent: GasTankRoundBase id: OxygenTank name: oxygen tank - description: A standard cylindrical gas tank for oxygen. + description: A standard cylindrical gas tank for oxygen. It can hold 5 L of gas. components: - type: Sprite sprite: Objects/Tanks/oxygen.rsi @@ -73,7 +73,7 @@ parent: GasTankRoundBase id: NitrogenTank name: nitrogen tank - description: A standard cylindrical gas tank for nitrogen. + description: A standard cylindrical gas tank for nitrogen. It can hold 5 L of gas. components: - type: Sprite sprite: Objects/Tanks/red.rsi @@ -86,7 +86,7 @@ parent: GasTankRoundBase id: EmergencyOxygenTank name: emergency oxygen tank - description: An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only. + description: An easily portable tank for emergencies. Contains very little oxygen, rated for survival use only. It can hold 0.66 L of gas. components: - type: Sprite sprite: Objects/Tanks/emergency.rsi @@ -115,7 +115,7 @@ parent: EmergencyOxygenTank id: EmergencyNitrogenTank name: emergency nitrogen tank - description: An easily portable tank for emergencies. Contains very little nitrogen, rated for survival use only. + description: An easily portable tank for emergencies. Contains very little nitrogen, rated for survival use only. It can hold 0.66 L of gas. components: - type: Sprite sprite: Objects/Tanks/emergency_red.rsi @@ -128,7 +128,7 @@ parent: EmergencyOxygenTank id: ExtendedEmergencyOxygenTank name: extended-capacity emergency oxygen tank - description: An emergency tank with extended capacity. Technically rated for prolonged use. + description: An emergency tank with extended capacity. Technically rated for prolonged use. It can hold 1.5 L of gas. components: - type: Sprite sprite: Objects/Tanks/emergency_extended.rsi @@ -145,7 +145,7 @@ parent: ExtendedEmergencyOxygenTank id: ExtendedEmergencyNitrogenTank name: extended-capacity emergency nitrogen tank - description: An emergency tank with extended capacity. Technically rated for prolonged use. + description: An emergency tank with extended capacity. Technically rated for prolonged use. It can hold 1.5 L of gas. components: - type: Sprite sprite: Objects/Tanks/emergency_extended_red.rsi @@ -158,7 +158,7 @@ parent: ExtendedEmergencyOxygenTank id: DoubleEmergencyOxygenTank name: double emergency oxygen tank - description: A high-grade dual-tank emergency life support container. It holds a decent amount of oxygen for it's small size. + description: A high-grade dual-tank emergency life support container. It holds a decent amount of oxygen for it's small size. It can hold 2.5 L of gas. components: - type: Sprite sprite: Objects/Tanks/emergency_double.rsi @@ -180,7 +180,7 @@ parent: DoubleEmergencyOxygenTank id: DoubleEmergencyNitrogenTank name: double emergency nitrogen tank - description: A high-grade dual-tank emergency life support container. It holds a decent amount of nitrogen for its small size. + description: A high-grade dual-tank emergency life support container. It holds a decent amount of nitrogen for its small size. It can hold 2.5 L of gas. components: - type: Sprite sprite: Objects/Tanks/emergency_double_red.rsi @@ -193,7 +193,7 @@ parent: EmergencyOxygenTank id: EmergencyFunnyOxygenTank name: funny emergency oxygen tank - description: An easily portable tank for emergencies. Contains very little oxygen with an extra of funny gas, rated for survival use only. + description: An easily portable tank for emergencies. Contains very little oxygen with an extra of funny gas, rated for survival use only. It can hold 0.66 L of gas. components: - type: Sprite sprite: Objects/Tanks/emergency_clown.rsi @@ -206,7 +206,7 @@ parent: GasTankRoundBase id: AirTank name: air tank - description: Mixed anyone? + description: Mixed anyone? It can hold 5 L of gas. components: - type: GasTank outputPressure: 101.3 @@ -215,7 +215,7 @@ parent: GasTankRoundBase id: NitrousOxideTank name: nitrous oxide tank - description: Contains a mixture of air and nitrous oxide. Make sure you don't refill it with pure N2O. + description: Contains a mixture of air and nitrous oxide. Make sure you don't refill it with pure N2O. It can hold 5 L of gas. components: - type: Sprite sprite: Objects/Tanks/anesthetic.rsi @@ -231,7 +231,7 @@ parent: GasTankBase id: PlasmaTank name: plasma tank - description: Contains dangerous plasma. Do not inhale. Extremely flammable. + description: Contains dangerous plasma. Do not inhale. Extremely flammable. It can hold 5 L of gas. components: - type: Sprite sprite: Objects/Tanks/plasma.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml index 2320764d9ff..3081f60989e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/glowstick.yml @@ -115,7 +115,7 @@ name: light pulse test parent: BaseItem id: LightBehaviourTest1 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -146,7 +146,7 @@ name: color cycle test parent: BaseItem id: LightBehaviourTest2 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -178,7 +178,7 @@ name: multi-behaviour light test parent: BaseItem id: LightBehaviourTest3 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -218,7 +218,7 @@ name: light fade in test parent: BaseItem id: LightBehaviourTest4 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -249,7 +249,7 @@ name: light pulse radius test parent: BaseItem id: LightBehaviourTest5 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi @@ -280,7 +280,7 @@ name: light randomize radius test parent: BaseItem id: LightBehaviourTest6 - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Misc/glowstick.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml index 6fee48daf14..2c2fc795f2d 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/jetpacks.yml @@ -1,6 +1,6 @@ - type: entity id: JetpackEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 2 @@ -22,8 +22,8 @@ parent: GasTankBase abstract: true id: BaseJetpack - name: Jetpack - description: It's a jetpack. + name: jetpack + description: It's a jetpack. It can hold 5 L of gas. components: - type: InputMover toParent: true @@ -182,6 +182,7 @@ id: JetpackMini parent: BaseJetpack name: mini jetpack + description: It's a jetpack. It can hold 1.5 L of gas. suffix: Empty components: - type: Item diff --git a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml index 0a0c7023245..db319118576 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/toolbox.yml @@ -155,10 +155,10 @@ state: icon - type: ThiefUndeterminedBackpack possibleSets: - # - TO DO Thief pinpointer needed + # TODO Thief pinpointer needed - ChemistrySet - ToolsSet - - ChameleonSet # - TO DO Chameleon stump PR needed + - ChameleonSet # TODO Chameleon stump PR needed - SyndieSet - SleeperSet - CommunicatorSet diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml index 630354f23d9..1aac4424149 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/funny.yml @@ -52,7 +52,7 @@ - type: entity id: HotPotatoEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.6 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml index d2262a7dc17..9eaf3f63367 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Bombs/pen.yml @@ -20,6 +20,8 @@ - type: DeviceLinkSink ports: - Trigger + - type: EmitSoundOnUse + handle: false # don't want the sound to stop the explosion from triggering # Corvax-HiddenDesc-Start - type: HiddenDescription entries: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml index 31d7b65fe8b..65b7dbc1655 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet id: BulletAntiMateriel name: bullet (.60 anti-materiel) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml index 741f0a4e1a0..83392d07efa 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/caseless_rifle.yml @@ -2,7 +2,7 @@ id: BulletCaselessRifle name: bullet (.25 caseless) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletCaselessRiflePractice name: bullet (.25 caseless practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml index 36d41e391ac..873d9702142 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/grenade.yml @@ -1,7 +1,7 @@ - type: entity id: PelletClusterRubber - name: pellet (ball, Rubber) - noSpawn: true + name: pellet (ball, rubber) + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -19,8 +19,8 @@ - type: entity id: PelletClusterLethal - name: pellet (ball, Lethal) - noSpawn: true + name: pellet (ball, lethal) + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -37,7 +37,7 @@ - type: entity id: PelletClusterIncendiary name: pellet (ball, incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletIncendiary components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml index be6a07e486d..d37555c3443 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/heavy_rifle.yml @@ -2,7 +2,7 @@ id: BulletHeavyRifle name: bullet (.20 rifle) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletMinigun name: minigun bullet (.10 rifle) parent: BulletHeavyRifle - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml index c6a4808b77b..7eac4b53d09 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/light_rifle.yml @@ -2,7 +2,7 @@ id: BulletLightRifle name: bullet (.20 rifle) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletLightRiflePractice name: bullet (.20 rifle practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletLightRifleIncendiary parent: BaseBulletIncendiary name: bullet (.20 rifle incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletLightRifleUranium parent: BaseBulletUranium name: bullet (.20 rifle uranium) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml index 798de9fa853..b4017fd5507 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/magnum.yml @@ -2,7 +2,7 @@ id: BulletMagnum name: bullet (.45 magnum) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletMagnumPractice name: bullet (.45 magnum practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletMagnumIncendiary parent: BaseBulletIncendiary name: bullet (.45 magnum incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletMagnumAP name: bullet (.45 magnum armor-piercing) parent: BaseBulletAP - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -48,7 +48,7 @@ id: BulletMagnumUranium name: bullet (.45 magnum uranium) parent: BaseBulletUranium - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml index 3cfcc0cf206..8d146939b75 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/pistol.yml @@ -2,7 +2,7 @@ id: BulletPistol name: bullet (.35 auto) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletPistolPractice name: bullet (.35 auto practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletPistolIncendiary parent: BaseBulletIncendiary name: bullet (.35 auto incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletPistolUranium parent: BaseBulletUranium name: bullet (.35 auto uranium) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml index 6f6fa0f9077..e3e26bf9f32 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/rifle.yml @@ -2,7 +2,7 @@ id: BulletRifle name: bullet (0.20 rifle) parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -13,7 +13,7 @@ id: BulletRiflePractice name: bullet (0.20 rifle practice) parent: BaseBulletPractice - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -24,7 +24,7 @@ id: BulletRifleIncendiary parent: BaseBulletIncendiary name: bullet (0.20 rifle incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -36,7 +36,7 @@ id: BulletRifleUranium parent: BaseBulletUranium name: bullet (0.20 rifle uranium) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml index e119a846c9c..6e4570e1a16 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/shotgun.yml @@ -1,7 +1,7 @@ - type: entity id: PelletShotgunSlug name: pellet (.50 slug) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -15,7 +15,7 @@ - type: entity id: PelletShotgunBeanbag name: beanbag (.50) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -31,7 +31,7 @@ - type: entity id: PelletShotgun name: pellet (.50) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -45,7 +45,7 @@ - type: entity id: PelletShotgunIncendiary name: pellet (.50 incendiary) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletIncendiary components: - type: Sprite @@ -62,7 +62,7 @@ - type: entity id: PelletShotgunPractice name: pellet (.50 practice) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletPractice components: - type: Sprite @@ -76,7 +76,7 @@ - type: entity id: PelletShotgunImprovised name: improvised pellet - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -92,7 +92,7 @@ - type: entity id: PelletShotgunTranquilizer name: pellet (.50 tranquilizer) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletPractice components: - type: Sprite @@ -119,7 +119,7 @@ - type: entity id: PelletShotgunFlare name: pellet (.50 flare) - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Physics bodyType: Dynamic @@ -166,7 +166,7 @@ - type: entity id: PelletShotgunUranium name: pellet (.50 uranium) - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -181,7 +181,7 @@ - type: entity id: PelletGrapeshot #tally fucking ho name: grapeshot pellet - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBullet components: - type: Sprite @@ -200,7 +200,7 @@ id: PelletGlass name: glass shard parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite noRot: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml index 8f469f87a9b..07d59aadfa1 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Pistols/pistols.yml @@ -47,6 +47,7 @@ whitelist: tags: - MagazinePistol + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgePistol @@ -75,9 +76,6 @@ components: - type: Sprite sprite: Objects/Weapons/Guns/Pistols/viper.rsi - availableModes: - - FullAuto - - SemiAuto - type: ItemSlots slots: gun_magazine: @@ -90,6 +88,7 @@ tags: - MagazinePistol - MagazinePistolHighCapacity + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgePistol @@ -173,6 +172,7 @@ whitelist: tags: - MagazinePistolCaselessRifle + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgeCaselessRifle @@ -243,6 +243,7 @@ whitelist: tags: - MagazineMagnum + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgeMagnum diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml index 3f37d308db5..89db3240bef 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/hitscan.yml @@ -1,7 +1,7 @@ # Used to animate the hitscan effects because effectsystem doesn't support it - type: entity id: HitscanEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 2.0 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml index d70b05bf61d..9be9e43e943 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/impacts.yml @@ -1,6 +1,6 @@ - type: entity id: BulletImpactEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.25 @@ -18,7 +18,7 @@ - type: entity id: BulletImpactEffectDisabler - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.2 @@ -36,7 +36,7 @@ - type: entity id: BulletImpactEffectOrangeDisabler - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.2 @@ -55,7 +55,7 @@ - type: entity id: BulletImpactEffectKinetic - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.2 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml index d6adcd614e3..2f1edfe6972 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml @@ -3,7 +3,7 @@ name: fireball description: You better GITTAH WEIGH. parent: BulletRocket - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight color: "#E25822" @@ -31,7 +31,7 @@ fireStacks: 0.35 - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: BaseBulletTrigger id: ProjectileDragonsBreath name: dragon's breath @@ -68,7 +68,7 @@ name: fireball description: Hovering blob of flame. parent: ProjectileFireball - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 30 @@ -82,7 +82,7 @@ - type: entity id: ProjectilePolyboltBase parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi @@ -99,7 +99,7 @@ parent: ProjectilePolyboltBase name: carp polybolt description: Nooo, I don't wanna be fish! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: WizardForcedCarp @@ -112,7 +112,7 @@ parent: ProjectilePolyboltBase name: monkey polybolt description: Nooo, I don't wanna be monkey! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: WizardForcedMonkey @@ -125,7 +125,7 @@ parent: ProjectilePolyboltBase name: door polybolt description: Nooo, I don't wanna be door! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi @@ -146,7 +146,7 @@ name: healing bolt description: I COMMAND YOU TO LIVE! parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi @@ -166,7 +166,7 @@ id: BulletInstakillMagic name: magical lead cylinder parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] description: This looks familiar. components: - type: Projectile @@ -180,7 +180,7 @@ parent: ProjectilePolyboltBase name: cluwne polybolt description: knoH KnoH! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: WizardForcedCluwne @@ -191,9 +191,9 @@ - type: entity id: ProjectileIcicle parent: BaseBullet - name: Icicle + name: icicle description: Brrrrr. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Structures/Specific/Anomalies/ice_anom.rsi @@ -209,7 +209,7 @@ id: ProjectilePolyboltBread name: bread polybolt description: Nooo, I don't wanna be bread! - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PolymorphOnCollide polymorph: BreadMorph diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml index 3468cade76b..b4e8e77c519 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/meteors.yml @@ -39,8 +39,11 @@ damageContainer: Inorganic - type: Explosive explosionType: Default - intensitySlope: 4 + intensitySlope: 2 maxIntensity: 100 + maxTileBreak: 1 + tileBreakScale: 2 + - type: entity parent: BaseMeteor @@ -99,7 +102,7 @@ - Impassable - BulletImpassable - type: Explosive - totalIntensity: 100 + totalIntensity: 50 - type: Destructible thresholds: - trigger: @@ -112,6 +115,11 @@ sound: collection: MetalBreak - !type:ExplodeBehavior + - !type:WeightedSpawnEntityBehavior + weightedEntityTable: "MeteorSpawnAsteroidWallTable" + minSpawn: 2 + maxSpawn: 4 + spawnAfter: 0.5 - type: entity parent: BaseMeteor @@ -134,7 +142,7 @@ - Impassable - BulletImpassable - type: Explosive - totalIntensity: 200 + totalIntensity: 100 - type: Destructible thresholds: - trigger: @@ -147,6 +155,12 @@ sound: collection: MetalBreak - !type:ExplodeBehavior + - !type:WeightedSpawnEntityBehavior + weightedEntityTable: "MeteorSpawnAsteroidWallTable" + spawnOffset: 2 + minSpawn: 3 + maxSpawn: 6 + spawnAfter: 0.5 - type: entity parent: BaseMeteor @@ -156,7 +170,7 @@ - type: Sprite state: big - type: Explosive - totalIntensity: 300 + totalIntensity: 150 - type: Destructible thresholds: - trigger: @@ -169,6 +183,12 @@ sound: collection: MetalBreak - !type:ExplodeBehavior + - !type:WeightedSpawnEntityBehavior + weightedEntityTable: "MeteorSpawnAsteroidWallTable" + spawnOffset: 3 + minSpawn: 5 + maxSpawn: 8 + spawnAfter: 0.5 - type: entity parent: BaseMeteor @@ -203,4 +223,4 @@ volume: 10 - !type:SpillBehavior solution: blood - - !type:ExplodeBehavior + - !type:ExplodeBehavior \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 56011160090..d2c6497831c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -1,6 +1,6 @@ - type: entity id: MuzzleFlashEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 0.4 @@ -69,7 +69,7 @@ - type: entity id: BaseBulletTrigger # Trigger-on-collide bullets parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TriggerOnCollide fixtureID: projectile @@ -93,7 +93,7 @@ id: BaseBulletPractice name: base bullet practice parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -108,7 +108,7 @@ id: BaseBulletIncendiary name: base bullet incendiary parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -126,7 +126,7 @@ id: BaseBulletAP name: base bullet armor-piercing parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -142,7 +142,7 @@ id: BaseBulletUranium name: base bullet uranium parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -158,7 +158,7 @@ name: taser bolt id: BulletTaser parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FlyBySound sound: @@ -200,7 +200,7 @@ name : disabler bolt id: BulletDisabler parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Reflective reflective: @@ -243,7 +243,7 @@ name : disabler bolt practice id: BulletDisablerPractice parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FlyBySound sound: @@ -283,7 +283,7 @@ name: emitter bolt id: EmitterBolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Structures/Power/Generation/Singularity/emitter.rsi @@ -320,7 +320,7 @@ name: watcher bolt id: WatcherBolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FlyBySound sound: @@ -360,7 +360,7 @@ name: magmawing watcher bolt id: WatcherBoltMagmawing parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles_tg.rsi @@ -379,7 +379,7 @@ id: BulletKinetic name: kinetic bolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] description: Not too bad, but you still don't want to get hit by it. components: - type: Reflective @@ -405,7 +405,7 @@ - type: entity id: BulletKineticShuttle parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite noRot: false @@ -433,7 +433,7 @@ id: BulletCharge name: charge bolt parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] description: Marks a target for additional damage. components: - type: Reflective @@ -467,7 +467,7 @@ parent: BaseBullet id: AnomalousParticleDelta name: delta particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -508,7 +508,7 @@ - type: entity parent: AnomalousParticleDelta id: AnomalousParticleDeltaStrong - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Delta @@ -521,7 +521,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleEpsilon name: epsilon particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -538,7 +538,7 @@ - type: entity parent: AnomalousParticleEpsilon id: AnomalousParticleEpsilonStrong - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Epsilon @@ -551,7 +551,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleZeta name: zeta particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -568,7 +568,7 @@ - type: entity parent: AnomalousParticleZeta id: AnomalousParticleZetaStrong - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Zeta @@ -581,7 +581,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleOmegaStrong name: omega particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -610,7 +610,7 @@ parent: AnomalousParticleDelta id: AnomalousParticleSigma name: sigma particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -628,7 +628,7 @@ parent: AnomalousParticleSigma id: AnomalousParticleSigmaStrong name: sigma particles - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: AnomalousParticle particleType: Sigma @@ -638,7 +638,7 @@ id: BulletRocket name: rocket parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -660,7 +660,7 @@ id: BulletWeakRocket name: weak rocket parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -682,7 +682,7 @@ id: BulletGrenadeBaton name: baton grenade parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -702,7 +702,7 @@ id: BulletGrenadeBlast name: blast grenade parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -719,7 +719,7 @@ id: BulletGrenadeFlash name: flash grenade parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -738,7 +738,7 @@ id: BulletGrenadeFrag name: frag grenade parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -755,7 +755,7 @@ id: BulletGrenadeEMP name: EMP rocket parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -776,7 +776,7 @@ id: BulletCap name: cap bullet parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Fun/toys.rsi @@ -792,7 +792,7 @@ id: BulletAcid name: acid spit parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Projectile damage: @@ -808,7 +808,7 @@ - type: entity id: BulletWaterShot name: water - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Clickable - type: Physics @@ -851,7 +851,7 @@ id: BulletCannonBall name: cannonball parent: BaseBulletTrigger - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi @@ -872,7 +872,7 @@ - type: entity id: GrapplingHook name: grappling hook - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: EmbeddableProjectile deleteOnRemove: true @@ -908,7 +908,7 @@ name : disabler bolt smg id: BulletDisablerSmg parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Reflective reflective: @@ -951,7 +951,7 @@ name: tesla gun lightning id: TeslaGunBullet parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: TimedDespawn lifetime: 5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml index bd043c997da..0df556a742f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Revolvers/revolvers.yml @@ -129,11 +129,9 @@ volume: 2.25 - type: entity - name: Python parent: WeaponRevolverPython id: WeaponRevolverPythonAP # For the uplink. suffix: armor-piercing - description: A robust revolver favoured by Syndicate agents. Uses .45 magnum ammo. components: - type: RevolverAmmoProvider whitelist: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml index e74be81c622..1e028cebc41 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Rifles/rifles.yml @@ -36,6 +36,7 @@ whitelist: tags: - MagazineLightRifle + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgeLightRifle @@ -81,6 +82,7 @@ whitelist: tags: - MagazineLightRifle + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgeLightRifle @@ -124,6 +126,7 @@ whitelist: tags: - MagazineRifle + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgeRifle @@ -171,6 +174,7 @@ whitelist: tags: - MagazineRifle + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgeRifle diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml index b86356306cb..e7f0ce4bff5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/SMGs/smgs.yml @@ -41,6 +41,7 @@ whitelist: tags: - MagazinePistolSubMachineGun + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgePistol @@ -100,7 +101,7 @@ maxAngle: -16 - type: Gun minAngle: 21 - maxAngle: 32 + maxAngle: 32 shotsPerBurst: 5 availableModes: - SemiAuto @@ -156,6 +157,7 @@ whitelist: tags: - MagazinePistolSubMachineGun + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgePistol @@ -210,6 +212,7 @@ whitelist: tags: - CartridgeMagnum + whitelistFailPopup: gun-magazine-whitelist-fail - type: MagazineVisuals magState: mag steps: 1 @@ -262,6 +265,7 @@ whitelist: tags: - MagazinePistolSubMachineGunTopMounted + whitelistFailPopup: gun-magazine-whitelist-fail gun_chamber: name: Chamber startingItem: CartridgePistol diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index 5cd1dcefb13..f71da8ee41c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -85,6 +85,7 @@ whitelist: tags: - MagazineShotgun + whitelistFailPopup: gun-magazine-whitelist-fail insertSound: /Audio/Weapons/Guns/MagIn/smg_magin.ogg ejectSound: /Audio/Weapons/Guns/MagOut/smg_magout.ogg - type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 570748edae8..31909bc304c 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -388,3 +388,12 @@ jobRequired: - SalvageSpecialist # Corvax-HiddenDesc-End + +- type: entity + suffix: One-Handed, For Borgs + parent: EnergySwordDouble + id: CyborgEnergySwordDouble # why is this invalid if ID is BorgEnergySwordDouble + description: Syndicate Command Interns thought that having one blade on the energy sword was not enough. Specially designed for syndicate cyborgs. + components: # could add energy-draining like the L6C + - type: Wieldable + freeHandsRequired: 0 # because borg has no off-hand to wield with. Without this, it will be unable to activate the esword diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml index 11efeba5f8c..e472157081a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/needle.yml @@ -12,6 +12,13 @@ damage: types: Piercing: 1 + - type: DamageOtherOnHit + damage: + types: + Piercing: 1 - type: Item size: Tiny - type: BalloonPopper + - type: ThrowingAngle + angle: -135 + - type: LandAtCursor diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index 608fb2544ae..d6985c018d7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -112,6 +112,11 @@ - type: SolutionContainerVisuals maxFillLevels: 1 fillBaseName: spear + inHandsFillBaseName: -fill- + inHandsMaxFillLevels: 1 + equippedFillBaseName: -fill- + equippedMaxFillLevels: 1 + - type: entity name: reinforced spear diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml index cc55aab237c..99b50c558b5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/clusterbang.yml @@ -20,7 +20,7 @@ - type: entity parent: GrenadeBase id: ClusterBangFull - name: ClusterBang + name: clusterbang description: Launches three flashbangs after the timer runs out. suffix: Full components: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml index aebfeddc6c6..ee3feae13a2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/grenades.yml @@ -83,7 +83,7 @@ - type: entity id: GrenadeFlashEffect - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: PointLight enabled: true @@ -121,11 +121,11 @@ volume: 12 - type: entity - name: Self Destruct + name: self destruct description: Go out on your own terms! parent: GrenadeBase id: SelfDestructSeq - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: ExplodeOnTrigger - type: Explosive diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index a8d935e8b7f..26890e3e8aa 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -73,7 +73,8 @@ - /Maps/Ruins/whiteship_ancient.yml - /Maps/Ruins/whiteship_bluespacejumper.yml vgroid: !type:DungeonSpawnGroup - minimumDistance: 1000 + minimumDistance: 400 + maximumDistance: 450 nameDataset: names_borer stationGrid: false addComponents: diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 9090c81fd56..c2a4bfb11a8 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -26,7 +26,7 @@ - BaseStationSiliconLawCrewsimov - BaseStationAllEventsEligible - BaseStationNanotrasen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform @@ -36,7 +36,7 @@ - BaseStation - BaseStationAlertLevels - BaseStationNanotrasen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform @@ -47,6 +47,6 @@ - BaseStationJobsSpawning - BaseStationRecords - BaseStationNanotrasen - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform diff --git a/Resources/Prototypes/Entities/Stations/syndicate.yml b/Resources/Prototypes/Entities/Stations/syndicate.yml index a6494169146..c863ef73523 100644 --- a/Resources/Prototypes/Entities/Stations/syndicate.yml +++ b/Resources/Prototypes/Entities/Stations/syndicate.yml @@ -11,6 +11,6 @@ parent: - BaseStation - BaseStationSyndicate - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform diff --git a/Resources/Prototypes/Entities/Stations/test.yml b/Resources/Prototypes/Entities/Stations/test.yml index 0f2e40537a2..9eec6979e7a 100644 --- a/Resources/Prototypes/Entities/Stations/test.yml +++ b/Resources/Prototypes/Entities/Stations/test.yml @@ -6,6 +6,6 @@ - BaseStationJobsSpawning - BaseStationRecords - BaseStationAlertLevels - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Transform diff --git a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml index 681f0a390c8..cf51ca9b1f6 100644 --- a/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml +++ b/Resources/Prototypes/Entities/Structures/Dispensers/chem.yml @@ -37,6 +37,17 @@ - Chemist - type: StealTarget stealGroup: ChemDispenser + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25, -0.4, 0.25, 0.4" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer - type: entity id: ChemDispenserEmpty diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml index 5d47d9c5c4a..24e5db81a92 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/assembly.yml @@ -107,7 +107,7 @@ #plasma windoor assemblies - type: entity id: WindoorAssemblyPlasma - name: Plasma windoor assembly + name: plasma windoor assembly description: It opens, it closes, and you can see through it! This one looks purp-, no, pink. Wait... parent: WindoorAssembly components: @@ -137,7 +137,7 @@ - type: entity id: WindoorAssemblySecurePlasma - name: Secure Plasma windoor assembly + name: secure plasma windoor assembly description: It opens, it closes, and you can see through it! This one looks strong and pin-, no, purple. Hold on... parent: WindoorAssembly components: @@ -169,7 +169,7 @@ #uranium windoor assemblies - type: entity id: WindoorAssemblyUranium - name: Uranium windoor assembly + name: uranium windoor assembly description: It opens, it closes, and you can see through it! This one looks sickly green... parent: WindoorAssembly components: @@ -199,7 +199,7 @@ - type: entity id: WindoorAssemblySecureUranium - name: Secure Uranium windoor assembly + name: secure uranium windoor assembly description: It opens, it closes, and you can see through it! This one looks strong and radioactive-lime-green! parent: WindoorAssembly components: diff --git a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml index fcc47bc2e3d..089d5f81d1b 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Windoors/windoor.yml @@ -1,13 +1,13 @@ - type: entity id: Windoor parent: BaseWindoor - name: Windoor + name: windoor description: It's a window and a sliding door. Wow! - type: entity id: WindoorSecure parent: BaseSecureWindoor - name: Secure Windoor + name: secure windoor description: It's a sturdy window and a sliding door. Wow! - type: entity @@ -19,25 +19,25 @@ - type: entity id: WindoorPlasma parent: BasePlasmaWindoor - name: Plasma Windoor + name: plasma windoor description: It's a pink window *and* a sliding door. Amazing! - type: entity id: WindoorSecurePlasma parent: BaseSecurePlasmaWindoor - name: Secure Plasma Windoor + name: secure plasma windoor description: It's a sturdy purple window *and* a sliding door. Spectacular! - type: entity id: WindoorUranium parent: BaseUraniumWindoor - name: Uranium Windoor + name: uranium windoor description: It's a window and a sliding door. Huh? Oh, and it's green! - type: entity id: WindoorSecureUranium parent: BaseSecureUraniumWindoor - name: Secure Uranium Windoor + name: secure uranium windoor description: It's a sturdy window and a sliding door. It's so neon green, it might even taste like limes! # TODO remove these with parameterized prototypes/whatever we end up doing diff --git a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml index ac5ec1e83e3..c1d767905c0 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/chairs.yml @@ -323,7 +323,7 @@ node: chair - type: entity - parent: [SeatBase, BaseFoldable] + parent: [SeatBase, BaseDeployFoldable] id: ChairFolding name: folding chair description: If you carry six of these you become the coolest kid at church. diff --git a/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml b/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml index beabf53c979..24832a28b2a 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/memorial.yml @@ -32,7 +32,7 @@ - type: entity id: SS13Memorial parent: BaseStructure - name: Tomb of the Unknown Employee + name: tomb of the unknown employee description: | Here rests an unknown employee Unknown by name or rank diff --git a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml index b3cfe6ade3f..f7b1be8ecde 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/rollerbeds.yml @@ -1,6 +1,6 @@ - type: entity id: RollerBed - parent: [BaseItem, BaseFoldable] + parent: [BaseItem, BaseDeployFoldable] name: rollerbed description: Used to carry patients around without damaging them. components: diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 87b672847de..1027c510e27 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -115,6 +115,8 @@ - type: Lathe idleState: icon runningState: building + unlitIdleState: unlit + unlitRunningState: unlit-building staticRecipes: - Wirecutter - Igniter @@ -266,6 +268,8 @@ - type: Lathe idleState: icon runningState: building + unlitIdleState: unlit + unlitRunningState: unlit-building staticRecipes: - LargeBeaker - Dropper @@ -333,17 +337,16 @@ - FauxTileAstroSnow - OreBagOfHolding - DeviceQuantumSpinInverter - # vv Frontier - languages mechanic vv + # vv Languages mechanic vv - CanilunztTranslator - BubblishTranslator - NekomimeticTranslator - DraconicTranslator - SolCommonTranslator - RootSpeakTranslator - - XenoTranslator + #- XenoTranslator - DraskTranslator - - BasicGalaticCommonTranslatorImplanter - - AdvancedGalaticCommonTranslatorImplanter + - GalacticCommonTranslatorImplanter - BubblishTranslatorImplanter - NekomimeticTranslatorImplanter - DraconicTranslatorImplanter @@ -357,18 +360,23 @@ - NianTranslatorImplanter - FireTranslatorImplanter - DraskTranslatorImplanter -# - UrsTranslatorImplanter # Закомменчено до раундстарт урсов + - UrsTranslatorImplanter - ArkaneTranslatorImplanter - - ShadowkinTranslatorImplanter + - ShadekinTranslatorImplanter - CintaTajTranslatorImplanter -# - UrsTranslator # Закомменчено до раундстарт урсов + - IPCTranslatorImplanter + - BorgTranslatorImplanter + - DwarfTranslatorImplanter + - UrsTranslator - ArkaneTranslator - - ShadowkinTranslator + - ShadekinTranslator - NianTranslator - FireTranslator - SikTajTranslator - CintaTajTranslator - # ^^ Frontier - languages mechanic ^^ + - DwarfTranslator + - IPCTranslator + # ^^ Languages mechanic ^^ - type: EmagLatheRecipes emagDynamicRecipes: - BoxBeanbag @@ -467,6 +475,7 @@ - BoozeDispenserMachineCircuitboard - SodaDispenserMachineCircuitboard - SpaceHeaterMachineCircuitBoard + - CutterMachineCircuitboard dynamicRecipes: - ThermomachineFreezerMachineCircuitBoard - HellfireFreezerMachineCircuitBoard @@ -1255,6 +1264,7 @@ - IngotGold30 - IngotSilver30 - MaterialBananium10 + - MaterialDiamond - type: entity parent: BaseLathe @@ -1286,3 +1296,82 @@ staticRecipes: - MaterialSheetMeat - SheetPaper + +- type: entity + parent: BaseLathe + id: CutterMachine + name: cutter machine + description: This is a cutter. It cuts. Add variety to your station floor with eye-pleasing patterns! Don't stick your fingers in. + components: + - type: Transform + noRot: false + - type: Sprite + sprite: Structures/Machines/cuttermachine.rsi + snapCardinals: true + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: unlit + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Machine + board: CutterMachineCircuitboard + - type: Lathe + producingSound: /Audio/Machines/cutter.ogg + idleState: icon + runningState: building + staticRecipes: + - FloorTileItemDark + - FloorTileItemDarkDiagonalMini + - FloorTileItemDarkDiagonal + - FloorTileItemDarkHerringbone + - FloorTileItemDarkMini + - FloorTileItemDarkMono + - FloorTileItemDarkPavement + - FloorTileItemDarkPavementVertical + - FloorTileItemDarkOffset + - FloorTileItemSteelCheckerDark + - FloorTileItemSteel + - FloorTileItemSteelOffset + - FloorTileItemSteelDiagonalMini + - FloorTileItemSteelDiagonal + - FloorTileItemSteelHerringbone + - FloorTileItemSteelMini + - FloorTileItemSteelMono + - FloorTileItemSteelPavement + - FloorTileItemSteelPavementVertical + - FloorTileItemWhite + - FloorTileItemWhiteOffset + - FloorTileItemWhiteDiagonalMini + - FloorTileItemWhiteDiagonal + - FloorTileItemWhiteHerringbone + - FloorTileItemWhiteMini + - FloorTileItemWhiteMono + - FloorTileItemWhitePavement + - FloorTileItemWhitePavementVertical + - FloorTileItemSteelCheckerLight + - FloorTileItemGratingMaint + - FloorTileItemTechmaint + - FloorTileItemSteelMaint + - FloorTileItemWood + - FloorTileItemWoodLarge + - FloorTileItemWoodPattern + - FloorTileItemConcrete + - FloorTileItemConcreteMono + - FloorTileItemConcreteSmooth + - FloorTileItemGrayConcrete + - FloorTileItemGrayConcreteMono + - FloorTileItemGrayConcreteSmooth + - FloorTileItemOldConcrete + - FloorTileItemOldConcreteMono + - FloorTileItemOldConcreteSmooth + - type: MaterialStorage + whitelist: + tags: + - Sheet + - Metal + - Wooden + - RawMaterial + - Plastic diff --git a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml index 8dbc4da141e..95546a91998 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml @@ -134,6 +134,8 @@ suffix: keg description: You probably shouldn't stick around to see if this is armed. It has a tap on the side. components: + - type: Transform + anchored: false - type: NukeLabel - type: Sprite sprite: Objects/Devices/nuke.rsi @@ -173,11 +175,11 @@ shape: !type:PhysShapeCircle radius: 0.45 - density: 80 + density: 255 mask: - - TabletopMachineMask + - MachineMask layer: - - TabletopMachineLayer + - WallLayer - type: SolutionContainerManager solutions: tank: diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index 60ec3a2dcc6..8a3e83c5196 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -67,7 +67,7 @@ - type: entity id: DisposalHolder - noSpawn: true + categories: [ HideSpawnMenu ] name: disposal holder components: - type: DisposalHolder diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml index 96392ecd005..ae3fc967742 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/control_box.yml @@ -25,6 +25,8 @@ - type: Wires boardName: wires-board-name-pa layoutId: ParticleAccelerator + - type: AccessReader + access: [["Engineering"]] # Unfinished diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml index 8d889ee5cbb..9d3ce9c931f 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/PA/particles.yml @@ -3,7 +3,7 @@ description: Accelerated particles. id: ParticlesProjectile parent: BaseBullet - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: @@ -54,7 +54,7 @@ description: Accelerated negative particles. id: AntiParticlesProjectile parent: ParticlesProjectile - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml index b63f131a7f4..dc2ad1687a5 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml @@ -101,7 +101,7 @@ SheetSteel1: min: 2 max: 4 - #- type: GuideHelp # To Do - add Tesla Guide + #- type: GuideHelp # TODO - add Tesla Guide - type: entity id: TeslaGroundingRod @@ -184,5 +184,5 @@ SheetSteel1: min: 2 max: 4 - #- type: GuideHelp # To Do - add Tesla Guide + #- type: GuideHelp # TODO - add Tesla Guide diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml index a8c61634dfb..d45e6c58ea7 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/generator.yml @@ -8,7 +8,7 @@ noRot: true sprite: Structures/Power/Generation/Tesla/generator.rsi state: icon - - type: SingularityGenerator #To do: rename the generator + - type: SingularityGenerator # TODO: rename the generator spawnId: TeslaEnergyBall - type: InteractionOutline - type: Fixtures @@ -25,5 +25,5 @@ layer: - Opaque - type: Anchorable - #- type: GuideHelp # To Do - add Tesla Guide + #- type: GuideHelp # TODO - add Tesla Guide diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml index 4e4ef8bdbcf..b7d6b5a128d 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/ame.yml @@ -108,7 +108,7 @@ mediumVoltageNode: ame - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] parent: AmeController id: AmeControllerUnanchored suffix: Unanchored diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml index ed70b310915..1faee965d4e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/generators.yml @@ -144,7 +144,7 @@ # Construction Frames - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: BaseGeneratorWallmountFrame name: wallmount generator frame description: A construction frame for a wallmount generator. diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml index c512266e974..a997dbbf9d6 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/solar.yml @@ -1,6 +1,6 @@ - type: entity id: SolarPanelBasePhysSprite - noSpawn: true + categories: [ HideSpawnMenu ] name: solar panel placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index 78d979ab8eb..b7f43614dbd 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -184,7 +184,7 @@ - # Spawned by the client-side circulator examine code to indicate the inlet/outlet direction. type: entity id: TegCirculatorArrow - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite sprite: Markers/teg_arrow.rsi diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 0948cdb4cc4..48601419743 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -1,5 +1,5 @@ - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: BaseAPC name: APC description: A control terminal for the area's electrical systems. @@ -143,10 +143,12 @@ priority: 1 - type: StaticPrice price: 500 + - type: BatteryDrinkerSource # ADT - IPC + maxAmount: 10000 # APC under construction - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: APCFrame name: APC frame description: A control terminal for the area's electrical systems, lacking the electronics. diff --git a/Resources/Prototypes/Entities/Structures/Power/substation.yml b/Resources/Prototypes/Entities/Structures/Power/substation.yml index 18d9e966a05..8191e5377b2 100644 --- a/Resources/Prototypes/Entities/Structures/Power/substation.yml +++ b/Resources/Prototypes/Entities/Structures/Power/substation.yml @@ -112,7 +112,7 @@ # Compact Wall Substation Base - type: entity id: BaseSubstationWall - noSpawn: true + categories: [ HideSpawnMenu ] name: wallmount substation description: A substation designed for compact shuttles and spaces. placement: @@ -256,7 +256,7 @@ # Construction Frame - type: entity id: BaseSubstationWallFrame - noSpawn: true + categories: [ HideSpawnMenu ] name: wallmount substation frame description: A substation frame for construction placement: diff --git a/Resources/Prototypes/Entities/Structures/Specific/xeno.yml b/Resources/Prototypes/Entities/Structures/Specific/xeno.yml index 0fcca0c1d50..2f58e5caea9 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/xeno.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/xeno.yml @@ -1,6 +1,6 @@ - type: entity id: XenoWardingTower - name: Xeno warding tower + name: xeno warding tower placement: mode: SnapgridCenter snap: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml index b38ef61791c..147e9e5b371 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Canisters/gas_canisters.yml @@ -697,7 +697,7 @@ - type: entity parent: GasCanisterBrokenBase id: StorageCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: yellow-1 @@ -705,7 +705,7 @@ - type: entity parent: GasCanisterBrokenBase id: AirCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: grey-1 @@ -713,7 +713,7 @@ - type: entity parent: GasCanisterBrokenBase id: OxygenCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: blue-1 @@ -721,7 +721,7 @@ - type: entity parent: GasCanisterBrokenBase id: NitrogenCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: red-1 @@ -729,7 +729,7 @@ - type: entity parent: GasCanisterBrokenBase id: CarbonDioxideCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: black-1 @@ -737,7 +737,7 @@ - type: entity parent: GasCanisterBrokenBase id: PlasmaCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: orange-1 @@ -745,7 +745,7 @@ - type: entity parent: GasCanisterBrokenBase id: TritiumCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: green-1 @@ -754,7 +754,7 @@ parent: GasCanisterBrokenBase id: WaterVaporCanisterBroken name: broken water vapor canister - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: water_vapor-1 @@ -762,7 +762,7 @@ - type: entity parent: GasCanisterBrokenBase id: AmmoniaCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: greenys-1 @@ -770,7 +770,7 @@ - type: entity parent: GasCanisterBrokenBase id: NitrousOxideCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: redws-1 @@ -778,7 +778,7 @@ - type: entity parent: GasCanisterBrokenBase id: FrezonCanisterBroken - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite state: frezon-1 diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index 2666e8261d0..73871cbe9b8 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -1,7 +1,7 @@ - type: entity parent: BaseStructureDynamic id: CrateGeneric - noSpawn: true + categories: [ HideSpawnMenu ] name: crate description: A large container for items. components: @@ -94,7 +94,7 @@ - type: entity parent: CrateGeneric id: CrateBaseWeldable - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Weldable - type: ResistLocker diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml index 1be9f202f0b..3f6dd3723d5 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/atmos_plaque.yml @@ -14,6 +14,7 @@ layer: - MidImpassable - type: Sprite + drawdepth: WallMountedItems layers: - state: atmosplaque map: ["plaque"] diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml index b2a0ffe592a..f749bc599be 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/bar_sign.yml @@ -11,7 +11,7 @@ - type: WallMount arc: 360 - type: Sprite - drawdepth: Objects + drawdepth: WallMountedItems sprite: Structures/Wallmounts/barsign.rsi state: empty - type: ApcPowerReceiver @@ -48,7 +48,7 @@ #- type: entity # id: LargeBarSign # name: large bar sign -# noSpawn: true +# categories: [ HideSpawnMenu ] # components: # - type: Clickable # - type: InteractionOutline diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml index e7d938a3c9a..35281d03835 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/base_structuresigns.yml @@ -30,7 +30,7 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: Sprite - drawdepth: WallTops + drawdepth: WallMountedItems sprite: Structures/Wallmounts/signs.rsi snapCardinals: true - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/flags.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/flags.yml index 57b07aa3dd1..a4ab12df741 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/flags.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/flags.yml @@ -6,7 +6,7 @@ - type: WallMount arc: 360 - type: Sprite - drawdepth: WallTops + drawdepth: WallMountedItems sprite: Structures/Wallmounts/flags.rsi - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/metamap.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/metamap.yml index 92850e97e62..e8daa82632e 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/metamap.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/metamap.yml @@ -1,9 +1,9 @@ - type: entity parent: PosterBase id: PosterMapMetaRight - name: "Meta Station Map" + name: "Meta Station map" description: "A map of Meta Station. This looks really old." components: - type: Sprite state: metamap64x - sprite: Structures/Wallmounts/metamap.rsi \ No newline at end of file + sprite: Structures/Wallmounts/metamap.rsi diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/paintings.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/paintings.yml index 5402d443e2b..4f26432c60a 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/paintings.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/paintings.yml @@ -6,7 +6,7 @@ - type: WallMount arc: 360 - type: Sprite - drawdepth: WallTops + drawdepth: WallMountedItems sprite: Structures/Wallmounts/paintings.rsi - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml index cd4850d488a..ae8ed5f74fc 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/posters.yml @@ -6,7 +6,7 @@ - type: WallMount arc: 360 - type: Sprite - drawdepth: WallTops + drawdepth: WallMountedItems sprite: Structures/Wallmounts/posters.rsi snapCardinals: true - type: Destructible diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml index c6ecb5fd308..1308eff1be4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/Signs/signs.yml @@ -660,7 +660,7 @@ - type: entity parent: BaseSign id: SignNosmoking - name: nosmoking sign + name: no smoking sign description: A sign indicating that smoking is not allowed in the vicinity. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml index c48f2cb00a6..c51b4aa042f 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/extinguisher_cabinet.yml @@ -29,7 +29,7 @@ ejectOnInteract: true whitelist: components: - - FireExtinguisher + - SpraySafety - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml index 408ab6b67c3..9c3141298f4 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/monitors_televisions.yml @@ -108,6 +108,7 @@ - type: ActivatableUI key: enum.SurveillanceCameraMonitorUiKey.Key - type: ActivatableUIRequiresPower + - type: ActivatableUIRequiresVision - type: UserInterface interfaces: enum.SurveillanceCameraMonitorUiKey.Key: @@ -167,6 +168,7 @@ - type: ActivatableUI key: enum.SurveillanceCameraMonitorUiKey.Key - type: ActivatableUIRequiresPower + - type: ActivatableUIRequiresVision - type: UserInterface interfaces: enum.SurveillanceCameraMonitorUiKey.Key: diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml new file mode 100644 index 00000000000..af68f5898d2 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/shelfs.yml @@ -0,0 +1,475 @@ +# Parents +- type: entity + abstract: true + id: ShelfBase + parent: BaseStructure + name: shelf + description: a strange place to place, well, anything really. You feel like you shouldn't be seeing this.' + components: + - type: Sprite + drawdepth: WallMountedItems + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.35,0.35,0.35" + density: 35 + layer: + - BulletImpassable + - type: Transform + - type: Damageable + damageModifierSet: Wood + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:DoActsBehavior + acts: ["Destruction"] + - type: WallMount + arc: 175 + - type: Storage + grid: + - 0,0,3,1 + - 0,3,3,4 + maxItemSize: Normal + - type: UserInterface + interfaces: + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + - type: InteractionOutline + - type: ContainerContainer + containers: + storagebase: !type:Container + - type: Tag + tags: + - Structure + +- type: entity + abstract: true + id: ShelfBaseReinforced + parent: ShelfBase + name: reinforced shelf + description: It looks as strong as reality itself. + components: + - type: Lock + - type: LockVisuals + - type: Sprite + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + layers: + - state: rbase + map: ["enum.StorageVisualLayers.Base"] + - state: unlocked + shader: unshaded + # used to keep the unlocked light visible while open. + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: Appearance + - type: EntityStorageVisuals + stateDoorOpen: open + stateDoorClosed: closed + + - type: AccessReader + +# Normal +- type: entity + id: ShelfWood + parent: ShelfBase + name: wooden shelf + description: A convenient place to place, well, anything really. + components: + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 60 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 1 + max: 3 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - Wooden + - type: Construction + graph: Shelf + node: ShelfWood + +- type: entity + id: ShelfMetal + parent: ShelfBase + name: metal shelf + description: A sturdy place to place, well, anything really. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/metal.rsi + state: base + - type: Damageable + damageModifierSet: Metallic + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 120 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 2 + max: 4 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Construction + graph: Shelf + node: ShelfMetal + +- type: entity + id: ShelfGlass + parent: ShelfBase + name: glass shelf + description: A fragile place to place, well, anything really. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/glass.rsi + state: base + - type: Damageable + damageModifierSet: Glass + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 0 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Tag + tags: + - Structure + - type: Construction + graph: Shelf + node: ShelfGlass + +# Reinforced +- type: entity + id: ShelfRWood + parent: ShelfBaseReinforced + name: sturdy wood shelf + description: A safe place to put your favorite bottle of whiskey + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + layers: + - state: rbase + map: ["enum.StorageVisualLayers.Base"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 215 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank: + min: 2 + max: 5 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRWood + +- type: entity + id: ShelfRMetal + parent: ShelfBaseReinforced + name: sturdy metal shelf + description: A strong & shiny place to keep all your vials safe + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/metal.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 450 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetPlasteel1: + min: 2 + max: 3 + ShardGlass: + min: 1 + max: 2 + PartRodMetal1: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRMetal + +- type: entity + id: ShelfRGlass + parent: ShelfBaseReinforced + name: sturdy glass shelf + description: Crystal clear reinforced glass doors to show off all your fancy bottles you definitely didn't sell a co-worker's favorite mothroach for. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/glass.rsi + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 250 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - !type:SpawnEntitiesBehavior + spawn: + SheetPlastic1: + min: 1 + max: 3 + ShardGlass: + min: 1 + max: 2 + PartRodMetal1: + min: 0 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Construction + graph: Shelf + node: ShelfRGlass + +# Departmental +- type: entity + id: ShelfBar + parent: ShelfBase + name: bar shelf + description: Made out of the finest synthetic wood for all alcohol holding needs. + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Service/bar.rsi + state: base + layers: + - state: base + - state: bar-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: Appearance + - type: StorageFillVisualizer + maxFillLevels: 13 + fillBaseName: bar + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: WoodDestroyHeavy + - !type:SpawnEntitiesBehavior + spawn: + MaterialWoodPlank1: + min: 1 + max: 4 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - DrinkGlass + - DrinkBottle + - DrinkCan + - Beer + - type: Construction + graph: Shelf + node: ShelfBar + +- type: entity + id: ShelfKitchen + parent: ShelfBase + name: cooking shelf + description: Holds knifes, spice, and everything nice! + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Service/kitchen.rsi + state: base + layers: + - state: base + - state: kitchen-0 + - map: ["enum.StorageFillLayers.Fill"] + - type: Appearance + - type: StorageFillVisualizer + maxFillLevels: 13 + fillBaseName: kitchen + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetSteel1: + min: 1 + max: 4 + MaterialWoodPlank1: + min: 0 + max: 1 + PartRodMetal1: + min: 0 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - DrinkGlass + - BoxCardboard + - MonkeyCube + - Enzyme + - Mayo + - Packet + - Cleaver + - Knife + - KitchenKnife + - RollingPin + - Ingredient + - Trash + - type: Construction + graph: Shelf + node: ShelfKitchen + +- type: entity + id: ShelfChemistry + parent: ShelfBaseReinforced + name: chemical shelf + description: Keeps all your chemicals safe and out of the clow- er, public hands! + components: + - type: Sprite + sprite: Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi + layers: + - state: base + map: ["enum.StorageVisualLayers.Base"] + - state: unlocked + shader: unshaded + - state: chem-0 + - map: ["enum.StorageFillLayers.Fill"] + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - type: StorageFillVisualizer + maxFillLevels: 7 + fillBaseName: chem + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 330 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:SpawnEntitiesBehavior + spawn: + SheetPlasteel1: + min: 1 + max: 2 + SheetPlastic1: + min: 1 + max: 2 + ShardGlass: + min: 1 + max: 1 + - !type:DoActsBehavior + acts: ["Destruction"] + - type: Storage + grid: + - 0,0,5,1 + - 0,3,5,4 + maxItemSize: Normal + whitelist: + tags: + - ChemDispensable + - GlassBeaker + - Bottle + - type: Construction + graph: Shelf + node: ShelfChemistry + + + +# Access presets +# Try to keep alphabetical sorting if adding more + +- type: entity + parent: ShelfChemistry + id: ShelfChemistryChemistrySecure + suffix: Chemistry, Secure + components: + - type: AccessReader + access: [["Chemistry"]] + diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml index ecf2b0525ed..01e3757a2c7 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/switch.yml @@ -236,7 +236,7 @@ id: LockableButton name: lockable button parent: SignalButtonDirectional - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Appearance - type: Lock @@ -496,7 +496,7 @@ - type: entity id: ButtonFrame name: button frame - noSpawn: true + categories: [ HideSpawnMenu ] description: It's a frame to help distinguish switches visually. placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index 271a9a65cdc..ff935055ff9 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -101,7 +101,7 @@ # Construction Frame - type: entity - noSpawn: true + categories: [ HideSpawnMenu ] id: TimerFrame name: timer frame description: A construction frame for a timer. diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 02552fa244a..65cbb8e74b6 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1189,7 +1189,7 @@ - type: entity id: WallInvisible - name: Invisible Wall + name: invisible wall components: - type: TimedDespawn lifetime: 15 diff --git a/Resources/Prototypes/Entities/Structures/gates.yml b/Resources/Prototypes/Entities/Structures/gates.yml index 22ab745a1ee..6b02840ba0b 100644 --- a/Resources/Prototypes/Entities/Structures/gates.yml +++ b/Resources/Prototypes/Entities/Structures/gates.yml @@ -15,9 +15,10 @@ - type: entity parent: BaseLogicItem - id: LogicGate + id: LogicGateOr name: logic gate description: A logic gate with two inputs and one output. Technicians can change its mode of operation using a screwdriver. + suffix: Or components: - type: Sprite layers: @@ -51,6 +52,71 @@ Nand: { state: nand } Xnor: { state: xnor } +- type: entity + parent: LogicGateOr + id: LogicGateAnd + suffix: And + components: + - type: Sprite + layers: + - state: base + - state: and + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: And + +- type: entity + parent: LogicGateOr + id: LogicGateXor + suffix: Xor + components: + - type: Sprite + layers: + - state: base + - state: xor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Xor + +- type: entity + parent: LogicGateOr + id: LogicGateNor + suffix: Nor + components: + - type: Sprite + layers: + - state: base + - state: nor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Nor + +- type: entity + parent: LogicGateOr + id: LogicGateNand + suffix: Nand + components: + - type: Sprite + layers: + - state: base + - state: nand + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Nand + +- type: entity + parent: LogicGateOr + id: LogicGateXnor + suffix: Xnor + components: + - type: Sprite + layers: + - state: base + - state: xnor + map: [ "enum.LogicGateLayers.Gate" ] + - type: LogicGate + gate: Xnor + - type: entity parent: BaseLogicItem id: EdgeDetector diff --git a/Resources/Prototypes/Entities/Tiles/water.yml b/Resources/Prototypes/Entities/Tiles/water.yml index 2fd1c8547de..c488df231b2 100644 --- a/Resources/Prototypes/Entities/Tiles/water.yml +++ b/Resources/Prototypes/Entities/Tiles/water.yml @@ -54,3 +54,12 @@ collection: FootstepWater params: volume: 8 + - type: StepTrigger + requiredTriggeredSpeed: 0 + intersectRatio: 0.1 + blacklist: + tags: + - Catwalk + - type: TileEntityEffect + effects: + - !type:ExtinguishReaction diff --git a/Resources/Prototypes/Entities/Virtual/beam.yml b/Resources/Prototypes/Entities/Virtual/beam.yml index 7ded09c3fff..fa249f0dd3d 100644 --- a/Resources/Prototypes/Entities/Virtual/beam.yml +++ b/Resources/Prototypes/Entities/Virtual/beam.yml @@ -2,7 +2,7 @@ - type: entity id: VirtualBeamEntityController name: BEAM ENTITY YOU SHOULD NOT SEE THIS - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Beam - type: TimedDespawn diff --git a/Resources/Prototypes/Entities/Virtual/electrocution.yml b/Resources/Prototypes/Entities/Virtual/electrocution.yml index ac65245191e..c45e0b3ca9e 100644 --- a/Resources/Prototypes/Entities/Virtual/electrocution.yml +++ b/Resources/Prototypes/Entities/Virtual/electrocution.yml @@ -12,7 +12,7 @@ - type: entity id: VirtualElectrocutionLoadHVPower parent: VirtualElectrocutionLoadBase - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: NodeContainer nodes: @@ -26,7 +26,7 @@ - type: entity id: VirtualElectrocutionLoadMVPower parent: VirtualElectrocutionLoadBase - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: NodeContainer nodes: @@ -40,7 +40,7 @@ - type: entity id: VirtualElectrocutionLoadApc parent: VirtualElectrocutionLoadBase - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: NodeContainer nodes: diff --git a/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml b/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml index 538e502a402..81e8e9866cb 100644 --- a/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml +++ b/Resources/Prototypes/Entities/Virtual/stripping_hidden.yml @@ -3,9 +3,9 @@ - type: entity id: StrippingHiddenEntity - name: Hidden Entity + name: hidden entity description: There is something in this pocket. #Or maybe they ar... nah... too obvious a joke. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Sprite texture: Interface/VerbIcons/information.svg.192dpi.png diff --git a/Resources/Prototypes/Entities/Virtual/tether.yml b/Resources/Prototypes/Entities/Virtual/tether.yml index ce953854d65..9459fd20887 100644 --- a/Resources/Prototypes/Entities/Virtual/tether.yml +++ b/Resources/Prototypes/Entities/Virtual/tether.yml @@ -1,6 +1,6 @@ - type: entity id: TetherEntity - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Physics bodyType: Dynamic diff --git a/Resources/Prototypes/Entities/Virtual/virtual_item.yml b/Resources/Prototypes/Entities/Virtual/virtual_item.yml index 088de6a6da5..21391dbb344 100644 --- a/Resources/Prototypes/Entities/Virtual/virtual_item.yml +++ b/Resources/Prototypes/Entities/Virtual/virtual_item.yml @@ -2,7 +2,7 @@ - type: entity id: VirtualItem name: VIRTUAL ITEM YOU SHOULD NOT SEE THIS - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Item size: Ginormous # no storage insertion visuals diff --git a/Resources/Prototypes/Entities/World/Debris/asteroids.yml b/Resources/Prototypes/Entities/World/Debris/asteroids.yml index 2817b083bed..bb33801e2d6 100644 --- a/Resources/Prototypes/Entities/World/Debris/asteroids.yml +++ b/Resources/Prototypes/Entities/World/Debris/asteroids.yml @@ -1,7 +1,7 @@ -- type: entity +- type: entity id: BaseAsteroidDebris parent: BaseDebris - name: Asteroid Debris + name: asteroid debris abstract: true components: - type: MapGrid @@ -57,8 +57,8 @@ - type: entity id: AsteroidDebrisSmall parent: BaseAsteroidDebris - name: Asteroid Debris Small - noSpawn: true + name: asteroid debris small + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -67,8 +67,8 @@ - type: entity id: AsteroidDebrisMedium parent: BaseAsteroidDebris - name: Asteroid Debris Medium - noSpawn: true + name: asteroid debris medium + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -77,8 +77,8 @@ - type: entity id: AsteroidDebrisLarge parent: BaseAsteroidDebris - name: Asteroid Debris Large - noSpawn: true + name: asteroid debris large + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -87,8 +87,8 @@ - type: entity id: AsteroidDebrisLarger parent: BaseAsteroidDebris - name: Asteroid Debris Larger - noSpawn: true + name: asteroid debris larger + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -98,8 +98,8 @@ - type: entity id: AsteroidSalvageSmall parent: BaseAsteroidDebris - name: Salvage Asteroid Small - noSpawn: true + name: salvage asteroid small + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -110,8 +110,8 @@ - type: entity id: AsteroidSalvageMedium parent: BaseAsteroidDebris - name: Salvage Asteroid Medium - noSpawn: true + name: salvage asteroid medium + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -122,8 +122,8 @@ - type: entity id: AsteroidSalvageLarge parent: BaseAsteroidDebris - name: Salvage Asteroid Large - noSpawn: true + name: salvage asteroid large + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -134,8 +134,8 @@ - type: entity id: AsteroidSalvageHuge parent: BaseAsteroidDebris - name: Salvage Asteroid Huge - noSpawn: true + name: salvage asteroid huge + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder diff --git a/Resources/Prototypes/Entities/World/Debris/wrecks.yml b/Resources/Prototypes/Entities/World/Debris/wrecks.yml index 4c5a3be48f7..7bbeadeb5ba 100644 --- a/Resources/Prototypes/Entities/World/Debris/wrecks.yml +++ b/Resources/Prototypes/Entities/World/Debris/wrecks.yml @@ -1,7 +1,7 @@ - type: entity id: BaseScrapDebris parent: BaseDebris - name: Scrap Debris + name: scrap debris abstract: true components: - type: MapGrid @@ -52,8 +52,8 @@ - type: entity id: ScrapDebrisSmall parent: BaseScrapDebris - name: Scrap Debris Small - noSpawn: true + name: scrap debris small + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -62,8 +62,8 @@ - type: entity id: ScrapDebrisMedium parent: BaseScrapDebris - name: Scrap Debris Medium - noSpawn: true + name: scrap debris medium + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder @@ -72,8 +72,8 @@ - type: entity id: ScrapDebrisLarge parent: BaseScrapDebris - name: Scrap Debris Large - noSpawn: true + name: scrap debris large + categories: [ HideSpawnMenu ] components: - type: MapGrid - type: BlobFloorPlanBuilder diff --git a/Resources/Prototypes/Entities/World/chunk.yml b/Resources/Prototypes/Entities/World/chunk.yml index b60fd0d91be..c7cb09c2a4b 100644 --- a/Resources/Prototypes/Entities/World/chunk.yml +++ b/Resources/Prototypes/Entities/World/chunk.yml @@ -1,11 +1,11 @@ - type: entity id: WorldChunk parent: MarkerBase - name: World Chunk + name: world chunk description: | It's rude to stare. It's also a bit odd you're looking at the abstract representation of the grid of reality. - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: WorldChunk - type: Sprite diff --git a/Resources/Prototypes/Entities/foldable.yml b/Resources/Prototypes/Entities/foldable.yml index a0843cd1250..260cda799b4 100644 --- a/Resources/Prototypes/Entities/foldable.yml +++ b/Resources/Prototypes/Entities/foldable.yml @@ -13,3 +13,11 @@ unfoldedLayer: True: {visible: false} False: {visible: true} + +- type: entity + abstract: true + parent: BaseFoldable + id: BaseDeployFoldable + name: "deploy foldable" + components: + - type: DeployFoldable diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index b5e5c13a7b9..21668cc91ae 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -149,7 +149,7 @@ components: - type: StationEvent weight: 6 - duration: 1 + duration: null earliestStart: 30 reoccurrenceDelay: 20 minimumPlayers: 30 @@ -459,6 +459,11 @@ - type: ZombifyOnDeath - type: IncurableZombie - type: InitialInfected + # Corvax-Не знаю какой тег, морти поправь + - type: NpcFactionMember + addFriendlyFactions: + - Zombie + # Corvax mindComponents: - type: InitialInfectedRole prototype: InitialInfected diff --git a/Resources/Prototypes/GameRules/meteorswarms.yml b/Resources/Prototypes/GameRules/meteorswarms.yml index 1c0d01d955d..49356465ca0 100644 --- a/Resources/Prototypes/GameRules/meteorswarms.yml +++ b/Resources/Prototypes/GameRules/meteorswarms.yml @@ -17,6 +17,20 @@ GameRuleMeteorSwarmLarge: 5 GameRuleUristSwarm: 0.05 +- type: weightedRandomEntity + id: MeteorSpawnAsteroidWallTable + weights: + AsteroidRock: 10 + AsteroidRockCoal: 5 + AsteroidRockQuartz: 5 + AsteroidRockTin: 5 + AsteroidRockSilver: 2 + AsteroidRockGold: 2 + AsteroidRockPlasma: 2 + AsteroidRockDiamond: 2 + AsteroidRockUranium: 0.5 + AsteroidRockBananium: 0.5 + - type: entity parent: BaseGameRule id: GameRuleMeteorSwarm diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index dd5c76e4f02..52ef14a617f 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -18,10 +18,8 @@ agentName: thief-round-end-agent-name definitions: - prefRoles: [ Thief ] - maxRange: - min: 1 - max: 3 - playerRatio: 1 + max: 3 + playerRatio: 15 lateJoinAdditional: true allowNonHumans: true multiAntagSetting: NotExclusive diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index 3e4ea6d7b31..a6a17aa4080 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -251,6 +251,11 @@ - type: ZombifyOnDeath - type: IncurableZombie - type: InitialInfected + # Corvax-Не знаю какой тег, морти поправь + - type: NpcFactionMember + addFriendlyFactions: + - Zombie + # Corvax mindComponents: - type: InitialInfectedRole prototype: InitialInfected diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 5aef050fec6..65fbf0b91d9 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -341,6 +341,8 @@ packetPrototype: SugarcaneSeeds productPrototypes: - Sugarcane + mutationPrototypes: + - papercane harvestRepeat: Repeat lifespan: 60 maturation: 6 @@ -355,6 +357,24 @@ Max: 5 PotencyDivisor: 5 +- type: seed + id: papercane + name: seeds-papercane-name + noun: seeds-noun-seeds + displayName: seeds-papercane-display-name + plantRsi: Objects/Specific/Hydroponics/papercane.rsi + packetPrototype: PapercaneSeeds + productPrototypes: + - Papercane + harvestRepeat: Repeat + lifespan: 60 + maturation: 6 + production: 6 + yield: 3 + potency: 10 + growthStages: 3 + idealHeat: 298 + - type: seed id: towercap name: seeds-towercap-name @@ -625,6 +645,34 @@ packetPrototype: AppleSeeds productPrototypes: - FoodApple + mutationPrototypes: + - goldenApple + harvestRepeat: Repeat + lifespan: 55 + maturation: 6 + production: 6 + yield: 3 + potency: 10 + idealLight: 6 + chemicals: + Nutriment: + Min: 1 + Max: 10 + PotencyDivisor: 10 + Vitamin: + Min: 1 + Max: 4 + PotencyDivisor: 25 + +- type: seed + id: goldenApple + name: seeds-goldenapple-name + noun: seeds-noun-seeds + displayName: seeds-goldenapple-display-name + plantRsi: Objects/Specific/Hydroponics/golden_apple.rsi + packetPrototype: GoldenAppleSeeds + productPrototypes: + - FoodGoldenApple harvestRepeat: Repeat lifespan: 55 maturation: 6 @@ -632,6 +680,8 @@ yield: 3 potency: 10 idealLight: 6 + waterConsumption: 0.75 + nutrientConsumption: 0.75 chemicals: Nutriment: Min: 1 @@ -641,6 +691,10 @@ Min: 1 Max: 4 PotencyDivisor: 25 + DoctorsDelight: + Min: 3 + Max: 13 + PotencyDivisor: 10 - type: seed id: corn @@ -1192,6 +1246,8 @@ packetPrototype: GalaxythistleSeeds productPrototypes: - FoodGalaxythistle + mutationPrototypes: + - glasstle lifespan: 25 maturation: 10 production: 3 @@ -1205,6 +1261,28 @@ Max: 25 PotencyDivisor: 4 +- type: seed + id: glasstle + name: seeds-glasstle-name + noun: seeds-noun-seeds + displayName: seeds-glasstle-display-name + plantRsi: Objects/Specific/Hydroponics/glasstle.rsi + packetPrototype: GlasstleSeeds + productPrototypes: + - FoodGlasstle + lifespan: 25 + maturation: 10 + production: 3 + yield: 3 + potency: 10 + growthStages: 3 + waterConsumption: 0.5 + chemicals: + Razorium: + Min: 1 + Max: 25 + PotencyDivisor: 4 + - type: seed id: flyAmanita name: seeds-flyamanita-name diff --git a/Resources/Prototypes/Magic/forcewall_spells.yml b/Resources/Prototypes/Magic/forcewall_spells.yml index f1865cf7229..3001f71421e 100644 --- a/Resources/Prototypes/Magic/forcewall_spells.yml +++ b/Resources/Prototypes/Magic/forcewall_spells.yml @@ -1,6 +1,6 @@ -- type: entity +- type: entity id: ActionForceWall - name: Forcewall + name: forcewall description: Creates a magical barrier. components: - type: InstantAction diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index f543e8ce63d..7fd97cbc680 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -37,7 +37,7 @@ #medical ChiefMedicalOfficer: [ 1, 1 ] MedicalDoctor: [ 3, 4 ] - Chemist: [ 1, 2 ] + Chemist: [ 2, 2 ] MedicalIntern: [ 2, 2 ] Paramedic: [ 1, 2 ] #science diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index a1ef8670dd7..570328ef92b 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -16,7 +16,7 @@ !type:NanotrasenNameGenerator prefixCreator: 'ED' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml # To do - add railway station + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml # TODO - add railway station - type: StationJobs availableJobs: #service @@ -38,8 +38,9 @@ #medical ChiefMedicalOfficer: [ 1, 1 ] Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] + MedicalDoctor: [ 2, 2 ] MedicalIntern: [ 2, 2 ] + Paramedic: [ 1, 1 ] #science ResearchDirector: [ 1, 1 ] Scientist: [ 4, 4 ] diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index f0704704631..36922e76c3d 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -78,6 +78,7 @@ ClothingHeadsetAltMedicalStealObjective: 1 FireAxeStealObjective: 1 #eng AmePartFlatpackStealObjective: 1 + ADTClothingMaskGasCEStealObjective: 1 # ADT Tweak: add gas mask CE ExpeditionsCircuitboardStealObjective: 1 #sup CargoShuttleCircuitboardStealObjective: 1 SalvageShuttleCircuitboardStealObjective: 1 diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index 52117b9ce9c..1a9b4223cb0 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -347,8 +347,8 @@ state: ian - type: stealTargetGroup - id: AnimalBingus - name: Bingus + id: AnimalNamedCat + name: CMO's Cat sprite: sprite: Mobs/Pets/bingus.rsi state: bingus diff --git a/Resources/Prototypes/Objectives/thief.yml b/Resources/Prototypes/Objectives/thief.yml index cc94ab02b34..26e598f1215 100644 --- a/Resources/Prototypes/Objectives/thief.yml +++ b/Resources/Prototypes/Objectives/thief.yml @@ -61,7 +61,7 @@ - type: StealCondition stealGroup: Figurines minCollectionSize: 10 - maxCollectionSize: 50 #will be limited to the number of figures on the station anyway. + maxCollectionSize: 18 #will be limited to the number of figures on the station anyway. - type: Objective difficulty: 0.25 @@ -94,7 +94,7 @@ - type: StealCondition stealGroup: Stamp minCollectionSize: 5 - maxCollectionSize: 15 + maxCollectionSize: 8 - type: Objective difficulty: 1.0 @@ -436,7 +436,7 @@ id: BingusStealObjective components: - type: StealCondition - stealGroup: AnimalBingus + stealGroup: AnimalNamedCat - type: Objective difficulty: 1 diff --git a/Resources/Prototypes/Procedural/salvage_factions.yml b/Resources/Prototypes/Procedural/salvage_factions.yml index 847a40ac025..f1e29375aa2 100644 --- a/Resources/Prototypes/Procedural/salvage_factions.yml +++ b/Resources/Prototypes/Procedural/salvage_factions.yml @@ -1,5 +1,6 @@ - type: salvageFaction id: Xenos + desc: salvage-faction-xenos entries: - proto: MobXeno - proto: MobXenoDrone @@ -24,6 +25,7 @@ - type: salvageFaction id: Carps + desc: salvage-faction-carps entries: - proto: MobCarpDungeon # These do too much damage for salvage, need nerfs diff --git a/Resources/Prototypes/Procedural/salvage_mods.yml b/Resources/Prototypes/Procedural/salvage_mods.yml index 6c2bf678621..ca64d29a52a 100644 --- a/Resources/Prototypes/Procedural/salvage_mods.yml +++ b/Resources/Prototypes/Procedural/salvage_mods.yml @@ -1,25 +1,29 @@ # Markers - type: entity id: SalvageShuttleMarker - name: Salvage shuttle marker + name: salvage shuttle marker parent: FTLPoint # Biome mods -> at least 1 required - type: salvageBiomeMod id: Caves + desc: salvage-biome-mod-caves biome: Caves - type: salvageBiomeMod id: Grasslands + desc: salvage-biome-mod-grasslands biome: Grasslands - type: salvageBiomeMod id: Snow + desc: salvage-biome-mod-snow cost: 1 biome: Snow - type: salvageBiomeMod id: Lava + desc: salvage-biome-mod-lava cost: 2 biome: Lava @@ -32,36 +36,38 @@ # Light mods -> required - type: salvageLightMod id: Daylight - desc: Daylight + desc: salvage-light-mod-daylight color: "#D8B059" biomes: - Grasslands - type: salvageLightMod id: Lavalight - desc: Daylight + desc: salvage-light-mod-daylight color: "#A34931" biomes: - Lava - type: salvageLightMod id: Evening - desc: Evening + desc: salvage-light-mod-evening color: "#2b3143" - type: salvageLightMod id: Night - desc: Night time + desc: salvage-light-mod-night cost: 1 color: null # Temperatures - type: salvageTemperatureMod id: RoomTemp + desc: salvage-temperature-mod-room-temperature cost: 0 - type: salvageTemperatureMod id: Hot + desc: salvage-temperature-mod-hot cost: 1 temperature: 323.15 # 50C biomes: @@ -72,7 +78,7 @@ - type: salvageTemperatureMod id: Burning - desc: High temperature + desc: salvage-temperature-mod-high-temperature cost: 2 temperature: 423.15 # 200C biomes: @@ -82,7 +88,7 @@ - type: salvageTemperatureMod id: Melting - desc: Extreme heat + desc: salvage-temperature-mod-extreme-heat cost: 4 temperature: 1273.15 # 1000C hot hot hot biomes: @@ -90,6 +96,7 @@ - type: salvageTemperatureMod id: Cold + desc: salvage-temperature-mod-cold cost: 1 temperature: 275.15 # 2C biomes: @@ -100,7 +107,7 @@ - type: salvageTemperatureMod id: Tundra - desc: Low temperature + desc: salvage-temperature-mod-low-temperature cost: 2 temperature: 263.15 # -40C biomes: @@ -109,7 +116,7 @@ - type: salvageTemperatureMod id: Frozen - desc: Extreme cold + desc: salvage-temperature-mod-extreme-cold cost: 4 temperature: 123.15 # -150C biomes: @@ -118,7 +125,7 @@ # Air mixtures - type: salvageAirMod id: Space - desc: No atmosphere + desc: salvage-air-mod-no-atmosphere space: true cost: 2 biomes: @@ -128,6 +135,7 @@ - type: salvageAirMod id: Breathable cost: 0 + desc: salvage-air-mod-breathable-atmosphere gases: - 21.824779 # oxygen - 82.10312 # nitrogen @@ -135,7 +143,7 @@ - type: salvageAirMod id: Sleepy cost: 1 - desc: Dangerous atmosphere + desc: salvage-air-mod-dangerous-atmosphere gases: - 21.824779 # oxygen - 72.10312 # nitrogen @@ -155,7 +163,7 @@ - type: salvageAirMod id: Poisoned cost: 2 - desc: Dangerous atmosphere + desc: salvage-air-mod-dangerous-atmosphere gases: - 21.824779 # oxygen - 77.10312 # nitrogen @@ -170,7 +178,7 @@ - type: salvageAirMod id: Poison cost: 3 - desc: Toxic atmosphere + desc: salvage-air-mod-toxic-atmosphere gases: - 21.824779 # oxygen - 0 @@ -183,7 +191,7 @@ - type: salvageAirMod id: Plasma cost: 4 - desc: Toxic atmosphere + desc: salvage-air-mod-toxic-atmosphere gases: - 0 - 0 @@ -196,7 +204,7 @@ - type: salvageAirMod id: Burnable cost: 5 - desc: Volatile atmosphere + desc: salvage-air-mod-volatile-atmosphere gases: - 21.824779 # oxygen - 0 @@ -220,6 +228,7 @@ # For now just simple 1-dungeon setups - type: salvageDungeonMod id: Experiment + desc: salvage-dungeon-mod-experiment proto: Experiment biomes: #- LowDesert @@ -227,24 +236,28 @@ - type: salvageDungeonMod id: LavaBrig + desc: salvage-dungeon-mod-lava-brig proto: LavaBrig biomes: - Lava - type: salvageDungeonMod id: Mineshaft + desc: salvage-dungeon-mod-mineshaft proto: Mineshaft biomes: - Caves - type: salvageDungeonMod id: SnowyLabs + desc: salvage-dungeon-mod-snowy-labs proto: SnowyLabs biomes: - Snow - + - type: salvageDungeonMod id: Haunted + desc: salvage-dungeon-mod-haunted proto: Haunted biomes: - Caves diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index 2087d88655d..7705a20acdc 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -19,6 +19,10 @@ conditions: - !type:OrganType type: Drask + - !type:Oxygenate + conditions: + - !type:OrganType + type: Novakid # End ADT tweak - !type:Oxygenate conditions: @@ -78,6 +82,12 @@ Poison: effects: - !type:HealthChange + # Start ADT tweak: Novakid + conditions: + - !type:OrganType + type: Novakid + shouldHave: false + # End ADT tweak damage: types: Poison: 3 @@ -85,20 +95,72 @@ reagent: Inaprovaline amount: -2.0 Gas: + # Start ADT tweak: Novakid effects: - !type:HealthChange + conditions: + - !type:OrganType + type: Novakid + shouldHave: false + - !type:ReagentThreshold + reagent: Plasma + min: 1 + ignoreResistances: true + damage: + types: + Poison: 1 + - !type:ChemVomit + probability: 0.12 + conditions: + - !type:OrganType + type: Novakid + shouldHave: false + - !type:ReagentThreshold + reagent: Plasma + min: 0.8 + - !type:HealthChange + conditions: + - !type:OrganType + type: Novakid + - !type:ReagentThreshold + reagent: Plasma + min: 0.6 scaleByQuantity: true ignoreResistances: true damage: types: - Poison: - 1 - # We need a metabolism effect on reagent removal + Blunt: -0.015 + Slash: -0.015 + Piercing: -0.015 + Heat: -0.015 + Poison: -0.012 + - !type:GenericStatusEffect + conditions: + - !type:OrganType + type: Novakid + - !type:ReagentThreshold + reagent: Plasma + min: 1 + key: SeeingRainbows + component: SeeingRainbows + type: Add + time: 5 + refresh: false + - !type:Drunk + conditions: + - !type:OrganType + type: Novakid + shouldHave: false + - !type:ReagentThreshold + reagent: Plasma + min: 1 + # End ADT tweak + # Cant be added until I add metabolism effects on reagent removal - !type:AdjustAlert alertType: Toxins conditions: - - !type:ReagentThreshold - min: 1.5 + - !type:ReagentThreshold + min: 1.5 clear: True time: 5 reactiveEffects: @@ -107,6 +169,7 @@ effects: - !type:FlammableReaction + - type: reagent id: Tritium name: reagent-name-tritium diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_banana.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_banana.yml index 190293f9d15..1cada5018cb 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_banana.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_banana.yml @@ -7,19 +7,19 @@ - to: jumpsuit steps: - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel doAfter: 1 - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel doAfter: 1 - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel @@ -28,7 +28,7 @@ amount: 1 doAfter: 1 - tag: ClownSuit - name: A Clown Suit + name: a clown suit icon: sprite: Clothing/Uniforms/Jumpsuit/clown.rsi state: icon @@ -45,19 +45,19 @@ - to: shoes steps: - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel doAfter: 1 - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel doAfter: 1 - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel @@ -66,7 +66,7 @@ amount: 1 doAfter: 1 - tag: ClownShoes - name: Clown Shoes + name: clown shoes icon: sprite: Clothing/Shoes/Specific/clown.rsi state: icon @@ -83,19 +83,19 @@ - to: mask steps: - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel doAfter: 1 - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel doAfter: 1 - tag: BananaPeel - name: A Banana Peel + name: a banana peel icon: sprite: Objects/Specific/Hydroponics/banana.rsi state: peel @@ -104,7 +104,7 @@ amount: 1 doAfter: 1 - tag: ClownMask - name: A Clown Mask + name: a clown mask icon: sprite: Clothing/Mask/clown.rsi state: icon diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml index da5ea21edf5..1600cd4641f 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/clown_hardsuit.yml @@ -1,4 +1,4 @@ -- type: constructionGraph +- type: constructionGraph id: ClownHardsuit start: start graph: @@ -10,13 +10,13 @@ amount: 5 doAfter: 1 - tag: SuitEVA - name: An EVA suit + name: an EVA suit icon: sprite: Clothing/OuterClothing/Suits/eva.rsi state: icon doAfter: 1 - tag: HelmetEVA - name: An EVA helmet + name: an EVA helmet icon: sprite: Clothing/Head/Helmets/eva.rsi state: icon diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/mime_hardsuit.yml b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/mime_hardsuit.yml index a72a5ccc8c8..6d3826f701a 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/clothing/mime_hardsuit.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/clothing/mime_hardsuit.yml @@ -10,13 +10,13 @@ amount: 5 doAfter: 1 - tag: SuitEVA - name: An EVA suit + name: an EVA suit icon: sprite: Clothing/OuterClothing/Suits/eva.rsi state: icon doAfter: 1 - tag: HelmetEVA - name: An EVA helmet + name: an EVA helmet icon: sprite: Clothing/Head/Helmets/eva.rsi state: icon diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/fun/bananium_horn.yml b/Resources/Prototypes/Recipes/Construction/Graphs/fun/bananium_horn.yml index a4d0edc46a6..e8380d0d2db 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/fun/bananium_horn.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/fun/bananium_horn.yml @@ -7,7 +7,7 @@ - to: bananiumHorn steps: - tag: Pipe - name: Pipe + name: pipe icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeStraight @@ -16,7 +16,7 @@ amount: 4 doAfter: 1 - tag: BikeHorn - name: Bike Horn + name: bike horn icon: sprite: Objects/Fun/bikehorn.rsi state: icon diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml index f83a3b1e95e..45ac8cc7021 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/mannequin.yml @@ -20,6 +20,7 @@ edges: - to: start completed: + - !type:EmptyAllContainers - !type:SpawnPrototype prototype: MaterialWoodPlank amount: 5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml new file mode 100644 index 00000000000..1a6492fd927 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/shelfs.yml @@ -0,0 +1,277 @@ +- type: constructionGraph + id: Shelf + start: start + graph: + - node: start + actions: + - !type:DeleteEntity {} + edges: +# Normal + - to: ShelfWood + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 4 + doAfter: 2 + - to: ShelfMetal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Steel + amount: 5 + doAfter: 3 + - to: ShelfGlass + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Glass + amount: 4 + doAfter: 2 +# Reinforced + - to: ShelfRWood + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 8 + doAfter: 3 + - material: Cable + amount: 2 + doAfter: 1 + - to: ShelfRMetal + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plasteel + amount: 5 + doAfter: 3 + - material: ReinforcedGlass + amount: 5 + doAfter: 2 + - material: Cable + amount: 3 + doAfter: 1 + - to: ShelfRGlass + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plastic + amount: 5 + doAfter: 2 + - material: ReinforcedGlass + amount: 5 + doAfter: 3 + - material: Cable + amount: 2 + doAfter: 1 +# Departmental + - to: ShelfBar + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: WoodPlank + amount: 6 + doAfter: 2 + - to: ShelfKitchen + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: MetalRod + amount: 2 + doAfter: 1 + - material: Steel + amount: 5 + - material: WoodPlank + amount: 3 + doAfter: 2 + - to: ShelfChemistry + completed: + - !type:SnapToGrid + southRotation: true + steps: + - material: Plasteel + amount: 2 + doAfter: 2 + - material: ReinforcedGlass + amount: 5 + doAfter: 2 + - material: Plastic + amount: 5 + doAfter: 2 + - material: Cable + amount: 2 + doAfter: 1 + +# Normal deconstructs + - node: ShelfWood + entity: ShelfWood + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 4 + steps: + - tool: Prying + doAfter: 2 + + - node: ShelfMetal + entity: ShelfMetal + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + steps: + - tool: Screwing + doAfter: 5 + + - node: ShelfGlass + entity: ShelfGlass + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: SheetGlass1 + amount: 4 + steps: + - tool: Screwing + doAfter: 2 +# Reinforced deconstructs + - node: ShelfRWood + entity: ShelfRWood + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 8 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Screwing + doAfter: 5 + - tool: Prying + doAfter: 2 + + - node: ShelfRMetal + entity: ShelfRMetal + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 3 + steps: + - tool: Screwing + doAfter: 2 + - tool: Welding + doAfter: 5 + + - node: ShelfRGlass + entity: ShelfRGlass + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: SheetPlastic1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Welding + doAfter: 2 + - tool: Screwing + doAfter: 4 + +# Departmental deconstructs + - node: ShelfBar + entity: ShelfBar + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 6 + steps: + - tool: Prying + doAfter: 3 + + - node: ShelfKitchen + entity: ShelfKitchen + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: PartRodMetal + amount: 2 + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 5 + - !type:SpawnPrototype + prototype: MaterialWoodPlank1 + amount: 3 + steps: + - tool: Screwing + doAfter: 2 + - tool: Welding + doAfter: 2 + - tool: Prying + doAfter: 1 + + - node: ShelfChemistry + entity: ShelfChemistry + edges: + - to: start + completed: + - !type:EmptyAllContainers + - !type:SpawnPrototype + prototype: SheetPlasteel1 + amount: 2 + - !type:SpawnPrototype + prototype: SheetPlastic1 + amount: 5 + - !type:SpawnPrototype + prototype: SheetRGlass1 + amount: 5 + - !type:SpawnPrototype + prototype: CableApcStack1 + amount: 2 + steps: + - tool: Welding + doAfter: 2 + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + - tool: Prying + doAfter: 4 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/blast_door.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/blast_door.yml index ad84d830a70..782e894fe73 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/blast_door.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/blast_door.yml @@ -1,4 +1,4 @@ -- type: constructionGraph +- type: constructionGraph id: BlastDoor start: start graph: @@ -47,7 +47,7 @@ steps: - tag: DoorElectronics store: board - name: Door Electronics + name: door electronics icon: sprite: "Objects/Misc/module.rsi" state: "door_electronics" diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml index 0d7bdddd2f2..74ac16eabd2 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/firelock.yml @@ -1,4 +1,4 @@ -- type: constructionGraph +- type: constructionGraph id: Firelock start: start graph: @@ -50,7 +50,7 @@ steps: - tag: FirelockElectronics store: board - name: Firelock Electronics + name: firelock electronics icon: sprite: "Objects/Misc/module.rsi" state: "mainboard" diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/glassbox.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/glassbox.yml index 081f22ea8dd..2a051b46d4e 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/glassbox.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/glassbox.yml @@ -1,4 +1,4 @@ -- type: constructionGraph +- type: constructionGraph id: GlassBox start: start graph: @@ -42,7 +42,7 @@ - !type:EntityAnchored steps: - tag: SignalTrigger - name: a Signal Trigger + name: a signal trigger icon: sprite: Objects/Devices/signaltrigger.rsi state: signaltrigger diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/shutter.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/shutter.yml index db53de288a4..7086216cba3 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/shutter.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/shutter.yml @@ -1,4 +1,4 @@ -- type: constructionGraph +- type: constructionGraph id: Shutters start: start graph: @@ -45,7 +45,7 @@ anchored: true steps: - component: DoorElectronics - name: Door Electronics + name: door electronics icon: sprite: "Objects/Misc/module.rsi" state: "door_electronics" diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml index 6e64f061eb9..d366a2ea59a 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/tools/logic_gate.yml @@ -34,7 +34,7 @@ state: icon name: a multitool - node: logic_gate - entity: LogicGate + entity: LogicGateOr - node: edge_detector entity: EdgeDetector - node: power_sensor diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_machines.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_machines.yml index 2f151336959..8c880d39641 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_machines.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/disposal_machines.yml @@ -1,4 +1,4 @@ -- type: constructionGraph +- type: constructionGraph id: DisposalMachine start: start graph: @@ -64,7 +64,7 @@ - to: frame_mailing steps: - tag: MailingUnitElectronics - name: Mailing Unit Electronics + name: mailing unit electronics icon: sprite: "Objects/Misc/module.rsi" state: "net_wired" diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml index 922e8857c92..f27b751572b 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/utilities/solarpanel.yml @@ -7,7 +7,7 @@ - to: solarassembly steps: - tag: SolarAssemblyFlatpack - name: Solar Assembly Parts + name: solar assembly parts icon: sprite: Objects/Devices/flatpack.rsi state: solar-assembly-part @@ -39,7 +39,7 @@ - !type:EntityAnchored steps: - tag: SolarTrackerElectronics - name: Solar Tracker Electronics + name: solar tracker electronics icon: sprite: Objects/Misc/module.rsi state: id_mod diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml index 346b49cf2f7..04b94690467 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/improvised_arrow.yml @@ -13,7 +13,7 @@ amount: 1 doAfter: 0.5 - tag: GlassShard - name: Glass Shard + name: glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_grenade.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_grenade.yml index 243a030c981..838a6cdb6c2 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_grenade.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_grenade.yml @@ -48,13 +48,13 @@ steps: - component: PayloadTrigger store: payloadTrigger - name: Trigger + name: trigger doAfter: 0.5 - to: caseWithPayload steps: - tag: Payload store: payload - name: Payload + name: payload doAfter: 0.5 - node: caseWithTrigger @@ -74,7 +74,7 @@ steps: - tag: Payload store: payload - name: Payload + name: payload doAfter: 0.5 - node: caseWithPayload @@ -94,7 +94,7 @@ steps: - component: PayloadTrigger store: payloadTrigger - name: Trigger + name: trigger doAfter: 0.5 - node: grenade diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_mine.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_mine.yml index 820676d1737..39272a9b610 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_mine.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/modular_mine.yml @@ -52,7 +52,7 @@ steps: - tag: Payload store: payload - name: Payload + name: payload doAfter: 0.5 - node: mine diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/shiv.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/shiv.yml index 28de8e7f7d4..51a1f9905e0 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/shiv.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/shiv.yml @@ -22,7 +22,7 @@ - to: icon steps: - tag: GlassShard - name: Glass Shard + name: glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 @@ -57,7 +57,7 @@ - to: icon steps: - tag: ReinforcedGlassShard - name: Reinforced Glass Shard + name: reinforced glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 @@ -92,7 +92,7 @@ - to: icon steps: - tag: PlasmaGlassShard - name: Plasma Glass Shard + name: plasma glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 @@ -127,7 +127,7 @@ - to: icon steps: - tag: UraniumGlassShard - name: Uranium Glass Shard + name: uranium glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml index f1efe63ff50..3d65c13fe26 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/spear.yml @@ -13,7 +13,7 @@ amount: 3 doAfter: 1 - tag: GlassShard - name: Glass Shard + name: glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 @@ -36,7 +36,7 @@ amount: 3 doAfter: 1 - tag: ReinforcedGlassShard - name: Reinforced Glass Shard + name: reinforced glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 @@ -59,7 +59,7 @@ amount: 3 doAfter: 1 - tag: PlasmaGlassShard - name: Plasma Glass Shard + name: plasma glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 @@ -82,7 +82,7 @@ amount: 3 doAfter: 1 - tag: UraniumGlassShard - name: Uranium Glass Shard + name: uranium glass shard icon: sprite: Objects/Materials/Shards/shard.rsi state: shard1 diff --git a/Resources/Prototypes/Recipes/Construction/storage.yml b/Resources/Prototypes/Recipes/Construction/storage.yml index c8edebc5096..7128c79eee8 100644 --- a/Resources/Prototypes/Recipes/Construction/storage.yml +++ b/Resources/Prototypes/Recipes/Construction/storage.yml @@ -67,3 +67,151 @@ canBuildInImpassable: false conditions: - !type:TileNotBlocked + +# Shelfs +# Normals +- type: construction + id: ShelfWood + name: wooden shelf + description: A convenient place to place, well, anything really. + graph: Shelf + startNode: start + targetNode: ShelfWood + icon: + sprite: Structures/Storage/Shelfs/wood.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfMetal + name: metal shelf + description: A sturdy place to place, well, anything really. + graph: Shelf + startNode: start + targetNode: ShelfMetal + icon: + sprite: Structures/Storage/Shelfs/metal.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfGlass + name: glass shelf + description: Just like a normal shelf! But fragile and without the walls! + graph: Shelf + startNode: start + targetNode: ShelfGlass + icon: + sprite: Structures/Storage/Shelfs/glass.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +# Reinforced +- type: construction + id: ShelfRWood + name: sturdy wooden shelf + description: The perfect place to store all your vintage records. + graph: Shelf + startNode: start + targetNode: ShelfRWood + icon: + sprite: Structures/Storage/Shelfs/wood.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfRMetal + name: sturdy metal shelf + description: Nice and strong, and keeps your maints loot secure. + graph: Shelf + startNode: start + targetNode: ShelfRMetal + icon: + sprite: Structures/Storage/Shelfs/metal.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfRGlass + name: sturdy glass shelf + description: See through, decent strength, shiny plastic case. Whats not to love? + graph: Shelf + startNode: start + targetNode: ShelfRGlass + icon: + sprite: Structures/Storage/Shelfs/glass.rsi + state: rbase + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +# Departmental +- type: construction + id: ShelfBar + name: bar shelf + description: A convenient place for all your extra booze, specifically designed to hold more bottles! + graph: Shelf + startNode: start + targetNode: ShelfBar + icon: + sprite: Structures/Storage/Shelfs/Departments/Service/bar.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfKitchen + name: cooking shelf + description: Holds your knifes, spice, and everything nice! + graph: Shelf + startNode: start + targetNode: ShelfKitchen + icon: + sprite: Structures/Storage/Shelfs/Departments/Service/kitchen.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition + +- type: construction + id: ShelfChemistry + name: chemical shelf + description: Perfect for keeping the most important chemicals safe, and out of the clumsy clowns hands! + graph: Shelf + startNode: start + targetNode: ShelfChemistry + icon: + sprite: Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: true + conditions: + - !type:WallmountCondition diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 86c00029960..2adf8c85023 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -796,7 +796,7 @@ - !type:TileNotBlocked - type: construction - name: Thin firelock + name: thin firelock id: FirelockEdge graph: Firelock startNode: start diff --git a/Resources/Prototypes/Recipes/Construction/utilities.yml b/Resources/Prototypes/Recipes/Construction/utilities.yml index 930768b3ea7..d07201bf7b3 100644 --- a/Resources/Prototypes/Recipes/Construction/utilities.yml +++ b/Resources/Prototypes/Recipes/Construction/utilities.yml @@ -394,7 +394,7 @@ targetNode: half category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeHalf @@ -408,7 +408,7 @@ targetNode: straight category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeStraight @@ -422,7 +422,7 @@ targetNode: bend category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeBend @@ -436,7 +436,7 @@ targetNode: tjunction category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeTJunction @@ -450,7 +450,7 @@ targetNode: fourway category: construction-category-utilities placementMode: SnapgridCenter - canBuildInImpassable: false + canBuildInImpassable: true icon: sprite: Structures/Piping/Atmospherics/pipe.rsi state: pipeFourway diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 0a8ff18aad8..3c750e01902 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -591,6 +591,17 @@ FoodCheeseSlice: 1 FoodTomato: 1 +- type: microwaveMealRecipe + id: RecipeUraniumPizza + name: spicy rock pizza recipe + result: FoodPizzaUranium + time: 30 + solids: + FoodDoughFlat: 1 + FoodChiliPepper: 2 + FoodTomato: 2 + SheetUranium1: 2 + #Italian - type: microwaveMealRecipe id: RecipeBoiledSpaghetti @@ -635,12 +646,13 @@ name: chow mein recipe result: FoodNoodlesChowmein time: 10 + reagents: + Egg: 6 solids: FoodNoodlesBoiled: 1 FoodEggplant: 1 FoodCarrot: 1 FoodCorn: 1 - FoodEgg: 1 - type: microwaveMealRecipe id: RecipeOatmeal @@ -700,9 +712,10 @@ name: egg-fried rice recipe result: FoodRiceEgg time: 15 + reagents: + Egg: 6 solids: FoodRiceBoiled: 1 - FoodEgg: 1 FoodCarrot: 1 - type: microwaveMealRecipe @@ -1436,10 +1449,10 @@ reagents: Flour: 15 Sugar: 30 + Egg: 18 solids: FoodButter: 2 FoodSnackChocolateBar: 2 - FoodEgg: 3 #Donks i guess - type: microwaveMealRecipe @@ -1876,10 +1889,10 @@ reagents: Flour: 15 Sugar: 30 + Egg: 18 solids: FoodCannabisButter: 2 FoodSnackChocolateBar: 2 - FoodEgg: 3 - type: microwaveMealRecipe id: RecipeCornInButter diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml index 024a7c58763..e928d159332 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/makeshiftstunprod.yml @@ -9,7 +9,7 @@ - material: MetalRod amount: 1 - tag: PowerCellSmall - name: Power Cell Small + name: power cell small icon: sprite: Objects/Power/power_cells.rsi state: small @@ -20,7 +20,7 @@ color: red name: cuffs - tag: Igniter - name: Igniter + name: igniter icon: sprite: Objects/Devices/igniter.rsi state: icon diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/strawhat.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/strawhat.yml index 7203a4fdfb3..be429bb5648 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/strawhat.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/strawhat.yml @@ -7,22 +7,22 @@ - to: strawhat steps: - tag: Wheat - name: Wheat Bushel + name: wheat bushel icon: sprite: Objects/Specific/Hydroponics/wheat.rsi state: produce - tag: Wheat - name: Wheat Bushel + name: wheat bushel icon: sprite: Objects/Specific/Hydroponics/wheat.rsi state: produce - tag: Wheat - name: Wheat Bushel + name: wheat bushel icon: sprite: Objects/Specific/Hydroponics/wheat.rsi state: produce - tag: Wheat - name: Wheat Bushel + name: wheat bushel icon: sprite: Objects/Specific/Hydroponics/wheat.rsi state: produce diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index b78703942e1..4690055a9fd 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -974,4 +974,12 @@ completetime: 4 materials: Steel: 100 - Glass: 500 \ No newline at end of file + Glass: 500 + +- type: latheRecipe + id: CutterMachineCircuitboard + result: CutterMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 500 diff --git a/Resources/Prototypes/Recipes/Lathes/medical.yml b/Resources/Prototypes/Recipes/Lathes/medical.yml index 6460c745fa3..c414bfad525 100644 --- a/Resources/Prototypes/Recipes/Lathes/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/medical.yml @@ -134,6 +134,7 @@ - type: latheRecipe id: Medkit result: Medkit + name: lathe-recipe-Medkit-name completetime: 2 materials: Plastic: 300 @@ -141,6 +142,7 @@ - type: latheRecipe id: MedkitBurn result: MedkitBurn + name: lathe-recipe-MedkitBurn-name completetime: 2 materials: Plastic: 300 @@ -148,6 +150,7 @@ - type: latheRecipe id: MedkitToxin result: MedkitToxin + name: lathe-recipe-MedkitToxin-name completetime: 2 materials: Plastic: 300 @@ -155,6 +158,7 @@ - type: latheRecipe id: MedkitO2 result: MedkitO2 + name: lathe-recipe-MedkitO2-name completetime: 2 materials: Plastic: 300 @@ -162,6 +166,7 @@ - type: latheRecipe id: MedkitBrute result: MedkitBrute + name: lathe-recipe-MedkitBrute-name completetime: 2 materials: Plastic: 300 @@ -169,6 +174,7 @@ - type: latheRecipe id: MedkitAdvanced result: MedkitAdvanced + name: lathe-recipe-MedkitAdvanced-name completetime: 2 materials: Plastic: 300 @@ -176,6 +182,7 @@ - type: latheRecipe id: MedkitRadiation result: MedkitRadiation + name: lathe-recipe-MedkitRadiation-name completetime: 2 materials: Plastic: 300 @@ -183,6 +190,7 @@ - type: latheRecipe id: MedkitCombat result: MedkitCombat + name: lathe-recipe-MedkitCombat-name completetime: 2 materials: Plastic: 300 diff --git a/Resources/Prototypes/Recipes/Lathes/tiles.yml b/Resources/Prototypes/Recipes/Lathes/tiles.yml new file mode 100644 index 00000000000..8773dd245cd --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/tiles.yml @@ -0,0 +1,363 @@ +- type: latheRecipe + id: FloorTileItemDark + result: FloorTileItemDark + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkDiagonalMini + result: FloorTileItemDarkDiagonalMini + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkDiagonal + result: FloorTileItemDarkDiagonal + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkHerringbone + result: FloorTileItemDarkHerringbone + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkMini + result: FloorTileItemDarkMini + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkMono + result: FloorTileItemDarkMono + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkPavement + result: FloorTileItemDarkPavement + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkPavementVertical + result: FloorTileItemDarkPavementVertical + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemDarkOffset + result: FloorTileItemDarkOffset + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelCheckerDark + result: FloorTileItemSteelCheckerDark + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteel + result: FloorTileItemSteel + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelOffset + result: FloorTileItemSteelOffset + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelDiagonalMini + result: FloorTileItemSteelDiagonalMini + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelDiagonal + result: FloorTileItemSteelDiagonal + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelHerringbone + result: FloorTileItemSteelHerringbone + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelMini + result: FloorTileItemSteelMini + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelMono + result: FloorTileItemSteelMono + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelPavement + result: FloorTileItemSteelPavement + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelPavementVertical + result: FloorTileItemSteelPavementVertical + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhite + result: FloorTileItemWhite + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhiteOffset + result: FloorTileItemWhiteOffset + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhiteDiagonalMini + result: FloorTileItemWhiteDiagonalMini + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhiteDiagonal + result: FloorTileItemWhiteDiagonal + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhiteHerringbone + result: FloorTileItemWhiteHerringbone + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhiteMini + result: FloorTileItemWhiteMini + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhiteMono + result: FloorTileItemWhiteMono + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhitePavement + result: FloorTileItemWhitePavement + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemWhitePavementVertical + result: FloorTileItemWhitePavementVertical + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelCheckerLight + result: FloorTileItemSteelCheckerLight + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +# Other steel +- type: latheRecipe + id: FloorTileItemGratingMaint + result: FloorTileItemGratingMaint + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemTechmaint + result: FloorTileItemTechmaint + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +- type: latheRecipe + id: FloorTileItemSteelMaint + result: FloorTileItemSteelMaint + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + +# Wood +- type: latheRecipe + id: FloorTileItemWood + result: FloorTileItemWood + applyMaterialDiscount: false + completetime: 0.5 + materials: + Wood: 25 + +- type: latheRecipe + id: FloorTileItemWoodLarge + result: FloorTileItemWoodLarge + applyMaterialDiscount: false + completetime: 0.5 + materials: + Wood: 25 + +- type: latheRecipe + id: FloorTileItemWoodPattern + result: FloorTileItemWoodPattern + applyMaterialDiscount: false + completetime: 0.5 + materials: + Wood: 25 + +# Concrete +- type: latheRecipe + id: FloorTileItemConcrete + result: FloorTileItemConcrete + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemConcreteMono + result: FloorTileItemConcreteMono + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemConcreteSmooth + result: FloorTileItemConcreteSmooth + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemGrayConcrete + result: FloorTileItemGrayConcrete + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemGrayConcreteMono + result: FloorTileItemGrayConcreteMono + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemGrayConcreteSmooth + result: FloorTileItemGrayConcreteSmooth + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemOldConcrete + result: FloorTileItemOldConcrete + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemOldConcreteMono + result: FloorTileItemOldConcreteMono + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 + +- type: latheRecipe + id: FloorTileItemOldConcreteSmooth + result: FloorTileItemOldConcreteSmooth + applyMaterialDiscount: false + completetime: 0.5 + materials: + Steel: 25 + Plastic: 25 diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index 50800395698..ce89131c7b3 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -84,6 +84,8 @@ amount: 12 Sugar: amount: 5 + Milk: + amount: 5 effects: - !type:CreateEntityReactionEffect entity: FoodCakeBatter diff --git a/Resources/Prototypes/Roles/Antags/nukeops.yml b/Resources/Prototypes/Roles/Antags/nukeops.yml index 363d7a9704b..05dbc718567 100644 --- a/Resources/Prototypes/Roles/Antags/nukeops.yml +++ b/Resources/Prototypes/Roles/Antags/nukeops.yml @@ -44,9 +44,8 @@ # should be changed to nukie playtime when thats tracked (wyci) guides: [ NuclearOperatives ] -#Nuclear Operative Gear - type: startingGear - id: SyndicateOperativeGearFull + id: SyndicateOperativeGearFullNoUplink equipment: jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicate @@ -58,7 +57,7 @@ shoes: ClothingShoesBootsCombatFilled id: SyndiPDA pocket1: DoubleEmergencyOxygenTankFilled - pocket2: BaseUplinkRadio40TC + pocket2: BaseUplinkRadio40TC #ADT Оставил аплинк belt: ClothingBeltAssault #ADT nukebuff storage: back: @@ -67,6 +66,13 @@ - PinpointerSyndicateNuclear - DeathAcidifierImplanter +#Nuclear Operative Gear +- type: startingGear + id: SyndicateOperativeGearFull + parent: SyndicateOperativeGearFullNoUplink + equipment: + pocket2: BaseUplinkRadio40TC + #Nuclear Operative Commander Gear - type: startingGear id: SyndicateCommanderGearFull diff --git a/Resources/Prototypes/Roles/Antags/traitor.yml b/Resources/Prototypes/Roles/Antags/traitor.yml index 792a2c868fb..ba17e852b09 100644 --- a/Resources/Prototypes/Roles/Antags/traitor.yml +++ b/Resources/Prototypes/Roles/Antags/traitor.yml @@ -39,12 +39,47 @@ - PinpointerSyndicateNuclear - DeathAcidifierImplanter -# Syndicate Reinforcement NukeOps - type: startingGear - id: SyndicateOperativeGearReinforcementNukeOps - parent: SyndicateOperativeGearExtremelyBasic + id: SyndicateOperativeClothing + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + back: ClothingBackpackSyndicate + shoes: ClothingShoesBootsSyndieFilled + gloves: ClothingHandsGlovesColorBlack + +- type: startingGear + id: SyndicateReinforcementMedic + parent: SyndicateOperativeClothing + equipment: + pocket1: WeaponPistolViper + inhand: + - MedkitCombatFilled + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateReinforcementSpy + parent: SyndicateOperativeClothing equipment: - id: SyndiPDA #Do not give a PDA to the normal Reinforcement - it will spawn with a 20TC uplink + id: AgentIDCard + mask: ClothingMaskGasVoiceChameleon + pocket1: WeaponPistolViper + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateReinforcementThief + parent: SyndicateOperativeClothing + equipment: + pocket1: WeaponPistolViper + inhand: + - ToolboxSyndicateFilled + storage: + back: + - BoxSurvivalSyndicate + - SyndicateJawsOfLife #Syndicate Operative Outfit - Basic - type: startingGear diff --git a/Resources/Prototypes/Roles/Ghostroles/syndicate.yml b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml index 24c0d8b3e3b..8e1827e81bf 100644 --- a/Resources/Prototypes/Roles/Ghostroles/syndicate.yml +++ b/Resources/Prototypes/Roles/Ghostroles/syndicate.yml @@ -24,4 +24,28 @@ name: ghost-role-information-syndicate-monkey-reinforcement-name description: ghost-role-information-syndicate-monkey-reinforcement-description rules: ghost-role-information-syndicate-monkey-reinforcement-name - entityPrototype: MobMonkeySyndicateAgentNukeops \ No newline at end of file + entityPrototype: MobMonkeySyndicateAgentNukeops + +- type: ghostRole + id: SyndicateAgentMedic + name: ghost-role-information-syndicate-reinforcement-medic-name + description: ghost-role-information-syndicate-reinforcement-medic-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentMedic + iconPrototype: MedkitCombat + +- type: ghostRole + id: SyndicateAgentSpy + name: ghost-role-information-syndicate-reinforcement-spy-name + description: ghost-role-information-syndicate-reinforcement-spy-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentSpy + iconPrototype: ClothingMaskGasVoiceChameleon + +- type: ghostRole + id: SyndicateAgentThief + name: ghost-role-information-syndicate-reinforcement-thief-name + description: ghost-role-information-syndicate-reinforcement-thief-description + rules: ghost-role-information-syndicate-monkey-reinforcement-rules + entityPrototype: MobHumanSyndicateAgentThief + iconPrototype: SyndicateJawsOfLife diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index 36f44a6bb9a..62e027d9e2d 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -91,6 +91,7 @@ - ResearchDirector - Scientist - ResearchAssistant + - ADTRoboticist # ADT-Roles - type: department id: Specific diff --git a/Resources/Prototypes/Species/moth.yml b/Resources/Prototypes/Species/moth.yml index b474f613f84..3a4310872ac 100644 --- a/Resources/Prototypes/Species/moth.yml +++ b/Resources/Prototypes/Species/moth.yml @@ -1,160 +1,161 @@ -- type: species - id: Moth - name: species-name-moth - roundStart: true - prototype: MobMoth - sprites: MobMothSprites - defaultSkinTone: "#ffda93" - markingLimits: MobMothMarkingLimits - dollPrototype: MobMothDummy - skinColoration: Hues - maleFirstNames: names_moth_first_male - femaleFirstNames: names_moth_first_female - maleLastNames: names_moth_last # Corvax-LastnameGender - femaleLastNames: names_moth_last # Corvax-LastnameGender - -- type: speciesBaseSprites - id: MobMothSprites - sprites: - Head: MobMothHead - Snout: MobHumanoidAnyMarking - Chest: MobMothTorso - HeadTop: MobHumanoidAnyMarking - HeadSide: MobHumanoidAnyMarking - Tail: MobHumanoidAnyMarking - Eyes: MobMothEyes - LArm: MobMothLArm - RArm: MobMothRArm - LHand: MobMothLHand - RHand: MobMothRHand - LLeg: MobMothLLeg - RLeg: MobMothRLeg - LFoot: MobMothLFoot - RFoot: MobMothRFoot - -- type: humanoidBaseSprite - id: MobMothEyes - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: eyes - -- type: markingPoints - id: MobMothMarkingLimits - onlyWhitelisted: true - points: - Hair: - points: 0 - required: false - FacialHair: - points: 0 - required: false - Tail: - points: 1 - required: true - defaultMarkings: [ MothWingsDefault ] - Snout: - points: 1 - required: false - HeadTop: - points: 1 - required: true - defaultMarkings: [ MothAntennasDefault ] - HeadSide: - points: 1 - required: false - Head: - points: 1 - required: false - Chest: - points: 1 - required: false - Legs: - points: 2 - required: false - Arms: - points: 2 - required: false - -- type: humanoidBaseSprite - id: MobMothHead - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobMothHeadMale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobMothHeadFemale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: head_f - -- type: humanoidBaseSprite - id: MobMothTorso - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobMothTorsoMale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobMothTorsoFemale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: torso_f - -- type: humanoidBaseSprite - id: MobMothLLeg - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_leg - -- type: humanoidBaseSprite - id: MobMothLHand - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_hand - -- type: humanoidBaseSprite - id: MobMothLArm - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_arm - -- type: humanoidBaseSprite - id: MobMothLFoot - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_foot - -- type: humanoidBaseSprite - id: MobMothRLeg - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_leg - -- type: humanoidBaseSprite - id: MobMothRHand - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_hand - -- type: humanoidBaseSprite - id: MobMothRArm - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_arm - -- type: humanoidBaseSprite - id: MobMothRFoot - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_foot +## ADT Tweak - ЗАКОММЕНТИЛИ ДЛЯ ADT НИАН +# - type: species +# id: Moth +# name: species-name-moth +# roundStart: true +# prototype: MobMoth +# sprites: MobMothSprites +# defaultSkinTone: "#ffda93" +# markingLimits: MobMothMarkingLimits +# dollPrototype: MobMothDummy +# skinColoration: Hues +# maleFirstNames: names_moth_first_male +# femaleFirstNames: names_moth_first_female +# maleLastNames: names_moth_last # Corvax-LastnameGender +# femaleLastNames: names_moth_last # Corvax-LastnameGender + +# - type: speciesBaseSprites +# id: MobMothSprites +# sprites: +# Head: MobMothHead +# Snout: MobHumanoidAnyMarking +# Chest: MobMothTorso +# HeadTop: MobHumanoidAnyMarking +# HeadSide: MobHumanoidAnyMarking +# Tail: MobHumanoidAnyMarking +# Eyes: MobMothEyes +# LArm: MobMothLArm +# RArm: MobMothRArm +# LHand: MobMothLHand +# RHand: MobMothRHand +# LLeg: MobMothLLeg +# RLeg: MobMothRLeg +# LFoot: MobMothLFoot +# RFoot: MobMothRFoot + +# - type: humanoidBaseSprite +# id: MobMothEyes +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: eyes + +# - type: markingPoints +# id: MobMothMarkingLimits +# onlyWhitelisted: true +# points: +# Hair: +# points: 0 +# required: false +# FacialHair: +# points: 0 +# required: false +# Tail: +# points: 1 +# required: true +# defaultMarkings: [ MothWingsDefault ] +# Snout: +# points: 1 +# required: false +# HeadTop: +# points: 1 +# required: true +# defaultMarkings: [ MothAntennasDefault ] +# HeadSide: +# points: 1 +# required: false +# Head: +# points: 1 +# required: false +# Chest: +# points: 1 +# required: false +# Legs: +# points: 2 +# required: false +# Arms: +# points: 2 +# required: false + +# - type: humanoidBaseSprite +# id: MobMothHead +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: head_m + +# - type: humanoidBaseSprite +# id: MobMothHeadMale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: head_m + +# - type: humanoidBaseSprite +# id: MobMothHeadFemale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: head_f + +# - type: humanoidBaseSprite +# id: MobMothTorso +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: torso_m + +# - type: humanoidBaseSprite +# id: MobMothTorsoMale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: torso_m + +# - type: humanoidBaseSprite +# id: MobMothTorsoFemale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: torso_f + +# - type: humanoidBaseSprite +# id: MobMothLLeg +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_leg + +# - type: humanoidBaseSprite +# id: MobMothLHand +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_hand + +# - type: humanoidBaseSprite +# id: MobMothLArm +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_arm + +# - type: humanoidBaseSprite +# id: MobMothLFoot +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_foot + +# - type: humanoidBaseSprite +# id: MobMothRLeg +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_leg + +# - type: humanoidBaseSprite +# id: MobMothRHand +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_hand + +# - type: humanoidBaseSprite +# id: MobMothRArm +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_arm + +# - type: humanoidBaseSprite +# id: MobMothRFoot +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_foot diff --git a/Resources/Prototypes/Stacks/consumable_stacks.yml b/Resources/Prototypes/Stacks/consumable_stacks.yml index e7feab7b520..e2abbcbf089 100644 --- a/Resources/Prototypes/Stacks/consumable_stacks.yml +++ b/Resources/Prototypes/Stacks/consumable_stacks.yml @@ -4,6 +4,18 @@ id: Pancake name: pancake spawn: FoodBakedPancake + maxCount: 9 + +- type: stack + id: PancakeBb + name: blueberry pancake + spawn: FoodBakedPancakeBb + maxCount: 3 + +- type: stack + id: PancakeCc + name: chocolate chip pancake + spawn: FoodBakedPancakeCc maxCount: 3 # Food Containers diff --git a/Resources/Prototypes/Stacks/floor_tile_stacks.yml b/Resources/Prototypes/Stacks/floor_tile_stacks.yml index 01bd916a672..de03fcba196 100644 --- a/Resources/Prototypes/Stacks/floor_tile_stacks.yml +++ b/Resources/Prototypes/Stacks/floor_tile_stacks.yml @@ -1,19 +1,109 @@ - type: stack + id: FloorTileDark + name: dark tile + spawn: FloorTileItemDark + maxCount: 30 + +- type: stack + id: FloorTileDarkDiagonalMini + name: dark steel diagonal mini tile + spawn: FloorTileItemDarkDiagonalMini + maxCount: 30 + +- type: stack + id: FloorTileDarkDiagonal + name: dark steel diagonal tile + spawn: FloorTileItemDarkDiagonal + maxCount: 30 + +- type: stack + id: FloorTileDarkHerringbone + name: dark steel herringbone + spawn: FloorTileItemDarkHerringbone + maxCount: 30 + +- type: stack + id: FloorTileDarkMini + name: dark steel mini tile + spawn: FloorTileItemDarkMini + maxCount: 30 + +- type: stack + id: FloorTileDarkMono + name: dark steel mono tile + spawn: FloorTileItemDarkMono + maxCount: 30 + +- type: stack + id: FloorTileDarkPavement + name: dark steel pavement + spawn: FloorTileItemDarkPavement + maxCount: 30 + +- type: stack + id: FloorTileDarkPavementVertical + name: dark steel vertical pavement + spawn: FloorTileItemDarkPavementVertical + maxCount: 30 + +- type: stack + id: FloorTileDarkOffset + name: offset dark steel tile + spawn: FloorTileItemDarkOffset + maxCount: 30 + +- type: stack id: FloorTileSteel name: steel tile spawn: FloorTileItemSteel maxCount: 30 - type: stack - id: FloorTileMetalDiamond - name: steel tile - spawn: FloorTileItemMetalDiamond + id: FloorTileSteelOffset + name: offset steel tile + spawn: FloorTileItemSteelOffset maxCount: 30 - type: stack - id: FloorTileWood - name: wood floor - spawn: FloorTileItemWood + id: FloorTileSteelDiagonalMini + name: steel diagonal mini tile + spawn: FloorTileItemSteelDiagonalMini + maxCount: 30 + +- type: stack + id: FloorTileSteelDiagonal + name: steel diagonal tile + spawn: FloorTileItemSteelDiagonal + maxCount: 30 + +- type: stack + id: FloorTileSteelHerringbone + name: steel herringbone + spawn: FloorTileItemSteelHerringbone + maxCount: 30 + +- type: stack + id: FloorTileSteelMini + name: steel mini tile + spawn: FloorTileItemSteelMini + maxCount: 30 + +- type: stack + id: FloorTileSteelMono + name: steel mono tile + spawn: FloorTileItemSteelMono + maxCount: 30 + +- type: stack + id: FloorTileSteelPavement + name: steel pavement + spawn: FloorTileItemSteelPavement + maxCount: 30 + +- type: stack + id: FloorTileSteelPavementVertical + name: steel vertical pavement + spawn: FloorTileItemSteelPavementVertical maxCount: 30 - type: stack @@ -23,9 +113,75 @@ maxCount: 30 - type: stack - id: FloorTileDark - name: dark tile - spawn: FloorTileItemDark + id: FloorTileWhiteOffset + name: offset white steel tile + spawn: FloorTileItemWhiteOffset + maxCount: 30 + +- type: stack + id: FloorTileWhiteDiagonalMini + name: white steel diagonal mini tile + spawn: FloorTileItemWhiteDiagonalMini + maxCount: 30 + +- type: stack + id: FloorTileWhiteDiagonal + name: white steel diagonal tile + spawn: FloorTileItemWhiteDiagonal + maxCount: 30 + +- type: stack + id: FloorTileWhiteHerringbone + name: white steel herringbone + spawn: FloorTileItemWhiteHerringbone + maxCount: 30 + +- type: stack + id: FloorTileWhiteMini + name: white steel mini tile + spawn: FloorTileItemWhiteMini + maxCount: 30 + +- type: stack + id: FloorTileWhiteMono + name: white steel mono tile + spawn: FloorTileItemWhiteMono + maxCount: 30 + +- type: stack + id: FloorTileWhitePavement + name: white steel pavement + spawn: FloorTileItemWhitePavement + maxCount: 30 + +- type: stack + id: FloorTileWhitePavementVertical + name: white steel vertical pavement + spawn: FloorTileItemWhitePavementVertical + maxCount: 30 + +- type: stack + id: FloorTileSteelCheckerDark + name: steel dark checker tile + spawn: FloorTileItemSteelCheckerDark + maxCount: 30 + +- type: stack + id: FloorTileSteelCheckerLight + name: steel light checker tile + spawn: FloorTileItemSteelCheckerLight + maxCount: 30 + +- type: stack + id: FloorTileMetalDiamond + name: steel tile + spawn: FloorTileItemMetalDiamond + maxCount: 30 + +- type: stack + id: FloorTileWood + name: wood floor + spawn: FloorTileItemWood maxCount: 30 - type: stack @@ -322,10 +478,34 @@ spawn: FloorTileItemGrayConcrete maxCount: 30 +- type: stack + id: FloorTileConcreteMono + name: concrete mono tile + spawn: FloorTileItemConcreteMono + maxCount: 30 + +- type: stack + id: FloorTileConcreteSmooth + name: concrete smooth + spawn: FloorTileItemConcreteSmooth + maxCount: 30 + - type: stack id: FloorTileGrayConcrete name: gray concrete tile - spawn: FloorTileItemLaundry + spawn: FloorTileItemGrayConcrete + maxCount: 30 + +- type: stack + id: FloorTileGrayConcreteMono + name: gray concrete mono tile + spawn: FloorTileItemGrayConcreteMono + maxCount: 30 + +- type: stack + id: FloorTileGrayConcreteSmooth + name: gray concrete smooth + spawn: FloorTileItemGrayConcreteSmooth maxCount: 30 - type: stack @@ -334,6 +514,18 @@ spawn: FloorTileItemOldConcrete maxCount: 30 +- type: stack + id: FloorTileOldConcreteMono + name: old concrete mono tile + spawn: FloorTileItemOldConcreteMono + maxCount: 30 + +- type: stack + id: FloorTileOldConcreteSmooth + name: old concrete smooth + spawn: FloorTileItemOldConcreteSmooth + maxCount: 30 + - type: stack id: FloorTileSilver name: silver floor tile diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml index 2711952f00d..88d918163f5 100644 --- a/Resources/Prototypes/StatusIcon/antag.yml +++ b/Resources/Prototypes/StatusIcon/antag.yml @@ -23,6 +23,7 @@ - type: statusIcon id: RevolutionaryFaction + isShaded: true priority: 11 showTo: components: @@ -34,6 +35,7 @@ - type: statusIcon id: HeadRevolutionaryFaction + isShaded: true priority: 11 showTo: components: diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 6196961e45a..f580aac466d 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -67,7 +67,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepFloor - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelMini heatCapacity: 10000 - type: tile @@ -85,7 +85,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepFloor - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelPavement heatCapacity: 10000 - type: tile @@ -103,7 +103,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepFloor - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelDiagonal heatCapacity: 10000 - type: tile @@ -115,7 +115,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepFloor - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelOffset heatCapacity: 10000 - type: tile @@ -133,7 +133,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelMono heatCapacity: 10000 - type: tile @@ -151,7 +151,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelPavementVertical heatCapacity: 10000 - type: tile @@ -169,7 +169,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelHerringbone heatCapacity: 10000 - type: tile @@ -187,7 +187,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemSteel + itemDrop: FloorTileItemSteelDiagonalMini heatCapacity: 10000 - type: tile @@ -285,7 +285,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhiteMini heatCapacity: 10000 - type: tile @@ -303,7 +303,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhitePavement heatCapacity: 10000 - type: tile @@ -321,7 +321,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhiteDiagonal heatCapacity: 10000 - type: tile @@ -333,7 +333,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhiteOffset heatCapacity: 10000 - type: tile @@ -351,7 +351,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhiteMono heatCapacity: 10000 - type: tile @@ -369,7 +369,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhitePavementVertical heatCapacity: 10000 - type: tile @@ -387,7 +387,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhiteHerringbone heatCapacity: 10000 - type: tile @@ -405,7 +405,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemWhite + itemDrop: FloorTileItemWhiteDiagonalMini heatCapacity: 10000 - type: tile @@ -459,7 +459,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkMini heatCapacity: 10000 - type: tile @@ -477,7 +477,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkPavement heatCapacity: 10000 - type: tile @@ -495,7 +495,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkDiagonal heatCapacity: 10000 - type: tile @@ -507,7 +507,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkOffset heatCapacity: 10000 - type: tile @@ -525,7 +525,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkMono heatCapacity: 10000 - type: tile @@ -543,7 +543,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkPavementVertical heatCapacity: 10000 - type: tile @@ -561,7 +561,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkHerringbone heatCapacity: 10000 - type: tile @@ -579,7 +579,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemDark + itemDrop: FloorTileItemDarkDiagonalMini heatCapacity: 10000 - type: tile @@ -936,7 +936,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemConcrete + itemDrop: FloorTileItemConcreteMono heatCapacity: 10000 weather: true @@ -955,7 +955,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemConcrete + itemDrop: FloorTileItemConcreteSmooth heatCapacity: 10000 weather: true @@ -993,7 +993,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemGrayConcrete + itemDrop: FloorTileItemGrayConcreteMono heatCapacity: 10000 weather: true @@ -1012,7 +1012,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemGrayConcrete + itemDrop: FloorTileItemGrayConcreteSmooth heatCapacity: 10000 weather: true @@ -1050,7 +1050,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemOldConcrete + itemDrop: FloorTileItemOldConcreteMono heatCapacity: 10000 weather: true @@ -1069,7 +1069,7 @@ deconstructTools: [ Prying ] footstepSounds: collection: FootstepTile - itemDrop: FloorTileItemOldConcrete + itemDrop: FloorTileItemOldConcreteSmooth heatCapacity: 10000 weather: true diff --git a/Resources/Prototypes/Traits/categories.yml b/Resources/Prototypes/Traits/categories.yml index a3621648a43..d024b3fcff3 100644 --- a/Resources/Prototypes/Traits/categories.yml +++ b/Resources/Prototypes/Traits/categories.yml @@ -6,3 +6,7 @@ id: SpeechTraits name: trait-category-speech maxTraitPoints: 2 + +- type: traitCategory + id: Quirks + name: trait-category-quirks diff --git a/Resources/Prototypes/Traits/disabilities.yml b/Resources/Prototypes/Traits/disabilities.yml index 6e0026e44eb..c562c2fec0e 100644 --- a/Resources/Prototypes/Traits/disabilities.yml +++ b/Resources/Prototypes/Traits/disabilities.yml @@ -33,14 +33,6 @@ timeBetweenIncidents: 300, 600 durationOfIncident: 10, 30 -- type: trait - id: Pacifist - name: trait-pacifist-name - description: trait-pacifist-desc - category: Disabilities - components: - - type: Pacified - - type: trait id: Unrevivable name: trait-unrevivable-name @@ -60,15 +52,6 @@ components: - type: Muted -- type: trait - id: LightweightDrunk - name: trait-lightweight-name - description: trait-lightweight-desc - category: Disabilities - components: - - type: LightweightDrunk - boozeStrengthMultiplier: 2 - - type: trait id: Paracusia name: trait-paracusia-name @@ -81,11 +64,3 @@ maxSoundDistance: 7 sounds: collection: Paracusia - -- type: trait - id: Snoring - name: trait-snoring-name - description: trait-snoring-desc - category: Disabilities - components: - - type: Snoring diff --git a/Resources/Prototypes/Traits/quirks.yml b/Resources/Prototypes/Traits/quirks.yml new file mode 100644 index 00000000000..d01bf6218ab --- /dev/null +++ b/Resources/Prototypes/Traits/quirks.yml @@ -0,0 +1,24 @@ +- type: trait + id: Pacifist + name: trait-pacifist-name + description: trait-pacifist-desc + category: Quirks + components: + - type: Pacified + +- type: trait + id: LightweightDrunk + name: trait-lightweight-name + description: trait-lightweight-desc + category: Quirks + components: + - type: LightweightDrunk + boozeStrengthMultiplier: 2 + +- type: trait + id: Snoring + name: trait-snoring-name + description: trait-snoring-desc + category: Quirks + components: + - type: Snoring diff --git a/Resources/Prototypes/holidays.yml b/Resources/Prototypes/holidays.yml index 6d87e5fba48..b87fe3c2270 100644 --- a/Resources/Prototypes/holidays.yml +++ b/Resources/Prototypes/holidays.yml @@ -68,8 +68,8 @@ beginMonth: March - type: holiday - id: holiday-name-easter - name: Easter + id: Easter + name: holiday-name-easter shouldCelebrate: !type:Computus { } @@ -322,8 +322,8 @@ weekday: Thursday - type: holiday - id: holiday-name-halloween - name: Halloween + id: Halloween + name: holiday-name-halloween beginDay: 31 beginMonth: October greet: @@ -387,8 +387,8 @@ weekday: Thursday - type: holiday - id: holiday-name-sinterklaas - name: Sinterklaas + id: Sinterklaas + name: holiday-name-sinterklaas beginDay: 5 beginMonth: December @@ -411,8 +411,8 @@ beginMonth: December - type: holiday - id: holiday-name-christmas - name: Christmas + id: Christmas + name: holiday-name-christmas beginDay: 24 endDay: 26 beginMonth: December diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index 0dbfc161eea..2cb494eb452 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -3,7 +3,7 @@ name: chat-radio-common keycode: ";" frequency: 1459 - color: "#32cd32" + color: "#2cdb2c" - type: radioChannel id: CentCom @@ -25,7 +25,7 @@ name: chat-radio-engineering keycode: 'и' # Corvax-Localization frequency: 1357 - color: "#f37746" + color: "#ff733c" - type: radioChannel id: Medical @@ -39,28 +39,28 @@ name: chat-radio-science keycode: 'н' # Corvax-Localization frequency: 1351 - color: "#c68cfa" + color: "#b05efa" - type: radioChannel id: Security name: chat-radio-security keycode: 'о' # Corvax-Localization frequency: 1359 - color: "#dd3535" + color: "#ff4242" - type: radioChannel id: Service name: chat-radio-service keycode: 'с' # Corvax-Localization frequency: 1349 - color: "#6ca729" + color: "#539c00" - type: radioChannel id: Supply name: chat-radio-supply keycode: 'п' # Corvax-Localization frequency: 1347 - color: "#b88646" + color: "#b48b57" - type: radioChannel id: Syndicate @@ -74,7 +74,7 @@ id: Handheld name: chat-radio-handheld frequency: 1330 - color: "#d39f01" + color: "#967101" # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms longRange: true diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index d7a7f089b1b..197966b4917 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -542,6 +542,9 @@ - type: Tag id: DrinkCan +- type: Tag + id: DrinkGlass + - type: Tag id: DrinkSpaceGlue @@ -764,6 +767,9 @@ - type: Tag id: Igniter +- type: Tag + id: Ingredient + - type: Tag #Drop this innate tool instead of deleting it. id: InnateDontDelete diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml index 6c01f9de23a..97880466d44 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml @@ -52,6 +52,14 @@ - [color=#449944]Acceptable:[/color] Loxosceles Domesticus - [color=#994444]Bad:[/color] Spider-Man + Vox typically use a single name made of random syllables, often with repeating patterns. + Names should not be excessively long or be so repetitive/convoluted as to be unreadable. + + - [color=#449944]Acceptable:[/color] Hirixashahre + - [color=#449944]Acceptable:[/color] Xapikrikrik + - [color=#994444]Bad:[/color] Chipikirchitchitchitbecretretrer + - [color=#994444]Bad:[/color] Trololol + Usernames, objects, random characters, very "low effort" names, "meta" names, or otherwise implausible names are not permitted. - [color=#994444]Bad:[/color] XxRobustxX - [color=#994444]Bad:[/color] SDpksSodjdfk diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml index f51558f1a2d..bb63d45487c 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml @@ -5,7 +5,7 @@ - \[Security\] Security clothing - \[Security\] Less than lethal and non-lethal weapons, excluding disablers and beanbag shotguns - \[Security/Command\] Disablers - - \[Security/Bartender\] Beanbag shotguns + - \[Security/Bartender/Zookeeper\] Nonlethal shotguns - \[Security\] Flash technology, excluding handheld flashes - \[Security/Science/Command\] Handheld flashes - \[Security\] Helmets and shields diff --git a/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/equipped-MASK.png b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/equipped-MASK.png new file mode 100644 index 00000000000..8c0a2bb7334 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/icon.png b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/icon.png new file mode 100644 index 00000000000..a455a48448f Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/inhand-left.png new file mode 100644 index 00000000000..c775efdcb92 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/inhand-right.png new file mode 100644 index 00000000000..f35ffc89698 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/meta.json b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/meta.json new file mode 100644 index 00000000000..0e941d4f3a1 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Mask/gasCE.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Username228 (#serj3428)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..8faf86dc348 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/icon.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/icon.png new file mode 100644 index 00000000000..8bcf22eac17 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/meta.json b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/meta.json new file mode 100644 index 00000000000..119707545ef --- /dev/null +++ b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/kadet_trenchcoat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by discord:boctonskuitea for Adventure Time.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] + } diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..3be75bc8d65 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/icon.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/icon.png new file mode 100644 index 00000000000..4235543f1d0 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/meta.json b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/meta.json new file mode 100644 index 00000000000..7adf5eea272 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/urs_coat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:lunalita", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/equipped-INNERCLOTHING.png similarity index 100% rename from Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/equipped-INNERCLOTHING.png rename to Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/equipped-INNERCLOTHING.png diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/icon.png similarity index 100% rename from Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/icon.png rename to Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/icon.png diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-left.png rename to Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/inhand-left.png diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-right.png rename to Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/inhand-right.png diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/meta.json similarity index 100% rename from Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/meta.json rename to Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/white-diplomat-suit.rsi/meta.json diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge-empty.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge-empty.png new file mode 100644 index 00000000000..69888305555 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge-empty.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge0.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge0.png new file mode 100644 index 00000000000..e0604dae992 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge0.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge1.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge1.png new file mode 100644 index 00000000000..fe810021484 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge1.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge2.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge2.png new file mode 100644 index 00000000000..381741aba48 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge2.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge3.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge3.png new file mode 100644 index 00000000000..467cb413322 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge3.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge4.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge4.png new file mode 100644 index 00000000000..f5ac42a38a5 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge4.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/meta.json b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/meta.json new file mode 100644 index 00000000000..f378fc6831c --- /dev/null +++ b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original taken from Yogstation at https://github.com/yogstation13/Yogstation/commit/aaaed39293dd0b9edace6e2fe2017203e7352ef2, resprite by _kote", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "charge0" + }, + { + "name": "charge1", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "charge2" + }, + { + "name": "charge3" + }, + { + "name": "charge4" + }, + { + "name": "charge-empty" + } + ] +} diff --git a/Resources/Textures/ADT/Logo/icon-adt/icon-128x128.png b/Resources/Textures/ADT/Logo/icon-adt/icon-128x128.png new file mode 100644 index 00000000000..8f321e340c8 Binary files /dev/null and b/Resources/Textures/ADT/Logo/icon-adt/icon-128x128.png differ diff --git a/Resources/Textures/ADT/Logo/icon-adt/icon-16x16.png b/Resources/Textures/ADT/Logo/icon-adt/icon-16x16.png new file mode 100644 index 00000000000..d631c9add3f Binary files /dev/null and b/Resources/Textures/ADT/Logo/icon-adt/icon-16x16.png differ diff --git a/Resources/Textures/ADT/Logo/icon-adt/icon-24x24.png b/Resources/Textures/ADT/Logo/icon-adt/icon-24x24.png new file mode 100644 index 00000000000..9b9308b8eaf Binary files /dev/null and b/Resources/Textures/ADT/Logo/icon-adt/icon-24x24.png differ diff --git a/Resources/Textures/ADT/Logo/icon-adt/icon-256x256.png b/Resources/Textures/ADT/Logo/icon-adt/icon-256x256.png new file mode 100644 index 00000000000..2ee3421f200 Binary files /dev/null and b/Resources/Textures/ADT/Logo/icon-adt/icon-256x256.png differ diff --git a/Resources/Textures/ADT/Logo/icon-adt/icon-32x32.png b/Resources/Textures/ADT/Logo/icon-adt/icon-32x32.png new file mode 100644 index 00000000000..8907545a493 Binary files /dev/null and b/Resources/Textures/ADT/Logo/icon-adt/icon-32x32.png differ diff --git a/Resources/Textures/ADT/Logo/icon-adt/icon-48x48.png b/Resources/Textures/ADT/Logo/icon-adt/icon-48x48.png new file mode 100644 index 00000000000..5b093a201b7 Binary files /dev/null and b/Resources/Textures/ADT/Logo/icon-adt/icon-48x48.png differ diff --git a/Resources/Textures/ADT/Logo/icon-adt/icon-64x64.png b/Resources/Textures/ADT/Logo/icon-adt/icon-64x64.png new file mode 100644 index 00000000000..f5a81a771ac Binary files /dev/null and b/Resources/Textures/ADT/Logo/icon-adt/icon-64x64.png differ diff --git a/Resources/Textures/Logo/new_logo.png b/Resources/Textures/ADT/Logo/new_logo.png similarity index 100% rename from Resources/Textures/Logo/new_logo.png rename to Resources/Textures/ADT/Logo/new_logo.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/cow_ears.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/cow_ears.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/cow_ears.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/cow_ears.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/cow_horns.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/cow_horns.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/cow_horns.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/cow_horns.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/cow_spots.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/cow_spots.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/cow_spots.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/cow_spots.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/deer_antlers_horns.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/deer_antlers_horns.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/deer_antlers_horns.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/deer_antlers_horns.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/demon_ears.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/demon_ears.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/demon_ears.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/demon_ears.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/demon_tail.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/demon_tail.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/demon_tail.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/demon_tail.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/goatee.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/goatee.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/goatee.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/goatee.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/guards_stripes.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/guards_stripes.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/guards_stripes.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/guards_stripes.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/lines_emperos.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/lines_emperos.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/lines_emperos.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/lines_emperos.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/long.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/long.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/long.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/long.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/meta.json similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/meta.json rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/meta.json diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/queen_lines.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/queen_lines.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/queen_lines.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/queen_lines.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/small_horns.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/small_horns.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/small_horns.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/small_horns.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/tree_lines.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/tree_lines.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/tree_lines.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/tree_lines.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/trinity_spots.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/trinity_spots.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/trinity_spots.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/trinity_spots.png diff --git a/Resources/Textures/ADT/Mobs/Demon/custom.rsi/up.png b/Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/up.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/custom.rsi/up.png rename to Resources/Textures/ADT/Mobs/Customization/Demon/custom.rsi/up.png diff --git a/Resources/Textures/ADT/Mobs/Drask/custom.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Customization/Drask/custom.rsi/l_arm.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/custom.rsi/l_arm.png rename to Resources/Textures/ADT/Mobs/Customization/Drask/custom.rsi/l_arm.png diff --git a/Resources/Textures/ADT/Mobs/Drask/custom.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Drask/custom.rsi/meta.json similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/custom.rsi/meta.json rename to Resources/Textures/ADT/Mobs/Customization/Drask/custom.rsi/meta.json diff --git a/Resources/Textures/ADT/Mobs/Drask/custom.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Customization/Drask/custom.rsi/r_arm.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/custom.rsi/r_arm.png rename to Resources/Textures/ADT/Mobs/Customization/Drask/custom.rsi/r_arm.png diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_antlers.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_antlers.png new file mode 100644 index 00000000000..125f9cf913e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_antlers.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_crowned.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_crowned.png new file mode 100644 index 00000000000..2fd0cdd06d2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_crowned.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_cyberhead.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_cyberhead.png new file mode 100644 index 00000000000..c3d1111199e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_cyberhead.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_droneeyes.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_droneeyes.png new file mode 100644 index 00000000000..5b2a67a813a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_droneeyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_light.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_light.png new file mode 100644 index 00000000000..91f5fd25e78 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_light.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_lightb.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_lightb.png new file mode 100644 index 00000000000..bc1133d8d3c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_lightb.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_sidelights.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_sidelights.png new file mode 100644 index 00000000000..7a1c31e45e4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_sidelights.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_tesla.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_tesla.png new file mode 100644 index 00000000000..98cb10d3cbc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_tesla.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_towers.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_towers.png new file mode 100644 index 00000000000..f971130b8e4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_towers.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_tv.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_tv.png new file mode 100644 index 00000000000..ae53b4762ed Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/ipc_antenna_tv.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/meta.json new file mode 100644 index 00000000000..69316d7e57c --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_antenna.rsi/meta.json @@ -0,0 +1,107 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation at https://github.com/yogstation13/Yogstation/commit/9c046aa5327c71f9e93e45a34283b3a4aff58bd1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ipc_antenna_tv", + "directions": 4 + }, + { + "name": "ipc_antenna_tesla", + "directions": 4, + "delays": [ + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_antenna_lightb", + "directions": 4, + "delays": [ + [ + 4, + 0.5, + 0.1, + 0.5 + ], + [ + 4, + 0.5, + 0.1, + 0.5 + ], + [ + 4, + 0.5, + 0.1, + 0.5 + ], + [ + 4, + 0.5, + 0.1, + 0.5 + ] + ] + }, + { + "name": "ipc_antenna_light", + "directions": 4 + }, + { + "name": "ipc_antenna_cyberhead", + "directions": 4 + }, + { + "name": "ipc_antenna_sidelights", + "directions": 4 + }, + { + "name": "ipc_antenna_antlers", + "directions": 4 + }, + { + "name": "ipc_antenna_droneeyes", + "directions": 4 + }, + { + "name": "ipc_antenna_crowned", + "directions": 4 + }, + { + "name": "ipc_antenna_towers", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_blank.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_blank.png new file mode 100644 index 00000000000..4361a36c1ed Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_blank.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_blue.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_blue.png new file mode 100644 index 00000000000..f1568848807 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_blue.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_breakout.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_breakout.png new file mode 100644 index 00000000000..f39f2c643b9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_breakout.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_bsod.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_bsod.png new file mode 100644 index 00000000000..7d7a8efb62e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_bsod.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_console.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_console.png new file mode 100644 index 00000000000..dfed44e10cd Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_console.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_ecgwave.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_ecgwave.png new file mode 100644 index 00000000000..2d2c405734d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_ecgwave.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eight.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eight.png new file mode 100644 index 00000000000..80a5e37dd6a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eight.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_exclaim.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_exclaim.png new file mode 100644 index 00000000000..e280615e504 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_exclaim.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyes.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyes.png new file mode 100644 index 00000000000..42ee79361b1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyesangry.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyesangry.png new file mode 100644 index 00000000000..8a7e45c7e8f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyesangry.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyestall.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyestall.png new file mode 100644 index 00000000000..d8c03fa3240 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_eyestall.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_frown.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_frown.png new file mode 100644 index 00000000000..f297c401a10 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_frown.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_glider.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_glider.png new file mode 100644 index 00000000000..afd5349ee6b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_glider.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_goggles.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_goggles.png new file mode 100644 index 00000000000..422a603cc7c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_goggles.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_heart.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_heart.png new file mode 100644 index 00000000000..6bfe07e397a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_heart.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_l.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_l.png new file mode 100644 index 00000000000..902845f11fc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_l.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_loading.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_loading.png new file mode 100644 index 00000000000..9a1f705a0d7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_loading.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_monoeye.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_monoeye.png new file mode 100644 index 00000000000..4e5056528d9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_monoeye.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_nature.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_nature.png new file mode 100644 index 00000000000..6425fe2b517 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_nature.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_orange.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_orange.png new file mode 100644 index 00000000000..f4c98278e1d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_orange.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_pink.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_pink.png new file mode 100644 index 00000000000..dc50eb693db Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_pink.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_question.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_question.png new file mode 100644 index 00000000000..f90dcc94abb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_question.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rainbowdiag.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rainbowdiag.png new file mode 100644 index 00000000000..37274191d37 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rainbowdiag.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rainbowhoriz.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rainbowhoriz.png new file mode 100644 index 00000000000..9b6192dd6dc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rainbowhoriz.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_redtext.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_redtext.png new file mode 100644 index 00000000000..c180b8e674e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_redtext.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rgb.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rgb.png new file mode 100644 index 00000000000..36f48e75d7a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_rgb.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_ring.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_ring.png new file mode 100644 index 00000000000..e5454221602 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_ring.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_scroll.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_scroll.png new file mode 100644 index 00000000000..cbf936810a1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_scroll.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_shower.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_shower.png new file mode 100644 index 00000000000..1546c8dbf13 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_shower.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_sinewave.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_sinewave.png new file mode 100644 index 00000000000..c976f421791 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_sinewave.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_smile.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_smile.png new file mode 100644 index 00000000000..7ecd324e898 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_smile.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_squarewave.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_squarewave.png new file mode 100644 index 00000000000..04211f366e8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_squarewave.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_stars.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_stars.png new file mode 100644 index 00000000000..8feda85c428 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_stars.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_static.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_static.png new file mode 100644 index 00000000000..08e96db1508 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_static.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_tetris.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_tetris.png new file mode 100644 index 00000000000..d4ea13ea39b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_tetris.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_textdrop.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_textdrop.png new file mode 100644 index 00000000000..c71ba6d24e9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_textdrop.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_tv.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_tv.png new file mode 100644 index 00000000000..5b9b25dcd9a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_tv.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_windowsxp.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_windowsxp.png new file mode 100644 index 00000000000..595ab8444b2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_windowsxp.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_yellow.png b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_yellow.png new file mode 100644 index 00000000000..bbf4c92cb32 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/ipc_screen_yellow.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/meta.json new file mode 100644 index 00000000000..b6314cde9c2 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Ipc/ipc_screens.rsi/meta.json @@ -0,0 +1,1363 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation at https://github.com/yogstation13/Yogstation/commit/9c046aa5327c71f9e93e45a34283b3a4aff58bd1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ipc_screen_static", + "directions": 4, + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15 + ], + [ + 0.15, + 0.15, + 0.15, + 0.15 + ], + [ + 0.15, + 0.15, + 0.15, + 0.15 + ], + [ + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "ipc_screen_blue", + "directions": 4, + "delays": [ + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ], + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ], + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ], + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ] + ] + }, + { + "name": "ipc_screen_breakout", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_eight", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_goggles", + "directions": 4, + "delays": [ + [ + 0.2, + 4 + ], + [ + 0.2, + 4 + ], + [ + 0.2, + 4 + ], + [ + 0.2, + 4 + ] + ] + }, + { + "name": "ipc_screen_exclaim", + "directions": 4, + "delays": [ + [ + 0.6, + 0.6 + ], + [ + 0.6, + 0.6 + ], + [ + 0.6, + 0.6 + ], + [ + 0.6, + 0.6 + ] + ] + }, + { + "name": "ipc_screen_heart", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_monoeye", + "directions": 4, + "delays": [ + [ + 4, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_nature", + "directions": 4, + "delays": [ + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_orange", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_pink", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_question", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_shower", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_yellow", + "directions": 4, + "delays": [ + [ + 2, + 2 + ], + [ + 2, + 2 + ], + [ + 2, + 2 + ], + [ + 2, + 2 + ] + ] + }, + { + "name": "ipc_screen_scroll", + "directions": 4, + "delays": [ + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ], + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ], + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ], + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ] + ] + }, + { + "name": "ipc_screen_console", + "directions": 4, + "delays": [ + [ + 1, + 1 + ], + [ + 1, + 1 + ], + [ + 1, + 1 + ], + [ + 1, + 1 + ] + ] + }, + { + "name": "ipc_screen_rgb", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2 + ], + [ + 2, + 2, + 2 + ], + [ + 2, + 2, + 2 + ], + [ + 2, + 2, + 2 + ] + ] + }, + { + "name": "ipc_screen_glider", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "ipc_screen_rainbowhoriz", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_bsod", + "directions": 4, + "delays": [ + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_redtext", + "directions": 4, + "delays": [ + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_sinewave", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_squarewave", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_ecgwave", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_eyes", + "directions": 4, + "delays": [ + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ] + ] + }, + { + "name": "ipc_screen_eyestall", + "directions": 4, + "delays": [ + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ] + ] + }, + { + "name": "ipc_screen_eyesangry", + "directions": 4, + "delays": [ + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ] + ] + }, + { + "name": "ipc_screen_loading", + "directions": 4, + "delays": [ + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ], + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ], + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ], + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ] + ] + }, + { + "name": "ipc_screen_windowsxp", + "directions": 4, + "delays": [ + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ], + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ], + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ], + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ] + ] + }, + { + "name": "ipc_screen_tetris", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "ipc_screen_tv", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_textdrop", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_stars", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_rainbowdiag", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_blank", + "directions": 4 + }, + { + "name": "ipc_screen_smile", + "directions": 4 + }, + { + "name": "ipc_screen_frown", + "directions": 4 + }, + { + "name": "ipc_screen_ring", + "directions": 4 + }, + { + "name": "ipc_screen_l", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/G_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/G_a.png new file mode 100644 index 00000000000..0fd11dfbf03 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/G_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/K.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/K.png new file mode 100644 index 00000000000..73aaba7c703 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/K.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/Nebula.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/Nebula.png new file mode 100644 index 00000000000..1d9b79f0be9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/Nebula.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/braid.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/braid.png new file mode 100644 index 00000000000..a72899b001b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/braid.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/comet.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/comet.png new file mode 100644 index 00000000000..59bd89c4002 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/comet.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/cone_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/cone_a.png new file mode 100644 index 00000000000..089b9cf2413 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/cone_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/connect_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/connect_a.png new file mode 100644 index 00000000000..fea84cbd100 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/connect_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/constellation.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/constellation.png new file mode 100644 index 00000000000..243326ec58d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/constellation.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/crack.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/crack.png new file mode 100644 index 00000000000..331ecd59f4f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/crack.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/cross.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/cross.png new file mode 100644 index 00000000000..4ad828ac8e8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/cross.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/crucifix.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/crucifix.png new file mode 100644 index 00000000000..7b4214f1265 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/crucifix.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dot_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dot_a.png new file mode 100644 index 00000000000..9d4cee00e2b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dot_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dotline_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dotline_a.png new file mode 100644 index 00000000000..d8167b82a2c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dotline_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dual.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dual.png new file mode 100644 index 00000000000..c18bad8ad69 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/dual.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/duality.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/duality.png new file mode 100644 index 00000000000..a9603ea3120 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/duality.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/eye.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/eye.png new file mode 100644 index 00000000000..74f1b5e9c40 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/eye.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/eyes_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/eyes_a.png new file mode 100644 index 00000000000..16a01c2d04c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/eyes_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/fame.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/fame.png new file mode 100644 index 00000000000..af8be8f2f59 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/fame.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/gas_cloud.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/gas_cloud.png new file mode 100644 index 00000000000..476c5c8b4ba Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/gas_cloud.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/gaseous_avalanche.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/gaseous_avalanche.png new file mode 100644 index 00000000000..1185d0898c4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/gaseous_avalanche.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/h.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/h.png new file mode 100644 index 00000000000..6eac0e64249 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/h.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/head_novakid_defolt.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/head_novakid_defolt.png new file mode 100644 index 00000000000..21dfe804c9f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/head_novakid_defolt.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/heart.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/heart.png new file mode 100644 index 00000000000..7905f6b125c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/heart.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/house.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/house.png new file mode 100644 index 00000000000..23f1fd23e77 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/house.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/indicator.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/indicator.png new file mode 100644 index 00000000000..6bd869539a5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/indicator.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/light_shine.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/light_shine.png new file mode 100644 index 00000000000..569ecdb286d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/light_shine.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/lima-a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/lima-a.png new file mode 100644 index 00000000000..8ac210b8f3f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/lima-a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/linedot_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/linedot_a.png new file mode 100644 index 00000000000..edf1ba1a7c5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/linedot_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/little_light_starshine.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/little_light_starshine.png new file mode 100644 index 00000000000..4485419ccfa Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/little_light_starshine.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/little_star.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/little_star.png new file mode 100644 index 00000000000..0ede7940891 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/little_star.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/lunar_day.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/lunar_day.png new file mode 100644 index 00000000000..02c6db03f1f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/lunar_day.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/meta.json new file mode 100644 index 00000000000..18285e3b99c --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/meta.json @@ -0,0 +1,244 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:lunalita", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "braid", + "directions": 4 + }, + { + "name": "comet", + "directions": 4 + }, + { + "name": "constellation", + "directions": 4 + }, + { + "name": "crack", + "directions": 4 + }, + { + "name": "cross", + "directions": 4 + }, + { + "name": "crucifix", + "directions": 4 + }, + { + "name": "dual", + "directions": 4 + }, + { + "name": "duality", + "directions": 4 + }, + { + "name": "eye", + "directions": 4 + }, + { + "name": "fame", + "directions": 4 + }, + { + "name": "gas_cloud", + "directions": 4 + }, + { + "name": "gaseous_avalanche", + "directions": 4 + }, + { + "name": "h", + "directions": 4 + }, + { + "name": "heart", + "directions": 4 + }, + { + "name": "indicator", + "directions": 4 + }, + { + "name": "light_shine", + "directions": 4 + }, + { + "name": "little_light_starshine", + "directions": 4 + }, + { + "name": "little_star", + "directions": 4 + }, + { + "name": "lunar_day", + "directions": 4 + }, + { + "name": "meteoric_shower", + "directions": 4 + }, + { + "name": "milky_way", + "directions": 4 + }, + { + "name": "Nebula", + "directions": 4 + }, + { + "name": "note", + "directions": 4 + }, + { + "name": "prism", + "directions": 4 + }, + { + "name": "rune", + "directions": 4 + }, + { + "name": "solar_corona", + "directions": 4 + }, + { + "name": "squad", + "directions": 4 + }, + { + "name": "star_rain", + "directions": 4 + }, + { + "name": "starfall", + "directions": 4 + }, + { + "name": "starfire", + "directions": 4 + }, + { + "name": "sunshine", + "directions": 4 + }, + { + "name": "supernova", + "directions": 4 + }, + { + "name": "thrill", + "directions": 4 + }, + { + "name": "triple", + "directions": 4 + }, + { + "name": "uncrucifix", + "directions": 4 + }, + { + "name": "universal_style", + "directions": 4 + }, + { + "name": "virgo", + "directions": 4 + }, + { + "name": "x", + "directions": 4 + } + , + { + "name": "ye", + "directions": 4 + }, + { + "name": "zeta", + "directions": 4 + }, + { + "name": "head_novakid_defolt", + "directions": 4 + }, + { + "name": "torso_novakid_defolt", + "directions": 4 + }, + { + "name": "cone_a", + "directions": 4 + }, + { + "name": "connect_a", + "directions": 4 + }, + { + "name": "dot_a", + "directions": 4 + }, + { + "name": "dotline_a", + "directions": 4 + }, + { + "name": "G_a", + "directions": 4 + }, + { + "name": "house", + "directions": 4 + }, + { + "name": "K", + "directions": 4 + }, + { + "name": "lima-a", + "directions": 4 + }, + { + "name": "linedot_a", + "directions": 4 + }, + { + "name": "omega_a", + "directions": 4 + }, + { + "name": "plus", + "directions": 4 + }, + { + "name": "rose", + "directions": 4 + }, + { + "name": "shatter_a", + "directions": 4 + }, + { + "name": "star_a", + "directions": 4 + }, + { + "name": "two-a", + "directions": 4 + }, + { + "name": "eyes_a", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/meteoric_shower.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/meteoric_shower.png new file mode 100644 index 00000000000..b18fb864a1d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/meteoric_shower.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/milky_way.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/milky_way.png new file mode 100644 index 00000000000..435f3551fb6 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/milky_way.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/note.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/note.png new file mode 100644 index 00000000000..b84fef13b21 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/note.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/omega_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/omega_a.png new file mode 100644 index 00000000000..f11693883a1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/omega_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/plus.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/plus.png new file mode 100644 index 00000000000..361b003705b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/plus.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/prism.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/prism.png new file mode 100644 index 00000000000..ef6dbd7ca7d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/prism.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/rose.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/rose.png new file mode 100644 index 00000000000..e4e8447260c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/rose.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/rune.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/rune.png new file mode 100644 index 00000000000..94418036a25 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/rune.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/shatter_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/shatter_a.png new file mode 100644 index 00000000000..96022e17ad4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/shatter_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/solar_corona.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/solar_corona.png new file mode 100644 index 00000000000..ceaca8e3fa1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/solar_corona.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/squad.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/squad.png new file mode 100644 index 00000000000..281985ffe71 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/squad.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/star_a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/star_a.png new file mode 100644 index 00000000000..a5201c7a81c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/star_a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/star_rain.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/star_rain.png new file mode 100644 index 00000000000..8663a796eb8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/star_rain.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/starfall.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/starfall.png new file mode 100644 index 00000000000..8fd73d0b099 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/starfall.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/starfire.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/starfire.png new file mode 100644 index 00000000000..70ecc1dc05a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/starfire.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/sunshine.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/sunshine.png new file mode 100644 index 00000000000..b8fa56ffc02 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/sunshine.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/supernova.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/supernova.png new file mode 100644 index 00000000000..f32e05e3490 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/supernova.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/thrill.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/thrill.png new file mode 100644 index 00000000000..de21f219e9e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/thrill.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/torso_novakid_defolt.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/torso_novakid_defolt.png new file mode 100644 index 00000000000..ebf121a6074 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/torso_novakid_defolt.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/triple.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/triple.png new file mode 100644 index 00000000000..be2bf559f09 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/triple.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/two-a.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/two-a.png new file mode 100644 index 00000000000..f6092ce9a98 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/two-a.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/uncrucifix.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/uncrucifix.png new file mode 100644 index 00000000000..08b6f3757f9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/uncrucifix.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/universal_style.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/universal_style.png new file mode 100644 index 00000000000..7cdf64170e2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/universal_style.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/virgo.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/virgo.png new file mode 100644 index 00000000000..8c17db7d161 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/virgo.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/x.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/x.png new file mode 100644 index 00000000000..57376f1cd1e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/x.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/ye.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/ye.png new file mode 100644 index 00000000000..177e6fb2154 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/ye.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/zeta.png b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/zeta.png new file mode 100644 index 00000000000..a1def612c94 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Novakid/custom.rsi/zeta.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/meta.json new file mode 100644 index 00000000000..4d2a580d31d --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made team Adventure Time", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "shadekin", + "directions": 4 + }, + { + "name": "shadekin_stripes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/shadekin.png b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/shadekin.png new file mode 100644 index 00000000000..3aec926c5e2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/shadekin.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/shadekin_stripes.png b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/shadekin_stripes.png new file mode 100644 index 00000000000..ce1f04ce602 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_ears.rsi/shadekin_stripes.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/meta.json new file mode 100644 index 00000000000..4af0caebe8a --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made team Adventure Time", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "shadekin_medium", + "directions": 4 + }, + { + "name": "shadekin_shorter", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/shadekin_medium.png b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/shadekin_medium.png new file mode 100644 index 00000000000..ca162bb1b05 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/shadekin_medium.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/shadekin_shorter.png b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/shadekin_shorter.png new file mode 100644 index 00000000000..979e4e6b26c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_32x32.rsi/shadekin_shorter.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/meta.json new file mode 100644 index 00000000000..549db63464e --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "size": { + "x": 64, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/96703f76bccd8fe6a96b78524efb97a9af661767 Shadekin big fluff made by DSC@Cabbage#9633 (561159087765848084)", + "states": [ + { + "name": "shadekin", + "directions": 4 + }, + { + "name": "shadekin_big", + "directions": 4 + }, + { + "name": "shadekin_big_fluff", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin.png b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin.png new file mode 100644 index 00000000000..94ff21d9cbb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin_big.png b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin_big.png new file mode 100644 index 00000000000..988aa6e589f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin_big.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin_big_fluff.png b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin_big_fluff.png new file mode 100644 index 00000000000..20ad696ccee Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Shadekin/shadekin_tails_64x32.rsi/shadekin_big_fluff.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/Muzzle.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/Muzzle.png new file mode 100644 index 00000000000..ff4542aab14 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/Muzzle.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/Muzzle2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/Muzzle2.png new file mode 100644 index 00000000000..90eb8a312a8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/Muzzle2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/arrow.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/arrow.png new file mode 100644 index 00000000000..c81d3c01965 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/arrow.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/big_heart.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/big_heart.png new file mode 100644 index 00000000000..f265684a5e2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/big_heart.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_cone.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_cone.png new file mode 100644 index 00000000000..4db3d4ecb0a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_cone.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_side.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_side.png new file mode 100644 index 00000000000..20eb7a02b6a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_side.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_side2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_side2.png new file mode 100644 index 00000000000..d1619e5b956 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braided_side2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braids_on_the_side.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braids_on_the_side.png new file mode 100644 index 00000000000..d5eba3c44cf Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braids_on_the_side.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braids_on_the_side2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braids_on_the_side2.png new file mode 100644 index 00000000000..89927f6df3d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/braids_on_the_side2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/breadwinner.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/breadwinner.png new file mode 100644 index 00000000000..6cdfc940086 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/breadwinner.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cardigan.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cardigan.png new file mode 100644 index 00000000000..723d4f1a679 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cardigan.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cardigan2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cardigan2.png new file mode 100644 index 00000000000..7497451d3d0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cardigan2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/collector.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/collector.png new file mode 100644 index 00000000000..3213d6164e0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/collector.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cone.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cone.png new file mode 100644 index 00000000000..cef73942c74 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/cone.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/ears.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/ears.png new file mode 100644 index 00000000000..773faaaf9d9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/ears.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/ears2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/ears2.png new file mode 100644 index 00000000000..fc8286ef859 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/ears2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/embarrassment.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/embarrassment.png new file mode 100644 index 00000000000..3a7c9e787ca Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/embarrassment.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/eyeliner.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/eyeliner.png new file mode 100644 index 00000000000..609cc9a24a5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/eyeliner.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fallen_cone.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fallen_cone.png new file mode 100644 index 00000000000..f8ad2540a31 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fallen_cone.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness.png new file mode 100644 index 00000000000..5b0f028113a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness2.png new file mode 100644 index 00000000000..199fe957147 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness3.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness3.png new file mode 100644 index 00000000000..b282dbcbf1a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/fluffiness3.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/foot_left.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/foot_left.png new file mode 100644 index 00000000000..d5d31d92589 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/foot_left.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/foot_right.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/foot_right.png new file mode 100644 index 00000000000..318a68fcb8c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/foot_right.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/forest_style.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/forest_style.png new file mode 100644 index 00000000000..a758ed96e63 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/forest_style.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/forest_style2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/forest_style2.png new file mode 100644 index 00000000000..dd97eda66a3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/forest_style2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gorgon.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gorgon.png new file mode 100644 index 00000000000..f4896a747e8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gorgon.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_left.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_left.png new file mode 100644 index 00000000000..158490efaf1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_left.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_left2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_left2.png new file mode 100644 index 00000000000..399c15b74d7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_left2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_right.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_right.png new file mode 100644 index 00000000000..7f53ae8a0db Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_right.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_right2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_right2.png new file mode 100644 index 00000000000..23a4eed4c34 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradientfoot_right2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_left.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_left.png new file mode 100644 index 00000000000..a97029f13d0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_left.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_left2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_left2.png new file mode 100644 index 00000000000..ef7253b5dc1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_left2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_right.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_right.png new file mode 100644 index 00000000000..b1663bee1d7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_right.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_right2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_right2.png new file mode 100644 index 00000000000..c30ed1d606c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/gradienthand_right2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace.png new file mode 100644 index 00000000000..9e8ae3dea03 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace2.png new file mode 100644 index 00000000000..7ad0f1be8ee Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace3.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace3.png new file mode 100644 index 00000000000..6c7302a50d3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/grizzly_necklace3.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/hand_left.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/hand_left.png new file mode 100644 index 00000000000..902a8422dff Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/hand_left.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/hand_right.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/hand_right.png new file mode 100644 index 00000000000..dae728a8c9f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/hand_right.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/kiss.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/kiss.png new file mode 100644 index 00000000000..d497f1d1b12 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/kiss.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/left_eye.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/left_eye.png new file mode 100644 index 00000000000..dcfcc2065fe Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/left_eye.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/meta.json new file mode 100644 index 00000000000..4da10e2ac5b --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/meta.json @@ -0,0 +1,287 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:lunalita", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "arrow", + "directions": 4 + }, + { + "name": "big_heart", + "directions": 4 + }, + { + "name": "braided_cone", + "directions": 4 + }, + { + "name": "braided_side", + "directions": 4 + }, + { + "name": "braided_side2", + "directions": 4 + }, + { + "name": "braids_on_the_side", + "directions": 4 + }, + { + "name": "braids_on_the_side2", + "directions": 4 + }, + { + "name": "breadwinner", + "directions": 4 + }, + { + "name": "cardigan", + "directions": 4 + }, + { + "name": "cardigan2", + "directions": 4 + }, + { + "name": "collector", + "directions": 4 + }, + { + "name": "cone", + "directions": 4 + }, + { + "name": "ears", + "directions": 4 + }, + { + "name": "ears2", + "directions": 4 + }, + { + "name": "embarrassment", + "directions": 4 + }, + { + "name": "eyeliner", + "directions": 4 + }, + { + "name": "fallen_cone", + "directions": 4 + }, + { + "name": "fluffiness", + "directions": 4 + }, + { + "name": "fluffiness2", + "directions": 4 + }, + { + "name": "fluffiness3", + "directions": 4 + }, + { + "name": "forest_style", + "directions": 4 + }, + { + "name": "forest_style2", + "directions": 4 + }, + { + "name": "gorgon", + "directions": 4 + }, + { + "name": "gradientfoot_left", + "directions": 4 + }, + { + "name": "gradientfoot_left2", + "directions": 4 + }, + { + "name": "gradientfoot_right", + "directions": 4 + }, + { + "name": "gradientfoot_right2", + "directions": 4 + }, + { + "name": "gradienthand_left", + "directions": 4 + }, + { + "name": "gradienthand_left2", + "directions": 4 + }, + { + "name": "gradienthand_right", + "directions": 4 + }, + { + "name": "gradienthand_right2", + "directions": 4 + }, + { + "name": "grizzly_necklace", + "directions": 4 + }, + { + "name": "grizzly_necklace2", + "directions": 4 + }, + { + "name": "grizzly_necklace3", + "directions": 4 + }, + { + "name": "kiss", + "directions": 4 + }, + { + "name": "left_eye", + "directions": 4 + }, + { + "name": "Muzzle", + "directions": 4 + }, + { + "name": "Muzzle2", + "directions": 4 + }, + { + "name": "neat", + "directions": 4 + }, + { + "name": "nose", + "directions": 4 + }, + { + "name": "panda", + "directions": 4 + }, + { + "name": "rigth_eye", + "directions": 4 + }, + { + "name": "short_hedgehog", + "directions": 4 + }, + { + "name": "short_hedgehog2", + "directions": 4 + }, + { + "name": "soft_belly", + "directions": 4 + }, + { + "name": "soft_belly2", + "directions": 4 + }, + { + "name": "soft_waves", + "directions": 4 + }, + { + "name": "soft_waves2", + "directions": 4 + }, + { + "name": "space_bear", + "directions": 4 + }, + { + "name": "spots", + "directions": 4 + }, + { + "name": "spots_left", + "directions": 4 + }, + { + "name": "spots_right", + "directions": 4 + }, + { + "name": "star", + "directions": 4 + }, + { + "name": "surface_river", + "directions": 4 + }, + { + "name": "tail_big_dipper", + "directions": 4 + }, + { + "name": "tattoo_leader", + "directions": 4 + }, + { + "name": "third_eye", + "directions": 4 + }, + { + "name": "valkyries_scythe", + "directions": 4 + }, + { + "name": "valkyries_scythe2", + "directions": 4 + }, + { + "name": "warrior", + "directions": 4 + }, + { + "name": "warrior2", + "directions": 4 + }, + { + "name": "warriors_scythe", + "directions": 4 + }, + { + "name": "whip", + "directions": 4 + }, + { + "name": "whip2", + "directions": 4 + }, + { + "name": "young_boy", + "directions": 4 + }, + { + "name": "foot_left", + "directions": 4 + }, + { + "name": "foot_right", + "directions": 4 + }, + { + "name": "hand_left", + "directions": 4 + }, + { + "name": "hand_right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/neat.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/neat.png new file mode 100644 index 00000000000..6c2975b83d7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/neat.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/nose.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/nose.png new file mode 100644 index 00000000000..64e411466e5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/nose.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/panda.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/panda.png new file mode 100644 index 00000000000..8fd1df3026b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/panda.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/rigth_eye.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/rigth_eye.png new file mode 100644 index 00000000000..c3b82cbba31 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/rigth_eye.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/short_hedgehog.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/short_hedgehog.png new file mode 100644 index 00000000000..a066134c996 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/short_hedgehog.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/short_hedgehog2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/short_hedgehog2.png new file mode 100644 index 00000000000..12417d2881e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/short_hedgehog2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_belly.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_belly.png new file mode 100644 index 00000000000..2ca9ef3bc30 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_belly.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_belly2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_belly2.png new file mode 100644 index 00000000000..97de99211cb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_belly2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_waves.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_waves.png new file mode 100644 index 00000000000..dd2b3b4d41c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_waves.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_waves2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_waves2.png new file mode 100644 index 00000000000..dafca15447f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/soft_waves2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/space_bear.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/space_bear.png new file mode 100644 index 00000000000..c0576cbd41e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/space_bear.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots.png new file mode 100644 index 00000000000..247636481fb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots_left.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots_left.png new file mode 100644 index 00000000000..99642d6e858 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots_left.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots_right.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots_right.png new file mode 100644 index 00000000000..83461de6b1c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/spots_right.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/star.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/star.png new file mode 100644 index 00000000000..0bc168037c1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/star.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/surface_river.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/surface_river.png new file mode 100644 index 00000000000..69fc748eefb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/surface_river.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/tail_big_dipper.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/tail_big_dipper.png new file mode 100644 index 00000000000..ae73210bc3b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/tail_big_dipper.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/tattoo_leader.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/tattoo_leader.png new file mode 100644 index 00000000000..c324caa125a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/tattoo_leader.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/third_eye.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/third_eye.png new file mode 100644 index 00000000000..35a38deb74e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/third_eye.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/valkyries_scythe.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/valkyries_scythe.png new file mode 100644 index 00000000000..f69a767eafa Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/valkyries_scythe.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/valkyries_scythe2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/valkyries_scythe2.png new file mode 100644 index 00000000000..35f8acbc3f1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/valkyries_scythe2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warrior.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warrior.png new file mode 100644 index 00000000000..3b4dd8c657f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warrior.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warrior2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warrior2.png new file mode 100644 index 00000000000..bc606cbd551 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warrior2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warriors_scythe.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warriors_scythe.png new file mode 100644 index 00000000000..63b79e7d21b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/warriors_scythe.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/whip.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/whip.png new file mode 100644 index 00000000000..a27946ad575 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/whip.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/whip2.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/whip2.png new file mode 100644 index 00000000000..d80c7316f23 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/whip2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/young_boy.png b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/young_boy.png new file mode 100644 index 00000000000..4bd0d2da703 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Ursus/custom.rsi/young_boy.png differ diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/full_f.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/full_f.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/full_f.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/full_f.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/full_m.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/full_m.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/full_m.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/full_m.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/full_t.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/full_t.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/full_t.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/full_t.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/head_f.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/head_f.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/head_f.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/head_m.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/head_m.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/head_m.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/head_t.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/head_t.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/head_t.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/head_t.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_arm.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_arm.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_arm.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_foot.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_foot.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_foot.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_hand.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_hand.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_hand.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_leg.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/l_leg.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/l_leg.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/meta.json similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/meta.json rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/meta.json diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_arm.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_arm.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_arm.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_foot.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_foot.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_foot.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_hand.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_hand.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_hand.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_leg.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/r_leg.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/r_leg.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/tail.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/tail.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/tail.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/tail.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/torso_f.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/torso_f.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/torso_f.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/torso_m.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/torso_m.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/torso_m.png diff --git a/Resources/Textures/ADT/Mobs/Demon/parts.rsi/torso_t.png b/Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/torso_t.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Demon/parts.rsi/torso_t.png rename to Resources/Textures/ADT/Mobs/Species/Demon/parts.rsi/torso_t.png diff --git a/Resources/Textures/ADT/Mobs/Drask/organs.rsi/eyes.png b/Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/eyes.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/organs.rsi/eyes.png rename to Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/eyes.png diff --git a/Resources/Textures/ADT/Mobs/Drask/organs.rsi/heart_on.png b/Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/heart_on.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/organs.rsi/heart_on.png rename to Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/heart_on.png diff --git a/Resources/Textures/ADT/Mobs/Drask/organs.rsi/innards.png b/Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/innards.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/organs.rsi/innards.png rename to Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/innards.png diff --git a/Resources/Textures/ADT/Mobs/Drask/organs.rsi/kidneys.png b/Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/kidneys.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/organs.rsi/kidneys.png rename to Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/kidneys.png diff --git a/Resources/Textures/ADT/Mobs/Drask/organs.rsi/lungs.png b/Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/lungs.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/organs.rsi/lungs.png rename to Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/lungs.png diff --git a/Resources/Textures/ADT/Mobs/Drask/organs.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/meta.json similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/organs.rsi/meta.json rename to Resources/Textures/ADT/Mobs/Species/Drask/organs.rsi/meta.json diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/eyes.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/eyes.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/eyes.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/eyes.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/full.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/full.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/full.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/head_f.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/head_f.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/head_f.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/head_m.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/head_m.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/head_m.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_arm.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_arm.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_arm.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_foot.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_foot.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_foot.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_hand.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_hand.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_hand.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_leg.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/l_leg.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/l_leg.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/meta.json similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/meta.json rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/meta.json diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_arm.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_arm.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_arm.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_foot.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_foot.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_foot.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_hand.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_hand.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_hand.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_leg.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/r_leg.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/r_leg.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/torso_f.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/torso_f.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/torso_f.png diff --git a/Resources/Textures/ADT/Mobs/Drask/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/torso_m.png similarity index 100% rename from Resources/Textures/ADT/Mobs/Drask/parts.rsi/torso_m.png rename to Resources/Textures/ADT/Mobs/Species/Drask/parts.rsi/torso_m.png diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-left.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-left.png new file mode 100644 index 00000000000..cf6e4684e9c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-right.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-right.png new file mode 100644 index 00000000000..978d4f3c5f1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain.png new file mode 100644 index 00000000000..f69ff1aa3e4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/ears.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/ears.png new file mode 100644 index 00000000000..9966cc2ac2d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/ears.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-l.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-l.png new file mode 100644 index 00000000000..09b98e316f8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-l.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-r.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-r.png new file mode 100644 index 00000000000..f1ff37a002f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-r.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-off.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-off.png new file mode 100644 index 00000000000..7dda0d3a8e6 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-off.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-on.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-on.png new file mode 100644 index 00000000000..676a641989a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-on.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/meta.json new file mode 100644 index 00000000000..3078ec86feb --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/meta.json @@ -0,0 +1,82 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "heart-off" + }, + { + "name": "heart-on", + "delays": [ + [ + 0.6, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "brain", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "eyeball-r" + }, + { + "name": "tongue" + }, + { + "name": "eyeball-l" + }, + { + "name": "microcell", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "ears" + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/microcell.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/microcell.png new file mode 100644 index 00000000000..18b692a5a99 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/microcell.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/tongue.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/tongue.png new file mode 100644 index 00000000000..dee2ed3b99f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/tongue.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/full.png new file mode 100644 index 00000000000..7faae4a077e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/full.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_f.png new file mode 100644 index 00000000000..31d77176c96 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_m.png new file mode 100644 index 00000000000..53d6069a283 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_arm.png new file mode 100644 index 00000000000..4f042bf40e0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_foot.png new file mode 100644 index 00000000000..bb9bede2180 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_hand.png new file mode 100644 index 00000000000..5b6c2df090c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_leg.png new file mode 100644 index 00000000000..788f2769d43 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/meta.json new file mode 100644 index 00000000000..1463c57a060 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/meta.json @@ -0,0 +1,62 @@ +{ + "version": 2, + "license": "CC-BY-SA-3.0", + "copyright": "Original drawn by @robustyanka on Discord, modified by @pspritechologist", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_arm.png new file mode 100644 index 00000000000..6c1ff1ec9cf Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_foot.png new file mode 100644 index 00000000000..2389c30aea5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_hand.png new file mode 100644 index 00000000000..3ec4fab0378 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_leg.png new file mode 100644 index 00000000000..f424b2efbca Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_f.png new file mode 100644 index 00000000000..b36a2eed8c7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_m.png new file mode 100644 index 00000000000..df2588b562d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/eyes.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/eyes.png new file mode 100644 index 00000000000..e35b5717d2f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/eyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/full.png new file mode 100644 index 00000000000..a1f944ad023 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/full.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_f.png new file mode 100644 index 00000000000..6788ca0c00e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_m.png new file mode 100644 index 00000000000..6788ca0c00e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/icon.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/icon.png new file mode 100644 index 00000000000..016d8ba5a76 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_arm.png new file mode 100644 index 00000000000..0dac6f22cf3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_foot.png new file mode 100644 index 00000000000..1dfe4f91724 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_hand.png new file mode 100644 index 00000000000..7b90385759f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_leg.png new file mode 100644 index 00000000000..54efa6db786 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/meta.json new file mode 100644 index 00000000000..636f6b545dc --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/meta.json @@ -0,0 +1,69 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/commit/1d0eadcb126fc3581eed33490f4be2a88157af58, modified by https://github.com/PixelTheKermit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "full" + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + }, + { + "name": "eyes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_arm.png new file mode 100644 index 00000000000..7ece2c81c72 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_foot.png new file mode 100644 index 00000000000..1071c6bf8b3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_hand.png new file mode 100644 index 00000000000..1302b00b0ef Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_leg.png new file mode 100644 index 00000000000..6f45ae18950 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_f.png new file mode 100644 index 00000000000..233dd6d7222 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_m.png new file mode 100644 index 00000000000..a2722c22730 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/full_f.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/full_f.png new file mode 100644 index 00000000000..5a4a6898d6e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/full_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/full_m.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/full_m.png new file mode 100644 index 00000000000..0349a404745 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/full_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/head_f.png new file mode 100644 index 00000000000..ac696334e0d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/head_m.png new file mode 100644 index 00000000000..ac696334e0d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_arm.png new file mode 100644 index 00000000000..f4d0d602735 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_foot.png new file mode 100644 index 00000000000..5fb4181af43 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_hand.png new file mode 100644 index 00000000000..63b021fdc1d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_leg.png new file mode 100644 index 00000000000..5ff37fb6468 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/meta.json new file mode 100644 index 00000000000..c7fcca2b0f3 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/meta.json @@ -0,0 +1,65 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:lunalita", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full_f" + }, + { + "name": "full_m" + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_arm.png new file mode 100644 index 00000000000..ef130727fcc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_foot.png new file mode 100644 index 00000000000..c9f1019a721 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_hand.png new file mode 100644 index 00000000000..613af0bade2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_leg.png new file mode 100644 index 00000000000..0c59528eed1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/torso_f.png new file mode 100644 index 00000000000..eb11c35ac60 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/torso_m.png new file mode 100644 index 00000000000..29c02bec0dc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Novakid/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/hand.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/hand.png new file mode 100644 index 00000000000..c2f4e53b378 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/head.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/head.png new file mode 100644 index 00000000000..fd75194b031 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/head.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/jumpsuit.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/jumpsuit.png new file mode 100644 index 00000000000..81d4db70a71 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/meta.json new file mode 100644 index 00000000000..35f7cc1d4fd --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Displacement maps made by _kote", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit", + "directions": 4 + }, + { + "name": "shoes", + "directions": 4 + }, + { + "name": "hand", + "directions": 4 + }, + { + "name": "head", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/shoes.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/shoes.png new file mode 100644 index 00000000000..3124d9c1e71 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/shoes.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/eyes.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/eyes.png new file mode 100644 index 00000000000..20fd326f17f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/eyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/full.png new file mode 100644 index 00000000000..8ebd75032e6 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/full.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/head_f.png new file mode 100644 index 00000000000..9d99bd18903 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/head_m.png new file mode 100644 index 00000000000..9d99bd18903 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_arm.png new file mode 100644 index 00000000000..078ca333f6d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_foot.png new file mode 100644 index 00000000000..30ad69dc3f0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_hand.png new file mode 100644 index 00000000000..0cbc7371d14 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_leg.png new file mode 100644 index 00000000000..b961dfc842a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/meta.json new file mode 100644 index 00000000000..11752d51403 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/meta.json @@ -0,0 +1,67 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/5bc3ea02ce03a551c85017f1ddd411315a19a5ca#diff-519788fa2ca74299d1686a44d3ab2098b49ed5ab65d293ec742bead7d49f0b8d", + "states": [ + { + "name": "full", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "eyes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_arm.png new file mode 100644 index 00000000000..c294120942c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_foot.png new file mode 100644 index 00000000000..390e0a27ee3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_hand.png new file mode 100644 index 00000000000..331e33a587e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_leg.png new file mode 100644 index 00000000000..6b0270f6343 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/torso_f.png new file mode 100644 index 00000000000..83cc63cdd29 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/torso_m.png new file mode 100644 index 00000000000..dafc83b65eb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Shadekin/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/full.png new file mode 100644 index 00000000000..cb8d7819064 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/full.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/head_f.png new file mode 100644 index 00000000000..a9fb3f74e06 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/head_m.png new file mode 100644 index 00000000000..89a103e43ec Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_arm.png new file mode 100644 index 00000000000..9febc989945 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_foot.png new file mode 100644 index 00000000000..6f3b2f757fe Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_hand.png new file mode 100644 index 00000000000..ed86315a9a7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_leg.png new file mode 100644 index 00000000000..e4ffe00be2f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/meta.json new file mode 100644 index 00000000000..3e82ed71a10 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/meta.json @@ -0,0 +1,70 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:lunalita", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "urs_f", + "directions": 4 + }, + { + "name": "urs_m", + "directions": 4 + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_arm.png new file mode 100644 index 00000000000..fc2144934a9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_foot.png new file mode 100644 index 00000000000..fde657848d1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_hand.png new file mode 100644 index 00000000000..125bb100927 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_leg.png new file mode 100644 index 00000000000..03a51682cbe Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/torso_f.png new file mode 100644 index 00000000000..68d39c1db49 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/torso_m.png new file mode 100644 index 00000000000..fc2102682c6 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/urs_f.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/urs_f.png new file mode 100644 index 00000000000..45318a3f8f0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/urs_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/urs_m.png b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/urs_m.png new file mode 100644 index 00000000000..2437cf10b8c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Ursus/parts.rsi/urs_m.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/translator.rsi/icon.png b/Resources/Textures/ADT/Objects/Devices/translator.rsi/icon.png similarity index 100% rename from Resources/Textures/_NF/Objects/Devices/translator.rsi/icon.png rename to Resources/Textures/ADT/Objects/Devices/translator.rsi/icon.png diff --git a/Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-left-translator.png b/Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-left-translator.png similarity index 100% rename from Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-left-translator.png rename to Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-left-translator.png diff --git a/Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-left.png rename to Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-left.png diff --git a/Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-right-translator.png b/Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-right-translator.png similarity index 100% rename from Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-right-translator.png rename to Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-right-translator.png diff --git a/Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/_NF/Objects/Devices/translator.rsi/inhand-right.png rename to Resources/Textures/ADT/Objects/Devices/translator.rsi/inhand-right.png diff --git a/Resources/Textures/_NF/Objects/Devices/translator.rsi/meta.json b/Resources/Textures/ADT/Objects/Devices/translator.rsi/meta.json similarity index 100% rename from Resources/Textures/_NF/Objects/Devices/translator.rsi/meta.json rename to Resources/Textures/ADT/Objects/Devices/translator.rsi/meta.json diff --git a/Resources/Textures/_NF/Objects/Devices/translator.rsi/translator.png b/Resources/Textures/ADT/Objects/Devices/translator.rsi/translator.png similarity index 100% rename from Resources/Textures/_NF/Objects/Devices/translator.rsi/translator.png rename to Resources/Textures/ADT/Objects/Devices/translator.rsi/translator.png diff --git a/Resources/Textures/ADT/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/ADT/Objects/Fun/toys.rsi/meta.json new file mode 100644 index 00000000000..f16f176d480 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Fun/toys.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created ADT team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "plushie_ursus" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Fun/toys.rsi/plushie_ursus.png b/Resources/Textures/ADT/Objects/Fun/toys.rsi/plushie_ursus.png new file mode 100644 index 00000000000..2b45cb6707b Binary files /dev/null and b/Resources/Textures/ADT/Objects/Fun/toys.rsi/plushie_ursus.png differ diff --git a/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/meta.json b/Resources/Textures/ADT/Objects/Misc/stamps.rsi/meta.json similarity index 100% rename from Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/meta.json rename to Resources/Textures/ADT/Objects/Misc/stamps.rsi/meta.json diff --git a/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/stamp-magistrat.png b/Resources/Textures/ADT/Objects/Misc/stamps.rsi/stamp-magistrat.png similarity index 100% rename from Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/stamp-magistrat.png rename to Resources/Textures/ADT/Objects/Misc/stamps.rsi/stamp-magistrat.png diff --git a/Resources/Textures/ADT/Shaders/color_tint.swsl b/Resources/Textures/ADT/Shaders/color_tint.swsl new file mode 100644 index 00000000000..f95011cefab --- /dev/null +++ b/Resources/Textures/ADT/Shaders/color_tint.swsl @@ -0,0 +1,56 @@ +light_mode unshaded; + +uniform sampler2D SCREEN_TEXTURE; +uniform lowp vec3 tint_color; // RGB color between 0 and 1 +uniform lowp float tint_amount; // Number between 0 and 1 + +// Function to convert RGB to HSV. +highp vec3 rgb2hsv(highp vec3 c) +{ + highp vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + highp vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g)); + highp vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r)); + + highp float d = q.x - min(q.w, q.y); + /* float e = 1.0e-10; */ + highp float e = 0.0000000001; + return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); +} + +// Function to convert HSV to RGB. +highp vec3 hsv2rgb(highp vec3 c) +{ + highp vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + highp vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y); +} + +void fragment() { + highp vec4 color = zTextureSpec(SCREEN_TEXTURE, FRAGCOORD.xy * SCREEN_PIXEL_SIZE); + + // Convert color to HSV. + highp vec3 hsvTint = rgb2hsv(tint_color); + highp vec3 hsvColor = rgb2hsv(color.rgb); + + // Set the original hue to the tint hue as long as it's not greyscale. + if (hsvTint.y > 0.05 && hsvTint.z != 0.0) + { + hsvColor.x = hsvTint.x; + } + // Modify saturation based on tint color saturation, + // Halving it if it's higher and capping it at the original. + hsvColor.y = (hsvColor.y < hsvTint.y) ? + mix(hsvColor.y, hsvTint.y, 0.75) : mix(hsvColor.y, hsvTint.y, 0.35); + + // Modify value based on tint color value, but only if it's darker. + hsvColor.z = (mix(hsvColor.z, hsvTint.z, 0.85) <= hsvColor.z) ? + mix(hsvColor.z, hsvTint.z, 0.85) : hsvColor.z; + + // Convert back to RGB. + highp vec3 rgbColorMod = hsv2rgb(hsvColor); + + // Mix the final RGB product with the original color to the intensity of the tint. + color.rgb = mix(color.rgb, rgbColorMod, tint_amount); + + COLOR = color; +} diff --git a/Resources/Textures/ADT/Shaders/seeing_static.swsl b/Resources/Textures/ADT/Shaders/seeing_static.swsl new file mode 100644 index 00000000000..765cb94f712 --- /dev/null +++ b/Resources/Textures/ADT/Shaders/seeing_static.swsl @@ -0,0 +1,43 @@ +// Credited to PelicanPolice on Shadertoy +// Free for any purpose, commercial or otherwise. +// But do post here so I can see where it got used! +// If using on shadertoy, do link to this project on yours :) + +// A copy of the camera static shader, but takes a screen texture, and an amount to mix by. + +uniform sampler2D SCREEN_TEXTURE; +uniform highp float mixAmount; + +highp float noise(highp vec2 pos, highp float evolve) { + + // Loop the evolution (over a very long period of time). + highp float e = fract((evolve*0.01)); + + // Coordinates + highp float cx = pos.x*e; + highp float cy = sin(pos.y*e * 376.0); // is this close enough to a 60hz interference? :smol: + + highp float v2_2 = cx*2.4/cy*23.0+pow(abs(cy/22.4),3.3); + highp float v2_1 = fract(fract(v2_2)); + highp float v2 = fract(2.0/v2_1); + highp float v3 = fract(cx*evolve/pow(abs(cy),0.050)); + + // Generate a "random" black or white value + return fract(0.1*v2*v3); +} + + +void fragment() { + highp vec4 color = zTextureSpec(SCREEN_TEXTURE, UV); + highp vec2 coords = FRAGCOORD.xy; + + highp vec3 staticAmount; + for (int i = 0; i < 1; i++) + { + // Generate a black to white pixel + staticAmount = vec3(noise(coords,TIME)); + } + + // Output to screen + COLOR = mix(color, vec4(staticAmount, 1.0), mixAmount); +} diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/HV.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/HV.png new file mode 100644 index 00000000000..c74f8d48d53 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/HV.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/LV.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/LV.png new file mode 100644 index 00000000000..87b6b7cf25d Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/LV.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/MV.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/MV.png new file mode 100644 index 00000000000..7276d79d380 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/MV.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/base.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/base.png new file mode 100644 index 00000000000..dcd8ca51df2 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/base.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_1.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_1.png new file mode 100644 index 00000000000..f254109f0cb Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_1.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_2.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_2.png new file mode 100644 index 00000000000..f602224e5ac Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_2.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_active_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_active_unlit.png new file mode 100644 index 00000000000..18357d1eb9d Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_active_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_closed_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_closed_unlit.png new file mode 100644 index 00000000000..99eec2b9815 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_closed_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_open_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_open_unlit.png new file mode 100644 index 00000000000..9f52b9154ac Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_open_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_panel.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_panel.png new file mode 100644 index 00000000000..95f7dd49e96 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_panel.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_unlit.png new file mode 100644 index 00000000000..586fe93f3b3 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/closed.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/closed.png new file mode 100644 index 00000000000..6f88f12c2e9 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/closed.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/icon.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/icon.png new file mode 100644 index 00000000000..fbd69e21679 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/meta.json b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/meta.json new file mode 100644 index 00000000000..cc7e1771aab --- /dev/null +++ b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/meta.json @@ -0,0 +1,61 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation at commit https://github.com/yogstation13/Yogstation/commit/159e6bf846e911590ab27f15272ec2ebc465c1da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "HV" + }, + { + "name": "MV" + }, + { + "name": "LV" + }, + { + "name": "base" + }, + { + "name": "open" + }, + { + "name": "closed" + }, + { + "name": "borgcharger_open_unlit" + }, + { + "name": "borgcharger_closed_unlit" + }, + { + "name": "borgcharger_unlit" + }, + { + "name": "borgcharger_active_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.15 + ] + ] + }, + { + "name": "borgcharger_panel" + }, + { + "name": "borgcharger_1" + }, + { + "name": "borgcharger_2" + } + ] +} diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/open.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/open.png new file mode 100644 index 00000000000..76a8ae2ad3e Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/open.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json index adc8f03c687..6f2962a0591 100644 --- a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, resprite by muriexlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy, resprite by muriexlol", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..f5a8cf7c054 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json index a470e009443..cec1961dce8 100644 --- a/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/cardborg_h.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. vox state by Flareguy", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hats/papersack.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/papersack.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..10f06b436de Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/papersack.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/papersack.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/papersack.rsi/meta.json index ab1f7a4abf6..c6887def720 100644 --- a/Resources/Textures/Clothing/Head/Hats/papersack.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/papersack.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Beestation at commit https://github.com/BeeStation/BeeStation-Hornet/commit/0bb49b1a97488349ee89308ad6a0904066e1c6f3", + "copyright": "Taken from Beestation at commit https://github.com/BeeStation/BeeStation-Hornet/commit/0bb49b1a97488349ee89308ad6a0904066e1c6f3. vox states by Flareguy", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hats/santahat.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..9e7eca032cd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json index a470e009443..cec1961dce8 100644 --- a/Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/santahat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. vox state by Flareguy", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/equipped-HELMET-urs.png b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/equipped-HELMET-urs.png new file mode 100644 index 00000000000..4f9fbfd234a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/equipped-HELMET-urs.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..529fcc15581 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/icon.png new file mode 100644 index 00000000000..4a38c01372f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/meta.json new file mode 100644 index 00000000000..df5abc057db --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/urs_hat.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by lunalita for ADT", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-urs", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..4d8b97d11ed Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json index 9758bb6efd2..50433afd186 100644 --- a/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/paramedhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:𝘽𝙚𝙡𝙖𝙮#7441", + "copyright": "Created by discord:𝘽𝙚𝙡𝙖𝙮#7441. vox state by Flareguy", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..ab6cf612af6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json index f5de7080d18..05ff3325dd4 100644 --- a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. vox state by Flaregu", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json index 2bda2d773de..f5d7c77ac32 100644 --- a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Resprited by https://github.com/GamaYouNow", + "copyright": "Resprited by https://github.com/GamaYouNow. vox states by Flareguy", "size": { "x": 32, "y": 32 @@ -24,6 +24,14 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + }, { "name": "off-inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-equipped-HELMET-vox.png new file mode 100644 index 00000000000..93ead059afe Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 00000000000..7518548bf25 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/skubhead.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Misc/skubhead.rsi/equipped-HELMET-vox.png new file mode 100644 index 00000000000..b8f85bb15a3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/skubhead.rsi/equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/skubhead.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/skubhead.rsi/meta.json index 5868e6f365c..2ef7973a394 100644 --- a/Resources/Textures/Clothing/Head/Misc/skubhead.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Misc/skubhead.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation", + "copyright": "Taken from tgstation, equipped-HELMET-vox state by Flareguy", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png new file mode 100644 index 00000000000..27efed7a1c2 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png new file mode 100644 index 00000000000..f41daaa15a0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png new file mode 100644 index 00000000000..924520c2a89 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png new file mode 100644 index 00000000000..01013b3e5a2 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png new file mode 100644 index 00000000000..90e9e2e1f02 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png new file mode 100644 index 00000000000..60f46602d7e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png new file mode 100644 index 00000000000..bb3c306586a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json new file mode 100644 index 00000000000..6f5cb2dc1e8 --- /dev/null +++ b/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Modified version of clown mask by GoldenCan(github) (Copyright for clown mask: Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "equipped-MASK-hamster", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 + }, + { + "name": "equipped-MASK-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json index 613259f3332..d5b912b48d7 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 & inhand by github:Morb0, equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 & inhand by github:Morb0, reptilian made by kuro(388673708753027083). equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. inhands by Flareguy, modified from bio_suit in vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/30f9caeb59b0dd9da1dbcd4c69307ae182033a74", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png index 3b01d4176c4..56983936f41 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png index 62d25c958bb..b4cd26fd59d 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png index 581ba4b9515..9d7d68d0ab9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png deleted file mode 100644 index b4f8cacea5b..00000000000 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/equipped-OUTERCLOTHING-vox.png and /dev/null differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json index fc2108e65db..fa2fed5d459 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwarden.rsi/meta.json @@ -14,10 +14,6 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-vox.png new file mode 100644 index 00000000000..f6e8747d4a7 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png index 28cf03f49cc..890563ab432 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png index eaf984f4378..b12879adfd9 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json index c9f0d90ea13..1ffb8fc6bd5 100644 --- a/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/WinterCoats/coatwardenarmored.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd and modified by Flareguy", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET-vox.png index a7ebf25671f..5294d0cde32 100644 Binary files a/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET-vox.png and b/Resources/Textures/Clothing/Shoes/color.rsi/contrastedsoles-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET-vox.png index d81e2314b68..9ab3ec39583 100644 Binary files a/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET-vox.png and b/Resources/Textures/Clothing/Shoes/color.rsi/equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET-vox.png b/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET-vox.png index 0255ed7b786..35b9ed4f979 100644 Binary files a/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET-vox.png and b/Resources/Textures/Clothing/Shoes/color.rsi/soles-equipped-FEET-vox.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png index af5abf6f0bb..4d5a6f6cb87 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png index 861539fab81..5a6b5851b74 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png index bacc6c39de6..3faddf27e2b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png index d107c18c8da..193be2fcaa8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json index bb0a29fbfcd..c3fd459e7a7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite by DreamlyJack, monkey derivative made by brainfood1183 (github)", + "copyright": "Sprite by DreamlyJack, modified by Prazat (discord: prazat911), monkey derivative made by brainfood1183 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png index f4f4ab93ca6..4d18340f530 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png index ab39a7e17e4..b887556e93b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png index d0bd2174369..3faddf27e2b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png index a20d35709d5..193be2fcaa8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json index bb0a29fbfcd..c3fd459e7a7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite by DreamlyJack, monkey derivative made by brainfood1183 (github)", + "copyright": "Sprite by DreamlyJack, modified by Prazat (discord: prazat911), monkey derivative made by brainfood1183 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Interface/Bwoink/pinned.png b/Resources/Textures/Interface/Bwoink/pinned.png new file mode 100644 index 00000000000..80c8a202005 Binary files /dev/null and b/Resources/Textures/Interface/Bwoink/pinned.png differ diff --git a/Resources/Textures/Interface/Bwoink/pinned2.png b/Resources/Textures/Interface/Bwoink/pinned2.png new file mode 100644 index 00000000000..11c4b62f123 Binary files /dev/null and b/Resources/Textures/Interface/Bwoink/pinned2.png differ diff --git a/Resources/Textures/Interface/Bwoink/un_pinned.png b/Resources/Textures/Interface/Bwoink/un_pinned.png new file mode 100644 index 00000000000..26ef8b48185 Binary files /dev/null and b/Resources/Textures/Interface/Bwoink/un_pinned.png differ diff --git a/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png new file mode 100644 index 00000000000..ec3566f63ea Binary files /dev/null and b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png differ diff --git a/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml new file mode 100644 index 00000000000..5c43e233050 --- /dev/null +++ b/Resources/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Interface/languages-menu.svg b/Resources/Textures/Interface/languages-menu.svg new file mode 100644 index 00000000000..0dd1d100870 --- /dev/null +++ b/Resources/Textures/Interface/languages-menu.svg @@ -0,0 +1,7 @@ +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> + <!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools --> +<svg width="64px" height="64px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#ffffff" stroke="#ffffff"> + <g id="SVGRepo_bgCarrier" stroke-width="0"/> + <g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/> + <g id="SVGRepo_iconCarrier"> <!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools --> <title>ic_fluent_translate_24_filled</title> <desc>Created with Sketch.</desc> <g id="🔍-System-Icons" stroke-width="0.00024000000000000003" fill="none" fill-rule="evenodd"> <g id="ic_fluent_translate_24_filled" fill="#ffffff" fill-rule="nonzero"> <path d="M15.3126,5.63994 C15.5095,5.12393 16.0874,4.86518 16.6034,5.06202 C17.1194,5.25885 17.3781,5.83674 17.1813,6.35275 L17.1231,6.5047 L20,6.5047 C20.5523,6.5047 21,6.95241 21,7.5047 C21,8.01753143 20.613973,8.44020653 20.1166239,8.4979722 L20,8.5047 L16.408,8.5047 C16.3727,8.61597 16.3415,8.72385 16.3095,8.85307 L16.2624044,9.05769402 C16.2224816,9.24420102 16.1803286,9.47537857 16.1319,9.7865 C16.7485,9.69083 17.3801,9.69058 17.9878,9.78147 C18.1704,9.58554 18.4307,9.463 18.7196,9.463 C19.2265,9.463 19.6453,9.84017 19.7107,10.3292 C20.8597,10.9243 21.7947,11.972 21.9755,13.4941 C22.2707552,15.9786655 20.5946372,17.395369 19.6742022,18.0480766 L19.3072,18.3102 C18.8588,18.6325 18.2339,18.5303 17.9115,18.0819 C17.6139923,17.6679923 17.6781888,17.1036941 18.0425043,16.7657518 L18.1398,16.6862 L18.4326,16.476 C19.2545,15.9068 20.1519,15.0967 19.9895,13.7301 C19.9282,13.2143 19.6897,12.7818 19.3086,12.4495 C19.1722,12.8174 19.0061,13.1851 18.8169,13.536 C18.2687,14.5532 17.426,15.6179 16.2993,16.1629 C15.699,16.4533 15.0149,16.5959 14.2802,16.4897 C12.8381,16.2813 11.9591,15.1465 11.9610932,13.8324 C11.9629,12.6195 12.691,11.4088 14.0044,10.5755 L14.0288,10.3678 L14.0288,10.3678 L14.1287918,9.65542111 C14.1918134,9.23346973 14.2487942,8.90963239 14.3071646,8.63697877 L14.3365,8.5047 L13,8.5047 C12.4477,8.5047 12,8.05698 12,7.5047 C12,6.99185929 12.386027,6.56919214 12.8833761,6.51142766 L13,6.5047 L14.9819,6.5047 L15.3126,5.63994 L15.3126,5.63994 Z M8.03218,6.28981 C8.67234,6.47762 9.18766,6.77412 9.58177,7.17134 C9.97581,7.56849 10.2055,8.02276 10.3366,8.46179 C10.4939444,8.98850889 10.5155407,9.55548642 10.5115347,9.97735674 L10.5006074,10.442137 L10.5006074,10.442137 L10.5,16.0027 C10.5,16.555 10.0523,17.0027 9.5,17.0027 C9.04562,17.0027 8.66202,16.6996 8.5403,16.2846 L8.46022,16.3236 C7.49628,16.786 6.06287,17.2446 4.58287,16.8305 C2.95032,16.3737 2.13002,15.021 2.01116,13.6946 C1.89649,12.415 2.42155,10.9593 3.69323,10.2474 C5.22152,9.39187 6.80844,9.40802 7.95475,9.60674 C8.15081,9.64072 8.3364,9.68042 8.50951,9.72294 C8.50661,9.48002 8.48727,9.2584 8.4203,9.03419 C8.36533,8.85015 8.28357,8.70251 8.162,8.57998 C8.04062,8.45764 7.83644,8.31683 7.47235,8.20986 C6.0832,7.80608 4.95416,8.18379 4.4236,8.43211 C3.92339,8.66622 3.3281,8.4505 3.09399,7.95029 C2.85988,7.45008 3.0756,6.85479 3.57581,6.62068 L3.80023213,6.52138857 C4.6519807,6.16546102 6.18766783,5.7531687 8.03218,6.28981 Z M4.67018,11.9926 C4.24564,12.2302 3.941,12.8223 4.00318,13.5161 C4.06116,14.1631 4.42427,14.7093 5.12175,14.9044 C5.91243,15.1257 6.80286,14.9005 7.59509,14.5204 C7.96191,14.3444 8.27459,14.1508 8.5,13.9972 L8.5,11.7992 C8.26004,11.7203 7.95707,11.637 7.61315,11.5773 C6.72905,11.4241 5.65682,11.4402 4.67018,11.9926 Z M14.1591,13.1697 C14.0146,13.4242 13.9614,13.6579 13.9611,13.8354 C13.9606,14.1765 14.13,14.4242 14.5055,14.4998 C14.4576,14.3507 14.4092,14.1903 14.3621,14.0205 C14.2903,13.7618 14.22,13.4758 14.1591,13.1697 Z M17.4425,11.7296 C16.9524,11.6868 16.4513,11.7311 15.9896,11.8598 C16.02736,12.32004 16.109408,12.770616 16.2104,13.1835728 L16.2893,13.4858 C16.3038,13.5379 16.3184,13.589 16.3331,13.639 C16.5958,13.343 16.8416,12.9856 17.0564,12.5871 C17.2137,12.2952 17.3421,12.0043 17.4425,11.7296 Z" id="🎨-Color"> </path> </g> </g> </g> + </svg> \ No newline at end of file diff --git a/Resources/Textures/Interface/languages-menu.svg.192dpi.png b/Resources/Textures/Interface/languages-menu.svg.192dpi.png new file mode 100644 index 00000000000..41a2e310ca0 Binary files /dev/null and b/Resources/Textures/Interface/languages-menu.svg.192dpi.png differ diff --git a/Resources/Textures/Interface/languages-menu.svg.192dpi.png.yml b/Resources/Textures/Interface/languages-menu.svg.192dpi.png.yml new file mode 100644 index 00000000000..5c43e233050 --- /dev/null +++ b/Resources/Textures/Interface/languages-menu.svg.192dpi.png.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Mobs/Species/Human/displacement.rsi/jumpsuit-female.png b/Resources/Textures/Mobs/Species/Human/displacement.rsi/jumpsuit-female.png new file mode 100644 index 00000000000..be9c1064fbd Binary files /dev/null and b/Resources/Textures/Mobs/Species/Human/displacement.rsi/jumpsuit-female.png differ diff --git a/Resources/Textures/Mobs/Species/Human/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Human/displacement.rsi/meta.json new file mode 100644 index 00000000000..7ac587cad70 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Human/displacement.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by TheShuEd", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit-female", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/ears.png b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/ears.png new file mode 100644 index 00000000000..0b163821447 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/ears.png differ diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json index 81bdd40e0cb..2152470bd1f 100644 --- a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json +++ b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "jumpsuit state made by PJB3005. back, hand, and eyes states made by Flareguy", + "copyright": "jumpsuit state made by PJB3005. back, hand, and eyes states made by Flareguy, ears and shoes made by TheShuEd", "size": { "x": 32, "y": 32 @@ -22,9 +22,17 @@ "name": "hand", "directions": 4 }, + { + "name": "ears", + "directions": 4 + }, { "name": "eyes", "directions": 4 + }, + { + "name": "shoes", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Species/Vox/displacement.rsi/shoes.png b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/shoes.png new file mode 100644 index 00000000000..107a7500bb9 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vox/displacement.rsi/shoes.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json index f42362b2545..cb676a06ef7 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa", + "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, Spicy Rock Pizza modified from margherita pizza by mkanke", "size": { "x": 32, "y": 32 @@ -137,6 +137,12 @@ { "name": "box-inhand-left", "directions": 4 + }, + { + "name": "uranium-pizza" + }, + { + "name": "uranium-slice" } ] } diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-pizza.png b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-pizza.png new file mode 100644 index 00000000000..6fdb66c2dca Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-pizza.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-slice.png b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-slice.png new file mode 100644 index 00000000000..de619c3a137 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/pizza.rsi/uranium-slice.png differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-ord.png b/Resources/Textures/Objects/Devices/cartridge.rsi/cart-ord.png similarity index 100% rename from Resources/Textures/Objects/Devices/cartridges.rsi/cart-ord.png rename to Resources/Textures/Objects/Devices/cartridge.rsi/cart-ord.png diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/insert_overlay.png b/Resources/Textures/Objects/Devices/cartridge.rsi/insert_overlay.png similarity index 100% rename from Resources/Textures/Objects/Devices/cartridges.rsi/insert_overlay.png rename to Resources/Textures/Objects/Devices/cartridge.rsi/insert_overlay.png diff --git a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json index c7eb96d964e..f3b02a2b2ea 100644 --- a/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/cartridge.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d , cart-log made by Skarletto (github)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d and tgstation at tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8, cart-log made by Skarletto (github)", "size": { "x": 32, "y": 32 @@ -49,12 +49,18 @@ { "name": "cart-lib" }, + { + "name": "cart-log" + }, { "name": "cart-m" }, { "name": "cart-mi" }, + { + "name": "cart-ord" + }, { "name": "cart-q" }, @@ -74,7 +80,7 @@ "name": "cart-y" }, { - "name": "cart-log" + "name": "insert_overlay" } ] } diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-a.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-a.png deleted file mode 100644 index 567490fdea6..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-a.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-b.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-b.png deleted file mode 100644 index 90a75aecca7..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-b.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-c.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-c.png deleted file mode 100644 index e2fa89e9d56..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-c.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-ce.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-ce.png deleted file mode 100644 index 3eb6762a5ad..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-ce.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-chem.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-chem.png deleted file mode 100644 index 945092b63d0..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-chem.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-clown.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-clown.png deleted file mode 100644 index 384d2fbd099..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-clown.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-cmo.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-cmo.png deleted file mode 100644 index 794eeb32a2c..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-cmo.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-e.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-e.png deleted file mode 100644 index 81573340a36..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-e.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-eye.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-eye.png deleted file mode 100644 index 52be2688c4d..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-eye.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-h.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-h.png deleted file mode 100644 index 2cdc1326357..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-h.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-hos.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-hos.png deleted file mode 100644 index 5d3419fc63c..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-hos.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-j.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-j.png deleted file mode 100644 index f676b14b846..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-j.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-lib.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-lib.png deleted file mode 100644 index 6fbffc5962a..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-lib.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-m.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-m.png deleted file mode 100644 index 3956c626a44..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-m.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-mi.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-mi.png deleted file mode 100644 index ad50f4cd308..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-mi.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-q.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-q.png deleted file mode 100644 index 5f0e415ca8d..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-q.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-rd.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-rd.png deleted file mode 100644 index 3544bf21dfc..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-rd.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-s.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-s.png deleted file mode 100644 index 732722a2cf0..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-s.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-tear.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart-tear.png deleted file mode 100644 index a4fc0a1747f..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart-tear.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/cart.png b/Resources/Textures/Objects/Devices/cartridges.rsi/cart.png deleted file mode 100644 index a5347224d75..00000000000 Binary files a/Resources/Textures/Objects/Devices/cartridges.rsi/cart.png and /dev/null differ diff --git a/Resources/Textures/Objects/Devices/cartridges.rsi/meta.json b/Resources/Textures/Objects/Devices/cartridges.rsi/meta.json deleted file mode 100644 index b0f5cd02a76..00000000000 --- a/Resources/Textures/Objects/Devices/cartridges.rsi/meta.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/0c15d9dbcf0f2beb230eba5d9d889ef2d1945bb8", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "insert_overlay" - }, - { - "name": "cart" - }, - { - "name": "cart-e" - }, - { - "name": "cart-m" - }, - { - "name": "cart-chem" - }, - { - "name": "cart-c" - }, - { - "name": "cart-h" - }, - { - "name": "cart-s" - }, - { - "name": "cart-clown" - }, - { - "name": "cart-a" - }, - { - "name": "cart-j" - }, - { - "name": "cart-q" - }, - { - "name": "cart-ord" - }, - { - "name": "cart-tear" - }, - { - "name": "cart-b" - }, - { - "name": "cart-lib" - }, - { - "name": "cart-eye" - }, - { - "name": "cart-mi" - }, - { - "name": "cart-hos" - }, - { - "name": "cart-ce" - }, - { - "name": "cart-cmo" - }, - { - "name": "cart-rd" - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Objects/Devices/communication.rsi/meta.json b/Resources/Textures/Objects/Devices/communication.rsi/meta.json index c915f3e4361..807954210bb 100644 --- a/Resources/Textures/Objects/Devices/communication.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/communication.rsi/meta.json @@ -86,6 +86,9 @@ { "name": "old-radio-urist" }, + { + "name": "old-radio-nukeop" + }, { "name": "old-radio-ancestor" }, diff --git a/Resources/Textures/Objects/Devices/communication.rsi/old-radio-nukeop.png b/Resources/Textures/Objects/Devices/communication.rsi/old-radio-nukeop.png new file mode 100644 index 00000000000..b5befcf26db Binary files /dev/null and b/Resources/Textures/Objects/Devices/communication.rsi/old-radio-nukeop.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png b/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png new file mode 100644 index 00000000000..a436871b94d Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/lizard-equipped-HELMET.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index fa118695c20..4975ba04611 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser, plushie_penguin by netwy, plushie_arachnid by PixelTheKermit (github), plushie human by TheShuEd, NanoTrasen Balloon by MACMAN2003, holoplush and magicplush modified by deltanedas (github). Lizard hat sprite made by Cinder", "size": { "x": 32, "y": 32 @@ -91,6 +91,10 @@ { "name": "plushie_lizard_mirrored" }, + { + "name": "lizard-equipped-HELMET", + "directions": 4 + }, { "name": "plushie_lamp" }, diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png new file mode 100644 index 00000000000..fb10912e697 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png new file mode 100644 index 00000000000..924aedcea7a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json new file mode 100644 index 00000000000..1359fd7f8cb --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "produce-inhand-left", + "directions": 4 + }, + { + "name": "produce-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png new file mode 100644 index 00000000000..0527f86b937 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png new file mode 100644 index 00000000000..cd3cc3216e9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce-inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png new file mode 100644 index 00000000000..11c43d8d13e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/seed.png new file mode 100644 index 00000000000..f3e99168ddc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png new file mode 100644 index 00000000000..d4204913b5e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png new file mode 100644 index 00000000000..804aa020127 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-3.png new file mode 100644 index 00000000000..1e6923c9e2d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/glasstle.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png new file mode 100644 index 00000000000..817c0f4bff1 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/harvest.png new file mode 100644 index 00000000000..5a49c3f5c53 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/meta.json new file mode 100644 index 00000000000..775f8df408f --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "stage-4" + }, + { + "name": "stage-5" + }, + { + "name": "stage-6" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/produce.png new file mode 100644 index 00000000000..4c369829601 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png new file mode 100644 index 00000000000..9fc96ba7c29 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-1.png new file mode 100644 index 00000000000..e65be188b1e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-2.png new file mode 100644 index 00000000000..165e17b57c9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png new file mode 100644 index 00000000000..9b193a59e3b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-4.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-4.png new file mode 100644 index 00000000000..e66ff1ddc94 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-4.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png new file mode 100644 index 00000000000..fc1807e0899 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-5.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png new file mode 100644 index 00000000000..e2790c179ab Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/golden_apple.rsi/stage-6.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png new file mode 100644 index 00000000000..6c7185bb1e4 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png new file mode 100644 index 00000000000..d1f2111b252 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/meta.json new file mode 100644 index 00000000000..3f97a14afa6 --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/produce.png new file mode 100644 index 00000000000..fe787f35f52 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/seed.png new file mode 100644 index 00000000000..3ba27fa5b7d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-1.png new file mode 100644 index 00000000000..5b26285f7c0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-2.png new file mode 100644 index 00000000000..df5aff42b0c Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png new file mode 100644 index 00000000000..1c926be364b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/papercane.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png index 7ad5415f588..0b9d3770eda 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png and b/Resources/Textures/Objects/Specific/Medical/defib.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png index 37282f2b6d4..f5256654991 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png and b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png index 37282f2b6d4..f5256654991 100644 Binary files a/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png and b/Resources/Textures/Objects/Specific/Medical/defib.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json index 10645c13be9..441fd4f5feb 100644 --- a/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/defib.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14", + "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14 and modified by alzore_(Discord)", "size": { "x": 32, "y": 32 @@ -25,4 +25,4 @@ "name": "screen" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png b/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png new file mode 100644 index 00000000000..93d52099fc2 Binary files /dev/null and b/Resources/Textures/Objects/Storage/boxes.rsi/envelope.png differ diff --git a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json index bfa1398c77d..3ba3bdd209b 100644 --- a/Resources/Textures/Objects/Storage/boxes.rsi/meta.json +++ b/Resources/Textures/Objects/Storage/boxes.rsi/meta.json @@ -223,6 +223,9 @@ }, { "name": "vials" + }, + { + "name": "envelope" } ] } diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/concrete-mono.png b/Resources/Textures/Objects/Tiles/tile.rsi/concrete-mono.png new file mode 100644 index 00000000000..c8300ff3e4a Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/concrete-mono.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/concrete-smooth.png b/Resources/Textures/Objects/Tiles/tile.rsi/concrete-smooth.png new file mode 100644 index 00000000000..a108ce8b4d5 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/concrete-smooth.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-diagonal-mini.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-diagonal-mini.png new file mode 100644 index 00000000000..a325052228c Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-diagonal-mini.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-diagonal.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-diagonal.png new file mode 100644 index 00000000000..c6b889a14a1 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-diagonal.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-herringbone.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-herringbone.png new file mode 100644 index 00000000000..2ebda842b97 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-herringbone.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-mini.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-mini.png new file mode 100644 index 00000000000..1605945c16d Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-mini.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-mono.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-mono.png new file mode 100644 index 00000000000..8e02358eb6e Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-mono.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-offset.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-offset.png new file mode 100644 index 00000000000..e21176bf452 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-offset.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-pavement-vertical.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-pavement-vertical.png new file mode 100644 index 00000000000..66bfacb04b3 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-pavement-vertical.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark-pavement.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark-pavement.png new file mode 100644 index 00000000000..b5311d5e364 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/dark-pavement.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/dark.png b/Resources/Textures/Objects/Tiles/tile.rsi/dark.png index cd05817621c..220a0cfdb65 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/dark.png and b/Resources/Textures/Objects/Tiles/tile.rsi/dark.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete-mono.png b/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete-mono.png new file mode 100644 index 00000000000..72445cc47e2 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete-mono.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete-smooth.png b/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete-smooth.png new file mode 100644 index 00000000000..cc86c6edeaf Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/grayconcrete-smooth.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json index 11992954f89..7db50200ed6 100644 --- a/Resources/Textures/Objects/Tiles/tile.rsi/meta.json +++ b/Resources/Textures/Objects/Tiles/tile.rsi/meta.json @@ -10,6 +10,30 @@ { "name": "dark" }, + { + "name": "dark-diagonal-mini" + }, + { + "name": "dark-diagonal" + }, + { + "name": "dark-herringbone" + }, + { + "name": "dark-mini" + }, + { + "name": "dark-mono" + }, + { + "name": "dark-pavement" + }, + { + "name": "dark-pavement-vertical" + }, + { + "name": "dark-offset" + }, { "name": "dirty" }, @@ -22,12 +46,30 @@ { "name": "concrete" }, + { + "name": "concrete-mono" + }, + { + "name": "concrete-smooth" + }, { "name": "grayconcrete" }, + { + "name": "grayconcrete-mono" + }, + { + "name": "grayconcrete-smooth" + }, { "name": "oldconcrete" }, + { + "name": "oldconcrete-mono" + }, + { + "name": "oldconcrete-smooth" + }, { "name": "gcircuit" }, @@ -37,15 +79,15 @@ { "name": "blue" }, - { - "name": "brass" - }, - { - "name": "brass-filled" - }, - { - "name": "reebe" - }, + { + "name": "brass" + }, + { + "name": "brass-filled" + }, + { + "name": "reebe" + }, { "name": "lime" }, @@ -168,6 +210,30 @@ { "name": "steel" }, + { + "name": "steel-offset" + }, + { + "name": "steel-diagonal-mini" + }, + { + "name": "steel-diagonal" + }, + { + "name": "steel-herringbone" + }, + { + "name": "steel-mini" + }, + { + "name": "steel-mono" + }, + { + "name": "steel-pavement" + }, + { + "name": "steel-pavement-vertical" + }, { "name": "silver" }, @@ -177,6 +243,30 @@ { "name": "white" }, + { + "name": "white-offset" + }, + { + "name": "white-diagonal-mini" + }, + { + "name": "white-diagonal" + }, + { + "name": "white-herringbone" + }, + { + "name": "white-mini" + }, + { + "name": "white-mono" + }, + { + "name": "white-pavement" + }, + { + "name": "white-pavement-vertical" + }, { "name": "monofloor" }, diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete-mono.png b/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete-mono.png new file mode 100644 index 00000000000..c42fa801d97 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete-mono.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete-smooth.png b/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete-smooth.png new file mode 100644 index 00000000000..ef0e7012c9c Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/oldconcrete-smooth.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-diagonal-mini.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-diagonal-mini.png new file mode 100644 index 00000000000..cbe178a00f1 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-diagonal-mini.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-diagonal.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-diagonal.png new file mode 100644 index 00000000000..752d17fa530 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-diagonal.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-herringbone.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-herringbone.png new file mode 100644 index 00000000000..0dd75de3544 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-herringbone.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-mini.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-mini.png new file mode 100644 index 00000000000..277b658d320 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-mini.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-mono.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-mono.png new file mode 100644 index 00000000000..ff71f6e0514 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-mono.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-offset.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-offset.png new file mode 100644 index 00000000000..679861267ee Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-offset.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-pavement-vertical.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-pavement-vertical.png new file mode 100644 index 00000000000..a5c058085c1 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-pavement-vertical.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel-pavement.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel-pavement.png new file mode 100644 index 00000000000..e9559c10571 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/steel-pavement.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/steel.png b/Resources/Textures/Objects/Tiles/tile.rsi/steel.png index 5ea3049f875..b39ca9aeb51 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/steel.png and b/Resources/Textures/Objects/Tiles/tile.rsi/steel.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-diagonal-mini.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-diagonal-mini.png new file mode 100644 index 00000000000..109f89c1abc Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-diagonal-mini.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-diagonal.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-diagonal.png new file mode 100644 index 00000000000..9bbe51b2841 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-diagonal.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-herringbone.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-herringbone.png new file mode 100644 index 00000000000..316d36da026 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-herringbone.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-mini.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-mini.png new file mode 100644 index 00000000000..e413501ba3c Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-mini.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-mono.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-mono.png new file mode 100644 index 00000000000..53361667dd6 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-mono.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-offset.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-offset.png new file mode 100644 index 00000000000..b58aa94d6ab Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-offset.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-pavement-vertical.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-pavement-vertical.png new file mode 100644 index 00000000000..42eec613812 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-pavement-vertical.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white-pavement.png b/Resources/Textures/Objects/Tiles/tile.rsi/white-pavement.png new file mode 100644 index 00000000000..9800874d740 Binary files /dev/null and b/Resources/Textures/Objects/Tiles/tile.rsi/white-pavement.png differ diff --git a/Resources/Textures/Objects/Tiles/tile.rsi/white.png b/Resources/Textures/Objects/Tiles/tile.rsi/white.png index 28459f0cb78..20d44bde5a1 100644 Binary files a/Resources/Textures/Objects/Tiles/tile.rsi/white.png and b/Resources/Textures/Objects/Tiles/tile.rsi/white.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-back-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-back-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-back-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-suitstorage-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-suitstorage-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/equipped-suitstorage-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/inhand-left-fill-1.png new file mode 100644 index 00000000000..87a1358a8ce Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/inhand-right-fill-1.png new file mode 100644 index 00000000000..4d0d61d0c17 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json index 421037eac37..33274c57fe5 100644 --- a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/meta.json @@ -8,34 +8,58 @@ }, "states": [ { - "name": "spear" + "name": "spear" }, { - "name": "spear1" + "name": "spear1" }, { - "name": "inhand-left", - "directions": 4 + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 }, { - "name": "inhand-right", - "directions": 4 + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 }, { "name": "wielded-inhand-left", "directions": 4 }, + { + "name": "wielded-inhand-left-fill-1", + "directions": 4 + }, { "name": "wielded-inhand-right", "directions": 4 }, { - "name": "equipped-BACKPACK", - "directions": 4 + "name": "wielded-inhand-right-fill-1", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-back-fill-1", + "directions": 4 }, { "name": "equipped-SUITSTORAGE", "directions": 4 + }, + { + "name": "equipped-suitstorage-fill-1", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/wielded-inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/wielded-inhand-left-fill-1.png new file mode 100644 index 00000000000..e50787d3f94 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/wielded-inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/wielded-inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/wielded-inhand-right-fill-1.png new file mode 100644 index 00000000000..0a78a494a7c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/bone_spear.rsi/wielded-inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-back-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-back-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-back-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-suitstorage-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-suitstorage-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/equipped-suitstorage-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/inhand-left-fill-1.png new file mode 100644 index 00000000000..87a1358a8ce Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/inhand-right-fill-1.png new file mode 100644 index 00000000000..4d0d61d0c17 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json index 31cf2a800c2..5ee0443364a 100644 --- a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/meta.json @@ -8,34 +8,58 @@ }, "states": [ { - "name": "spear" + "name": "spear" }, { - "name": "spear1" + "name": "spear1" }, { - "name": "inhand-left", - "directions": 4 + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 }, { - "name": "inhand-right", - "directions": 4 + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 }, { "name": "wielded-inhand-left", "directions": 4 }, + { + "name": "wielded-inhand-left-fill-1", + "directions": 4 + }, { "name": "wielded-inhand-right", "directions": 4 }, { - "name": "equipped-BACKPACK", - "directions": 4 + "name": "wielded-inhand-right-fill-1", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-back-fill-1", + "directions": 4 }, { "name": "equipped-SUITSTORAGE", "directions": 4 + }, + { + "name": "equipped-suitstorage-fill-1", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/wielded-inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/wielded-inhand-left-fill-1.png new file mode 100644 index 00000000000..e50787d3f94 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/wielded-inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/wielded-inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/wielded-inhand-right-fill-1.png new file mode 100644 index 00000000000..0a78a494a7c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/plasma_spear.rsi/wielded-inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-back-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-back-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-back-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-suitstorage-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-suitstorage-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/equipped-suitstorage-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/inhand-left-fill-1.png new file mode 100644 index 00000000000..87a1358a8ce Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/inhand-right-fill-1.png new file mode 100644 index 00000000000..4d0d61d0c17 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json index 31cf2a800c2..bf669532bbf 100644 --- a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/meta.json @@ -8,34 +8,58 @@ }, "states": [ { - "name": "spear" + "name": "spear" }, { - "name": "spear1" + "name": "spear1" }, { - "name": "inhand-left", - "directions": 4 + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 }, { - "name": "inhand-right", - "directions": 4 + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 }, { "name": "wielded-inhand-left", "directions": 4 }, + { + "name": "wielded-inhand-left-fill-1", + "directions": 4 + }, { "name": "wielded-inhand-right", "directions": 4 }, { - "name": "equipped-BACKPACK", - "directions": 4 + "name": "wielded-inhand-right-fill-1", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-back-fill-1", + "directions": 4 }, { "name": "equipped-SUITSTORAGE", "directions": 4 + }, + { + "name": "equipped-suitstorage-fill-1", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/wielded-inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/wielded-inhand-left-fill-1.png new file mode 100644 index 00000000000..e50787d3f94 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/wielded-inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/wielded-inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/wielded-inhand-right-fill-1.png new file mode 100644 index 00000000000..0a78a494a7c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/reinforced_spear.rsi/wielded-inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-back-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-back-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-back-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-suitstorage-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-suitstorage-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/equipped-suitstorage-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/inhand-left-fill-1.png new file mode 100644 index 00000000000..87a1358a8ce Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/inhand-right-fill-1.png new file mode 100644 index 00000000000..4d0d61d0c17 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json index 31cf2a800c2..5ee0443364a 100644 --- a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/meta.json @@ -8,34 +8,58 @@ }, "states": [ { - "name": "spear" + "name": "spear" }, { - "name": "spear1" + "name": "spear1" }, { - "name": "inhand-left", - "directions": 4 + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 }, { - "name": "inhand-right", - "directions": 4 + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 }, { "name": "wielded-inhand-left", "directions": 4 }, + { + "name": "wielded-inhand-left-fill-1", + "directions": 4 + }, { "name": "wielded-inhand-right", "directions": 4 }, { - "name": "equipped-BACKPACK", - "directions": 4 + "name": "wielded-inhand-right-fill-1", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-back-fill-1", + "directions": 4 }, { "name": "equipped-SUITSTORAGE", "directions": 4 + }, + { + "name": "equipped-suitstorage-fill-1", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/wielded-inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/wielded-inhand-left-fill-1.png new file mode 100644 index 00000000000..e50787d3f94 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/wielded-inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/spear.rsi/wielded-inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/wielded-inhand-right-fill-1.png new file mode 100644 index 00000000000..0a78a494a7c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/spear.rsi/wielded-inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-back-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-back-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-back-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-suitstorage-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-suitstorage-fill-1.png new file mode 100644 index 00000000000..db23cdc2a4f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/equipped-suitstorage-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/inhand-left-fill-1.png new file mode 100644 index 00000000000..87a1358a8ce Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/inhand-right-fill-1.png new file mode 100644 index 00000000000..4d0d61d0c17 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/inhand-right-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json index 31cf2a800c2..5ee0443364a 100644 --- a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/meta.json @@ -8,34 +8,58 @@ }, "states": [ { - "name": "spear" + "name": "spear" }, { - "name": "spear1" + "name": "spear1" }, { - "name": "inhand-left", - "directions": 4 + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-left-fill-1", + "directions": 4 }, { - "name": "inhand-right", - "directions": 4 + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-right-fill-1", + "directions": 4 }, { "name": "wielded-inhand-left", "directions": 4 }, + { + "name": "wielded-inhand-left-fill-1", + "directions": 4 + }, { "name": "wielded-inhand-right", "directions": 4 }, { - "name": "equipped-BACKPACK", - "directions": 4 + "name": "wielded-inhand-right-fill-1", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-back-fill-1", + "directions": 4 }, { "name": "equipped-SUITSTORAGE", "directions": 4 + }, + { + "name": "equipped-suitstorage-fill-1", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/wielded-inhand-left-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/wielded-inhand-left-fill-1.png new file mode 100644 index 00000000000..e50787d3f94 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/wielded-inhand-left-fill-1.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/wielded-inhand-right-fill-1.png b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/wielded-inhand-right-fill-1.png new file mode 100644 index 00000000000..0a78a494a7c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/uranium_spear.rsi/wielded-inhand-right-fill-1.png differ diff --git a/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json b/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json index b53c89c7a6e..2e28bba2875 100644 --- a/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/autolathe.rsi/meta.json @@ -20,15 +20,31 @@ "name": "building", "delays": [ [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, diff --git a/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png new file mode 100644 index 00000000000..5b17c682dc2 Binary files /dev/null and b/Resources/Textures/Structures/Machines/autolathe.rsi/unlit-building.png differ diff --git a/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json index 3dfb0685f28..9eada3ebc3d 100644 --- a/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/meta.json @@ -20,15 +20,31 @@ "name": "building", "delays": [ [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5 + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15, + 0.15 ] ] }, diff --git a/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/unlit-building.png new file mode 100644 index 00000000000..8f03eaa61a2 Binary files /dev/null and b/Resources/Textures/Structures/Machines/autolathe_hypercon.rsi/unlit-building.png differ diff --git a/Resources/Textures/Structures/Machines/cuttermachine.rsi/building.png b/Resources/Textures/Structures/Machines/cuttermachine.rsi/building.png new file mode 100644 index 00000000000..7b710f4f74a Binary files /dev/null and b/Resources/Textures/Structures/Machines/cuttermachine.rsi/building.png differ diff --git a/Resources/Textures/Structures/Machines/cuttermachine.rsi/icon.png b/Resources/Textures/Structures/Machines/cuttermachine.rsi/icon.png new file mode 100644 index 00000000000..c718682539b Binary files /dev/null and b/Resources/Textures/Structures/Machines/cuttermachine.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/cuttermachine.rsi/meta.json b/Resources/Textures/Structures/Machines/cuttermachine.rsi/meta.json new file mode 100644 index 00000000000..fd5f81442a3 --- /dev/null +++ b/Resources/Textures/Structures/Machines/cuttermachine.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by Ko4erga (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "panel" + }, + { + "name": "unlit" + }, + { + "name": "building", + "delays": [ + [ + 0.042, + 0.042, + 0.042, + 0.042, + 0.042, + 0.042, + 0.042, + 0.042, + 0.042, + 0.042, + 0.042, + 0.042 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Machines/cuttermachine.rsi/panel.png b/Resources/Textures/Structures/Machines/cuttermachine.rsi/panel.png new file mode 100644 index 00000000000..1081f6622f4 Binary files /dev/null and b/Resources/Textures/Structures/Machines/cuttermachine.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/cuttermachine.rsi/unlit.png b/Resources/Textures/Structures/Machines/cuttermachine.rsi/unlit.png new file mode 100644 index 00000000000..91551514811 Binary files /dev/null and b/Resources/Textures/Structures/Machines/cuttermachine.rsi/unlit.png differ diff --git a/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json b/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json index 17832603ef4..57f80369d0b 100644 --- a/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/protolathe.rsi/meta.json @@ -20,19 +20,39 @@ "name": "building", "delays": [ [ - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8, - 0.8 + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 ] ] }, diff --git a/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png new file mode 100644 index 00000000000..b72d06d6546 Binary files /dev/null and b/Resources/Textures/Structures/Machines/protolathe.rsi/unlit-building.png differ diff --git a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json index b0326326f97..775b298d5a8 100644 --- a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/meta.json @@ -20,16 +20,33 @@ "name": "building", "delays": [ [ - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0 + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 + ] + ] + }, + { + "name": "unlit-building", + "delays": [ + [ + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10, + 0.10 ] ] }, diff --git a/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png new file mode 100644 index 00000000000..bce4888e2a7 Binary files /dev/null and b/Resources/Textures/Structures/Machines/protolathe_hypercon.rsi/unlit-building.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png new file mode 100644 index 00000000000..2d67101d2fc Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png new file mode 100644 index 00000000000..199a65fb959 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png new file mode 100644 index 00000000000..47ee108f18c Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png new file mode 100644 index 00000000000..77a54a15cef Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png new file mode 100644 index 00000000000..ddd26ba6270 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png new file mode 100644 index 00000000000..942f3df3ad2 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png new file mode 100644 index 00000000000..1b7430d8095 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png new file mode 100644 index 00000000000..e415ee1a7e8 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/chem-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png new file mode 100644 index 00000000000..c79f80c0c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png new file mode 100644 index 00000000000..3156cb9fa1e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json new file mode 100644 index 00000000000..a3fb20976ef --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "chem-0" + }, + { + "name": "chem-1" + }, + { + "name": "chem-2" + }, + { + "name": "chem-3" + }, + { + "name": "chem-4" + }, + { + "name": "chem-5" + }, + { + "name": "chem-6" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png new file mode 100644 index 00000000000..ce50773db87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png new file mode 100644 index 00000000000..39d2fb77884 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Medical/chemistry.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png new file mode 100644 index 00000000000..c090326148d Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png new file mode 100644 index 00000000000..7d698e0020f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png new file mode 100644 index 00000000000..5acb43b1799 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-10.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png new file mode 100644 index 00000000000..328ca05ab73 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-11.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png new file mode 100644 index 00000000000..77469720a63 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-12.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png new file mode 100644 index 00000000000..5eab596dd46 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png new file mode 100644 index 00000000000..116080939b6 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png new file mode 100644 index 00000000000..15c03124e69 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png new file mode 100644 index 00000000000..ece06f2d786 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png new file mode 100644 index 00000000000..8ec7b1f6123 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png new file mode 100644 index 00000000000..e9468e2cdfe Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-7.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png new file mode 100644 index 00000000000..d01b2a6bc87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-8.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png new file mode 100644 index 00000000000..b5b86d3e4cd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/bar-9.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png new file mode 100644 index 00000000000..ff9dd093b6b Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json new file mode 100644 index 00000000000..79e0904dd92 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/bar.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "bar-0" + }, + { + "name": "bar-1" + }, + { + "name": "bar-2" + }, + { + "name": "bar-3" + }, + { + "name": "bar-4" + }, + { + "name": "bar-5" + }, + { + "name": "bar-6" + }, + { + "name": "bar-7" + }, + { + "name": "bar-8" + }, + { + "name": "bar-9" + }, + { + "name": "bar-10" + }, + { + "name": "bar-11" + }, + { + "name": "bar-12" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png new file mode 100644 index 00000000000..b302518d3de Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png new file mode 100644 index 00000000000..199a65fb959 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-0.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png new file mode 100644 index 00000000000..ded931cadfc Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-1.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png new file mode 100644 index 00000000000..8d71c464f6e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-10.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png new file mode 100644 index 00000000000..5885ae1c6e3 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-11.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png new file mode 100644 index 00000000000..5afb489f643 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-12.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png new file mode 100644 index 00000000000..03799bb6889 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-2.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png new file mode 100644 index 00000000000..5daaf7dda89 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-3.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png new file mode 100644 index 00000000000..fc7be0c7da2 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-4.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png new file mode 100644 index 00000000000..150e8f3ec78 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-5.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png new file mode 100644 index 00000000000..653ca142c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-6.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png new file mode 100644 index 00000000000..8fb7d79932d Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-7.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png new file mode 100644 index 00000000000..ca197f5ba5f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-8.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png new file mode 100644 index 00000000000..9f61aeeb480 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/kitchen-9.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json new file mode 100644 index 00000000000..2daba51b6c9 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/Departments/Service/kitchen.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "kitchen-0" + }, + { + "name": "kitchen-1" + }, + { + "name": "kitchen-2" + }, + { + "name": "kitchen-3" + }, + { + "name": "kitchen-4" + }, + { + "name": "kitchen-5" + }, + { + "name": "kitchen-6" + }, + { + "name": "kitchen-7" + }, + { + "name": "kitchen-8" + }, + { + "name": "kitchen-9" + }, + { + "name": "kitchen-10" + }, + { + "name": "kitchen-11" + }, + { + "name": "kitchen-12" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png new file mode 100644 index 00000000000..ccaf278a543 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png new file mode 100644 index 00000000000..c79f80c0c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png new file mode 100644 index 00000000000..3156cb9fa1e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json new file mode 100644 index 00000000000..544b43a1e80 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png new file mode 100644 index 00000000000..ce50773db87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png new file mode 100644 index 00000000000..584a185caab Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png new file mode 100644 index 00000000000..39d2fb77884 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/glass.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png new file mode 100644 index 00000000000..430b603aa3a Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png new file mode 100644 index 00000000000..c79f80c0c23 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png new file mode 100644 index 00000000000..3156cb9fa1e Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json new file mode 100644 index 00000000000..544b43a1e80 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png new file mode 100644 index 00000000000..ce50773db87 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png new file mode 100644 index 00000000000..430b603aa3a Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png new file mode 100644 index 00000000000..39d2fb77884 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/metal.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png new file mode 100644 index 00000000000..a1054e575dd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/base.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png new file mode 100644 index 00000000000..df740ed7b0f Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/closed.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png new file mode 100644 index 00000000000..421688fcda8 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/locked.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json new file mode 100644 index 00000000000..544b43a1e80 --- /dev/null +++ b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Kezu", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "rbase" + }, + { + "name": "locked" + }, + { + "name": "unlocked" + }, + { + "name": "closed" + }, + { + "name": "open" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png new file mode 100644 index 00000000000..c0e25c446bd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/open.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png new file mode 100644 index 00000000000..a1054e575dd Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/rbase.png differ diff --git a/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png new file mode 100644 index 00000000000..3a00217edae Binary files /dev/null and b/Resources/Textures/Structures/Storage/Shelfs/wood.rsi/unlocked.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png index e532ec039e8..dd3f2004bca 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/ai_upload.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai_upload.png index 91256aa1df7..2c36159114f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/ai_upload.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/ai_upload.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png index 6b7361f21c2..4a0d3b06a5c 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/anomaly.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png index 7cb18443529..a280915433c 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/arcade.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png index 3f237ec0466..e8b23f66905 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/armory.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png index 9d57ebe7e9a..f17bebde02d 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/ass.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png index 8fdc8016af3..a6c39ff38d8 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/bar.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png index b01a82717f7..dece81f540e 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/barbershop.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png index 9c2f15e0483..658b4f3589f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/biblio.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png index 838ffa7b24b..16bd36cb4b2 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/bridge.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cans.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cans.png index 53cdbbb5c90..ecb94e723b5 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cans.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cans.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png index 0366a82ffa6..2a70a41fef3 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png index 4b07e410e29..987189e9c03 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cargo_dock.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png index a862131d76c..36bbe860538 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/chapel.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png index f8b42e9e6a3..227f87f53a1 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/chem.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png index da9434fcfbb..58e34b11b60 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cloning.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png index f98c0a440b2..3d2079e6d38 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/commander.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png index 0823ef39432..36407acfd8e 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/conference_room.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/cryo.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/cryo.png index 3a0fc6d7168..c69ac93b45a 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/cryo.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/cryo.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/data.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/data.png index 03a801e4838..b7e74905a55 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/data.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/data.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png index 1fa88f63afa..a94bf5dd36d 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/deathsposal.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png index 8d59357a358..d75e5b752fa 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/dock.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png index 107ea06c99c..bba5ca11b06 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/doors.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama1.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama1.png index af0d276d5c0..0695d6cb582 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama1.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama1.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama2.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama2.png index 538374ce404..0c35acceb95 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama2.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama3.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama3.png index cba0ec5955a..283f15056e0 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/drama3.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/drama3.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png index 5a70940bd90..2df104d3b2a 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/eng.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png index 629680bfea8..b6387b72adb 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/engine.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png index 05f0b7c0f5e..70cd0714685 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/examroom.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png index 811d40aa898..bc6c7385c45 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/gravi.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro.png index f23fa7960de..e0ee9498c04 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/hydro.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png index e5c0b186b4c..d3009e95286 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/interrogation.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png index 350f40dabd4..57681a61a6f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/janitor.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/kitchen.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/kitchen.png index 322d62d8d2e..2255e1c1753 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/kitchen.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/kitchen.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png index 400e73df422..8b245bb440d 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/laundromat.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png index 0a239af288a..74338cd9862 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/law.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png index ffb43a9ae5f..2de502d5bbb 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/mail.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/mats.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/mats.png index af933d5b9e3..a35251bcf48 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/mats.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/mats.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png index e57571f6821..fdaf81fefd3 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/medbay.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index cc78e22a63b..581a19ee3fe 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github). 'court', 'janitor', 'law' & 'psychology' changed for corvax by netwy (discord, 583844759429316618) and updated by github:lapatison;", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github). 'court', 'janitor', 'law' & 'psychology' changed for corvax by netwy (discord, 583844759429316618) and updated by github:lapatison; Job signs localized by kaiserGans (github)", "states": [ { "name": "ai" diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png index 95729938071..afc106a47c8 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/morgue.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png index 40b73c7c2d2..21faab0fb50 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/news.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/pods.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/pods.png index 7f5125119af..1f602699ac6 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/pods.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/pods.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png index cea5bba81a9..0a729117486 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/prison.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png index 1d89a1ec590..2c7d529776d 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/psychology.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png index 3f3e6dfa490..2b874e5fd99 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/reception.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/restroom.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/restroom.png index f5903a7d155..643b4eee7ec 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/restroom.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/restroom.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png index 3dc284f4794..2eaed7473fe 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/rnd.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png index 82519ba966b..f457da45d08 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/robo.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png index 20b0eb577de..1f2e9cf0c4a 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/salvage.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png index 599207f48ae..3d3c4505e56 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/sci.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png index 2de5d34a5ee..81eff4c055d 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/security.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png index b9286eb06db..8cecdf82fc7 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/space.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png index f24ba5c1b33..c59cf60c64f 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/surgery.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png index 5896206cafe..86b8fe2b4d6 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/telecoms.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png index cf11ed6155f..f094a1003c8 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/toxins.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/vault.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/vault.png index 33572ca25b5..1c2e82a7081 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/vault.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/vault.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png index 232d9a74b55..dcdad39f7b3 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/virology.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenoarch.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenoarch.png index a4b26daa993..3100d3e1ac1 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenoarch.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenoarch.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png index 4f99ab19c3d..93ba893aec2 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/xenobio.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png index a81784d30b5..e7dc59d16b9 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/zomlab.png differ diff --git a/Resources/keybinds.yml b/Resources/keybinds.yml index c11f59d17c9..cf43d1c4351 100644 --- a/Resources/keybinds.yml +++ b/Resources/keybinds.yml @@ -1,4 +1,4 @@ -version: 1 # Not used right now, whatever. +version: 1 # Not used right now, whatever. binds: - function: UIClick type: State @@ -190,6 +190,12 @@ binds: - function: OpenEmotesMenu type: State key: Y + + # ADT Languages update +- function: OpenLanguagesMenu + type: State + key: L + - function: TextCursorSelect # TextCursorSelect HAS to be above ExamineEntity # So that LineEdit receives it correctly. @@ -455,8 +461,8 @@ binds: - function: OpenDecalSpawnWindow type: State key: F8 -- function: OpenScoreboardWindow - type: State +- function: ToggleRoundEndSummaryWindow + type: Toggle key: F9 - function: OpenSandboxWindow type: State diff --git a/Resources/manifest.yml b/Resources/manifest.yml index 7cac0ee8165..1b10dac3457 100644 --- a/Resources/manifest.yml +++ b/Resources/manifest.yml @@ -1,7 +1,7 @@ -windowIconSet: /Textures/Logo/icon-ru # Corvax-Theme +windowIconSet: /Textures/ADT/Logo/icon-adt # Corvax-Theme defaultWindowTitle: Space Station 14 - Время приключений-ru # ADT theme -splashLogo: /Textures/Logo/new_logo.png #ADT theme +splashLogo: /Textures/ADT/Logo/new_logo.png #ADT theme multiWindow: true # PJB PLEASE diff --git a/Resources/migration.yml b/Resources/migration.yml index b15a9e30162..2ad79eb1e09 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -362,7 +362,7 @@ DoorRemoteFirefight: null AirlockServiceCaptainLocked: AirlockCaptainLocked # 2024-06-15 -ClothingOuterCoatInspector: ClothingOuterCoatDetectiveLoadout +ClothingOuterCoatInspector: ClothingOuterCoatJensen # 2024-06-23 FloorTileItemReinforced: PartRodMetal1 @@ -392,3 +392,6 @@ SignDrones: SignMaterials SignShield: null # what was this even for? SignHydro2: SignHydro1 SignHydro3: SignHydro1 + +# 2024-07-27 +LogicGate: LogicGateOr